diff --git a/docs/ast/source/src/emitter.js.json b/docs/ast/source/src/emitter.js.json
new file mode 100644
index 00000000..de048e80
--- /dev/null
+++ b/docs/ast/source/src/emitter.js.json
@@ -0,0 +1,2924 @@
+{
+ "type": "Program",
+ "body": [
+ {
+ "type": "ExportNamedDeclaration",
+ "declaration": {
+ "type": "ClassDeclaration",
+ "id": {
+ "type": "Identifier",
+ "name": "Emitter",
+ "range": [
+ 44,
+ 51
+ ],
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 13
+ },
+ "end": {
+ "line": 4,
+ "column": 20
+ }
+ }
+ },
+ "superClass": null,
+ "body": {
+ "type": "ClassBody",
+ "body": [
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "constructor",
+ "range": [
+ 58,
+ 69
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 4
+ },
+ "end": {
+ "line": 5,
+ "column": 15
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 157,
+ 161
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 162,
+ 168
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 13
+ },
+ "end": {
+ "line": 10,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 157,
+ 168
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "ObjectExpression",
+ "properties": [],
+ "range": [
+ 171,
+ 173
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 22
+ },
+ "end": {
+ "line": 10,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 157,
+ 173
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 157,
+ 174
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 25
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Events object\n * @type {Object}\n ",
+ "range": [
+ 82,
+ 148
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 8
+ },
+ "end": {
+ "line": 9,
+ "column": 11
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "range": [
+ 72,
+ 180
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 18
+ },
+ "end": {
+ "line": 11,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 69,
+ 180
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 15
+ },
+ "end": {
+ "line": 11,
+ "column": 5
+ }
+ }
+ },
+ "kind": "constructor",
+ "computed": false,
+ "range": [
+ 58,
+ 180
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 4
+ },
+ "end": {
+ "line": 11,
+ "column": 5
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Subscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 186,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 356,
+ 358
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 4
+ },
+ "end": {
+ "line": 18,
+ "column": 6
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evts",
+ "range": [
+ 359,
+ 363
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 7
+ },
+ "end": {
+ "line": 18,
+ "column": 11
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fn",
+ "range": [
+ 365,
+ 367
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 13
+ },
+ "end": {
+ "line": 18,
+ "column": 15
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "evts",
+ "range": [
+ 379,
+ 383
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "forEach",
+ "range": [
+ 384,
+ 391
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 13
+ },
+ "end": {
+ "line": 19,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 379,
+ 391
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 20
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 393,
+ 396
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 22
+ },
+ "end": {
+ "line": 19,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 414,
+ 418
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 12
+ },
+ "end": {
+ "line": 20,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 419,
+ 425
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 17
+ },
+ "end": {
+ "line": 20,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 414,
+ 425
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 12
+ },
+ "end": {
+ "line": 20,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 426,
+ 429
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 24
+ },
+ "end": {
+ "line": 20,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 414,
+ 430
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 12
+ },
+ "end": {
+ "line": 20,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 433,
+ 437
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 31
+ },
+ "end": {
+ "line": 20,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 438,
+ 444
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 36
+ },
+ "end": {
+ "line": 20,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 433,
+ 444
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 31
+ },
+ "end": {
+ "line": 20,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 445,
+ 448
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 43
+ },
+ "end": {
+ "line": 20,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 433,
+ 449
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 31
+ },
+ "end": {
+ "line": 20,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 453,
+ 455
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 51
+ },
+ "end": {
+ "line": 20,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 433,
+ 455
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 31
+ },
+ "end": {
+ "line": 20,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 414,
+ 455
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 12
+ },
+ "end": {
+ "line": 20,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 414,
+ 456
+ ],
+ "loc": {
+ "start": {
+ "line": 20,
+ "column": 12
+ },
+ "end": {
+ "line": 20,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 469,
+ 473
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 474,
+ 480
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 17
+ },
+ "end": {
+ "line": 21,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 469,
+ 480
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 481,
+ 484
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 24
+ },
+ "end": {
+ "line": 21,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 469,
+ 485
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 486,
+ 490
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 29
+ },
+ "end": {
+ "line": 21,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 469,
+ 490
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fn",
+ "range": [
+ 491,
+ 493
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 34
+ },
+ "end": {
+ "line": 21,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 469,
+ 494
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 469,
+ 495
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 12
+ },
+ "end": {
+ "line": 21,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 400,
+ 505
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 29
+ },
+ "end": {
+ "line": 22,
+ "column": 9
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 392,
+ 505
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 21
+ },
+ "end": {
+ "line": 22,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 379,
+ 506
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 22,
+ "column": 10
+ }
+ }
+ },
+ "range": [
+ 379,
+ 507
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 22,
+ "column": 11
+ }
+ }
+ }
+ ],
+ "range": [
+ 369,
+ 513
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 17
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 358,
+ 513
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 6
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 356,
+ 513
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 4
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Subscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 186,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Unsubscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 519,
+ 686
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 4
+ },
+ "end": {
+ "line": 29,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 691,
+ 694
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 4
+ },
+ "end": {
+ "line": 30,
+ "column": 7
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evts",
+ "range": [
+ 695,
+ 699
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 30,
+ "column": 12
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fn",
+ "range": [
+ 701,
+ 703
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 14
+ },
+ "end": {
+ "line": 30,
+ "column": 16
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "evts",
+ "range": [
+ 715,
+ 719
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 8
+ },
+ "end": {
+ "line": 31,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "forEach",
+ "range": [
+ 720,
+ 727
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 13
+ },
+ "end": {
+ "line": 31,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 715,
+ 727
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 8
+ },
+ "end": {
+ "line": 31,
+ "column": 20
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 729,
+ 732
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 22
+ },
+ "end": {
+ "line": 31,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "in",
+ "left": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 753,
+ 756
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 15
+ },
+ "end": {
+ "line": 32,
+ "column": 18
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 760,
+ 764
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 22
+ },
+ "end": {
+ "line": 32,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 765,
+ 771
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 27
+ },
+ "end": {
+ "line": 32,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 760,
+ 771
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 22
+ },
+ "end": {
+ "line": 32,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 753,
+ 771
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 15
+ },
+ "end": {
+ "line": 32,
+ "column": 33
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 791,
+ 795
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 796,
+ 802
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 21
+ },
+ "end": {
+ "line": 33,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 791,
+ 802
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 803,
+ 806
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 28
+ },
+ "end": {
+ "line": 33,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 791,
+ 807
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "splice",
+ "range": [
+ 808,
+ 814
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 33
+ },
+ "end": {
+ "line": 33,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 791,
+ 814
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 815,
+ 819
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 40
+ },
+ "end": {
+ "line": 33,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 820,
+ 826
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 45
+ },
+ "end": {
+ "line": 33,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 815,
+ 826
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 40
+ },
+ "end": {
+ "line": 33,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 827,
+ 830
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 52
+ },
+ "end": {
+ "line": 33,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 815,
+ 831
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 40
+ },
+ "end": {
+ "line": 33,
+ "column": 56
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "indexOf",
+ "range": [
+ 832,
+ 839
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 57
+ },
+ "end": {
+ "line": 33,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 815,
+ 839
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 40
+ },
+ "end": {
+ "line": 33,
+ "column": 64
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fn",
+ "range": [
+ 840,
+ 842
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 65
+ },
+ "end": {
+ "line": 33,
+ "column": 67
+ }
+ }
+ }
+ ],
+ "range": [
+ 815,
+ 843
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 40
+ },
+ "end": {
+ "line": 33,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 845,
+ 846
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 70
+ },
+ "end": {
+ "line": 33,
+ "column": 71
+ }
+ }
+ }
+ ],
+ "range": [
+ 791,
+ 847
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 72
+ }
+ }
+ },
+ "range": [
+ 791,
+ 848
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 16
+ },
+ "end": {
+ "line": 33,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 773,
+ 862
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 35
+ },
+ "end": {
+ "line": 34,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 750,
+ 862
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 12
+ },
+ "end": {
+ "line": 34,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "range": [
+ 736,
+ 872
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 29
+ },
+ "end": {
+ "line": 35,
+ "column": 9
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 728,
+ 872
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 21
+ },
+ "end": {
+ "line": 35,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 715,
+ 873
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 8
+ },
+ "end": {
+ "line": 35,
+ "column": 10
+ }
+ }
+ },
+ "range": [
+ 715,
+ 874
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 8
+ },
+ "end": {
+ "line": 35,
+ "column": 11
+ }
+ }
+ }
+ ],
+ "range": [
+ 705,
+ 880
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 18
+ },
+ "end": {
+ "line": 36,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 694,
+ 880
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 7
+ },
+ "end": {
+ "line": 36,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 691,
+ 880
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 4
+ },
+ "end": {
+ "line": 36,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Unsubscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 519,
+ 686
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 4
+ },
+ "end": {
+ "line": 29,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Emit an event\n * @param {String} evt Event name followed by any other argument passed to\n * the invoked function\n ",
+ "range": [
+ 886,
+ 1026
+ ],
+ "loc": {
+ "start": {
+ "line": 38,
+ "column": 4
+ },
+ "end": {
+ "line": 42,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 1031,
+ 1035
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 4
+ },
+ "end": {
+ "line": 43,
+ "column": 8
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 1036,
+ 1039
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 9
+ },
+ "end": {
+ "line": 43,
+ "column": 12
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": ", args...",
+ "range": [
+ 1040,
+ 1053
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 13
+ },
+ "end": {
+ "line": 43,
+ "column": 26
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "in",
+ "left": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 1068,
+ 1071
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 11
+ },
+ "end": {
+ "line": 44,
+ "column": 14
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1075,
+ 1079
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 18
+ },
+ "end": {
+ "line": 44,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 1080,
+ 1086
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 23
+ },
+ "end": {
+ "line": 44,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1075,
+ 1086
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 18
+ },
+ "end": {
+ "line": 44,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1068,
+ 1086
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 11
+ },
+ "end": {
+ "line": 44,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ForStatement",
+ "init": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 1110,
+ 1111
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 20
+ },
+ "end": {
+ "line": 45,
+ "column": 21
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 1114,
+ 1115
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 24
+ },
+ "end": {
+ "line": 45,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1110,
+ 1115
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 20
+ },
+ "end": {
+ "line": 45,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1106,
+ 1115
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 16
+ },
+ "end": {
+ "line": 45,
+ "column": 25
+ }
+ }
+ },
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "<",
+ "left": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 1117,
+ 1118
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 27
+ },
+ "end": {
+ "line": 45,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1121,
+ 1125
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 1126,
+ 1132
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 36
+ },
+ "end": {
+ "line": 45,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 1121,
+ 1132
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 1133,
+ 1136
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 43
+ },
+ "end": {
+ "line": 45,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 1121,
+ 1137
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 1138,
+ 1144
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 48
+ },
+ "end": {
+ "line": 45,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 1121,
+ 1144
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 1117,
+ 1144
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 27
+ },
+ "end": {
+ "line": 45,
+ "column": 54
+ }
+ }
+ },
+ "update": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 1146,
+ 1147
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 56
+ },
+ "end": {
+ "line": 45,
+ "column": 57
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 1146,
+ 1149
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 56
+ },
+ "end": {
+ "line": 45,
+ "column": 59
+ }
+ }
+ },
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1169,
+ 1173
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "events",
+ "range": [
+ 1174,
+ 1180
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 21
+ },
+ "end": {
+ "line": 46,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1180
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 1181,
+ 1184
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 28
+ },
+ "end": {
+ "line": 46,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1185
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 1186,
+ 1187
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 33
+ },
+ "end": {
+ "line": 46,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1188
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "apply",
+ "range": [
+ 1189,
+ 1194
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 36
+ },
+ "end": {
+ "line": 46,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1194
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 1195,
+ 1199
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 42
+ },
+ "end": {
+ "line": 46,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 1201,
+ 1203
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 48
+ },
+ "end": {
+ "line": 46,
+ "column": 50
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "slice",
+ "range": [
+ 1204,
+ 1209
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 51
+ },
+ "end": {
+ "line": 46,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 1201,
+ 1209
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 48
+ },
+ "end": {
+ "line": 46,
+ "column": 56
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "call",
+ "range": [
+ 1210,
+ 1214
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 57
+ },
+ "end": {
+ "line": 46,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 1201,
+ 1214
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 48
+ },
+ "end": {
+ "line": 46,
+ "column": 61
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "arguments",
+ "range": [
+ 1215,
+ 1224
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 62
+ },
+ "end": {
+ "line": 46,
+ "column": 71
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 1226,
+ 1227
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 73
+ },
+ "end": {
+ "line": 46,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 1201,
+ 1228
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 48
+ },
+ "end": {
+ "line": 46,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 1169,
+ 1229
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1230
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 77
+ }
+ }
+ }
+ ],
+ "range": [
+ 1151,
+ 1244
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 61
+ },
+ "end": {
+ "line": 47,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 1102,
+ 1244
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "range": [
+ 1088,
+ 1254
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 31
+ },
+ "end": {
+ "line": 48,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 1065,
+ 1254
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 1055,
+ 1260
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 28
+ },
+ "end": {
+ "line": 49,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": ", args...",
+ "range": [
+ 1040,
+ 1053
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 13
+ },
+ "end": {
+ "line": 43,
+ "column": 26
+ }
+ }
+ }
+ ]
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 1035,
+ 1260
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 1031,
+ 1260
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 4
+ },
+ "end": {
+ "line": 49,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Emit an event\n * @param {String} evt Event name followed by any other argument passed to\n * the invoked function\n ",
+ "range": [
+ 886,
+ 1026
+ ],
+ "loc": {
+ "start": {
+ "line": 38,
+ "column": 4
+ },
+ "end": {
+ "line": 42,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ }
+ ],
+ "range": [
+ 52,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 21
+ },
+ "end": {
+ "line": 50,
+ "column": 1
+ }
+ }
+ },
+ "range": [
+ 38,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 7
+ },
+ "end": {
+ "line": 50,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Event emitter class\n ",
+ "range": [
+ 0,
+ 30
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ],
+ "trailingComments": []
+ },
+ "specifiers": [],
+ "source": null,
+ "range": [
+ 31,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 0
+ },
+ "end": {
+ "line": 50,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Event emitter class\n ",
+ "range": [
+ 0,
+ 30
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "sourceType": "module",
+ "range": [
+ 31,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 0
+ },
+ "end": {
+ "line": 50,
+ "column": 1
+ }
+ },
+ "comments": [
+ {
+ "type": "Block",
+ "value": "*\n * Event emitter class\n ",
+ "range": [
+ 0,
+ 30
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Events object\n * @type {Object}\n ",
+ "range": [
+ 82,
+ 148
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 8
+ },
+ "end": {
+ "line": 9,
+ "column": 11
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Subscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 186,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Unsubscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n ",
+ "range": [
+ 519,
+ 686
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 4
+ },
+ "end": {
+ "line": 29,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Emit an event\n * @param {String} evt Event name followed by any other argument passed to\n * the invoked function\n ",
+ "range": [
+ 886,
+ 1026
+ ],
+ "loc": {
+ "start": {
+ "line": 38,
+ "column": 4
+ },
+ "end": {
+ "line": 42,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": ", args...",
+ "range": [
+ 1040,
+ 1053
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 13
+ },
+ "end": {
+ "line": 43,
+ "column": 26
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs/ast/source/src/extensions/advancedGrid/adapterEzEditTable.js.json b/docs/ast/source/src/extensions/advancedGrid/adapterEzEditTable.js.json
index ea24b537..dd73fabd 100644
--- a/docs/ast/source/src/extensions/advancedGrid/adapterEzEditTable.js.json
+++ b/docs/ast/source/src/extensions/advancedGrid/adapterEzEditTable.js.json
@@ -2171,11 +2171,153 @@
"column": 21
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1203,
+ 1207
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 8
+ },
+ "end": {
+ "line": 29,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1208,
+ 1215
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 13
+ },
+ "end": {
+ "line": 29,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 1203,
+ 1215
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 8
+ },
+ "end": {
+ "line": 29,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1218,
+ 1220
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 23
+ },
+ "end": {
+ "line": 29,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1221,
+ 1228
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 26
+ },
+ "end": {
+ "line": 29,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1218,
+ 1228
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 23
+ },
+ "end": {
+ "line": 29,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1203,
+ 1228
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 8
+ },
+ "end": {
+ "line": 29,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1203,
+ 1229
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 8
+ },
+ "end": {
+ "line": 29,
+ "column": 34
+ }
+ }
}
],
"range": [
378,
- 1200
+ 1235
],
"loc": {
"start": {
@@ -2183,7 +2325,7 @@
"column": 24
},
"end": {
- "line": 29,
+ "line": 30,
"column": 5
}
}
@@ -2192,7 +2334,7 @@
"expression": false,
"range": [
369,
- 1200
+ 1235
],
"loc": {
"start": {
@@ -2200,7 +2342,7 @@
"column": 15
},
"end": {
- "line": 29,
+ "line": 30,
"column": 5
}
}
@@ -2209,7 +2351,7 @@
"computed": false,
"range": [
358,
- 1200
+ 1235
],
"loc": {
"start": {
@@ -2217,7 +2359,7 @@
"column": 4
},
"end": {
- "line": 29,
+ "line": 30,
"column": 5
}
},
@@ -2246,16 +2388,16 @@
"type": "Block",
"value": "*\n * Conditionally load ezEditTable library and set advanced grid\n * @return {[type]} [description]\n ",
"range": [
- 1206,
- 1323
+ 1241,
+ 1358
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 4
},
"end": {
- "line": 34,
+ "line": 35,
"column": 7
}
}
@@ -2269,16 +2411,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 1328,
- 1332
+ 1363,
+ 1367
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 4
},
"end": {
- "line": 35,
+ "line": 36,
"column": 8
}
}
@@ -2299,16 +2441,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1348,
- 1350
+ 1383,
+ 1385
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 12
},
"end": {
- "line": 36,
+ "line": 37,
"column": 14
}
}
@@ -2319,16 +2461,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1353,
- 1357
+ 1388,
+ 1392
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 17
},
"end": {
- "line": 36,
+ "line": 37,
"column": 21
}
}
@@ -2337,46 +2479,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1358,
- 1360
+ 1393,
+ 1395
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 22
},
"end": {
- "line": 36,
+ "line": 37,
"column": 24
}
}
},
"range": [
- 1353,
- 1360
+ 1388,
+ 1395
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 17
},
"end": {
- "line": 36,
+ "line": 37,
"column": 24
}
}
},
"range": [
- 1348,
- 1360
+ 1383,
+ 1395
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 12
},
"end": {
- "line": 36,
+ "line": 37,
"column": 24
}
}
@@ -2384,16 +2526,16 @@
],
"kind": "var",
"range": [
- 1344,
- 1361
+ 1379,
+ 1396
],
"loc": {
"start": {
- "line": 36,
+ "line": 37,
"column": 8
},
"end": {
- "line": 36,
+ "line": 37,
"column": 25
}
}
@@ -2407,16 +2549,16 @@
"type": "Identifier",
"name": "window",
"range": [
- 1373,
- 1379
+ 1408,
+ 1414
],
"loc": {
"start": {
- "line": 37,
+ "line": 38,
"column": 11
},
"end": {
- "line": 37,
+ "line": 38,
"column": 17
}
}
@@ -2425,31 +2567,31 @@
"type": "Identifier",
"name": "EditTable",
"range": [
- 1380,
- 1389
+ 1415,
+ 1424
],
"loc": {
"start": {
- "line": 37,
+ "line": 38,
"column": 18
},
"end": {
- "line": 37,
+ "line": 38,
"column": 27
}
}
},
"range": [
- 1373,
- 1389
+ 1408,
+ 1424
],
"loc": {
"start": {
- "line": 37,
+ "line": 38,
"column": 11
},
"end": {
- "line": 37,
+ "line": 38,
"column": 27
}
}
@@ -2467,16 +2609,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1404,
- 1408
+ 1439,
+ 1443
],
"loc": {
"start": {
- "line": 38,
+ "line": 39,
"column": 12
},
"end": {
- "line": 38,
+ "line": 39,
"column": 16
}
}
@@ -2485,78 +2627,78 @@
"type": "Identifier",
"name": "_setAdvancedGrid",
"range": [
- 1409,
- 1425
+ 1444,
+ 1460
],
"loc": {
"start": {
- "line": 38,
+ "line": 39,
"column": 17
},
"end": {
- "line": 38,
+ "line": 39,
"column": 33
}
}
},
"range": [
- 1404,
- 1425
+ 1439,
+ 1460
],
"loc": {
"start": {
- "line": 38,
+ "line": 39,
"column": 12
},
"end": {
- "line": 38,
+ "line": 39,
"column": 33
}
}
},
"arguments": [],
"range": [
- 1404,
- 1427
+ 1439,
+ 1462
],
"loc": {
"start": {
- "line": 38,
+ "line": 39,
"column": 12
},
"end": {
- "line": 38,
+ "line": 39,
"column": 35
}
}
},
"range": [
- 1404,
- 1428
+ 1439,
+ 1463
],
"loc": {
"start": {
- "line": 38,
+ "line": 39,
"column": 12
},
"end": {
- "line": 38,
+ "line": 39,
"column": 36
}
}
}
],
"range": [
- 1390,
- 1438
+ 1425,
+ 1473
],
"loc": {
"start": {
- "line": 37,
+ "line": 38,
"column": 28
},
"end": {
- "line": 39,
+ "line": 40,
"column": 9
}
}
@@ -2573,16 +2715,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 1462,
- 1466
+ 1497,
+ 1501
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 16
},
"end": {
- "line": 40,
+ "line": 41,
"column": 20
}
}
@@ -2596,16 +2738,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1469,
- 1473
+ 1504,
+ 1508
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 23
},
"end": {
- "line": 40,
+ "line": 41,
"column": 27
}
}
@@ -2614,31 +2756,31 @@
"type": "Identifier",
"name": "vendorPath",
"range": [
- 1474,
- 1484
+ 1509,
+ 1519
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 28
},
"end": {
- "line": 40,
+ "line": 41,
"column": 38
}
}
},
"range": [
- 1469,
- 1484
+ 1504,
+ 1519
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 23
},
"end": {
- "line": 40,
+ "line": 41,
"column": 38
}
}
@@ -2649,16 +2791,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1487,
- 1491
+ 1522,
+ 1526
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 41
},
"end": {
- "line": 40,
+ "line": 41,
"column": 45
}
}
@@ -2667,61 +2809,61 @@
"type": "Identifier",
"name": "filename",
"range": [
- 1492,
- 1500
+ 1527,
+ 1535
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 46
},
"end": {
- "line": 40,
+ "line": 41,
"column": 54
}
}
},
"range": [
- 1487,
- 1500
+ 1522,
+ 1535
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 41
},
"end": {
- "line": 40,
+ "line": 41,
"column": 54
}
}
},
"range": [
- 1469,
- 1500
+ 1504,
+ 1535
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 23
},
"end": {
- "line": 40,
+ "line": 41,
"column": 54
}
}
},
"range": [
- 1462,
- 1500
+ 1497,
+ 1535
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 16
},
"end": {
- "line": 40,
+ "line": 41,
"column": 54
}
}
@@ -2729,16 +2871,16 @@
],
"kind": "var",
"range": [
- 1458,
- 1501
+ 1493,
+ 1536
],
"loc": {
"start": {
- "line": 40,
+ "line": 41,
"column": 12
},
"end": {
- "line": 40,
+ "line": 41,
"column": 55
}
}
@@ -2754,16 +2896,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1514,
- 1516
+ 1549,
+ 1551
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 12
},
"end": {
- "line": 41,
+ "line": 42,
"column": 14
}
}
@@ -2772,31 +2914,31 @@
"type": "Identifier",
"name": "import",
"range": [
- 1517,
- 1523
+ 1552,
+ 1558
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 15
},
"end": {
- "line": 41,
+ "line": 42,
"column": 21
}
}
},
"range": [
- 1514,
- 1523
+ 1549,
+ 1558
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 12
},
"end": {
- "line": 41,
+ "line": 42,
"column": 21
}
}
@@ -2808,16 +2950,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1524,
- 1528
+ 1559,
+ 1563
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 22
},
"end": {
- "line": 41,
+ "line": 42,
"column": 26
}
}
@@ -2826,31 +2968,31 @@
"type": "Identifier",
"name": "filename",
"range": [
- 1529,
- 1537
+ 1564,
+ 1572
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 27
},
"end": {
- "line": 41,
+ "line": 42,
"column": 35
}
}
},
"range": [
- 1524,
- 1537
+ 1559,
+ 1572
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 22
},
"end": {
- "line": 41,
+ "line": 42,
"column": 35
}
}
@@ -2859,16 +3001,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 1539,
- 1543
+ 1574,
+ 1578
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 37
},
"end": {
- "line": 41,
+ "line": 42,
"column": 41
}
}
@@ -2890,16 +3032,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1552,
- 1556
+ 1587,
+ 1591
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 50
},
"end": {
- "line": 41,
+ "line": 42,
"column": 54
}
}
@@ -2908,78 +3050,78 @@
"type": "Identifier",
"name": "_setAdvancedGrid",
"range": [
- 1557,
- 1573
+ 1592,
+ 1608
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 55
},
"end": {
- "line": 41,
+ "line": 42,
"column": 71
}
}
},
"range": [
- 1552,
- 1573
+ 1587,
+ 1608
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 50
},
"end": {
- "line": 41,
+ "line": 42,
"column": 71
}
}
},
"arguments": [],
"range": [
- 1552,
- 1575
+ 1587,
+ 1610
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 50
},
"end": {
- "line": 41,
+ "line": 42,
"column": 73
}
}
},
"range": [
- 1552,
- 1576
+ 1587,
+ 1611
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 50
},
"end": {
- "line": 41,
+ "line": 42,
"column": 74
}
}
}
],
"range": [
- 1550,
- 1578
+ 1585,
+ 1613
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 48
},
"end": {
- "line": 41,
+ "line": 42,
"column": 76
}
}
@@ -2987,78 +3129,78 @@
"generator": false,
"expression": false,
"range": [
- 1545,
- 1578
+ 1580,
+ 1613
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 43
},
"end": {
- "line": 41,
+ "line": 42,
"column": 76
}
}
}
],
"range": [
- 1514,
- 1579
+ 1549,
+ 1614
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 12
},
"end": {
- "line": 41,
+ "line": 42,
"column": 77
}
}
},
"range": [
- 1514,
- 1580
+ 1549,
+ 1615
],
"loc": {
"start": {
- "line": 41,
+ "line": 42,
"column": 12
},
"end": {
- "line": 41,
+ "line": 42,
"column": 78
}
}
}
],
"range": [
- 1444,
- 1590
+ 1479,
+ 1625
],
"loc": {
"start": {
- "line": 39,
+ "line": 40,
"column": 15
},
"end": {
- "line": 42,
+ "line": 43,
"column": 9
}
}
},
"range": [
- 1370,
- 1590
+ 1405,
+ 1625
],
"loc": {
"start": {
- "line": 37,
+ "line": 38,
"column": 8
},
"end": {
- "line": 42,
+ "line": 43,
"column": 9
}
}
@@ -3074,16 +3216,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1602,
- 1606
+ 1637,
+ 1641
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 11
},
"end": {
- "line": 43,
+ "line": 44,
"column": 15
}
}
@@ -3092,31 +3234,31 @@
"type": "Identifier",
"name": "loadStylesheet",
"range": [
- 1607,
- 1621
+ 1642,
+ 1656
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 16
},
"end": {
- "line": 43,
+ "line": 44,
"column": 30
}
}
},
"range": [
- 1602,
- 1621
+ 1637,
+ 1656
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 11
},
"end": {
- "line": 43,
+ "line": 44,
"column": 30
}
}
@@ -3133,16 +3275,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1626,
- 1628
+ 1661,
+ 1663
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 35
},
"end": {
- "line": 43,
+ "line": 44,
"column": 37
}
}
@@ -3151,31 +3293,31 @@
"type": "Identifier",
"name": "isImported",
"range": [
- 1629,
- 1639
+ 1664,
+ 1674
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 38
},
"end": {
- "line": 43,
+ "line": 44,
"column": 48
}
}
},
"range": [
- 1626,
- 1639
+ 1661,
+ 1674
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 35
},
"end": {
- "line": 43,
+ "line": 44,
"column": 48
}
}
@@ -3187,16 +3329,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1640,
- 1644
+ 1675,
+ 1679
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 49
},
"end": {
- "line": 43,
+ "line": 44,
"column": 53
}
}
@@ -3205,31 +3347,31 @@
"type": "Identifier",
"name": "stylesheet",
"range": [
- 1645,
- 1655
+ 1680,
+ 1690
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 54
},
"end": {
- "line": 43,
+ "line": 44,
"column": 64
}
}
},
"range": [
- 1640,
- 1655
+ 1675,
+ 1690
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 49
},
"end": {
- "line": 43,
+ "line": 44,
"column": 64
}
}
@@ -3239,63 +3381,63 @@
"value": "link",
"raw": "'link'",
"range": [
- 1657,
- 1663
+ 1692,
+ 1698
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 66
},
"end": {
- "line": 43,
+ "line": 44,
"column": 72
}
}
}
],
"range": [
- 1626,
- 1664
+ 1661,
+ 1699
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 35
},
"end": {
- "line": 43,
+ "line": 44,
"column": 73
}
}
},
"prefix": true,
"range": [
- 1625,
- 1664
+ 1660,
+ 1699
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 34
},
"end": {
- "line": 43,
+ "line": 44,
"column": 73
}
}
},
"range": [
- 1602,
- 1664
+ 1637,
+ 1699
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 11
},
"end": {
- "line": 43,
+ "line": 44,
"column": 73
}
}
@@ -3314,16 +3456,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1679,
- 1681
+ 1714,
+ 1716
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 12
},
"end": {
- "line": 44,
+ "line": 45,
"column": 14
}
}
@@ -3332,31 +3474,31 @@
"type": "Identifier",
"name": "import",
"range": [
- 1682,
- 1688
+ 1717,
+ 1723
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 15
},
"end": {
- "line": 44,
+ "line": 45,
"column": 21
}
}
},
"range": [
- 1679,
- 1688
+ 1714,
+ 1723
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 12
},
"end": {
- "line": 44,
+ "line": 45,
"column": 21
}
}
@@ -3368,16 +3510,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1689,
- 1693
+ 1724,
+ 1728
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 22
},
"end": {
- "line": 44,
+ "line": 45,
"column": 26
}
}
@@ -3386,31 +3528,31 @@
"type": "Identifier",
"name": "stylesheetName",
"range": [
- 1694,
- 1708
+ 1729,
+ 1743
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 27
},
"end": {
- "line": 44,
+ "line": 45,
"column": 41
}
}
},
"range": [
- 1689,
- 1708
+ 1724,
+ 1743
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 22
},
"end": {
- "line": 44,
+ "line": 45,
"column": 41
}
}
@@ -3421,16 +3563,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1710,
- 1714
+ 1745,
+ 1749
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 43
},
"end": {
- "line": 44,
+ "line": 45,
"column": 47
}
}
@@ -3439,31 +3581,31 @@
"type": "Identifier",
"name": "stylesheet",
"range": [
- 1715,
- 1725
+ 1750,
+ 1760
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 48
},
"end": {
- "line": 44,
+ "line": 45,
"column": 58
}
}
},
"range": [
- 1710,
- 1725
+ 1745,
+ 1760
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 43
},
"end": {
- "line": 44,
+ "line": 45,
"column": 58
}
}
@@ -3473,16 +3615,16 @@
"value": null,
"raw": "null",
"range": [
- 1727,
- 1731
+ 1762,
+ 1766
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 60
},
"end": {
- "line": 44,
+ "line": 45,
"column": 64
}
}
@@ -3492,95 +3634,445 @@
"value": "link",
"raw": "'link'",
"range": [
- 1733,
- 1739
+ 1768,
+ 1774
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 66
},
"end": {
- "line": 44,
+ "line": 45,
"column": 72
}
}
}
],
"range": [
- 1679,
- 1740
+ 1714,
+ 1775
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 12
},
"end": {
- "line": 44,
+ "line": 45,
"column": 73
}
}
},
"range": [
- 1679,
- 1741
+ 1714,
+ 1776
],
"loc": {
"start": {
- "line": 44,
+ "line": 45,
"column": 12
},
"end": {
- "line": 44,
+ "line": 45,
"column": 74
}
}
}
],
"range": [
- 1665,
- 1751
+ 1700,
+ 1786
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 74
},
"end": {
- "line": 45,
+ "line": 46,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1599,
- 1751
+ 1634,
+ 1786
],
"loc": {
"start": {
- "line": 43,
+ "line": 44,
"column": 8
},
"end": {
- "line": 45,
+ "line": 46,
"column": 9
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
+ "range": [
+ 1796,
+ 1858
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 70
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Needs to be fixed in the vendor's library",
+ "range": [
+ 1867,
+ 1911
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 52
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1920,
+ 1924
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1925,
+ 1932
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 13
+ },
+ "end": {
+ "line": 50,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 1920,
+ 1932
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 1933,
+ 1935
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 21
+ },
+ "end": {
+ "line": 50,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 1920,
+ 1935
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filter-focus",
+ "raw": "'filter-focus'",
+ "range": [
+ 1937,
+ 1951
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 25
+ },
+ "end": {
+ "line": 50,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "filter-blur",
+ "raw": "'filter-blur'",
+ "range": [
+ 1953,
+ 1966
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 41
+ },
+ "end": {
+ "line": 50,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 1936,
+ 1967
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 24
+ },
+ "end": {
+ "line": 50,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1986,
+ 1990
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 17
+ },
+ "end": {
+ "line": 51,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_toggleForInputFilter",
+ "range": [
+ 1991,
+ 2012
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 22
+ },
+ "end": {
+ "line": 51,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 1986,
+ 2012
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 17
+ },
+ "end": {
+ "line": 51,
+ "column": 43
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 1986,
+ 2014
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 17
+ },
+ "end": {
+ "line": 51,
+ "column": 45
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 1981,
+ 2014
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 12
+ },
+ "end": {
+ "line": 51,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 1920,
+ 2015
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 1920,
+ 2016
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 47
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
+ "range": [
+ 1796,
+ 1858
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 70
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Needs to be fixed in the vendor's library",
+ "range": [
+ 1867,
+ 1911
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 52
+ }
+ }
+ }
+ ]
}
],
"range": [
- 1334,
- 1757
+ 1369,
+ 2022
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 10
},
"end": {
- "line": 46,
+ "line": 52,
"column": 5
}
}
@@ -3588,16 +4080,16 @@
"generator": false,
"expression": false,
"range": [
- 1332,
- 1757
+ 1367,
+ 2022
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 8
},
"end": {
- "line": 46,
+ "line": 52,
"column": 5
}
}
@@ -3605,16 +4097,16 @@
"kind": "method",
"computed": false,
"range": [
- 1328,
- 1757
+ 1363,
+ 2022
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 4
},
"end": {
- "line": 46,
+ "line": 52,
"column": 5
}
},
@@ -3623,16 +4115,16 @@
"type": "Block",
"value": "*\n * Conditionally load ezEditTable library and set advanced grid\n * @return {[type]} [description]\n ",
"range": [
- 1206,
- 1323
+ 1241,
+ 1358
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 4
},
"end": {
- "line": 34,
+ "line": 35,
"column": 7
}
}
@@ -3643,16 +4135,16 @@
"type": "Block",
"value": "*\n * Instantiate ezEditTable component for advanced grid features\n ",
"range": [
- 1763,
- 1842
+ 2028,
+ 2107
],
"loc": {
"start": {
- "line": 48,
+ "line": 54,
"column": 4
},
"end": {
- "line": 50,
+ "line": 56,
"column": 7
}
}
@@ -3666,16 +4158,16 @@
"type": "Identifier",
"name": "_setAdvancedGrid",
"range": [
- 1847,
- 1863
+ 2112,
+ 2128
],
"loc": {
"start": {
- "line": 51,
+ "line": 57,
"column": 4
},
"end": {
- "line": 51,
+ "line": 57,
"column": 20
}
}
@@ -3696,16 +4188,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1879,
- 1881
+ 2144,
+ 2146
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 12
},
"end": {
- "line": 52,
+ "line": 58,
"column": 14
}
}
@@ -3716,16 +4208,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1884,
- 1888
+ 2149,
+ 2153
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 17
},
"end": {
- "line": 52,
+ "line": 58,
"column": 21
}
}
@@ -3734,46 +4226,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1889,
- 1891
+ 2154,
+ 2156
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 22
},
"end": {
- "line": 52,
+ "line": 58,
"column": 24
}
}
},
"range": [
- 1884,
- 1891
+ 2149,
+ 2156
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 17
},
"end": {
- "line": 52,
+ "line": 58,
"column": 24
}
}
},
"range": [
- 1879,
- 1891
+ 2144,
+ 2156
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 12
},
"end": {
- "line": 52,
+ "line": 58,
"column": 24
}
}
@@ -3781,16 +4273,16 @@
],
"kind": "var",
"range": [
- 1875,
- 1892
+ 2140,
+ 2157
],
"loc": {
"start": {
- "line": 52,
+ "line": 58,
"column": 8
},
"end": {
- "line": 52,
+ "line": 58,
"column": 25
}
},
@@ -3799,16 +4291,16 @@
"type": "Line",
"value": "start row for EditTable constructor needs to be calculated",
"range": [
- 1902,
- 1962
+ 2167,
+ 2227
],
"loc": {
"start": {
- "line": 54,
+ "line": 60,
"column": 8
},
"end": {
- "line": 54,
+ "line": 60,
"column": 68
}
}
@@ -3824,32 +4316,32 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 1975,
- 1983
+ 2240,
+ 2248
],
"loc": {
"start": {
- "line": 55,
+ "line": 61,
"column": 12
},
"end": {
- "line": 55,
+ "line": 61,
"column": 20
}
}
},
"init": null,
"range": [
- 1975,
- 1983
+ 2240,
+ 2248
],
"loc": {
"start": {
- "line": 55,
+ "line": 61,
"column": 12
},
"end": {
- "line": 55,
+ "line": 61,
"column": 20
}
}
@@ -3860,16 +4352,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 1997,
- 2000
+ 2262,
+ 2265
],
"loc": {
"start": {
- "line": 56,
+ "line": 62,
"column": 12
},
"end": {
- "line": 56,
+ "line": 62,
"column": 15
}
}
@@ -3880,16 +4372,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2003,
- 2007
+ 2268,
+ 2272
],
"loc": {
"start": {
- "line": 56,
+ "line": 62,
"column": 18
},
"end": {
- "line": 56,
+ "line": 62,
"column": 22
}
}
@@ -3898,46 +4390,46 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2008,
- 2011
+ 2273,
+ 2276
],
"loc": {
"start": {
- "line": 56,
+ "line": 62,
"column": 23
},
"end": {
- "line": 56,
+ "line": 62,
"column": 26
}
}
},
"range": [
- 2003,
- 2011
+ 2268,
+ 2276
],
"loc": {
"start": {
- "line": 56,
+ "line": 62,
"column": 18
},
"end": {
- "line": 56,
+ "line": 62,
"column": 26
}
}
},
"range": [
- 1997,
- 2011
+ 2262,
+ 2276
],
"loc": {
"start": {
- "line": 56,
+ "line": 62,
"column": 12
},
"end": {
- "line": 56,
+ "line": 62,
"column": 26
}
}
@@ -3948,16 +4440,16 @@
"type": "Identifier",
"name": "thead",
"range": [
- 2025,
- 2030
+ 2290,
+ 2295
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 12
},
"end": {
- "line": 57,
+ "line": 63,
"column": 17
}
}
@@ -3971,16 +4463,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2033,
- 2036
+ 2298,
+ 2301
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 20
},
"end": {
- "line": 57,
+ "line": 63,
"column": 23
}
}
@@ -3989,31 +4481,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 2037,
- 2040
+ 2302,
+ 2305
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 24
},
"end": {
- "line": 57,
+ "line": 63,
"column": 27
}
}
},
"range": [
- 2033,
- 2040
+ 2298,
+ 2305
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 20
},
"end": {
- "line": 57,
+ "line": 63,
"column": 27
}
}
@@ -4026,16 +4518,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2041,
- 2043
+ 2306,
+ 2308
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 28
},
"end": {
- "line": 57,
+ "line": 63,
"column": 30
}
}
@@ -4044,31 +4536,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2044,
- 2047
+ 2309,
+ 2312
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 31
},
"end": {
- "line": 57,
+ "line": 63,
"column": 34
}
}
},
"range": [
- 2041,
- 2047
+ 2306,
+ 2312
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 28
},
"end": {
- "line": 57,
+ "line": 63,
"column": 34
}
}
@@ -4078,47 +4570,47 @@
"value": "thead",
"raw": "'thead'",
"range": [
- 2049,
- 2056
+ 2314,
+ 2321
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 36
},
"end": {
- "line": 57,
+ "line": 63,
"column": 43
}
}
}
],
"range": [
- 2033,
- 2057
+ 2298,
+ 2322
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 20
},
"end": {
- "line": 57,
+ "line": 63,
"column": 44
}
}
},
"range": [
- 2025,
- 2057
+ 2290,
+ 2322
],
"loc": {
"start": {
- "line": 57,
+ "line": 63,
"column": 12
},
"end": {
- "line": 57,
+ "line": 63,
"column": 44
}
}
@@ -4126,16 +4618,16 @@
],
"kind": "var",
"range": [
- 1971,
- 2058
+ 2236,
+ 2323
],
"loc": {
"start": {
- "line": 55,
+ "line": 61,
"column": 8
},
"end": {
- "line": 57,
+ "line": 63,
"column": 45
}
},
@@ -4144,16 +4636,16 @@
"type": "Line",
"value": "start row for EditTable constructor needs to be calculated",
"range": [
- 1902,
- 1962
+ 2167,
+ 2227
],
"loc": {
"start": {
- "line": 54,
+ "line": 60,
"column": 8
},
"end": {
- "line": 54,
+ "line": 60,
"column": 68
}
}
@@ -4164,16 +4656,16 @@
"type": "Line",
"value": "if thead exists and startRow not specified, startRow is calculated",
"range": [
- 2068,
- 2136
+ 2333,
+ 2401
],
"loc": {
"start": {
- "line": 59,
+ "line": 65,
"column": 8
},
"end": {
- "line": 59,
+ "line": 65,
"column": 76
}
}
@@ -4182,16 +4674,16 @@
"type": "Line",
"value": "automatically by EditTable",
"range": [
- 2145,
- 2173
+ 2410,
+ 2438
],
"loc": {
"start": {
- "line": 60,
+ "line": 66,
"column": 8
},
"end": {
- "line": 60,
+ "line": 66,
"column": 36
}
}
@@ -4213,16 +4705,16 @@
"type": "Identifier",
"name": "thead",
"range": [
- 2185,
- 2190
+ 2450,
+ 2455
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 11
},
"end": {
- "line": 61,
+ "line": 67,
"column": 16
}
}
@@ -4231,31 +4723,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 2191,
- 2197
+ 2456,
+ 2462
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 17
},
"end": {
- "line": 61,
+ "line": 67,
"column": 23
}
}
},
"range": [
- 2185,
- 2197
+ 2450,
+ 2462
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 11
},
"end": {
- "line": 61,
+ "line": 67,
"column": 23
}
}
@@ -4265,31 +4757,31 @@
"value": 0,
"raw": "0",
"range": [
- 2200,
- 2201
+ 2465,
+ 2466
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 26
},
"end": {
- "line": 61,
+ "line": 67,
"column": 27
}
}
},
"range": [
- 2185,
- 2201
+ 2450,
+ 2466
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 11
},
"end": {
- "line": 61,
+ "line": 67,
"column": 27
}
}
@@ -4304,16 +4796,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2206,
- 2209
+ 2471,
+ 2474
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 32
},
"end": {
- "line": 61,
+ "line": 67,
"column": 35
}
}
@@ -4322,62 +4814,62 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2210,
- 2218
+ 2475,
+ 2483
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 36
},
"end": {
- "line": 61,
+ "line": 67,
"column": 44
}
}
},
"range": [
- 2206,
- 2218
+ 2471,
+ 2483
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 32
},
"end": {
- "line": 61,
+ "line": 67,
"column": 44
}
}
},
"prefix": true,
"range": [
- 2205,
- 2218
+ 2470,
+ 2483
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 31
},
"end": {
- "line": 61,
+ "line": 67,
"column": 44
}
}
},
"range": [
- 2185,
- 2218
+ 2450,
+ 2483
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 11
},
"end": {
- "line": 61,
+ "line": 67,
"column": 44
}
}
@@ -4394,16 +4886,16 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2233,
- 2241
+ 2498,
+ 2506
],
"loc": {
"start": {
- "line": 62,
+ "line": 68,
"column": 12
},
"end": {
- "line": 62,
+ "line": 68,
"column": 20
}
}
@@ -4412,62 +4904,62 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 2244,
- 2253
+ 2509,
+ 2518
],
"loc": {
"start": {
- "line": 62,
+ "line": 68,
"column": 23
},
"end": {
- "line": 62,
+ "line": 68,
"column": 32
}
}
},
"range": [
- 2233,
- 2253
+ 2498,
+ 2518
],
"loc": {
"start": {
- "line": 62,
+ "line": 68,
"column": 12
},
"end": {
- "line": 62,
+ "line": 68,
"column": 32
}
}
},
"range": [
- 2233,
- 2254
+ 2498,
+ 2519
],
"loc": {
"start": {
- "line": 62,
+ "line": 68,
"column": 12
},
"end": {
- "line": 62,
+ "line": 68,
"column": 33
}
}
}
],
"range": [
- 2219,
- 2264
+ 2484,
+ 2529
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 45
},
"end": {
- "line": 63,
+ "line": 69,
"column": 9
}
},
@@ -4476,16 +4968,16 @@
"type": "Line",
"value": "otherwise startRow config property if any or TableFilter refRow",
"range": [
- 2273,
- 2338
+ 2538,
+ 2603
],
"loc": {
"start": {
- "line": 64,
+ "line": 70,
"column": 8
},
"end": {
- "line": 64,
+ "line": 70,
"column": 73
}
}
@@ -4504,16 +4996,16 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2365,
- 2373
+ 2630,
+ 2638
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 12
},
"end": {
- "line": 66,
+ "line": 72,
"column": 20
}
}
@@ -4528,16 +5020,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2376,
- 2379
+ 2641,
+ 2644
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 23
},
"end": {
- "line": 66,
+ "line": 72,
"column": 26
}
}
@@ -4546,31 +5038,31 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2380,
- 2388
+ 2645,
+ 2653
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 27
},
"end": {
- "line": 66,
+ "line": 72,
"column": 35
}
}
},
"range": [
- 2376,
- 2388
+ 2641,
+ 2653
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 23
},
"end": {
- "line": 66,
+ "line": 72,
"column": 35
}
}
@@ -4582,16 +5074,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2392,
- 2394
+ 2657,
+ 2659
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 39
},
"end": {
- "line": 66,
+ "line": 72,
"column": 41
}
}
@@ -4600,92 +5092,92 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 2395,
- 2401
+ 2660,
+ 2666
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 42
},
"end": {
- "line": 66,
+ "line": 72,
"column": 48
}
}
},
"range": [
- 2392,
- 2401
+ 2657,
+ 2666
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 39
},
"end": {
- "line": 66,
+ "line": 72,
"column": 48
}
}
},
"range": [
- 2376,
- 2401
+ 2641,
+ 2666
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 23
},
"end": {
- "line": 66,
+ "line": 72,
"column": 48
}
}
},
"range": [
- 2365,
- 2401
+ 2630,
+ 2666
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 12
},
"end": {
- "line": 66,
+ "line": 72,
"column": 48
}
}
},
"range": [
- 2365,
- 2402
+ 2630,
+ 2667
],
"loc": {
"start": {
- "line": 66,
+ "line": 72,
"column": 12
},
"end": {
- "line": 66,
+ "line": 72,
"column": 49
}
}
}
],
"range": [
- 2351,
- 2412
+ 2616,
+ 2677
],
"loc": {
"start": {
- "line": 65,
+ "line": 71,
"column": 12
},
"end": {
- "line": 67,
+ "line": 73,
"column": 9
}
},
@@ -4694,16 +5186,16 @@
"type": "Line",
"value": "otherwise startRow config property if any or TableFilter refRow",
"range": [
- 2273,
- 2338
+ 2538,
+ 2603
],
"loc": {
"start": {
- "line": 64,
+ "line": 70,
"column": 8
},
"end": {
- "line": 64,
+ "line": 70,
"column": 73
}
}
@@ -4711,16 +5203,16 @@
]
},
"range": [
- 2182,
- 2412
+ 2447,
+ 2677
],
"loc": {
"start": {
- "line": 61,
+ "line": 67,
"column": 8
},
"end": {
- "line": 67,
+ "line": 73,
"column": 9
}
},
@@ -4729,16 +5221,16 @@
"type": "Line",
"value": "if thead exists and startRow not specified, startRow is calculated",
"range": [
- 2068,
- 2136
+ 2333,
+ 2401
],
"loc": {
"start": {
- "line": 59,
+ "line": 65,
"column": 8
},
"end": {
- "line": 59,
+ "line": 65,
"column": 76
}
}
@@ -4747,16 +5239,16 @@
"type": "Line",
"value": "automatically by EditTable",
"range": [
- 2145,
- 2173
+ 2410,
+ 2438
],
"loc": {
"start": {
- "line": 60,
+ "line": 66,
"column": 8
},
"end": {
- "line": 60,
+ "line": 66,
"column": 36
}
}
@@ -4775,16 +5267,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2422,
- 2425
+ 2687,
+ 2690
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 8
},
"end": {
- "line": 69,
+ "line": 75,
"column": 11
}
}
@@ -4793,31 +5285,31 @@
"type": "Identifier",
"name": "base_path",
"range": [
- 2426,
- 2435
+ 2691,
+ 2700
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 12
},
"end": {
- "line": 69,
+ "line": 75,
"column": 21
}
}
},
"range": [
- 2422,
- 2435
+ 2687,
+ 2700
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 8
},
"end": {
- "line": 69,
+ "line": 75,
"column": 21
}
}
@@ -4832,16 +5324,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2438,
- 2441
+ 2703,
+ 2706
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 24
},
"end": {
- "line": 69,
+ "line": 75,
"column": 27
}
}
@@ -4850,31 +5342,31 @@
"type": "Identifier",
"name": "base_path",
"range": [
- 2442,
- 2451
+ 2707,
+ 2716
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 28
},
"end": {
- "line": 69,
+ "line": 75,
"column": 37
}
}
},
"range": [
- 2438,
- 2451
+ 2703,
+ 2716
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 24
},
"end": {
- "line": 69,
+ "line": 75,
"column": 37
}
}
@@ -4889,16 +5381,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2456,
- 2458
+ 2721,
+ 2723
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 42
},
"end": {
- "line": 69,
+ "line": 75,
"column": 44
}
}
@@ -4907,31 +5399,31 @@
"type": "Identifier",
"name": "basePath",
"range": [
- 2459,
- 2467
+ 2724,
+ 2732
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 45
},
"end": {
- "line": 69,
+ "line": 75,
"column": 53
}
}
},
"range": [
- 2456,
- 2467
+ 2721,
+ 2732
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 42
},
"end": {
- "line": 69,
+ "line": 75,
"column": 53
}
}
@@ -4941,76 +5433,76 @@
"value": "ezEditTable/",
"raw": "'ezEditTable/'",
"range": [
- 2470,
- 2484
+ 2735,
+ 2749
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 56
},
"end": {
- "line": 69,
+ "line": 75,
"column": 70
}
}
},
"range": [
- 2456,
- 2484
+ 2721,
+ 2749
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 42
},
"end": {
- "line": 69,
+ "line": 75,
"column": 70
}
}
},
"range": [
- 2438,
- 2484
+ 2703,
+ 2749
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 24
},
"end": {
- "line": 69,
+ "line": 75,
"column": 70
}
}
},
"range": [
- 2422,
- 2484
+ 2687,
+ 2749
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 8
},
"end": {
- "line": 69,
+ "line": 75,
"column": 70
}
}
},
"range": [
- 2422,
- 2485
+ 2687,
+ 2750
],
"loc": {
"start": {
- "line": 69,
+ "line": 75,
"column": 8
},
"end": {
- "line": 69,
+ "line": 75,
"column": 71
}
}
@@ -5024,16 +5516,16 @@
"type": "Identifier",
"name": "editable",
"range": [
- 2498,
- 2506
+ 2763,
+ 2771
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 12
},
"end": {
- "line": 70,
+ "line": 76,
"column": 20
}
}
@@ -5045,16 +5537,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2509,
- 2512
+ 2774,
+ 2777
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 23
},
"end": {
- "line": 70,
+ "line": 76,
"column": 26
}
}
@@ -5063,46 +5555,46 @@
"type": "Identifier",
"name": "editable",
"range": [
- 2513,
- 2521
+ 2778,
+ 2786
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 27
},
"end": {
- "line": 70,
+ "line": 76,
"column": 35
}
}
},
"range": [
- 2509,
- 2521
+ 2774,
+ 2786
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 23
},
"end": {
- "line": 70,
+ "line": 76,
"column": 35
}
}
},
"range": [
- 2498,
- 2521
+ 2763,
+ 2786
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 12
},
"end": {
- "line": 70,
+ "line": 76,
"column": 35
}
}
@@ -5110,16 +5602,16 @@
],
"kind": "var",
"range": [
- 2494,
- 2522
+ 2759,
+ 2787
],
"loc": {
"start": {
- "line": 70,
+ "line": 76,
"column": 8
},
"end": {
- "line": 70,
+ "line": 76,
"column": 36
}
}
@@ -5133,16 +5625,16 @@
"type": "Identifier",
"name": "selectable",
"range": [
- 2535,
- 2545
+ 2800,
+ 2810
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 12
},
"end": {
- "line": 71,
+ "line": 77,
"column": 22
}
}
@@ -5154,16 +5646,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2548,
- 2551
+ 2813,
+ 2816
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 25
},
"end": {
- "line": 71,
+ "line": 77,
"column": 28
}
}
@@ -5172,46 +5664,46 @@
"type": "Identifier",
"name": "selection",
"range": [
- 2552,
- 2561
+ 2817,
+ 2826
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 29
},
"end": {
- "line": 71,
+ "line": 77,
"column": 38
}
}
},
"range": [
- 2548,
- 2561
+ 2813,
+ 2826
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 25
},
"end": {
- "line": 71,
+ "line": 77,
"column": 38
}
}
},
"range": [
- 2535,
- 2561
+ 2800,
+ 2826
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 12
},
"end": {
- "line": 71,
+ "line": 77,
"column": 38
}
}
@@ -5219,16 +5711,16 @@
],
"kind": "var",
"range": [
- 2531,
- 2562
+ 2796,
+ 2827
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 8
},
"end": {
- "line": 71,
+ "line": 77,
"column": 39
}
}
@@ -5239,16 +5731,16 @@
"type": "Identifier",
"name": "selectable",
"range": [
- 2575,
- 2585
+ 2840,
+ 2850
],
"loc": {
"start": {
- "line": 73,
+ "line": 79,
"column": 11
},
"end": {
- "line": 73,
+ "line": 79,
"column": 21
}
}
@@ -5268,16 +5760,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2600,
- 2603
+ 2865,
+ 2868
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 12
},
"end": {
- "line": 74,
+ "line": 80,
"column": 15
}
}
@@ -5286,31 +5778,31 @@
"type": "Identifier",
"name": "default_selection",
"range": [
- 2604,
- 2621
+ 2869,
+ 2886
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 16
},
"end": {
- "line": 74,
+ "line": 80,
"column": 33
}
}
},
"range": [
- 2600,
- 2621
+ 2865,
+ 2886
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 12
},
"end": {
- "line": 74,
+ "line": 80,
"column": 33
}
}
@@ -5325,16 +5817,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2624,
- 2627
+ 2889,
+ 2892
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 36
},
"end": {
- "line": 74,
+ "line": 80,
"column": 39
}
}
@@ -5343,31 +5835,31 @@
"type": "Identifier",
"name": "default_selection",
"range": [
- 2628,
- 2645
+ 2893,
+ 2910
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 40
},
"end": {
- "line": 74,
+ "line": 80,
"column": 57
}
}
},
"range": [
- 2624,
- 2645
+ 2889,
+ 2910
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 36
},
"end": {
- "line": 74,
+ "line": 80,
"column": 57
}
}
@@ -5377,93 +5869,93 @@
"value": "row",
"raw": "'row'",
"range": [
- 2649,
- 2654
+ 2914,
+ 2919
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 61
},
"end": {
- "line": 74,
+ "line": 80,
"column": 66
}
}
},
"range": [
- 2624,
- 2654
+ 2889,
+ 2919
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 36
},
"end": {
- "line": 74,
+ "line": 80,
"column": 66
}
}
},
"range": [
- 2600,
- 2654
+ 2865,
+ 2919
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 12
},
"end": {
- "line": 74,
+ "line": 80,
"column": 66
}
}
},
"range": [
- 2600,
- 2655
+ 2865,
+ 2920
],
"loc": {
"start": {
- "line": 74,
+ "line": 80,
"column": 12
},
"end": {
- "line": 74,
+ "line": 80,
"column": 67
}
}
}
],
"range": [
- 2586,
- 2665
+ 2851,
+ 2930
],
"loc": {
"start": {
- "line": 73,
+ "line": 79,
"column": 22
},
"end": {
- "line": 75,
+ "line": 81,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2572,
- 2665
+ 2837,
+ 2930
],
"loc": {
"start": {
- "line": 73,
+ "line": 79,
"column": 8
},
"end": {
- "line": 75,
+ "line": 81,
"column": 9
}
},
@@ -5472,16 +5964,16 @@
"type": "Line",
"value": "CSS Styles",
"range": [
- 2674,
- 2686
+ 2939,
+ 2951
],
"loc": {
"start": {
- "line": 76,
+ "line": 82,
"column": 8
},
"end": {
- "line": 76,
+ "line": 82,
"column": 20
}
}
@@ -5500,16 +5992,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2695,
- 2698
+ 2960,
+ 2963
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 8
},
"end": {
- "line": 77,
+ "line": 83,
"column": 11
}
}
@@ -5518,31 +6010,31 @@
"type": "Identifier",
"name": "active_cell_css",
"range": [
- 2699,
- 2714
+ 2964,
+ 2979
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 12
},
"end": {
- "line": 77,
+ "line": 83,
"column": 27
}
}
},
"range": [
- 2695,
- 2714
+ 2960,
+ 2979
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 8
},
"end": {
- "line": 77,
+ "line": 83,
"column": 27
}
}
@@ -5557,16 +6049,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2717,
- 2720
+ 2982,
+ 2985
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 30
},
"end": {
- "line": 77,
+ "line": 83,
"column": 33
}
}
@@ -5575,31 +6067,31 @@
"type": "Identifier",
"name": "active_cell_css",
"range": [
- 2721,
- 2736
+ 2986,
+ 3001
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 34
},
"end": {
- "line": 77,
+ "line": 83,
"column": 49
}
}
},
"range": [
- 2717,
- 2736
+ 2982,
+ 3001
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 30
},
"end": {
- "line": 77,
+ "line": 83,
"column": 49
}
}
@@ -5609,61 +6101,61 @@
"value": "ezETSelectedCell",
"raw": "'ezETSelectedCell'",
"range": [
- 2740,
- 2758
+ 3005,
+ 3023
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 53
},
"end": {
- "line": 77,
+ "line": 83,
"column": 71
}
}
},
"range": [
- 2717,
- 2758
+ 2982,
+ 3023
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 30
},
"end": {
- "line": 77,
+ "line": 83,
"column": 71
}
}
},
"range": [
- 2695,
- 2758
+ 2960,
+ 3023
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 8
},
"end": {
- "line": 77,
+ "line": 83,
"column": 71
}
}
},
"range": [
- 2695,
- 2759
+ 2960,
+ 3024
],
"loc": {
"start": {
- "line": 77,
+ "line": 83,
"column": 8
},
"end": {
- "line": 77,
+ "line": 83,
"column": 72
}
},
@@ -5672,16 +6164,16 @@
"type": "Line",
"value": "CSS Styles",
"range": [
- 2674,
- 2686
+ 2939,
+ 2951
],
"loc": {
"start": {
- "line": 76,
+ "line": 82,
"column": 8
},
"end": {
- "line": 76,
+ "line": 82,
"column": 20
}
}
@@ -5697,16 +6189,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 2773,
- 2791
+ 3038,
+ 3056
],
"loc": {
"start": {
- "line": 79,
+ "line": 85,
"column": 12
},
"end": {
- "line": 79,
+ "line": 85,
"column": 30
}
}
@@ -5716,31 +6208,31 @@
"value": 0,
"raw": "0",
"range": [
- 2794,
- 2795
+ 3059,
+ 3060
],
"loc": {
"start": {
- "line": 79,
+ "line": 85,
"column": 33
},
"end": {
- "line": 79,
+ "line": 85,
"column": 34
}
}
},
"range": [
- 2773,
- 2795
+ 3038,
+ 3060
],
"loc": {
"start": {
- "line": 79,
+ "line": 85,
"column": 12
},
"end": {
- "line": 79,
+ "line": 85,
"column": 34
}
}
@@ -5748,16 +6240,16 @@
],
"kind": "var",
"range": [
- 2769,
- 2796
+ 3034,
+ 3061
],
"loc": {
"start": {
- "line": 79,
+ "line": 85,
"column": 8
},
"end": {
- "line": 79,
+ "line": 85,
"column": 35
}
}
@@ -5771,16 +6263,16 @@
"type": "Identifier",
"name": "_lastRowIndex",
"range": [
- 2809,
- 2822
+ 3074,
+ 3087
],
"loc": {
"start": {
- "line": 80,
+ "line": 86,
"column": 12
},
"end": {
- "line": 80,
+ "line": 86,
"column": 25
}
}
@@ -5790,31 +6282,31 @@
"value": 0,
"raw": "0",
"range": [
- 2825,
- 2826
+ 3090,
+ 3091
],
"loc": {
"start": {
- "line": 80,
+ "line": 86,
"column": 28
},
"end": {
- "line": 80,
+ "line": 86,
"column": 29
}
}
},
"range": [
- 2809,
- 2826
+ 3074,
+ 3091
],
"loc": {
"start": {
- "line": 80,
+ "line": 86,
"column": 12
},
"end": {
- "line": 80,
+ "line": 86,
"column": 29
}
}
@@ -5822,16 +6314,16 @@
],
"kind": "var",
"range": [
- 2805,
- 2827
+ 3070,
+ 3092
],
"loc": {
"start": {
- "line": 80,
+ "line": 86,
"column": 8
},
"end": {
- "line": 80,
+ "line": 86,
"column": 30
}
}
@@ -5842,16 +6334,16 @@
"type": "Identifier",
"name": "selectable",
"range": [
- 2840,
- 2850
+ 3105,
+ 3115
],
"loc": {
"start": {
- "line": 82,
+ "line": 88,
"column": 11
},
"end": {
- "line": 82,
+ "line": 88,
"column": 21
}
}
@@ -5868,16 +6360,16 @@
"type": "Identifier",
"name": "onAfterSelection",
"range": [
- 2983,
- 2999
+ 3248,
+ 3264
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 16
},
"end": {
- "line": 85,
+ "line": 91,
"column": 32
}
}
@@ -5890,16 +6382,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 3011,
- 3013
+ 3276,
+ 3278
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 44
},
"end": {
- "line": 85,
+ "line": 91,
"column": 46
}
}
@@ -5908,16 +6400,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 3015,
- 3026
+ 3280,
+ 3291
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 48
},
"end": {
- "line": 85,
+ "line": 91,
"column": 59
}
}
@@ -5926,16 +6418,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 3028,
- 3029
+ 3293,
+ 3294
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 61
},
"end": {
- "line": 85,
+ "line": 91,
"column": 62
}
}
@@ -5953,16 +6445,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 3052,
- 3055
+ 3317,
+ 3320
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 20
},
"end": {
- "line": 86,
+ "line": 92,
"column": 23
}
}
@@ -5974,16 +6466,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 3058,
- 3060
+ 3323,
+ 3325
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 26
},
"end": {
- "line": 86,
+ "line": 92,
"column": 28
}
}
@@ -5992,46 +6484,46 @@
"type": "Identifier",
"name": "Selection",
"range": [
- 3061,
- 3070
+ 3326,
+ 3335
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 29
},
"end": {
- "line": 86,
+ "line": 92,
"column": 38
}
}
},
"range": [
- 3058,
- 3070
+ 3323,
+ 3335
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 26
},
"end": {
- "line": 86,
+ "line": 92,
"column": 38
}
}
},
"range": [
- 3052,
- 3070
+ 3317,
+ 3335
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 20
},
"end": {
- "line": 86,
+ "line": 92,
"column": 38
}
}
@@ -6039,16 +6531,16 @@
],
"kind": "var",
"range": [
- 3048,
- 3071
+ 3313,
+ 3336
],
"loc": {
"start": {
- "line": 86,
+ "line": 92,
"column": 16
},
"end": {
- "line": 86,
+ "line": 92,
"column": 39
}
},
@@ -6057,16 +6549,16 @@
"type": "Line",
"value": "Next valid filtered row needs to be selected",
"range": [
- 3088,
- 3134
+ 3353,
+ 3399
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 16
},
"end": {
- "line": 87,
+ "line": 93,
"column": 62
}
}
@@ -6082,16 +6574,16 @@
"type": "Identifier",
"name": "doSelect",
"range": [
- 3155,
- 3163
+ 3420,
+ 3428
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 20
},
"end": {
- "line": 88,
+ "line": 94,
"column": 28
}
}
@@ -6104,16 +6596,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 3175,
- 3187
+ 3440,
+ 3452
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 40
},
"end": {
- "line": 88,
+ "line": 94,
"column": 52
}
}
@@ -6134,16 +6626,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 3213,
- 3215
+ 3478,
+ 3480
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 23
},
"end": {
- "line": 89,
+ "line": 95,
"column": 25
}
}
@@ -6152,31 +6644,31 @@
"type": "Identifier",
"name": "defaultSelection",
"range": [
- 3216,
- 3232
+ 3481,
+ 3497
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 26
},
"end": {
- "line": 89,
+ "line": 95,
"column": 42
}
}
},
"range": [
- 3213,
- 3232
+ 3478,
+ 3497
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 23
},
"end": {
- "line": 89,
+ "line": 95,
"column": 42
}
}
@@ -6186,31 +6678,31 @@
"value": "row",
"raw": "'row'",
"range": [
- 3237,
- 3242
+ 3502,
+ 3507
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 47
},
"end": {
- "line": 89,
+ "line": 95,
"column": 52
}
}
},
"range": [
- 3213,
- 3242
+ 3478,
+ 3507
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 23
},
"end": {
- "line": 89,
+ "line": 95,
"column": 52
}
}
@@ -6229,16 +6721,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 3269,
- 3272
+ 3534,
+ 3537
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 24
},
"end": {
- "line": 90,
+ "line": 96,
"column": 27
}
}
@@ -6247,31 +6739,31 @@
"type": "Identifier",
"name": "SelectRowByIndex",
"range": [
- 3273,
- 3289
+ 3538,
+ 3554
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 28
},
"end": {
- "line": 90,
+ "line": 96,
"column": 44
}
}
},
"range": [
- 3269,
- 3289
+ 3534,
+ 3554
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 24
},
"end": {
- "line": 90,
+ "line": 96,
"column": 44
}
}
@@ -6281,63 +6773,63 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 3290,
- 3302
+ 3555,
+ 3567
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 45
},
"end": {
- "line": 90,
+ "line": 96,
"column": 57
}
}
}
],
"range": [
- 3269,
- 3303
+ 3534,
+ 3568
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 24
},
"end": {
- "line": 90,
+ "line": 96,
"column": 58
}
}
},
"range": [
- 3269,
- 3304
+ 3534,
+ 3569
],
"loc": {
"start": {
- "line": 90,
+ "line": 96,
"column": 24
},
"end": {
- "line": 90,
+ "line": 96,
"column": 59
}
}
}
],
"range": [
- 3243,
- 3326
+ 3508,
+ 3591
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 53
},
"end": {
- "line": 91,
+ "line": 97,
"column": 21
}
}
@@ -6356,16 +6848,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 3358,
- 3360
+ 3623,
+ 3625
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 24
},
"end": {
- "line": 92,
+ "line": 98,
"column": 26
}
}
@@ -6374,62 +6866,62 @@
"type": "Identifier",
"name": "ClearSelections",
"range": [
- 3361,
- 3376
+ 3626,
+ 3641
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 27
},
"end": {
- "line": 92,
+ "line": 98,
"column": 42
}
}
},
"range": [
- 3358,
- 3376
+ 3623,
+ 3641
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 24
},
"end": {
- "line": 92,
+ "line": 98,
"column": 42
}
}
},
"arguments": [],
"range": [
- 3358,
- 3378
+ 3623,
+ 3643
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 24
},
"end": {
- "line": 92,
+ "line": 98,
"column": 44
}
}
},
"range": [
- 3358,
- 3379
+ 3623,
+ 3644
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 24
},
"end": {
- "line": 92,
+ "line": 98,
"column": 45
}
}
@@ -6443,16 +6935,16 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 3408,
- 3417
+ 3673,
+ 3682
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 28
},
"end": {
- "line": 93,
+ "line": 99,
"column": 37
}
}
@@ -6464,16 +6956,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 3420,
- 3431
+ 3685,
+ 3696
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 40
},
"end": {
- "line": 93,
+ "line": 99,
"column": 51
}
}
@@ -6482,46 +6974,46 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 3432,
- 3441
+ 3697,
+ 3706
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 52
},
"end": {
- "line": 93,
+ "line": 99,
"column": 61
}
}
},
"range": [
- 3420,
- 3441
+ 3685,
+ 3706
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 40
},
"end": {
- "line": 93,
+ "line": 99,
"column": 61
}
}
},
"range": [
- 3408,
- 3441
+ 3673,
+ 3706
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 28
},
"end": {
- "line": 93,
+ "line": 99,
"column": 61
}
}
@@ -6532,16 +7024,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 3471,
- 3474
+ 3736,
+ 3739
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 28
},
"end": {
- "line": 94,
+ "line": 100,
"column": 31
}
}
@@ -6559,16 +7051,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3477,
- 3479
+ 3742,
+ 3744
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 34
},
"end": {
- "line": 94,
+ "line": 100,
"column": 36
}
}
@@ -6577,31 +7069,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3480,
- 3483
+ 3745,
+ 3748
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 37
},
"end": {
- "line": 94,
+ "line": 100,
"column": 40
}
}
},
"range": [
- 3477,
- 3483
+ 3742,
+ 3748
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 34
},
"end": {
- "line": 94,
+ "line": 100,
"column": 40
}
}
@@ -6610,31 +7102,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 3484,
- 3488
+ 3749,
+ 3753
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 41
},
"end": {
- "line": 94,
+ "line": 100,
"column": 45
}
}
},
"range": [
- 3477,
- 3488
+ 3742,
+ 3753
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 34
},
"end": {
- "line": 94,
+ "line": 100,
"column": 45
}
}
@@ -6643,46 +7135,46 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 3489,
- 3501
+ 3754,
+ 3766
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 46
},
"end": {
- "line": 94,
+ "line": 100,
"column": 58
}
}
},
"range": [
- 3477,
- 3502
+ 3742,
+ 3767
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 34
},
"end": {
- "line": 94,
+ "line": 100,
"column": 59
}
}
},
"range": [
- 3471,
- 3502
+ 3736,
+ 3767
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 28
},
"end": {
- "line": 94,
+ "line": 100,
"column": 59
}
}
@@ -6690,16 +7182,16 @@
],
"kind": "var",
"range": [
- 3404,
- 3503
+ 3669,
+ 3768
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 24
},
"end": {
- "line": 94,
+ "line": 100,
"column": 60
}
}
@@ -6716,16 +7208,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 3531,
- 3533
+ 3796,
+ 3798
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 27
},
"end": {
- "line": 95,
+ "line": 101,
"column": 29
}
}
@@ -6734,31 +7226,31 @@
"type": "Identifier",
"name": "defaultSelection",
"range": [
- 3534,
- 3550
+ 3799,
+ 3815
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 30
},
"end": {
- "line": 95,
+ "line": 101,
"column": 46
}
}
},
"range": [
- 3531,
- 3550
+ 3796,
+ 3815
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 27
},
"end": {
- "line": 95,
+ "line": 101,
"column": 46
}
}
@@ -6768,31 +7260,31 @@
"value": "both",
"raw": "'both'",
"range": [
- 3555,
- 3561
+ 3820,
+ 3826
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 51
},
"end": {
- "line": 95,
+ "line": 101,
"column": 57
}
}
},
"range": [
- 3531,
- 3561
+ 3796,
+ 3826
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 27
},
"end": {
- "line": 95,
+ "line": 101,
"column": 57
}
}
@@ -6811,16 +7303,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 3592,
- 3595
+ 3857,
+ 3860
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 28
},
"end": {
- "line": 96,
+ "line": 102,
"column": 31
}
}
@@ -6829,31 +7321,31 @@
"type": "Identifier",
"name": "SelectRowByIndex",
"range": [
- 3596,
- 3612
+ 3861,
+ 3877
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 32
},
"end": {
- "line": 96,
+ "line": 102,
"column": 48
}
}
},
"range": [
- 3592,
- 3612
+ 3857,
+ 3877
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 28
},
"end": {
- "line": 96,
+ "line": 102,
"column": 48
}
}
@@ -6863,79 +7355,79 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 3613,
- 3625
+ 3878,
+ 3890
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 49
},
"end": {
- "line": 96,
+ "line": 102,
"column": 61
}
}
}
],
"range": [
- 3592,
- 3626
+ 3857,
+ 3891
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 28
},
"end": {
- "line": 96,
+ "line": 102,
"column": 62
}
}
},
"range": [
- 3592,
- 3627
+ 3857,
+ 3892
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 28
},
"end": {
- "line": 96,
+ "line": 102,
"column": 63
}
}
}
],
"range": [
- 3562,
- 3653
+ 3827,
+ 3918
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 58
},
"end": {
- "line": 97,
+ "line": 103,
"column": 25
}
}
},
"alternate": null,
"range": [
- 3528,
- 3653
+ 3793,
+ 3918
],
"loc": {
"start": {
- "line": 95,
+ "line": 101,
"column": 24
},
"end": {
- "line": 97,
+ "line": 103,
"column": 25
}
}
@@ -6946,16 +7438,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 3681,
- 3684
+ 3946,
+ 3949
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 27
},
"end": {
- "line": 98,
+ "line": 104,
"column": 30
}
}
@@ -6974,16 +7466,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 3715,
- 3718
+ 3980,
+ 3983
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 28
},
"end": {
- "line": 99,
+ "line": 105,
"column": 31
}
}
@@ -6992,31 +7484,31 @@
"type": "Identifier",
"name": "SelectCell",
"range": [
- 3719,
- 3729
+ 3984,
+ 3994
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 32
},
"end": {
- "line": 99,
+ "line": 105,
"column": 42
}
}
},
"range": [
- 3715,
- 3729
+ 3980,
+ 3994
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 28
},
"end": {
- "line": 99,
+ "line": 105,
"column": 42
}
}
@@ -7032,16 +7524,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 3730,
- 3733
+ 3995,
+ 3998
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 43
},
"end": {
- "line": 99,
+ "line": 105,
"column": 46
}
}
@@ -7050,31 +7542,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 3734,
- 3739
+ 3999,
+ 4004
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 47
},
"end": {
- "line": 99,
+ "line": 105,
"column": 52
}
}
},
"range": [
- 3730,
- 3739
+ 3995,
+ 4004
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 43
},
"end": {
- "line": 99,
+ "line": 105,
"column": 52
}
}
@@ -7083,125 +7575,125 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 3740,
- 3749
+ 4005,
+ 4014
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 53
},
"end": {
- "line": 99,
+ "line": 105,
"column": 62
}
}
},
"range": [
- 3730,
- 3750
+ 3995,
+ 4015
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 43
},
"end": {
- "line": 99,
+ "line": 105,
"column": 63
}
}
}
],
"range": [
- 3715,
- 3751
+ 3980,
+ 4016
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 28
},
"end": {
- "line": 99,
+ "line": 105,
"column": 64
}
}
},
"range": [
- 3715,
- 3752
+ 3980,
+ 4017
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 28
},
"end": {
- "line": 99,
+ "line": 105,
"column": 65
}
}
}
],
"range": [
- 3685,
- 3778
+ 3950,
+ 4043
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 31
},
"end": {
- "line": 100,
+ "line": 106,
"column": 25
}
}
},
"alternate": null,
"range": [
- 3678,
- 3778
+ 3943,
+ 4043
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 24
},
"end": {
- "line": 100,
+ "line": 106,
"column": 25
}
}
}
],
"range": [
- 3332,
- 3800
+ 3597,
+ 4065
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 27
},
"end": {
- "line": 101,
+ "line": 107,
"column": 21
}
}
},
"range": [
- 3210,
- 3800
+ 3475,
+ 4065
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 20
},
"end": {
- "line": 101,
+ "line": 107,
"column": 21
}
},
@@ -7210,16 +7702,16 @@
"type": "Line",
"value": "Table is filtered",
"range": [
- 3821,
- 3840
+ 4086,
+ 4105
],
"loc": {
"start": {
- "line": 102,
+ "line": 108,
"column": 20
},
"end": {
- "line": 102,
+ "line": 108,
"column": 39
}
}
@@ -7241,16 +7733,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3864,
- 3866
+ 4129,
+ 4131
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 23
},
"end": {
- "line": 103,
+ "line": 109,
"column": 25
}
}
@@ -7259,31 +7751,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 3867,
- 3881
+ 4132,
+ 4146
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 26
},
"end": {
- "line": 103,
+ "line": 109,
"column": 40
}
}
},
"range": [
- 3864,
- 3881
+ 4129,
+ 4146
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 23
},
"end": {
- "line": 103,
+ "line": 109,
"column": 40
}
}
@@ -7292,31 +7784,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 3882,
- 3888
+ 4147,
+ 4153
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 41
},
"end": {
- "line": 103,
+ "line": 109,
"column": 47
}
}
},
"range": [
- 3864,
- 3888
+ 4129,
+ 4153
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 23
},
"end": {
- "line": 103,
+ "line": 109,
"column": 47
}
}
@@ -7330,16 +7822,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3893,
- 3895
+ 4158,
+ 4160
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 52
},
"end": {
- "line": 103,
+ "line": 109,
"column": 54
}
}
@@ -7348,62 +7840,62 @@
"type": "Identifier",
"name": "getRowsNb",
"range": [
- 3896,
- 3905
+ 4161,
+ 4170
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 55
},
"end": {
- "line": 103,
+ "line": 109,
"column": 64
}
}
},
"range": [
- 3893,
- 3905
+ 4158,
+ 4170
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 52
},
"end": {
- "line": 103,
+ "line": 109,
"column": 64
}
}
},
"arguments": [],
"range": [
- 3893,
- 3907
+ 4158,
+ 4172
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 52
},
"end": {
- "line": 103,
+ "line": 109,
"column": 66
}
}
},
"range": [
- 3864,
- 3907
+ 4129,
+ 4172
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 23
},
"end": {
- "line": 103,
+ "line": 109,
"column": 66
}
}
@@ -7420,16 +7912,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 3938,
- 3939
+ 4203,
+ 4204
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 28
},
"end": {
- "line": 104,
+ "line": 110,
"column": 29
}
}
@@ -7447,16 +7939,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3942,
- 3944
+ 4207,
+ 4209
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 32
},
"end": {
- "line": 104,
+ "line": 110,
"column": 34
}
}
@@ -7465,31 +7957,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3945,
- 3948
+ 4210,
+ 4213
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 35
},
"end": {
- "line": 104,
+ "line": 110,
"column": 38
}
}
},
"range": [
- 3942,
- 3948
+ 4207,
+ 4213
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 32
},
"end": {
- "line": 104,
+ "line": 110,
"column": 38
}
}
@@ -7498,31 +7990,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 3949,
- 3953
+ 4214,
+ 4218
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 39
},
"end": {
- "line": 104,
+ "line": 110,
"column": 43
}
}
},
"range": [
- 3942,
- 3953
+ 4207,
+ 4218
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 32
},
"end": {
- "line": 104,
+ "line": 110,
"column": 43
}
}
@@ -7531,46 +8023,46 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 3954,
- 3966
+ 4219,
+ 4231
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 44
},
"end": {
- "line": 104,
+ "line": 110,
"column": 56
}
}
},
"range": [
- 3942,
- 3967
+ 4207,
+ 4232
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 32
},
"end": {
- "line": 104,
+ "line": 110,
"column": 57
}
}
},
"range": [
- 3938,
- 3967
+ 4203,
+ 4232
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 28
},
"end": {
- "line": 104,
+ "line": 110,
"column": 57
}
}
@@ -7578,16 +8070,16 @@
],
"kind": "var",
"range": [
- 3934,
- 3968
+ 4199,
+ 4233
],
"loc": {
"start": {
- "line": 104,
+ "line": 110,
"column": 24
},
"end": {
- "line": 104,
+ "line": 110,
"column": 58
}
}
@@ -7598,16 +8090,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 3996,
- 3997
+ 4261,
+ 4262
],
"loc": {
"start": {
- "line": 105,
+ "line": 111,
"column": 27
},
"end": {
- "line": 105,
+ "line": 111,
"column": 28
}
}
@@ -7626,16 +8118,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 4028,
- 4029
+ 4293,
+ 4294
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 28
},
"end": {
- "line": 106,
+ "line": 112,
"column": 29
}
}
@@ -7644,31 +8136,31 @@
"type": "Identifier",
"name": "scrollIntoView",
"range": [
- 4030,
- 4044
+ 4295,
+ 4309
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 30
},
"end": {
- "line": 106,
+ "line": 112,
"column": 44
}
}
},
"range": [
- 4028,
- 4044
+ 4293,
+ 4309
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 28
},
"end": {
- "line": 106,
+ "line": 112,
"column": 44
}
}
@@ -7679,79 +8171,79 @@
"value": false,
"raw": "false",
"range": [
- 4045,
- 4050
+ 4310,
+ 4315
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 45
},
"end": {
- "line": 106,
+ "line": 112,
"column": 50
}
}
}
],
"range": [
- 4028,
- 4051
+ 4293,
+ 4316
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 28
},
"end": {
- "line": 106,
+ "line": 112,
"column": 51
}
}
},
"range": [
- 4028,
- 4052
+ 4293,
+ 4317
],
"loc": {
"start": {
- "line": 106,
+ "line": 112,
"column": 28
},
"end": {
- "line": 106,
+ "line": 112,
"column": 52
}
}
}
],
"range": [
- 3998,
- 4078
+ 4263,
+ 4343
],
"loc": {
"start": {
- "line": 105,
+ "line": 111,
"column": 29
},
"end": {
- "line": 107,
+ "line": 113,
"column": 25
}
}
},
"alternate": null,
"range": [
- 3993,
- 4078
+ 4258,
+ 4343
],
"loc": {
"start": {
- "line": 105,
+ "line": 111,
"column": 24
},
"end": {
- "line": 107,
+ "line": 113,
"column": 25
}
}
@@ -7762,16 +8254,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 4106,
- 4110
+ 4371,
+ 4375
],
"loc": {
"start": {
- "line": 108,
+ "line": 114,
"column": 27
},
"end": {
- "line": 108,
+ "line": 114,
"column": 31
}
}
@@ -7794,16 +8286,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 4144,
- 4148
+ 4409,
+ 4413
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 31
},
"end": {
- "line": 109,
+ "line": 115,
"column": 35
}
}
@@ -7812,31 +8304,31 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 4149,
- 4158
+ 4414,
+ 4423
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 36
},
"end": {
- "line": 109,
+ "line": 115,
"column": 45
}
}
},
"range": [
- 4144,
- 4158
+ 4409,
+ 4423
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 31
},
"end": {
- "line": 109,
+ "line": 115,
"column": 45
}
}
@@ -7853,16 +8345,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4164,
- 4166
+ 4429,
+ 4431
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 51
},
"end": {
- "line": 109,
+ "line": 115,
"column": 53
}
}
@@ -7871,47 +8363,47 @@
"type": "Identifier",
"name": "getCellsNb",
"range": [
- 4167,
- 4177
+ 4432,
+ 4442
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 54
},
"end": {
- "line": 109,
+ "line": 115,
"column": 64
}
}
},
"range": [
- 4164,
- 4177
+ 4429,
+ 4442
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 51
},
"end": {
- "line": 109,
+ "line": 115,
"column": 64
}
}
},
"arguments": [],
"range": [
- 4164,
- 4179
+ 4429,
+ 4444
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 51
},
"end": {
- "line": 109,
+ "line": 115,
"column": 66
}
}
@@ -7921,46 +8413,46 @@
"value": 1,
"raw": "1",
"range": [
- 4180,
- 4181
+ 4445,
+ 4446
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 67
},
"end": {
- "line": 109,
+ "line": 115,
"column": 68
}
}
},
"range": [
- 4164,
- 4181
+ 4429,
+ 4446
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 51
},
"end": {
- "line": 109,
+ "line": 115,
"column": 68
}
}
},
"range": [
- 4144,
- 4182
+ 4409,
+ 4447
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 31
},
"end": {
- "line": 109,
+ "line": 115,
"column": 69
}
}
@@ -7972,16 +8464,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4218,
- 4220
+ 4483,
+ 4485
],
"loc": {
"start": {
- "line": 110,
+ "line": 116,
"column": 32
},
"end": {
- "line": 110,
+ "line": 116,
"column": 34
}
}
@@ -7990,46 +8482,46 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 4221,
- 4231
+ 4486,
+ 4496
],
"loc": {
"start": {
- "line": 110,
+ "line": 116,
"column": 35
},
"end": {
- "line": 110,
+ "line": 116,
"column": 45
}
}
},
"range": [
- 4218,
- 4231
+ 4483,
+ 4496
],
"loc": {
"start": {
- "line": 110,
+ "line": 116,
"column": 32
},
"end": {
- "line": 110,
+ "line": 116,
"column": 45
}
}
},
"range": [
- 4144,
- 4231
+ 4409,
+ 4496
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 31
},
"end": {
- "line": 110,
+ "line": 116,
"column": 45
}
}
@@ -8052,16 +8544,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4266,
- 4268
+ 4531,
+ 4533
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 32
},
"end": {
- "line": 111,
+ "line": 117,
"column": 34
}
}
@@ -8070,31 +8562,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4269,
- 4276
+ 4534,
+ 4541
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 35
},
"end": {
- "line": 111,
+ "line": 117,
"column": 42
}
}
},
"range": [
- 4266,
- 4276
+ 4531,
+ 4541
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 32
},
"end": {
- "line": 111,
+ "line": 117,
"column": 42
}
}
@@ -8103,31 +8595,31 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 4277,
- 4287
+ 4542,
+ 4552
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 43
},
"end": {
- "line": 111,
+ "line": 117,
"column": 53
}
}
},
"range": [
- 4266,
- 4287
+ 4531,
+ 4552
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 32
},
"end": {
- "line": 111,
+ "line": 117,
"column": 53
}
}
@@ -8137,62 +8629,62 @@
"value": 100000000,
"raw": "100000000",
"range": [
- 4290,
- 4299
+ 4555,
+ 4564
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 56
},
"end": {
- "line": 111,
+ "line": 117,
"column": 65
}
}
},
"range": [
- 4266,
- 4299
+ 4531,
+ 4564
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 32
},
"end": {
- "line": 111,
+ "line": 117,
"column": 65
}
}
},
"range": [
- 4266,
- 4300
+ 4531,
+ 4565
],
"loc": {
"start": {
- "line": 111,
+ "line": 117,
"column": 32
},
"end": {
- "line": 111,
+ "line": 117,
"column": 66
}
}
}
],
"range": [
- 4232,
- 4330
+ 4497,
+ 4595
],
"loc": {
"start": {
- "line": 110,
+ "line": 116,
"column": 46
},
"end": {
- "line": 112,
+ "line": 118,
"column": 29
}
}
@@ -8212,16 +8704,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 4367,
- 4371
+ 4632,
+ 4636
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 36
},
"end": {
- "line": 113,
+ "line": 119,
"column": 40
}
}
@@ -8230,31 +8722,31 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 4372,
- 4381
+ 4637,
+ 4646
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 41
},
"end": {
- "line": 113,
+ "line": 119,
"column": 50
}
}
},
"range": [
- 4367,
- 4381
+ 4632,
+ 4646
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 36
},
"end": {
- "line": 113,
+ "line": 119,
"column": 50
}
}
@@ -8264,31 +8756,31 @@
"value": 0,
"raw": "0",
"range": [
- 4384,
- 4385
+ 4649,
+ 4650
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 53
},
"end": {
- "line": 113,
+ "line": 119,
"column": 54
}
}
},
"range": [
- 4367,
- 4385
+ 4632,
+ 4650
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 36
},
"end": {
- "line": 113,
+ "line": 119,
"column": 54
}
}
@@ -8300,16 +8792,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4389,
- 4391
+ 4654,
+ 4656
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 58
},
"end": {
- "line": 113,
+ "line": 119,
"column": 60
}
}
@@ -8318,46 +8810,46 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 4392,
- 4402
+ 4657,
+ 4667
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 61
},
"end": {
- "line": 113,
+ "line": 119,
"column": 71
}
}
},
"range": [
- 4389,
- 4402
+ 4654,
+ 4667
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 58
},
"end": {
- "line": 113,
+ "line": 119,
"column": 71
}
}
},
"range": [
- 4367,
- 4402
+ 4632,
+ 4667
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 36
},
"end": {
- "line": 113,
+ "line": 119,
"column": 71
}
}
@@ -8380,16 +8872,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4437,
- 4439
+ 4702,
+ 4704
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 32
},
"end": {
- "line": 114,
+ "line": 120,
"column": 34
}
}
@@ -8398,31 +8890,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4440,
- 4447
+ 4705,
+ 4712
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 35
},
"end": {
- "line": 114,
+ "line": 120,
"column": 42
}
}
},
"range": [
- 4437,
- 4447
+ 4702,
+ 4712
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 32
},
"end": {
- "line": 114,
+ "line": 120,
"column": 42
}
}
@@ -8431,31 +8923,31 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 4448,
- 4458
+ 4713,
+ 4723
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 43
},
"end": {
- "line": 114,
+ "line": 120,
"column": 53
}
}
},
"range": [
- 4437,
- 4458
+ 4702,
+ 4723
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 32
},
"end": {
- "line": 114,
+ "line": 120,
"column": 53
}
}
@@ -8465,62 +8957,62 @@
"value": 0,
"raw": "0",
"range": [
- 4461,
- 4462
+ 4726,
+ 4727
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 56
},
"end": {
- "line": 114,
+ "line": 120,
"column": 57
}
}
},
"range": [
- 4437,
- 4462
+ 4702,
+ 4727
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 32
},
"end": {
- "line": 114,
+ "line": 120,
"column": 57
}
}
},
"range": [
- 4437,
- 4463
+ 4702,
+ 4728
],
"loc": {
"start": {
- "line": 114,
+ "line": 120,
"column": 32
},
"end": {
- "line": 114,
+ "line": 120,
"column": 58
}
}
}
],
"range": [
- 4403,
- 4493
+ 4668,
+ 4758
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 72
},
"end": {
- "line": 115,
+ "line": 121,
"column": 29
}
}
@@ -8539,16 +9031,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 4533,
- 4537
+ 4798,
+ 4802
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 32
},
"end": {
- "line": 116,
+ "line": 122,
"column": 36
}
}
@@ -8557,31 +9049,31 @@
"type": "Identifier",
"name": "scrollIntoView",
"range": [
- 4538,
- 4552
+ 4803,
+ 4817
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 37
},
"end": {
- "line": 116,
+ "line": 122,
"column": 51
}
}
},
"range": [
- 4533,
- 4552
+ 4798,
+ 4817
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 32
},
"end": {
- "line": 116,
+ "line": 122,
"column": 51
}
}
@@ -8592,157 +9084,157 @@
"value": false,
"raw": "false",
"range": [
- 4553,
- 4558
+ 4818,
+ 4823
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 52
},
"end": {
- "line": 116,
+ "line": 122,
"column": 57
}
}
}
],
"range": [
- 4533,
- 4559
+ 4798,
+ 4824
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 32
},
"end": {
- "line": 116,
+ "line": 122,
"column": 58
}
}
},
"range": [
- 4533,
- 4560
+ 4798,
+ 4825
],
"loc": {
"start": {
- "line": 116,
+ "line": 122,
"column": 32
},
"end": {
- "line": 116,
+ "line": 122,
"column": 59
}
}
}
],
"range": [
- 4499,
- 4590
+ 4764,
+ 4855
],
"loc": {
"start": {
- "line": 115,
+ "line": 121,
"column": 35
},
"end": {
- "line": 117,
+ "line": 123,
"column": 29
}
}
},
"range": [
- 4364,
- 4590
+ 4629,
+ 4855
],
"loc": {
"start": {
- "line": 113,
+ "line": 119,
"column": 33
},
"end": {
- "line": 117,
+ "line": 123,
"column": 29
}
}
},
"range": [
- 4141,
- 4590
+ 4406,
+ 4855
],
"loc": {
"start": {
- "line": 109,
+ "line": 115,
"column": 28
},
"end": {
- "line": 117,
+ "line": 123,
"column": 29
}
}
}
],
"range": [
- 4111,
- 4616
+ 4376,
+ 4881
],
"loc": {
"start": {
- "line": 108,
+ "line": 114,
"column": 32
},
"end": {
- "line": 118,
+ "line": 124,
"column": 25
}
}
},
"alternate": null,
"range": [
- 4103,
- 4616
+ 4368,
+ 4881
],
"loc": {
"start": {
- "line": 108,
+ "line": 114,
"column": 24
},
"end": {
- "line": 118,
+ "line": 124,
"column": 25
}
}
}
],
"range": [
- 3908,
- 4638
+ 4173,
+ 4903
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 67
},
"end": {
- "line": 119,
+ "line": 125,
"column": 21
}
}
},
"alternate": null,
"range": [
- 3861,
- 4638
+ 4126,
+ 4903
],
"loc": {
"start": {
- "line": 103,
+ "line": 109,
"column": 20
},
"end": {
- "line": 119,
+ "line": 125,
"column": 21
}
},
@@ -8751,16 +9243,16 @@
"type": "Line",
"value": "Table is filtered",
"range": [
- 3821,
- 3840
+ 4086,
+ 4105
],
"loc": {
"start": {
- "line": 102,
+ "line": 108,
"column": 20
},
"end": {
- "line": 102,
+ "line": 108,
"column": 39
}
}
@@ -8769,16 +9261,16 @@
}
],
"range": [
- 3188,
- 4656
+ 3453,
+ 4921
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 53
},
"end": {
- "line": 120,
+ "line": 126,
"column": 17
}
}
@@ -8786,31 +9278,31 @@
"generator": false,
"expression": false,
"range": [
- 3166,
- 4656
+ 3431,
+ 4921
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 31
},
"end": {
- "line": 120,
+ "line": 126,
"column": 17
}
}
},
"range": [
- 3155,
- 4656
+ 3420,
+ 4921
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 20
},
"end": {
- "line": 120,
+ "line": 126,
"column": 17
}
}
@@ -8818,16 +9310,16 @@
],
"kind": "var",
"range": [
- 3151,
- 4657
+ 3416,
+ 4922
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 16
},
"end": {
- "line": 120,
+ "line": 126,
"column": 18
}
},
@@ -8836,16 +9328,16 @@
"type": "Line",
"value": "Next valid filtered row needs to be selected",
"range": [
- 3088,
- 3134
+ 3353,
+ 3399
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 16
},
"end": {
- "line": 87,
+ "line": 93,
"column": 62
}
}
@@ -8856,16 +9348,16 @@
"type": "Line",
"value": "table is not filtered",
"range": [
- 4675,
- 4698
+ 4940,
+ 4963
],
"loc": {
"start": {
- "line": 122,
+ "line": 128,
"column": 16
},
"end": {
- "line": 122,
+ "line": 128,
"column": 39
}
}
@@ -8884,16 +9376,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4719,
- 4721
+ 4984,
+ 4986
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 20
},
"end": {
- "line": 123,
+ "line": 129,
"column": 22
}
}
@@ -8902,47 +9394,47 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4722,
- 4736
+ 4987,
+ 5001
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 23
},
"end": {
- "line": 123,
+ "line": 129,
"column": 37
}
}
},
"range": [
- 4719,
- 4736
+ 4984,
+ 5001
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 20
},
"end": {
- "line": 123,
+ "line": 129,
"column": 37
}
}
},
"prefix": true,
"range": [
- 4718,
- 4736
+ 4983,
+ 5001
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 19
},
"end": {
- "line": 123,
+ "line": 129,
"column": 37
}
}
@@ -8954,48 +9446,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 4759,
- 4766
+ 5024,
+ 5031
],
"loc": {
"start": {
- "line": 124,
+ "line": 130,
"column": 20
},
"end": {
- "line": 124,
+ "line": 130,
"column": 27
}
}
}
],
"range": [
- 4737,
- 4784
+ 5002,
+ 5049
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 38
},
"end": {
- "line": 125,
+ "line": 131,
"column": 17
}
}
},
"alternate": null,
"range": [
- 4715,
- 4784
+ 4980,
+ 5049
],
"loc": {
"start": {
- "line": 123,
+ "line": 129,
"column": 16
},
"end": {
- "line": 125,
+ "line": 131,
"column": 17
}
},
@@ -9004,16 +9496,16 @@
"type": "Line",
"value": "table is not filtered",
"range": [
- 4675,
- 4698
+ 4940,
+ 4963
],
"loc": {
"start": {
- "line": 122,
+ "line": 128,
"column": 16
},
"end": {
- "line": 122,
+ "line": 128,
"column": 39
}
}
@@ -9029,16 +9521,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 4805,
- 4817
+ 5070,
+ 5082
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 20
},
"end": {
- "line": 126,
+ "line": 132,
"column": 32
}
}
@@ -9050,16 +9542,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4820,
- 4822
+ 5085,
+ 5087
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 35
},
"end": {
- "line": 126,
+ "line": 132,
"column": 37
}
}
@@ -9068,46 +9560,46 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4823,
- 4837
+ 5088,
+ 5102
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 38
},
"end": {
- "line": 126,
+ "line": 132,
"column": 52
}
}
},
"range": [
- 4820,
- 4837
+ 5085,
+ 5102
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 35
},
"end": {
- "line": 126,
+ "line": 132,
"column": 52
}
}
},
"range": [
- 4805,
- 4837
+ 5070,
+ 5102
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 20
},
"end": {
- "line": 126,
+ "line": 132,
"column": 52
}
}
@@ -9118,16 +9610,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 4859,
- 4870
+ 5124,
+ 5135
],
"loc": {
"start": {
- "line": 127,
+ "line": 133,
"column": 20
},
"end": {
- "line": 127,
+ "line": 133,
"column": 31
}
}
@@ -9139,16 +9631,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 4873,
- 4885
+ 5138,
+ 5150
],
"loc": {
"start": {
- "line": 127,
+ "line": 133,
"column": 34
},
"end": {
- "line": 127,
+ "line": 133,
"column": 46
}
}
@@ -9157,46 +9649,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 4886,
- 4892
+ 5151,
+ 5157
],
"loc": {
"start": {
- "line": 127,
+ "line": 133,
"column": 47
},
"end": {
- "line": 127,
+ "line": 133,
"column": 53
}
}
},
"range": [
- 4873,
- 4892
+ 5138,
+ 5157
],
"loc": {
"start": {
- "line": 127,
+ "line": 133,
"column": 34
},
"end": {
- "line": 127,
+ "line": 133,
"column": 53
}
}
},
"range": [
- 4859,
- 4892
+ 5124,
+ 5157
],
"loc": {
"start": {
- "line": 127,
+ "line": 133,
"column": 20
},
"end": {
- "line": 127,
+ "line": 133,
"column": 53
}
}
@@ -9207,16 +9699,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 4914,
- 4917
+ 5179,
+ 5182
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 20
},
"end": {
- "line": 128,
+ "line": 134,
"column": 23
}
}
@@ -9233,16 +9725,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 4920,
- 4922
+ 5185,
+ 5187
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 26
},
"end": {
- "line": 128,
+ "line": 134,
"column": 28
}
}
@@ -9251,31 +9743,31 @@
"type": "Identifier",
"name": "defaultSelection",
"range": [
- 4923,
- 4939
+ 5188,
+ 5204
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 29
},
"end": {
- "line": 128,
+ "line": 134,
"column": 45
}
}
},
"range": [
- 4920,
- 4939
+ 5185,
+ 5204
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 26
},
"end": {
- "line": 128,
+ "line": 134,
"column": 45
}
}
@@ -9285,31 +9777,31 @@
"value": "row",
"raw": "'row'",
"range": [
- 4944,
- 4949
+ 5209,
+ 5214
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 50
},
"end": {
- "line": 128,
+ "line": 134,
"column": 55
}
}
},
"range": [
- 4920,
- 4949
+ 5185,
+ 5214
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 26
},
"end": {
- "line": 128,
+ "line": 134,
"column": 55
}
}
@@ -9321,16 +9813,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 4976,
- 4987
+ 5241,
+ 5252
],
"loc": {
"start": {
- "line": 129,
+ "line": 135,
"column": 24
},
"end": {
- "line": 129,
+ "line": 135,
"column": 35
}
}
@@ -9339,31 +9831,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 4988,
- 4998
+ 5253,
+ 5263
],
"loc": {
"start": {
- "line": 129,
+ "line": 135,
"column": 36
},
"end": {
- "line": 129,
+ "line": 135,
"column": 46
}
}
},
"range": [
- 4976,
- 4998
+ 5241,
+ 5263
],
"loc": {
"start": {
- "line": 129,
+ "line": 135,
"column": 24
},
"end": {
- "line": 129,
+ "line": 135,
"column": 46
}
}
@@ -9372,46 +9864,46 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 5001,
- 5012
+ 5266,
+ 5277
],
"loc": {
"start": {
- "line": 129,
+ "line": 135,
"column": 49
},
"end": {
- "line": 129,
+ "line": 135,
"column": 60
}
}
},
"range": [
- 4920,
- 5012
+ 5185,
+ 5277
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 26
},
"end": {
- "line": 129,
+ "line": 135,
"column": 60
}
}
},
"range": [
- 4914,
- 5012
+ 5179,
+ 5277
],
"loc": {
"start": {
- "line": 128,
+ "line": 134,
"column": 20
},
"end": {
- "line": 129,
+ "line": 135,
"column": 60
}
}
@@ -9422,16 +9914,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 5102,
- 5106
+ 5367,
+ 5371
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 20
},
"end": {
- "line": 131,
+ "line": 137,
"column": 24
}
}
@@ -9448,16 +9940,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 5109,
- 5120
+ 5374,
+ 5385
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 27
},
"end": {
- "line": 131,
+ "line": 137,
"column": 38
}
}
@@ -9466,31 +9958,31 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 5121,
- 5129
+ 5386,
+ 5394
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 39
},
"end": {
- "line": 131,
+ "line": 137,
"column": 47
}
}
},
"range": [
- 5109,
- 5129
+ 5374,
+ 5394
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 27
},
"end": {
- "line": 131,
+ "line": 137,
"column": 47
}
}
@@ -9500,31 +9992,31 @@
"value": "TD",
"raw": "'TD'",
"range": [
- 5132,
- 5136
+ 5397,
+ 5401
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 50
},
"end": {
- "line": 131,
+ "line": 137,
"column": 54
}
}
},
"range": [
- 5109,
- 5136
+ 5374,
+ 5401
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 27
},
"end": {
- "line": 131,
+ "line": 137,
"column": 54
}
}
@@ -9533,16 +10025,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 5139,
- 5150
+ 5404,
+ 5415
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 57
},
"end": {
- "line": 131,
+ "line": 137,
"column": 68
}
}
@@ -9552,46 +10044,46 @@
"value": null,
"raw": "null",
"range": [
- 5153,
- 5157
+ 5418,
+ 5422
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 71
},
"end": {
- "line": 131,
+ "line": 137,
"column": 75
}
}
},
"range": [
- 5109,
- 5157
+ 5374,
+ 5422
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 27
},
"end": {
- "line": 131,
+ "line": 137,
"column": 75
}
}
},
"range": [
- 5102,
- 5157
+ 5367,
+ 5422
],
"loc": {
"start": {
- "line": 131,
+ "line": 137,
"column": 20
},
"end": {
- "line": 131,
+ "line": 137,
"column": 75
}
},
@@ -9600,16 +10092,16 @@
"type": "Line",
"value": "cell for default_selection = 'both' or 'cell'",
"range": [
- 5034,
- 5081
+ 5299,
+ 5346
],
"loc": {
"start": {
- "line": 130,
+ "line": 136,
"column": 20
},
"end": {
- "line": 130,
+ "line": 136,
"column": 67
}
}
@@ -9622,16 +10114,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 5179,
- 5186
+ 5444,
+ 5451
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 20
},
"end": {
- "line": 132,
+ "line": 138,
"column": 27
}
}
@@ -9645,16 +10137,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 5189,
- 5190
+ 5454,
+ 5455
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 30
},
"end": {
- "line": 132,
+ "line": 138,
"column": 31
}
}
@@ -9663,31 +10155,31 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 5195,
- 5204
+ 5460,
+ 5469
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 36
},
"end": {
- "line": 132,
+ "line": 138,
"column": 45
}
}
},
"range": [
- 5189,
- 5204
+ 5454,
+ 5469
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 30
},
"end": {
- "line": 132,
+ "line": 138,
"column": 45
}
}
@@ -9704,16 +10196,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 5207,
- 5209
+ 5472,
+ 5474
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 48
},
"end": {
- "line": 132,
+ "line": 138,
"column": 50
}
}
@@ -9722,31 +10214,31 @@
"type": "Identifier",
"name": "Event",
"range": [
- 5210,
- 5215
+ 5475,
+ 5480
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 51
},
"end": {
- "line": 132,
+ "line": 138,
"column": 56
}
}
},
"range": [
- 5207,
- 5215
+ 5472,
+ 5480
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 48
},
"end": {
- "line": 132,
+ "line": 138,
"column": 56
}
}
@@ -9755,31 +10247,31 @@
"type": "Identifier",
"name": "GetKey",
"range": [
- 5216,
- 5222
+ 5481,
+ 5487
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 57
},
"end": {
- "line": 132,
+ "line": 138,
"column": 63
}
}
},
"range": [
- 5207,
- 5222
+ 5472,
+ 5487
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 48
},
"end": {
- "line": 132,
+ "line": 138,
"column": 63
}
}
@@ -9789,32 +10281,32 @@
"type": "Identifier",
"name": "e",
"range": [
- 5223,
- 5224
+ 5488,
+ 5489
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 64
},
"end": {
- "line": 132,
+ "line": 138,
"column": 65
}
}
}
],
"range": [
- 5207,
- 5225
+ 5472,
+ 5490
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 48
},
"end": {
- "line": 132,
+ "line": 138,
"column": 66
}
}
@@ -9824,46 +10316,46 @@
"value": 0,
"raw": "0",
"range": [
- 5228,
- 5229
+ 5493,
+ 5494
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 69
},
"end": {
- "line": 132,
+ "line": 138,
"column": 70
}
}
},
"range": [
- 5189,
- 5229
+ 5454,
+ 5494
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 30
},
"end": {
- "line": 132,
+ "line": 138,
"column": 70
}
}
},
"range": [
- 5179,
- 5229
+ 5444,
+ 5494
],
"loc": {
"start": {
- "line": 132,
+ "line": 138,
"column": 20
},
"end": {
- "line": 132,
+ "line": 138,
"column": 70
}
}
@@ -9874,16 +10366,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 5251,
- 5261
+ 5516,
+ 5526
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 20
},
"end": {
- "line": 133,
+ "line": 139,
"column": 30
}
}
@@ -9900,16 +10392,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 5264,
- 5276
+ 5529,
+ 5541
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 33
},
"end": {
- "line": 133,
+ "line": 139,
"column": 45
}
}
@@ -9918,31 +10410,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 5277,
- 5284
+ 5542,
+ 5549
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 46
},
"end": {
- "line": 133,
+ "line": 139,
"column": 53
}
}
},
"range": [
- 5264,
- 5284
+ 5529,
+ 5549
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 33
},
"end": {
- "line": 133,
+ "line": 139,
"column": 53
}
}
@@ -9955,16 +10447,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 5285,
- 5288
+ 5550,
+ 5553
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 54
},
"end": {
- "line": 133,
+ "line": 139,
"column": 57
}
}
@@ -9973,47 +10465,47 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 5289,
- 5297
+ 5554,
+ 5562
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 58
},
"end": {
- "line": 133,
+ "line": 139,
"column": 66
}
}
},
"range": [
- 5285,
- 5297
+ 5550,
+ 5562
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 54
},
"end": {
- "line": 133,
+ "line": 139,
"column": 66
}
}
}
],
"range": [
- 5264,
- 5298
+ 5529,
+ 5563
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 33
},
"end": {
- "line": 133,
+ "line": 139,
"column": 67
}
}
@@ -10026,62 +10518,62 @@
"value": 1,
"raw": "1",
"range": [
- 5304,
- 5305
+ 5569,
+ 5570
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 73
},
"end": {
- "line": 133,
+ "line": 139,
"column": 74
}
}
},
"prefix": true,
"range": [
- 5303,
- 5305
+ 5568,
+ 5570
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 72
},
"end": {
- "line": 133,
+ "line": 139,
"column": 74
}
}
},
"range": [
- 5264,
- 5305
+ 5529,
+ 5570
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 33
},
"end": {
- "line": 133,
+ "line": 139,
"column": 74
}
}
},
"range": [
- 5251,
- 5305
+ 5516,
+ 5570
],
"loc": {
"start": {
- "line": 133,
+ "line": 139,
"column": 20
},
"end": {
- "line": 133,
+ "line": 139,
"column": 74
}
}
@@ -10092,32 +10584,32 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 5327,
- 5339
+ 5592,
+ 5604
],
"loc": {
"start": {
- "line": 134,
+ "line": 140,
"column": 20
},
"end": {
- "line": 134,
+ "line": 140,
"column": 32
}
}
},
"init": null,
"range": [
- 5327,
- 5339
+ 5592,
+ 5604
],
"loc": {
"start": {
- "line": 134,
+ "line": 140,
"column": 20
},
"end": {
- "line": 134,
+ "line": 140,
"column": 32
}
}
@@ -10128,16 +10620,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 5361,
- 5367
+ 5626,
+ 5632
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 20
},
"end": {
- "line": 135,
+ "line": 141,
"column": 26
}
}
@@ -10151,16 +10643,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5370,
- 5372
+ 5635,
+ 5637
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 29
},
"end": {
- "line": 135,
+ "line": 141,
"column": 31
}
}
@@ -10169,31 +10661,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 5373,
- 5380
+ 5638,
+ 5645
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 32
},
"end": {
- "line": 135,
+ "line": 141,
"column": 39
}
}
},
"range": [
- 5370,
- 5380
+ 5635,
+ 5645
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 29
},
"end": {
- "line": 135,
+ "line": 141,
"column": 39
}
}
@@ -10204,47 +10696,47 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 5381,
- 5389
+ 5646,
+ 5654
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 40
},
"end": {
- "line": 135,
+ "line": 141,
"column": 48
}
}
}
],
"range": [
- 5370,
- 5390
+ 5635,
+ 5655
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 29
},
"end": {
- "line": 135,
+ "line": 141,
"column": 49
}
}
},
"range": [
- 5361,
- 5390
+ 5626,
+ 5655
],
"loc": {
"start": {
- "line": 135,
+ "line": 141,
"column": 20
},
"end": {
- "line": 135,
+ "line": 141,
"column": 49
}
}
@@ -10255,16 +10747,16 @@
"type": "Identifier",
"name": "d",
"range": [
- 5451,
- 5452
+ 5716,
+ 5717
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 20
},
"end": {
- "line": 137,
+ "line": 143,
"column": 21
}
}
@@ -10281,16 +10773,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 5456,
- 5463
+ 5721,
+ 5728
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 25
},
"end": {
- "line": 137,
+ "line": 143,
"column": 32
}
}
@@ -10300,31 +10792,31 @@
"value": 34,
"raw": "34",
"range": [
- 5468,
- 5470
+ 5733,
+ 5735
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 37
},
"end": {
- "line": 137,
+ "line": 143,
"column": 39
}
}
},
"range": [
- 5456,
- 5470
+ 5721,
+ 5735
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 25
},
"end": {
- "line": 137,
+ "line": 143,
"column": 39
}
}
@@ -10336,16 +10828,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 5474,
- 5481
+ 5739,
+ 5746
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 43
},
"end": {
- "line": 137,
+ "line": 143,
"column": 50
}
}
@@ -10355,46 +10847,46 @@
"value": 33,
"raw": "33",
"range": [
- 5486,
- 5488
+ 5751,
+ 5753
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 55
},
"end": {
- "line": 137,
+ "line": 143,
"column": 57
}
}
},
"range": [
- 5474,
- 5488
+ 5739,
+ 5753
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 43
},
"end": {
- "line": 137,
+ "line": 143,
"column": 57
}
}
},
"range": [
- 5456,
- 5488
+ 5721,
+ 5753
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 25
},
"end": {
- "line": 137,
+ "line": 143,
"column": 57
}
}
@@ -10409,16 +10901,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 5516,
- 5522
+ 5781,
+ 5787
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 25
},
"end": {
- "line": 138,
+ "line": 144,
"column": 31
}
}
@@ -10430,16 +10922,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 5526,
- 5532
+ 5791,
+ 5797
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 35
},
"end": {
- "line": 138,
+ "line": 144,
"column": 41
}
}
@@ -10448,46 +10940,46 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 5533,
- 5545
+ 5798,
+ 5810
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 42
},
"end": {
- "line": 138,
+ "line": 144,
"column": 54
}
}
},
"range": [
- 5526,
- 5545
+ 5791,
+ 5810
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 35
},
"end": {
- "line": 138,
+ "line": 144,
"column": 54
}
}
},
"range": [
- 5516,
- 5545
+ 5781,
+ 5810
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 25
},
"end": {
- "line": 138,
+ "line": 144,
"column": 54
}
}
@@ -10499,16 +10991,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 5549,
- 5551
+ 5814,
+ 5816
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 58
},
"end": {
- "line": 138,
+ "line": 144,
"column": 60
}
}
@@ -10517,46 +11009,46 @@
"type": "Identifier",
"name": "nbRowsPerPage",
"range": [
- 5552,
- 5565
+ 5817,
+ 5830
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 61
},
"end": {
- "line": 138,
+ "line": 144,
"column": 74
}
}
},
"range": [
- 5549,
- 5565
+ 5814,
+ 5830
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 58
},
"end": {
- "line": 138,
+ "line": 144,
"column": 74
}
}
},
"range": [
- 5516,
- 5565
+ 5781,
+ 5830
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 25
},
"end": {
- "line": 138,
+ "line": 144,
"column": 74
}
}
@@ -10566,46 +11058,46 @@
"value": 1,
"raw": "1",
"range": [
- 5568,
- 5569
+ 5833,
+ 5834
],
"loc": {
"start": {
- "line": 138,
+ "line": 144,
"column": 77
},
"end": {
- "line": 138,
+ "line": 144,
"column": 78
}
}
},
"range": [
- 5456,
- 5569
+ 5721,
+ 5834
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 25
},
"end": {
- "line": 138,
+ "line": 144,
"column": 78
}
}
},
"range": [
- 5451,
- 5570
+ 5716,
+ 5835
],
"loc": {
"start": {
- "line": 137,
+ "line": 143,
"column": 20
},
"end": {
- "line": 138,
+ "line": 144,
"column": 79
}
},
@@ -10614,16 +11106,16 @@
"type": "Line",
"value": "pgup/pgdown keys",
"range": [
- 5412,
- 5430
+ 5677,
+ 5695
],
"loc": {
"start": {
- "line": 136,
+ "line": 142,
"column": 20
},
"end": {
- "line": 136,
+ "line": 142,
"column": 38
}
}
@@ -10633,16 +11125,16 @@
],
"kind": "var",
"range": [
- 4801,
- 5571
+ 5066,
+ 5836
],
"loc": {
"start": {
- "line": 126,
+ "line": 132,
"column": 16
},
"end": {
- "line": 138,
+ "line": 144,
"column": 80
}
},
@@ -10651,16 +11143,16 @@
"type": "Line",
"value": "If next row is not valid, next valid filtered row needs to be",
"range": [
- 5589,
- 5652
+ 5854,
+ 5917
],
"loc": {
"start": {
- "line": 140,
+ "line": 146,
"column": 16
},
"end": {
- "line": 140,
+ "line": 146,
"column": 79
}
}
@@ -10669,16 +11161,16 @@
"type": "Line",
"value": "calculated",
"range": [
- 5669,
- 5681
+ 5934,
+ 5946
],
"loc": {
"start": {
- "line": 141,
+ "line": 147,
"column": 16
},
"end": {
- "line": 141,
+ "line": 147,
"column": 28
}
}
@@ -10694,32 +11186,32 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 5702,
- 5712
+ 5967,
+ 5977
],
"loc": {
"start": {
- "line": 142,
+ "line": 148,
"column": 20
},
"end": {
- "line": 142,
+ "line": 148,
"column": 30
}
}
},
"prefix": true,
"range": [
- 5701,
- 5712
+ 5966,
+ 5977
],
"loc": {
"start": {
- "line": 142,
+ "line": 148,
"column": 19
},
"end": {
- "line": 142,
+ "line": 148,
"column": 30
}
}
@@ -10739,16 +11231,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 5788,
- 5791
+ 6053,
+ 6056
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 23
},
"end": {
- "line": 144,
+ "line": 150,
"column": 26
}
}
@@ -10757,31 +11249,31 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 5792,
- 5800
+ 6057,
+ 6065
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 27
},
"end": {
- "line": 144,
+ "line": 150,
"column": 35
}
}
},
"range": [
- 5788,
- 5800
+ 6053,
+ 6065
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 23
},
"end": {
- "line": 144,
+ "line": 150,
"column": 35
}
}
@@ -10790,31 +11282,31 @@
"type": "Identifier",
"name": "_lastRowIndex",
"range": [
- 5801,
- 5814
+ 6066,
+ 6079
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 36
},
"end": {
- "line": 144,
+ "line": 150,
"column": 49
}
}
},
"range": [
- 5788,
- 5814
+ 6053,
+ 6079
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 23
},
"end": {
- "line": 144,
+ "line": 150,
"column": 49
}
}
@@ -10834,16 +11326,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 5879,
- 5882
+ 6144,
+ 6147
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 27
},
"end": {
- "line": 146,
+ "line": 152,
"column": 30
}
}
@@ -10852,31 +11344,31 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 5883,
- 5891
+ 6148,
+ 6156
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 31
},
"end": {
- "line": 146,
+ "line": 152,
"column": 39
}
}
},
"range": [
- 5879,
- 5891
+ 6144,
+ 6156
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 27
},
"end": {
- "line": 146,
+ "line": 152,
"column": 39
}
}
@@ -10888,16 +11380,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 5895,
- 5907
+ 6160,
+ 6172
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 43
},
"end": {
- "line": 146,
+ "line": 152,
"column": 55
}
}
@@ -10909,16 +11401,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 5908,
- 5919
+ 6173,
+ 6184
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 56
},
"end": {
- "line": 146,
+ "line": 152,
"column": 67
}
}
@@ -10928,61 +11420,61 @@
"value": 1,
"raw": "1",
"range": [
- 5920,
- 5921
+ 6185,
+ 6186
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 68
},
"end": {
- "line": 146,
+ "line": 152,
"column": 69
}
}
},
"range": [
- 5908,
- 5921
+ 6173,
+ 6186
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 56
},
"end": {
- "line": 146,
+ "line": 152,
"column": 69
}
}
},
"range": [
- 5895,
- 5922
+ 6160,
+ 6187
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 43
},
"end": {
- "line": 146,
+ "line": 152,
"column": 70
}
}
},
"range": [
- 5879,
- 5922
+ 6144,
+ 6187
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 27
},
"end": {
- "line": 146,
+ "line": 152,
"column": 70
}
}
@@ -10999,16 +11491,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 5953,
- 5965
+ 6218,
+ 6230
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 28
},
"end": {
- "line": 147,
+ "line": 153,
"column": 40
}
}
@@ -11020,16 +11512,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 5968,
- 5980
+ 6233,
+ 6245
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 43
},
"end": {
- "line": 147,
+ "line": 153,
"column": 55
}
}
@@ -11041,16 +11533,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 5981,
- 5992
+ 6246,
+ 6257
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 56
},
"end": {
- "line": 147,
+ "line": 153,
"column": 67
}
}
@@ -11060,92 +11552,92 @@
"value": 1,
"raw": "1",
"range": [
- 5993,
- 5994
+ 6258,
+ 6259
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 68
},
"end": {
- "line": 147,
+ "line": 153,
"column": 69
}
}
},
"range": [
- 5981,
- 5994
+ 6246,
+ 6259
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 56
},
"end": {
- "line": 147,
+ "line": 153,
"column": 69
}
}
},
"range": [
- 5968,
- 5995
+ 6233,
+ 6260
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 43
},
"end": {
- "line": 147,
+ "line": 153,
"column": 70
}
}
},
"range": [
- 5953,
- 5995
+ 6218,
+ 6260
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 28
},
"end": {
- "line": 147,
+ "line": 153,
"column": 70
}
}
},
"range": [
- 5953,
- 5996
+ 6218,
+ 6261
],
"loc": {
"start": {
- "line": 147,
+ "line": 153,
"column": 28
},
"end": {
- "line": 147,
+ "line": 153,
"column": 71
}
}
}
],
"range": [
- 5923,
- 6022
+ 6188,
+ 6287
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 71
},
"end": {
- "line": 148,
+ "line": 154,
"column": 25
}
}
@@ -11162,16 +11654,16 @@
"type": "Identifier",
"name": "calcRowIndex",
"range": [
- 6062,
- 6074
+ 6327,
+ 6339
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 32
},
"end": {
- "line": 149,
+ "line": 155,
"column": 44
}
}
@@ -11183,16 +11675,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 6078,
- 6096
+ 6343,
+ 6361
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 48
},
"end": {
- "line": 149,
+ "line": 155,
"column": 66
}
}
@@ -11201,46 +11693,46 @@
"type": "Identifier",
"name": "d",
"range": [
- 6099,
- 6100
+ 6364,
+ 6365
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 69
},
"end": {
- "line": 149,
+ "line": 155,
"column": 70
}
}
},
"range": [
- 6078,
- 6100
+ 6343,
+ 6365
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 48
},
"end": {
- "line": 149,
+ "line": 155,
"column": 70
}
}
},
"range": [
- 6062,
- 6101
+ 6327,
+ 6366
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 32
},
"end": {
- "line": 149,
+ "line": 155,
"column": 71
}
}
@@ -11248,16 +11740,16 @@
],
"kind": "var",
"range": [
- 6058,
- 6102
+ 6323,
+ 6367
],
"loc": {
"start": {
- "line": 149,
+ "line": 155,
"column": 28
},
"end": {
- "line": 149,
+ "line": 155,
"column": 72
}
}
@@ -11271,16 +11763,16 @@
"type": "Identifier",
"name": "calcRowIndex",
"range": [
- 6134,
- 6146
+ 6399,
+ 6411
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 31
},
"end": {
- "line": 150,
+ "line": 156,
"column": 43
}
}
@@ -11292,16 +11784,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 6150,
- 6161
+ 6415,
+ 6426
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 47
},
"end": {
- "line": 150,
+ "line": 156,
"column": 58
}
}
@@ -11311,46 +11803,46 @@
"value": 1,
"raw": "1",
"range": [
- 6162,
- 6163
+ 6427,
+ 6428
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 59
},
"end": {
- "line": 150,
+ "line": 156,
"column": 60
}
}
},
"range": [
- 6150,
- 6163
+ 6415,
+ 6428
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 47
},
"end": {
- "line": 150,
+ "line": 156,
"column": 60
}
}
},
"range": [
- 6134,
- 6164
+ 6399,
+ 6429
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 31
},
"end": {
- "line": 150,
+ "line": 156,
"column": 61
}
}
@@ -11367,16 +11859,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 6199,
- 6211
+ 6464,
+ 6476
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 32
},
"end": {
- "line": 151,
+ "line": 157,
"column": 44
}
}
@@ -11388,16 +11880,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6214,
- 6226
+ 6479,
+ 6491
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 47
},
"end": {
- "line": 151,
+ "line": 157,
"column": 59
}
}
@@ -11409,16 +11901,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 6227,
- 6238
+ 6492,
+ 6503
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 60
},
"end": {
- "line": 151,
+ "line": 157,
"column": 71
}
}
@@ -11428,92 +11920,92 @@
"value": 1,
"raw": "1",
"range": [
- 6239,
- 6240
+ 6504,
+ 6505
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 72
},
"end": {
- "line": 151,
+ "line": 157,
"column": 73
}
}
},
"range": [
- 6227,
- 6240
+ 6492,
+ 6505
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 60
},
"end": {
- "line": 151,
+ "line": 157,
"column": 73
}
}
},
"range": [
- 6214,
- 6241
+ 6479,
+ 6506
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 47
},
"end": {
- "line": 151,
+ "line": 157,
"column": 74
}
}
},
"range": [
- 6199,
- 6241
+ 6464,
+ 6506
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 32
},
"end": {
- "line": 151,
+ "line": 157,
"column": 74
}
}
},
"range": [
- 6199,
- 6242
+ 6464,
+ 6507
],
"loc": {
"start": {
- "line": 151,
+ "line": 157,
"column": 32
},
"end": {
- "line": 151,
+ "line": 157,
"column": 75
}
}
}
],
"range": [
- 6165,
- 6272
+ 6430,
+ 6537
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 62
},
"end": {
- "line": 152,
+ "line": 158,
"column": 29
}
}
@@ -11530,16 +12022,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 6312,
- 6324
+ 6577,
+ 6589
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 32
},
"end": {
- "line": 153,
+ "line": 159,
"column": 44
}
}
@@ -11551,16 +12043,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6327,
- 6339
+ 6592,
+ 6604
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 47
},
"end": {
- "line": 153,
+ "line": 159,
"column": 59
}
}
@@ -11569,123 +12061,123 @@
"type": "Identifier",
"name": "calcRowIndex",
"range": [
- 6340,
- 6352
+ 6605,
+ 6617
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 60
},
"end": {
- "line": 153,
+ "line": 159,
"column": 72
}
}
},
"range": [
- 6327,
- 6353
+ 6592,
+ 6618
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 47
},
"end": {
- "line": 153,
+ "line": 159,
"column": 73
}
}
},
"range": [
- 6312,
- 6353
+ 6577,
+ 6618
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 32
},
"end": {
- "line": 153,
+ "line": 159,
"column": 73
}
}
},
"range": [
- 6312,
- 6354
+ 6577,
+ 6619
],
"loc": {
"start": {
- "line": 153,
+ "line": 159,
"column": 32
},
"end": {
- "line": 153,
+ "line": 159,
"column": 74
}
}
}
],
"range": [
- 6278,
- 6384
+ 6543,
+ 6649
],
"loc": {
"start": {
- "line": 152,
+ "line": 158,
"column": 35
},
"end": {
- "line": 154,
+ "line": 160,
"column": 29
}
}
},
"range": [
- 6131,
- 6384
+ 6396,
+ 6649
],
"loc": {
"start": {
- "line": 150,
+ "line": 156,
"column": 28
},
"end": {
- "line": 154,
+ "line": 160,
"column": 29
}
}
}
],
"range": [
- 6028,
- 6410
+ 6293,
+ 6675
],
"loc": {
"start": {
- "line": 148,
+ "line": 154,
"column": 31
},
"end": {
- "line": 155,
+ "line": 161,
"column": 25
}
}
},
"range": [
- 5876,
- 6410
+ 6141,
+ 6675
],
"loc": {
"start": {
- "line": 146,
+ "line": 152,
"column": 24
},
"end": {
- "line": 155,
+ "line": 161,
"column": 25
}
},
@@ -11694,16 +12186,16 @@
"type": "Line",
"value": "last row",
"range": [
- 5841,
- 5851
+ 6106,
+ 6116
],
"loc": {
"start": {
- "line": 145,
+ "line": 151,
"column": 24
},
"end": {
- "line": 145,
+ "line": 151,
"column": 34
}
}
@@ -11712,16 +12204,16 @@
}
],
"range": [
- 5815,
- 6432
+ 6080,
+ 6697
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 50
},
"end": {
- "line": 156,
+ "line": 162,
"column": 21
}
}
@@ -11741,16 +12233,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 6502,
- 6505
+ 6767,
+ 6770
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 27
},
"end": {
- "line": 158,
+ "line": 164,
"column": 30
}
}
@@ -11759,31 +12251,31 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 6506,
- 6514
+ 6771,
+ 6779
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 31
},
"end": {
- "line": 158,
+ "line": 164,
"column": 39
}
}
},
"range": [
- 6502,
- 6514
+ 6767,
+ 6779
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 27
},
"end": {
- "line": 158,
+ "line": 164,
"column": 39
}
}
@@ -11795,16 +12287,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6518,
- 6530
+ 6783,
+ 6795
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 43
},
"end": {
- "line": 158,
+ "line": 164,
"column": 55
}
}
@@ -11814,46 +12306,46 @@
"value": 0,
"raw": "0",
"range": [
- 6531,
- 6532
+ 6796,
+ 6797
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 56
},
"end": {
- "line": 158,
+ "line": 164,
"column": 57
}
}
},
"range": [
- 6518,
- 6533
+ 6783,
+ 6798
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 43
},
"end": {
- "line": 158,
+ "line": 164,
"column": 58
}
}
},
"range": [
- 6502,
- 6533
+ 6767,
+ 6798
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 27
},
"end": {
- "line": 158,
+ "line": 164,
"column": 58
}
}
@@ -11870,16 +12362,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 6564,
- 6576
+ 6829,
+ 6841
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 28
},
"end": {
- "line": 159,
+ "line": 165,
"column": 40
}
}
@@ -11891,16 +12383,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6579,
- 6591
+ 6844,
+ 6856
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 43
},
"end": {
- "line": 159,
+ "line": 165,
"column": 55
}
}
@@ -11910,77 +12402,77 @@
"value": 0,
"raw": "0",
"range": [
- 6592,
- 6593
+ 6857,
+ 6858
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 56
},
"end": {
- "line": 159,
+ "line": 165,
"column": 57
}
}
},
"range": [
- 6579,
- 6594
+ 6844,
+ 6859
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 43
},
"end": {
- "line": 159,
+ "line": 165,
"column": 58
}
}
},
"range": [
- 6564,
- 6594
+ 6829,
+ 6859
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 28
},
"end": {
- "line": 159,
+ "line": 165,
"column": 58
}
}
},
"range": [
- 6564,
- 6595
+ 6829,
+ 6860
],
"loc": {
"start": {
- "line": 159,
+ "line": 165,
"column": 28
},
"end": {
- "line": 159,
+ "line": 165,
"column": 59
}
}
}
],
"range": [
- 6534,
- 6621
+ 6799,
+ 6886
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 59
},
"end": {
- "line": 160,
+ "line": 166,
"column": 25
}
}
@@ -11997,16 +12489,16 @@
"type": "Identifier",
"name": "v",
"range": [
- 6661,
- 6662
+ 6926,
+ 6927
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 32
},
"end": {
- "line": 161,
+ "line": 167,
"column": 33
}
}
@@ -12018,16 +12510,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6665,
- 6677
+ 6930,
+ 6942
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 36
},
"end": {
- "line": 161,
+ "line": 167,
"column": 48
}
}
@@ -12039,16 +12531,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 6678,
- 6696
+ 6943,
+ 6961
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 49
},
"end": {
- "line": 161,
+ "line": 167,
"column": 67
}
}
@@ -12057,61 +12549,61 @@
"type": "Identifier",
"name": "d",
"range": [
- 6699,
- 6700
+ 6964,
+ 6965
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 70
},
"end": {
- "line": 161,
+ "line": 167,
"column": 71
}
}
},
"range": [
- 6678,
- 6700
+ 6943,
+ 6965
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 49
},
"end": {
- "line": 161,
+ "line": 167,
"column": 71
}
}
},
"range": [
- 6665,
- 6701
+ 6930,
+ 6966
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 36
},
"end": {
- "line": 161,
+ "line": 167,
"column": 72
}
}
},
"range": [
- 6661,
- 6701
+ 6926,
+ 6966
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 32
},
"end": {
- "line": 161,
+ "line": 167,
"column": 72
}
}
@@ -12119,16 +12611,16 @@
],
"kind": "var",
"range": [
- 6657,
- 6702
+ 6922,
+ 6967
],
"loc": {
"start": {
- "line": 161,
+ "line": 167,
"column": 28
},
"end": {
- "line": 161,
+ "line": 167,
"column": 73
}
}
@@ -12142,16 +12634,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 6731,
- 6743
+ 6996,
+ 7008
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 28
},
"end": {
- "line": 162,
+ "line": 168,
"column": 40
}
}
@@ -12162,16 +12654,16 @@
"type": "Identifier",
"name": "v",
"range": [
- 6746,
- 6747
+ 7011,
+ 7012
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 43
},
"end": {
- "line": 162,
+ "line": 168,
"column": 44
}
}
@@ -12180,16 +12672,16 @@
"type": "Identifier",
"name": "v",
"range": [
- 6750,
- 6751
+ 7015,
+ 7016
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 47
},
"end": {
- "line": 162,
+ "line": 168,
"column": 48
}
}
@@ -12201,16 +12693,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 6754,
- 6766
+ 7019,
+ 7031
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 51
},
"end": {
- "line": 162,
+ "line": 168,
"column": 63
}
}
@@ -12220,107 +12712,107 @@
"value": 0,
"raw": "0",
"range": [
- 6767,
- 6768
+ 7032,
+ 7033
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 64
},
"end": {
- "line": 162,
+ "line": 168,
"column": 65
}
}
},
"range": [
- 6754,
- 6769
+ 7019,
+ 7034
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 51
},
"end": {
- "line": 162,
+ "line": 168,
"column": 66
}
}
},
"range": [
- 6746,
- 6769
+ 7011,
+ 7034
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 43
},
"end": {
- "line": 162,
+ "line": 168,
"column": 66
}
}
},
"range": [
- 6731,
- 6769
+ 6996,
+ 7034
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 28
},
"end": {
- "line": 162,
+ "line": 168,
"column": 66
}
}
},
"range": [
- 6731,
- 6770
+ 6996,
+ 7035
],
"loc": {
"start": {
- "line": 162,
+ "line": 168,
"column": 28
},
"end": {
- "line": 162,
+ "line": 168,
"column": 67
}
}
}
],
"range": [
- 6627,
- 6796
+ 6892,
+ 7061
],
"loc": {
"start": {
- "line": 160,
+ "line": 166,
"column": 31
},
"end": {
- "line": 163,
+ "line": 169,
"column": 25
}
}
},
"range": [
- 6499,
- 6796
+ 6764,
+ 7061
],
"loc": {
"start": {
- "line": 158,
+ "line": 164,
"column": 24
},
"end": {
- "line": 163,
+ "line": 169,
"column": 25
}
},
@@ -12329,16 +12821,16 @@
"type": "Line",
"value": "first row",
"range": [
- 6463,
- 6474
+ 6728,
+ 6739
],
"loc": {
"start": {
- "line": 157,
+ "line": 163,
"column": 24
},
"end": {
- "line": 157,
+ "line": 163,
"column": 35
}
}
@@ -12347,31 +12839,31 @@
}
],
"range": [
- 6437,
- 6818
+ 6702,
+ 7083
],
"loc": {
"start": {
- "line": 156,
+ "line": 162,
"column": 26
},
"end": {
- "line": 164,
+ "line": 170,
"column": 21
}
}
},
"range": [
- 5785,
- 6818
+ 6050,
+ 7083
],
"loc": {
"start": {
- "line": 144,
+ "line": 150,
"column": 20
},
"end": {
- "line": 164,
+ "line": 170,
"column": 21
}
},
@@ -12380,16 +12872,16 @@
"type": "Line",
"value": "Selection direction up/down",
"range": [
- 5735,
- 5764
+ 6000,
+ 6029
],
"loc": {
"start": {
- "line": 143,
+ "line": 149,
"column": 20
},
"end": {
- "line": 143,
+ "line": 149,
"column": 49
}
}
@@ -12405,16 +12897,16 @@
"type": "Identifier",
"name": "_lastRowIndex",
"range": [
- 6839,
- 6852
+ 7104,
+ 7117
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 20
},
"end": {
- "line": 165,
+ "line": 171,
"column": 33
}
}
@@ -12426,16 +12918,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 6855,
- 6858
+ 7120,
+ 7123
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 36
},
"end": {
- "line": 165,
+ "line": 171,
"column": 39
}
}
@@ -12444,61 +12936,61 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 6859,
- 6867
+ 7124,
+ 7132
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 40
},
"end": {
- "line": 165,
+ "line": 171,
"column": 48
}
}
},
"range": [
- 6855,
- 6867
+ 7120,
+ 7132
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 36
},
"end": {
- "line": 165,
+ "line": 171,
"column": 48
}
}
},
"range": [
- 6839,
- 6867
+ 7104,
+ 7132
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 20
},
"end": {
- "line": 165,
+ "line": 171,
"column": 48
}
}
},
"range": [
- 6839,
- 6868
+ 7104,
+ 7133
],
"loc": {
"start": {
- "line": 165,
+ "line": 171,
"column": 20
},
"end": {
- "line": 165,
+ "line": 171,
"column": 49
}
}
@@ -12511,16 +13003,16 @@
"type": "Identifier",
"name": "doSelect",
"range": [
- 6889,
- 6897
+ 7154,
+ 7162
],
"loc": {
"start": {
- "line": 166,
+ "line": 172,
"column": 20
},
"end": {
- "line": 166,
+ "line": 172,
"column": 28
}
}
@@ -12530,63 +13022,63 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 6898,
- 6910
+ 7163,
+ 7175
],
"loc": {
"start": {
- "line": 166,
+ "line": 172,
"column": 29
},
"end": {
- "line": 166,
+ "line": 172,
"column": 41
}
}
}
],
"range": [
- 6889,
- 6911
+ 7154,
+ 7176
],
"loc": {
"start": {
- "line": 166,
+ "line": 172,
"column": 20
},
"end": {
- "line": 166,
+ "line": 172,
"column": 42
}
}
},
"range": [
- 6889,
- 6912
+ 7154,
+ 7177
],
"loc": {
"start": {
- "line": 166,
+ "line": 172,
"column": 20
},
"end": {
- "line": 166,
+ "line": 172,
"column": 43
}
}
}
],
"range": [
- 5713,
- 6930
+ 5978,
+ 7195
],
"loc": {
"start": {
- "line": 142,
+ "line": 148,
"column": 31
},
"end": {
- "line": 167,
+ "line": 173,
"column": 17
}
}
@@ -12606,16 +13098,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 7072,
- 7079
+ 7337,
+ 7344
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 23
},
"end": {
- "line": 170,
+ "line": 176,
"column": 30
}
}
@@ -12625,31 +13117,31 @@
"value": 34,
"raw": "34",
"range": [
- 7082,
- 7084
+ 7347,
+ 7349
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 33
},
"end": {
- "line": 170,
+ "line": 176,
"column": 35
}
}
},
"range": [
- 7072,
- 7084
+ 7337,
+ 7349
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 23
},
"end": {
- "line": 170,
+ "line": 176,
"column": 35
}
}
@@ -12661,16 +13153,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 7088,
- 7095
+ 7353,
+ 7360
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 39
},
"end": {
- "line": 170,
+ "line": 176,
"column": 46
}
}
@@ -12680,46 +13172,46 @@
"value": 33,
"raw": "33",
"range": [
- 7098,
- 7100
+ 7363,
+ 7365
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 49
},
"end": {
- "line": 170,
+ "line": 176,
"column": 51
}
}
},
"range": [
- 7088,
- 7100
+ 7353,
+ 7365
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 39
},
"end": {
- "line": 170,
+ "line": 176,
"column": 51
}
}
},
"range": [
- 7072,
- 7100
+ 7337,
+ 7365
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 23
},
"end": {
- "line": 170,
+ "line": 176,
"column": 51
}
}
@@ -12736,16 +13228,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 7127,
- 7145
+ 7392,
+ 7410
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 24
},
"end": {
- "line": 171,
+ "line": 177,
"column": 42
}
}
@@ -12759,16 +13251,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 7148,
- 7160
+ 7413,
+ 7425
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 45
},
"end": {
- "line": 171,
+ "line": 177,
"column": 57
}
}
@@ -12777,31 +13269,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 7161,
- 7168
+ 7426,
+ 7433
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 58
},
"end": {
- "line": 171,
+ "line": 177,
"column": 65
}
}
},
"range": [
- 7148,
- 7168
+ 7413,
+ 7433
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 45
},
"end": {
- "line": 171,
+ "line": 177,
"column": 65
}
}
@@ -12814,16 +13306,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 7169,
- 7172
+ 7434,
+ 7437
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 66
},
"end": {
- "line": 171,
+ "line": 177,
"column": 69
}
}
@@ -12832,77 +13324,77 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 7173,
- 7181
+ 7438,
+ 7446
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 70
},
"end": {
- "line": 171,
+ "line": 177,
"column": 78
}
}
},
"range": [
- 7169,
- 7181
+ 7434,
+ 7446
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 66
},
"end": {
- "line": 171,
+ "line": 177,
"column": 78
}
}
}
],
"range": [
- 7148,
- 7182
+ 7413,
+ 7447
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 45
},
"end": {
- "line": 171,
+ "line": 177,
"column": 79
}
}
},
"range": [
- 7127,
- 7182
+ 7392,
+ 7447
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 24
},
"end": {
- "line": 171,
+ "line": 177,
"column": 79
}
}
},
"range": [
- 7127,
- 7183
+ 7392,
+ 7448
],
"loc": {
"start": {
- "line": 171,
+ "line": 177,
"column": 24
},
"end": {
- "line": 171,
+ "line": 177,
"column": 80
}
}
@@ -12916,16 +13408,16 @@
"type": "Identifier",
"name": "_lastRowIndex",
"range": [
- 7208,
- 7221
+ 7473,
+ 7486
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 24
},
"end": {
- "line": 172,
+ "line": 178,
"column": 37
}
}
@@ -12937,16 +13429,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 7224,
- 7227
+ 7489,
+ 7492
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 40
},
"end": {
- "line": 172,
+ "line": 178,
"column": 43
}
}
@@ -12955,77 +13447,77 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 7228,
- 7236
+ 7493,
+ 7501
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 44
},
"end": {
- "line": 172,
+ "line": 178,
"column": 52
}
}
},
"range": [
- 7224,
- 7236
+ 7489,
+ 7501
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 40
},
"end": {
- "line": 172,
+ "line": 178,
"column": 52
}
}
},
"range": [
- 7208,
- 7236
+ 7473,
+ 7501
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 24
},
"end": {
- "line": 172,
+ "line": 178,
"column": 52
}
}
},
"range": [
- 7208,
- 7237
+ 7473,
+ 7502
],
"loc": {
"start": {
- "line": 172,
+ "line": 178,
"column": 24
},
"end": {
- "line": 172,
+ "line": 178,
"column": 53
}
}
}
],
"range": [
- 7101,
- 7259
+ 7366,
+ 7524
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 52
},
"end": {
- "line": 173,
+ "line": 179,
"column": 21
}
}
@@ -13042,16 +13534,16 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 7294,
- 7301
+ 7559,
+ 7566
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 27
},
"end": {
- "line": 174,
+ "line": 180,
"column": 34
}
}
@@ -13061,31 +13553,31 @@
"value": 34,
"raw": "34",
"range": [
- 7306,
- 7308
+ 7571,
+ 7573
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 39
},
"end": {
- "line": 174,
+ "line": 180,
"column": 41
}
}
},
"range": [
- 7294,
- 7308
+ 7559,
+ 7573
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 27
},
"end": {
- "line": 174,
+ "line": 180,
"column": 41
}
}
@@ -13105,16 +13597,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 7391,
- 7409
+ 7656,
+ 7674
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 32
},
"end": {
- "line": 176,
+ "line": 182,
"column": 50
}
}
@@ -13123,31 +13615,31 @@
"type": "Identifier",
"name": "d",
"range": [
- 7412,
- 7413
+ 7677,
+ 7678
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 53
},
"end": {
- "line": 176,
+ "line": 182,
"column": 54
}
}
},
"range": [
- 7391,
- 7413
+ 7656,
+ 7678
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 32
},
"end": {
- "line": 176,
+ "line": 182,
"column": 54
}
}
@@ -13159,16 +13651,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 7419,
- 7430
+ 7684,
+ 7695
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 60
},
"end": {
- "line": 176,
+ "line": 182,
"column": 71
}
}
@@ -13178,46 +13670,46 @@
"value": 1,
"raw": "1",
"range": [
- 7431,
- 7432
+ 7696,
+ 7697
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 72
},
"end": {
- "line": 176,
+ "line": 182,
"column": 73
}
}
},
"range": [
- 7419,
- 7432
+ 7684,
+ 7697
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 60
},
"end": {
- "line": 176,
+ "line": 182,
"column": 73
}
}
},
"range": [
- 7390,
- 7433
+ 7655,
+ 7698
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 31
},
"end": {
- "line": 176,
+ "line": 182,
"column": 74
}
}
@@ -13234,16 +13726,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 7468,
- 7480
+ 7733,
+ 7745
],
"loc": {
"start": {
- "line": 177,
+ "line": 183,
"column": 32
},
"end": {
- "line": 177,
+ "line": 183,
"column": 44
}
}
@@ -13255,16 +13747,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 7483,
- 7495
+ 7748,
+ 7760
],
"loc": {
"start": {
- "line": 177,
+ "line": 183,
"column": 47
},
"end": {
- "line": 177,
+ "line": 183,
"column": 59
}
}
@@ -13276,16 +13768,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 7529,
- 7547
+ 7794,
+ 7812
],
"loc": {
"start": {
- "line": 178,
+ "line": 184,
"column": 32
},
"end": {
- "line": 178,
+ "line": 184,
"column": 50
}
}
@@ -13294,92 +13786,92 @@
"type": "Identifier",
"name": "d",
"range": [
- 7550,
- 7551
+ 7815,
+ 7816
],
"loc": {
"start": {
- "line": 178,
+ "line": 184,
"column": 53
},
"end": {
- "line": 178,
+ "line": 184,
"column": 54
}
}
},
"range": [
- 7529,
- 7551
+ 7794,
+ 7816
],
"loc": {
"start": {
- "line": 178,
+ "line": 184,
"column": 32
},
"end": {
- "line": 178,
+ "line": 184,
"column": 54
}
}
},
"range": [
- 7483,
- 7552
+ 7748,
+ 7817
],
"loc": {
"start": {
- "line": 177,
+ "line": 183,
"column": 47
},
"end": {
- "line": 178,
+ "line": 184,
"column": 55
}
}
},
"range": [
- 7468,
- 7552
+ 7733,
+ 7817
],
"loc": {
"start": {
- "line": 177,
+ "line": 183,
"column": 32
},
"end": {
- "line": 178,
+ "line": 184,
"column": 55
}
}
},
"range": [
- 7468,
- 7553
+ 7733,
+ 7818
],
"loc": {
"start": {
- "line": 177,
+ "line": 183,
"column": 32
},
"end": {
- "line": 178,
+ "line": 184,
"column": 56
}
}
}
],
"range": [
- 7434,
- 7583
+ 7699,
+ 7848
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 75
},
"end": {
- "line": 179,
+ "line": 185,
"column": 29
}
}
@@ -13396,16 +13888,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 7623,
- 7635
+ 7888,
+ 7900
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 32
},
"end": {
- "line": 180,
+ "line": 186,
"column": 44
}
}
@@ -13420,16 +13912,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 7639,
- 7650
+ 7904,
+ 7915
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 48
},
"end": {
- "line": 180,
+ "line": 186,
"column": 59
}
}
@@ -13439,108 +13931,108 @@
"value": 1,
"raw": "1",
"range": [
- 7651,
- 7652
+ 7916,
+ 7917
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 60
},
"end": {
- "line": 180,
+ "line": 186,
"column": 61
}
}
},
"range": [
- 7639,
- 7652
+ 7904,
+ 7917
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 48
},
"end": {
- "line": 180,
+ "line": 186,
"column": 61
}
}
}
],
"range": [
- 7638,
- 7653
+ 7903,
+ 7918
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 47
},
"end": {
- "line": 180,
+ "line": 186,
"column": 62
}
}
},
"range": [
- 7623,
- 7653
+ 7888,
+ 7918
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 32
},
"end": {
- "line": 180,
+ "line": 186,
"column": 62
}
}
},
"range": [
- 7623,
- 7654
+ 7888,
+ 7919
],
"loc": {
"start": {
- "line": 180,
+ "line": 186,
"column": 32
},
"end": {
- "line": 180,
+ "line": 186,
"column": 63
}
}
}
],
"range": [
- 7589,
- 7684
+ 7854,
+ 7949
],
"loc": {
"start": {
- "line": 179,
+ "line": 185,
"column": 35
},
"end": {
- "line": 181,
+ "line": 187,
"column": 29
}
}
},
"range": [
- 7387,
- 7684
+ 7652,
+ 7949
],
"loc": {
"start": {
- "line": 176,
+ "line": 182,
"column": 28
},
"end": {
- "line": 181,
+ "line": 187,
"column": 29
}
},
@@ -13549,16 +14041,16 @@
"type": "Line",
"value": "pgdown",
"range": [
- 7311,
- 7319
+ 7576,
+ 7584
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 44
},
"end": {
- "line": 174,
+ "line": 180,
"column": 52
}
}
@@ -13567,16 +14059,16 @@
"type": "Line",
"value": "last row",
"range": [
- 7348,
- 7358
+ 7613,
+ 7623
],
"loc": {
"start": {
- "line": 175,
+ "line": 181,
"column": 28
},
"end": {
- "line": 175,
+ "line": 181,
"column": 38
}
}
@@ -13585,16 +14077,16 @@
}
],
"range": [
- 7309,
- 7710
+ 7574,
+ 7975
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 42
},
"end": {
- "line": 182,
+ "line": 188,
"column": 25
}
}
@@ -13614,16 +14106,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 7797,
- 7815
+ 8062,
+ 8080
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 32
},
"end": {
- "line": 184,
+ "line": 190,
"column": 50
}
}
@@ -13632,31 +14124,31 @@
"type": "Identifier",
"name": "d",
"range": [
- 7818,
- 7819
+ 8083,
+ 8084
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 53
},
"end": {
- "line": 184,
+ "line": 190,
"column": 54
}
}
},
"range": [
- 7797,
- 7819
+ 8062,
+ 8084
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 32
},
"end": {
- "line": 184,
+ "line": 190,
"column": 54
}
}
@@ -13668,16 +14160,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 7824,
- 7836
+ 8089,
+ 8101
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 59
},
"end": {
- "line": 184,
+ "line": 190,
"column": 71
}
}
@@ -13687,46 +14179,46 @@
"value": 0,
"raw": "0",
"range": [
- 7837,
- 7838
+ 8102,
+ 8103
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 72
},
"end": {
- "line": 184,
+ "line": 190,
"column": 73
}
}
},
"range": [
- 7824,
- 7839
+ 8089,
+ 8104
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 59
},
"end": {
- "line": 184,
+ "line": 190,
"column": 74
}
}
},
"range": [
- 7796,
- 7839
+ 8061,
+ 8104
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 31
},
"end": {
- "line": 184,
+ "line": 190,
"column": 74
}
}
@@ -13743,16 +14235,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 7874,
- 7886
+ 8139,
+ 8151
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 32
},
"end": {
- "line": 185,
+ "line": 191,
"column": 44
}
}
@@ -13764,16 +14256,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 7889,
- 7901
+ 8154,
+ 8166
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 47
},
"end": {
- "line": 185,
+ "line": 191,
"column": 59
}
}
@@ -13783,77 +14275,77 @@
"value": 0,
"raw": "0",
"range": [
- 7902,
- 7903
+ 8167,
+ 8168
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 60
},
"end": {
- "line": 185,
+ "line": 191,
"column": 61
}
}
},
"range": [
- 7889,
- 7904
+ 8154,
+ 8169
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 47
},
"end": {
- "line": 185,
+ "line": 191,
"column": 62
}
}
},
"range": [
- 7874,
- 7904
+ 8139,
+ 8169
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 32
},
"end": {
- "line": 185,
+ "line": 191,
"column": 62
}
}
},
"range": [
- 7874,
- 7905
+ 8139,
+ 8170
],
"loc": {
"start": {
- "line": 185,
+ "line": 191,
"column": 32
},
"end": {
- "line": 185,
+ "line": 191,
"column": 63
}
}
}
],
"range": [
- 7840,
- 7935
+ 8105,
+ 8200
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 75
},
"end": {
- "line": 186,
+ "line": 192,
"column": 29
}
}
@@ -13870,16 +14362,16 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 7975,
- 7987
+ 8240,
+ 8252
],
"loc": {
"start": {
- "line": 187,
+ "line": 193,
"column": 32
},
"end": {
- "line": 187,
+ "line": 193,
"column": 44
}
}
@@ -13891,16 +14383,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 7990,
- 8002
+ 8255,
+ 8267
],
"loc": {
"start": {
- "line": 187,
+ "line": 193,
"column": 47
},
"end": {
- "line": 187,
+ "line": 193,
"column": 59
}
}
@@ -13912,16 +14404,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 8040,
- 8058
+ 8305,
+ 8323
],
"loc": {
"start": {
- "line": 188,
+ "line": 194,
"column": 36
},
"end": {
- "line": 188,
+ "line": 194,
"column": 54
}
}
@@ -13930,107 +14422,107 @@
"type": "Identifier",
"name": "d",
"range": [
- 8061,
- 8062
+ 8326,
+ 8327
],
"loc": {
"start": {
- "line": 188,
+ "line": 194,
"column": 57
},
"end": {
- "line": 188,
+ "line": 194,
"column": 58
}
}
},
"range": [
- 8040,
- 8062
+ 8305,
+ 8327
],
"loc": {
"start": {
- "line": 188,
+ "line": 194,
"column": 36
},
"end": {
- "line": 188,
+ "line": 194,
"column": 58
}
}
},
"range": [
- 7990,
- 8063
+ 8255,
+ 8328
],
"loc": {
"start": {
- "line": 187,
+ "line": 193,
"column": 47
},
"end": {
- "line": 188,
+ "line": 194,
"column": 59
}
}
},
"range": [
- 7975,
- 8063
+ 8240,
+ 8328
],
"loc": {
"start": {
- "line": 187,
+ "line": 193,
"column": 32
},
"end": {
- "line": 188,
+ "line": 194,
"column": 59
}
}
},
"range": [
- 7975,
- 8064
+ 8240,
+ 8329
],
"loc": {
"start": {
- "line": 187,
+ "line": 193,
"column": 32
},
"end": {
- "line": 188,
+ "line": 194,
"column": 60
}
}
}
],
"range": [
- 7941,
- 8094
+ 8206,
+ 8359
],
"loc": {
"start": {
- "line": 186,
+ "line": 192,
"column": 35
},
"end": {
- "line": 189,
+ "line": 195,
"column": 29
}
}
},
"range": [
- 7793,
- 8094
+ 8058,
+ 8359
],
"loc": {
"start": {
- "line": 184,
+ "line": 190,
"column": 28
},
"end": {
- "line": 189,
+ "line": 195,
"column": 29
}
},
@@ -14039,16 +14531,16 @@
"type": "Line",
"value": "pgup",
"range": [
- 7718,
- 7724
+ 7983,
+ 7989
],
"loc": {
"start": {
- "line": 182,
+ "line": 188,
"column": 33
},
"end": {
- "line": 182,
+ "line": 188,
"column": 39
}
}
@@ -14057,16 +14549,16 @@
"type": "Line",
"value": "first row",
"range": [
- 7753,
- 7764
+ 8018,
+ 8029
],
"loc": {
"start": {
- "line": 183,
+ "line": 189,
"column": 28
},
"end": {
- "line": 183,
+ "line": 189,
"column": 39
}
}
@@ -14075,31 +14567,31 @@
}
],
"range": [
- 7716,
- 8120
+ 7981,
+ 8385
],
"loc": {
"start": {
- "line": 182,
+ "line": 188,
"column": 31
},
"end": {
- "line": 190,
+ "line": 196,
"column": 25
}
}
},
"range": [
- 7291,
- 8120
+ 7556,
+ 8385
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 24
},
"end": {
- "line": 190,
+ "line": 196,
"column": 25
}
}
@@ -14113,16 +14605,16 @@
"type": "Identifier",
"name": "_lastRowIndex",
"range": [
- 8145,
- 8158
+ 8410,
+ 8423
],
"loc": {
"start": {
- "line": 191,
+ "line": 197,
"column": 24
},
"end": {
- "line": 191,
+ "line": 197,
"column": 37
}
}
@@ -14131,46 +14623,46 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 8161,
- 8173
+ 8426,
+ 8438
],
"loc": {
"start": {
- "line": 191,
+ "line": 197,
"column": 40
},
"end": {
- "line": 191,
+ "line": 197,
"column": 52
}
}
},
"range": [
- 8145,
- 8173
+ 8410,
+ 8438
],
"loc": {
"start": {
- "line": 191,
+ "line": 197,
"column": 24
},
"end": {
- "line": 191,
+ "line": 197,
"column": 52
}
}
},
"range": [
- 8145,
- 8174
+ 8410,
+ 8439
],
"loc": {
"start": {
- "line": 191,
+ "line": 197,
"column": 24
},
"end": {
- "line": 191,
+ "line": 197,
"column": 53
}
}
@@ -14184,16 +14676,16 @@
"type": "Identifier",
"name": "_lastValidRowIndex",
"range": [
- 8199,
- 8217
+ 8464,
+ 8482
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 24
},
"end": {
- "line": 192,
+ "line": 198,
"column": 42
}
}
@@ -14207,16 +14699,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 8220,
- 8232
+ 8485,
+ 8497
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 45
},
"end": {
- "line": 192,
+ "line": 198,
"column": 57
}
}
@@ -14225,31 +14717,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 8233,
- 8240
+ 8498,
+ 8505
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 58
},
"end": {
- "line": 192,
+ "line": 198,
"column": 65
}
}
},
"range": [
- 8220,
- 8240
+ 8485,
+ 8505
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 45
},
"end": {
- "line": 192,
+ "line": 198,
"column": 65
}
}
@@ -14259,62 +14751,62 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 8241,
- 8253
+ 8506,
+ 8518
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 66
},
"end": {
- "line": 192,
+ "line": 198,
"column": 78
}
}
}
],
"range": [
- 8220,
- 8254
+ 8485,
+ 8519
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 45
},
"end": {
- "line": 192,
+ "line": 198,
"column": 79
}
}
},
"range": [
- 8199,
- 8254
+ 8464,
+ 8519
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 24
},
"end": {
- "line": 192,
+ "line": 198,
"column": 79
}
}
},
"range": [
- 8199,
- 8255
+ 8464,
+ 8520
],
"loc": {
"start": {
- "line": 192,
+ "line": 198,
"column": 24
},
"end": {
- "line": 192,
+ "line": 198,
"column": 80
}
}
@@ -14327,16 +14819,16 @@
"type": "Identifier",
"name": "doSelect",
"range": [
- 8280,
- 8288
+ 8545,
+ 8553
],
"loc": {
"start": {
- "line": 193,
+ "line": 199,
"column": 24
},
"end": {
- "line": 193,
+ "line": 199,
"column": 32
}
}
@@ -14346,78 +14838,78 @@
"type": "Identifier",
"name": "nextRowIndex",
"range": [
- 8289,
- 8301
+ 8554,
+ 8566
],
"loc": {
"start": {
- "line": 193,
+ "line": 199,
"column": 33
},
"end": {
- "line": 193,
+ "line": 199,
"column": 45
}
}
}
],
"range": [
- 8280,
- 8302
+ 8545,
+ 8567
],
"loc": {
"start": {
- "line": 193,
+ "line": 199,
"column": 24
},
"end": {
- "line": 193,
+ "line": 199,
"column": 46
}
}
},
"range": [
- 8280,
- 8303
+ 8545,
+ 8568
],
"loc": {
"start": {
- "line": 193,
+ "line": 199,
"column": 24
},
"end": {
- "line": 193,
+ "line": 199,
"column": 47
}
}
}
],
"range": [
- 7265,
- 8325
+ 7530,
+ 8590
],
"loc": {
"start": {
- "line": 173,
+ "line": 179,
"column": 27
},
"end": {
- "line": 194,
+ "line": 200,
"column": 21
}
}
},
"range": [
- 7069,
- 8325
+ 7334,
+ 8590
],
"loc": {
"start": {
- "line": 170,
+ "line": 176,
"column": 20
},
"end": {
- "line": 194,
+ "line": 200,
"column": 21
}
},
@@ -14426,16 +14918,16 @@
"type": "Line",
"value": "If filtered row is valid, special calculation for",
"range": [
- 6958,
- 7009
+ 7223,
+ 7274
],
"loc": {
"start": {
- "line": 168,
+ "line": 174,
"column": 20
},
"end": {
- "line": 168,
+ "line": 174,
"column": 71
}
}
@@ -14444,16 +14936,16 @@
"type": "Line",
"value": "pgup/pgdown keys",
"range": [
- 7030,
- 7048
+ 7295,
+ 7313
],
"loc": {
"start": {
- "line": 169,
+ "line": 175,
"column": 20
},
"end": {
- "line": 169,
+ "line": 175,
"column": 38
}
}
@@ -14462,31 +14954,31 @@
}
],
"range": [
- 6936,
- 8343
+ 7201,
+ 8608
],
"loc": {
"start": {
- "line": 167,
+ "line": 173,
"column": 23
},
"end": {
- "line": 195,
+ "line": 201,
"column": 17
}
}
},
"range": [
- 5698,
- 8343
+ 5963,
+ 8608
],
"loc": {
"start": {
- "line": 142,
+ "line": 148,
"column": 16
},
"end": {
- "line": 195,
+ "line": 201,
"column": 17
}
},
@@ -14495,16 +14987,16 @@
"type": "Line",
"value": "If next row is not valid, next valid filtered row needs to be",
"range": [
- 5589,
- 5652
+ 5854,
+ 5917
],
"loc": {
"start": {
- "line": 140,
+ "line": 146,
"column": 16
},
"end": {
- "line": 140,
+ "line": 146,
"column": 79
}
}
@@ -14513,16 +15005,16 @@
"type": "Line",
"value": "calculated",
"range": [
- 5669,
- 5681
+ 5934,
+ 5946
],
"loc": {
"start": {
- "line": 141,
+ "line": 147,
"column": 16
},
"end": {
- "line": 141,
+ "line": 147,
"column": 28
}
}
@@ -14531,16 +15023,16 @@
}
],
"range": [
- 3030,
- 8357
+ 3295,
+ 8622
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 63
},
"end": {
- "line": 196,
+ "line": 202,
"column": 13
}
}
@@ -14548,31 +15040,31 @@
"generator": false,
"expression": false,
"range": [
- 3002,
- 8357
+ 3267,
+ 8622
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 35
},
"end": {
- "line": 196,
+ "line": 202,
"column": 13
}
}
},
"range": [
- 2983,
- 8357
+ 3248,
+ 8622
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 16
},
"end": {
- "line": 196,
+ "line": 202,
"column": 13
}
}
@@ -14580,16 +15072,16 @@
],
"kind": "var",
"range": [
- 2979,
- 8358
+ 3244,
+ 8623
],
"loc": {
"start": {
- "line": 85,
+ "line": 91,
"column": 12
},
"end": {
- "line": 196,
+ "line": 202,
"column": 14
}
},
@@ -14598,16 +15090,16 @@
"type": "Line",
"value": "Row navigation needs to be calculated according to TableFilter's",
"range": [
- 2865,
- 2931
+ 3130,
+ 3196
],
"loc": {
"start": {
- "line": 83,
+ "line": 89,
"column": 12
},
"end": {
- "line": 83,
+ "line": 89,
"column": 78
}
}
@@ -14616,16 +15108,16 @@
"type": "Line",
"value": "validRowsIndex array",
"range": [
- 2944,
- 2966
+ 3209,
+ 3231
],
"loc": {
"start": {
- "line": 84,
+ "line": 90,
"column": 12
},
"end": {
- "line": 84,
+ "line": 90,
"column": 34
}
}
@@ -14636,16 +15128,16 @@
"type": "Line",
"value": "Page navigation has to be enforced whenever selected row is out of",
"range": [
- 8372,
- 8440
+ 8637,
+ 8705
],
"loc": {
"start": {
- "line": 198,
+ "line": 204,
"column": 12
},
"end": {
- "line": 198,
+ "line": 204,
"column": 80
}
}
@@ -14654,16 +15146,16 @@
"type": "Line",
"value": "the current page range",
"range": [
- 8453,
- 8477
+ 8718,
+ 8742
],
"loc": {
"start": {
- "line": 199,
+ "line": 205,
"column": 12
},
"end": {
- "line": 199,
+ "line": 205,
"column": 36
}
}
@@ -14679,16 +15171,16 @@
"type": "Identifier",
"name": "onBeforeSelection",
"range": [
- 8494,
- 8511
+ 8759,
+ 8776
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 16
},
"end": {
- "line": 200,
+ "line": 206,
"column": 33
}
}
@@ -14701,16 +15193,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 8523,
- 8525
+ 8788,
+ 8790
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 45
},
"end": {
- "line": 200,
+ "line": 206,
"column": 47
}
}
@@ -14719,16 +15211,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 8527,
- 8538
+ 8792,
+ 8803
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 49
},
"end": {
- "line": 200,
+ "line": 206,
"column": 60
}
}
@@ -14746,16 +15238,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 8561,
- 8564
+ 8826,
+ 8829
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 20
},
"end": {
- "line": 201,
+ "line": 207,
"column": 23
}
}
@@ -14772,16 +15264,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 8567,
- 8569
+ 8832,
+ 8834
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 26
},
"end": {
- "line": 201,
+ "line": 207,
"column": 28
}
}
@@ -14790,31 +15282,31 @@
"type": "Identifier",
"name": "defaultSelection",
"range": [
- 8570,
- 8586
+ 8835,
+ 8851
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 29
},
"end": {
- "line": 201,
+ "line": 207,
"column": 45
}
}
},
"range": [
- 8567,
- 8586
+ 8832,
+ 8851
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 26
},
"end": {
- "line": 201,
+ "line": 207,
"column": 45
}
}
@@ -14824,31 +15316,31 @@
"value": "row",
"raw": "'row'",
"range": [
- 8591,
- 8596
+ 8856,
+ 8861
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 50
},
"end": {
- "line": 201,
+ "line": 207,
"column": 55
}
}
},
"range": [
- 8567,
- 8596
+ 8832,
+ 8861
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 26
},
"end": {
- "line": 201,
+ "line": 207,
"column": 55
}
}
@@ -14860,16 +15352,16 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 8619,
- 8630
+ 8884,
+ 8895
],
"loc": {
"start": {
- "line": 202,
+ "line": 208,
"column": 20
},
"end": {
- "line": 202,
+ "line": 208,
"column": 31
}
}
@@ -14878,31 +15370,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 8631,
- 8641
+ 8896,
+ 8906
],
"loc": {
"start": {
- "line": 202,
+ "line": 208,
"column": 32
},
"end": {
- "line": 202,
+ "line": 208,
"column": 42
}
}
},
"range": [
- 8619,
- 8641
+ 8884,
+ 8906
],
"loc": {
"start": {
- "line": 202,
+ "line": 208,
"column": 20
},
"end": {
- "line": 202,
+ "line": 208,
"column": 42
}
}
@@ -14911,46 +15403,46 @@
"type": "Identifier",
"name": "selectedElm",
"range": [
- 8644,
- 8655
+ 8909,
+ 8920
],
"loc": {
"start": {
- "line": 202,
+ "line": 208,
"column": 45
},
"end": {
- "line": 202,
+ "line": 208,
"column": 56
}
}
},
"range": [
- 8567,
- 8655
+ 8832,
+ 8920
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 26
},
"end": {
- "line": 202,
+ "line": 208,
"column": 56
}
}
},
"range": [
- 8561,
- 8655
+ 8826,
+ 8920
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 20
},
"end": {
- "line": 202,
+ "line": 208,
"column": 56
}
}
@@ -14958,16 +15450,16 @@
],
"kind": "var",
"range": [
- 8557,
- 8656
+ 8822,
+ 8921
],
"loc": {
"start": {
- "line": 201,
+ "line": 207,
"column": 16
},
"end": {
- "line": 202,
+ "line": 208,
"column": 57
}
}
@@ -14981,16 +15473,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8676,
- 8678
+ 8941,
+ 8943
],
"loc": {
"start": {
- "line": 203,
+ "line": 209,
"column": 19
},
"end": {
- "line": 203,
+ "line": 209,
"column": 21
}
}
@@ -14999,31 +15491,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 8679,
- 8685
+ 8944,
+ 8950
],
"loc": {
"start": {
- "line": 203,
+ "line": 209,
"column": 22
},
"end": {
- "line": 203,
+ "line": 209,
"column": 28
}
}
},
"range": [
- 8676,
- 8685
+ 8941,
+ 8950
],
"loc": {
"start": {
- "line": 203,
+ "line": 209,
"column": 19
},
"end": {
- "line": 203,
+ "line": 209,
"column": 28
}
}
@@ -15048,16 +15540,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8711,
- 8713
+ 8976,
+ 8978
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 23
},
"end": {
- "line": 204,
+ "line": 210,
"column": 25
}
}
@@ -15066,31 +15558,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 8714,
- 8721
+ 8979,
+ 8986
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 26
},
"end": {
- "line": 204,
+ "line": 210,
"column": 33
}
}
},
"range": [
- 8711,
- 8721
+ 8976,
+ 8986
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 23
},
"end": {
- "line": 204,
+ "line": 210,
"column": 33
}
}
@@ -15101,32 +15593,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 8722,
- 8730
+ 8987,
+ 8995
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 34
},
"end": {
- "line": 204,
+ "line": 210,
"column": 42
}
}
}
],
"range": [
- 8711,
- 8731
+ 8976,
+ 8996
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 23
},
"end": {
- "line": 204,
+ "line": 210,
"column": 43
}
}
@@ -15135,31 +15627,31 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 8732,
- 8739
+ 8997,
+ 9004
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 44
},
"end": {
- "line": 204,
+ "line": 210,
"column": 51
}
}
},
"range": [
- 8711,
- 8739
+ 8976,
+ 9004
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 23
},
"end": {
- "line": 204,
+ "line": 210,
"column": 51
}
}
@@ -15169,31 +15661,31 @@
"value": 1,
"raw": "1",
"range": [
- 8742,
- 8743
+ 9007,
+ 9008
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 54
},
"end": {
- "line": 204,
+ "line": 210,
"column": 55
}
}
},
"range": [
- 8711,
- 8743
+ 8976,
+ 9008
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 23
},
"end": {
- "line": 204,
+ "line": 210,
"column": 55
}
}
@@ -15210,16 +15702,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 8774,
- 8780
+ 9039,
+ 9045
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 28
},
"end": {
- "line": 205,
+ "line": 211,
"column": 34
}
}
@@ -15233,16 +15725,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8783,
- 8785
+ 9048,
+ 9050
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 37
},
"end": {
- "line": 205,
+ "line": 211,
"column": 39
}
}
@@ -15251,31 +15743,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 8786,
- 8793
+ 9051,
+ 9058
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 40
},
"end": {
- "line": 205,
+ "line": 211,
"column": 47
}
}
},
"range": [
- 8783,
- 8793
+ 9048,
+ 9058
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 37
},
"end": {
- "line": 205,
+ "line": 211,
"column": 47
}
}
@@ -15286,47 +15778,47 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 8794,
- 8802
+ 9059,
+ 9067
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 48
},
"end": {
- "line": 205,
+ "line": 211,
"column": 56
}
}
}
],
"range": [
- 8783,
- 8803
+ 9048,
+ 9068
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 37
},
"end": {
- "line": 205,
+ "line": 211,
"column": 57
}
}
},
"range": [
- 8774,
- 8803
+ 9039,
+ 9068
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 28
},
"end": {
- "line": 205,
+ "line": 211,
"column": 57
}
}
@@ -15334,16 +15826,16 @@
],
"kind": "var",
"range": [
- 8770,
- 8804
+ 9035,
+ 9069
],
"loc": {
"start": {
- "line": 205,
+ "line": 211,
"column": 24
},
"end": {
- "line": 205,
+ "line": 211,
"column": 58
}
},
@@ -15352,16 +15844,16 @@
"type": "Line",
"value": "page length is re-assigned in case it has changed",
"range": [
- 8829,
- 8880
+ 9094,
+ 9145
],
"loc": {
"start": {
- "line": 206,
+ "line": 212,
"column": 24
},
"end": {
- "line": 206,
+ "line": 212,
"column": 75
}
}
@@ -15380,16 +15872,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 8905,
- 8907
+ 9170,
+ 9172
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 24
},
"end": {
- "line": 207,
+ "line": 213,
"column": 26
}
}
@@ -15398,31 +15890,31 @@
"type": "Identifier",
"name": "nbRowsPerPage",
"range": [
- 8908,
- 8921
+ 9173,
+ 9186
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 27
},
"end": {
- "line": 207,
+ "line": 213,
"column": 40
}
}
},
"range": [
- 8905,
- 8921
+ 9170,
+ 9186
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 24
},
"end": {
- "line": 207,
+ "line": 213,
"column": 40
}
}
@@ -15434,16 +15926,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 8924,
- 8930
+ 9189,
+ 9195
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 43
},
"end": {
- "line": 207,
+ "line": 213,
"column": 49
}
}
@@ -15452,61 +15944,61 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 8931,
- 8943
+ 9196,
+ 9208
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 50
},
"end": {
- "line": 207,
+ "line": 213,
"column": 62
}
}
},
"range": [
- 8924,
- 8943
+ 9189,
+ 9208
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 43
},
"end": {
- "line": 207,
+ "line": 213,
"column": 62
}
}
},
"range": [
- 8905,
- 8943
+ 9170,
+ 9208
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 24
},
"end": {
- "line": 207,
+ "line": 213,
"column": 62
}
}
},
"range": [
- 8905,
- 8944
+ 9170,
+ 9209
],
"loc": {
"start": {
- "line": 207,
+ "line": 213,
"column": 24
},
"end": {
- "line": 207,
+ "line": 213,
"column": 63
}
},
@@ -15515,16 +16007,16 @@
"type": "Line",
"value": "page length is re-assigned in case it has changed",
"range": [
- 8829,
- 8880
+ 9094,
+ 9145
],
"loc": {
"start": {
- "line": 206,
+ "line": 212,
"column": 24
},
"end": {
- "line": 206,
+ "line": 212,
"column": 75
}
}
@@ -15540,16 +16032,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 8973,
- 8985
+ 9238,
+ 9250
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 28
},
"end": {
- "line": 208,
+ "line": 214,
"column": 40
}
}
@@ -15561,16 +16053,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8988,
- 8990
+ 9253,
+ 9255
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 43
},
"end": {
- "line": 208,
+ "line": 214,
"column": 45
}
}
@@ -15579,46 +16071,46 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 8991,
- 9005
+ 9256,
+ 9270
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 46
},
"end": {
- "line": 208,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 8988,
- 9005
+ 9253,
+ 9270
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 43
},
"end": {
- "line": 208,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 8973,
- 9005
+ 9238,
+ 9270
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 28
},
"end": {
- "line": 208,
+ "line": 214,
"column": 60
}
}
@@ -15629,16 +16121,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 9035,
- 9046
+ 9300,
+ 9311
],
"loc": {
"start": {
- "line": 209,
+ "line": 215,
"column": 28
},
"end": {
- "line": 209,
+ "line": 215,
"column": 39
}
}
@@ -15650,16 +16142,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9049,
- 9061
+ 9314,
+ 9326
],
"loc": {
"start": {
- "line": 209,
+ "line": 215,
"column": 42
},
"end": {
- "line": 209,
+ "line": 215,
"column": 54
}
}
@@ -15668,46 +16160,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 9062,
- 9068
+ 9327,
+ 9333
],
"loc": {
"start": {
- "line": 209,
+ "line": 215,
"column": 55
},
"end": {
- "line": 209,
+ "line": 215,
"column": 61
}
}
},
"range": [
- 9049,
- 9068
+ 9314,
+ 9333
],
"loc": {
"start": {
- "line": 209,
+ "line": 215,
"column": 42
},
"end": {
- "line": 209,
+ "line": 215,
"column": 61
}
}
},
"range": [
- 9035,
- 9068
+ 9300,
+ 9333
],
"loc": {
"start": {
- "line": 209,
+ "line": 215,
"column": 28
},
"end": {
- "line": 209,
+ "line": 215,
"column": 61
}
}
@@ -15718,16 +16210,16 @@
"type": "Identifier",
"name": "pagingEndRow",
"range": [
- 9098,
- 9110
+ 9363,
+ 9375
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 28
},
"end": {
- "line": 210,
+ "line": 216,
"column": 40
}
}
@@ -15741,16 +16233,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 9113,
- 9121
+ 9378,
+ 9386
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 43
},
"end": {
- "line": 210,
+ "line": 216,
"column": 51
}
}
@@ -15763,16 +16255,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9122,
- 9128
+ 9387,
+ 9393
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 52
},
"end": {
- "line": 210,
+ "line": 216,
"column": 58
}
}
@@ -15781,31 +16273,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 9129,
- 9143
+ 9394,
+ 9408
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 59
},
"end": {
- "line": 210,
+ "line": 216,
"column": 73
}
}
},
"range": [
- 9122,
- 9143
+ 9387,
+ 9408
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 52
},
"end": {
- "line": 210,
+ "line": 216,
"column": 73
}
}
@@ -15815,32 +16307,32 @@
"value": 10,
"raw": "10",
"range": [
- 9145,
- 9147
+ 9410,
+ 9412
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 75
},
"end": {
- "line": 210,
+ "line": 216,
"column": 77
}
}
}
],
"range": [
- 9113,
- 9148
+ 9378,
+ 9413
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 43
},
"end": {
- "line": 210,
+ "line": 216,
"column": 78
}
}
@@ -15851,16 +16343,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 9183,
- 9191
+ 9448,
+ 9456
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 32
},
"end": {
- "line": 211,
+ "line": 217,
"column": 40
}
}
@@ -15873,16 +16365,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9192,
- 9198
+ 9457,
+ 9463
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 41
},
"end": {
- "line": 211,
+ "line": 217,
"column": 47
}
}
@@ -15891,31 +16383,31 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 9199,
- 9211
+ 9464,
+ 9476
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 48
},
"end": {
- "line": 211,
+ "line": 217,
"column": 60
}
}
},
"range": [
- 9192,
- 9211
+ 9457,
+ 9476
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 41
},
"end": {
- "line": 211,
+ "line": 217,
"column": 60
}
}
@@ -15925,62 +16417,62 @@
"value": 10,
"raw": "10",
"range": [
- 9213,
- 9215
+ 9478,
+ 9480
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 62
},
"end": {
- "line": 211,
+ "line": 217,
"column": 64
}
}
}
],
"range": [
- 9183,
- 9216
+ 9448,
+ 9481
],
"loc": {
"start": {
- "line": 211,
+ "line": 217,
"column": 32
},
"end": {
- "line": 211,
+ "line": 217,
"column": 65
}
}
},
"range": [
- 9113,
- 9216
+ 9378,
+ 9481
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 43
},
"end": {
- "line": 211,
+ "line": 217,
"column": 65
}
}
},
"range": [
- 9098,
- 9216
+ 9363,
+ 9481
],
"loc": {
"start": {
- "line": 210,
+ "line": 216,
"column": 28
},
"end": {
- "line": 211,
+ "line": 217,
"column": 65
}
}
@@ -15988,16 +16480,16 @@
],
"kind": "var",
"range": [
- 8969,
- 9217
+ 9234,
+ 9482
],
"loc": {
"start": {
- "line": 208,
+ "line": 214,
"column": 24
},
"end": {
- "line": 211,
+ "line": 217,
"column": 66
}
}
@@ -16011,16 +16503,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9246,
- 9254
+ 9511,
+ 9519
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 28
},
"end": {
- "line": 212,
+ "line": 218,
"column": 36
}
}
@@ -16032,16 +16524,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 9257,
- 9260
+ 9522,
+ 9525
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 39
},
"end": {
- "line": 212,
+ "line": 218,
"column": 42
}
}
@@ -16050,46 +16542,46 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9261,
- 9269
+ 9526,
+ 9534
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 43
},
"end": {
- "line": 212,
+ "line": 218,
"column": 51
}
}
},
"range": [
- 9257,
- 9269
+ 9522,
+ 9534
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 39
},
"end": {
- "line": 212,
+ "line": 218,
"column": 51
}
}
},
"range": [
- 9246,
- 9269
+ 9511,
+ 9534
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 28
},
"end": {
- "line": 212,
+ "line": 218,
"column": 51
}
}
@@ -16097,16 +16589,16 @@
],
"kind": "var",
"range": [
- 9242,
- 9270
+ 9507,
+ 9535
],
"loc": {
"start": {
- "line": 212,
+ "line": 218,
"column": 24
},
"end": {
- "line": 212,
+ "line": 218,
"column": 52
}
}
@@ -16123,16 +16615,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9300,
- 9308
+ 9565,
+ 9573
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 28
},
"end": {
- "line": 214,
+ "line": 220,
"column": 36
}
}
@@ -16144,16 +16636,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9313,
- 9325
+ 9578,
+ 9590
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 41
},
"end": {
- "line": 214,
+ "line": 220,
"column": 53
}
}
@@ -16165,16 +16657,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 9326,
- 9337
+ 9591,
+ 9602
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 54
},
"end": {
- "line": 214,
+ "line": 220,
"column": 65
}
}
@@ -16184,61 +16676,61 @@
"value": 1,
"raw": "1",
"range": [
- 9338,
- 9339
+ 9603,
+ 9604
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 66
},
"end": {
- "line": 214,
+ "line": 220,
"column": 67
}
}
},
"range": [
- 9326,
- 9339
+ 9591,
+ 9604
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 54
},
"end": {
- "line": 214,
+ "line": 220,
"column": 67
}
}
},
"range": [
- 9313,
- 9340
+ 9578,
+ 9605
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 41
},
"end": {
- "line": 214,
+ "line": 220,
"column": 68
}
}
},
"range": [
- 9300,
- 9340
+ 9565,
+ 9605
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 28
},
"end": {
- "line": 214,
+ "line": 220,
"column": 68
}
}
@@ -16253,16 +16745,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9373,
- 9379
+ 9638,
+ 9644
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 28
},
"end": {
- "line": 215,
+ "line": 221,
"column": 34
}
}
@@ -16271,31 +16763,31 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 9380,
- 9393
+ 9645,
+ 9658
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 35
},
"end": {
- "line": 215,
+ "line": 221,
"column": 48
}
}
},
"range": [
- 9373,
- 9393
+ 9638,
+ 9658
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 28
},
"end": {
- "line": 215,
+ "line": 221,
"column": 48
}
}
@@ -16307,16 +16799,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9396,
- 9402
+ 9661,
+ 9667
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 51
},
"end": {
- "line": 215,
+ "line": 221,
"column": 57
}
}
@@ -16325,61 +16817,61 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 9403,
- 9410
+ 9668,
+ 9675
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 58
},
"end": {
- "line": 215,
+ "line": 221,
"column": 65
}
}
},
"range": [
- 9396,
- 9410
+ 9661,
+ 9675
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 51
},
"end": {
- "line": 215,
+ "line": 221,
"column": 65
}
}
},
"range": [
- 9373,
- 9410
+ 9638,
+ 9675
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 28
},
"end": {
- "line": 215,
+ "line": 221,
"column": 65
}
}
},
"range": [
- 9299,
- 9410
+ 9564,
+ 9675
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 27
},
"end": {
- "line": 215,
+ "line": 221,
"column": 65
}
}
@@ -16398,16 +16890,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9441,
- 9447
+ 9706,
+ 9712
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 28
},
"end": {
- "line": 216,
+ "line": 222,
"column": 34
}
}
@@ -16416,31 +16908,31 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 9448,
- 9455
+ 9713,
+ 9720
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 35
},
"end": {
- "line": 216,
+ "line": 222,
"column": 42
}
}
},
"range": [
- 9441,
- 9455
+ 9706,
+ 9720
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 28
},
"end": {
- "line": 216,
+ "line": 222,
"column": 42
}
}
@@ -16451,63 +16943,63 @@
"value": "last",
"raw": "'last'",
"range": [
- 9456,
- 9462
+ 9721,
+ 9727
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 43
},
"end": {
- "line": 216,
+ "line": 222,
"column": 49
}
}
}
],
"range": [
- 9441,
- 9463
+ 9706,
+ 9728
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 28
},
"end": {
- "line": 216,
+ "line": 222,
"column": 50
}
}
},
"range": [
- 9441,
- 9464
+ 9706,
+ 9729
],
"loc": {
"start": {
- "line": 216,
+ "line": 222,
"column": 28
},
"end": {
- "line": 216,
+ "line": 222,
"column": 51
}
}
}
],
"range": [
- 9411,
- 9490
+ 9676,
+ 9755
],
"loc": {
"start": {
- "line": 215,
+ "line": 221,
"column": 66
},
"end": {
- "line": 217,
+ "line": 223,
"column": 25
}
}
@@ -16524,16 +17016,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9524,
- 9532
+ 9789,
+ 9797
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 33
},
"end": {
- "line": 218,
+ "line": 224,
"column": 41
}
}
@@ -16545,16 +17037,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9536,
- 9548
+ 9801,
+ 9813
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 45
},
"end": {
- "line": 218,
+ "line": 224,
"column": 57
}
}
@@ -16564,46 +17056,46 @@
"value": 0,
"raw": "0",
"range": [
- 9549,
- 9550
+ 9814,
+ 9815
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 58
},
"end": {
- "line": 218,
+ "line": 224,
"column": 59
}
}
},
"range": [
- 9536,
- 9551
+ 9801,
+ 9816
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 45
},
"end": {
- "line": 218,
+ "line": 224,
"column": 60
}
}
},
"range": [
- 9524,
- 9551
+ 9789,
+ 9816
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 33
},
"end": {
- "line": 218,
+ "line": 224,
"column": 60
}
}
@@ -16618,16 +17110,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9584,
- 9590
+ 9849,
+ 9855
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 28
},
"end": {
- "line": 219,
+ "line": 225,
"column": 34
}
}
@@ -16636,31 +17128,31 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 9591,
- 9604
+ 9856,
+ 9869
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 35
},
"end": {
- "line": 219,
+ "line": 225,
"column": 48
}
}
},
"range": [
- 9584,
- 9604
+ 9849,
+ 9869
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 28
},
"end": {
- "line": 219,
+ "line": 225,
"column": 48
}
}
@@ -16670,46 +17162,46 @@
"value": 1,
"raw": "1",
"range": [
- 9607,
- 9608
+ 9872,
+ 9873
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 51
},
"end": {
- "line": 219,
+ "line": 225,
"column": 52
}
}
},
"range": [
- 9584,
- 9608
+ 9849,
+ 9873
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 28
},
"end": {
- "line": 219,
+ "line": 225,
"column": 52
}
}
},
"range": [
- 9523,
- 9608
+ 9788,
+ 9873
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 32
},
"end": {
- "line": 219,
+ "line": 225,
"column": 52
}
}
@@ -16728,16 +17220,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9639,
- 9645
+ 9904,
+ 9910
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 28
},
"end": {
- "line": 220,
+ "line": 226,
"column": 34
}
}
@@ -16746,31 +17238,31 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 9646,
- 9653
+ 9911,
+ 9918
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 35
},
"end": {
- "line": 220,
+ "line": 226,
"column": 42
}
}
},
"range": [
- 9639,
- 9653
+ 9904,
+ 9918
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 28
},
"end": {
- "line": 220,
+ "line": 226,
"column": 42
}
}
@@ -16781,63 +17273,63 @@
"value": "first",
"raw": "'first'",
"range": [
- 9654,
- 9661
+ 9919,
+ 9926
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 43
},
"end": {
- "line": 220,
+ "line": 226,
"column": 50
}
}
}
],
"range": [
- 9639,
- 9662
+ 9904,
+ 9927
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 28
},
"end": {
- "line": 220,
+ "line": 226,
"column": 51
}
}
},
"range": [
- 9639,
- 9663
+ 9904,
+ 9928
],
"loc": {
"start": {
- "line": 220,
+ "line": 226,
"column": 28
},
"end": {
- "line": 220,
+ "line": 226,
"column": 52
}
}
}
],
"range": [
- 9609,
- 9689
+ 9874,
+ 9954
],
"loc": {
"start": {
- "line": 219,
+ "line": 225,
"column": 53
},
"end": {
- "line": 221,
+ "line": 227,
"column": 25
}
}
@@ -16854,16 +17346,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9722,
- 9730
+ 9987,
+ 9995
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 32
},
"end": {
- "line": 222,
+ "line": 228,
"column": 40
}
}
@@ -16875,16 +17367,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9733,
- 9745
+ 9998,
+ 10010
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 43
},
"end": {
- "line": 222,
+ "line": 228,
"column": 55
}
}
@@ -16896,16 +17388,16 @@
"type": "Identifier",
"name": "pagingEndRow",
"range": [
- 9746,
- 9758
+ 10011,
+ 10023
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 56
},
"end": {
- "line": 222,
+ "line": 228,
"column": 68
}
}
@@ -16915,61 +17407,61 @@
"value": 1,
"raw": "1",
"range": [
- 9759,
- 9760
+ 10024,
+ 10025
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 69
},
"end": {
- "line": 222,
+ "line": 228,
"column": 70
}
}
},
"range": [
- 9746,
- 9760
+ 10011,
+ 10025
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 56
},
"end": {
- "line": 222,
+ "line": 228,
"column": 70
}
}
},
"range": [
- 9733,
- 9761
+ 9998,
+ 10026
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 43
},
"end": {
- "line": 222,
+ "line": 228,
"column": 71
}
}
},
"range": [
- 9722,
- 9761
+ 9987,
+ 10026
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 32
},
"end": {
- "line": 222,
+ "line": 228,
"column": 71
}
}
@@ -16981,16 +17473,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9793,
- 9801
+ 10058,
+ 10066
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 28
},
"end": {
- "line": 223,
+ "line": 229,
"column": 36
}
}
@@ -17002,16 +17494,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9804,
- 9816
+ 10069,
+ 10081
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 39
},
"end": {
- "line": 223,
+ "line": 229,
"column": 51
}
}
@@ -17023,16 +17515,16 @@
"type": "Identifier",
"name": "validIdxLen",
"range": [
- 9817,
- 9828
+ 10082,
+ 10093
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 52
},
"end": {
- "line": 223,
+ "line": 229,
"column": 63
}
}
@@ -17042,76 +17534,76 @@
"value": 1,
"raw": "1",
"range": [
- 9829,
- 9830
+ 10094,
+ 10095
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 64
},
"end": {
- "line": 223,
+ "line": 229,
"column": 65
}
}
},
"range": [
- 9817,
- 9830
+ 10082,
+ 10095
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 52
},
"end": {
- "line": 223,
+ "line": 229,
"column": 65
}
}
},
"range": [
- 9804,
- 9831
+ 10069,
+ 10096
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 39
},
"end": {
- "line": 223,
+ "line": 229,
"column": 66
}
}
},
"range": [
- 9793,
- 9831
+ 10058,
+ 10096
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 28
},
"end": {
- "line": 223,
+ "line": 229,
"column": 66
}
}
},
"range": [
- 9722,
- 9831
+ 9987,
+ 10096
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 32
},
"end": {
- "line": 223,
+ "line": 229,
"column": 66
}
}
@@ -17130,16 +17622,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9862,
- 9868
+ 10127,
+ 10133
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 28
},
"end": {
- "line": 224,
+ "line": 230,
"column": 34
}
}
@@ -17148,31 +17640,31 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 9869,
- 9876
+ 10134,
+ 10141
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 35
},
"end": {
- "line": 224,
+ "line": 230,
"column": 42
}
}
},
"range": [
- 9862,
- 9876
+ 10127,
+ 10141
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 28
},
"end": {
- "line": 224,
+ "line": 230,
"column": 42
}
}
@@ -17183,63 +17675,63 @@
"value": "next",
"raw": "'next'",
"range": [
- 9877,
- 9883
+ 10142,
+ 10148
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 43
},
"end": {
- "line": 224,
+ "line": 230,
"column": 49
}
}
}
],
"range": [
- 9862,
- 9884
+ 10127,
+ 10149
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 28
},
"end": {
- "line": 224,
+ "line": 230,
"column": 50
}
}
},
"range": [
- 9862,
- 9885
+ 10127,
+ 10150
],
"loc": {
"start": {
- "line": 224,
+ "line": 230,
"column": 28
},
"end": {
- "line": 224,
+ "line": 230,
"column": 51
}
}
}
],
"range": [
- 9832,
- 9911
+ 10097,
+ 10176
],
"loc": {
"start": {
- "line": 223,
+ "line": 229,
"column": 67
},
"end": {
- "line": 225,
+ "line": 231,
"column": 25
}
}
@@ -17256,16 +17748,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 9973,
- 9981
+ 10238,
+ 10246
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 28
},
"end": {
- "line": 227,
+ "line": 233,
"column": 36
}
}
@@ -17277,16 +17769,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 9984,
- 9996
+ 10249,
+ 10261
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 39
},
"end": {
- "line": 227,
+ "line": 233,
"column": 51
}
}
@@ -17298,16 +17790,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 9997,
- 10003
+ 10262,
+ 10268
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 52
},
"end": {
- "line": 227,
+ "line": 233,
"column": 58
}
}
@@ -17316,61 +17808,61 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 10004,
- 10018
+ 10269,
+ 10283
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 59
},
"end": {
- "line": 227,
+ "line": 233,
"column": 73
}
}
},
"range": [
- 9997,
- 10018
+ 10262,
+ 10283
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 52
},
"end": {
- "line": 227,
+ "line": 233,
"column": 73
}
}
},
"range": [
- 9984,
- 10019
+ 10249,
+ 10284
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 39
},
"end": {
- "line": 227,
+ "line": 233,
"column": 74
}
}
},
"range": [
- 9973,
- 10019
+ 10238,
+ 10284
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 28
},
"end": {
- "line": 227,
+ "line": 233,
"column": 74
}
}
@@ -17382,16 +17874,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 10051,
- 10059
+ 10316,
+ 10324
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 28
},
"end": {
- "line": 228,
+ "line": 234,
"column": 36
}
}
@@ -17403,16 +17895,16 @@
"type": "Identifier",
"name": "validIndexes",
"range": [
- 10062,
- 10074
+ 10327,
+ 10339
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 39
},
"end": {
- "line": 228,
+ "line": 234,
"column": 51
}
}
@@ -17422,61 +17914,61 @@
"value": 0,
"raw": "0",
"range": [
- 10075,
- 10076
+ 10340,
+ 10341
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 52
},
"end": {
- "line": 228,
+ "line": 234,
"column": 53
}
}
},
"range": [
- 10062,
- 10077
+ 10327,
+ 10342
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 39
},
"end": {
- "line": 228,
+ "line": 234,
"column": 54
}
}
},
"range": [
- 10051,
- 10077
+ 10316,
+ 10342
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 28
},
"end": {
- "line": 228,
+ "line": 234,
"column": 54
}
}
},
"range": [
- 9973,
- 10077
+ 10238,
+ 10342
],
"loc": {
"start": {
- "line": 227,
+ "line": 233,
"column": 28
},
"end": {
- "line": 228,
+ "line": 234,
"column": 54
}
}
@@ -17495,16 +17987,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 10108,
- 10114
+ 10373,
+ 10379
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 28
},
"end": {
- "line": 229,
+ "line": 235,
"column": 34
}
}
@@ -17513,31 +18005,31 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 10115,
- 10122
+ 10380,
+ 10387
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 35
},
"end": {
- "line": 229,
+ "line": 235,
"column": 42
}
}
},
"range": [
- 10108,
- 10122
+ 10373,
+ 10387
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 28
},
"end": {
- "line": 229,
+ "line": 235,
"column": 42
}
}
@@ -17548,204 +18040,204 @@
"value": "previous",
"raw": "'previous'",
"range": [
- 10123,
- 10133
+ 10388,
+ 10398
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 43
},
"end": {
- "line": 229,
+ "line": 235,
"column": 53
}
}
}
],
"range": [
- 10108,
- 10134
+ 10373,
+ 10399
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 28
},
"end": {
- "line": 229,
+ "line": 235,
"column": 54
}
}
},
"range": [
- 10108,
- 10135
+ 10373,
+ 10400
],
"loc": {
"start": {
- "line": 229,
+ "line": 235,
"column": 28
},
"end": {
- "line": 229,
+ "line": 235,
"column": 55
}
}
}
],
"range": [
- 10078,
- 10161
+ 10343,
+ 10426
],
"loc": {
"start": {
- "line": 228,
+ "line": 234,
"column": 55
},
"end": {
- "line": 230,
+ "line": 236,
"column": 25
}
}
},
"alternate": null,
"range": [
- 9941,
- 10161
+ 10206,
+ 10426
],
"loc": {
"start": {
- "line": 226,
+ "line": 232,
"column": 29
},
"end": {
- "line": 230,
+ "line": 236,
"column": 25
}
}
},
"range": [
- 9719,
- 10161
+ 9984,
+ 10426
],
"loc": {
"start": {
- "line": 222,
+ "line": 228,
"column": 29
},
"end": {
- "line": 230,
+ "line": 236,
"column": 25
}
}
},
"range": [
- 9520,
- 10161
+ 9785,
+ 10426
],
"loc": {
"start": {
- "line": 218,
+ "line": 224,
"column": 29
},
"end": {
- "line": 230,
+ "line": 236,
"column": 25
}
}
},
"range": [
- 9296,
- 10161
+ 9561,
+ 10426
],
"loc": {
"start": {
- "line": 214,
+ "line": 220,
"column": 24
},
"end": {
- "line": 230,
+ "line": 236,
"column": 25
}
}
}
],
"range": [
- 8744,
- 10183
+ 9009,
+ 10448
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 56
},
"end": {
- "line": 231,
+ "line": 237,
"column": 21
}
}
},
"alternate": null,
"range": [
- 8708,
- 10183
+ 8973,
+ 10448
],
"loc": {
"start": {
- "line": 204,
+ "line": 210,
"column": 20
},
"end": {
- "line": 231,
+ "line": 237,
"column": 21
}
}
}
],
"range": [
- 8686,
- 10201
+ 8951,
+ 10466
],
"loc": {
"start": {
- "line": 203,
+ "line": 209,
"column": 29
},
"end": {
- "line": 232,
+ "line": 238,
"column": 17
}
}
},
"alternate": null,
"range": [
- 8673,
- 10201
+ 8938,
+ 10466
],
"loc": {
"start": {
- "line": 203,
+ "line": 209,
"column": 16
},
"end": {
- "line": 232,
+ "line": 238,
"column": 17
}
}
}
],
"range": [
- 8539,
- 10215
+ 8804,
+ 10480
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 61
},
"end": {
- "line": 233,
+ "line": 239,
"column": 13
}
}
@@ -17753,31 +18245,31 @@
"generator": false,
"expression": false,
"range": [
- 8514,
- 10215
+ 8779,
+ 10480
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 36
},
"end": {
- "line": 233,
+ "line": 239,
"column": 13
}
}
},
"range": [
- 8494,
- 10215
+ 8759,
+ 10480
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 16
},
"end": {
- "line": 233,
+ "line": 239,
"column": 13
}
}
@@ -17785,16 +18277,16 @@
],
"kind": "var",
"range": [
- 8490,
- 10216
+ 8755,
+ 10481
],
"loc": {
"start": {
- "line": 200,
+ "line": 206,
"column": 12
},
"end": {
- "line": 233,
+ "line": 239,
"column": 14
}
},
@@ -17803,16 +18295,16 @@
"type": "Line",
"value": "Page navigation has to be enforced whenever selected row is out of",
"range": [
- 8372,
- 8440
+ 8637,
+ 8705
],
"loc": {
"start": {
- "line": 198,
+ "line": 204,
"column": 12
},
"end": {
- "line": 198,
+ "line": 204,
"column": 80
}
}
@@ -17821,16 +18313,16 @@
"type": "Line",
"value": "the current page range",
"range": [
- 8453,
- 8477
+ 8718,
+ 8742
],
"loc": {
"start": {
- "line": 199,
+ "line": 205,
"column": 12
},
"end": {
- "line": 199,
+ "line": 205,
"column": 36
}
}
@@ -17841,16 +18333,16 @@
"type": "Line",
"value": "Selected row needs to be visible when paging is activated",
"range": [
- 10230,
- 10289
+ 10495,
+ 10554
],
"loc": {
"start": {
- "line": 235,
+ "line": 241,
"column": 12
},
"end": {
- "line": 235,
+ "line": 241,
"column": 71
}
}
@@ -17866,16 +18358,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10305,
- 10307
+ 10570,
+ 10572
],
"loc": {
"start": {
- "line": 236,
+ "line": 242,
"column": 15
},
"end": {
- "line": 236,
+ "line": 242,
"column": 17
}
}
@@ -17884,31 +18376,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 10308,
- 10314
+ 10573,
+ 10579
],
"loc": {
"start": {
- "line": 236,
+ "line": 242,
"column": 18
},
"end": {
- "line": 236,
+ "line": 242,
"column": 24
}
}
},
"range": [
- 10305,
- 10314
+ 10570,
+ 10579
],
"loc": {
"start": {
- "line": 236,
+ "line": 242,
"column": 15
},
"end": {
- "line": 236,
+ "line": 242,
"column": 24
}
}
@@ -17933,16 +18425,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10333,
- 10335
+ 10598,
+ 10600
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 237,
+ "line": 243,
"column": 18
}
}
@@ -17951,31 +18443,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 10336,
- 10343
+ 10601,
+ 10608
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 19
},
"end": {
- "line": 237,
+ "line": 243,
"column": 26
}
}
},
"range": [
- 10333,
- 10343
+ 10598,
+ 10608
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 237,
+ "line": 243,
"column": 26
}
}
@@ -17986,32 +18478,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 10344,
- 10352
+ 10609,
+ 10617
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 27
},
"end": {
- "line": 237,
+ "line": 243,
"column": 35
}
}
}
],
"range": [
- 10333,
- 10353
+ 10598,
+ 10618
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 237,
+ "line": 243,
"column": 36
}
}
@@ -18020,31 +18512,31 @@
"type": "Identifier",
"name": "onAfterChangePage",
"range": [
- 10354,
- 10371
+ 10619,
+ 10636
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 37
},
"end": {
- "line": 237,
+ "line": 243,
"column": 54
}
}
},
"range": [
- 10333,
- 10371
+ 10598,
+ 10636
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 237,
+ "line": 243,
"column": 54
}
}
@@ -18057,16 +18549,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 10383,
- 10389
+ 10648,
+ 10654
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 66
},
"end": {
- "line": 237,
+ "line": 243,
"column": 72
}
}
@@ -18084,16 +18576,16 @@
"type": "Identifier",
"name": "advGrid",
"range": [
- 10416,
- 10423
+ 10681,
+ 10688
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 24
},
"end": {
- "line": 238,
+ "line": 244,
"column": 31
}
}
@@ -18110,16 +18602,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 10426,
- 10432
+ 10691,
+ 10697
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 34
},
"end": {
- "line": 238,
+ "line": 244,
"column": 40
}
}
@@ -18128,31 +18620,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10433,
- 10435
+ 10698,
+ 10700
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 41
},
"end": {
- "line": 238,
+ "line": 244,
"column": 43
}
}
},
"range": [
- 10426,
- 10435
+ 10691,
+ 10700
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 34
},
"end": {
- "line": 238,
+ "line": 244,
"column": 43
}
}
@@ -18161,31 +18653,31 @@
"type": "Identifier",
"name": "extension",
"range": [
- 10436,
- 10445
+ 10701,
+ 10710
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 44
},
"end": {
- "line": 238,
+ "line": 244,
"column": 53
}
}
},
"range": [
- 10426,
- 10445
+ 10691,
+ 10710
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 34
},
"end": {
- "line": 238,
+ "line": 244,
"column": 53
}
}
@@ -18196,47 +18688,47 @@
"value": "advancedGrid",
"raw": "'advancedGrid'",
"range": [
- 10446,
- 10460
+ 10711,
+ 10725
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 54
},
"end": {
- "line": 238,
+ "line": 244,
"column": 68
}
}
}
],
"range": [
- 10426,
- 10461
+ 10691,
+ 10726
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 34
},
"end": {
- "line": 238,
+ "line": 244,
"column": 69
}
}
},
"range": [
- 10416,
- 10461
+ 10681,
+ 10726
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 24
},
"end": {
- "line": 238,
+ "line": 244,
"column": 69
}
}
@@ -18244,16 +18736,16 @@
],
"kind": "var",
"range": [
- 10412,
- 10462
+ 10677,
+ 10727
],
"loc": {
"start": {
- "line": 238,
+ "line": 244,
"column": 20
},
"end": {
- "line": 238,
+ "line": 244,
"column": 70
}
}
@@ -18267,16 +18759,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 10487,
- 10489
+ 10752,
+ 10754
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 24
},
"end": {
- "line": 239,
+ "line": 245,
"column": 26
}
}
@@ -18288,16 +18780,16 @@
"type": "Identifier",
"name": "advGrid",
"range": [
- 10492,
- 10499
+ 10757,
+ 10764
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 29
},
"end": {
- "line": 239,
+ "line": 245,
"column": 36
}
}
@@ -18306,46 +18798,46 @@
"type": "Identifier",
"name": "_ezEditTable",
"range": [
- 10500,
- 10512
+ 10765,
+ 10777
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 37
},
"end": {
- "line": 239,
+ "line": 245,
"column": 49
}
}
},
"range": [
- 10492,
- 10512
+ 10757,
+ 10777
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 29
},
"end": {
- "line": 239,
+ "line": 245,
"column": 49
}
}
},
"range": [
- 10487,
- 10512
+ 10752,
+ 10777
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 24
},
"end": {
- "line": 239,
+ "line": 245,
"column": 49
}
}
@@ -18353,16 +18845,16 @@
],
"kind": "var",
"range": [
- 10483,
- 10513
+ 10748,
+ 10778
],
"loc": {
"start": {
- "line": 239,
+ "line": 245,
"column": 20
},
"end": {
- "line": 239,
+ "line": 245,
"column": 50
}
}
@@ -18376,16 +18868,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 10538,
- 10541
+ 10803,
+ 10806
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 24
},
"end": {
- "line": 240,
+ "line": 246,
"column": 27
}
}
@@ -18397,16 +18889,16 @@
"type": "Identifier",
"name": "et",
"range": [
- 10544,
- 10546
+ 10809,
+ 10811
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 30
},
"end": {
- "line": 240,
+ "line": 246,
"column": 32
}
}
@@ -18415,46 +18907,46 @@
"type": "Identifier",
"name": "Selection",
"range": [
- 10547,
- 10556
+ 10812,
+ 10821
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 33
},
"end": {
- "line": 240,
+ "line": 246,
"column": 42
}
}
},
"range": [
- 10544,
- 10556
+ 10809,
+ 10821
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 30
},
"end": {
- "line": 240,
+ "line": 246,
"column": 42
}
}
},
"range": [
- 10538,
- 10556
+ 10803,
+ 10821
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 24
},
"end": {
- "line": 240,
+ "line": 246,
"column": 42
}
}
@@ -18462,16 +18954,16 @@
],
"kind": "var",
"range": [
- 10534,
- 10557
+ 10799,
+ 10822
],
"loc": {
"start": {
- "line": 240,
+ "line": 246,
"column": 20
},
"end": {
- "line": 240,
+ "line": 246,
"column": 43
}
}
@@ -18485,16 +18977,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 10582,
- 10585
+ 10847,
+ 10850
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 24
},
"end": {
- "line": 241,
+ "line": 247,
"column": 27
}
}
@@ -18508,16 +19000,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 10588,
- 10591
+ 10853,
+ 10856
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 30
},
"end": {
- "line": 241,
+ "line": 247,
"column": 33
}
}
@@ -18526,62 +19018,62 @@
"type": "Identifier",
"name": "GetActiveRow",
"range": [
- 10592,
- 10604
+ 10857,
+ 10869
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 34
},
"end": {
- "line": 241,
+ "line": 247,
"column": 46
}
}
},
"range": [
- 10588,
- 10604
+ 10853,
+ 10869
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 30
},
"end": {
- "line": 241,
+ "line": 247,
"column": 46
}
}
},
"arguments": [],
"range": [
- 10588,
- 10606
+ 10853,
+ 10871
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 30
},
"end": {
- "line": 241,
+ "line": 247,
"column": 48
}
}
},
"range": [
- 10582,
- 10606
+ 10847,
+ 10871
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 24
},
"end": {
- "line": 241,
+ "line": 247,
"column": 48
}
}
@@ -18589,16 +19081,16 @@
],
"kind": "var",
"range": [
- 10578,
- 10607
+ 10843,
+ 10872
],
"loc": {
"start": {
- "line": 241,
+ "line": 247,
"column": 20
},
"end": {
- "line": 241,
+ "line": 247,
"column": 49
}
}
@@ -18609,16 +19101,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 10631,
- 10634
+ 10896,
+ 10899
],
"loc": {
"start": {
- "line": 242,
+ "line": 248,
"column": 23
},
"end": {
- "line": 242,
+ "line": 248,
"column": 26
}
}
@@ -18637,16 +19129,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 10661,
- 10664
+ 10926,
+ 10929
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 24
},
"end": {
- "line": 243,
+ "line": 249,
"column": 27
}
}
@@ -18655,31 +19147,31 @@
"type": "Identifier",
"name": "scrollIntoView",
"range": [
- 10665,
- 10679
+ 10930,
+ 10944
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 28
},
"end": {
- "line": 243,
+ "line": 249,
"column": 42
}
}
},
"range": [
- 10661,
- 10679
+ 10926,
+ 10944
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 24
},
"end": {
- "line": 243,
+ "line": 249,
"column": 42
}
}
@@ -18690,79 +19182,79 @@
"value": false,
"raw": "false",
"range": [
- 10680,
- 10685
+ 10945,
+ 10950
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 43
},
"end": {
- "line": 243,
+ "line": 249,
"column": 48
}
}
}
],
"range": [
- 10661,
- 10686
+ 10926,
+ 10951
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 24
},
"end": {
- "line": 243,
+ "line": 249,
"column": 49
}
}
},
"range": [
- 10661,
- 10687
+ 10926,
+ 10952
],
"loc": {
"start": {
- "line": 243,
+ "line": 249,
"column": 24
},
"end": {
- "line": 243,
+ "line": 249,
"column": 50
}
}
}
],
"range": [
- 10635,
- 10709
+ 10900,
+ 10974
],
"loc": {
"start": {
- "line": 242,
+ "line": 248,
"column": 27
},
"end": {
- "line": 244,
+ "line": 250,
"column": 21
}
}
},
"alternate": null,
"range": [
- 10628,
- 10709
+ 10893,
+ 10974
],
"loc": {
"start": {
- "line": 242,
+ "line": 248,
"column": 20
},
"end": {
- "line": 244,
+ "line": 250,
"column": 21
}
}
@@ -18776,16 +19268,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 10734,
- 10738
+ 10999,
+ 11003
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 24
},
"end": {
- "line": 245,
+ "line": 251,
"column": 28
}
}
@@ -18799,16 +19291,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 10741,
- 10744
+ 11006,
+ 11009
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 31
},
"end": {
- "line": 245,
+ "line": 251,
"column": 34
}
}
@@ -18817,62 +19309,62 @@
"type": "Identifier",
"name": "GetActiveCell",
"range": [
- 10745,
- 10758
+ 11010,
+ 11023
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 35
},
"end": {
- "line": 245,
+ "line": 251,
"column": 48
}
}
},
"range": [
- 10741,
- 10758
+ 11006,
+ 11023
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 31
},
"end": {
- "line": 245,
+ "line": 251,
"column": 48
}
}
},
"arguments": [],
"range": [
- 10741,
- 10760
+ 11006,
+ 11025
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 31
},
"end": {
- "line": 245,
+ "line": 251,
"column": 50
}
}
},
"range": [
- 10734,
- 10760
+ 10999,
+ 11025
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 24
},
"end": {
- "line": 245,
+ "line": 251,
"column": 50
}
}
@@ -18880,16 +19372,16 @@
],
"kind": "var",
"range": [
- 10730,
- 10761
+ 10995,
+ 11026
],
"loc": {
"start": {
- "line": 245,
+ "line": 251,
"column": 20
},
"end": {
- "line": 245,
+ "line": 251,
"column": 51
}
}
@@ -18900,16 +19392,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 10785,
- 10789
+ 11050,
+ 11054
],
"loc": {
"start": {
- "line": 246,
+ "line": 252,
"column": 23
},
"end": {
- "line": 246,
+ "line": 252,
"column": 27
}
}
@@ -18928,16 +19420,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 10816,
- 10820
+ 11081,
+ 11085
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 24
},
"end": {
- "line": 247,
+ "line": 253,
"column": 28
}
}
@@ -18946,31 +19438,31 @@
"type": "Identifier",
"name": "scrollIntoView",
"range": [
- 10821,
- 10835
+ 11086,
+ 11100
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 29
},
"end": {
- "line": 247,
+ "line": 253,
"column": 43
}
}
},
"range": [
- 10816,
- 10835
+ 11081,
+ 11100
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 24
},
"end": {
- "line": 247,
+ "line": 253,
"column": 43
}
}
@@ -18981,95 +19473,95 @@
"value": false,
"raw": "false",
"range": [
- 10836,
- 10841
+ 11101,
+ 11106
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 44
},
"end": {
- "line": 247,
+ "line": 253,
"column": 49
}
}
}
],
"range": [
- 10816,
- 10842
+ 11081,
+ 11107
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 24
},
"end": {
- "line": 247,
+ "line": 253,
"column": 50
}
}
},
"range": [
- 10816,
- 10843
+ 11081,
+ 11108
],
"loc": {
"start": {
- "line": 247,
+ "line": 253,
"column": 24
},
"end": {
- "line": 247,
+ "line": 253,
"column": 51
}
}
}
],
"range": [
- 10790,
- 10865
+ 11055,
+ 11130
],
"loc": {
"start": {
- "line": 246,
+ "line": 252,
"column": 28
},
"end": {
- "line": 248,
+ "line": 254,
"column": 21
}
}
},
"alternate": null,
"range": [
- 10782,
- 10865
+ 11047,
+ 11130
],
"loc": {
"start": {
- "line": 246,
+ "line": 252,
"column": 20
},
"end": {
- "line": 248,
+ "line": 254,
"column": 21
}
}
}
],
"range": [
- 10390,
- 10883
+ 10655,
+ 11148
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 73
},
"end": {
- "line": 249,
+ "line": 255,
"column": 17
}
}
@@ -19077,78 +19569,78 @@
"generator": false,
"expression": false,
"range": [
- 10374,
- 10883
+ 10639,
+ 11148
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 57
},
"end": {
- "line": 249,
+ "line": 255,
"column": 17
}
}
},
"range": [
- 10333,
- 10883
+ 10598,
+ 11148
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 249,
+ "line": 255,
"column": 17
}
}
},
"range": [
- 10333,
- 10884
+ 10598,
+ 11149
],
"loc": {
"start": {
- "line": 237,
+ "line": 243,
"column": 16
},
"end": {
- "line": 249,
+ "line": 255,
"column": 18
}
}
}
],
"range": [
- 10315,
- 10898
+ 10580,
+ 11163
],
"loc": {
"start": {
- "line": 236,
+ "line": 242,
"column": 25
},
"end": {
- "line": 250,
+ "line": 256,
"column": 13
}
}
},
"alternate": null,
"range": [
- 10302,
- 10898
+ 10567,
+ 11163
],
"loc": {
"start": {
- "line": 236,
+ "line": 242,
"column": 12
},
"end": {
- "line": 250,
+ "line": 256,
"column": 13
}
},
@@ -19157,16 +19649,16 @@
"type": "Line",
"value": "Selected row needs to be visible when paging is activated",
"range": [
- 10230,
- 10289
+ 10495,
+ 10554
],
"loc": {
"start": {
- "line": 235,
+ "line": 241,
"column": 12
},
"end": {
- "line": 235,
+ "line": 241,
"column": 71
}
}
@@ -19177,16 +19669,16 @@
"type": "Line",
"value": "Rows navigation when rows are filtered is performed with the",
"range": [
- 10912,
- 10974
+ 11177,
+ 11239
],
"loc": {
"start": {
- "line": 252,
+ "line": 258,
"column": 12
},
"end": {
- "line": 252,
+ "line": 258,
"column": 74
}
}
@@ -19195,16 +19687,16 @@
"type": "Line",
"value": "EditTable row selection callback events",
"range": [
- 10987,
- 11028
+ 11252,
+ 11293
],
"loc": {
"start": {
- "line": 253,
+ "line": 259,
"column": 12
},
"end": {
- "line": 253,
+ "line": 259,
"column": 53
}
}
@@ -19223,16 +19715,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11044,
- 11047
+ 11309,
+ 11312
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 15
},
"end": {
- "line": 254,
+ "line": 260,
"column": 18
}
}
@@ -19241,31 +19733,31 @@
"type": "Identifier",
"name": "default_selection",
"range": [
- 11048,
- 11065
+ 11313,
+ 11330
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 19
},
"end": {
- "line": 254,
+ "line": 260,
"column": 36
}
}
},
"range": [
- 11044,
- 11065
+ 11309,
+ 11330
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 15
},
"end": {
- "line": 254,
+ "line": 260,
"column": 36
}
}
@@ -19275,31 +19767,31 @@
"value": "row",
"raw": "'row'",
"range": [
- 11068,
- 11073
+ 11333,
+ 11338
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 39
},
"end": {
- "line": 254,
+ "line": 260,
"column": 44
}
}
},
"range": [
- 11044,
- 11073
+ 11309,
+ 11338
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 15
},
"end": {
- "line": 254,
+ "line": 260,
"column": 44
}
}
@@ -19316,16 +19808,16 @@
"type": "Identifier",
"name": "fnB",
"range": [
- 11096,
- 11099
+ 11361,
+ 11364
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 20
},
"end": {
- "line": 255,
+ "line": 261,
"column": 23
}
}
@@ -19337,16 +19829,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11102,
- 11105
+ 11367,
+ 11370
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 26
},
"end": {
- "line": 255,
+ "line": 261,
"column": 29
}
}
@@ -19355,46 +19847,46 @@
"type": "Identifier",
"name": "on_before_selected_row",
"range": [
- 11106,
- 11128
+ 11371,
+ 11393
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 30
},
"end": {
- "line": 255,
+ "line": 261,
"column": 52
}
}
},
"range": [
- 11102,
- 11128
+ 11367,
+ 11393
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 26
},
"end": {
- "line": 255,
+ "line": 261,
"column": 52
}
}
},
"range": [
- 11096,
- 11128
+ 11361,
+ 11393
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 20
},
"end": {
- "line": 255,
+ "line": 261,
"column": 52
}
}
@@ -19402,16 +19894,16 @@
],
"kind": "var",
"range": [
- 11092,
- 11129
+ 11357,
+ 11394
],
"loc": {
"start": {
- "line": 255,
+ "line": 261,
"column": 16
},
"end": {
- "line": 255,
+ "line": 261,
"column": 53
}
}
@@ -19428,16 +19920,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11146,
- 11149
+ 11411,
+ 11414
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 16
},
"end": {
- "line": 256,
+ "line": 262,
"column": 19
}
}
@@ -19446,31 +19938,31 @@
"type": "Identifier",
"name": "on_before_selected_row",
"range": [
- 11150,
- 11172
+ 11415,
+ 11437
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 20
},
"end": {
- "line": 256,
+ "line": 262,
"column": 42
}
}
},
"range": [
- 11146,
- 11172
+ 11411,
+ 11437
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 16
},
"end": {
- "line": 256,
+ "line": 262,
"column": 42
}
}
@@ -19490,16 +19982,16 @@
"type": "Identifier",
"name": "onBeforeSelection",
"range": [
- 11207,
- 11224
+ 11472,
+ 11489
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 20
},
"end": {
- "line": 257,
+ "line": 263,
"column": 37
}
}
@@ -19512,16 +20004,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11225,
- 11234
+ 11490,
+ 11499
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 38
},
"end": {
- "line": 257,
+ "line": 263,
"column": 47
}
}
@@ -19531,31 +20023,31 @@
"value": 0,
"raw": "0",
"range": [
- 11235,
- 11236
+ 11500,
+ 11501
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 48
},
"end": {
- "line": 257,
+ "line": 263,
"column": 49
}
}
},
"range": [
- 11225,
- 11237
+ 11490,
+ 11502
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 38
},
"end": {
- "line": 257,
+ "line": 263,
"column": 50
}
}
@@ -19567,16 +20059,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11239,
- 11248
+ 11504,
+ 11513
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 52
},
"end": {
- "line": 257,
+ "line": 263,
"column": 61
}
}
@@ -19586,31 +20078,31 @@
"value": 1,
"raw": "1",
"range": [
- 11249,
- 11250
+ 11514,
+ 11515
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 62
},
"end": {
- "line": 257,
+ "line": 263,
"column": 63
}
}
},
"range": [
- 11239,
- 11251
+ 11504,
+ 11516
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 52
},
"end": {
- "line": 257,
+ "line": 263,
"column": 64
}
}
@@ -19622,16 +20114,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11253,
- 11262
+ 11518,
+ 11527
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 66
},
"end": {
- "line": 257,
+ "line": 263,
"column": 75
}
}
@@ -19641,62 +20133,62 @@
"value": 2,
"raw": "2",
"range": [
- 11263,
- 11264
+ 11528,
+ 11529
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 76
},
"end": {
- "line": 257,
+ "line": 263,
"column": 77
}
}
},
"range": [
- 11253,
- 11265
+ 11518,
+ 11530
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 66
},
"end": {
- "line": 257,
+ "line": 263,
"column": 78
}
}
}
],
"range": [
- 11207,
- 11266
+ 11472,
+ 11531
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 20
},
"end": {
- "line": 257,
+ "line": 263,
"column": 79
}
}
},
"range": [
- 11207,
- 11267
+ 11472,
+ 11532
],
"loc": {
"start": {
- "line": 257,
+ "line": 263,
"column": 20
},
"end": {
- "line": 257,
+ "line": 263,
"column": 80
}
}
@@ -19707,16 +20199,16 @@
"type": "Identifier",
"name": "fnB",
"range": [
- 11291,
- 11294
+ 11556,
+ 11559
],
"loc": {
"start": {
- "line": 258,
+ "line": 264,
"column": 23
},
"end": {
- "line": 258,
+ "line": 264,
"column": 26
}
}
@@ -19735,16 +20227,16 @@
"type": "Identifier",
"name": "fnB",
"range": [
- 11321,
- 11324
+ 11586,
+ 11589
],
"loc": {
"start": {
- "line": 259,
+ "line": 265,
"column": 24
},
"end": {
- "line": 259,
+ "line": 265,
"column": 27
}
}
@@ -19753,31 +20245,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 11325,
- 11329
+ 11590,
+ 11594
],
"loc": {
"start": {
- "line": 259,
+ "line": 265,
"column": 28
},
"end": {
- "line": 259,
+ "line": 265,
"column": 32
}
}
},
"range": [
- 11321,
- 11329
+ 11586,
+ 11594
],
"loc": {
"start": {
- "line": 259,
+ "line": 265,
"column": 24
},
"end": {
- "line": 259,
+ "line": 265,
"column": 32
}
}
@@ -19788,16 +20280,16 @@
"value": null,
"raw": "null",
"range": [
- 11359,
- 11363
+ 11624,
+ 11628
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 28
},
"end": {
- "line": 260,
+ "line": 266,
"column": 32
}
}
@@ -19809,16 +20301,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11365,
- 11374
+ 11630,
+ 11639
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 34
},
"end": {
- "line": 260,
+ "line": 266,
"column": 43
}
}
@@ -19828,31 +20320,31 @@
"value": 0,
"raw": "0",
"range": [
- 11375,
- 11376
+ 11640,
+ 11641
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 44
},
"end": {
- "line": 260,
+ "line": 266,
"column": 45
}
}
},
"range": [
- 11365,
- 11377
+ 11630,
+ 11642
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 34
},
"end": {
- "line": 260,
+ "line": 266,
"column": 46
}
}
@@ -19864,16 +20356,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11379,
- 11388
+ 11644,
+ 11653
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 48
},
"end": {
- "line": 260,
+ "line": 266,
"column": 57
}
}
@@ -19883,31 +20375,31 @@
"value": 1,
"raw": "1",
"range": [
- 11389,
- 11390
+ 11654,
+ 11655
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 58
},
"end": {
- "line": 260,
+ "line": 266,
"column": 59
}
}
},
"range": [
- 11379,
- 11391
+ 11644,
+ 11656
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 48
},
"end": {
- "line": 260,
+ "line": 266,
"column": 60
}
}
@@ -19919,16 +20411,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11393,
- 11402
+ 11658,
+ 11667
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 62
},
"end": {
- "line": 260,
+ "line": 266,
"column": 71
}
}
@@ -19938,110 +20430,110 @@
"value": 2,
"raw": "2",
"range": [
- 11403,
- 11404
+ 11668,
+ 11669
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 72
},
"end": {
- "line": 260,
+ "line": 266,
"column": 73
}
}
},
"range": [
- 11393,
- 11405
+ 11658,
+ 11670
],
"loc": {
"start": {
- "line": 260,
+ "line": 266,
"column": 62
},
"end": {
- "line": 260,
+ "line": 266,
"column": 74
}
}
}
],
"range": [
- 11321,
- 11406
+ 11586,
+ 11671
],
"loc": {
"start": {
- "line": 259,
+ "line": 265,
"column": 24
},
"end": {
- "line": 260,
+ "line": 266,
"column": 75
}
}
},
"range": [
- 11321,
- 11407
+ 11586,
+ 11672
],
"loc": {
"start": {
- "line": 259,
+ "line": 265,
"column": 24
},
"end": {
- "line": 260,
+ "line": 266,
"column": 76
}
}
}
],
"range": [
- 11295,
- 11429
+ 11560,
+ 11694
],
"loc": {
"start": {
- "line": 258,
+ "line": 264,
"column": 27
},
"end": {
- "line": 261,
+ "line": 267,
"column": 21
}
}
},
"alternate": null,
"range": [
- 11288,
- 11429
+ 11553,
+ 11694
],
"loc": {
"start": {
- "line": 258,
+ "line": 264,
"column": 20
},
"end": {
- "line": 261,
+ "line": 267,
"column": 21
}
}
}
],
"range": [
- 11185,
- 11447
+ 11450,
+ 11712
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 55
},
"end": {
- "line": 262,
+ "line": 268,
"column": 17
}
}
@@ -20049,46 +20541,46 @@
"generator": false,
"expression": false,
"range": [
- 11175,
- 11447
+ 11440,
+ 11712
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 45
},
"end": {
- "line": 262,
+ "line": 268,
"column": 17
}
}
},
"range": [
- 11146,
- 11447
+ 11411,
+ 11712
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 16
},
"end": {
- "line": 262,
+ "line": 268,
"column": 17
}
}
},
"range": [
- 11146,
- 11448
+ 11411,
+ 11713
],
"loc": {
"start": {
- "line": 256,
+ "line": 262,
"column": 16
},
"end": {
- "line": 262,
+ "line": 268,
"column": 18
}
}
@@ -20102,16 +20594,16 @@
"type": "Identifier",
"name": "fnA",
"range": [
- 11469,
- 11472
+ 11734,
+ 11737
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 20
},
"end": {
- "line": 263,
+ "line": 269,
"column": 23
}
}
@@ -20123,16 +20615,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11475,
- 11478
+ 11740,
+ 11743
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 26
},
"end": {
- "line": 263,
+ "line": 269,
"column": 29
}
}
@@ -20141,46 +20633,46 @@
"type": "Identifier",
"name": "on_after_selected_row",
"range": [
- 11479,
- 11500
+ 11744,
+ 11765
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 30
},
"end": {
- "line": 263,
+ "line": 269,
"column": 51
}
}
},
"range": [
- 11475,
- 11500
+ 11740,
+ 11765
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 26
},
"end": {
- "line": 263,
+ "line": 269,
"column": 51
}
}
},
"range": [
- 11469,
- 11500
+ 11734,
+ 11765
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 20
},
"end": {
- "line": 263,
+ "line": 269,
"column": 51
}
}
@@ -20188,16 +20680,16 @@
],
"kind": "var",
"range": [
- 11465,
- 11501
+ 11730,
+ 11766
],
"loc": {
"start": {
- "line": 263,
+ "line": 269,
"column": 16
},
"end": {
- "line": 263,
+ "line": 269,
"column": 52
}
}
@@ -20214,16 +20706,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11518,
- 11521
+ 11783,
+ 11786
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 16
},
"end": {
- "line": 264,
+ "line": 270,
"column": 19
}
}
@@ -20232,31 +20724,31 @@
"type": "Identifier",
"name": "on_after_selected_row",
"range": [
- 11522,
- 11543
+ 11787,
+ 11808
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 20
},
"end": {
- "line": 264,
+ "line": 270,
"column": 41
}
}
},
"range": [
- 11518,
- 11543
+ 11783,
+ 11808
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 16
},
"end": {
- "line": 264,
+ "line": 270,
"column": 41
}
}
@@ -20276,16 +20768,16 @@
"type": "Identifier",
"name": "onAfterSelection",
"range": [
- 11578,
- 11594
+ 11843,
+ 11859
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 20
},
"end": {
- "line": 265,
+ "line": 271,
"column": 36
}
}
@@ -20298,16 +20790,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11595,
- 11604
+ 11860,
+ 11869
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 37
},
"end": {
- "line": 265,
+ "line": 271,
"column": 46
}
}
@@ -20317,31 +20809,31 @@
"value": 0,
"raw": "0",
"range": [
- 11605,
- 11606
+ 11870,
+ 11871
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 47
},
"end": {
- "line": 265,
+ "line": 271,
"column": 48
}
}
},
"range": [
- 11595,
- 11607
+ 11860,
+ 11872
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 37
},
"end": {
- "line": 265,
+ "line": 271,
"column": 49
}
}
@@ -20353,16 +20845,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11609,
- 11618
+ 11874,
+ 11883
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 51
},
"end": {
- "line": 265,
+ "line": 271,
"column": 60
}
}
@@ -20372,31 +20864,31 @@
"value": 1,
"raw": "1",
"range": [
- 11619,
- 11620
+ 11884,
+ 11885
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 61
},
"end": {
- "line": 265,
+ "line": 271,
"column": 62
}
}
},
"range": [
- 11609,
- 11621
+ 11874,
+ 11886
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 51
},
"end": {
- "line": 265,
+ "line": 271,
"column": 63
}
}
@@ -20408,16 +20900,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11623,
- 11632
+ 11888,
+ 11897
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 65
},
"end": {
- "line": 265,
+ "line": 271,
"column": 74
}
}
@@ -20427,62 +20919,62 @@
"value": 2,
"raw": "2",
"range": [
- 11633,
- 11634
+ 11898,
+ 11899
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 75
},
"end": {
- "line": 265,
+ "line": 271,
"column": 76
}
}
},
"range": [
- 11623,
- 11635
+ 11888,
+ 11900
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 65
},
"end": {
- "line": 265,
+ "line": 271,
"column": 77
}
}
}
],
"range": [
- 11578,
- 11636
+ 11843,
+ 11901
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 20
},
"end": {
- "line": 265,
+ "line": 271,
"column": 78
}
}
},
"range": [
- 11578,
- 11637
+ 11843,
+ 11902
],
"loc": {
"start": {
- "line": 265,
+ "line": 271,
"column": 20
},
"end": {
- "line": 265,
+ "line": 271,
"column": 79
}
}
@@ -20493,16 +20985,16 @@
"type": "Identifier",
"name": "fnA",
"range": [
- 11661,
- 11664
+ 11926,
+ 11929
],
"loc": {
"start": {
- "line": 266,
+ "line": 272,
"column": 23
},
"end": {
- "line": 266,
+ "line": 272,
"column": 26
}
}
@@ -20521,16 +21013,16 @@
"type": "Identifier",
"name": "fnA",
"range": [
- 11691,
- 11694
+ 11956,
+ 11959
],
"loc": {
"start": {
- "line": 267,
+ "line": 273,
"column": 24
},
"end": {
- "line": 267,
+ "line": 273,
"column": 27
}
}
@@ -20539,31 +21031,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 11695,
- 11699
+ 11960,
+ 11964
],
"loc": {
"start": {
- "line": 267,
+ "line": 273,
"column": 28
},
"end": {
- "line": 267,
+ "line": 273,
"column": 32
}
}
},
"range": [
- 11691,
- 11699
+ 11956,
+ 11964
],
"loc": {
"start": {
- "line": 267,
+ "line": 273,
"column": 24
},
"end": {
- "line": 267,
+ "line": 273,
"column": 32
}
}
@@ -20574,16 +21066,16 @@
"value": null,
"raw": "null",
"range": [
- 11729,
- 11733
+ 11994,
+ 11998
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 28
},
"end": {
- "line": 268,
+ "line": 274,
"column": 32
}
}
@@ -20595,16 +21087,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11735,
- 11744
+ 12000,
+ 12009
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 34
},
"end": {
- "line": 268,
+ "line": 274,
"column": 43
}
}
@@ -20614,31 +21106,31 @@
"value": 0,
"raw": "0",
"range": [
- 11745,
- 11746
+ 12010,
+ 12011
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 44
},
"end": {
- "line": 268,
+ "line": 274,
"column": 45
}
}
},
"range": [
- 11735,
- 11747
+ 12000,
+ 12012
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 34
},
"end": {
- "line": 268,
+ "line": 274,
"column": 46
}
}
@@ -20650,16 +21142,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11749,
- 11758
+ 12014,
+ 12023
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 48
},
"end": {
- "line": 268,
+ "line": 274,
"column": 57
}
}
@@ -20669,31 +21161,31 @@
"value": 1,
"raw": "1",
"range": [
- 11759,
- 11760
+ 12024,
+ 12025
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 58
},
"end": {
- "line": 268,
+ "line": 274,
"column": 59
}
}
},
"range": [
- 11749,
- 11761
+ 12014,
+ 12026
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 48
},
"end": {
- "line": 268,
+ "line": 274,
"column": 60
}
}
@@ -20705,16 +21197,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11763,
- 11772
+ 12028,
+ 12037
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 62
},
"end": {
- "line": 268,
+ "line": 274,
"column": 71
}
}
@@ -20724,110 +21216,110 @@
"value": 2,
"raw": "2",
"range": [
- 11773,
- 11774
+ 12038,
+ 12039
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 72
},
"end": {
- "line": 268,
+ "line": 274,
"column": 73
}
}
},
"range": [
- 11763,
- 11775
+ 12028,
+ 12040
],
"loc": {
"start": {
- "line": 268,
+ "line": 274,
"column": 62
},
"end": {
- "line": 268,
+ "line": 274,
"column": 74
}
}
}
],
"range": [
- 11691,
- 11776
+ 11956,
+ 12041
],
"loc": {
"start": {
- "line": 267,
+ "line": 273,
"column": 24
},
"end": {
- "line": 268,
+ "line": 274,
"column": 75
}
}
},
"range": [
- 11691,
- 11777
+ 11956,
+ 12042
],
"loc": {
"start": {
- "line": 267,
+ "line": 273,
"column": 24
},
"end": {
- "line": 268,
+ "line": 274,
"column": 76
}
}
}
],
"range": [
- 11665,
- 11799
+ 11930,
+ 12064
],
"loc": {
"start": {
- "line": 266,
+ "line": 272,
"column": 27
},
"end": {
- "line": 269,
+ "line": 275,
"column": 21
}
}
},
"alternate": null,
"range": [
- 11658,
- 11799
+ 11923,
+ 12064
],
"loc": {
"start": {
- "line": 266,
+ "line": 272,
"column": 20
},
"end": {
- "line": 269,
+ "line": 275,
"column": 21
}
}
}
],
"range": [
- 11556,
- 11817
+ 11821,
+ 12082
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 54
},
"end": {
- "line": 270,
+ "line": 276,
"column": 17
}
}
@@ -20835,62 +21327,62 @@
"generator": false,
"expression": false,
"range": [
- 11546,
- 11817
+ 11811,
+ 12082
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 44
},
"end": {
- "line": 270,
+ "line": 276,
"column": 17
}
}
},
"range": [
- 11518,
- 11817
+ 11783,
+ 12082
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 16
},
"end": {
- "line": 270,
+ "line": 276,
"column": 17
}
}
},
"range": [
- 11518,
- 11818
+ 11783,
+ 12083
],
"loc": {
"start": {
- "line": 264,
+ "line": 270,
"column": 16
},
"end": {
- "line": 270,
+ "line": 276,
"column": 18
}
}
}
],
"range": [
- 11074,
- 11832
+ 11339,
+ 12097
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 45
},
"end": {
- "line": 271,
+ "line": 277,
"column": 13
}
}
@@ -20907,16 +21399,16 @@
"type": "Identifier",
"name": "fnD",
"range": [
- 11860,
- 11863
+ 12125,
+ 12128
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 20
},
"end": {
- "line": 272,
+ "line": 278,
"column": 23
}
}
@@ -20928,16 +21420,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11866,
- 11869
+ 12131,
+ 12134
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 26
},
"end": {
- "line": 272,
+ "line": 278,
"column": 29
}
}
@@ -20946,46 +21438,46 @@
"type": "Identifier",
"name": "on_before_selected_cell",
"range": [
- 11870,
- 11893
+ 12135,
+ 12158
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 30
},
"end": {
- "line": 272,
+ "line": 278,
"column": 53
}
}
},
"range": [
- 11866,
- 11893
+ 12131,
+ 12158
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 26
},
"end": {
- "line": 272,
+ "line": 278,
"column": 53
}
}
},
"range": [
- 11860,
- 11893
+ 12125,
+ 12158
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 20
},
"end": {
- "line": 272,
+ "line": 278,
"column": 53
}
}
@@ -20993,16 +21485,16 @@
],
"kind": "var",
"range": [
- 11856,
- 11894
+ 12121,
+ 12159
],
"loc": {
"start": {
- "line": 272,
+ "line": 278,
"column": 16
},
"end": {
- "line": 272,
+ "line": 278,
"column": 54
}
}
@@ -21019,16 +21511,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 11911,
- 11914
+ 12176,
+ 12179
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 16
},
"end": {
- "line": 273,
+ "line": 279,
"column": 19
}
}
@@ -21037,31 +21529,31 @@
"type": "Identifier",
"name": "on_before_selected_cell",
"range": [
- 11915,
- 11938
+ 12180,
+ 12203
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 20
},
"end": {
- "line": 273,
+ "line": 279,
"column": 43
}
}
},
"range": [
- 11911,
- 11938
+ 12176,
+ 12203
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 16
},
"end": {
- "line": 273,
+ "line": 279,
"column": 43
}
}
@@ -21081,16 +21573,16 @@
"type": "Identifier",
"name": "onBeforeSelection",
"range": [
- 11973,
- 11990
+ 12238,
+ 12255
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 20
},
"end": {
- "line": 274,
+ "line": 280,
"column": 37
}
}
@@ -21103,16 +21595,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 11991,
- 12000
+ 12256,
+ 12265
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 38
},
"end": {
- "line": 274,
+ "line": 280,
"column": 47
}
}
@@ -21122,31 +21614,31 @@
"value": 0,
"raw": "0",
"range": [
- 12001,
- 12002
+ 12266,
+ 12267
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 48
},
"end": {
- "line": 274,
+ "line": 280,
"column": 49
}
}
},
"range": [
- 11991,
- 12003
+ 12256,
+ 12268
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 38
},
"end": {
- "line": 274,
+ "line": 280,
"column": 50
}
}
@@ -21158,16 +21650,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12005,
- 12014
+ 12270,
+ 12279
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 52
},
"end": {
- "line": 274,
+ "line": 280,
"column": 61
}
}
@@ -21177,31 +21669,31 @@
"value": 1,
"raw": "1",
"range": [
- 12015,
- 12016
+ 12280,
+ 12281
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 62
},
"end": {
- "line": 274,
+ "line": 280,
"column": 63
}
}
},
"range": [
- 12005,
- 12017
+ 12270,
+ 12282
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 52
},
"end": {
- "line": 274,
+ "line": 280,
"column": 64
}
}
@@ -21213,16 +21705,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12019,
- 12028
+ 12284,
+ 12293
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 66
},
"end": {
- "line": 274,
+ "line": 280,
"column": 75
}
}
@@ -21232,62 +21724,62 @@
"value": 2,
"raw": "2",
"range": [
- 12029,
- 12030
+ 12294,
+ 12295
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 76
},
"end": {
- "line": 274,
+ "line": 280,
"column": 77
}
}
},
"range": [
- 12019,
- 12031
+ 12284,
+ 12296
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 66
},
"end": {
- "line": 274,
+ "line": 280,
"column": 78
}
}
}
],
"range": [
- 11973,
- 12032
+ 12238,
+ 12297
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 20
},
"end": {
- "line": 274,
+ "line": 280,
"column": 79
}
}
},
"range": [
- 11973,
- 12033
+ 12238,
+ 12298
],
"loc": {
"start": {
- "line": 274,
+ "line": 280,
"column": 20
},
"end": {
- "line": 274,
+ "line": 280,
"column": 80
}
}
@@ -21298,16 +21790,16 @@
"type": "Identifier",
"name": "fnD",
"range": [
- 12057,
- 12060
+ 12322,
+ 12325
],
"loc": {
"start": {
- "line": 275,
+ "line": 281,
"column": 23
},
"end": {
- "line": 275,
+ "line": 281,
"column": 26
}
}
@@ -21326,16 +21818,16 @@
"type": "Identifier",
"name": "fnD",
"range": [
- 12087,
- 12090
+ 12352,
+ 12355
],
"loc": {
"start": {
- "line": 276,
+ "line": 282,
"column": 24
},
"end": {
- "line": 276,
+ "line": 282,
"column": 27
}
}
@@ -21344,31 +21836,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 12091,
- 12095
+ 12356,
+ 12360
],
"loc": {
"start": {
- "line": 276,
+ "line": 282,
"column": 28
},
"end": {
- "line": 276,
+ "line": 282,
"column": 32
}
}
},
"range": [
- 12087,
- 12095
+ 12352,
+ 12360
],
"loc": {
"start": {
- "line": 276,
+ "line": 282,
"column": 24
},
"end": {
- "line": 276,
+ "line": 282,
"column": 32
}
}
@@ -21379,16 +21871,16 @@
"value": null,
"raw": "null",
"range": [
- 12125,
- 12129
+ 12390,
+ 12394
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 28
},
"end": {
- "line": 277,
+ "line": 283,
"column": 32
}
}
@@ -21400,16 +21892,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12131,
- 12140
+ 12396,
+ 12405
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 34
},
"end": {
- "line": 277,
+ "line": 283,
"column": 43
}
}
@@ -21419,31 +21911,31 @@
"value": 0,
"raw": "0",
"range": [
- 12141,
- 12142
+ 12406,
+ 12407
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 44
},
"end": {
- "line": 277,
+ "line": 283,
"column": 45
}
}
},
"range": [
- 12131,
- 12143
+ 12396,
+ 12408
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 34
},
"end": {
- "line": 277,
+ "line": 283,
"column": 46
}
}
@@ -21455,16 +21947,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12145,
- 12154
+ 12410,
+ 12419
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 48
},
"end": {
- "line": 277,
+ "line": 283,
"column": 57
}
}
@@ -21474,31 +21966,31 @@
"value": 1,
"raw": "1",
"range": [
- 12155,
- 12156
+ 12420,
+ 12421
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 58
},
"end": {
- "line": 277,
+ "line": 283,
"column": 59
}
}
},
"range": [
- 12145,
- 12157
+ 12410,
+ 12422
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 48
},
"end": {
- "line": 277,
+ "line": 283,
"column": 60
}
}
@@ -21510,16 +22002,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12159,
- 12168
+ 12424,
+ 12433
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 62
},
"end": {
- "line": 277,
+ "line": 283,
"column": 71
}
}
@@ -21529,110 +22021,110 @@
"value": 2,
"raw": "2",
"range": [
- 12169,
- 12170
+ 12434,
+ 12435
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 72
},
"end": {
- "line": 277,
+ "line": 283,
"column": 73
}
}
},
"range": [
- 12159,
- 12171
+ 12424,
+ 12436
],
"loc": {
"start": {
- "line": 277,
+ "line": 283,
"column": 62
},
"end": {
- "line": 277,
+ "line": 283,
"column": 74
}
}
}
],
"range": [
- 12087,
- 12172
+ 12352,
+ 12437
],
"loc": {
"start": {
- "line": 276,
+ "line": 282,
"column": 24
},
"end": {
- "line": 277,
+ "line": 283,
"column": 75
}
}
},
"range": [
- 12087,
- 12173
+ 12352,
+ 12438
],
"loc": {
"start": {
- "line": 276,
+ "line": 282,
"column": 24
},
"end": {
- "line": 277,
+ "line": 283,
"column": 76
}
}
}
],
"range": [
- 12061,
- 12195
+ 12326,
+ 12460
],
"loc": {
"start": {
- "line": 275,
+ "line": 281,
"column": 27
},
"end": {
- "line": 278,
+ "line": 284,
"column": 21
}
}
},
"alternate": null,
"range": [
- 12054,
- 12195
+ 12319,
+ 12460
],
"loc": {
"start": {
- "line": 275,
+ "line": 281,
"column": 20
},
"end": {
- "line": 278,
+ "line": 284,
"column": 21
}
}
}
],
"range": [
- 11951,
- 12213
+ 12216,
+ 12478
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 56
},
"end": {
- "line": 279,
+ "line": 285,
"column": 17
}
}
@@ -21640,46 +22132,46 @@
"generator": false,
"expression": false,
"range": [
- 11941,
- 12213
+ 12206,
+ 12478
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 46
},
"end": {
- "line": 279,
+ "line": 285,
"column": 17
}
}
},
"range": [
- 11911,
- 12213
+ 12176,
+ 12478
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 16
},
"end": {
- "line": 279,
+ "line": 285,
"column": 17
}
}
},
"range": [
- 11911,
- 12214
+ 12176,
+ 12479
],
"loc": {
"start": {
- "line": 273,
+ "line": 279,
"column": 16
},
"end": {
- "line": 279,
+ "line": 285,
"column": 18
}
}
@@ -21693,16 +22185,16 @@
"type": "Identifier",
"name": "fnC",
"range": [
- 12235,
- 12238
+ 12500,
+ 12503
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 20
},
"end": {
- "line": 280,
+ "line": 286,
"column": 23
}
}
@@ -21714,16 +22206,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 12241,
- 12244
+ 12506,
+ 12509
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 26
},
"end": {
- "line": 280,
+ "line": 286,
"column": 29
}
}
@@ -21732,46 +22224,46 @@
"type": "Identifier",
"name": "on_after_selected_cell",
"range": [
- 12245,
- 12267
+ 12510,
+ 12532
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 30
},
"end": {
- "line": 280,
+ "line": 286,
"column": 52
}
}
},
"range": [
- 12241,
- 12267
+ 12506,
+ 12532
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 26
},
"end": {
- "line": 280,
+ "line": 286,
"column": 52
}
}
},
"range": [
- 12235,
- 12267
+ 12500,
+ 12532
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 20
},
"end": {
- "line": 280,
+ "line": 286,
"column": 52
}
}
@@ -21779,16 +22271,16 @@
],
"kind": "var",
"range": [
- 12231,
- 12268
+ 12496,
+ 12533
],
"loc": {
"start": {
- "line": 280,
+ "line": 286,
"column": 16
},
"end": {
- "line": 280,
+ "line": 286,
"column": 53
}
}
@@ -21805,16 +22297,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 12285,
- 12288
+ 12550,
+ 12553
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 16
},
"end": {
- "line": 281,
+ "line": 287,
"column": 19
}
}
@@ -21823,31 +22315,31 @@
"type": "Identifier",
"name": "on_after_selected_cell",
"range": [
- 12289,
- 12311
+ 12554,
+ 12576
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 20
},
"end": {
- "line": 281,
+ "line": 287,
"column": 42
}
}
},
"range": [
- 12285,
- 12311
+ 12550,
+ 12576
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 16
},
"end": {
- "line": 281,
+ "line": 287,
"column": 42
}
}
@@ -21867,16 +22359,16 @@
"type": "Identifier",
"name": "onAfterSelection",
"range": [
- 12346,
- 12362
+ 12611,
+ 12627
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 20
},
"end": {
- "line": 282,
+ "line": 288,
"column": 36
}
}
@@ -21889,16 +22381,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12363,
- 12372
+ 12628,
+ 12637
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 37
},
"end": {
- "line": 282,
+ "line": 288,
"column": 46
}
}
@@ -21908,31 +22400,31 @@
"value": 0,
"raw": "0",
"range": [
- 12373,
- 12374
+ 12638,
+ 12639
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 47
},
"end": {
- "line": 282,
+ "line": 288,
"column": 48
}
}
},
"range": [
- 12363,
- 12375
+ 12628,
+ 12640
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 37
},
"end": {
- "line": 282,
+ "line": 288,
"column": 49
}
}
@@ -21944,16 +22436,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12377,
- 12386
+ 12642,
+ 12651
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 51
},
"end": {
- "line": 282,
+ "line": 288,
"column": 60
}
}
@@ -21963,31 +22455,31 @@
"value": 1,
"raw": "1",
"range": [
- 12387,
- 12388
+ 12652,
+ 12653
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 61
},
"end": {
- "line": 282,
+ "line": 288,
"column": 62
}
}
},
"range": [
- 12377,
- 12389
+ 12642,
+ 12654
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 51
},
"end": {
- "line": 282,
+ "line": 288,
"column": 63
}
}
@@ -21999,16 +22491,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12391,
- 12400
+ 12656,
+ 12665
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 65
},
"end": {
- "line": 282,
+ "line": 288,
"column": 74
}
}
@@ -22018,62 +22510,62 @@
"value": 2,
"raw": "2",
"range": [
- 12401,
- 12402
+ 12666,
+ 12667
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 75
},
"end": {
- "line": 282,
+ "line": 288,
"column": 76
}
}
},
"range": [
- 12391,
- 12403
+ 12656,
+ 12668
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 65
},
"end": {
- "line": 282,
+ "line": 288,
"column": 77
}
}
}
],
"range": [
- 12346,
- 12404
+ 12611,
+ 12669
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 20
},
"end": {
- "line": 282,
+ "line": 288,
"column": 78
}
}
},
"range": [
- 12346,
- 12405
+ 12611,
+ 12670
],
"loc": {
"start": {
- "line": 282,
+ "line": 288,
"column": 20
},
"end": {
- "line": 282,
+ "line": 288,
"column": 79
}
}
@@ -22084,16 +22576,16 @@
"type": "Identifier",
"name": "fnC",
"range": [
- 12429,
- 12432
+ 12694,
+ 12697
],
"loc": {
"start": {
- "line": 283,
+ "line": 289,
"column": 23
},
"end": {
- "line": 283,
+ "line": 289,
"column": 26
}
}
@@ -22112,16 +22604,16 @@
"type": "Identifier",
"name": "fnC",
"range": [
- 12459,
- 12462
+ 12724,
+ 12727
],
"loc": {
"start": {
- "line": 284,
+ "line": 290,
"column": 24
},
"end": {
- "line": 284,
+ "line": 290,
"column": 27
}
}
@@ -22130,31 +22622,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 12463,
- 12467
+ 12728,
+ 12732
],
"loc": {
"start": {
- "line": 284,
+ "line": 290,
"column": 28
},
"end": {
- "line": 284,
+ "line": 290,
"column": 32
}
}
},
"range": [
- 12459,
- 12467
+ 12724,
+ 12732
],
"loc": {
"start": {
- "line": 284,
+ "line": 290,
"column": 24
},
"end": {
- "line": 284,
+ "line": 290,
"column": 32
}
}
@@ -22165,16 +22657,16 @@
"value": null,
"raw": "null",
"range": [
- 12497,
- 12501
+ 12762,
+ 12766
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 28
},
"end": {
- "line": 285,
+ "line": 291,
"column": 32
}
}
@@ -22186,16 +22678,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12503,
- 12512
+ 12768,
+ 12777
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 34
},
"end": {
- "line": 285,
+ "line": 291,
"column": 43
}
}
@@ -22205,31 +22697,31 @@
"value": 0,
"raw": "0",
"range": [
- 12513,
- 12514
+ 12778,
+ 12779
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 44
},
"end": {
- "line": 285,
+ "line": 291,
"column": 45
}
}
},
"range": [
- 12503,
- 12515
+ 12768,
+ 12780
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 34
},
"end": {
- "line": 285,
+ "line": 291,
"column": 46
}
}
@@ -22241,16 +22733,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12517,
- 12526
+ 12782,
+ 12791
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 48
},
"end": {
- "line": 285,
+ "line": 291,
"column": 57
}
}
@@ -22260,31 +22752,31 @@
"value": 1,
"raw": "1",
"range": [
- 12527,
- 12528
+ 12792,
+ 12793
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 58
},
"end": {
- "line": 285,
+ "line": 291,
"column": 59
}
}
},
"range": [
- 12517,
- 12529
+ 12782,
+ 12794
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 48
},
"end": {
- "line": 285,
+ "line": 291,
"column": 60
}
}
@@ -22296,16 +22788,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 12531,
- 12540
+ 12796,
+ 12805
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 62
},
"end": {
- "line": 285,
+ "line": 291,
"column": 71
}
}
@@ -22315,110 +22807,110 @@
"value": 2,
"raw": "2",
"range": [
- 12541,
- 12542
+ 12806,
+ 12807
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 72
},
"end": {
- "line": 285,
+ "line": 291,
"column": 73
}
}
},
"range": [
- 12531,
- 12543
+ 12796,
+ 12808
],
"loc": {
"start": {
- "line": 285,
+ "line": 291,
"column": 62
},
"end": {
- "line": 285,
+ "line": 291,
"column": 74
}
}
}
],
"range": [
- 12459,
- 12544
+ 12724,
+ 12809
],
"loc": {
"start": {
- "line": 284,
+ "line": 290,
"column": 24
},
"end": {
- "line": 285,
+ "line": 291,
"column": 75
}
}
},
"range": [
- 12459,
- 12545
+ 12724,
+ 12810
],
"loc": {
"start": {
- "line": 284,
+ "line": 290,
"column": 24
},
"end": {
- "line": 285,
+ "line": 291,
"column": 76
}
}
}
],
"range": [
- 12433,
- 12567
+ 12698,
+ 12832
],
"loc": {
"start": {
- "line": 283,
+ "line": 289,
"column": 27
},
"end": {
- "line": 286,
+ "line": 292,
"column": 21
}
}
},
"alternate": null,
"range": [
- 12426,
- 12567
+ 12691,
+ 12832
],
"loc": {
"start": {
- "line": 283,
+ "line": 289,
"column": 20
},
"end": {
- "line": 286,
+ "line": 292,
"column": 21
}
}
}
],
"range": [
- 12324,
- 12585
+ 12589,
+ 12850
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 55
},
"end": {
- "line": 287,
+ "line": 293,
"column": 17
}
}
@@ -22426,77 +22918,77 @@
"generator": false,
"expression": false,
"range": [
- 12314,
- 12585
+ 12579,
+ 12850
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 45
},
"end": {
- "line": 287,
+ "line": 293,
"column": 17
}
}
},
"range": [
- 12285,
- 12585
+ 12550,
+ 12850
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 16
},
"end": {
- "line": 287,
+ "line": 293,
"column": 17
}
}
},
"range": [
- 12285,
- 12586
+ 12550,
+ 12851
],
"loc": {
"start": {
- "line": 281,
+ "line": 287,
"column": 16
},
"end": {
- "line": 287,
+ "line": 293,
"column": 18
}
}
}
],
"range": [
- 11838,
- 12600
+ 12103,
+ 12865
],
"loc": {
"start": {
- "line": 271,
+ "line": 277,
"column": 19
},
"end": {
- "line": 288,
+ "line": 294,
"column": 13
}
}
},
"range": [
- 11041,
- 12600
+ 11306,
+ 12865
],
"loc": {
"start": {
- "line": 254,
+ "line": 260,
"column": 12
},
"end": {
- "line": 288,
+ "line": 294,
"column": 13
}
},
@@ -22505,16 +22997,16 @@
"type": "Line",
"value": "Rows navigation when rows are filtered is performed with the",
"range": [
- 10912,
- 10974
+ 11177,
+ 11239
],
"loc": {
"start": {
- "line": 252,
+ "line": 258,
"column": 12
},
"end": {
- "line": 252,
+ "line": 258,
"column": 74
}
}
@@ -22523,16 +23015,16 @@
"type": "Line",
"value": "EditTable row selection callback events",
"range": [
- 10987,
- 11028
+ 11252,
+ 11293
],
"loc": {
"start": {
- "line": 253,
+ "line": 259,
"column": 12
},
"end": {
- "line": 253,
+ "line": 259,
"column": 53
}
}
@@ -22541,32 +23033,32 @@
}
],
"range": [
- 2851,
- 12610
+ 3116,
+ 12875
],
"loc": {
"start": {
- "line": 82,
+ "line": 88,
"column": 22
},
"end": {
- "line": 289,
+ "line": 295,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2837,
- 12610
+ 3102,
+ 12875
],
"loc": {
"start": {
- "line": 82,
+ "line": 88,
"column": 8
},
"end": {
- "line": 289,
+ "line": 295,
"column": 9
}
}
@@ -22577,16 +23069,16 @@
"type": "Identifier",
"name": "editable",
"range": [
- 12622,
- 12630
+ 12887,
+ 12895
],
"loc": {
"start": {
- "line": 290,
+ "line": 296,
"column": 11
},
"end": {
- "line": 290,
+ "line": 296,
"column": 19
}
}
@@ -22603,16 +23095,16 @@
"type": "Identifier",
"name": "fnE",
"range": [
- 12727,
- 12730
+ 12992,
+ 12995
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 16
},
"end": {
- "line": 292,
+ "line": 298,
"column": 19
}
}
@@ -22624,16 +23116,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 12733,
- 12736
+ 12998,
+ 13001
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 22
},
"end": {
- "line": 292,
+ "line": 298,
"column": 25
}
}
@@ -22642,46 +23134,46 @@
"type": "Identifier",
"name": "on_added_dom_row",
"range": [
- 12737,
- 12753
+ 13002,
+ 13018
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 26
},
"end": {
- "line": 292,
+ "line": 298,
"column": 42
}
}
},
"range": [
- 12733,
- 12753
+ 12998,
+ 13018
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 22
},
"end": {
- "line": 292,
+ "line": 298,
"column": 42
}
}
},
"range": [
- 12727,
- 12753
+ 12992,
+ 13018
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 16
},
"end": {
- "line": 292,
+ "line": 298,
"column": 42
}
}
@@ -22689,16 +23181,16 @@
],
"kind": "var",
"range": [
- 12723,
- 12754
+ 12988,
+ 13019
],
"loc": {
"start": {
- "line": 292,
+ "line": 298,
"column": 12
},
"end": {
- "line": 292,
+ "line": 298,
"column": 43
}
},
@@ -22707,16 +23199,16 @@
"type": "Line",
"value": "Added or removed rows, TF rows number needs to be re-calculated",
"range": [
- 12645,
- 12710
+ 12910,
+ 12975
],
"loc": {
"start": {
- "line": 291,
+ "line": 297,
"column": 12
},
"end": {
- "line": 291,
+ "line": 297,
"column": 77
}
}
@@ -22735,16 +23227,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 12767,
- 12770
+ 13032,
+ 13035
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 12
},
"end": {
- "line": 293,
+ "line": 299,
"column": 15
}
}
@@ -22753,31 +23245,31 @@
"type": "Identifier",
"name": "on_added_dom_row",
"range": [
- 12771,
- 12787
+ 13036,
+ 13052
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 16
},
"end": {
- "line": 293,
+ "line": 299,
"column": 32
}
}
},
"range": [
- 12767,
- 12787
+ 13032,
+ 13052
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 12
},
"end": {
- "line": 293,
+ "line": 299,
"column": 32
}
}
@@ -22801,16 +23293,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12818,
- 12820
+ 13083,
+ 13085
],
"loc": {
"start": {
- "line": 294,
+ "line": 300,
"column": 16
},
"end": {
- "line": 294,
+ "line": 300,
"column": 18
}
}
@@ -22819,62 +23311,62 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 12821,
- 12837
+ 13086,
+ 13102
],
"loc": {
"start": {
- "line": 294,
+ "line": 300,
"column": 19
},
"end": {
- "line": 294,
+ "line": 300,
"column": 35
}
}
},
"range": [
- 12818,
- 12837
+ 13083,
+ 13102
],
"loc": {
"start": {
- "line": 294,
+ "line": 300,
"column": 16
},
"end": {
- "line": 294,
+ "line": 300,
"column": 35
}
}
},
"prefix": false,
"range": [
- 12818,
- 12839
+ 13083,
+ 13104
],
"loc": {
"start": {
- "line": 294,
+ "line": 300,
"column": 16
},
"end": {
- "line": 294,
+ "line": 300,
"column": 37
}
}
},
"range": [
- 12818,
- 12840
+ 13083,
+ 13105
],
"loc": {
"start": {
- "line": 294,
+ "line": 300,
"column": 16
},
"end": {
- "line": 294,
+ "line": 300,
"column": 38
}
}
@@ -22891,16 +23383,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12861,
- 12863
+ 13126,
+ 13128
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 20
},
"end": {
- "line": 295,
+ "line": 301,
"column": 22
}
}
@@ -22909,47 +23401,47 @@
"type": "Identifier",
"name": "paging",
"range": [
- 12864,
- 12870
+ 13129,
+ 13135
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 23
},
"end": {
- "line": 295,
+ "line": 301,
"column": 29
}
}
},
"range": [
- 12861,
- 12870
+ 13126,
+ 13135
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 20
},
"end": {
- "line": 295,
+ "line": 301,
"column": 29
}
}
},
"prefix": true,
"range": [
- 12860,
- 12870
+ 13125,
+ 13135
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 19
},
"end": {
- "line": 295,
+ "line": 301,
"column": 29
}
}
@@ -22965,173 +23457,210 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 12893,
- 12895
- ],
- "loc": {
- "start": {
- "line": 296,
- "column": 20
- },
- "end": {
- "line": 296,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 12896,
- 12903
- ],
- "loc": {
- "start": {
- "line": 296,
- "column": 23
- },
- "end": {
- "line": 296,
- "column": 30
- }
- }
- },
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 12893,
- 12903
+ 13158,
+ 13160
],
"loc": {
"start": {
- "line": 296,
+ "line": 302,
"column": 20
},
"end": {
- "line": 296,
+ "line": 302,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 13161,
+ 13168
+ ],
+ "loc": {
+ "start": {
+ "line": 302,
+ "column": 23
+ },
+ "end": {
+ "line": 302,
"column": 30
}
}
},
- "arguments": [
- {
- "type": "Literal",
- "value": "rowsCounter",
- "raw": "'rowsCounter'",
- "range": [
- 12904,
- 12917
- ],
- "loc": {
- "start": {
- "line": 296,
- "column": 31
- },
- "end": {
- "line": 296,
- "column": 44
- }
- }
- }
- ],
"range": [
- 12893,
- 12918
+ 13158,
+ 13168
],
"loc": {
"start": {
- "line": 296,
+ "line": 302,
"column": 20
},
"end": {
- "line": 296,
- "column": 45
+ "line": 302,
+ "column": 30
}
}
},
"property": {
"type": "Identifier",
- "name": "refresh",
+ "name": "emit",
"range": [
- 12919,
- 12926
+ 13169,
+ 13173
],
"loc": {
"start": {
- "line": 296,
- "column": 46
+ "line": 302,
+ "column": 31
},
"end": {
- "line": 296,
- "column": 53
+ "line": 302,
+ "column": 35
}
}
},
"range": [
- 12893,
- 12926
+ 13158,
+ 13173
],
"loc": {
"start": {
- "line": 296,
+ "line": 302,
"column": 20
},
"end": {
- "line": 296,
- "column": 53
+ "line": 302,
+ "column": 35
}
}
},
- "arguments": [],
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "rows-changed",
+ "raw": "'rows-changed'",
+ "range": [
+ 13174,
+ 13188
+ ],
+ "loc": {
+ "start": {
+ "line": 302,
+ "column": 36
+ },
+ "end": {
+ "line": 302,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 13190,
+ 13192
+ ],
+ "loc": {
+ "start": {
+ "line": 302,
+ "column": 52
+ },
+ "end": {
+ "line": 302,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 13194,
+ 13198
+ ],
+ "loc": {
+ "start": {
+ "line": 302,
+ "column": 56
+ },
+ "end": {
+ "line": 302,
+ "column": 60
+ }
+ }
+ }
+ ],
"range": [
- 12893,
- 12928
+ 13158,
+ 13199
],
"loc": {
"start": {
- "line": 296,
+ "line": 302,
"column": 20
},
"end": {
- "line": 296,
- "column": 55
+ "line": 302,
+ "column": 61
}
}
},
"range": [
- 12893,
- 12929
+ 13158,
+ 13200
],
"loc": {
"start": {
- "line": 296,
+ "line": 302,
"column": 20
},
"end": {
- "line": 296,
- "column": 56
+ "line": 302,
+ "column": 62
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "tf.feature('rowsCounter').refresh();",
+ "range": [
+ 13221,
+ 13259
+ ],
+ "loc": {
+ "start": {
+ "line": 303,
+ "column": 20
+ },
+ "end": {
+ "line": 303,
+ "column": 58
+ }
+ }
+ }
+ ]
}
],
"range": [
- 12871,
- 12947
+ 13136,
+ 13277
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 30
},
"end": {
- "line": 297,
+ "line": 304,
"column": 17
}
}
@@ -23151,16 +23680,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12975,
- 12977
+ 13305,
+ 13307
],
"loc": {
"start": {
- "line": 298,
+ "line": 305,
"column": 20
},
"end": {
- "line": 298,
+ "line": 305,
"column": 22
}
}
@@ -23169,62 +23698,62 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 12978,
- 12984
+ 13308,
+ 13314
],
"loc": {
"start": {
- "line": 298,
+ "line": 305,
"column": 23
},
"end": {
- "line": 298,
+ "line": 305,
"column": 29
}
}
},
"range": [
- 12975,
- 12984
+ 13305,
+ 13314
],
"loc": {
"start": {
- "line": 298,
+ "line": 305,
"column": 20
},
"end": {
- "line": 298,
+ "line": 305,
"column": 29
}
}
},
"prefix": false,
"range": [
- 12975,
- 12986
+ 13305,
+ 13316
],
"loc": {
"start": {
- "line": 298,
+ "line": 305,
"column": 20
},
"end": {
- "line": 298,
+ "line": 305,
"column": 31
}
}
},
"range": [
- 12975,
- 12987
+ 13305,
+ 13317
],
"loc": {
"start": {
- "line": 298,
+ "line": 305,
"column": 20
},
"end": {
- "line": 298,
+ "line": 305,
"column": 32
}
}
@@ -23241,16 +23770,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13008,
- 13010
+ 13338,
+ 13340
],
"loc": {
"start": {
- "line": 299,
+ "line": 306,
"column": 20
},
"end": {
- "line": 299,
+ "line": 306,
"column": 22
}
}
@@ -23259,62 +23788,62 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 13011,
- 13024
+ 13341,
+ 13354
],
"loc": {
"start": {
- "line": 299,
+ "line": 306,
"column": 23
},
"end": {
- "line": 299,
+ "line": 306,
"column": 36
}
}
},
"range": [
- 13008,
- 13024
+ 13338,
+ 13354
],
"loc": {
"start": {
- "line": 299,
+ "line": 306,
"column": 20
},
"end": {
- "line": 299,
+ "line": 306,
"column": 36
}
}
},
"prefix": false,
"range": [
- 13008,
- 13026
+ 13338,
+ 13356
],
"loc": {
"start": {
- "line": 299,
+ "line": 306,
"column": 20
},
"end": {
- "line": 299,
+ "line": 306,
"column": 38
}
}
},
"range": [
- 13008,
- 13027
+ 13338,
+ 13357
],
"loc": {
"start": {
- "line": 299,
+ "line": 306,
"column": 20
},
"end": {
- "line": 299,
+ "line": 306,
"column": 39
}
}
@@ -23331,16 +23860,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13048,
- 13050
+ 13378,
+ 13380
],
"loc": {
"start": {
- "line": 300,
+ "line": 307,
"column": 20
},
"end": {
- "line": 300,
+ "line": 307,
"column": 22
}
}
@@ -23349,62 +23878,62 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 13051,
- 13067
+ 13381,
+ 13397
],
"loc": {
"start": {
- "line": 300,
+ "line": 307,
"column": 23
},
"end": {
- "line": 300,
+ "line": 307,
"column": 39
}
}
},
"range": [
- 13048,
- 13067
+ 13378,
+ 13397
],
"loc": {
"start": {
- "line": 300,
+ "line": 307,
"column": 20
},
"end": {
- "line": 300,
+ "line": 307,
"column": 39
}
}
},
"prefix": false,
"range": [
- 13048,
- 13069
+ 13378,
+ 13399
],
"loc": {
"start": {
- "line": 300,
+ "line": 307,
"column": 20
},
"end": {
- "line": 300,
+ "line": 307,
"column": 41
}
}
},
"range": [
- 13048,
- 13070
+ 13378,
+ 13400
],
"loc": {
"start": {
- "line": 300,
+ "line": 307,
"column": 20
},
"end": {
- "line": 300,
+ "line": 307,
"column": 42
}
}
@@ -23421,16 +23950,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13091,
- 13093
+ 13421,
+ 13423
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 20
},
"end": {
- "line": 301,
+ "line": 308,
"column": 22
}
}
@@ -23439,31 +23968,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 13094,
- 13100
+ 13424,
+ 13430
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 23
},
"end": {
- "line": 301,
+ "line": 308,
"column": 29
}
}
},
"range": [
- 13091,
- 13100
+ 13421,
+ 13430
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 20
},
"end": {
- "line": 301,
+ "line": 308,
"column": 29
}
}
@@ -23473,46 +24002,46 @@
"value": false,
"raw": "false",
"range": [
- 13101,
- 13106
+ 13431,
+ 13436
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 30
},
"end": {
- "line": 301,
+ "line": 308,
"column": 35
}
}
},
"range": [
- 13091,
- 13106
+ 13421,
+ 13436
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 20
},
"end": {
- "line": 301,
+ "line": 308,
"column": 35
}
}
},
"range": [
- 13091,
- 13107
+ 13421,
+ 13437
],
"loc": {
"start": {
- "line": 301,
+ "line": 308,
"column": 20
},
"end": {
- "line": 301,
+ "line": 308,
"column": 36
}
}
@@ -23533,16 +24062,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13128,
- 13130
+ 13458,
+ 13460
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 22
}
}
@@ -23551,31 +24080,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 13131,
- 13138
+ 13461,
+ 13468
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 23
},
"end": {
- "line": 302,
+ "line": 309,
"column": 30
}
}
},
"range": [
- 13128,
- 13138
+ 13458,
+ 13468
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 30
}
}
@@ -23586,32 +24115,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 13139,
- 13147
+ 13469,
+ 13477
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 31
},
"end": {
- "line": 302,
+ "line": 309,
"column": 39
}
}
}
],
"range": [
- 13128,
- 13148
+ 13458,
+ 13478
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 40
}
}
@@ -23620,62 +24149,62 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 13149,
- 13156
+ 13479,
+ 13486
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 41
},
"end": {
- "line": 302,
+ "line": 309,
"column": 48
}
}
},
"range": [
- 13128,
- 13156
+ 13458,
+ 13486
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 48
}
}
},
"arguments": [],
"range": [
- 13128,
- 13158
+ 13458,
+ 13488
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 50
}
}
},
"range": [
- 13128,
- 13159
+ 13458,
+ 13489
],
"loc": {
"start": {
- "line": 302,
+ "line": 309,
"column": 20
},
"end": {
- "line": 302,
+ "line": 309,
"column": 51
}
}
@@ -23696,16 +24225,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13180,
- 13182
+ 13510,
+ 13512
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 20
},
"end": {
- "line": 303,
+ "line": 310,
"column": 22
}
}
@@ -23714,31 +24243,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 13183,
- 13190
+ 13513,
+ 13520
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 23
},
"end": {
- "line": 303,
+ "line": 310,
"column": 30
}
}
},
"range": [
- 13180,
- 13190
+ 13510,
+ 13520
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 20
},
"end": {
- "line": 303,
+ "line": 310,
"column": 30
}
}
@@ -23749,32 +24278,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 13191,
- 13199
+ 13521,
+ 13529
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 31
},
"end": {
- "line": 303,
+ "line": 310,
"column": 39
}
}
}
],
"range": [
- 13180,
- 13200
+ 13510,
+ 13530
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 20
},
"end": {
- "line": 303,
+ "line": 310,
"column": 40
}
}
@@ -23783,54 +24312,88 @@
"type": "Identifier",
"name": "reset",
"range": [
- 13201,
- 13206
+ 13531,
+ 13536
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 41
},
"end": {
- "line": 303,
+ "line": 310,
"column": 46
}
}
},
"range": [
- 13180,
- 13206
+ 13510,
+ 13536
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 20
},
"end": {
- "line": 303,
+ "line": 310,
"column": 46
}
}
},
"arguments": [],
"range": [
- 13180,
- 13208
+ 13510,
+ 13538
],
"loc": {
"start": {
- "line": 303,
+ "line": 310,
"column": 20
},
"end": {
- "line": 303,
+ "line": 310,
"column": 48
}
}
},
"range": [
- 13180,
- 13209
+ 13510,
+ 13539
+ ],
+ "loc": {
+ "start": {
+ "line": 310,
+ "column": 20
+ },
+ "end": {
+ "line": 310,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 13283,
+ 13557
+ ],
+ "loc": {
+ "start": {
+ "line": 304,
+ "column": 23
+ },
+ "end": {
+ "line": 311,
+ "column": 17
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "tf.feature('rowsCounter').refresh();",
+ "range": [
+ 13221,
+ 13259
],
"loc": {
"start": {
@@ -23839,37 +24402,23 @@
},
"end": {
"line": 303,
- "column": 49
+ "column": 58
}
}
}
- ],
- "range": [
- 12953,
- 13227
- ],
- "loc": {
- "start": {
- "line": 297,
- "column": 23
- },
- "end": {
- "line": 304,
- "column": 17
- }
- }
+ ]
},
"range": [
- 12857,
- 13227
+ 13122,
+ 13557
],
"loc": {
"start": {
- "line": 295,
+ "line": 301,
"column": 16
},
"end": {
- "line": 304,
+ "line": 311,
"column": 17
}
}
@@ -23883,16 +24432,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13247,
- 13249
+ 13577,
+ 13579
],
"loc": {
"start": {
- "line": 305,
+ "line": 312,
"column": 19
},
"end": {
- "line": 305,
+ "line": 312,
"column": 21
}
}
@@ -23901,31 +24450,31 @@
"type": "Identifier",
"name": "alternateRows",
"range": [
- 13250,
- 13263
+ 13580,
+ 13593
],
"loc": {
"start": {
- "line": 305,
+ "line": 312,
"column": 22
},
"end": {
- "line": 305,
+ "line": 312,
"column": 35
}
}
},
"range": [
- 13247,
- 13263
+ 13577,
+ 13593
],
"loc": {
"start": {
- "line": 305,
+ "line": 312,
"column": 19
},
"end": {
- "line": 305,
+ "line": 312,
"column": 35
}
}
@@ -23949,16 +24498,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13286,
- 13288
+ 13616,
+ 13618
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 22
}
}
@@ -23967,31 +24516,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 13289,
- 13296
+ 13619,
+ 13626
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 23
},
"end": {
- "line": 306,
+ "line": 313,
"column": 30
}
}
},
"range": [
- 13286,
- 13296
+ 13616,
+ 13626
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 30
}
}
@@ -24002,32 +24551,32 @@
"value": "alternateRows",
"raw": "'alternateRows'",
"range": [
- 13297,
- 13312
+ 13627,
+ 13642
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 31
},
"end": {
- "line": 306,
+ "line": 313,
"column": 46
}
}
}
],
"range": [
- 13286,
- 13313
+ 13616,
+ 13643
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 47
}
}
@@ -24036,94 +24585,94 @@
"type": "Identifier",
"name": "init",
"range": [
- 13314,
- 13318
+ 13644,
+ 13648
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 48
},
"end": {
- "line": 306,
+ "line": 313,
"column": 52
}
}
},
"range": [
- 13286,
- 13318
+ 13616,
+ 13648
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 52
}
}
},
"arguments": [],
"range": [
- 13286,
- 13320
+ 13616,
+ 13650
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 54
}
}
},
"range": [
- 13286,
- 13321
+ 13616,
+ 13651
],
"loc": {
"start": {
- "line": 306,
+ "line": 313,
"column": 20
},
"end": {
- "line": 306,
+ "line": 313,
"column": 55
}
}
}
],
"range": [
- 13264,
- 13339
+ 13594,
+ 13669
],
"loc": {
"start": {
- "line": 305,
+ "line": 312,
"column": 36
},
"end": {
- "line": 307,
+ "line": 314,
"column": 17
}
}
},
"alternate": null,
"range": [
- 13244,
- 13339
+ 13574,
+ 13669
],
"loc": {
"start": {
- "line": 305,
+ "line": 312,
"column": 16
},
"end": {
- "line": 307,
+ "line": 314,
"column": 17
}
}
@@ -24134,16 +24683,16 @@
"type": "Identifier",
"name": "fnE",
"range": [
- 13359,
- 13362
+ 13689,
+ 13692
],
"loc": {
"start": {
- "line": 308,
+ "line": 315,
"column": 19
},
"end": {
- "line": 308,
+ "line": 315,
"column": 22
}
}
@@ -24162,16 +24711,16 @@
"type": "Identifier",
"name": "fnE",
"range": [
- 13385,
- 13388
+ 13715,
+ 13718
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 20
},
"end": {
- "line": 309,
+ "line": 316,
"column": 23
}
}
@@ -24180,31 +24729,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 13389,
- 13393
+ 13719,
+ 13723
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 24
},
"end": {
- "line": 309,
+ "line": 316,
"column": 28
}
}
},
"range": [
- 13385,
- 13393
+ 13715,
+ 13723
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 20
},
"end": {
- "line": 309,
+ "line": 316,
"column": 28
}
}
@@ -24215,16 +24764,16 @@
"value": null,
"raw": "null",
"range": [
- 13394,
- 13398
+ 13724,
+ 13728
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 29
},
"end": {
- "line": 309,
+ "line": 316,
"column": 33
}
}
@@ -24236,16 +24785,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 13400,
- 13409
+ 13730,
+ 13739
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 35
},
"end": {
- "line": 309,
+ "line": 316,
"column": 44
}
}
@@ -24255,31 +24804,31 @@
"value": 0,
"raw": "0",
"range": [
- 13410,
- 13411
+ 13740,
+ 13741
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 45
},
"end": {
- "line": 309,
+ "line": 316,
"column": 46
}
}
},
"range": [
- 13400,
- 13412
+ 13730,
+ 13742
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 35
},
"end": {
- "line": 309,
+ "line": 316,
"column": 47
}
}
@@ -24291,16 +24840,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 13414,
- 13423
+ 13744,
+ 13753
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 49
},
"end": {
- "line": 309,
+ "line": 316,
"column": 58
}
}
@@ -24310,31 +24859,31 @@
"value": 1,
"raw": "1",
"range": [
- 13424,
- 13425
+ 13754,
+ 13755
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 59
},
"end": {
- "line": 309,
+ "line": 316,
"column": 60
}
}
},
"range": [
- 13414,
- 13426
+ 13744,
+ 13756
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 49
},
"end": {
- "line": 309,
+ "line": 316,
"column": 61
}
}
@@ -24346,16 +24895,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 13428,
- 13437
+ 13758,
+ 13767
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 63
},
"end": {
- "line": 309,
+ "line": 316,
"column": 72
}
}
@@ -24365,110 +24914,110 @@
"value": 2,
"raw": "2",
"range": [
- 13438,
- 13439
+ 13768,
+ 13769
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 73
},
"end": {
- "line": 309,
+ "line": 316,
"column": 74
}
}
},
"range": [
- 13428,
- 13440
+ 13758,
+ 13770
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 63
},
"end": {
- "line": 309,
+ "line": 316,
"column": 75
}
}
}
],
"range": [
- 13385,
- 13441
+ 13715,
+ 13771
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 20
},
"end": {
- "line": 309,
+ "line": 316,
"column": 76
}
}
},
"range": [
- 13385,
- 13442
+ 13715,
+ 13772
],
"loc": {
"start": {
- "line": 309,
+ "line": 316,
"column": 20
},
"end": {
- "line": 309,
+ "line": 316,
"column": 77
}
}
}
],
"range": [
- 13363,
- 13460
+ 13693,
+ 13790
],
"loc": {
"start": {
- "line": 308,
+ "line": 315,
"column": 23
},
"end": {
- "line": 310,
+ "line": 317,
"column": 17
}
}
},
"alternate": null,
"range": [
- 13356,
- 13460
+ 13686,
+ 13790
],
"loc": {
"start": {
- "line": 308,
+ "line": 315,
"column": 16
},
"end": {
- "line": 310,
+ "line": 317,
"column": 17
}
}
}
],
"range": [
- 12800,
- 13474
+ 13065,
+ 13804
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 45
},
"end": {
- "line": 311,
+ "line": 318,
"column": 13
}
}
@@ -24476,46 +25025,46 @@
"generator": false,
"expression": false,
"range": [
- 12790,
- 13474
+ 13055,
+ 13804
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 35
},
"end": {
- "line": 311,
+ "line": 318,
"column": 13
}
}
},
"range": [
- 12767,
- 13474
+ 13032,
+ 13804
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 12
},
"end": {
- "line": 311,
+ "line": 318,
"column": 13
}
}
},
"range": [
- 12767,
- 13475
+ 13032,
+ 13805
],
"loc": {
"start": {
- "line": 293,
+ "line": 299,
"column": 12
},
"end": {
- "line": 311,
+ "line": 318,
"column": 14
}
}
@@ -24532,16 +25081,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 13491,
- 13494
+ 13821,
+ 13824
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 15
},
"end": {
- "line": 312,
+ "line": 319,
"column": 18
}
}
@@ -24550,31 +25099,31 @@
"type": "Identifier",
"name": "actions",
"range": [
- 13495,
- 13502
+ 13825,
+ 13832
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 19
},
"end": {
- "line": 312,
+ "line": 319,
"column": 26
}
}
},
"range": [
- 13491,
- 13502
+ 13821,
+ 13832
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 15
},
"end": {
- "line": 312,
+ "line": 319,
"column": 26
}
}
@@ -24589,16 +25138,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 13506,
- 13509
+ 13836,
+ 13839
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 30
},
"end": {
- "line": 312,
+ "line": 319,
"column": 33
}
}
@@ -24607,31 +25156,31 @@
"type": "Identifier",
"name": "actions",
"range": [
- 13510,
- 13517
+ 13840,
+ 13847
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 34
},
"end": {
- "line": 312,
+ "line": 319,
"column": 41
}
}
},
"range": [
- 13506,
- 13517
+ 13836,
+ 13847
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 30
},
"end": {
- "line": 312,
+ "line": 319,
"column": 41
}
}
@@ -24641,46 +25190,46 @@
"value": "delete",
"raw": "'delete'",
"range": [
- 13518,
- 13526
+ 13848,
+ 13856
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 42
},
"end": {
- "line": 312,
+ "line": 319,
"column": 50
}
}
},
"range": [
- 13506,
- 13527
+ 13836,
+ 13857
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 30
},
"end": {
- "line": 312,
+ "line": 319,
"column": 51
}
}
},
"range": [
- 13491,
- 13527
+ 13821,
+ 13857
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 15
},
"end": {
- "line": 312,
+ "line": 319,
"column": 51
}
}
@@ -24697,16 +25246,16 @@
"type": "Identifier",
"name": "fnF",
"range": [
- 13550,
- 13553
+ 13880,
+ 13883
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 20
},
"end": {
- "line": 313,
+ "line": 320,
"column": 23
}
}
@@ -24724,16 +25273,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 13556,
- 13559
+ 13886,
+ 13889
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 26
},
"end": {
- "line": 313,
+ "line": 320,
"column": 29
}
}
@@ -24742,31 +25291,31 @@
"type": "Identifier",
"name": "actions",
"range": [
- 13560,
- 13567
+ 13890,
+ 13897
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 30
},
"end": {
- "line": 313,
+ "line": 320,
"column": 37
}
}
},
"range": [
- 13556,
- 13567
+ 13886,
+ 13897
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 26
},
"end": {
- "line": 313,
+ "line": 320,
"column": 37
}
}
@@ -24776,31 +25325,31 @@
"value": "delete",
"raw": "'delete'",
"range": [
- 13568,
- 13576
+ 13898,
+ 13906
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 38
},
"end": {
- "line": 313,
+ "line": 320,
"column": 46
}
}
},
"range": [
- 13556,
- 13577
+ 13886,
+ 13907
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 26
},
"end": {
- "line": 313,
+ "line": 320,
"column": 47
}
}
@@ -24809,46 +25358,46 @@
"type": "Identifier",
"name": "on_after_submit",
"range": [
- 13578,
- 13593
+ 13908,
+ 13923
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 48
},
"end": {
- "line": 313,
+ "line": 320,
"column": 63
}
}
},
"range": [
- 13556,
- 13593
+ 13886,
+ 13923
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 26
},
"end": {
- "line": 313,
+ "line": 320,
"column": 63
}
}
},
"range": [
- 13550,
- 13593
+ 13880,
+ 13923
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 20
},
"end": {
- "line": 313,
+ "line": 320,
"column": 63
}
}
@@ -24856,16 +25405,16 @@
],
"kind": "var",
"range": [
- 13546,
- 13594
+ 13876,
+ 13924
],
"loc": {
"start": {
- "line": 313,
+ "line": 320,
"column": 16
},
"end": {
- "line": 313,
+ "line": 320,
"column": 64
}
}
@@ -24888,16 +25437,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 13611,
- 13614
+ 13941,
+ 13944
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 314,
+ "line": 321,
"column": 19
}
}
@@ -24906,31 +25455,31 @@
"type": "Identifier",
"name": "actions",
"range": [
- 13615,
- 13622
+ 13945,
+ 13952
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 20
},
"end": {
- "line": 314,
+ "line": 321,
"column": 27
}
}
},
"range": [
- 13611,
- 13622
+ 13941,
+ 13952
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 314,
+ "line": 321,
"column": 27
}
}
@@ -24940,31 +25489,31 @@
"value": "delete",
"raw": "'delete'",
"range": [
- 13623,
- 13631
+ 13953,
+ 13961
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 28
},
"end": {
- "line": 314,
+ "line": 321,
"column": 36
}
}
},
"range": [
- 13611,
- 13632
+ 13941,
+ 13962
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 314,
+ "line": 321,
"column": 37
}
}
@@ -24973,31 +25522,31 @@
"type": "Identifier",
"name": "on_after_submit",
"range": [
- 13633,
- 13648
+ 13963,
+ 13978
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 38
},
"end": {
- "line": 314,
+ "line": 321,
"column": 53
}
}
},
"range": [
- 13611,
- 13648
+ 13941,
+ 13978
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 314,
+ "line": 321,
"column": 53
}
}
@@ -25021,16 +25570,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13683,
- 13685
+ 14013,
+ 14015
],
"loc": {
"start": {
- "line": 315,
+ "line": 322,
"column": 20
},
"end": {
- "line": 315,
+ "line": 322,
"column": 22
}
}
@@ -25039,62 +25588,62 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 13686,
- 13702
+ 14016,
+ 14032
],
"loc": {
"start": {
- "line": 315,
+ "line": 322,
"column": 23
},
"end": {
- "line": 315,
+ "line": 322,
"column": 39
}
}
},
"range": [
- 13683,
- 13702
+ 14013,
+ 14032
],
"loc": {
"start": {
- "line": 315,
+ "line": 322,
"column": 20
},
"end": {
- "line": 315,
+ "line": 322,
"column": 39
}
}
},
"prefix": false,
"range": [
- 13683,
- 13704
+ 14013,
+ 14034
],
"loc": {
"start": {
- "line": 315,
+ "line": 322,
"column": 20
},
"end": {
- "line": 315,
+ "line": 322,
"column": 41
}
}
},
"range": [
- 13683,
- 13705
+ 14013,
+ 14035
],
"loc": {
"start": {
- "line": 315,
+ "line": 322,
"column": 20
},
"end": {
- "line": 315,
+ "line": 322,
"column": 42
}
}
@@ -25111,16 +25660,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13730,
- 13732
+ 14060,
+ 14062
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 24
},
"end": {
- "line": 316,
+ "line": 323,
"column": 26
}
}
@@ -25129,47 +25678,47 @@
"type": "Identifier",
"name": "paging",
"range": [
- 13733,
- 13739
+ 14063,
+ 14069
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 27
},
"end": {
- "line": 316,
+ "line": 323,
"column": 33
}
}
},
"range": [
- 13730,
- 13739
+ 14060,
+ 14069
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 24
},
"end": {
- "line": 316,
+ "line": 323,
"column": 33
}
}
},
"prefix": true,
"range": [
- 13729,
- 13739
+ 14059,
+ 14069
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 23
},
"end": {
- "line": 316,
+ "line": 323,
"column": 33
}
}
@@ -25185,173 +25734,210 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 13766,
- 13768
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 24
- },
- "end": {
- "line": 317,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 13769,
- 13776
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 27
- },
- "end": {
- "line": 317,
- "column": 34
- }
- }
- },
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 13766,
- 13776
+ 14160,
+ 14162
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 24
},
"end": {
- "line": 317,
+ "line": 325,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 14163,
+ 14170
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 27
+ },
+ "end": {
+ "line": 325,
"column": 34
}
}
},
- "arguments": [
- {
- "type": "Literal",
- "value": "rowsCounter",
- "raw": "'rowsCounter'",
- "range": [
- 13777,
- 13790
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 35
- },
- "end": {
- "line": 317,
- "column": 48
- }
- }
- }
- ],
"range": [
- 13766,
- 13791
+ 14160,
+ 14170
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 24
},
"end": {
- "line": 317,
- "column": 49
+ "line": 325,
+ "column": 34
}
}
},
"property": {
"type": "Identifier",
- "name": "refresh",
+ "name": "emit",
"range": [
- 13792,
- 13799
+ 14171,
+ 14175
],
"loc": {
"start": {
- "line": 317,
- "column": 50
+ "line": 325,
+ "column": 35
},
"end": {
- "line": 317,
- "column": 57
+ "line": 325,
+ "column": 39
}
}
},
"range": [
- 13766,
- 13799
+ 14160,
+ 14175
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 24
},
"end": {
- "line": 317,
- "column": 57
+ "line": 325,
+ "column": 39
}
}
},
- "arguments": [],
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "rows-changed",
+ "raw": "'rows-changed'",
+ "range": [
+ 14176,
+ 14190
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 40
+ },
+ "end": {
+ "line": 325,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 14192,
+ 14194
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 56
+ },
+ "end": {
+ "line": 325,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 14196,
+ 14200
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 60
+ },
+ "end": {
+ "line": 325,
+ "column": 64
+ }
+ }
+ }
+ ],
"range": [
- 13766,
- 13801
+ 14160,
+ 14201
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 24
},
"end": {
- "line": 317,
- "column": 59
+ "line": 325,
+ "column": 65
}
}
},
"range": [
- 13766,
- 13802
+ 14160,
+ 14202
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 24
},
"end": {
- "line": 317,
- "column": 60
+ "line": 325,
+ "column": 66
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " tf.feature('rowsCounter').refresh();",
+ "range": [
+ 14096,
+ 14135
+ ],
+ "loc": {
+ "start": {
+ "line": 324,
+ "column": 24
+ },
+ "end": {
+ "line": 324,
+ "column": 63
+ }
+ }
+ }
+ ]
}
],
"range": [
- 13740,
- 13824
+ 14070,
+ 14224
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 34
},
"end": {
- "line": 318,
+ "line": 326,
"column": 21
}
}
@@ -25371,16 +25957,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13856,
- 13858
+ 14256,
+ 14258
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 24
},
"end": {
- "line": 319,
+ "line": 327,
"column": 26
}
}
@@ -25389,62 +25975,62 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 13859,
- 13865
+ 14259,
+ 14265
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 27
},
"end": {
- "line": 319,
+ "line": 327,
"column": 33
}
}
},
"range": [
- 13856,
- 13865
+ 14256,
+ 14265
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 24
},
"end": {
- "line": 319,
+ "line": 327,
"column": 33
}
}
},
"prefix": false,
"range": [
- 13856,
- 13867
+ 14256,
+ 14267
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 24
},
"end": {
- "line": 319,
+ "line": 327,
"column": 35
}
}
},
"range": [
- 13856,
- 13868
+ 14256,
+ 14268
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 24
},
"end": {
- "line": 319,
+ "line": 327,
"column": 36
}
}
@@ -25461,16 +26047,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13893,
- 13895
+ 14293,
+ 14295
],
"loc": {
"start": {
- "line": 320,
+ "line": 328,
"column": 24
},
"end": {
- "line": 320,
+ "line": 328,
"column": 26
}
}
@@ -25479,62 +26065,62 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 13896,
- 13909
+ 14296,
+ 14309
],
"loc": {
"start": {
- "line": 320,
+ "line": 328,
"column": 27
},
"end": {
- "line": 320,
+ "line": 328,
"column": 40
}
}
},
"range": [
- 13893,
- 13909
+ 14293,
+ 14309
],
"loc": {
"start": {
- "line": 320,
+ "line": 328,
"column": 24
},
"end": {
- "line": 320,
+ "line": 328,
"column": 40
}
}
},
"prefix": false,
"range": [
- 13893,
- 13911
+ 14293,
+ 14311
],
"loc": {
"start": {
- "line": 320,
+ "line": 328,
"column": 24
},
"end": {
- "line": 320,
+ "line": 328,
"column": 42
}
}
},
"range": [
- 13893,
- 13912
+ 14293,
+ 14312
],
"loc": {
"start": {
- "line": 320,
+ "line": 328,
"column": 24
},
"end": {
- "line": 320,
+ "line": 328,
"column": 43
}
}
@@ -25551,16 +26137,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13937,
- 13939
+ 14337,
+ 14339
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 24
},
"end": {
- "line": 321,
+ "line": 329,
"column": 26
}
}
@@ -25569,62 +26155,62 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 13940,
- 13956
+ 14340,
+ 14356
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 27
},
"end": {
- "line": 321,
+ "line": 329,
"column": 43
}
}
},
"range": [
- 13937,
- 13956
+ 14337,
+ 14356
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 24
},
"end": {
- "line": 321,
+ "line": 329,
"column": 43
}
}
},
"prefix": false,
"range": [
- 13937,
- 13958
+ 14337,
+ 14358
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 24
},
"end": {
- "line": 321,
+ "line": 329,
"column": 45
}
}
},
"range": [
- 13937,
- 13959
+ 14337,
+ 14359
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 24
},
"end": {
- "line": 321,
+ "line": 329,
"column": 46
}
}
@@ -25641,16 +26227,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13984,
- 13986
+ 14384,
+ 14386
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 24
},
"end": {
- "line": 322,
+ "line": 330,
"column": 26
}
}
@@ -25659,31 +26245,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 13987,
- 13993
+ 14387,
+ 14393
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 27
},
"end": {
- "line": 322,
+ "line": 330,
"column": 33
}
}
},
"range": [
- 13984,
- 13993
+ 14384,
+ 14393
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 24
},
"end": {
- "line": 322,
+ "line": 330,
"column": 33
}
}
@@ -25693,46 +26279,46 @@
"value": false,
"raw": "false",
"range": [
- 13994,
- 13999
+ 14394,
+ 14399
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 34
},
"end": {
- "line": 322,
+ "line": 330,
"column": 39
}
}
},
"range": [
- 13984,
- 13999
+ 14384,
+ 14399
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 24
},
"end": {
- "line": 322,
+ "line": 330,
"column": 39
}
}
},
"range": [
- 13984,
- 14000
+ 14384,
+ 14400
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 24
},
"end": {
- "line": 322,
+ "line": 330,
"column": 40
}
}
@@ -25753,16 +26339,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14025,
- 14027
+ 14425,
+ 14427
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 26
}
}
@@ -25771,31 +26357,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 14028,
- 14035
+ 14428,
+ 14435
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 27
},
"end": {
- "line": 323,
+ "line": 331,
"column": 34
}
}
},
"range": [
- 14025,
- 14035
+ 14425,
+ 14435
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 34
}
}
@@ -25806,32 +26392,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 14036,
- 14044
+ 14436,
+ 14444
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 35
},
"end": {
- "line": 323,
+ "line": 331,
"column": 43
}
}
}
],
"range": [
- 14025,
- 14045
+ 14425,
+ 14445
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 44
}
}
@@ -25840,62 +26426,62 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 14046,
- 14053
+ 14446,
+ 14453
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 45
},
"end": {
- "line": 323,
+ "line": 331,
"column": 52
}
}
},
"range": [
- 14025,
- 14053
+ 14425,
+ 14453
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 52
}
}
},
"arguments": [],
"range": [
- 14025,
- 14055
+ 14425,
+ 14455
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 54
}
}
},
"range": [
- 14025,
- 14056
+ 14425,
+ 14456
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 24
},
"end": {
- "line": 323,
+ "line": 331,
"column": 55
}
}
@@ -25916,16 +26502,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14081,
- 14083
+ 14481,
+ 14483
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 26
}
}
@@ -25934,31 +26520,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 14084,
- 14091
+ 14484,
+ 14491
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 27
},
"end": {
- "line": 324,
+ "line": 332,
"column": 34
}
}
},
"range": [
- 14081,
- 14091
+ 14481,
+ 14491
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 34
}
}
@@ -25969,32 +26555,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 14092,
- 14100
+ 14492,
+ 14500
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 35
},
"end": {
- "line": 324,
+ "line": 332,
"column": 43
}
}
}
],
"range": [
- 14081,
- 14101
+ 14481,
+ 14501
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 44
}
}
@@ -26003,31 +26589,31 @@
"type": "Identifier",
"name": "reset",
"range": [
- 14102,
- 14107
+ 14502,
+ 14507
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 45
},
"end": {
- "line": 324,
+ "line": 332,
"column": 50
}
}
},
"range": [
- 14081,
- 14107
+ 14481,
+ 14507
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 50
}
}
@@ -26038,78 +26624,78 @@
"value": false,
"raw": "false",
"range": [
- 14108,
- 14113
+ 14508,
+ 14513
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 51
},
"end": {
- "line": 324,
+ "line": 332,
"column": 56
}
}
}
],
"range": [
- 14081,
- 14114
+ 14481,
+ 14514
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 57
}
}
},
"range": [
- 14081,
- 14115
+ 14481,
+ 14515
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 24
},
"end": {
- "line": 324,
+ "line": 332,
"column": 58
}
}
}
],
"range": [
- 13830,
- 14137
+ 14230,
+ 14537
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 27
},
"end": {
- "line": 325,
+ "line": 333,
"column": 21
}
}
},
"range": [
- 13726,
- 14137
+ 14056,
+ 14537
],
"loc": {
"start": {
- "line": 316,
+ "line": 323,
"column": 20
},
"end": {
- "line": 325,
+ "line": 333,
"column": 21
}
}
@@ -26123,16 +26709,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14161,
- 14163
+ 14561,
+ 14563
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 23
},
"end": {
- "line": 326,
+ "line": 334,
"column": 25
}
}
@@ -26141,31 +26727,31 @@
"type": "Identifier",
"name": "alternateRows",
"range": [
- 14164,
- 14177
+ 14564,
+ 14577
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 26
},
"end": {
- "line": 326,
+ "line": 334,
"column": 39
}
}
},
"range": [
- 14161,
- 14177
+ 14561,
+ 14577
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 23
},
"end": {
- "line": 326,
+ "line": 334,
"column": 39
}
}
@@ -26189,16 +26775,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14204,
- 14206
+ 14604,
+ 14606
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 26
}
}
@@ -26207,31 +26793,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 14207,
- 14214
+ 14607,
+ 14614
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 27
},
"end": {
- "line": 327,
+ "line": 335,
"column": 34
}
}
},
"range": [
- 14204,
- 14214
+ 14604,
+ 14614
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 34
}
}
@@ -26242,32 +26828,32 @@
"value": "alternateRows",
"raw": "'alternateRows'",
"range": [
- 14215,
- 14230
+ 14615,
+ 14630
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 35
},
"end": {
- "line": 327,
+ "line": 335,
"column": 50
}
}
}
],
"range": [
- 14204,
- 14231
+ 14604,
+ 14631
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 51
}
}
@@ -26276,94 +26862,94 @@
"type": "Identifier",
"name": "init",
"range": [
- 14232,
- 14236
+ 14632,
+ 14636
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 52
},
"end": {
- "line": 327,
+ "line": 335,
"column": 56
}
}
},
"range": [
- 14204,
- 14236
+ 14604,
+ 14636
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 56
}
}
},
"arguments": [],
"range": [
- 14204,
- 14238
+ 14604,
+ 14638
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 58
}
}
},
"range": [
- 14204,
- 14239
+ 14604,
+ 14639
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 24
},
"end": {
- "line": 327,
+ "line": 335,
"column": 59
}
}
}
],
"range": [
- 14178,
- 14261
+ 14578,
+ 14661
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 40
},
"end": {
- "line": 328,
+ "line": 336,
"column": 21
}
}
},
"alternate": null,
"range": [
- 14158,
- 14261
+ 14558,
+ 14661
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 20
},
"end": {
- "line": 328,
+ "line": 336,
"column": 21
}
}
@@ -26374,16 +26960,16 @@
"type": "Identifier",
"name": "fnF",
"range": [
- 14285,
- 14288
+ 14685,
+ 14688
],
"loc": {
"start": {
- "line": 329,
+ "line": 337,
"column": 23
},
"end": {
- "line": 329,
+ "line": 337,
"column": 26
}
}
@@ -26402,16 +26988,16 @@
"type": "Identifier",
"name": "fnF",
"range": [
- 14315,
- 14318
+ 14715,
+ 14718
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 24
},
"end": {
- "line": 330,
+ "line": 338,
"column": 27
}
}
@@ -26420,31 +27006,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 14319,
- 14323
+ 14719,
+ 14723
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 28
},
"end": {
- "line": 330,
+ "line": 338,
"column": 32
}
}
},
"range": [
- 14315,
- 14323
+ 14715,
+ 14723
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 24
},
"end": {
- "line": 330,
+ "line": 338,
"column": 32
}
}
@@ -26455,16 +27041,16 @@
"value": null,
"raw": "null",
"range": [
- 14324,
- 14328
+ 14724,
+ 14728
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 33
},
"end": {
- "line": 330,
+ "line": 338,
"column": 37
}
}
@@ -26476,16 +27062,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 14330,
- 14339
+ 14730,
+ 14739
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 39
},
"end": {
- "line": 330,
+ "line": 338,
"column": 48
}
}
@@ -26495,31 +27081,31 @@
"value": 0,
"raw": "0",
"range": [
- 14340,
- 14341
+ 14740,
+ 14741
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 49
},
"end": {
- "line": 330,
+ "line": 338,
"column": 50
}
}
},
"range": [
- 14330,
- 14342
+ 14730,
+ 14742
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 39
},
"end": {
- "line": 330,
+ "line": 338,
"column": 51
}
}
@@ -26531,16 +27117,16 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 14344,
- 14353
+ 14744,
+ 14753
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 53
},
"end": {
- "line": 330,
+ "line": 338,
"column": 62
}
}
@@ -26550,110 +27136,110 @@
"value": 1,
"raw": "1",
"range": [
- 14354,
- 14355
+ 14754,
+ 14755
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 63
},
"end": {
- "line": 330,
+ "line": 338,
"column": 64
}
}
},
"range": [
- 14344,
- 14356
+ 14744,
+ 14756
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 53
},
"end": {
- "line": 330,
+ "line": 338,
"column": 65
}
}
}
],
"range": [
- 14315,
- 14357
+ 14715,
+ 14757
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 24
},
"end": {
- "line": 330,
+ "line": 338,
"column": 66
}
}
},
"range": [
- 14315,
- 14358
+ 14715,
+ 14758
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 24
},
"end": {
- "line": 330,
+ "line": 338,
"column": 67
}
}
}
],
"range": [
- 14289,
- 14380
+ 14689,
+ 14780
],
"loc": {
"start": {
- "line": 329,
+ "line": 337,
"column": 27
},
"end": {
- "line": 331,
+ "line": 339,
"column": 21
}
}
},
"alternate": null,
"range": [
- 14282,
- 14380
+ 14682,
+ 14780
],
"loc": {
"start": {
- "line": 329,
+ "line": 337,
"column": 20
},
"end": {
- "line": 331,
+ "line": 339,
"column": 21
}
}
}
],
"range": [
- 13661,
- 14398
+ 13991,
+ 14798
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 66
},
"end": {
- "line": 332,
+ "line": 340,
"column": 17
}
}
@@ -26661,110 +27247,110 @@
"generator": false,
"expression": false,
"range": [
- 13651,
- 14398
+ 13981,
+ 14798
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 56
},
"end": {
- "line": 332,
+ "line": 340,
"column": 17
}
}
},
"range": [
- 13611,
- 14398
+ 13941,
+ 14798
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 332,
+ "line": 340,
"column": 17
}
}
},
"range": [
- 13611,
- 14399
+ 13941,
+ 14799
],
"loc": {
"start": {
- "line": 314,
+ "line": 321,
"column": 16
},
"end": {
- "line": 332,
+ "line": 340,
"column": 18
}
}
}
],
"range": [
- 13528,
- 14413
+ 13858,
+ 14813
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 52
},
"end": {
- "line": 333,
+ "line": 341,
"column": 13
}
}
},
"alternate": null,
"range": [
- 13488,
- 14413
+ 13818,
+ 14813
],
"loc": {
"start": {
- "line": 312,
+ "line": 319,
"column": 12
},
"end": {
- "line": 333,
+ "line": 341,
"column": 13
}
}
}
],
"range": [
- 12631,
- 14423
+ 12896,
+ 14823
],
"loc": {
"start": {
- "line": 290,
+ "line": 296,
"column": 20
},
"end": {
- "line": 334,
+ "line": 342,
"column": 9
}
}
},
"alternate": null,
"range": [
- 12619,
- 14423
+ 12884,
+ 14823
],
"loc": {
"start": {
- "line": 290,
+ "line": 296,
"column": 8
},
"end": {
- "line": 334,
+ "line": 342,
"column": 9
}
}
@@ -26785,16 +27371,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14450,
- 14454
+ 14850,
+ 14854
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 12
},
"end": {
- "line": 337,
+ "line": 345,
"column": 16
}
}
@@ -26803,31 +27389,31 @@
"type": "Identifier",
"name": "_ezEditTable",
"range": [
- 14455,
- 14467
+ 14855,
+ 14867
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 17
},
"end": {
- "line": 337,
+ "line": 345,
"column": 29
}
}
},
"range": [
- 14450,
- 14467
+ 14850,
+ 14867
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 12
},
"end": {
- "line": 337,
+ "line": 345,
"column": 29
}
}
@@ -26838,16 +27424,16 @@
"type": "Identifier",
"name": "EditTable",
"range": [
- 14474,
- 14483
+ 14874,
+ 14883
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 36
},
"end": {
- "line": 337,
+ "line": 345,
"column": 45
}
}
@@ -26860,16 +27446,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14484,
- 14486
+ 14884,
+ 14886
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 46
},
"end": {
- "line": 337,
+ "line": 345,
"column": 48
}
}
@@ -26878,31 +27464,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 14487,
- 14489
+ 14887,
+ 14889
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 49
},
"end": {
- "line": 337,
+ "line": 345,
"column": 51
}
}
},
"range": [
- 14484,
- 14489
+ 14884,
+ 14889
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 46
},
"end": {
- "line": 337,
+ "line": 345,
"column": 51
}
}
@@ -26911,16 +27497,16 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 14491,
- 14494
+ 14891,
+ 14894
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 53
},
"end": {
- "line": 337,
+ "line": 345,
"column": 56
}
}
@@ -26929,62 +27515,62 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 14496,
- 14504
+ 14896,
+ 14904
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 58
},
"end": {
- "line": 337,
+ "line": 345,
"column": 66
}
}
}
],
"range": [
- 14470,
- 14505
+ 14870,
+ 14905
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 32
},
"end": {
- "line": 337,
+ "line": 345,
"column": 67
}
}
},
"range": [
- 14450,
- 14505
+ 14850,
+ 14905
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 12
},
"end": {
- "line": 337,
+ "line": 345,
"column": 67
}
}
},
"range": [
- 14450,
- 14506
+ 14850,
+ 14906
],
"loc": {
"start": {
- "line": 337,
+ "line": 345,
"column": 12
},
"end": {
- "line": 337,
+ "line": 345,
"column": 68
}
}
@@ -27002,16 +27588,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14519,
- 14523
+ 14919,
+ 14923
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 12
},
"end": {
- "line": 338,
+ "line": 346,
"column": 16
}
}
@@ -27020,31 +27606,31 @@
"type": "Identifier",
"name": "_ezEditTable",
"range": [
- 14524,
- 14536
+ 14924,
+ 14936
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 17
},
"end": {
- "line": 338,
+ "line": 346,
"column": 29
}
}
},
"range": [
- 14519,
- 14536
+ 14919,
+ 14936
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 12
},
"end": {
- "line": 338,
+ "line": 346,
"column": 29
}
}
@@ -27053,78 +27639,78 @@
"type": "Identifier",
"name": "Init",
"range": [
- 14537,
- 14541
+ 14937,
+ 14941
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 30
},
"end": {
- "line": 338,
+ "line": 346,
"column": 34
}
}
},
"range": [
- 14519,
- 14541
+ 14919,
+ 14941
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 12
},
"end": {
- "line": 338,
+ "line": 346,
"column": 34
}
}
},
"arguments": [],
"range": [
- 14519,
- 14543
+ 14919,
+ 14943
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 12
},
"end": {
- "line": 338,
+ "line": 346,
"column": 36
}
}
},
"range": [
- 14519,
- 14544
+ 14919,
+ 14944
],
"loc": {
"start": {
- "line": 338,
+ "line": 346,
"column": 12
},
"end": {
- "line": 338,
+ "line": 346,
"column": 37
}
}
}
],
"range": [
- 14436,
- 14554
+ 14836,
+ 14954
],
"loc": {
"start": {
- "line": 336,
+ "line": 344,
"column": 11
},
"end": {
- "line": 339,
+ "line": 347,
"column": 9
}
}
@@ -27135,16 +27721,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 14561,
- 14562
+ 14961,
+ 14962
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 16
},
"end": {
- "line": 339,
+ "line": 347,
"column": 17
}
}
@@ -27160,16 +27746,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 14576,
- 14581
+ 14976,
+ 14981
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 31
},
"end": {
- "line": 339,
+ "line": 347,
"column": 36
}
}
@@ -27181,16 +27767,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14582,
- 14586
+ 14982,
+ 14986
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 37
},
"end": {
- "line": 339,
+ "line": 347,
"column": 41
}
}
@@ -27199,109 +27785,109 @@
"type": "Identifier",
"name": "err",
"range": [
- 14587,
- 14590
+ 14987,
+ 14990
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 42
},
"end": {
- "line": 339,
+ "line": 347,
"column": 45
}
}
},
"range": [
- 14582,
- 14590
+ 14982,
+ 14990
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 37
},
"end": {
- "line": 339,
+ "line": 347,
"column": 45
}
}
}
],
"range": [
- 14572,
- 14591
+ 14972,
+ 14991
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 27
},
"end": {
- "line": 339,
+ "line": 347,
"column": 46
}
}
},
"range": [
- 14566,
- 14592
+ 14966,
+ 14992
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 21
},
"end": {
- "line": 339,
+ "line": 347,
"column": 47
}
}
}
],
"range": [
- 14564,
- 14594
+ 14964,
+ 14994
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 19
},
"end": {
- "line": 339,
+ "line": 347,
"column": 49
}
}
},
"range": [
- 14555,
- 14594
+ 14955,
+ 14994
],
"loc": {
"start": {
- "line": 339,
+ "line": 347,
"column": 10
},
"end": {
- "line": 339,
+ "line": 347,
"column": 49
}
}
},
"finalizer": null,
"range": [
- 14433,
- 14594
+ 14833,
+ 14994
],
"loc": {
"start": {
- "line": 336,
+ "line": 344,
"column": 8
},
"end": {
- "line": 339,
+ "line": 347,
"column": 49
}
}
@@ -27317,16 +27903,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14604,
- 14608
+ 15004,
+ 15008
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 8
},
"end": {
- "line": 341,
+ "line": 349,
"column": 12
}
}
@@ -27335,31 +27921,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 14609,
- 14620
+ 15009,
+ 15020
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 13
},
"end": {
- "line": 341,
+ "line": 349,
"column": 24
}
}
},
"range": [
- 14604,
- 14620
+ 15004,
+ 15020
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 8
},
"end": {
- "line": 341,
+ "line": 349,
"column": 24
}
}
@@ -27369,62 +27955,62 @@
"value": true,
"raw": "true",
"range": [
- 14623,
- 14627
+ 15023,
+ 15027
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 27
},
"end": {
- "line": 341,
+ "line": 349,
"column": 31
}
}
},
"range": [
- 14604,
- 14627
+ 15004,
+ 15027
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 8
},
"end": {
- "line": 341,
+ "line": 349,
"column": 31
}
}
},
"range": [
- 14604,
- 14628
+ 15004,
+ 15028
],
"loc": {
"start": {
- "line": 341,
+ "line": 349,
"column": 8
},
"end": {
- "line": 341,
+ "line": 349,
"column": 32
}
}
}
],
"range": [
- 1865,
- 14634
+ 2130,
+ 15034
],
"loc": {
"start": {
- "line": 51,
+ "line": 57,
"column": 22
},
"end": {
- "line": 342,
+ "line": 350,
"column": 5
}
}
@@ -27432,16 +28018,16 @@
"generator": false,
"expression": false,
"range": [
- 1863,
- 14634
+ 2128,
+ 15034
],
"loc": {
"start": {
- "line": 51,
+ "line": 57,
"column": 20
},
"end": {
- "line": 342,
+ "line": 350,
"column": 5
}
}
@@ -27449,16 +28035,16 @@
"kind": "method",
"computed": false,
"range": [
- 1847,
- 14634
+ 2112,
+ 15034
],
"loc": {
"start": {
- "line": 51,
+ "line": 57,
"column": 4
},
"end": {
- "line": 342,
+ "line": 350,
"column": 5
}
},
@@ -27467,16 +28053,16 @@
"type": "Block",
"value": "*\n * Instantiate ezEditTable component for advanced grid features\n ",
"range": [
- 1763,
- 1842
+ 2028,
+ 2107
],
"loc": {
"start": {
- "line": 48,
+ "line": 54,
"column": 4
},
"end": {
- "line": 50,
+ "line": 56,
"column": 7
}
}
@@ -27487,16 +28073,16 @@
"type": "Block",
"value": "*\n * Reset advanced grid when previously removed\n ",
"range": [
- 14640,
- 14702
+ 15040,
+ 15102
],
"loc": {
"start": {
- "line": 344,
+ "line": 352,
"column": 4
},
"end": {
- "line": 346,
+ "line": 354,
"column": 7
}
}
@@ -27510,16 +28096,16 @@
"type": "Identifier",
"name": "reset",
"range": [
- 14707,
- 14712
+ 15107,
+ 15112
],
"loc": {
"start": {
- "line": 347,
+ "line": 355,
"column": 4
},
"end": {
- "line": 347,
+ "line": 355,
"column": 9
}
}
@@ -27540,16 +28126,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 14728,
- 14739
+ 15128,
+ 15139
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 12
},
"end": {
- "line": 348,
+ "line": 356,
"column": 23
}
}
@@ -27560,16 +28146,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14742,
- 14746
+ 15142,
+ 15146
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 26
},
"end": {
- "line": 348,
+ "line": 356,
"column": 30
}
}
@@ -27578,46 +28164,46 @@
"type": "Identifier",
"name": "_ezEditTable",
"range": [
- 14747,
- 14759
+ 15147,
+ 15159
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 31
},
"end": {
- "line": 348,
+ "line": 356,
"column": 43
}
}
},
"range": [
- 14742,
- 14759
+ 15142,
+ 15159
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 26
},
"end": {
- "line": 348,
+ "line": 356,
"column": 43
}
}
},
"range": [
- 14728,
- 14759
+ 15128,
+ 15159
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 12
},
"end": {
- "line": 348,
+ "line": 356,
"column": 43
}
}
@@ -27625,16 +28211,16 @@
],
"kind": "var",
"range": [
- 14724,
- 14760
+ 15124,
+ 15160
],
"loc": {
"start": {
- "line": 348,
+ "line": 356,
"column": 8
},
"end": {
- "line": 348,
+ "line": 356,
"column": 44
}
}
@@ -27645,16 +28231,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 14772,
- 14783
+ 15172,
+ 15183
],
"loc": {
"start": {
- "line": 349,
+ "line": 357,
"column": 11
},
"end": {
- "line": 349,
+ "line": 357,
"column": 22
}
}
@@ -27673,16 +28259,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14801,
- 14805
+ 15201,
+ 15205
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 15
},
"end": {
- "line": 350,
+ "line": 358,
"column": 19
}
}
@@ -27691,31 +28277,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 14806,
- 14809
+ 15206,
+ 15209
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 20
},
"end": {
- "line": 350,
+ "line": 358,
"column": 23
}
}
},
"range": [
- 14801,
- 14809
+ 15201,
+ 15209
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 15
},
"end": {
- "line": 350,
+ "line": 358,
"column": 23
}
}
@@ -27724,31 +28310,31 @@
"type": "Identifier",
"name": "selection",
"range": [
- 14810,
- 14819
+ 15210,
+ 15219
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 24
},
"end": {
- "line": 350,
+ "line": 358,
"column": 33
}
}
},
"range": [
- 14801,
- 14819
+ 15201,
+ 15219
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 15
},
"end": {
- "line": 350,
+ "line": 358,
"column": 33
}
}
@@ -27770,16 +28356,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 14838,
- 14849
+ 15238,
+ 15249
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 16
},
"end": {
- "line": 351,
+ "line": 359,
"column": 27
}
}
@@ -27788,31 +28374,31 @@
"type": "Identifier",
"name": "Selection",
"range": [
- 14850,
- 14859
+ 15250,
+ 15259
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 28
},
"end": {
- "line": 351,
+ "line": 359,
"column": 37
}
}
},
"range": [
- 14838,
- 14859
+ 15238,
+ 15259
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 16
},
"end": {
- "line": 351,
+ "line": 359,
"column": 37
}
}
@@ -27821,94 +28407,94 @@
"type": "Identifier",
"name": "Set",
"range": [
- 14860,
- 14863
+ 15260,
+ 15263
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 38
},
"end": {
- "line": 351,
+ "line": 359,
"column": 41
}
}
},
"range": [
- 14838,
- 14863
+ 15238,
+ 15263
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 16
},
"end": {
- "line": 351,
+ "line": 359,
"column": 41
}
}
},
"arguments": [],
"range": [
- 14838,
- 14865
+ 15238,
+ 15265
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 16
},
"end": {
- "line": 351,
+ "line": 359,
"column": 43
}
}
},
"range": [
- 14838,
- 14866
+ 15238,
+ 15266
],
"loc": {
"start": {
- "line": 351,
+ "line": 359,
"column": 16
},
"end": {
- "line": 351,
+ "line": 359,
"column": 44
}
}
}
],
"range": [
- 14820,
- 14880
+ 15220,
+ 15280
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 34
},
"end": {
- "line": 352,
+ "line": 360,
"column": 13
}
}
},
"alternate": null,
"range": [
- 14798,
- 14880
+ 15198,
+ 15280
],
"loc": {
"start": {
- "line": 350,
+ "line": 358,
"column": 12
},
"end": {
- "line": 352,
+ "line": 360,
"column": 13
}
}
@@ -27924,16 +28510,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14896,
- 14900
+ 15296,
+ 15300
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 15
},
"end": {
- "line": 353,
+ "line": 361,
"column": 19
}
}
@@ -27942,31 +28528,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 14901,
- 14904
+ 15301,
+ 15304
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 20
},
"end": {
- "line": 353,
+ "line": 361,
"column": 23
}
}
},
"range": [
- 14896,
- 14904
+ 15296,
+ 15304
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 15
},
"end": {
- "line": 353,
+ "line": 361,
"column": 23
}
}
@@ -27975,31 +28561,31 @@
"type": "Identifier",
"name": "editable",
"range": [
- 14905,
- 14913
+ 15305,
+ 15313
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 24
},
"end": {
- "line": 353,
+ "line": 361,
"column": 32
}
}
},
"range": [
- 14896,
- 14913
+ 15296,
+ 15313
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 15
},
"end": {
- "line": 353,
+ "line": 361,
"column": 32
}
}
@@ -28021,16 +28607,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 14932,
- 14943
+ 15332,
+ 15343
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 16
},
"end": {
- "line": 354,
+ "line": 362,
"column": 27
}
}
@@ -28039,31 +28625,31 @@
"type": "Identifier",
"name": "Editable",
"range": [
- 14944,
- 14952
+ 15344,
+ 15352
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 28
},
"end": {
- "line": 354,
+ "line": 362,
"column": 36
}
}
},
"range": [
- 14932,
- 14952
+ 15332,
+ 15352
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 16
},
"end": {
- "line": 354,
+ "line": 362,
"column": 36
}
}
@@ -28072,142 +28658,142 @@
"type": "Identifier",
"name": "Set",
"range": [
- 14953,
- 14956
+ 15353,
+ 15356
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 37
},
"end": {
- "line": 354,
+ "line": 362,
"column": 40
}
}
},
"range": [
- 14932,
- 14956
+ 15332,
+ 15356
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 16
},
"end": {
- "line": 354,
+ "line": 362,
"column": 40
}
}
},
"arguments": [],
"range": [
- 14932,
- 14958
+ 15332,
+ 15358
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 16
},
"end": {
- "line": 354,
+ "line": 362,
"column": 42
}
}
},
"range": [
- 14932,
- 14959
+ 15332,
+ 15359
],
"loc": {
"start": {
- "line": 354,
+ "line": 362,
"column": 16
},
"end": {
- "line": 354,
+ "line": 362,
"column": 43
}
}
}
],
"range": [
- 14914,
- 14973
+ 15314,
+ 15373
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 33
},
"end": {
- "line": 355,
+ "line": 363,
"column": 13
}
}
},
"alternate": null,
"range": [
- 14893,
- 14973
+ 15293,
+ 15373
],
"loc": {
"start": {
- "line": 353,
+ "line": 361,
"column": 12
},
"end": {
- "line": 355,
+ "line": 363,
"column": 13
}
}
}
],
"range": [
- 14784,
- 14983
+ 15184,
+ 15383
],
"loc": {
"start": {
- "line": 349,
+ "line": 357,
"column": 23
},
"end": {
- "line": 356,
+ "line": 364,
"column": 9
}
}
},
"alternate": null,
"range": [
- 14769,
- 14983
+ 15169,
+ 15383
],
"loc": {
"start": {
- "line": 349,
+ "line": 357,
"column": 8
},
"end": {
- "line": 356,
+ "line": 364,
"column": 9
}
}
}
],
"range": [
- 14714,
- 14989
+ 15114,
+ 15389
],
"loc": {
"start": {
- "line": 347,
+ "line": 355,
"column": 11
},
"end": {
- "line": 357,
+ "line": 365,
"column": 5
}
}
@@ -28215,16 +28801,16 @@
"generator": false,
"expression": false,
"range": [
- 14712,
- 14989
+ 15112,
+ 15389
],
"loc": {
"start": {
- "line": 347,
+ "line": 355,
"column": 9
},
"end": {
- "line": 357,
+ "line": 365,
"column": 5
}
}
@@ -28232,16 +28818,16 @@
"kind": "method",
"computed": false,
"range": [
- 14707,
- 14989
+ 15107,
+ 15389
],
"loc": {
"start": {
- "line": 347,
+ "line": 355,
"column": 4
},
"end": {
- "line": 357,
+ "line": 365,
"column": 5
}
},
@@ -28250,16 +28836,16 @@
"type": "Block",
"value": "*\n * Reset advanced grid when previously removed\n ",
"range": [
- 14640,
- 14702
+ 15040,
+ 15102
],
"loc": {
"start": {
- "line": 344,
+ "line": 352,
"column": 4
},
"end": {
- "line": 346,
+ "line": 354,
"column": 7
}
}
@@ -28268,18 +28854,1820 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Remove advanced grid\n ",
+ "value": "*\n * Toggle behaviour\n ",
"range": [
- 14995,
- 15034
+ 15395,
+ 15430
],
"loc": {
"start": {
- "line": 359,
+ "line": 367,
"column": 4
},
"end": {
- "line": 361,
+ "line": 369,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "toggle",
+ "range": [
+ 15435,
+ 15441
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 4
+ },
+ "end": {
+ "line": 370,
+ "column": 10
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15457,
+ 15468
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 12
+ },
+ "end": {
+ "line": 371,
+ "column": 23
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15471,
+ 15475
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 26
+ },
+ "end": {
+ "line": 371,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_ezEditTable",
+ "range": [
+ 15476,
+ 15488
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 31
+ },
+ "end": {
+ "line": 371,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 15471,
+ 15488
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 26
+ },
+ "end": {
+ "line": 371,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 15457,
+ 15488
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 12
+ },
+ "end": {
+ "line": 371,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 15453,
+ 15489
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 8
+ },
+ "end": {
+ "line": 371,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15501,
+ 15512
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 11
+ },
+ "end": {
+ "line": 372,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "editable",
+ "range": [
+ 15513,
+ 15521
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 23
+ },
+ "end": {
+ "line": 372,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15501,
+ 15521
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 11
+ },
+ "end": {
+ "line": 372,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15536,
+ 15547
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 12
+ },
+ "end": {
+ "line": 373,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Editable",
+ "range": [
+ 15548,
+ 15556
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 24
+ },
+ "end": {
+ "line": 373,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 15536,
+ 15556
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 12
+ },
+ "end": {
+ "line": 373,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Remove",
+ "range": [
+ 15557,
+ 15563
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 33
+ },
+ "end": {
+ "line": 373,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 15536,
+ 15563
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 12
+ },
+ "end": {
+ "line": 373,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 15536,
+ 15565
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 12
+ },
+ "end": {
+ "line": 373,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 15536,
+ 15566
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 12
+ },
+ "end": {
+ "line": 373,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 15522,
+ 15576
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 32
+ },
+ "end": {
+ "line": 374,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15596,
+ 15607
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 12
+ },
+ "end": {
+ "line": 375,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Editable",
+ "range": [
+ 15608,
+ 15616
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 24
+ },
+ "end": {
+ "line": 375,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 15596,
+ 15616
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 12
+ },
+ "end": {
+ "line": 375,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Set",
+ "range": [
+ 15617,
+ 15620
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 33
+ },
+ "end": {
+ "line": 375,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 15596,
+ 15620
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 12
+ },
+ "end": {
+ "line": 375,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 15596,
+ 15622
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 12
+ },
+ "end": {
+ "line": 375,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 15596,
+ 15623
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 12
+ },
+ "end": {
+ "line": 375,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 15582,
+ 15633
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 15
+ },
+ "end": {
+ "line": 376,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 15498,
+ 15633
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15645,
+ 15656
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selection",
+ "range": [
+ 15657,
+ 15666
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 23
+ },
+ "end": {
+ "line": 377,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 15645,
+ 15666
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 32
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15681,
+ 15692
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Selection",
+ "range": [
+ 15693,
+ 15702
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 24
+ },
+ "end": {
+ "line": 378,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 15681,
+ 15702
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Remove",
+ "range": [
+ 15703,
+ 15709
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 34
+ },
+ "end": {
+ "line": 378,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 15681,
+ 15709
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 15681,
+ 15711
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 15681,
+ 15712
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 15667,
+ 15722
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 33
+ },
+ "end": {
+ "line": 379,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "ezEditTable",
+ "range": [
+ 15742,
+ 15753
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 12
+ },
+ "end": {
+ "line": 380,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Selection",
+ "range": [
+ 15754,
+ 15763
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 24
+ },
+ "end": {
+ "line": 380,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 15742,
+ 15763
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 12
+ },
+ "end": {
+ "line": 380,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Set",
+ "range": [
+ 15764,
+ 15767
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 34
+ },
+ "end": {
+ "line": 380,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 15742,
+ 15767
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 12
+ },
+ "end": {
+ "line": 380,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 15742,
+ 15769
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 12
+ },
+ "end": {
+ "line": 380,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 15742,
+ 15770
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 12
+ },
+ "end": {
+ "line": 380,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 15728,
+ 15780
+ ],
+ "loc": {
+ "start": {
+ "line": 379,
+ "column": 15
+ },
+ "end": {
+ "line": 381,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 15642,
+ 15780
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 8
+ },
+ "end": {
+ "line": 381,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 15443,
+ 15786
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 12
+ },
+ "end": {
+ "line": 382,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 15441,
+ 15786
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 10
+ },
+ "end": {
+ "line": 382,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 15435,
+ 15786
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 4
+ },
+ "end": {
+ "line": 382,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Toggle behaviour\n ",
+ "range": [
+ 15395,
+ 15430
+ ],
+ "loc": {
+ "start": {
+ "line": 367,
+ "column": 4
+ },
+ "end": {
+ "line": 369,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "_toggleForInputFilter",
+ "range": [
+ 15792,
+ 15813
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 4
+ },
+ "end": {
+ "line": 384,
+ "column": 25
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15829,
+ 15831
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 12
+ },
+ "end": {
+ "line": 385,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15834,
+ 15838
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 17
+ },
+ "end": {
+ "line": 385,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15839,
+ 15841
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 22
+ },
+ "end": {
+ "line": 385,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15834,
+ 15841
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 17
+ },
+ "end": {
+ "line": 385,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15829,
+ 15841
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 12
+ },
+ "end": {
+ "line": 385,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 15825,
+ 15842
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 8
+ },
+ "end": {
+ "line": 385,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15855,
+ 15857
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 12
+ },
+ "end": {
+ "line": 386,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFlt",
+ "range": [
+ 15858,
+ 15867
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 15
+ },
+ "end": {
+ "line": 386,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15855,
+ 15867
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 12
+ },
+ "end": {
+ "line": 386,
+ "column": 24
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 15854,
+ 15867
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 11
+ },
+ "end": {
+ "line": 386,
+ "column": 24
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 15882,
+ 15889
+ ],
+ "loc": {
+ "start": {
+ "line": 387,
+ "column": 12
+ },
+ "end": {
+ "line": 387,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 15868,
+ 15899
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 25
+ },
+ "end": {
+ "line": 388,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 15851,
+ 15899
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 8
+ },
+ "end": {
+ "line": 388,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 15912,
+ 15920
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 12
+ },
+ "end": {
+ "line": 389,
+ "column": 20
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15923,
+ 15925
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 23
+ },
+ "end": {
+ "line": 389,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFlt",
+ "range": [
+ 15926,
+ 15935
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 26
+ },
+ "end": {
+ "line": 389,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 15923,
+ 15935
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 23
+ },
+ "end": {
+ "line": 389,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 15936,
+ 15948
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 36
+ },
+ "end": {
+ "line": 389,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 15923,
+ 15948
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 23
+ },
+ "end": {
+ "line": 389,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
+ "range": [
+ 15949,
+ 15953
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 49
+ },
+ "end": {
+ "line": 389,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 15923,
+ 15954
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 23
+ },
+ "end": {
+ "line": 389,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 15912,
+ 15954
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 12
+ },
+ "end": {
+ "line": 389,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 15908,
+ 15955
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 8
+ },
+ "end": {
+ "line": 389,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "filterType",
+ "range": [
+ 15968,
+ 15978
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 12
+ },
+ "end": {
+ "line": 390,
+ "column": 22
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15981,
+ 15983
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 25
+ },
+ "end": {
+ "line": 390,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 15984,
+ 15997
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 28
+ },
+ "end": {
+ "line": 390,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 15981,
+ 15997
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 25
+ },
+ "end": {
+ "line": 390,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 15998,
+ 16006
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 42
+ },
+ "end": {
+ "line": 390,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 15981,
+ 16007
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 25
+ },
+ "end": {
+ "line": 390,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 15968,
+ 16007
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 12
+ },
+ "end": {
+ "line": 390,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 15964,
+ 16008
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 8
+ },
+ "end": {
+ "line": 390,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "filterType",
+ "range": [
+ 16020,
+ 16030
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 11
+ },
+ "end": {
+ "line": 391,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16035,
+ 16037
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 26
+ },
+ "end": {
+ "line": 391,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeInp",
+ "range": [
+ 16038,
+ 16048
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 29
+ },
+ "end": {
+ "line": 391,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 16035,
+ 16048
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 26
+ },
+ "end": {
+ "line": 391,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 16020,
+ 16048
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 11
+ },
+ "end": {
+ "line": 391,
+ "column": 39
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16063,
+ 16067
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 12
+ },
+ "end": {
+ "line": 392,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toggle",
+ "range": [
+ 16068,
+ 16074
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 17
+ },
+ "end": {
+ "line": 392,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 16063,
+ 16074
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 12
+ },
+ "end": {
+ "line": 392,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 16063,
+ 16076
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 12
+ },
+ "end": {
+ "line": 392,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 16063,
+ 16077
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 12
+ },
+ "end": {
+ "line": 392,
+ "column": 26
+ }
+ }
+ }
+ ],
+ "range": [
+ 16049,
+ 16087
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 40
+ },
+ "end": {
+ "line": 393,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 16017,
+ 16087
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 8
+ },
+ "end": {
+ "line": 393,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 15815,
+ 16093
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 27
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 15813,
+ 16093
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 25
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 15792,
+ 16093
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 4
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Remove advanced grid\n ",
+ "range": [
+ 16099,
+ 16138
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 4
+ },
+ "end": {
+ "line": 398,
"column": 7
}
}
@@ -28293,16 +30681,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 15039,
- 15046
+ 16143,
+ 16150
],
"loc": {
"start": {
- "line": 362,
+ "line": 399,
"column": 4
},
"end": {
- "line": 362,
+ "line": 399,
"column": 11
}
}
@@ -28323,16 +30711,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 15062,
- 15073
+ 16166,
+ 16177
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 12
},
"end": {
- "line": 363,
+ "line": 400,
"column": 23
}
}
@@ -28343,16 +30731,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15076,
- 15080
+ 16180,
+ 16184
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 26
},
"end": {
- "line": 363,
+ "line": 400,
"column": 30
}
}
@@ -28361,46 +30749,46 @@
"type": "Identifier",
"name": "_ezEditTable",
"range": [
- 15081,
- 15093
+ 16185,
+ 16197
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 31
},
"end": {
- "line": 363,
+ "line": 400,
"column": 43
}
}
},
"range": [
- 15076,
- 15093
+ 16180,
+ 16197
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 26
},
"end": {
- "line": 363,
+ "line": 400,
"column": 43
}
}
},
"range": [
- 15062,
- 15093
+ 16166,
+ 16197
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 12
},
"end": {
- "line": 363,
+ "line": 400,
"column": 43
}
}
@@ -28408,16 +30796,16 @@
],
"kind": "var",
"range": [
- 15058,
- 15094
+ 16162,
+ 16198
],
"loc": {
"start": {
- "line": 363,
+ "line": 400,
"column": 8
},
"end": {
- "line": 363,
+ "line": 400,
"column": 44
}
}
@@ -28428,16 +30816,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 15106,
- 15117
+ 16210,
+ 16221
],
"loc": {
"start": {
- "line": 364,
+ "line": 401,
"column": 11
},
"end": {
- "line": 364,
+ "line": 401,
"column": 22
}
}
@@ -28456,16 +30844,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15135,
- 15139
+ 16239,
+ 16243
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 15
},
"end": {
- "line": 365,
+ "line": 402,
"column": 19
}
}
@@ -28474,31 +30862,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 15140,
- 15143
+ 16244,
+ 16247
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 20
},
"end": {
- "line": 365,
+ "line": 402,
"column": 23
}
}
},
"range": [
- 15135,
- 15143
+ 16239,
+ 16247
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 15
},
"end": {
- "line": 365,
+ "line": 402,
"column": 23
}
}
@@ -28507,31 +30895,31 @@
"type": "Identifier",
"name": "selection",
"range": [
- 15144,
- 15153
+ 16248,
+ 16257
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 24
},
"end": {
- "line": 365,
+ "line": 402,
"column": 33
}
}
},
"range": [
- 15135,
- 15153
+ 16239,
+ 16257
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 15
},
"end": {
- "line": 365,
+ "line": 402,
"column": 33
}
}
@@ -28553,16 +30941,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 15172,
- 15183
+ 16276,
+ 16287
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 16
},
"end": {
- "line": 366,
+ "line": 403,
"column": 27
}
}
@@ -28571,31 +30959,31 @@
"type": "Identifier",
"name": "Selection",
"range": [
- 15184,
- 15193
+ 16288,
+ 16297
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 28
},
"end": {
- "line": 366,
+ "line": 403,
"column": 37
}
}
},
"range": [
- 15172,
- 15193
+ 16276,
+ 16297
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 16
},
"end": {
- "line": 366,
+ "line": 403,
"column": 37
}
}
@@ -28604,62 +30992,62 @@
"type": "Identifier",
"name": "ClearSelections",
"range": [
- 15194,
- 15209
+ 16298,
+ 16313
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 38
},
"end": {
- "line": 366,
+ "line": 403,
"column": 53
}
}
},
"range": [
- 15172,
- 15209
+ 16276,
+ 16313
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 16
},
"end": {
- "line": 366,
+ "line": 403,
"column": 53
}
}
},
"arguments": [],
"range": [
- 15172,
- 15211
+ 16276,
+ 16315
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 16
},
"end": {
- "line": 366,
+ "line": 403,
"column": 55
}
}
},
"range": [
- 15172,
- 15212
+ 16276,
+ 16316
],
"loc": {
"start": {
- "line": 366,
+ "line": 403,
"column": 16
},
"end": {
- "line": 366,
+ "line": 403,
"column": 56
}
}
@@ -28678,16 +31066,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 15229,
- 15240
+ 16333,
+ 16344
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 16
},
"end": {
- "line": 367,
+ "line": 404,
"column": 27
}
}
@@ -28696,31 +31084,31 @@
"type": "Identifier",
"name": "Selection",
"range": [
- 15241,
- 15250
+ 16345,
+ 16354
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 28
},
"end": {
- "line": 367,
+ "line": 404,
"column": 37
}
}
},
"range": [
- 15229,
- 15250
+ 16333,
+ 16354
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 16
},
"end": {
- "line": 367,
+ "line": 404,
"column": 37
}
}
@@ -28729,94 +31117,94 @@
"type": "Identifier",
"name": "Remove",
"range": [
- 15251,
- 15257
+ 16355,
+ 16361
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 38
},
"end": {
- "line": 367,
+ "line": 404,
"column": 44
}
}
},
"range": [
- 15229,
- 15257
+ 16333,
+ 16361
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 16
},
"end": {
- "line": 367,
+ "line": 404,
"column": 44
}
}
},
"arguments": [],
"range": [
- 15229,
- 15259
+ 16333,
+ 16363
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 16
},
"end": {
- "line": 367,
+ "line": 404,
"column": 46
}
}
},
"range": [
- 15229,
- 15260
+ 16333,
+ 16364
],
"loc": {
"start": {
- "line": 367,
+ "line": 404,
"column": 16
},
"end": {
- "line": 367,
+ "line": 404,
"column": 47
}
}
}
],
"range": [
- 15154,
- 15274
+ 16258,
+ 16378
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 34
},
"end": {
- "line": 368,
+ "line": 405,
"column": 13
}
}
},
"alternate": null,
"range": [
- 15132,
- 15274
+ 16236,
+ 16378
],
"loc": {
"start": {
- "line": 365,
+ "line": 402,
"column": 12
},
"end": {
- "line": 368,
+ "line": 405,
"column": 13
}
}
@@ -28832,16 +31220,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15290,
- 15294
+ 16394,
+ 16398
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 15
},
"end": {
- "line": 369,
+ "line": 406,
"column": 19
}
}
@@ -28850,31 +31238,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 15295,
- 15298
+ 16399,
+ 16402
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 20
},
"end": {
- "line": 369,
+ "line": 406,
"column": 23
}
}
},
"range": [
- 15290,
- 15298
+ 16394,
+ 16402
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 15
},
"end": {
- "line": 369,
+ "line": 406,
"column": 23
}
}
@@ -28883,31 +31271,31 @@
"type": "Identifier",
"name": "editable",
"range": [
- 15299,
- 15307
+ 16403,
+ 16411
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 24
},
"end": {
- "line": 369,
+ "line": 406,
"column": 32
}
}
},
"range": [
- 15290,
- 15307
+ 16394,
+ 16411
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 15
},
"end": {
- "line": 369,
+ "line": 406,
"column": 32
}
}
@@ -28929,16 +31317,16 @@
"type": "Identifier",
"name": "ezEditTable",
"range": [
- 15326,
- 15337
+ 16430,
+ 16441
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 16
},
"end": {
- "line": 370,
+ "line": 407,
"column": 27
}
}
@@ -28947,31 +31335,31 @@
"type": "Identifier",
"name": "Editable",
"range": [
- 15338,
- 15346
+ 16442,
+ 16450
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 28
},
"end": {
- "line": 370,
+ "line": 407,
"column": 36
}
}
},
"range": [
- 15326,
- 15346
+ 16430,
+ 16450
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 16
},
"end": {
- "line": 370,
+ "line": 407,
"column": 36
}
}
@@ -28980,130 +31368,404 @@
"type": "Identifier",
"name": "Remove",
"range": [
- 15347,
- 15353
+ 16451,
+ 16457
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 37
},
"end": {
- "line": 370,
+ "line": 407,
"column": 43
}
}
},
"range": [
- 15326,
- 15353
+ 16430,
+ 16457
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 16
},
"end": {
- "line": 370,
+ "line": 407,
"column": 43
}
}
},
"arguments": [],
"range": [
- 15326,
- 15355
+ 16430,
+ 16459
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 16
},
"end": {
- "line": 370,
+ "line": 407,
"column": 45
}
}
},
"range": [
- 15326,
- 15356
+ 16430,
+ 16460
],
"loc": {
"start": {
- "line": 370,
+ "line": 407,
"column": 16
},
"end": {
- "line": 370,
+ "line": 407,
"column": 46
}
}
}
],
"range": [
- 15308,
- 15370
+ 16412,
+ 16474
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 33
},
"end": {
- "line": 371,
+ "line": 408,
"column": 13
}
}
},
"alternate": null,
"range": [
- 15287,
- 15370
+ 16391,
+ 16474
],
"loc": {
"start": {
- "line": 369,
+ "line": 406,
"column": 12
},
"end": {
- "line": 371,
+ "line": 408,
"column": 13
}
}
}
],
"range": [
- 15118,
- 15380
+ 16222,
+ 16484
],
"loc": {
"start": {
- "line": 364,
+ "line": 401,
"column": 23
},
"end": {
- "line": 372,
+ "line": 409,
"column": 9
}
}
},
"alternate": null,
"range": [
- 15103,
- 15380
+ 16207,
+ 16484
],
"loc": {
"start": {
- "line": 364,
+ "line": 401,
"column": 8
},
"end": {
- "line": 372,
+ "line": 409,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16494,
+ 16498
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 8
+ },
+ "end": {
+ "line": 411,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 16499,
+ 16506
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 13
+ },
+ "end": {
+ "line": 411,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 16494,
+ 16506
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 8
+ },
+ "end": {
+ "line": 411,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 16507,
+ 16510
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 21
+ },
+ "end": {
+ "line": 411,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 16494,
+ 16510
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 8
+ },
+ "end": {
+ "line": 411,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filter-focus",
+ "raw": "'filter-focus'",
+ "range": [
+ 16512,
+ 16526
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 26
+ },
+ "end": {
+ "line": 411,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "filter-blur",
+ "raw": "'filter-blur'",
+ "range": [
+ 16528,
+ 16541
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 42
+ },
+ "end": {
+ "line": 411,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 16511,
+ 16542
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 25
+ },
+ "end": {
+ "line": 411,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16561,
+ 16565
+ ],
+ "loc": {
+ "start": {
+ "line": 412,
+ "column": 17
+ },
+ "end": {
+ "line": 412,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_toggleForInputFilter",
+ "range": [
+ 16566,
+ 16587
+ ],
+ "loc": {
+ "start": {
+ "line": 412,
+ "column": 22
+ },
+ "end": {
+ "line": 412,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 16561,
+ 16587
+ ],
+ "loc": {
+ "start": {
+ "line": 412,
+ "column": 17
+ },
+ "end": {
+ "line": 412,
+ "column": 43
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 16561,
+ 16589
+ ],
+ "loc": {
+ "start": {
+ "line": 412,
+ "column": 17
+ },
+ "end": {
+ "line": 412,
+ "column": 45
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 16556,
+ 16589
+ ],
+ "loc": {
+ "start": {
+ "line": 412,
+ "column": 12
+ },
+ "end": {
+ "line": 412,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 16494,
+ 16590
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 8
+ },
+ "end": {
+ "line": 412,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 16494,
+ 16591
+ ],
+ "loc": {
+ "start": {
+ "line": 411,
+ "column": 8
+ },
+ "end": {
+ "line": 412,
+ "column": 47
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -29115,16 +31777,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15389,
- 15393
+ 16600,
+ 16604
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 8
},
"end": {
- "line": 373,
+ "line": 413,
"column": 12
}
}
@@ -29133,31 +31795,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 15394,
- 15405
+ 16605,
+ 16616
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 13
},
"end": {
- "line": 373,
+ "line": 413,
"column": 24
}
}
},
"range": [
- 15389,
- 15405
+ 16600,
+ 16616
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 8
},
"end": {
- "line": 373,
+ "line": 413,
"column": 24
}
}
@@ -29167,62 +31829,62 @@
"value": false,
"raw": "false",
"range": [
- 15408,
- 15413
+ 16619,
+ 16624
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 27
},
"end": {
- "line": 373,
+ "line": 413,
"column": 32
}
}
},
"range": [
- 15389,
- 15413
+ 16600,
+ 16624
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 8
},
"end": {
- "line": 373,
+ "line": 413,
"column": 32
}
}
},
"range": [
- 15389,
- 15414
+ 16600,
+ 16625
],
"loc": {
"start": {
- "line": 373,
+ "line": 413,
"column": 8
},
"end": {
- "line": 373,
+ "line": 413,
"column": 33
}
}
}
],
"range": [
- 15048,
- 15420
+ 16152,
+ 16631
],
"loc": {
"start": {
- "line": 362,
+ "line": 399,
"column": 13
},
"end": {
- "line": 374,
+ "line": 414,
"column": 5
}
}
@@ -29230,16 +31892,16 @@
"generator": false,
"expression": false,
"range": [
- 15046,
- 15420
+ 16150,
+ 16631
],
"loc": {
"start": {
- "line": 362,
+ "line": 399,
"column": 11
},
"end": {
- "line": 374,
+ "line": 414,
"column": 5
}
}
@@ -29247,16 +31909,16 @@
"kind": "method",
"computed": false,
"range": [
- 15039,
- 15420
+ 16143,
+ 16631
],
"loc": {
"start": {
- "line": 362,
+ "line": 399,
"column": 4
},
"end": {
- "line": 374,
+ "line": 414,
"column": 5
}
},
@@ -29265,16 +31927,16 @@
"type": "Block",
"value": "*\n * Remove advanced grid\n ",
"range": [
- 14995,
- 15034
+ 16099,
+ 16138
],
"loc": {
"start": {
- "line": 359,
+ "line": 396,
"column": 4
},
"end": {
- "line": 361,
+ "line": 398,
"column": 7
}
}
@@ -29285,7 +31947,7 @@
],
"range": [
70,
- 15422
+ 16633
],
"loc": {
"start": {
@@ -29293,14 +31955,14 @@
"column": 40
},
"end": {
- "line": 375,
+ "line": 415,
"column": 1
}
}
},
"range": [
45,
- 15422
+ 16633
],
"loc": {
"start": {
@@ -29308,7 +31970,7 @@
"column": 15
},
"end": {
- "line": 375,
+ "line": 415,
"column": 1
}
},
@@ -29317,7 +31979,7 @@
},
"range": [
30,
- 15422
+ 16633
],
"loc": {
"start": {
@@ -29325,7 +31987,7 @@
"column": 0
},
"end": {
- "line": 375,
+ "line": 415,
"column": 1
}
}
@@ -29334,7 +31996,7 @@
"sourceType": "module",
"range": [
0,
- 15422
+ 16633
],
"loc": {
"start": {
@@ -29342,7 +32004,7 @@
"column": 0
},
"end": {
- "line": 375,
+ "line": 415,
"column": 1
}
},
@@ -29405,34 +32067,70 @@
"type": "Block",
"value": "*\n * Conditionally load ezEditTable library and set advanced grid\n * @return {[type]} [description]\n ",
"range": [
- 1206,
- 1323
+ 1241,
+ 1358
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 4
},
"end": {
- "line": 34,
+ "line": 35,
"column": 7
}
}
},
+ {
+ "type": "Line",
+ "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
+ "range": [
+ 1796,
+ 1858
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 70
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Needs to be fixed in the vendor's library",
+ "range": [
+ 1867,
+ 1911
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 52
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Instantiate ezEditTable component for advanced grid features\n ",
"range": [
- 1763,
- 1842
+ 2028,
+ 2107
],
"loc": {
"start": {
- "line": 48,
+ "line": 54,
"column": 4
},
"end": {
- "line": 50,
+ "line": 56,
"column": 7
}
}
@@ -29441,16 +32139,16 @@
"type": "Line",
"value": "start row for EditTable constructor needs to be calculated",
"range": [
- 1902,
- 1962
+ 2167,
+ 2227
],
"loc": {
"start": {
- "line": 54,
+ "line": 60,
"column": 8
},
"end": {
- "line": 54,
+ "line": 60,
"column": 68
}
}
@@ -29459,16 +32157,16 @@
"type": "Line",
"value": "if thead exists and startRow not specified, startRow is calculated",
"range": [
- 2068,
- 2136
+ 2333,
+ 2401
],
"loc": {
"start": {
- "line": 59,
+ "line": 65,
"column": 8
},
"end": {
- "line": 59,
+ "line": 65,
"column": 76
}
}
@@ -29477,16 +32175,16 @@
"type": "Line",
"value": "automatically by EditTable",
"range": [
- 2145,
- 2173
+ 2410,
+ 2438
],
"loc": {
"start": {
- "line": 60,
+ "line": 66,
"column": 8
},
"end": {
- "line": 60,
+ "line": 66,
"column": 36
}
}
@@ -29495,16 +32193,16 @@
"type": "Line",
"value": "otherwise startRow config property if any or TableFilter refRow",
"range": [
- 2273,
- 2338
+ 2538,
+ 2603
],
"loc": {
"start": {
- "line": 64,
+ "line": 70,
"column": 8
},
"end": {
- "line": 64,
+ "line": 70,
"column": 73
}
}
@@ -29513,16 +32211,16 @@
"type": "Line",
"value": "CSS Styles",
"range": [
- 2674,
- 2686
+ 2939,
+ 2951
],
"loc": {
"start": {
- "line": 76,
+ "line": 82,
"column": 8
},
"end": {
- "line": 76,
+ "line": 82,
"column": 20
}
}
@@ -29531,16 +32229,16 @@
"type": "Line",
"value": "Row navigation needs to be calculated according to TableFilter's",
"range": [
- 2865,
- 2931
+ 3130,
+ 3196
],
"loc": {
"start": {
- "line": 83,
+ "line": 89,
"column": 12
},
"end": {
- "line": 83,
+ "line": 89,
"column": 78
}
}
@@ -29549,16 +32247,16 @@
"type": "Line",
"value": "validRowsIndex array",
"range": [
- 2944,
- 2966
+ 3209,
+ 3231
],
"loc": {
"start": {
- "line": 84,
+ "line": 90,
"column": 12
},
"end": {
- "line": 84,
+ "line": 90,
"column": 34
}
}
@@ -29567,16 +32265,16 @@
"type": "Line",
"value": "Next valid filtered row needs to be selected",
"range": [
- 3088,
- 3134
+ 3353,
+ 3399
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 16
},
"end": {
- "line": 87,
+ "line": 93,
"column": 62
}
}
@@ -29585,16 +32283,16 @@
"type": "Line",
"value": "Table is filtered",
"range": [
- 3821,
- 3840
+ 4086,
+ 4105
],
"loc": {
"start": {
- "line": 102,
+ "line": 108,
"column": 20
},
"end": {
- "line": 102,
+ "line": 108,
"column": 39
}
}
@@ -29603,16 +32301,16 @@
"type": "Line",
"value": "table is not filtered",
"range": [
- 4675,
- 4698
+ 4940,
+ 4963
],
"loc": {
"start": {
- "line": 122,
+ "line": 128,
"column": 16
},
"end": {
- "line": 122,
+ "line": 128,
"column": 39
}
}
@@ -29621,16 +32319,16 @@
"type": "Line",
"value": "cell for default_selection = 'both' or 'cell'",
"range": [
- 5034,
- 5081
+ 5299,
+ 5346
],
"loc": {
"start": {
- "line": 130,
+ "line": 136,
"column": 20
},
"end": {
- "line": 130,
+ "line": 136,
"column": 67
}
}
@@ -29639,16 +32337,16 @@
"type": "Line",
"value": "pgup/pgdown keys",
"range": [
- 5412,
- 5430
+ 5677,
+ 5695
],
"loc": {
"start": {
- "line": 136,
+ "line": 142,
"column": 20
},
"end": {
- "line": 136,
+ "line": 142,
"column": 38
}
}
@@ -29657,16 +32355,16 @@
"type": "Line",
"value": "If next row is not valid, next valid filtered row needs to be",
"range": [
- 5589,
- 5652
+ 5854,
+ 5917
],
"loc": {
"start": {
- "line": 140,
+ "line": 146,
"column": 16
},
"end": {
- "line": 140,
+ "line": 146,
"column": 79
}
}
@@ -29675,16 +32373,16 @@
"type": "Line",
"value": "calculated",
"range": [
- 5669,
- 5681
+ 5934,
+ 5946
],
"loc": {
"start": {
- "line": 141,
+ "line": 147,
"column": 16
},
"end": {
- "line": 141,
+ "line": 147,
"column": 28
}
}
@@ -29693,16 +32391,16 @@
"type": "Line",
"value": "Selection direction up/down",
"range": [
- 5735,
- 5764
+ 6000,
+ 6029
],
"loc": {
"start": {
- "line": 143,
+ "line": 149,
"column": 20
},
"end": {
- "line": 143,
+ "line": 149,
"column": 49
}
}
@@ -29711,16 +32409,16 @@
"type": "Line",
"value": "last row",
"range": [
- 5841,
- 5851
+ 6106,
+ 6116
],
"loc": {
"start": {
- "line": 145,
+ "line": 151,
"column": 24
},
"end": {
- "line": 145,
+ "line": 151,
"column": 34
}
}
@@ -29729,16 +32427,16 @@
"type": "Line",
"value": "first row",
"range": [
- 6463,
- 6474
+ 6728,
+ 6739
],
"loc": {
"start": {
- "line": 157,
+ "line": 163,
"column": 24
},
"end": {
- "line": 157,
+ "line": 163,
"column": 35
}
}
@@ -29747,16 +32445,16 @@
"type": "Line",
"value": "If filtered row is valid, special calculation for",
"range": [
- 6958,
- 7009
+ 7223,
+ 7274
],
"loc": {
"start": {
- "line": 168,
+ "line": 174,
"column": 20
},
"end": {
- "line": 168,
+ "line": 174,
"column": 71
}
}
@@ -29765,16 +32463,16 @@
"type": "Line",
"value": "pgup/pgdown keys",
"range": [
- 7030,
- 7048
+ 7295,
+ 7313
],
"loc": {
"start": {
- "line": 169,
+ "line": 175,
"column": 20
},
"end": {
- "line": 169,
+ "line": 175,
"column": 38
}
}
@@ -29783,16 +32481,16 @@
"type": "Line",
"value": "pgdown",
"range": [
- 7311,
- 7319
+ 7576,
+ 7584
],
"loc": {
"start": {
- "line": 174,
+ "line": 180,
"column": 44
},
"end": {
- "line": 174,
+ "line": 180,
"column": 52
}
}
@@ -29801,16 +32499,16 @@
"type": "Line",
"value": "last row",
"range": [
- 7348,
- 7358
+ 7613,
+ 7623
],
"loc": {
"start": {
- "line": 175,
+ "line": 181,
"column": 28
},
"end": {
- "line": 175,
+ "line": 181,
"column": 38
}
}
@@ -29819,16 +32517,16 @@
"type": "Line",
"value": "pgup",
"range": [
- 7718,
- 7724
+ 7983,
+ 7989
],
"loc": {
"start": {
- "line": 182,
+ "line": 188,
"column": 33
},
"end": {
- "line": 182,
+ "line": 188,
"column": 39
}
}
@@ -29837,16 +32535,16 @@
"type": "Line",
"value": "first row",
"range": [
- 7753,
- 7764
+ 8018,
+ 8029
],
"loc": {
"start": {
- "line": 183,
+ "line": 189,
"column": 28
},
"end": {
- "line": 183,
+ "line": 189,
"column": 39
}
}
@@ -29855,16 +32553,16 @@
"type": "Line",
"value": "Page navigation has to be enforced whenever selected row is out of",
"range": [
- 8372,
- 8440
+ 8637,
+ 8705
],
"loc": {
"start": {
- "line": 198,
+ "line": 204,
"column": 12
},
"end": {
- "line": 198,
+ "line": 204,
"column": 80
}
}
@@ -29873,16 +32571,16 @@
"type": "Line",
"value": "the current page range",
"range": [
- 8453,
- 8477
+ 8718,
+ 8742
],
"loc": {
"start": {
- "line": 199,
+ "line": 205,
"column": 12
},
"end": {
- "line": 199,
+ "line": 205,
"column": 36
}
}
@@ -29891,16 +32589,16 @@
"type": "Line",
"value": "page length is re-assigned in case it has changed",
"range": [
- 8829,
- 8880
+ 9094,
+ 9145
],
"loc": {
"start": {
- "line": 206,
+ "line": 212,
"column": 24
},
"end": {
- "line": 206,
+ "line": 212,
"column": 75
}
}
@@ -29909,16 +32607,16 @@
"type": "Line",
"value": "Selected row needs to be visible when paging is activated",
"range": [
- 10230,
- 10289
+ 10495,
+ 10554
],
"loc": {
"start": {
- "line": 235,
+ "line": 241,
"column": 12
},
"end": {
- "line": 235,
+ "line": 241,
"column": 71
}
}
@@ -29927,16 +32625,16 @@
"type": "Line",
"value": "Rows navigation when rows are filtered is performed with the",
"range": [
- 10912,
- 10974
+ 11177,
+ 11239
],
"loc": {
"start": {
- "line": 252,
+ "line": 258,
"column": 12
},
"end": {
- "line": 252,
+ "line": 258,
"column": 74
}
}
@@ -29945,16 +32643,16 @@
"type": "Line",
"value": "EditTable row selection callback events",
"range": [
- 10987,
- 11028
+ 11252,
+ 11293
],
"loc": {
"start": {
- "line": 253,
+ "line": 259,
"column": 12
},
"end": {
- "line": 253,
+ "line": 259,
"column": 53
}
}
@@ -29963,34 +32661,88 @@
"type": "Line",
"value": "Added or removed rows, TF rows number needs to be re-calculated",
"range": [
- 12645,
- 12710
+ 12910,
+ 12975
],
"loc": {
"start": {
- "line": 291,
+ "line": 297,
"column": 12
},
"end": {
- "line": 291,
+ "line": 297,
"column": 77
}
}
},
+ {
+ "type": "Line",
+ "value": "tf.feature('rowsCounter').refresh();",
+ "range": [
+ 13221,
+ 13259
+ ],
+ "loc": {
+ "start": {
+ "line": 303,
+ "column": 20
+ },
+ "end": {
+ "line": 303,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " tf.feature('rowsCounter').refresh();",
+ "range": [
+ 14096,
+ 14135
+ ],
+ "loc": {
+ "start": {
+ "line": 324,
+ "column": 24
+ },
+ "end": {
+ "line": 324,
+ "column": 63
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Reset advanced grid when previously removed\n ",
"range": [
- 14640,
- 14702
+ 15040,
+ 15102
],
"loc": {
"start": {
- "line": 344,
+ "line": 352,
"column": 4
},
"end": {
- "line": 346,
+ "line": 354,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Toggle behaviour\n ",
+ "range": [
+ 15395,
+ 15430
+ ],
+ "loc": {
+ "start": {
+ "line": 367,
+ "column": 4
+ },
+ "end": {
+ "line": 369,
"column": 7
}
}
@@ -29999,16 +32751,16 @@
"type": "Block",
"value": "*\n * Remove advanced grid\n ",
"range": [
- 14995,
- 15034
+ 16099,
+ 16138
],
"loc": {
"start": {
- "line": 359,
+ "line": 396,
"column": 4
},
"end": {
- "line": 361,
+ "line": 398,
"column": 7
}
}
diff --git a/docs/ast/source/src/extensions/colOps/colOps.js.json b/docs/ast/source/src/extensions/colOps/colOps.js.json
index d8c6201a..360a4319 100644
--- a/docs/ast/source/src/extensions/colOps/colOps.js.json
+++ b/docs/ast/source/src/extensions/colOps/colOps.js.json
@@ -1298,43 +1298,295 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 673,
+ 677
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 678,
+ 680
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 13
+ },
+ "end": {
+ "line": 26,
+ "column": 15
+ }
+ }
+ },
+ "range": [
+ 673,
+ 680
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 681,
+ 688
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 16
+ },
+ "end": {
+ "line": 26,
+ "column": 23
+ }
+ }
+ },
"range": [
- 642,
- 646
+ 673,
+ 688
],
"loc": {
"start": {
- "line": 25,
+ "line": 26,
"column": 8
},
"end": {
- "line": 25,
- "column": 12
+ "line": 26,
+ "column": 23
}
}
},
"property": {
"type": "Identifier",
- "name": "calc",
+ "name": "on",
"range": [
- 647,
- 651
+ 689,
+ 691
],
"loc": {
"start": {
- "line": 25,
- "column": 13
+ "line": 26,
+ "column": 24
},
"end": {
- "line": 25,
- "column": 17
+ "line": 26,
+ "column": 26
}
}
},
+ "range": [
+ 673,
+ 691
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 693,
+ 710
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 28
+ },
+ "end": {
+ "line": 26,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 692,
+ 711
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 27
+ },
+ "end": {
+ "line": 26,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 718,
+ 722
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 53
+ },
+ "end": {
+ "line": 26,
+ "column": 57
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "calc",
+ "range": [
+ 723,
+ 727
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 58
+ },
+ "end": {
+ "line": 26,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 718,
+ 727
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 53
+ },
+ "end": {
+ "line": 26,
+ "column": 62
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 718,
+ 729
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 53
+ },
+ "end": {
+ "line": 26,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 713,
+ 729
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 48
+ },
+ "end": {
+ "line": 26,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 673,
+ 730
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 673,
+ 731
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 66
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to events",
"range": [
642,
- 651
+ 664
],
"loc": {
"start": {
@@ -1343,37 +1595,96 @@
},
"end": {
"line": 25,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 741,
+ 745
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 8
+ },
+ "end": {
+ "line": 28,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "calc",
+ "range": [
+ 746,
+ 750
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 13
+ },
+ "end": {
+ "line": 28,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 741,
+ 750
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 8
+ },
+ "end": {
+ "line": 28,
"column": 17
}
}
},
"arguments": [],
"range": [
- 642,
- 653
+ 741,
+ 752
],
"loc": {
"start": {
- "line": 25,
+ "line": 28,
"column": 8
},
"end": {
- "line": 25,
+ "line": 28,
"column": 19
}
}
},
"range": [
- 642,
- 654
+ 741,
+ 753
],
"loc": {
"start": {
- "line": 25,
+ "line": 28,
"column": 8
},
"end": {
- "line": 25,
+ "line": 28,
"column": 20
}
}
@@ -1381,7 +1692,7 @@
],
"range": [
632,
- 660
+ 759
],
"loc": {
"start": {
@@ -1389,7 +1700,7 @@
"column": 10
},
"end": {
- "line": 26,
+ "line": 29,
"column": 5
}
}
@@ -1398,7 +1709,7 @@
"expression": false,
"range": [
630,
- 660
+ 759
],
"loc": {
"start": {
@@ -1406,7 +1717,7 @@
"column": 8
},
"end": {
- "line": 26,
+ "line": 29,
"column": 5
}
}
@@ -1415,7 +1726,7 @@
"computed": false,
"range": [
626,
- 660
+ 759
],
"loc": {
"start": {
@@ -1423,7 +1734,7 @@
"column": 4
},
"end": {
- "line": 26,
+ "line": 29,
"column": 5
}
},
@@ -1432,16 +1743,16 @@
"type": "Block",
"value": "*\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n ",
"range": [
- 666,
- 1447
+ 765,
+ 1546
],
"loc": {
"start": {
- "line": 28,
+ "line": 31,
"column": 4
},
"end": {
- "line": 43,
+ "line": 46,
"column": 7
}
}
@@ -1455,16 +1766,16 @@
"type": "Identifier",
"name": "calc",
"range": [
- 1452,
- 1456
+ 1551,
+ 1555
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 4
},
"end": {
- "line": 44,
+ "line": 47,
"column": 8
}
}
@@ -1485,16 +1796,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1473,
- 1475
+ 1572,
+ 1574
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 12
},
"end": {
- "line": 45,
+ "line": 48,
"column": 14
}
}
@@ -1505,16 +1816,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1478,
- 1482
+ 1577,
+ 1581
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 17
},
"end": {
- "line": 45,
+ "line": 48,
"column": 21
}
}
@@ -1523,46 +1834,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1483,
- 1485
+ 1582,
+ 1584
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 22
},
"end": {
- "line": 45,
+ "line": 48,
"column": 24
}
}
},
"range": [
- 1478,
- 1485
+ 1577,
+ 1584
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 17
},
"end": {
- "line": 45,
+ "line": 48,
"column": 24
}
}
},
"range": [
- 1473,
- 1485
+ 1572,
+ 1584
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 12
},
"end": {
- "line": 45,
+ "line": 48,
"column": 24
}
}
@@ -1570,16 +1881,16 @@
],
"kind": "var",
"range": [
- 1469,
- 1486
+ 1568,
+ 1585
],
"loc": {
"start": {
- "line": 45,
+ "line": 48,
"column": 8
},
"end": {
- "line": 45,
+ "line": 48,
"column": 25
}
}
@@ -1587,184 +1898,93 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "Identifier",
"name": "tf",
"range": [
- 1499,
- 1501
+ 1598,
+ 1600
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 12
},
"end": {
- "line": 46,
+ "line": 49,
"column": 14
}
}
},
"property": {
"type": "Identifier",
- "name": "isFirstLoad",
+ "name": "hasGrid",
"range": [
- 1502,
- 1513
+ 1601,
+ 1608
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 15
},
"end": {
- "line": 46,
- "column": 26
+ "line": 49,
+ "column": 22
}
}
},
"range": [
- 1499,
- 1513
+ 1598,
+ 1608
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 12
},
"end": {
- "line": 46,
- "column": 26
+ "line": 49,
+ "column": 22
}
}
},
- "prefix": true,
+ "arguments": [],
"range": [
- 1498,
- 1513
+ 1598,
+ 1610
],
"loc": {
"start": {
- "line": 46,
- "column": 11
+ "line": 49,
+ "column": 12
},
"end": {
- "line": 46,
- "column": 26
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1518,
- 1520
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 31
- },
- "end": {
- "line": 46,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasGrid",
- "range": [
- 1521,
- 1528
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 34
- },
- "end": {
- "line": 46,
- "column": 41
- }
- }
- },
- "range": [
- 1518,
- 1528
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 31
- },
- "end": {
- "line": 46,
- "column": 41
- }
- }
- },
- "arguments": [],
- "range": [
- 1518,
- 1530
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 31
- },
- "end": {
- "line": 46,
- "column": 43
- }
- }
- },
- "prefix": true,
- "range": [
- 1517,
- 1530
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 30
- },
- "end": {
- "line": 46,
- "column": 43
+ "line": 49,
+ "column": 24
}
}
},
+ "prefix": true,
"range": [
- 1498,
- 1530
+ 1597,
+ 1610
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 11
},
"end": {
- "line": 46,
- "column": 43
+ "line": 49,
+ "column": 24
}
}
},
@@ -1775,48 +1995,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1545,
- 1552
+ 1625,
+ 1632
],
"loc": {
"start": {
- "line": 47,
+ "line": 50,
"column": 12
},
"end": {
- "line": 47,
+ "line": 50,
"column": 19
}
}
}
],
"range": [
- 1531,
- 1562
+ 1611,
+ 1642
],
"loc": {
"start": {
- "line": 46,
- "column": 44
+ "line": 49,
+ "column": 25
},
"end": {
- "line": 48,
+ "line": 51,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1495,
- 1562
+ 1594,
+ 1642
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 8
},
"end": {
- "line": 48,
+ "line": 51,
"column": 9
}
}
@@ -1829,16 +2049,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1575,
- 1579
+ 1655,
+ 1659
],
"loc": {
"start": {
- "line": 50,
+ "line": 53,
"column": 11
},
"end": {
- "line": 50,
+ "line": 53,
"column": 15
}
}
@@ -1847,31 +2067,31 @@
"type": "Identifier",
"name": "onBeforeOperation",
"range": [
- 1580,
- 1597
+ 1660,
+ 1677
],
"loc": {
"start": {
- "line": 50,
+ "line": 53,
"column": 16
},
"end": {
- "line": 50,
+ "line": 53,
"column": 33
}
}
},
"range": [
- 1575,
- 1597
+ 1655,
+ 1677
],
"loc": {
"start": {
- "line": 50,
+ "line": 53,
"column": 11
},
"end": {
- "line": 50,
+ "line": 53,
"column": 33
}
}
@@ -1892,16 +2112,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1612,
- 1616
+ 1692,
+ 1696
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 12
},
"end": {
- "line": 51,
+ "line": 54,
"column": 16
}
}
@@ -1910,31 +2130,31 @@
"type": "Identifier",
"name": "onBeforeOperation",
"range": [
- 1617,
- 1634
+ 1697,
+ 1714
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 17
},
"end": {
- "line": 51,
+ "line": 54,
"column": 34
}
}
},
"range": [
- 1612,
- 1634
+ 1692,
+ 1714
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 12
},
"end": {
- "line": 51,
+ "line": 54,
"column": 34
}
}
@@ -1943,31 +2163,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 1635,
- 1639
+ 1715,
+ 1719
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 35
},
"end": {
- "line": 51,
+ "line": 54,
"column": 39
}
}
},
"range": [
- 1612,
- 1639
+ 1692,
+ 1719
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 12
},
"end": {
- "line": 51,
+ "line": 54,
"column": 39
}
}
@@ -1978,16 +2198,16 @@
"value": null,
"raw": "null",
"range": [
- 1640,
- 1644
+ 1720,
+ 1724
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 40
},
"end": {
- "line": 51,
+ "line": 54,
"column": 44
}
}
@@ -1996,79 +2216,79 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1646,
- 1648
+ 1726,
+ 1728
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 46
},
"end": {
- "line": 51,
+ "line": 54,
"column": 48
}
}
}
],
"range": [
- 1612,
- 1649
+ 1692,
+ 1729
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 12
},
"end": {
- "line": 51,
+ "line": 54,
"column": 49
}
}
},
"range": [
- 1612,
- 1650
+ 1692,
+ 1730
],
"loc": {
"start": {
- "line": 51,
+ "line": 54,
"column": 12
},
"end": {
- "line": 51,
+ "line": 54,
"column": 50
}
}
}
],
"range": [
- 1598,
- 1660
+ 1678,
+ 1740
],
"loc": {
"start": {
- "line": 50,
+ "line": 53,
"column": 34
},
"end": {
- "line": 52,
+ "line": 55,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1572,
- 1660
+ 1652,
+ 1740
],
"loc": {
"start": {
- "line": 50,
+ "line": 53,
"column": 8
},
"end": {
- "line": 52,
+ "line": 55,
"column": 9
}
}
@@ -2082,16 +2302,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1674,
- 1678
+ 1754,
+ 1758
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 12
},
"end": {
- "line": 54,
+ "line": 57,
"column": 16
}
}
@@ -2102,16 +2322,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1681,
- 1685
+ 1761,
+ 1765
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 19
},
"end": {
- "line": 54,
+ "line": 57,
"column": 23
}
}
@@ -2120,46 +2340,46 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1686,
- 1690
+ 1766,
+ 1770
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 24
},
"end": {
- "line": 54,
+ "line": 57,
"column": 28
}
}
},
"range": [
- 1681,
- 1690
+ 1761,
+ 1770
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 19
},
"end": {
- "line": 54,
+ "line": 57,
"column": 28
}
}
},
"range": [
- 1674,
- 1690
+ 1754,
+ 1770
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 12
},
"end": {
- "line": 54,
+ "line": 57,
"column": 28
}
}
@@ -2170,16 +2390,16 @@
"type": "Identifier",
"name": "labelId",
"range": [
- 1704,
- 1711
+ 1784,
+ 1791
],
"loc": {
"start": {
- "line": 55,
+ "line": 58,
"column": 12
},
"end": {
- "line": 55,
+ "line": 58,
"column": 19
}
}
@@ -2191,16 +2411,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1714,
- 1718
+ 1794,
+ 1798
],
"loc": {
"start": {
- "line": 55,
+ "line": 58,
"column": 22
},
"end": {
- "line": 55,
+ "line": 58,
"column": 26
}
}
@@ -2209,46 +2429,46 @@
"type": "Identifier",
"name": "id",
"range": [
- 1719,
- 1721
+ 1799,
+ 1801
],
"loc": {
"start": {
- "line": 55,
+ "line": 58,
"column": 27
},
"end": {
- "line": 55,
+ "line": 58,
"column": 29
}
}
},
"range": [
- 1714,
- 1721
+ 1794,
+ 1801
],
"loc": {
"start": {
- "line": 55,
+ "line": 58,
"column": 22
},
"end": {
- "line": 55,
+ "line": 58,
"column": 29
}
}
},
"range": [
- 1704,
- 1721
+ 1784,
+ 1801
],
"loc": {
"start": {
- "line": 55,
+ "line": 58,
"column": 12
},
"end": {
- "line": 55,
+ "line": 58,
"column": 29
}
}
@@ -2259,16 +2479,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 1735,
- 1743
+ 1815,
+ 1823
],
"loc": {
"start": {
- "line": 56,
+ "line": 59,
"column": 12
},
"end": {
- "line": 56,
+ "line": 59,
"column": 20
}
}
@@ -2280,16 +2500,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1746,
- 1750
+ 1826,
+ 1830
],
"loc": {
"start": {
- "line": 56,
+ "line": 59,
"column": 23
},
"end": {
- "line": 56,
+ "line": 59,
"column": 27
}
}
@@ -2298,46 +2518,46 @@
"type": "Identifier",
"name": "col",
"range": [
- 1751,
- 1754
+ 1831,
+ 1834
],
"loc": {
"start": {
- "line": 56,
+ "line": 59,
"column": 28
},
"end": {
- "line": 56,
+ "line": 59,
"column": 31
}
}
},
"range": [
- 1746,
- 1754
+ 1826,
+ 1834
],
"loc": {
"start": {
- "line": 56,
+ "line": 59,
"column": 23
},
"end": {
- "line": 56,
+ "line": 59,
"column": 31
}
}
},
"range": [
- 1735,
- 1754
+ 1815,
+ 1834
],
"loc": {
"start": {
- "line": 56,
+ "line": 59,
"column": 12
},
"end": {
- "line": 56,
+ "line": 59,
"column": 31
}
}
@@ -2348,16 +2568,16 @@
"type": "Identifier",
"name": "operation",
"range": [
- 1768,
- 1777
+ 1848,
+ 1857
],
"loc": {
"start": {
- "line": 57,
+ "line": 60,
"column": 12
},
"end": {
- "line": 57,
+ "line": 60,
"column": 21
}
}
@@ -2369,16 +2589,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1780,
- 1784
+ 1860,
+ 1864
],
"loc": {
"start": {
- "line": 57,
+ "line": 60,
"column": 24
},
"end": {
- "line": 57,
+ "line": 60,
"column": 28
}
}
@@ -2387,46 +2607,46 @@
"type": "Identifier",
"name": "operation",
"range": [
- 1785,
- 1794
+ 1865,
+ 1874
],
"loc": {
"start": {
- "line": 57,
+ "line": 60,
"column": 29
},
"end": {
- "line": 57,
+ "line": 60,
"column": 38
}
}
},
"range": [
- 1780,
- 1794
+ 1860,
+ 1874
],
"loc": {
"start": {
- "line": 57,
+ "line": 60,
"column": 24
},
"end": {
- "line": 57,
+ "line": 60,
"column": 38
}
}
},
"range": [
- 1768,
- 1794
+ 1848,
+ 1874
],
"loc": {
"start": {
- "line": 57,
+ "line": 60,
"column": 12
},
"end": {
- "line": 57,
+ "line": 60,
"column": 38
}
}
@@ -2437,16 +2657,16 @@
"type": "Identifier",
"name": "outputType",
"range": [
- 1808,
- 1818
+ 1888,
+ 1898
],
"loc": {
"start": {
- "line": 58,
+ "line": 61,
"column": 12
},
"end": {
- "line": 58,
+ "line": 61,
"column": 22
}
}
@@ -2458,16 +2678,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1821,
- 1825
+ 1901,
+ 1905
],
"loc": {
"start": {
- "line": 58,
+ "line": 61,
"column": 25
},
"end": {
- "line": 58,
+ "line": 61,
"column": 29
}
}
@@ -2476,46 +2696,46 @@
"type": "Identifier",
"name": "write_method",
"range": [
- 1826,
- 1838
+ 1906,
+ 1918
],
"loc": {
"start": {
- "line": 58,
+ "line": 61,
"column": 30
},
"end": {
- "line": 58,
+ "line": 61,
"column": 42
}
}
},
"range": [
- 1821,
- 1838
+ 1901,
+ 1918
],
"loc": {
"start": {
- "line": 58,
+ "line": 61,
"column": 25
},
"end": {
- "line": 58,
+ "line": 61,
"column": 42
}
}
},
"range": [
- 1808,
- 1838
+ 1888,
+ 1918
],
"loc": {
"start": {
- "line": 58,
+ "line": 61,
"column": 12
},
"end": {
- "line": 58,
+ "line": 61,
"column": 42
}
}
@@ -2526,16 +2746,16 @@
"type": "Identifier",
"name": "totRowIndex",
"range": [
- 1852,
- 1863
+ 1932,
+ 1943
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 12
},
"end": {
- "line": 59,
+ "line": 62,
"column": 23
}
}
@@ -2547,16 +2767,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1866,
- 1870
+ 1946,
+ 1950
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 26
},
"end": {
- "line": 59,
+ "line": 62,
"column": 30
}
}
@@ -2565,46 +2785,46 @@
"type": "Identifier",
"name": "tot_row_index",
"range": [
- 1871,
- 1884
+ 1951,
+ 1964
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 31
},
"end": {
- "line": 59,
+ "line": 62,
"column": 44
}
}
},
"range": [
- 1866,
- 1884
+ 1946,
+ 1964
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 26
},
"end": {
- "line": 59,
+ "line": 62,
"column": 44
}
}
},
"range": [
- 1852,
- 1884
+ 1932,
+ 1964
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 12
},
"end": {
- "line": 59,
+ "line": 62,
"column": 44
}
}
@@ -2615,16 +2835,16 @@
"type": "Identifier",
"name": "excludeRow",
"range": [
- 1898,
- 1908
+ 1978,
+ 1988
],
"loc": {
"start": {
- "line": 60,
+ "line": 63,
"column": 12
},
"end": {
- "line": 60,
+ "line": 63,
"column": 22
}
}
@@ -2636,16 +2856,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1911,
- 1915
+ 1991,
+ 1995
],
"loc": {
"start": {
- "line": 60,
+ "line": 63,
"column": 25
},
"end": {
- "line": 60,
+ "line": 63,
"column": 29
}
}
@@ -2654,46 +2874,46 @@
"type": "Identifier",
"name": "exclude_row",
"range": [
- 1916,
- 1927
+ 1996,
+ 2007
],
"loc": {
"start": {
- "line": 60,
+ "line": 63,
"column": 30
},
"end": {
- "line": 60,
+ "line": 63,
"column": 41
}
}
},
"range": [
- 1911,
- 1927
+ 1991,
+ 2007
],
"loc": {
"start": {
- "line": 60,
+ "line": 63,
"column": 25
},
"end": {
- "line": 60,
+ "line": 63,
"column": 41
}
}
},
"range": [
- 1898,
- 1927
+ 1978,
+ 2007
],
"loc": {
"start": {
- "line": 60,
+ "line": 63,
"column": 12
},
"end": {
- "line": 60,
+ "line": 63,
"column": 41
}
}
@@ -2704,16 +2924,16 @@
"type": "Identifier",
"name": "decimalPrecision",
"range": [
- 1941,
- 1957
+ 2021,
+ 2037
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 12
},
"end": {
- "line": 61,
+ "line": 64,
"column": 28
}
}
@@ -2729,16 +2949,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1960,
- 1965
+ 2040,
+ 2045
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 31
},
"end": {
- "line": 61,
+ "line": 64,
"column": 36
}
}
@@ -2747,31 +2967,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 1966,
- 1973
+ 2046,
+ 2053
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 37
},
"end": {
- "line": 61,
+ "line": 64,
"column": 44
}
}
},
"range": [
- 1960,
- 1973
+ 2040,
+ 2053
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 31
},
"end": {
- "line": 61,
+ "line": 64,
"column": 44
}
}
@@ -2784,16 +3004,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1974,
- 1978
+ 2054,
+ 2058
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 45
},
"end": {
- "line": 61,
+ "line": 64,
"column": 49
}
}
@@ -2802,47 +3022,47 @@
"type": "Identifier",
"name": "decimal_precision",
"range": [
- 1979,
- 1996
+ 2059,
+ 2076
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 50
},
"end": {
- "line": 61,
+ "line": 64,
"column": 67
}
}
},
"range": [
- 1974,
- 1996
+ 2054,
+ 2076
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 45
},
"end": {
- "line": 61,
+ "line": 64,
"column": 67
}
}
}
],
"range": [
- 1960,
- 1997
+ 2040,
+ 2077
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 31
},
"end": {
- "line": 61,
+ "line": 64,
"column": 68
}
}
@@ -2852,16 +3072,16 @@
"value": 2,
"raw": "2",
"range": [
- 2016,
- 2017
+ 2096,
+ 2097
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 16
},
"end": {
- "line": 62,
+ "line": 65,
"column": 17
}
}
@@ -2873,16 +3093,16 @@
"type": "Identifier",
"name": "opts",
"range": [
- 2020,
- 2024
+ 2100,
+ 2104
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 20
},
"end": {
- "line": 62,
+ "line": 65,
"column": 24
}
}
@@ -2891,61 +3111,61 @@
"type": "Identifier",
"name": "decimal_precision",
"range": [
- 2025,
- 2042
+ 2105,
+ 2122
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 25
},
"end": {
- "line": 62,
+ "line": 65,
"column": 42
}
}
},
"range": [
- 2020,
- 2042
+ 2100,
+ 2122
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 20
},
"end": {
- "line": 62,
+ "line": 65,
"column": 42
}
}
},
"range": [
- 1960,
- 2042
+ 2040,
+ 2122
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 31
},
"end": {
- "line": 62,
+ "line": 65,
"column": 42
}
}
},
"range": [
- 1941,
- 2042
+ 2021,
+ 2122
],
"loc": {
"start": {
- "line": 61,
+ "line": 64,
"column": 12
},
"end": {
- "line": 62,
+ "line": 65,
"column": 42
}
}
@@ -2953,16 +3173,16 @@
],
"kind": "var",
"range": [
- 1670,
- 2043
+ 1750,
+ 2123
],
"loc": {
"start": {
- "line": 54,
+ "line": 57,
"column": 8
},
"end": {
- "line": 62,
+ "line": 65,
"column": 43
}
},
@@ -2971,16 +3191,16 @@
"type": "Line",
"value": "nuovella: determine unique list of columns to operate on",
"range": [
- 2053,
- 2111
+ 2133,
+ 2191
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 8
},
"end": {
- "line": 64,
+ "line": 67,
"column": 66
}
}
@@ -2996,16 +3216,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 2124,
- 2133
+ 2204,
+ 2213
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 12
},
"end": {
- "line": 65,
+ "line": 68,
"column": 21
}
}
@@ -3014,31 +3234,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2136,
- 2138
+ 2216,
+ 2218
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 24
},
"end": {
- "line": 65,
+ "line": 68,
"column": 26
}
}
},
"range": [
- 2124,
- 2138
+ 2204,
+ 2218
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 12
},
"end": {
- "line": 65,
+ "line": 68,
"column": 26
}
}
@@ -3049,16 +3269,16 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2152,
- 2159
+ 2232,
+ 2239
],
"loc": {
"start": {
- "line": 66,
+ "line": 69,
"column": 12
},
"end": {
- "line": 66,
+ "line": 69,
"column": 19
}
}
@@ -3068,31 +3288,31 @@
"value": 0,
"raw": "0",
"range": [
- 2162,
- 2163
+ 2242,
+ 2243
],
"loc": {
"start": {
- "line": 66,
+ "line": 69,
"column": 22
},
"end": {
- "line": 66,
+ "line": 69,
"column": 23
}
}
},
"range": [
- 2152,
- 2163
+ 2232,
+ 2243
],
"loc": {
"start": {
- "line": 66,
+ "line": 69,
"column": 12
},
"end": {
- "line": 66,
+ "line": 69,
"column": 23
}
}
@@ -3100,16 +3320,16 @@
],
"kind": "var",
"range": [
- 2120,
- 2164
+ 2200,
+ 2244
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 8
},
"end": {
- "line": 66,
+ "line": 69,
"column": 24
}
},
@@ -3118,16 +3338,16 @@
"type": "Line",
"value": "nuovella: determine unique list of columns to operate on",
"range": [
- 2053,
- 2111
+ 2133,
+ 2191
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 8
},
"end": {
- "line": 64,
+ "line": 67,
"column": 66
}
}
@@ -3146,16 +3366,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 2173,
- 2182
+ 2253,
+ 2262
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 8
},
"end": {
- "line": 67,
+ "line": 70,
"column": 17
}
}
@@ -3164,31 +3384,31 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2183,
- 2190
+ 2263,
+ 2270
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 18
},
"end": {
- "line": 67,
+ "line": 70,
"column": 25
}
}
},
"range": [
- 2173,
- 2191
+ 2253,
+ 2271
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 8
},
"end": {
- "line": 67,
+ "line": 70,
"column": 26
}
}
@@ -3200,16 +3420,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2194,
- 2202
+ 2274,
+ 2282
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 29
},
"end": {
- "line": 67,
+ "line": 70,
"column": 37
}
}
@@ -3219,61 +3439,61 @@
"value": 0,
"raw": "0",
"range": [
- 2203,
- 2204
+ 2283,
+ 2284
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 38
},
"end": {
- "line": 67,
+ "line": 70,
"column": 39
}
}
},
"range": [
- 2194,
- 2205
+ 2274,
+ 2285
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 29
},
"end": {
- "line": 67,
+ "line": 70,
"column": 40
}
}
},
"range": [
- 2173,
- 2205
+ 2253,
+ 2285
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 8
},
"end": {
- "line": 67,
+ "line": 70,
"column": 40
}
}
},
"range": [
- 2173,
- 2206
+ 2253,
+ 2286
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 8
},
"end": {
- "line": 67,
+ "line": 70,
"column": 41
}
}
@@ -3289,16 +3509,16 @@
"type": "Identifier",
"name": "ii",
"range": [
- 2224,
- 2226
+ 2304,
+ 2306
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 16
},
"end": {
- "line": 69,
+ "line": 72,
"column": 18
}
}
@@ -3308,31 +3528,31 @@
"value": 1,
"raw": "1",
"range": [
- 2227,
- 2228
+ 2307,
+ 2308
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 19
},
"end": {
- "line": 69,
+ "line": 72,
"column": 20
}
}
},
"range": [
- 2224,
- 2228
+ 2304,
+ 2308
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 16
},
"end": {
- "line": 69,
+ "line": 72,
"column": 20
}
}
@@ -3340,16 +3560,16 @@
],
"kind": "var",
"range": [
- 2220,
- 2228
+ 2300,
+ 2308
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 12
},
"end": {
- "line": 69,
+ "line": 72,
"column": 20
}
}
@@ -3361,16 +3581,16 @@
"type": "Identifier",
"name": "ii",
"range": [
- 2230,
- 2232
+ 2310,
+ 2312
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 22
},
"end": {
- "line": 69,
+ "line": 72,
"column": 24
}
}
@@ -3382,16 +3602,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2233,
- 2241
+ 2313,
+ 2321
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 25
},
"end": {
- "line": 69,
+ "line": 72,
"column": 33
}
}
@@ -3400,46 +3620,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 2242,
- 2248
+ 2322,
+ 2328
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 34
},
"end": {
- "line": 69,
+ "line": 72,
"column": 40
}
}
},
"range": [
- 2233,
- 2248
+ 2313,
+ 2328
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 25
},
"end": {
- "line": 69,
+ "line": 72,
"column": 40
}
}
},
"range": [
- 2230,
- 2248
+ 2310,
+ 2328
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 22
},
"end": {
- "line": 69,
+ "line": 72,
"column": 40
}
}
@@ -3451,32 +3671,32 @@
"type": "Identifier",
"name": "ii",
"range": [
- 2250,
- 2252
+ 2330,
+ 2332
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 42
},
"end": {
- "line": 69,
+ "line": 72,
"column": 44
}
}
},
"prefix": false,
"range": [
- 2250,
- 2254
+ 2330,
+ 2334
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 42
},
"end": {
- "line": 69,
+ "line": 72,
"column": 46
}
}
@@ -3493,16 +3713,16 @@
"type": "Identifier",
"name": "saved",
"range": [
- 2273,
- 2278
+ 2353,
+ 2358
],
"loc": {
"start": {
- "line": 70,
+ "line": 73,
"column": 16
},
"end": {
- "line": 70,
+ "line": 73,
"column": 21
}
}
@@ -3512,31 +3732,31 @@
"value": 0,
"raw": "0",
"range": [
- 2281,
- 2282
+ 2361,
+ 2362
],
"loc": {
"start": {
- "line": 70,
+ "line": 73,
"column": 24
},
"end": {
- "line": 70,
+ "line": 73,
"column": 25
}
}
},
"range": [
- 2273,
- 2282
+ 2353,
+ 2362
],
"loc": {
"start": {
- "line": 70,
+ "line": 73,
"column": 16
},
"end": {
- "line": 70,
+ "line": 73,
"column": 25
}
}
@@ -3544,16 +3764,16 @@
],
"kind": "var",
"range": [
- 2269,
- 2283
+ 2349,
+ 2363
],
"loc": {
"start": {
- "line": 70,
+ "line": 73,
"column": 12
},
"end": {
- "line": 70,
+ "line": 73,
"column": 26
}
},
@@ -3562,16 +3782,16 @@
"type": "Line",
"value": "see if colIndex[ii] is already in the list of unique indexes",
"range": [
- 2296,
- 2358
+ 2376,
+ 2438
],
"loc": {
"start": {
- "line": 71,
+ "line": 74,
"column": 12
},
"end": {
- "line": 71,
+ "line": 74,
"column": 74
}
}
@@ -3589,16 +3809,16 @@
"type": "Identifier",
"name": "jj",
"range": [
- 2379,
- 2381
+ 2459,
+ 2461
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 20
},
"end": {
- "line": 72,
+ "line": 75,
"column": 22
}
}
@@ -3608,31 +3828,31 @@
"value": 0,
"raw": "0",
"range": [
- 2382,
- 2383
+ 2462,
+ 2463
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 23
},
"end": {
- "line": 72,
+ "line": 75,
"column": 24
}
}
},
"range": [
- 2379,
- 2383
+ 2459,
+ 2463
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 20
},
"end": {
- "line": 72,
+ "line": 75,
"column": 24
}
}
@@ -3640,16 +3860,16 @@
],
"kind": "var",
"range": [
- 2375,
- 2383
+ 2455,
+ 2463
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 16
},
"end": {
- "line": 72,
+ "line": 75,
"column": 24
}
}
@@ -3661,16 +3881,16 @@
"type": "Identifier",
"name": "jj",
"range": [
- 2385,
- 2387
+ 2465,
+ 2467
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 26
},
"end": {
- "line": 72,
+ "line": 75,
"column": 28
}
}
@@ -3679,31 +3899,31 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2389,
- 2396
+ 2469,
+ 2476
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 30
},
"end": {
- "line": 72,
+ "line": 75,
"column": 37
}
}
},
"range": [
- 2385,
- 2396
+ 2465,
+ 2476
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 26
},
"end": {
- "line": 72,
+ "line": 75,
"column": 37
}
}
@@ -3715,32 +3935,32 @@
"type": "Identifier",
"name": "jj",
"range": [
- 2398,
- 2400
+ 2478,
+ 2480
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 39
},
"end": {
- "line": 72,
+ "line": 75,
"column": 41
}
}
},
"prefix": false,
"range": [
- 2398,
- 2402
+ 2478,
+ 2482
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 39
},
"end": {
- "line": 72,
+ "line": 75,
"column": 43
}
}
@@ -3760,16 +3980,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 2424,
- 2433
+ 2504,
+ 2513
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 19
},
"end": {
- "line": 73,
+ "line": 76,
"column": 28
}
}
@@ -3778,31 +3998,31 @@
"type": "Identifier",
"name": "jj",
"range": [
- 2434,
- 2436
+ 2514,
+ 2516
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 29
},
"end": {
- "line": 73,
+ "line": 76,
"column": 31
}
}
},
"range": [
- 2424,
- 2437
+ 2504,
+ 2517
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 19
},
"end": {
- "line": 73,
+ "line": 76,
"column": 32
}
}
@@ -3814,16 +4034,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2442,
- 2450
+ 2522,
+ 2530
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 37
},
"end": {
- "line": 73,
+ "line": 76,
"column": 45
}
}
@@ -3832,46 +4052,46 @@
"type": "Identifier",
"name": "ii",
"range": [
- 2451,
- 2453
+ 2531,
+ 2533
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 46
},
"end": {
- "line": 73,
+ "line": 76,
"column": 48
}
}
},
"range": [
- 2442,
- 2454
+ 2522,
+ 2534
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 37
},
"end": {
- "line": 73,
+ "line": 76,
"column": 49
}
}
},
"range": [
- 2424,
- 2454
+ 2504,
+ 2534
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 19
},
"end": {
- "line": 73,
+ "line": 76,
"column": 49
}
}
@@ -3888,16 +4108,16 @@
"type": "Identifier",
"name": "saved",
"range": [
- 2477,
- 2482
+ 2557,
+ 2562
],
"loc": {
"start": {
- "line": 74,
+ "line": 77,
"column": 20
},
"end": {
- "line": 74,
+ "line": 77,
"column": 25
}
}
@@ -3907,109 +4127,109 @@
"value": 1,
"raw": "1",
"range": [
- 2485,
- 2486
+ 2565,
+ 2566
],
"loc": {
"start": {
- "line": 74,
+ "line": 77,
"column": 28
},
"end": {
- "line": 74,
+ "line": 77,
"column": 29
}
}
},
"range": [
- 2477,
- 2486
+ 2557,
+ 2566
],
"loc": {
"start": {
- "line": 74,
+ "line": 77,
"column": 20
},
"end": {
- "line": 74,
+ "line": 77,
"column": 29
}
}
},
"range": [
- 2477,
- 2487
+ 2557,
+ 2567
],
"loc": {
"start": {
- "line": 74,
+ "line": 77,
"column": 20
},
"end": {
- "line": 74,
+ "line": 77,
"column": 30
}
}
}
],
"range": [
- 2455,
- 2505
+ 2535,
+ 2585
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 50
},
"end": {
- "line": 75,
+ "line": 78,
"column": 17
}
}
},
"alternate": null,
"range": [
- 2421,
- 2505
+ 2501,
+ 2585
],
"loc": {
"start": {
- "line": 73,
+ "line": 76,
"column": 16
},
"end": {
- "line": 75,
+ "line": 78,
"column": 17
}
}
}
],
"range": [
- 2403,
- 2519
+ 2483,
+ 2599
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 44
},
"end": {
- "line": 76,
+ "line": 79,
"column": 13
}
}
},
"range": [
- 2371,
- 2519
+ 2451,
+ 2599
],
"loc": {
"start": {
- "line": 72,
+ "line": 75,
"column": 12
},
"end": {
- "line": 76,
+ "line": 79,
"column": 13
}
},
@@ -4018,16 +4238,16 @@
"type": "Line",
"value": "see if colIndex[ii] is already in the list of unique indexes",
"range": [
- 2296,
- 2358
+ 2376,
+ 2438
],
"loc": {
"start": {
- "line": 71,
+ "line": 74,
"column": 12
},
"end": {
- "line": 71,
+ "line": 74,
"column": 74
}
}
@@ -4038,16 +4258,16 @@
"type": "Line",
"value": "if not saved then, save the index;",
"range": [
- 2532,
- 2568
+ 2612,
+ 2648
],
"loc": {
"start": {
- "line": 77,
+ "line": 80,
"column": 12
},
"end": {
- "line": 77,
+ "line": 80,
"column": 48
}
}
@@ -4063,16 +4283,16 @@
"type": "Identifier",
"name": "saved",
"range": [
- 2585,
- 2590
+ 2665,
+ 2670
],
"loc": {
"start": {
- "line": 78,
+ "line": 81,
"column": 16
},
"end": {
- "line": 78,
+ "line": 81,
"column": 21
}
}
@@ -4082,31 +4302,31 @@
"value": 0,
"raw": "0",
"range": [
- 2595,
- 2596
+ 2675,
+ 2676
],
"loc": {
"start": {
- "line": 78,
+ "line": 81,
"column": 26
},
"end": {
- "line": 78,
+ "line": 81,
"column": 27
}
}
},
"range": [
- 2585,
- 2596
+ 2665,
+ 2676
],
"loc": {
"start": {
- "line": 78,
+ "line": 81,
"column": 16
},
"end": {
- "line": 78,
+ "line": 81,
"column": 27
}
}
@@ -4123,47 +4343,47 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2615,
- 2622
+ 2695,
+ 2702
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 16
},
"end": {
- "line": 79,
+ "line": 82,
"column": 23
}
}
},
"prefix": false,
"range": [
- 2615,
- 2624
+ 2695,
+ 2704
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 16
},
"end": {
- "line": 79,
+ "line": 82,
"column": 25
}
}
},
"range": [
- 2615,
- 2625
+ 2695,
+ 2705
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 16
},
"end": {
- "line": 79,
+ "line": 82,
"column": 26
}
}
@@ -4180,16 +4400,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 2642,
- 2651
+ 2722,
+ 2731
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 16
},
"end": {
- "line": 80,
+ "line": 83,
"column": 25
}
}
@@ -4198,31 +4418,31 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2652,
- 2659
+ 2732,
+ 2739
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 26
},
"end": {
- "line": 80,
+ "line": 83,
"column": 33
}
}
},
"range": [
- 2642,
- 2660
+ 2722,
+ 2740
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 16
},
"end": {
- "line": 80,
+ "line": 83,
"column": 34
}
}
@@ -4234,16 +4454,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2663,
- 2671
+ 2743,
+ 2751
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 37
},
"end": {
- "line": 80,
+ "line": 83,
"column": 45
}
}
@@ -4252,93 +4472,93 @@
"type": "Identifier",
"name": "ii",
"range": [
- 2672,
- 2674
+ 2752,
+ 2754
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 46
},
"end": {
- "line": 80,
+ "line": 83,
"column": 48
}
}
},
"range": [
- 2663,
- 2675
+ 2743,
+ 2755
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 37
},
"end": {
- "line": 80,
+ "line": 83,
"column": 49
}
}
},
"range": [
- 2642,
- 2675
+ 2722,
+ 2755
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 16
},
"end": {
- "line": 80,
+ "line": 83,
"column": 49
}
}
},
"range": [
- 2642,
- 2676
+ 2722,
+ 2756
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 16
},
"end": {
- "line": 80,
+ "line": 83,
"column": 50
}
}
}
],
"range": [
- 2597,
- 2690
+ 2677,
+ 2770
],
"loc": {
"start": {
- "line": 78,
+ "line": 81,
"column": 28
},
"end": {
- "line": 81,
+ "line": 84,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2581,
- 2690
+ 2661,
+ 2770
],
"loc": {
"start": {
- "line": 78,
+ "line": 81,
"column": 12
},
"end": {
- "line": 81,
+ "line": 84,
"column": 13
}
},
@@ -4347,16 +4567,16 @@
"type": "Line",
"value": "if not saved then, save the index;",
"range": [
- 2532,
- 2568
+ 2612,
+ 2648
],
"loc": {
"start": {
- "line": 77,
+ "line": 80,
"column": 12
},
"end": {
- "line": 77,
+ "line": 80,
"column": 48
}
}
@@ -4365,31 +4585,31 @@
}
],
"range": [
- 2255,
- 2700
+ 2335,
+ 2780
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 47
},
"end": {
- "line": 82,
+ "line": 85,
"column": 9
}
}
},
"range": [
- 2216,
- 2700
+ 2296,
+ 2780
],
"loc": {
"start": {
- "line": 69,
+ "line": 72,
"column": 8
},
"end": {
- "line": 82,
+ "line": 85,
"column": 9
}
}
@@ -4414,16 +4634,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 2713,
- 2716
+ 2793,
+ 2796
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 84,
+ "line": 87,
"column": 14
}
}
@@ -4432,31 +4652,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 2717,
- 2722
+ 2797,
+ 2802
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 15
},
"end": {
- "line": 84,
+ "line": 87,
"column": 20
}
}
},
"range": [
- 2713,
- 2722
+ 2793,
+ 2802
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 84,
+ "line": 87,
"column": 20
}
}
@@ -4469,48 +4689,48 @@
"type": "Identifier",
"name": "labelId",
"range": [
- 2730,
- 2737
+ 2810,
+ 2817
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 28
},
"end": {
- "line": 84,
+ "line": 87,
"column": 35
}
}
},
"prefix": true,
"range": [
- 2723,
- 2737
+ 2803,
+ 2817
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 21
},
"end": {
- "line": 84,
+ "line": 87,
"column": 35
}
}
}
],
"range": [
- 2713,
- 2738
+ 2793,
+ 2818
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 84,
+ "line": 87,
"column": 36
}
}
@@ -4520,31 +4740,31 @@
"value": "object",
"raw": "'object'",
"range": [
- 2740,
- 2748
+ 2820,
+ 2828
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 38
},
"end": {
- "line": 84,
+ "line": 87,
"column": 46
}
}
},
"range": [
- 2713,
- 2748
+ 2793,
+ 2828
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 84,
+ "line": 87,
"column": 46
}
}
@@ -4561,16 +4781,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 2764,
- 2767
+ 2844,
+ 2847
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 12
},
"end": {
- "line": 85,
+ "line": 88,
"column": 15
}
}
@@ -4579,31 +4799,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 2768,
- 2773
+ 2848,
+ 2853
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 16
},
"end": {
- "line": 85,
+ "line": 88,
"column": 21
}
}
},
"range": [
- 2764,
- 2773
+ 2844,
+ 2853
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 12
},
"end": {
- "line": 85,
+ "line": 88,
"column": 21
}
}
@@ -4616,48 +4836,48 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2781,
- 2789
+ 2861,
+ 2869
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 29
},
"end": {
- "line": 85,
+ "line": 88,
"column": 37
}
}
},
"prefix": true,
"range": [
- 2774,
- 2789
+ 2854,
+ 2869
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 22
},
"end": {
- "line": 85,
+ "line": 88,
"column": 37
}
}
}
],
"range": [
- 2764,
- 2790
+ 2844,
+ 2870
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 12
},
"end": {
- "line": 85,
+ "line": 88,
"column": 38
}
}
@@ -4667,46 +4887,46 @@
"value": "object",
"raw": "'object'",
"range": [
- 2792,
- 2800
+ 2872,
+ 2880
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 40
},
"end": {
- "line": 85,
+ "line": 88,
"column": 48
}
}
},
"range": [
- 2764,
- 2800
+ 2844,
+ 2880
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 12
},
"end": {
- "line": 85,
+ "line": 88,
"column": 48
}
}
},
"range": [
- 2713,
- 2800
+ 2793,
+ 2880
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 85,
+ "line": 88,
"column": 48
}
}
@@ -4723,16 +4943,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 2816,
- 2819
+ 2896,
+ 2899
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 12
},
"end": {
- "line": 86,
+ "line": 89,
"column": 15
}
}
@@ -4741,31 +4961,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 2820,
- 2825
+ 2900,
+ 2905
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 16
},
"end": {
- "line": 86,
+ "line": 89,
"column": 21
}
}
},
"range": [
- 2816,
- 2825
+ 2896,
+ 2905
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 12
},
"end": {
- "line": 86,
+ "line": 89,
"column": 21
}
}
@@ -4778,48 +4998,48 @@
"type": "Identifier",
"name": "operation",
"range": [
- 2833,
- 2842
+ 2913,
+ 2922
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 29
},
"end": {
- "line": 86,
+ "line": 89,
"column": 38
}
}
},
"prefix": true,
"range": [
- 2826,
- 2842
+ 2906,
+ 2922
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 22
},
"end": {
- "line": 86,
+ "line": 89,
"column": 38
}
}
}
],
"range": [
- 2816,
- 2843
+ 2896,
+ 2923
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 12
},
"end": {
- "line": 86,
+ "line": 89,
"column": 39
}
}
@@ -4829,46 +5049,46 @@
"value": "object",
"raw": "'object'",
"range": [
- 2845,
- 2853
+ 2925,
+ 2933
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 41
},
"end": {
- "line": 86,
+ "line": 89,
"column": 49
}
}
},
"range": [
- 2816,
- 2853
+ 2896,
+ 2933
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 12
},
"end": {
- "line": 86,
+ "line": 89,
"column": 49
}
}
},
"range": [
- 2713,
- 2853
+ 2793,
+ 2933
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 11
},
"end": {
- "line": 86,
+ "line": 89,
"column": 49
}
}
@@ -4885,16 +5105,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2872,
- 2876
+ 2952,
+ 2956
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 16
},
"end": {
- "line": 87,
+ "line": 90,
"column": 20
}
}
@@ -4909,16 +5129,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2879,
- 2881
+ 2959,
+ 2961
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 23
},
"end": {
- "line": 87,
+ "line": 90,
"column": 25
}
}
@@ -4927,31 +5147,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2882,
- 2885
+ 2962,
+ 2965
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 26
},
"end": {
- "line": 87,
+ "line": 90,
"column": 29
}
}
},
"range": [
- 2879,
- 2885
+ 2959,
+ 2965
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 23
},
"end": {
- "line": 87,
+ "line": 90,
"column": 29
}
}
@@ -4960,46 +5180,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2886,
- 2890
+ 2966,
+ 2970
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 30
},
"end": {
- "line": 87,
+ "line": 90,
"column": 34
}
}
},
"range": [
- 2879,
- 2890
+ 2959,
+ 2970
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 23
},
"end": {
- "line": 87,
+ "line": 90,
"column": 34
}
}
},
"range": [
- 2872,
- 2890
+ 2952,
+ 2970
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 16
},
"end": {
- "line": 87,
+ "line": 90,
"column": 34
}
}
@@ -5010,16 +5230,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 2908,
- 2917
+ 2988,
+ 2997
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 16
},
"end": {
- "line": 88,
+ "line": 91,
"column": 25
}
}
@@ -5028,31 +5248,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2920,
- 2922
+ 3000,
+ 3002
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 28
},
"end": {
- "line": 88,
+ "line": 91,
"column": 30
}
}
},
"range": [
- 2908,
- 2922
+ 2988,
+ 3002
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 16
},
"end": {
- "line": 88,
+ "line": 91,
"column": 30
}
}
@@ -5060,16 +5280,16 @@
],
"kind": "var",
"range": [
- 2868,
- 2923
+ 2948,
+ 3003
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 91,
"column": 31
}
}
@@ -5085,16 +5305,16 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 2945,
- 2949
+ 3025,
+ 3029
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 20
},
"end": {
- "line": 90,
+ "line": 93,
"column": 24
}
}
@@ -5104,31 +5324,31 @@
"value": 0,
"raw": "0",
"range": [
- 2950,
- 2951
+ 3030,
+ 3031
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 25
},
"end": {
- "line": 90,
+ "line": 93,
"column": 26
}
}
},
"range": [
- 2945,
- 2951
+ 3025,
+ 3031
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 20
},
"end": {
- "line": 90,
+ "line": 93,
"column": 26
}
}
@@ -5136,16 +5356,16 @@
],
"kind": "var",
"range": [
- 2941,
- 2951
+ 3021,
+ 3031
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 16
},
"end": {
- "line": 90,
+ "line": 93,
"column": 26
}
}
@@ -5157,16 +5377,16 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 2953,
- 2957
+ 3033,
+ 3037
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 28
},
"end": {
- "line": 90,
+ "line": 93,
"column": 32
}
}
@@ -5175,31 +5395,31 @@
"type": "Identifier",
"name": "ucolMax",
"range": [
- 2959,
- 2966
+ 3039,
+ 3046
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 34
},
"end": {
- "line": 90,
+ "line": 93,
"column": 41
}
}
},
"range": [
- 2953,
- 2966
+ 3033,
+ 3046
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 28
},
"end": {
- "line": 90,
+ "line": 93,
"column": 41
}
}
@@ -5211,32 +5431,32 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 2968,
- 2972
+ 3048,
+ 3052
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 43
},
"end": {
- "line": 90,
+ "line": 93,
"column": 47
}
}
},
"prefix": false,
"range": [
- 2968,
- 2974
+ 3048,
+ 3054
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 43
},
"end": {
- "line": 90,
+ "line": 93,
"column": 49
}
}
@@ -5255,16 +5475,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 3192,
- 3201
+ 3272,
+ 3281
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 16
},
"end": {
- "line": 94,
+ "line": 97,
"column": 25
}
}
@@ -5273,31 +5493,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 3202,
- 3206
+ 3282,
+ 3286
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 26
},
"end": {
- "line": 94,
+ "line": 97,
"column": 30
}
}
},
"range": [
- 3192,
- 3206
+ 3272,
+ 3286
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 16
},
"end": {
- "line": 94,
+ "line": 97,
"column": 30
}
}
@@ -5312,16 +5532,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3228,
- 3230
+ 3308,
+ 3310
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 20
},
"end": {
- "line": 95,
+ "line": 98,
"column": 22
}
}
@@ -5330,31 +5550,31 @@
"type": "Identifier",
"name": "getColValues",
"range": [
- 3231,
- 3243
+ 3311,
+ 3323
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 23
},
"end": {
- "line": 95,
+ "line": 98,
"column": 35
}
}
},
"range": [
- 3228,
- 3243
+ 3308,
+ 3323
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 20
},
"end": {
- "line": 95,
+ "line": 98,
"column": 35
}
}
@@ -5367,16 +5587,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 3244,
- 3253
+ 3324,
+ 3333
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 36
},
"end": {
- "line": 95,
+ "line": 98,
"column": 45
}
}
@@ -5385,31 +5605,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 3254,
- 3258
+ 3334,
+ 3338
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 46
},
"end": {
- "line": 95,
+ "line": 98,
"column": 50
}
}
},
"range": [
- 3244,
- 3259
+ 3324,
+ 3339
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 36
},
"end": {
- "line": 95,
+ "line": 98,
"column": 51
}
}
@@ -5419,16 +5639,16 @@
"value": false,
"raw": "false",
"range": [
- 3261,
- 3266
+ 3341,
+ 3346
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 53
},
"end": {
- "line": 95,
+ "line": 98,
"column": 58
}
}
@@ -5438,16 +5658,16 @@
"value": true,
"raw": "true",
"range": [
- 3268,
- 3272
+ 3348,
+ 3352
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 60
},
"end": {
- "line": 95,
+ "line": 98,
"column": 64
}
}
@@ -5456,63 +5676,63 @@
"type": "Identifier",
"name": "excludeRow",
"range": [
- 3274,
- 3284
+ 3354,
+ 3364
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 66
},
"end": {
- "line": 95,
+ "line": 98,
"column": 76
}
}
}
],
"range": [
- 3228,
- 3285
+ 3308,
+ 3365
],
"loc": {
"start": {
- "line": 95,
+ "line": 98,
"column": 20
},
"end": {
- "line": 95,
+ "line": 98,
"column": 77
}
}
}
],
"range": [
- 3192,
- 3286
+ 3272,
+ 3366
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 16
},
"end": {
- "line": 95,
+ "line": 98,
"column": 78
}
}
},
"range": [
- 3192,
- 3287
+ 3272,
+ 3367
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 16
},
"end": {
- "line": 95,
+ "line": 98,
"column": 79
}
},
@@ -5521,16 +5741,16 @@
"type": "Line",
"value": "this retrieves col values",
"range": [
- 2993,
- 3020
+ 3073,
+ 3100
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 16
},
"end": {
- "line": 91,
+ "line": 94,
"column": 43
}
}
@@ -5539,16 +5759,16 @@
"type": "Line",
"value": "use ucolIndex because we only want to pass through this loop",
"range": [
- 3037,
- 3099
+ 3117,
+ 3179
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 16
},
"end": {
- "line": 92,
+ "line": 95,
"column": 78
}
}
@@ -5557,16 +5777,16 @@
"type": "Line",
"value": "once for each column get the values in this unique column",
"range": [
- 3116,
- 3175
+ 3196,
+ 3255
],
"loc": {
"start": {
- "line": 93,
+ "line": 96,
"column": 16
},
"end": {
- "line": 93,
+ "line": 96,
"column": 75
}
}
@@ -5577,16 +5797,16 @@
"type": "Line",
"value": "next: calculate all operations for this column",
"range": [
- 3305,
- 3353
+ 3385,
+ 3433
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 16
},
"end": {
- "line": 97,
+ "line": 100,
"column": 64
}
}
@@ -5602,32 +5822,32 @@
"type": "Identifier",
"name": "result",
"range": [
- 3374,
- 3380
+ 3454,
+ 3460
],
"loc": {
"start": {
- "line": 98,
+ "line": 101,
"column": 20
},
"end": {
- "line": 98,
+ "line": 101,
"column": 26
}
}
},
"init": null,
"range": [
- 3374,
- 3380
+ 3454,
+ 3460
],
"loc": {
"start": {
- "line": 98,
+ "line": 101,
"column": 20
},
"end": {
- "line": 98,
+ "line": 101,
"column": 26
}
}
@@ -5638,16 +5858,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 3402,
- 3410
+ 3482,
+ 3490
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 20
},
"end": {
- "line": 99,
+ "line": 102,
"column": 28
}
}
@@ -5657,31 +5877,31 @@
"value": 0,
"raw": "0",
"range": [
- 3411,
- 3412
+ 3491,
+ 3492
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 29
},
"end": {
- "line": 99,
+ "line": 102,
"column": 30
}
}
},
"range": [
- 3402,
- 3412
+ 3482,
+ 3492
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 20
},
"end": {
- "line": 99,
+ "line": 102,
"column": 30
}
}
@@ -5692,32 +5912,32 @@
"type": "Identifier",
"name": "temp",
"range": [
- 3434,
- 3438
+ 3514,
+ 3518
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 20
},
"end": {
- "line": 100,
+ "line": 103,
"column": 24
}
}
},
"init": null,
"range": [
- 3434,
- 3438
+ 3514,
+ 3518
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 20
},
"end": {
- "line": 100,
+ "line": 103,
"column": 24
}
}
@@ -5728,16 +5948,16 @@
"type": "Identifier",
"name": "meanValue",
"range": [
- 3460,
- 3469
+ 3540,
+ 3549
],
"loc": {
"start": {
- "line": 101,
+ "line": 104,
"column": 20
},
"end": {
- "line": 101,
+ "line": 104,
"column": 29
}
}
@@ -5747,31 +5967,31 @@
"value": 0,
"raw": "0",
"range": [
- 3470,
- 3471
+ 3550,
+ 3551
],
"loc": {
"start": {
- "line": 101,
+ "line": 104,
"column": 30
},
"end": {
- "line": 101,
+ "line": 104,
"column": 31
}
}
},
"range": [
- 3460,
- 3471
+ 3540,
+ 3551
],
"loc": {
"start": {
- "line": 101,
+ "line": 104,
"column": 20
},
"end": {
- "line": 101,
+ "line": 104,
"column": 31
}
}
@@ -5782,16 +6002,16 @@
"type": "Identifier",
"name": "sumValue",
"range": [
- 3493,
- 3501
+ 3573,
+ 3581
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 20
},
"end": {
- "line": 102,
+ "line": 105,
"column": 28
}
}
@@ -5801,31 +6021,31 @@
"value": 0,
"raw": "0",
"range": [
- 3502,
- 3503
+ 3582,
+ 3583
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 29
},
"end": {
- "line": 102,
+ "line": 105,
"column": 30
}
}
},
"range": [
- 3493,
- 3503
+ 3573,
+ 3583
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 20
},
"end": {
- "line": 102,
+ "line": 105,
"column": 30
}
}
@@ -5836,16 +6056,16 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 3525,
- 3533
+ 3605,
+ 3613
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 20
},
"end": {
- "line": 103,
+ "line": 106,
"column": 28
}
}
@@ -5855,31 +6075,31 @@
"value": null,
"raw": "null",
"range": [
- 3534,
- 3538
+ 3614,
+ 3618
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 29
},
"end": {
- "line": 103,
+ "line": 106,
"column": 33
}
}
},
"range": [
- 3525,
- 3538
+ 3605,
+ 3618
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 20
},
"end": {
- "line": 103,
+ "line": 106,
"column": 33
}
}
@@ -5890,16 +6110,16 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 3560,
- 3568
+ 3640,
+ 3648
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 20
},
"end": {
- "line": 104,
+ "line": 107,
"column": 28
}
}
@@ -5909,31 +6129,31 @@
"value": null,
"raw": "null",
"range": [
- 3569,
- 3573
+ 3649,
+ 3653
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 29
},
"end": {
- "line": 104,
+ "line": 107,
"column": 33
}
}
},
"range": [
- 3560,
- 3573
+ 3640,
+ 3653
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 20
},
"end": {
- "line": 104,
+ "line": 107,
"column": 33
}
}
@@ -5944,16 +6164,16 @@
"type": "Identifier",
"name": "q1Value",
"range": [
- 3595,
- 3602
+ 3675,
+ 3682
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 20
},
"end": {
- "line": 105,
+ "line": 108,
"column": 27
}
}
@@ -5963,31 +6183,31 @@
"value": null,
"raw": "null",
"range": [
- 3603,
- 3607
+ 3683,
+ 3687
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 28
},
"end": {
- "line": 105,
+ "line": 108,
"column": 32
}
}
},
"range": [
- 3595,
- 3607
+ 3675,
+ 3687
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 20
},
"end": {
- "line": 105,
+ "line": 108,
"column": 32
}
}
@@ -5998,16 +6218,16 @@
"type": "Identifier",
"name": "medValue",
"range": [
- 3629,
- 3637
+ 3709,
+ 3717
],
"loc": {
"start": {
- "line": 106,
+ "line": 109,
"column": 20
},
"end": {
- "line": 106,
+ "line": 109,
"column": 28
}
}
@@ -6017,31 +6237,31 @@
"value": null,
"raw": "null",
"range": [
- 3638,
- 3642
+ 3718,
+ 3722
],
"loc": {
"start": {
- "line": 106,
+ "line": 109,
"column": 29
},
"end": {
- "line": 106,
+ "line": 109,
"column": 33
}
}
},
"range": [
- 3629,
- 3642
+ 3709,
+ 3722
],
"loc": {
"start": {
- "line": 106,
+ "line": 109,
"column": 20
},
"end": {
- "line": 106,
+ "line": 109,
"column": 33
}
}
@@ -6052,16 +6272,16 @@
"type": "Identifier",
"name": "q3Value",
"range": [
- 3664,
- 3671
+ 3744,
+ 3751
],
"loc": {
"start": {
- "line": 107,
+ "line": 110,
"column": 20
},
"end": {
- "line": 107,
+ "line": 110,
"column": 27
}
}
@@ -6071,31 +6291,31 @@
"value": null,
"raw": "null",
"range": [
- 3672,
- 3676
+ 3752,
+ 3756
],
"loc": {
"start": {
- "line": 107,
+ "line": 110,
"column": 28
},
"end": {
- "line": 107,
+ "line": 110,
"column": 32
}
}
},
"range": [
- 3664,
- 3676
+ 3744,
+ 3756
],
"loc": {
"start": {
- "line": 107,
+ "line": 110,
"column": 20
},
"end": {
- "line": 107,
+ "line": 110,
"column": 32
}
}
@@ -6106,16 +6326,16 @@
"type": "Identifier",
"name": "meanFlag",
"range": [
- 3698,
- 3706
+ 3778,
+ 3786
],
"loc": {
"start": {
- "line": 108,
+ "line": 111,
"column": 20
},
"end": {
- "line": 108,
+ "line": 111,
"column": 28
}
}
@@ -6125,31 +6345,31 @@
"value": 0,
"raw": "0",
"range": [
- 3707,
- 3708
+ 3787,
+ 3788
],
"loc": {
"start": {
- "line": 108,
+ "line": 111,
"column": 29
},
"end": {
- "line": 108,
+ "line": 111,
"column": 30
}
}
},
"range": [
- 3698,
- 3708
+ 3778,
+ 3788
],
"loc": {
"start": {
- "line": 108,
+ "line": 111,
"column": 20
},
"end": {
- "line": 108,
+ "line": 111,
"column": 30
}
}
@@ -6160,16 +6380,16 @@
"type": "Identifier",
"name": "sumFlag",
"range": [
- 3730,
- 3737
+ 3810,
+ 3817
],
"loc": {
"start": {
- "line": 109,
+ "line": 112,
"column": 20
},
"end": {
- "line": 109,
+ "line": 112,
"column": 27
}
}
@@ -6179,31 +6399,31 @@
"value": 0,
"raw": "0",
"range": [
- 3738,
- 3739
+ 3818,
+ 3819
],
"loc": {
"start": {
- "line": 109,
+ "line": 112,
"column": 28
},
"end": {
- "line": 109,
+ "line": 112,
"column": 29
}
}
},
"range": [
- 3730,
- 3739
+ 3810,
+ 3819
],
"loc": {
"start": {
- "line": 109,
+ "line": 112,
"column": 20
},
"end": {
- "line": 109,
+ "line": 112,
"column": 29
}
}
@@ -6214,16 +6434,16 @@
"type": "Identifier",
"name": "minFlag",
"range": [
- 3761,
- 3768
+ 3841,
+ 3848
],
"loc": {
"start": {
- "line": 110,
+ "line": 113,
"column": 20
},
"end": {
- "line": 110,
+ "line": 113,
"column": 27
}
}
@@ -6233,31 +6453,31 @@
"value": 0,
"raw": "0",
"range": [
- 3769,
- 3770
+ 3849,
+ 3850
],
"loc": {
"start": {
- "line": 110,
+ "line": 113,
"column": 28
},
"end": {
- "line": 110,
+ "line": 113,
"column": 29
}
}
},
"range": [
- 3761,
- 3770
+ 3841,
+ 3850
],
"loc": {
"start": {
- "line": 110,
+ "line": 113,
"column": 20
},
"end": {
- "line": 110,
+ "line": 113,
"column": 29
}
}
@@ -6268,16 +6488,16 @@
"type": "Identifier",
"name": "maxFlag",
"range": [
- 3792,
- 3799
+ 3872,
+ 3879
],
"loc": {
"start": {
- "line": 111,
+ "line": 114,
"column": 20
},
"end": {
- "line": 111,
+ "line": 114,
"column": 27
}
}
@@ -6287,31 +6507,31 @@
"value": 0,
"raw": "0",
"range": [
- 3800,
- 3801
+ 3880,
+ 3881
],
"loc": {
"start": {
- "line": 111,
+ "line": 114,
"column": 28
},
"end": {
- "line": 111,
+ "line": 114,
"column": 29
}
}
},
"range": [
- 3792,
- 3801
+ 3872,
+ 3881
],
"loc": {
"start": {
- "line": 111,
+ "line": 114,
"column": 20
},
"end": {
- "line": 111,
+ "line": 114,
"column": 29
}
}
@@ -6322,16 +6542,16 @@
"type": "Identifier",
"name": "q1Flag",
"range": [
- 3823,
- 3829
+ 3903,
+ 3909
],
"loc": {
"start": {
- "line": 112,
+ "line": 115,
"column": 20
},
"end": {
- "line": 112,
+ "line": 115,
"column": 26
}
}
@@ -6341,31 +6561,31 @@
"value": 0,
"raw": "0",
"range": [
- 3830,
- 3831
+ 3910,
+ 3911
],
"loc": {
"start": {
- "line": 112,
+ "line": 115,
"column": 27
},
"end": {
- "line": 112,
+ "line": 115,
"column": 28
}
}
},
"range": [
- 3823,
- 3831
+ 3903,
+ 3911
],
"loc": {
"start": {
- "line": 112,
+ "line": 115,
"column": 20
},
"end": {
- "line": 112,
+ "line": 115,
"column": 28
}
}
@@ -6376,16 +6596,16 @@
"type": "Identifier",
"name": "medFlag",
"range": [
- 3853,
- 3860
+ 3933,
+ 3940
],
"loc": {
"start": {
- "line": 113,
+ "line": 116,
"column": 20
},
"end": {
- "line": 113,
+ "line": 116,
"column": 27
}
}
@@ -6395,31 +6615,31 @@
"value": 0,
"raw": "0",
"range": [
- 3861,
- 3862
+ 3941,
+ 3942
],
"loc": {
"start": {
- "line": 113,
+ "line": 116,
"column": 28
},
"end": {
- "line": 113,
+ "line": 116,
"column": 29
}
}
},
"range": [
- 3853,
- 3862
+ 3933,
+ 3942
],
"loc": {
"start": {
- "line": 113,
+ "line": 116,
"column": 20
},
"end": {
- "line": 113,
+ "line": 116,
"column": 29
}
}
@@ -6430,16 +6650,16 @@
"type": "Identifier",
"name": "q3Flag",
"range": [
- 3884,
- 3890
+ 3964,
+ 3970
],
"loc": {
"start": {
- "line": 114,
+ "line": 117,
"column": 20
},
"end": {
- "line": 114,
+ "line": 117,
"column": 26
}
}
@@ -6449,31 +6669,31 @@
"value": 0,
"raw": "0",
"range": [
- 3891,
- 3892
+ 3971,
+ 3972
],
"loc": {
"start": {
- "line": 114,
+ "line": 117,
"column": 27
},
"end": {
- "line": 114,
+ "line": 117,
"column": 28
}
}
},
"range": [
- 3884,
- 3892
+ 3964,
+ 3972
],
"loc": {
"start": {
- "line": 114,
+ "line": 117,
"column": 20
},
"end": {
- "line": 114,
+ "line": 117,
"column": 28
}
}
@@ -6484,16 +6704,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 3914,
- 3921
+ 3994,
+ 4001
],
"loc": {
"start": {
- "line": 115,
+ "line": 118,
"column": 20
},
"end": {
- "line": 115,
+ "line": 118,
"column": 27
}
}
@@ -6502,31 +6722,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3922,
- 3924
+ 4002,
+ 4004
],
"loc": {
"start": {
- "line": 115,
+ "line": 118,
"column": 28
},
"end": {
- "line": 115,
+ "line": 118,
"column": 30
}
}
},
"range": [
- 3914,
- 3924
+ 3994,
+ 4004
],
"loc": {
"start": {
- "line": 115,
+ "line": 118,
"column": 20
},
"end": {
- "line": 115,
+ "line": 118,
"column": 30
}
}
@@ -6537,16 +6757,16 @@
"type": "Identifier",
"name": "opsThisCol",
"range": [
- 3946,
- 3956
+ 4026,
+ 4036
],
"loc": {
"start": {
- "line": 116,
+ "line": 119,
"column": 20
},
"end": {
- "line": 116,
+ "line": 119,
"column": 30
}
}
@@ -6555,31 +6775,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3957,
- 3959
+ 4037,
+ 4039
],
"loc": {
"start": {
- "line": 116,
+ "line": 119,
"column": 31
},
"end": {
- "line": 116,
+ "line": 119,
"column": 33
}
}
},
"range": [
- 3946,
- 3959
+ 4026,
+ 4039
],
"loc": {
"start": {
- "line": 116,
+ "line": 119,
"column": 20
},
"end": {
- "line": 116,
+ "line": 119,
"column": 33
}
}
@@ -6590,16 +6810,16 @@
"type": "Identifier",
"name": "decThisCol",
"range": [
- 3981,
- 3991
+ 4061,
+ 4071
],
"loc": {
"start": {
- "line": 117,
+ "line": 120,
"column": 20
},
"end": {
- "line": 117,
+ "line": 120,
"column": 30
}
}
@@ -6608,31 +6828,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3992,
- 3994
+ 4072,
+ 4074
],
"loc": {
"start": {
- "line": 117,
+ "line": 120,
"column": 31
},
"end": {
- "line": 117,
+ "line": 120,
"column": 33
}
}
},
"range": [
- 3981,
- 3994
+ 4061,
+ 4074
],
"loc": {
"start": {
- "line": 117,
+ "line": 120,
"column": 20
},
"end": {
- "line": 117,
+ "line": 120,
"column": 33
}
}
@@ -6643,16 +6863,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 4016,
- 4026
+ 4096,
+ 4106
],
"loc": {
"start": {
- "line": 118,
+ "line": 121,
"column": 20
},
"end": {
- "line": 118,
+ "line": 121,
"column": 30
}
}
@@ -6661,31 +6881,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 4027,
- 4029
+ 4107,
+ 4109
],
"loc": {
"start": {
- "line": 118,
+ "line": 121,
"column": 31
},
"end": {
- "line": 118,
+ "line": 121,
"column": 33
}
}
},
"range": [
- 4016,
- 4029
+ 4096,
+ 4109
],
"loc": {
"start": {
- "line": 118,
+ "line": 121,
"column": 20
},
"end": {
- "line": 118,
+ "line": 121,
"column": 33
}
}
@@ -6696,16 +6916,16 @@
"type": "Identifier",
"name": "oTypeThisCol",
"range": [
- 4051,
- 4063
+ 4131,
+ 4143
],
"loc": {
"start": {
- "line": 119,
+ "line": 122,
"column": 20
},
"end": {
- "line": 119,
+ "line": 122,
"column": 32
}
}
@@ -6714,31 +6934,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 4064,
- 4066
+ 4144,
+ 4146
],
"loc": {
"start": {
- "line": 119,
+ "line": 122,
"column": 33
},
"end": {
- "line": 119,
+ "line": 122,
"column": 35
}
}
},
"range": [
- 4051,
- 4066
+ 4131,
+ 4146
],
"loc": {
"start": {
- "line": 119,
+ "line": 122,
"column": 20
},
"end": {
- "line": 119,
+ "line": 122,
"column": 35
}
}
@@ -6749,16 +6969,16 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4088,
- 4096
+ 4168,
+ 4176
],
"loc": {
"start": {
- "line": 120,
+ "line": 123,
"column": 20
},
"end": {
- "line": 120,
+ "line": 123,
"column": 28
}
}
@@ -6771,47 +6991,47 @@
"value": 1,
"raw": "1",
"range": [
- 4098,
- 4099
+ 4178,
+ 4179
],
"loc": {
"start": {
- "line": 120,
+ "line": 123,
"column": 30
},
"end": {
- "line": 120,
+ "line": 123,
"column": 31
}
}
},
"prefix": true,
"range": [
- 4097,
- 4099
+ 4177,
+ 4179
],
"loc": {
"start": {
- "line": 120,
+ "line": 123,
"column": 29
},
"end": {
- "line": 120,
+ "line": 123,
"column": 31
}
}
},
"range": [
- 4088,
- 4099
+ 4168,
+ 4179
],
"loc": {
"start": {
- "line": 120,
+ "line": 123,
"column": 20
},
"end": {
- "line": 120,
+ "line": 123,
"column": 31
}
}
@@ -6819,16 +7039,16 @@
],
"kind": "var",
"range": [
- 3370,
- 4100
+ 3450,
+ 4180
],
"loc": {
"start": {
- "line": 98,
+ "line": 101,
"column": 16
},
"end": {
- "line": 120,
+ "line": 123,
"column": 32
}
},
@@ -6837,16 +7057,16 @@
"type": "Line",
"value": "next: calculate all operations for this column",
"range": [
- 3305,
- 3353
+ 3385,
+ 3433
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 16
},
"end": {
- "line": 97,
+ "line": 100,
"column": 64
}
}
@@ -6864,16 +7084,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 4126,
- 4127
+ 4206,
+ 4207
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 24
},
"end": {
- "line": 122,
+ "line": 125,
"column": 25
}
}
@@ -6883,31 +7103,31 @@
"value": 0,
"raw": "0",
"range": [
- 4128,
- 4129
+ 4208,
+ 4209
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 26
},
"end": {
- "line": 122,
+ "line": 125,
"column": 27
}
}
},
"range": [
- 4126,
- 4129
+ 4206,
+ 4209
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 24
},
"end": {
- "line": 122,
+ "line": 125,
"column": 27
}
}
@@ -6915,16 +7135,16 @@
],
"kind": "var",
"range": [
- 4122,
- 4129
+ 4202,
+ 4209
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 20
},
"end": {
- "line": 122,
+ "line": 125,
"column": 27
}
}
@@ -6936,16 +7156,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 4131,
- 4132
+ 4211,
+ 4212
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 29
},
"end": {
- "line": 122,
+ "line": 125,
"column": 30
}
}
@@ -6957,16 +7177,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4133,
- 4141
+ 4213,
+ 4221
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 31
},
"end": {
- "line": 122,
+ "line": 125,
"column": 39
}
}
@@ -6975,46 +7195,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 4142,
- 4148
+ 4222,
+ 4228
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 40
},
"end": {
- "line": 122,
+ "line": 125,
"column": 46
}
}
},
"range": [
- 4133,
- 4148
+ 4213,
+ 4228
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 31
},
"end": {
- "line": 122,
+ "line": 125,
"column": 46
}
}
},
"range": [
- 4131,
- 4148
+ 4211,
+ 4228
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 29
},
"end": {
- "line": 122,
+ "line": 125,
"column": 46
}
}
@@ -7026,32 +7246,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 4150,
- 4151
+ 4230,
+ 4231
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 48
},
"end": {
- "line": 122,
+ "line": 125,
"column": 49
}
}
},
"prefix": false,
"range": [
- 4150,
- 4153
+ 4230,
+ 4233
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 48
},
"end": {
- "line": 122,
+ "line": 125,
"column": 51
}
}
@@ -7071,16 +7291,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4180,
- 4188
+ 4260,
+ 4268
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 24
},
"end": {
- "line": 123,
+ "line": 126,
"column": 32
}
}
@@ -7089,31 +7309,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 4189,
- 4190
+ 4269,
+ 4270
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 33
},
"end": {
- "line": 123,
+ "line": 126,
"column": 34
}
}
},
"range": [
- 4180,
- 4191
+ 4260,
+ 4271
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 24
},
"end": {
- "line": 123,
+ "line": 126,
"column": 35
}
}
@@ -7125,16 +7345,16 @@
"type": "Identifier",
"name": "ucolIndex",
"range": [
- 4196,
- 4205
+ 4276,
+ 4285
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 40
},
"end": {
- "line": 123,
+ "line": 126,
"column": 49
}
}
@@ -7143,46 +7363,46 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 4206,
- 4210
+ 4286,
+ 4290
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 50
},
"end": {
- "line": 123,
+ "line": 126,
"column": 54
}
}
},
"range": [
- 4196,
- 4211
+ 4276,
+ 4291
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 40
},
"end": {
- "line": 123,
+ "line": 126,
"column": 55
}
}
},
"range": [
- 4180,
- 4211
+ 4260,
+ 4291
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 24
},
"end": {
- "line": 123,
+ "line": 126,
"column": 55
}
}
@@ -7199,47 +7419,47 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4238,
- 4246
+ 4318,
+ 4326
],
"loc": {
"start": {
- "line": 124,
+ "line": 127,
"column": 24
},
"end": {
- "line": 124,
+ "line": 127,
"column": 32
}
}
},
"prefix": false,
"range": [
- 4238,
- 4248
+ 4318,
+ 4328
],
"loc": {
"start": {
- "line": 124,
+ "line": 127,
"column": 24
},
"end": {
- "line": 124,
+ "line": 127,
"column": 34
}
}
},
"range": [
- 4238,
- 4249
+ 4318,
+ 4329
],
"loc": {
"start": {
- "line": 124,
+ "line": 127,
"column": 24
},
"end": {
- "line": 124,
+ "line": 127,
"column": 35
}
}
@@ -7256,16 +7476,16 @@
"type": "Identifier",
"name": "opsThisCol",
"range": [
- 4274,
- 4284
+ 4354,
+ 4364
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 24
},
"end": {
- "line": 125,
+ "line": 128,
"column": 34
}
}
@@ -7274,31 +7494,31 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4285,
- 4293
+ 4365,
+ 4373
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 35
},
"end": {
- "line": 125,
+ "line": 128,
"column": 43
}
}
},
"range": [
- 4274,
- 4294
+ 4354,
+ 4374
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 24
},
"end": {
- "line": 125,
+ "line": 128,
"column": 44
}
}
@@ -7312,16 +7532,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 4295,
- 4298
+ 4375,
+ 4378
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 45
},
"end": {
- "line": 125,
+ "line": 128,
"column": 48
}
}
@@ -7330,31 +7550,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 4299,
- 4304
+ 4379,
+ 4384
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 49
},
"end": {
- "line": 125,
+ "line": 128,
"column": 54
}
}
},
"range": [
- 4295,
- 4304
+ 4375,
+ 4384
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 45
},
"end": {
- "line": 125,
+ "line": 128,
"column": 54
}
}
@@ -7367,16 +7587,16 @@
"type": "Identifier",
"name": "operation",
"range": [
- 4305,
- 4314
+ 4385,
+ 4394
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 55
},
"end": {
- "line": 125,
+ "line": 128,
"column": 64
}
}
@@ -7385,77 +7605,77 @@
"type": "Identifier",
"name": "k",
"range": [
- 4315,
- 4316
+ 4395,
+ 4396
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 65
},
"end": {
- "line": 125,
+ "line": 128,
"column": 66
}
}
},
"range": [
- 4305,
- 4317
+ 4385,
+ 4397
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 55
},
"end": {
- "line": 125,
+ "line": 128,
"column": 67
}
}
}
],
"range": [
- 4295,
- 4318
+ 4375,
+ 4398
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 45
},
"end": {
- "line": 125,
+ "line": 128,
"column": 68
}
}
},
"range": [
- 4274,
- 4318
+ 4354,
+ 4398
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 24
},
"end": {
- "line": 125,
+ "line": 128,
"column": 68
}
}
},
"range": [
- 4274,
- 4319
+ 4354,
+ 4399
],
"loc": {
"start": {
- "line": 125,
+ "line": 128,
"column": 24
},
"end": {
- "line": 125,
+ "line": 128,
"column": 69
}
}
@@ -7472,16 +7692,16 @@
"type": "Identifier",
"name": "decThisCol",
"range": [
- 4344,
- 4354
+ 4424,
+ 4434
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 24
},
"end": {
- "line": 126,
+ "line": 129,
"column": 34
}
}
@@ -7490,31 +7710,31 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4355,
- 4363
+ 4435,
+ 4443
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 35
},
"end": {
- "line": 126,
+ "line": 129,
"column": 43
}
}
},
"range": [
- 4344,
- 4364
+ 4424,
+ 4444
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 24
},
"end": {
- "line": 126,
+ "line": 129,
"column": 44
}
}
@@ -7526,16 +7746,16 @@
"type": "Identifier",
"name": "decimalPrecision",
"range": [
- 4365,
- 4381
+ 4445,
+ 4461
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 45
},
"end": {
- "line": 126,
+ "line": 129,
"column": 61
}
}
@@ -7544,61 +7764,61 @@
"type": "Identifier",
"name": "k",
"range": [
- 4382,
- 4383
+ 4462,
+ 4463
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 62
},
"end": {
- "line": 126,
+ "line": 129,
"column": 63
}
}
},
"range": [
- 4365,
- 4384
+ 4445,
+ 4464
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 45
},
"end": {
- "line": 126,
+ "line": 129,
"column": 64
}
}
},
"range": [
- 4344,
- 4384
+ 4424,
+ 4464
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 24
},
"end": {
- "line": 126,
+ "line": 129,
"column": 64
}
}
},
"range": [
- 4344,
- 4385
+ 4424,
+ 4465
],
"loc": {
"start": {
- "line": 126,
+ "line": 129,
"column": 24
},
"end": {
- "line": 126,
+ "line": 129,
"column": 65
}
}
@@ -7615,16 +7835,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 4410,
- 4420
+ 4490,
+ 4500
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 24
},
"end": {
- "line": 127,
+ "line": 130,
"column": 34
}
}
@@ -7633,31 +7853,31 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4421,
- 4429
+ 4501,
+ 4509
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 35
},
"end": {
- "line": 127,
+ "line": 130,
"column": 43
}
}
},
"range": [
- 4410,
- 4430
+ 4490,
+ 4510
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 24
},
"end": {
- "line": 127,
+ "line": 130,
"column": 44
}
}
@@ -7669,16 +7889,16 @@
"type": "Identifier",
"name": "labelId",
"range": [
- 4431,
- 4438
+ 4511,
+ 4518
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 45
},
"end": {
- "line": 127,
+ "line": 130,
"column": 52
}
}
@@ -7687,61 +7907,61 @@
"type": "Identifier",
"name": "k",
"range": [
- 4439,
- 4440
+ 4519,
+ 4520
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 53
},
"end": {
- "line": 127,
+ "line": 130,
"column": 54
}
}
},
"range": [
- 4431,
- 4441
+ 4511,
+ 4521
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 45
},
"end": {
- "line": 127,
+ "line": 130,
"column": 55
}
}
},
"range": [
- 4410,
- 4441
+ 4490,
+ 4521
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 24
},
"end": {
- "line": 127,
+ "line": 130,
"column": 55
}
}
},
"range": [
- 4410,
- 4442
+ 4490,
+ 4522
],
"loc": {
"start": {
- "line": 127,
+ "line": 130,
"column": 24
},
"end": {
- "line": 127,
+ "line": 130,
"column": 56
}
}
@@ -7755,16 +7975,16 @@
"type": "Identifier",
"name": "oTypeThisCol",
"range": [
- 4467,
- 4479
+ 4547,
+ 4559
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 24
},
"end": {
- "line": 128,
+ "line": 131,
"column": 36
}
}
@@ -7781,16 +8001,16 @@
"type": "Identifier",
"name": "outputType",
"range": [
- 4482,
- 4492
+ 4562,
+ 4572
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 39
},
"end": {
- "line": 128,
+ "line": 131,
"column": 49
}
}
@@ -7799,31 +8019,31 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 4497,
- 4506
+ 4577,
+ 4586
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 54
},
"end": {
- "line": 128,
+ "line": 131,
"column": 63
}
}
},
"range": [
- 4482,
- 4506
+ 4562,
+ 4586
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 39
},
"end": {
- "line": 128,
+ "line": 131,
"column": 63
}
}
@@ -7840,16 +8060,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 4538,
- 4541
+ 4618,
+ 4621
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 28
},
"end": {
- "line": 129,
+ "line": 132,
"column": 31
}
}
@@ -7858,31 +8078,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 4542,
- 4547
+ 4622,
+ 4627
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 32
},
"end": {
- "line": 129,
+ "line": 132,
"column": 37
}
}
},
"range": [
- 4538,
- 4547
+ 4618,
+ 4627
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 28
},
"end": {
- "line": 129,
+ "line": 132,
"column": 37
}
}
@@ -7895,48 +8115,48 @@
"type": "Identifier",
"name": "outputType",
"range": [
- 4555,
- 4565
+ 4635,
+ 4645
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 45
},
"end": {
- "line": 129,
+ "line": 132,
"column": 55
}
}
},
"prefix": true,
"range": [
- 4548,
- 4565
+ 4628,
+ 4645
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 38
},
"end": {
- "line": 129,
+ "line": 132,
"column": 55
}
}
}
],
"range": [
- 4538,
- 4566
+ 4618,
+ 4646
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 28
},
"end": {
- "line": 129,
+ "line": 132,
"column": 56
}
}
@@ -7946,46 +8166,46 @@
"value": "object",
"raw": "'object'",
"range": [
- 4569,
- 4577
+ 4649,
+ 4657
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 59
},
"end": {
- "line": 129,
+ "line": 132,
"column": 67
}
}
},
"range": [
- 4538,
- 4577
+ 4618,
+ 4657
],
"loc": {
"start": {
- "line": 129,
+ "line": 132,
"column": 28
},
"end": {
- "line": 129,
+ "line": 132,
"column": 67
}
}
},
"range": [
- 4482,
- 4577
+ 4562,
+ 4657
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 39
},
"end": {
- "line": 129,
+ "line": 132,
"column": 67
}
}
@@ -7997,16 +8217,16 @@
"type": "Identifier",
"name": "outputType",
"range": [
- 4608,
- 4618
+ 4688,
+ 4698
],
"loc": {
"start": {
- "line": 130,
+ "line": 133,
"column": 28
},
"end": {
- "line": 130,
+ "line": 133,
"column": 38
}
}
@@ -8015,31 +8235,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 4619,
- 4620
+ 4699,
+ 4700
],
"loc": {
"start": {
- "line": 130,
+ "line": 133,
"column": 39
},
"end": {
- "line": 130,
+ "line": 133,
"column": 40
}
}
},
"range": [
- 4608,
- 4621
+ 4688,
+ 4701
],
"loc": {
"start": {
- "line": 130,
+ "line": 133,
"column": 28
},
"end": {
- "line": 130,
+ "line": 133,
"column": 41
}
}
@@ -8049,61 +8269,61 @@
"value": null,
"raw": "null",
"range": [
- 4624,
- 4628
+ 4704,
+ 4708
],
"loc": {
"start": {
- "line": 130,
+ "line": 133,
"column": 44
},
"end": {
- "line": 130,
+ "line": 133,
"column": 48
}
}
},
"range": [
- 4482,
- 4628
+ 4562,
+ 4708
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 39
},
"end": {
- "line": 130,
+ "line": 133,
"column": 48
}
}
},
"range": [
- 4467,
- 4628
+ 4547,
+ 4708
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 24
},
"end": {
- "line": 130,
+ "line": 133,
"column": 48
}
}
},
"range": [
- 4467,
- 4629
+ 4547,
+ 4709
],
"loc": {
"start": {
- "line": 128,
+ "line": 131,
"column": 24
},
"end": {
- "line": 130,
+ "line": 133,
"column": 49
}
}
@@ -8117,16 +8337,16 @@
"type": "Identifier",
"name": "opsThisCol",
"range": [
- 4662,
- 4672
+ 4742,
+ 4752
],
"loc": {
"start": {
- "line": 132,
+ "line": 135,
"column": 31
},
"end": {
- "line": 132,
+ "line": 135,
"column": 41
}
}
@@ -8135,31 +8355,31 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 4673,
- 4681
+ 4753,
+ 4761
],
"loc": {
"start": {
- "line": 132,
+ "line": 135,
"column": 42
},
"end": {
- "line": 132,
+ "line": 135,
"column": 50
}
}
},
"range": [
- 4662,
- 4682
+ 4742,
+ 4762
],
"loc": {
"start": {
- "line": 132,
+ "line": 135,
"column": 31
},
"end": {
- "line": 132,
+ "line": 135,
"column": 51
}
}
@@ -8172,16 +8392,16 @@
"value": "mean",
"raw": "'mean'",
"range": [
- 4718,
- 4724
+ 4798,
+ 4804
],
"loc": {
"start": {
- "line": 133,
+ "line": 136,
"column": 33
},
"end": {
- "line": 133,
+ "line": 136,
"column": 39
}
}
@@ -8196,16 +8416,16 @@
"type": "Identifier",
"name": "meanFlag",
"range": [
- 4758,
- 4766
+ 4838,
+ 4846
],
"loc": {
"start": {
- "line": 134,
+ "line": 137,
"column": 32
},
"end": {
- "line": 134,
+ "line": 137,
"column": 40
}
}
@@ -8215,46 +8435,46 @@
"value": 1,
"raw": "1",
"range": [
- 4767,
- 4768
+ 4847,
+ 4848
],
"loc": {
"start": {
- "line": 134,
+ "line": 137,
"column": 41
},
"end": {
- "line": 134,
+ "line": 137,
"column": 42
}
}
},
"range": [
- 4758,
- 4768
+ 4838,
+ 4848
],
"loc": {
"start": {
- "line": 134,
+ "line": 137,
"column": 32
},
"end": {
- "line": 134,
+ "line": 137,
"column": 42
}
}
},
"range": [
- 4758,
- 4769
+ 4838,
+ 4849
],
"loc": {
"start": {
- "line": 134,
+ "line": 137,
"column": 32
},
"end": {
- "line": 134,
+ "line": 137,
"column": 43
}
}
@@ -8263,136 +8483,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 4798,
- 4804
- ],
- "loc": {
- "start": {
- "line": 135,
- "column": 28
- },
- "end": {
- "line": 135,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 4713,
- 4804
- ],
- "loc": {
- "start": {
- "line": 133,
- "column": 28
- },
- "end": {
- "line": 135,
- "column": 34
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "Literal",
- "value": "sum",
- "raw": "'sum'",
- "range": [
- 4838,
- 4843
- ],
- "loc": {
- "start": {
- "line": 136,
- "column": 33
- },
- "end": {
- "line": 136,
- "column": 38
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "sumFlag",
- "range": [
- 4877,
- 4884
- ],
- "loc": {
- "start": {
- "line": 137,
- "column": 32
- },
- "end": {
- "line": 137,
- "column": 39
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 4885,
- 4886
- ],
- "loc": {
- "start": {
- "line": 137,
- "column": 40
- },
- "end": {
- "line": 137,
- "column": 41
- }
- }
- },
- "range": [
- 4877,
- 4886
- ],
- "loc": {
- "start": {
- "line": 137,
- "column": 32
- },
- "end": {
- "line": 137,
- "column": 41
- }
- }
- },
- "range": [
- 4877,
- 4887
- ],
- "loc": {
- "start": {
- "line": 137,
- "column": 32
- },
- "end": {
- "line": 137,
- "column": 42
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 4916,
- 4922
+ 4878,
+ 4884
],
"loc": {
"start": {
@@ -8407,8 +8499,8 @@
}
],
"range": [
- 4833,
- 4922
+ 4793,
+ 4884
],
"loc": {
"start": {
@@ -8425,11 +8517,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "min",
- "raw": "'min'",
+ "value": "sum",
+ "raw": "'sum'",
"range": [
- 4956,
- 4961
+ 4918,
+ 4923
],
"loc": {
"start": {
@@ -8450,10 +8542,10 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "minFlag",
+ "name": "sumFlag",
"range": [
- 4995,
- 5002
+ 4957,
+ 4964
],
"loc": {
"start": {
@@ -8471,8 +8563,8 @@
"value": 1,
"raw": "1",
"range": [
- 5003,
- 5004
+ 4965,
+ 4966
],
"loc": {
"start": {
@@ -8486,8 +8578,8 @@
}
},
"range": [
- 4995,
- 5004
+ 4957,
+ 4966
],
"loc": {
"start": {
@@ -8501,8 +8593,8 @@
}
},
"range": [
- 4995,
- 5005
+ 4957,
+ 4967
],
"loc": {
"start": {
@@ -8519,8 +8611,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 5034,
- 5040
+ 4996,
+ 5002
],
"loc": {
"start": {
@@ -8535,8 +8627,8 @@
}
],
"range": [
- 4951,
- 5040
+ 4913,
+ 5002
],
"loc": {
"start": {
@@ -8553,11 +8645,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "max",
- "raw": "'max'",
+ "value": "min",
+ "raw": "'min'",
"range": [
- 5074,
- 5079
+ 5036,
+ 5041
],
"loc": {
"start": {
@@ -8578,10 +8670,10 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "maxFlag",
+ "name": "minFlag",
"range": [
- 5113,
- 5120
+ 5075,
+ 5082
],
"loc": {
"start": {
@@ -8599,8 +8691,8 @@
"value": 1,
"raw": "1",
"range": [
- 5121,
- 5122
+ 5083,
+ 5084
],
"loc": {
"start": {
@@ -8614,8 +8706,8 @@
}
},
"range": [
- 5113,
- 5122
+ 5075,
+ 5084
],
"loc": {
"start": {
@@ -8629,8 +8721,8 @@
}
},
"range": [
- 5113,
- 5123
+ 5075,
+ 5085
],
"loc": {
"start": {
@@ -8647,8 +8739,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 5152,
- 5158
+ 5114,
+ 5120
],
"loc": {
"start": {
@@ -8663,8 +8755,8 @@
}
],
"range": [
- 5069,
- 5158
+ 5031,
+ 5120
],
"loc": {
"start": {
@@ -8681,11 +8773,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "median",
- "raw": "'median'",
+ "value": "max",
+ "raw": "'max'",
"range": [
- 5192,
- 5200
+ 5154,
+ 5159
],
"loc": {
"start": {
@@ -8694,7 +8786,7 @@
},
"end": {
"line": 145,
- "column": 41
+ "column": 38
}
}
},
@@ -8706,10 +8798,10 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "medFlag",
+ "name": "maxFlag",
"range": [
- 5234,
- 5241
+ 5193,
+ 5200
],
"loc": {
"start": {
@@ -8727,8 +8819,8 @@
"value": 1,
"raw": "1",
"range": [
- 5242,
- 5243
+ 5201,
+ 5202
],
"loc": {
"start": {
@@ -8742,8 +8834,8 @@
}
},
"range": [
- 5234,
- 5243
+ 5193,
+ 5202
],
"loc": {
"start": {
@@ -8757,8 +8849,8 @@
}
},
"range": [
- 5234,
- 5244
+ 5193,
+ 5203
],
"loc": {
"start": {
@@ -8775,24 +8867,24 @@
"type": "BreakStatement",
"label": null,
"range": [
- 5277,
- 5283
+ 5232,
+ 5238
],
"loc": {
"start": {
"line": 147,
- "column": 32
+ "column": 28
},
"end": {
"line": 147,
- "column": 38
+ "column": 34
}
}
}
],
"range": [
- 5187,
- 5283
+ 5149,
+ 5238
],
"loc": {
"start": {
@@ -8801,6 +8893,134 @@
},
"end": {
"line": 147,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "SwitchCase",
+ "test": {
+ "type": "Literal",
+ "value": "median",
+ "raw": "'median'",
+ "range": [
+ 5272,
+ 5280
+ ],
+ "loc": {
+ "start": {
+ "line": 148,
+ "column": 33
+ },
+ "end": {
+ "line": 148,
+ "column": 41
+ }
+ }
+ },
+ "consequent": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "medFlag",
+ "range": [
+ 5314,
+ 5321
+ ],
+ "loc": {
+ "start": {
+ "line": 149,
+ "column": 32
+ },
+ "end": {
+ "line": 149,
+ "column": 39
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 5322,
+ 5323
+ ],
+ "loc": {
+ "start": {
+ "line": 149,
+ "column": 40
+ },
+ "end": {
+ "line": 149,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 5314,
+ 5323
+ ],
+ "loc": {
+ "start": {
+ "line": 149,
+ "column": 32
+ },
+ "end": {
+ "line": 149,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 5314,
+ 5324
+ ],
+ "loc": {
+ "start": {
+ "line": 149,
+ "column": 32
+ },
+ "end": {
+ "line": 149,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "BreakStatement",
+ "label": null,
+ "range": [
+ 5357,
+ 5363
+ ],
+ "loc": {
+ "start": {
+ "line": 150,
+ "column": 32
+ },
+ "end": {
+ "line": 150,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 5267,
+ 5363
+ ],
+ "loc": {
+ "start": {
+ "line": 148,
+ "column": 28
+ },
+ "end": {
+ "line": 150,
"column": 38
}
}
@@ -8812,16 +9032,16 @@
"value": "q1",
"raw": "'q1'",
"range": [
- 5317,
- 5321
+ 5397,
+ 5401
],
"loc": {
"start": {
- "line": 148,
+ "line": 151,
"column": 33
},
"end": {
- "line": 148,
+ "line": 151,
"column": 37
}
}
@@ -8836,16 +9056,16 @@
"type": "Identifier",
"name": "q1Flag",
"range": [
- 5355,
- 5361
+ 5435,
+ 5441
],
"loc": {
"start": {
- "line": 149,
+ "line": 152,
"column": 32
},
"end": {
- "line": 149,
+ "line": 152,
"column": 38
}
}
@@ -8855,46 +9075,46 @@
"value": 1,
"raw": "1",
"range": [
- 5362,
- 5363
+ 5442,
+ 5443
],
"loc": {
"start": {
- "line": 149,
+ "line": 152,
"column": 39
},
"end": {
- "line": 149,
+ "line": 152,
"column": 40
}
}
},
"range": [
- 5355,
- 5363
+ 5435,
+ 5443
],
"loc": {
"start": {
- "line": 149,
+ "line": 152,
"column": 32
},
"end": {
- "line": 149,
+ "line": 152,
"column": 40
}
}
},
"range": [
- 5355,
- 5364
+ 5435,
+ 5444
],
"loc": {
"start": {
- "line": 149,
+ "line": 152,
"column": 32
},
"end": {
- "line": 149,
+ "line": 152,
"column": 41
}
}
@@ -8903,32 +9123,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 5393,
- 5399
+ 5473,
+ 5479
],
"loc": {
"start": {
- "line": 150,
+ "line": 153,
"column": 28
},
"end": {
- "line": 150,
+ "line": 153,
"column": 34
}
}
}
],
"range": [
- 5312,
- 5399
+ 5392,
+ 5479
],
"loc": {
"start": {
- "line": 148,
+ "line": 151,
"column": 28
},
"end": {
- "line": 150,
+ "line": 153,
"column": 34
}
}
@@ -8940,16 +9160,16 @@
"value": "q3",
"raw": "'q3'",
"range": [
- 5433,
- 5437
+ 5513,
+ 5517
],
"loc": {
"start": {
- "line": 151,
+ "line": 154,
"column": 33
},
"end": {
- "line": 151,
+ "line": 154,
"column": 37
}
}
@@ -8964,16 +9184,16 @@
"type": "Identifier",
"name": "q3Flag",
"range": [
- 5471,
- 5477
+ 5551,
+ 5557
],
"loc": {
"start": {
- "line": 152,
+ "line": 155,
"column": 32
},
"end": {
- "line": 152,
+ "line": 155,
"column": 38
}
}
@@ -8983,46 +9203,46 @@
"value": 1,
"raw": "1",
"range": [
- 5478,
- 5479
+ 5558,
+ 5559
],
"loc": {
"start": {
- "line": 152,
+ "line": 155,
"column": 39
},
"end": {
- "line": 152,
+ "line": 155,
"column": 40
}
}
},
"range": [
- 5471,
- 5479
+ 5551,
+ 5559
],
"loc": {
"start": {
- "line": 152,
+ "line": 155,
"column": 32
},
"end": {
- "line": 152,
+ "line": 155,
"column": 40
}
}
},
"range": [
- 5471,
- 5480
+ 5551,
+ 5560
],
"loc": {
"start": {
- "line": 152,
+ "line": 155,
"column": 32
},
"end": {
- "line": 152,
+ "line": 155,
"column": 41
}
}
@@ -9031,111 +9251,111 @@
"type": "BreakStatement",
"label": null,
"range": [
- 5509,
- 5515
+ 5589,
+ 5595
],
"loc": {
"start": {
- "line": 153,
+ "line": 156,
"column": 28
},
"end": {
- "line": 153,
+ "line": 156,
"column": 34
}
}
}
],
"range": [
- 5428,
- 5515
+ 5508,
+ 5595
],
"loc": {
"start": {
- "line": 151,
+ "line": 154,
"column": 28
},
"end": {
- "line": 153,
+ "line": 156,
"column": 34
}
}
}
],
"range": [
- 4655,
- 5541
+ 4735,
+ 5621
],
"loc": {
"start": {
- "line": 132,
+ "line": 135,
"column": 24
},
"end": {
- "line": 154,
+ "line": 157,
"column": 25
}
}
}
],
"range": [
- 4212,
- 5563
+ 4292,
+ 5643
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 56
},
"end": {
- "line": 155,
+ "line": 158,
"column": 21
}
}
},
"alternate": null,
"range": [
- 4177,
- 5563
+ 4257,
+ 5643
],
"loc": {
"start": {
- "line": 123,
+ "line": 126,
"column": 21
},
"end": {
- "line": 155,
+ "line": 158,
"column": 21
}
}
}
],
"range": [
- 4154,
- 5581
+ 4234,
+ 5661
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 52
},
"end": {
- "line": 156,
+ "line": 159,
"column": 17
}
}
},
"range": [
- 4118,
- 5581
+ 4198,
+ 5661
],
"loc": {
"start": {
- "line": 122,
+ "line": 125,
"column": 16
},
"end": {
- "line": 156,
+ "line": 159,
"column": 17
}
}
@@ -9151,16 +9371,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 5607,
- 5608
+ 5687,
+ 5688
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 24
},
"end": {
- "line": 158,
+ "line": 161,
"column": 25
}
}
@@ -9170,31 +9390,31 @@
"value": 0,
"raw": "0",
"range": [
- 5609,
- 5610
+ 5689,
+ 5690
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 26
},
"end": {
- "line": 158,
+ "line": 161,
"column": 27
}
}
},
"range": [
- 5607,
- 5610
+ 5687,
+ 5690
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 24
},
"end": {
- "line": 158,
+ "line": 161,
"column": 27
}
}
@@ -9202,16 +9422,16 @@
],
"kind": "var",
"range": [
- 5603,
- 5610
+ 5683,
+ 5690
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 20
},
"end": {
- "line": 158,
+ "line": 161,
"column": 27
}
}
@@ -9223,16 +9443,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 5612,
- 5613
+ 5692,
+ 5693
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 29
},
"end": {
- "line": 158,
+ "line": 161,
"column": 30
}
}
@@ -9247,16 +9467,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 5614,
- 5623
+ 5694,
+ 5703
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 31
},
"end": {
- "line": 158,
+ "line": 161,
"column": 40
}
}
@@ -9265,31 +9485,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 5624,
- 5628
+ 5704,
+ 5708
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 41
},
"end": {
- "line": 158,
+ "line": 161,
"column": 45
}
}
},
"range": [
- 5614,
- 5629
+ 5694,
+ 5709
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 31
},
"end": {
- "line": 158,
+ "line": 161,
"column": 46
}
}
@@ -9298,46 +9518,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 5630,
- 5636
+ 5710,
+ 5716
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 47
},
"end": {
- "line": 158,
+ "line": 161,
"column": 53
}
}
},
"range": [
- 5614,
- 5636
+ 5694,
+ 5716
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 31
},
"end": {
- "line": 158,
+ "line": 161,
"column": 53
}
}
},
"range": [
- 5612,
- 5636
+ 5692,
+ 5716
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 29
},
"end": {
- "line": 158,
+ "line": 161,
"column": 53
}
}
@@ -9349,32 +9569,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 5638,
- 5639
+ 5718,
+ 5719
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 55
},
"end": {
- "line": 158,
+ "line": 161,
"column": 56
}
}
},
"prefix": false,
"range": [
- 5638,
- 5641
+ 5718,
+ 5721
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 55
},
"end": {
- "line": 158,
+ "line": 161,
"column": 58
}
}
@@ -9397,16 +9617,16 @@
"type": "Identifier",
"name": "q1Flag",
"range": [
- 5744,
- 5750
+ 5824,
+ 5830
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 24
},
"end": {
- "line": 160,
+ "line": 163,
"column": 30
}
}
@@ -9416,31 +9636,31 @@
"value": 1,
"raw": "1",
"range": [
- 5752,
- 5753
+ 5832,
+ 5833
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 32
},
"end": {
- "line": 160,
+ "line": 163,
"column": 33
}
}
},
"range": [
- 5744,
- 5753
+ 5824,
+ 5833
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 24
},
"end": {
- "line": 160,
+ "line": 163,
"column": 33
}
}
@@ -9452,16 +9672,16 @@
"type": "Identifier",
"name": "q3Flag",
"range": [
- 5758,
- 5764
+ 5838,
+ 5844
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 38
},
"end": {
- "line": 160,
+ "line": 163,
"column": 44
}
}
@@ -9471,46 +9691,46 @@
"value": 1,
"raw": "1",
"range": [
- 5766,
- 5767
+ 5846,
+ 5847
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 46
},
"end": {
- "line": 160,
+ "line": 163,
"column": 47
}
}
},
"range": [
- 5758,
- 5767
+ 5838,
+ 5847
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 38
},
"end": {
- "line": 160,
+ "line": 163,
"column": 47
}
}
},
"range": [
- 5743,
- 5768
+ 5823,
+ 5848
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 23
},
"end": {
- "line": 160,
+ "line": 163,
"column": 48
}
}
@@ -9522,16 +9742,16 @@
"type": "Identifier",
"name": "medFlag",
"range": [
- 5773,
- 5780
+ 5853,
+ 5860
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 53
},
"end": {
- "line": 160,
+ "line": 163,
"column": 60
}
}
@@ -9541,46 +9761,46 @@
"value": 1,
"raw": "1",
"range": [
- 5782,
- 5783
+ 5862,
+ 5863
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 62
},
"end": {
- "line": 160,
+ "line": 163,
"column": 63
}
}
},
"range": [
- 5773,
- 5783
+ 5853,
+ 5863
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 53
},
"end": {
- "line": 160,
+ "line": 163,
"column": 63
}
}
},
"range": [
- 5743,
- 5784
+ 5823,
+ 5864
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 23
},
"end": {
- "line": 160,
+ "line": 163,
"column": 64
}
}
@@ -9597,16 +9817,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 5815,
- 5816
+ 5895,
+ 5896
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 28
},
"end": {
- "line": 161,
+ "line": 164,
"column": 29
}
}
@@ -9624,16 +9844,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 5817,
- 5826
+ 5897,
+ 5906
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 30
},
"end": {
- "line": 161,
+ "line": 164,
"column": 39
}
}
@@ -9642,31 +9862,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 5827,
- 5831
+ 5907,
+ 5911
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 40
},
"end": {
- "line": 161,
+ "line": 164,
"column": 44
}
}
},
"range": [
- 5817,
- 5832
+ 5897,
+ 5912
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 30
},
"end": {
- "line": 161,
+ "line": 164,
"column": 45
}
}
@@ -9675,31 +9895,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 5833,
- 5839
+ 5913,
+ 5919
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 46
},
"end": {
- "line": 161,
+ "line": 164,
"column": 52
}
}
},
"range": [
- 5817,
- 5839
+ 5897,
+ 5919
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 30
},
"end": {
- "line": 161,
+ "line": 164,
"column": 52
}
}
@@ -9709,46 +9929,46 @@
"value": 1,
"raw": "1",
"range": [
- 5841,
- 5842
+ 5921,
+ 5922
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 54
},
"end": {
- "line": 161,
+ "line": 164,
"column": 55
}
}
},
"range": [
- 5817,
- 5842
+ 5897,
+ 5922
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 30
},
"end": {
- "line": 161,
+ "line": 164,
"column": 55
}
}
},
"range": [
- 5815,
- 5842
+ 5895,
+ 5922
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 28
},
"end": {
- "line": 161,
+ "line": 164,
"column": 55
}
}
@@ -9765,16 +9985,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 5877,
- 5878
+ 5957,
+ 5958
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 32
},
"end": {
- "line": 162,
+ "line": 165,
"column": 33
}
}
@@ -9786,16 +10006,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 5879,
- 5880
+ 5959,
+ 5960
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 34
},
"end": {
- "line": 162,
+ "line": 165,
"column": 35
}
}
@@ -9805,46 +10025,46 @@
"value": 1,
"raw": "1",
"range": [
- 5881,
- 5882
+ 5961,
+ 5962
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 36
},
"end": {
- "line": 162,
+ "line": 165,
"column": 37
}
}
},
"range": [
- 5879,
- 5882
+ 5959,
+ 5962
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 34
},
"end": {
- "line": 162,
+ "line": 165,
"column": 37
}
}
},
"range": [
- 5877,
- 5882
+ 5957,
+ 5962
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 32
},
"end": {
- "line": 162,
+ "line": 165,
"column": 37
}
}
@@ -9856,16 +10076,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 5884,
- 5885
+ 5964,
+ 5965
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 39
},
"end": {
- "line": 162,
+ "line": 165,
"column": 40
}
}
@@ -9880,16 +10100,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 5886,
- 5895
+ 5966,
+ 5975
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 41
},
"end": {
- "line": 162,
+ "line": 165,
"column": 50
}
}
@@ -9898,31 +10118,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 5896,
- 5900
+ 5976,
+ 5980
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 51
},
"end": {
- "line": 162,
+ "line": 165,
"column": 55
}
}
},
"range": [
- 5886,
- 5901
+ 5966,
+ 5981
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 41
},
"end": {
- "line": 162,
+ "line": 165,
"column": 56
}
}
@@ -9931,46 +10151,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 5902,
- 5908
+ 5982,
+ 5988
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 57
},
"end": {
- "line": 162,
+ "line": 165,
"column": 63
}
}
},
"range": [
- 5886,
- 5908
+ 5966,
+ 5988
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 41
},
"end": {
- "line": 162,
+ "line": 165,
"column": 63
}
}
},
"range": [
- 5884,
- 5908
+ 5964,
+ 5988
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 39
},
"end": {
- "line": 162,
+ "line": 165,
"column": 63
}
}
@@ -9982,32 +10202,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 5910,
- 5911
+ 5990,
+ 5991
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 65
},
"end": {
- "line": 162,
+ "line": 165,
"column": 66
}
}
},
"prefix": false,
"range": [
- 5910,
- 5913
+ 5990,
+ 5993
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 65
},
"end": {
- "line": 162,
+ "line": 165,
"column": 68
}
}
@@ -10026,16 +10246,16 @@
"type": "Identifier",
"name": "eval",
"range": [
- 5952,
- 5956
+ 6032,
+ 6036
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 35
},
"end": {
- "line": 163,
+ "line": 166,
"column": 39
}
}
@@ -10051,16 +10271,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 5957,
- 5966
+ 6037,
+ 6046
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 40
},
"end": {
- "line": 163,
+ "line": 166,
"column": 49
}
}
@@ -10069,31 +10289,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 5967,
- 5971
+ 6047,
+ 6051
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 50
},
"end": {
- "line": 163,
+ "line": 166,
"column": 54
}
}
},
"range": [
- 5957,
- 5972
+ 6037,
+ 6052
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 40
},
"end": {
- "line": 163,
+ "line": 166,
"column": 55
}
}
@@ -10102,47 +10322,47 @@
"type": "Identifier",
"name": "k",
"range": [
- 5973,
- 5974
+ 6053,
+ 6054
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 56
},
"end": {
- "line": 163,
+ "line": 166,
"column": 57
}
}
},
"range": [
- 5957,
- 5975
+ 6037,
+ 6055
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 40
},
"end": {
- "line": 163,
+ "line": 166,
"column": 58
}
}
}
],
"range": [
- 5952,
- 5976
+ 6032,
+ 6056
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 35
},
"end": {
- "line": 163,
+ "line": 166,
"column": 59
}
}
@@ -10153,16 +10373,16 @@
"type": "Identifier",
"name": "eval",
"range": [
- 6015,
- 6019
+ 6095,
+ 6099
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 36
},
"end": {
- "line": 164,
+ "line": 167,
"column": 40
}
}
@@ -10178,16 +10398,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6020,
- 6029
+ 6100,
+ 6109
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 41
},
"end": {
- "line": 164,
+ "line": 167,
"column": 50
}
}
@@ -10196,31 +10416,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6030,
- 6034
+ 6110,
+ 6114
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 51
},
"end": {
- "line": 164,
+ "line": 167,
"column": 55
}
}
},
"range": [
- 6020,
- 6035
+ 6100,
+ 6115
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 41
},
"end": {
- "line": 164,
+ "line": 167,
"column": 56
}
}
@@ -10229,62 +10449,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 6036,
- 6037
+ 6116,
+ 6117
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 57
},
"end": {
- "line": 164,
+ "line": 167,
"column": 58
}
}
},
"range": [
- 6020,
- 6038
+ 6100,
+ 6118
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 41
},
"end": {
- "line": 164,
+ "line": 167,
"column": 59
}
}
}
],
"range": [
- 6015,
- 6039
+ 6095,
+ 6119
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 36
},
"end": {
- "line": 164,
+ "line": 167,
"column": 60
}
}
},
"range": [
- 5952,
- 6039
+ 6032,
+ 6119
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 35
},
"end": {
- "line": 164,
+ "line": 167,
"column": 60
}
}
@@ -10301,16 +10521,16 @@
"type": "Identifier",
"name": "temp",
"range": [
- 6078,
- 6082
+ 6158,
+ 6162
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 36
},
"end": {
- "line": 165,
+ "line": 168,
"column": 40
}
}
@@ -10325,16 +10545,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6085,
- 6094
+ 6165,
+ 6174
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 43
},
"end": {
- "line": 165,
+ "line": 168,
"column": 52
}
}
@@ -10343,31 +10563,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6095,
- 6099
+ 6175,
+ 6179
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 53
},
"end": {
- "line": 165,
+ "line": 168,
"column": 57
}
}
},
"range": [
- 6085,
- 6100
+ 6165,
+ 6180
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 43
},
"end": {
- "line": 165,
+ "line": 168,
"column": 58
}
}
@@ -10376,61 +10596,61 @@
"type": "Identifier",
"name": "j",
"range": [
- 6101,
- 6102
+ 6181,
+ 6182
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 59
},
"end": {
- "line": 165,
+ "line": 168,
"column": 60
}
}
},
"range": [
- 6085,
- 6103
+ 6165,
+ 6183
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 43
},
"end": {
- "line": 165,
+ "line": 168,
"column": 61
}
}
},
"range": [
- 6078,
- 6103
+ 6158,
+ 6183
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 36
},
"end": {
- "line": 165,
+ "line": 168,
"column": 61
}
}
},
"range": [
- 6078,
- 6104
+ 6158,
+ 6184
],
"loc": {
"start": {
- "line": 165,
+ "line": 168,
"column": 36
},
"end": {
- "line": 165,
+ "line": 168,
"column": 62
}
}
@@ -10450,16 +10670,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6141,
- 6150
+ 6221,
+ 6230
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 36
},
"end": {
- "line": 166,
+ "line": 169,
"column": 45
}
}
@@ -10468,31 +10688,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6151,
- 6155
+ 6231,
+ 6235
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 46
},
"end": {
- "line": 166,
+ "line": 169,
"column": 50
}
}
},
"range": [
- 6141,
- 6156
+ 6221,
+ 6236
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 36
},
"end": {
- "line": 166,
+ "line": 169,
"column": 51
}
}
@@ -10501,31 +10721,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 6157,
- 6158
+ 6237,
+ 6238
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 52
},
"end": {
- "line": 166,
+ "line": 169,
"column": 53
}
}
},
"range": [
- 6141,
- 6159
+ 6221,
+ 6239
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 36
},
"end": {
- "line": 166,
+ "line": 169,
"column": 54
}
}
@@ -10540,16 +10760,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6162,
- 6171
+ 6242,
+ 6251
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 57
},
"end": {
- "line": 166,
+ "line": 169,
"column": 66
}
}
@@ -10558,31 +10778,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6172,
- 6176
+ 6252,
+ 6256
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 67
},
"end": {
- "line": 166,
+ "line": 169,
"column": 71
}
}
},
"range": [
- 6162,
- 6177
+ 6242,
+ 6257
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 57
},
"end": {
- "line": 166,
+ "line": 169,
"column": 72
}
}
@@ -10591,61 +10811,61 @@
"type": "Identifier",
"name": "k",
"range": [
- 6178,
- 6179
+ 6258,
+ 6259
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 73
},
"end": {
- "line": 166,
+ "line": 169,
"column": 74
}
}
},
"range": [
- 6162,
- 6180
+ 6242,
+ 6260
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 57
},
"end": {
- "line": 166,
+ "line": 169,
"column": 75
}
}
},
"range": [
- 6141,
- 6180
+ 6221,
+ 6260
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 36
},
"end": {
- "line": 166,
+ "line": 169,
"column": 75
}
}
},
"range": [
- 6141,
- 6181
+ 6221,
+ 6261
],
"loc": {
"start": {
- "line": 166,
+ "line": 169,
"column": 36
},
"end": {
- "line": 166,
+ "line": 169,
"column": 76
}
}
@@ -10665,16 +10885,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6218,
- 6227
+ 6298,
+ 6307
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 36
},
"end": {
- "line": 167,
+ "line": 170,
"column": 45
}
}
@@ -10683,31 +10903,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6228,
- 6232
+ 6308,
+ 6312
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 46
},
"end": {
- "line": 167,
+ "line": 170,
"column": 50
}
}
},
"range": [
- 6218,
- 6233
+ 6298,
+ 6313
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 36
},
"end": {
- "line": 167,
+ "line": 170,
"column": 51
}
}
@@ -10716,31 +10936,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 6234,
- 6235
+ 6314,
+ 6315
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 52
},
"end": {
- "line": 167,
+ "line": 170,
"column": 53
}
}
},
"range": [
- 6218,
- 6236
+ 6298,
+ 6316
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 36
},
"end": {
- "line": 167,
+ "line": 170,
"column": 54
}
}
@@ -10749,173 +10969,173 @@
"type": "Identifier",
"name": "temp",
"range": [
- 6239,
- 6243
+ 6319,
+ 6323
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 57
},
"end": {
- "line": 167,
+ "line": 170,
"column": 61
}
}
},
"range": [
- 6218,
- 6243
+ 6298,
+ 6323
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 36
},
"end": {
- "line": 167,
+ "line": 170,
"column": 61
}
}
},
"range": [
- 6218,
- 6244
+ 6298,
+ 6324
],
"loc": {
"start": {
- "line": 167,
+ "line": 170,
"column": 36
},
"end": {
- "line": 167,
+ "line": 170,
"column": 62
}
}
}
],
"range": [
- 6040,
- 6278
+ 6120,
+ 6358
],
"loc": {
"start": {
- "line": 164,
+ "line": 167,
"column": 61
},
"end": {
- "line": 168,
+ "line": 171,
"column": 33
}
}
},
"alternate": null,
"range": [
- 5949,
- 6278
+ 6029,
+ 6358
],
"loc": {
"start": {
- "line": 163,
+ "line": 166,
"column": 32
},
"end": {
- "line": 168,
+ "line": 171,
"column": 33
}
}
}
],
"range": [
- 5915,
- 6308
+ 5995,
+ 6388
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 70
},
"end": {
- "line": 169,
+ "line": 172,
"column": 29
}
}
},
"range": [
- 5873,
- 6308
+ 5953,
+ 6388
],
"loc": {
"start": {
- "line": 162,
+ "line": 165,
"column": 28
},
"end": {
- "line": 169,
+ "line": 172,
"column": 29
}
}
}
],
"range": [
- 5843,
- 6334
+ 5923,
+ 6414
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 56
},
"end": {
- "line": 170,
+ "line": 173,
"column": 25
}
}
},
"alternate": null,
"range": [
- 5811,
- 6334
+ 5891,
+ 6414
],
"loc": {
"start": {
- "line": 161,
+ "line": 164,
"column": 24
},
"end": {
- "line": 170,
+ "line": 173,
"column": 25
}
}
}
],
"range": [
- 5785,
- 6356
+ 5865,
+ 6436
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 65
},
"end": {
- "line": 171,
+ "line": 174,
"column": 21
}
}
},
"alternate": null,
"range": [
- 5740,
- 6356
+ 5820,
+ 6436
],
"loc": {
"start": {
- "line": 160,
+ "line": 163,
"column": 20
},
"end": {
- "line": 171,
+ "line": 174,
"column": 21
}
},
@@ -10924,16 +11144,16 @@
"type": "Line",
"value": "sort the list for calculation of median and quartiles",
"range": [
- 5664,
- 5719
+ 5744,
+ 5799
],
"loc": {
"start": {
- "line": 159,
+ "line": 162,
"column": 20
},
"end": {
- "line": 159,
+ "line": 162,
"column": 75
}
}
@@ -10949,16 +11169,16 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6381,
- 6387
+ 6461,
+ 6467
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 24
},
"end": {
- "line": 172,
+ "line": 175,
"column": 30
}
}
@@ -10969,16 +11189,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 6390,
- 6400
+ 6470,
+ 6480
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 33
},
"end": {
- "line": 172,
+ "line": 175,
"column": 43
}
}
@@ -10994,16 +11214,16 @@
"type": "Identifier",
"name": "colvalues",
"range": [
- 6401,
- 6410
+ 6481,
+ 6490
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 44
},
"end": {
- "line": 172,
+ "line": 175,
"column": 53
}
}
@@ -11012,31 +11232,31 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 6411,
- 6415
+ 6491,
+ 6495
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 54
},
"end": {
- "line": 172,
+ "line": 175,
"column": 58
}
}
},
"range": [
- 6401,
- 6416
+ 6481,
+ 6496
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 44
},
"end": {
- "line": 172,
+ "line": 175,
"column": 59
}
}
@@ -11045,62 +11265,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 6417,
- 6418
+ 6497,
+ 6498
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 60
},
"end": {
- "line": 172,
+ "line": 175,
"column": 61
}
}
},
"range": [
- 6401,
- 6419
+ 6481,
+ 6499
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 44
},
"end": {
- "line": 172,
+ "line": 175,
"column": 62
}
}
}
],
"range": [
- 6390,
- 6420
+ 6470,
+ 6500
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 33
},
"end": {
- "line": 172,
+ "line": 175,
"column": 63
}
}
},
"range": [
- 6381,
- 6420
+ 6461,
+ 6500
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 24
},
"end": {
- "line": 172,
+ "line": 175,
"column": 63
}
}
@@ -11108,16 +11328,16 @@
],
"kind": "var",
"range": [
- 6377,
- 6421
+ 6457,
+ 6501
],
"loc": {
"start": {
- "line": 172,
+ "line": 175,
"column": 20
},
"end": {
- "line": 172,
+ "line": 175,
"column": 64
}
}
@@ -11134,16 +11354,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 6442,
- 6449
+ 6522,
+ 6529
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 20
},
"end": {
- "line": 173,
+ "line": 176,
"column": 27
}
}
@@ -11152,31 +11372,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 6450,
- 6451
+ 6530,
+ 6531
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 28
},
"end": {
- "line": 173,
+ "line": 176,
"column": 29
}
}
},
"range": [
- 6442,
- 6452
+ 6522,
+ 6532
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 20
},
"end": {
- "line": 173,
+ "line": 176,
"column": 30
}
}
@@ -11187,16 +11407,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 6455,
- 6465
+ 6535,
+ 6545
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 33
},
"end": {
- "line": 173,
+ "line": 176,
"column": 43
}
}
@@ -11206,62 +11426,62 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6466,
- 6472
+ 6546,
+ 6552
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 44
},
"end": {
- "line": 173,
+ "line": 176,
"column": 50
}
}
}
],
"range": [
- 6455,
- 6473
+ 6535,
+ 6553
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 33
},
"end": {
- "line": 173,
+ "line": 176,
"column": 51
}
}
},
"range": [
- 6442,
- 6473
+ 6522,
+ 6553
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 20
},
"end": {
- "line": 173,
+ "line": 176,
"column": 51
}
}
},
"range": [
- 6442,
- 6474
+ 6522,
+ 6554
],
"loc": {
"start": {
- "line": 173,
+ "line": 176,
"column": 20
},
"end": {
- "line": 173,
+ "line": 176,
"column": 52
}
}
@@ -11277,16 +11497,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 6500,
- 6505
+ 6580,
+ 6585
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 24
},
"end": {
- "line": 175,
+ "line": 178,
"column": 29
}
}
@@ -11296,48 +11516,48 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6506,
- 6512
+ 6586,
+ 6592
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 30
},
"end": {
- "line": 175,
+ "line": 178,
"column": 36
}
}
}
],
"range": [
- 6500,
- 6513
+ 6580,
+ 6593
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 24
},
"end": {
- "line": 175,
+ "line": 178,
"column": 37
}
}
},
"prefix": true,
"range": [
- 6499,
- 6513
+ 6579,
+ 6593
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 23
},
"end": {
- "line": 175,
+ "line": 178,
"column": 37
}
}
@@ -11354,47 +11574,47 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 6540,
- 6548
+ 6620,
+ 6628
],
"loc": {
"start": {
- "line": 176,
+ "line": 179,
"column": 24
},
"end": {
- "line": 176,
+ "line": 179,
"column": 32
}
}
},
"prefix": false,
"range": [
- 6540,
- 6550
+ 6620,
+ 6630
],
"loc": {
"start": {
- "line": 176,
+ "line": 179,
"column": 24
},
"end": {
- "line": 176,
+ "line": 179,
"column": 34
}
}
},
"range": [
- 6540,
- 6551
+ 6620,
+ 6631
],
"loc": {
"start": {
- "line": 176,
+ "line": 179,
"column": 24
},
"end": {
- "line": 176,
+ "line": 179,
"column": 35
}
}
@@ -11411,16 +11631,16 @@
"type": "Identifier",
"name": "sumFlag",
"range": [
- 6579,
- 6586
+ 6659,
+ 6666
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 27
},
"end": {
- "line": 177,
+ "line": 180,
"column": 34
}
}
@@ -11430,31 +11650,31 @@
"value": 1,
"raw": "1",
"range": [
- 6589,
- 6590
+ 6669,
+ 6670
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 37
},
"end": {
- "line": 177,
+ "line": 180,
"column": 38
}
}
},
"range": [
- 6579,
- 6590
+ 6659,
+ 6670
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 27
},
"end": {
- "line": 177,
+ "line": 180,
"column": 38
}
}
@@ -11466,16 +11686,16 @@
"type": "Identifier",
"name": "meanFlag",
"range": [
- 6594,
- 6602
+ 6674,
+ 6682
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 42
},
"end": {
- "line": 177,
+ "line": 180,
"column": 50
}
}
@@ -11485,46 +11705,46 @@
"value": 1,
"raw": "1",
"range": [
- 6605,
- 6606
+ 6685,
+ 6686
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 53
},
"end": {
- "line": 177,
+ "line": 180,
"column": 54
}
}
},
"range": [
- 6594,
- 6606
+ 6674,
+ 6686
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 42
},
"end": {
- "line": 177,
+ "line": 180,
"column": 54
}
}
},
"range": [
- 6579,
- 6606
+ 6659,
+ 6686
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 27
},
"end": {
- "line": 177,
+ "line": 180,
"column": 54
}
}
@@ -11541,16 +11761,16 @@
"type": "Identifier",
"name": "sumValue",
"range": [
- 6637,
- 6645
+ 6717,
+ 6725
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 28
},
"end": {
- "line": 178,
+ "line": 181,
"column": 36
}
}
@@ -11561,16 +11781,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 6649,
- 6659
+ 6729,
+ 6739
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 40
},
"end": {
- "line": 178,
+ "line": 181,
"column": 50
}
}
@@ -11580,94 +11800,94 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6661,
- 6667
+ 6741,
+ 6747
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 52
},
"end": {
- "line": 178,
+ "line": 181,
"column": 58
}
}
}
],
"range": [
- 6649,
- 6669
+ 6729,
+ 6749
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 40
},
"end": {
- "line": 178,
+ "line": 181,
"column": 60
}
}
},
"range": [
- 6637,
- 6669
+ 6717,
+ 6749
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 28
},
"end": {
- "line": 178,
+ "line": 181,
"column": 60
}
}
},
"range": [
- 6637,
- 6670
+ 6717,
+ 6750
],
"loc": {
"start": {
- "line": 178,
+ "line": 181,
"column": 28
},
"end": {
- "line": 178,
+ "line": 181,
"column": 61
}
}
}
],
"range": [
- 6607,
- 6696
+ 6687,
+ 6776
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 55
},
"end": {
- "line": 179,
+ "line": 182,
"column": 25
}
}
},
"alternate": null,
"range": [
- 6576,
- 6696
+ 6656,
+ 6776
],
"loc": {
"start": {
- "line": 177,
+ "line": 180,
"column": 24
},
"end": {
- "line": 179,
+ "line": 182,
"column": 25
}
}
@@ -11681,16 +11901,16 @@
"type": "Identifier",
"name": "minFlag",
"range": [
- 6724,
- 6731
+ 6804,
+ 6811
],
"loc": {
"start": {
- "line": 180,
+ "line": 183,
"column": 27
},
"end": {
- "line": 180,
+ "line": 183,
"column": 34
}
}
@@ -11700,31 +11920,31 @@
"value": 1,
"raw": "1",
"range": [
- 6734,
- 6735
+ 6814,
+ 6815
],
"loc": {
"start": {
- "line": 180,
+ "line": 183,
"column": 37
},
"end": {
- "line": 180,
+ "line": 183,
"column": 38
}
}
},
"range": [
- 6724,
- 6735
+ 6804,
+ 6815
],
"loc": {
"start": {
- "line": 180,
+ "line": 183,
"column": 27
},
"end": {
- "line": 180,
+ "line": 183,
"column": 38
}
}
@@ -11741,16 +11961,16 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 6769,
- 6777
+ 6849,
+ 6857
],
"loc": {
"start": {
- "line": 181,
+ "line": 184,
"column": 31
},
"end": {
- "line": 181,
+ "line": 184,
"column": 39
}
}
@@ -11760,31 +11980,31 @@
"value": null,
"raw": "null",
"range": [
- 6780,
- 6784
+ 6860,
+ 6864
],
"loc": {
"start": {
- "line": 181,
+ "line": 184,
"column": 42
},
"end": {
- "line": 181,
+ "line": 184,
"column": 46
}
}
},
"range": [
- 6769,
- 6784
+ 6849,
+ 6864
],
"loc": {
"start": {
- "line": 181,
+ "line": 184,
"column": 31
},
"end": {
- "line": 181,
+ "line": 184,
"column": 46
}
}
@@ -11801,16 +12021,16 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 6819,
- 6827
+ 6899,
+ 6907
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 32
},
"end": {
- "line": 182,
+ "line": 185,
"column": 40
}
}
@@ -11821,16 +12041,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 6830,
- 6840
+ 6910,
+ 6920
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 43
},
"end": {
- "line": 182,
+ "line": 185,
"column": 53
}
}
@@ -11840,78 +12060,78 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6842,
- 6848
+ 6922,
+ 6928
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 55
},
"end": {
- "line": 182,
+ "line": 185,
"column": 61
}
}
}
],
"range": [
- 6830,
- 6850
+ 6910,
+ 6930
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 43
},
"end": {
- "line": 182,
+ "line": 185,
"column": 63
}
}
},
"range": [
- 6819,
- 6850
+ 6899,
+ 6930
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 32
},
"end": {
- "line": 182,
+ "line": 185,
"column": 63
}
}
},
"range": [
- 6819,
- 6851
+ 6899,
+ 6931
],
"loc": {
"start": {
- "line": 182,
+ "line": 185,
"column": 32
},
"end": {
- "line": 182,
+ "line": 185,
"column": 64
}
}
}
],
"range": [
- 6785,
- 6881
+ 6865,
+ 6961
],
"loc": {
"start": {
- "line": 181,
+ "line": 184,
"column": 47
},
"end": {
- "line": 183,
+ "line": 186,
"column": 29
}
}
@@ -11928,16 +12148,16 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 6920,
- 6928
+ 7000,
+ 7008
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 32
},
"end": {
- "line": 184,
+ "line": 187,
"column": 40
}
}
@@ -11953,16 +12173,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 6931,
- 6941
+ 7011,
+ 7021
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 43
},
"end": {
- "line": 184,
+ "line": 187,
"column": 53
}
}
@@ -11972,32 +12192,32 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 6943,
- 6949
+ 7023,
+ 7029
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 55
},
"end": {
- "line": 184,
+ "line": 187,
"column": 61
}
}
}
],
"range": [
- 6931,
- 6951
+ 7011,
+ 7031
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 43
},
"end": {
- "line": 184,
+ "line": 187,
"column": 63
}
}
@@ -12006,31 +12226,31 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 6954,
- 6962
+ 7034,
+ 7042
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 66
},
"end": {
- "line": 184,
+ "line": 187,
"column": 74
}
}
},
"range": [
- 6931,
- 6962
+ 7011,
+ 7042
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 43
},
"end": {
- "line": 184,
+ "line": 187,
"column": 74
}
}
@@ -12041,16 +12261,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 7001,
- 7011
+ 7081,
+ 7091
],
"loc": {
"start": {
- "line": 185,
+ "line": 188,
"column": 36
},
"end": {
- "line": 185,
+ "line": 188,
"column": 46
}
}
@@ -12060,32 +12280,32 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 7013,
- 7019
+ 7093,
+ 7099
],
"loc": {
"start": {
- "line": 185,
+ "line": 188,
"column": 48
},
"end": {
- "line": 185,
+ "line": 188,
"column": 54
}
}
}
],
"range": [
- 7001,
- 7021
+ 7081,
+ 7101
],
"loc": {
"start": {
- "line": 185,
+ "line": 188,
"column": 36
},
"end": {
- "line": 185,
+ "line": 188,
"column": 56
}
}
@@ -12094,124 +12314,124 @@
"type": "Identifier",
"name": "minValue",
"range": [
- 7023,
- 7031
+ 7103,
+ 7111
],
"loc": {
"start": {
- "line": 185,
+ "line": 188,
"column": 58
},
"end": {
- "line": 185,
+ "line": 188,
"column": 66
}
}
},
"range": [
- 6931,
- 7031
+ 7011,
+ 7111
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 43
},
"end": {
- "line": 185,
+ "line": 188,
"column": 66
}
}
},
"range": [
- 6920,
- 7031
+ 7000,
+ 7111
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 32
},
"end": {
- "line": 185,
+ "line": 188,
"column": 66
}
}
},
"range": [
- 6920,
- 7032
+ 7000,
+ 7112
],
"loc": {
"start": {
- "line": 184,
+ "line": 187,
"column": 32
},
"end": {
- "line": 185,
+ "line": 188,
"column": 67
}
}
}
],
"range": [
- 6886,
- 7062
+ 6966,
+ 7142
],
"loc": {
"start": {
- "line": 183,
+ "line": 186,
"column": 34
},
"end": {
- "line": 186,
+ "line": 189,
"column": 29
}
}
},
"range": [
- 6766,
- 7062
+ 6846,
+ 7142
],
"loc": {
"start": {
- "line": 181,
+ "line": 184,
"column": 28
},
"end": {
- "line": 186,
+ "line": 189,
"column": 29
}
}
}
],
"range": [
- 6736,
- 7088
+ 6816,
+ 7168
],
"loc": {
"start": {
- "line": 180,
+ "line": 183,
"column": 39
},
"end": {
- "line": 187,
+ "line": 190,
"column": 25
}
}
},
"alternate": null,
"range": [
- 6721,
- 7088
+ 6801,
+ 7168
],
"loc": {
"start": {
- "line": 180,
+ "line": 183,
"column": 24
},
"end": {
- "line": 187,
+ "line": 190,
"column": 25
}
}
@@ -12225,16 +12445,16 @@
"type": "Identifier",
"name": "maxFlag",
"range": [
- 7116,
- 7123
+ 7196,
+ 7203
],
"loc": {
"start": {
- "line": 188,
+ "line": 191,
"column": 27
},
"end": {
- "line": 188,
+ "line": 191,
"column": 34
}
}
@@ -12244,31 +12464,31 @@
"value": 1,
"raw": "1",
"range": [
- 7126,
- 7127
+ 7206,
+ 7207
],
"loc": {
"start": {
- "line": 188,
+ "line": 191,
"column": 37
},
"end": {
- "line": 188,
+ "line": 191,
"column": 38
}
}
},
"range": [
- 7116,
- 7127
+ 7196,
+ 7207
],
"loc": {
"start": {
- "line": 188,
+ "line": 191,
"column": 27
},
"end": {
- "line": 188,
+ "line": 191,
"column": 38
}
}
@@ -12285,16 +12505,16 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 7162,
- 7170
+ 7242,
+ 7250
],
"loc": {
"start": {
- "line": 189,
+ "line": 192,
"column": 32
},
"end": {
- "line": 189,
+ "line": 192,
"column": 40
}
}
@@ -12304,31 +12524,31 @@
"value": null,
"raw": "null",
"range": [
- 7173,
- 7177
+ 7253,
+ 7257
],
"loc": {
"start": {
- "line": 189,
+ "line": 192,
"column": 43
},
"end": {
- "line": 189,
+ "line": 192,
"column": 47
}
}
},
"range": [
- 7162,
- 7177
+ 7242,
+ 7257
],
"loc": {
"start": {
- "line": 189,
+ "line": 192,
"column": 32
},
"end": {
- "line": 189,
+ "line": 192,
"column": 47
}
}
@@ -12345,16 +12565,16 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 7212,
- 7220
+ 7292,
+ 7300
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 32
},
"end": {
- "line": 190,
+ "line": 193,
"column": 40
}
}
@@ -12365,16 +12585,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 7223,
- 7233
+ 7303,
+ 7313
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 43
},
"end": {
- "line": 190,
+ "line": 193,
"column": 53
}
}
@@ -12384,78 +12604,78 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 7235,
- 7241
+ 7315,
+ 7321
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 55
},
"end": {
- "line": 190,
+ "line": 193,
"column": 61
}
}
}
],
"range": [
- 7223,
- 7243
+ 7303,
+ 7323
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 43
},
"end": {
- "line": 190,
+ "line": 193,
"column": 63
}
}
},
"range": [
- 7212,
- 7243
+ 7292,
+ 7323
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 32
},
"end": {
- "line": 190,
+ "line": 193,
"column": 63
}
}
},
"range": [
- 7212,
- 7244
+ 7292,
+ 7324
],
"loc": {
"start": {
- "line": 190,
+ "line": 193,
"column": 32
},
"end": {
- "line": 190,
+ "line": 193,
"column": 64
}
}
}
],
"range": [
- 7178,
- 7274
+ 7258,
+ 7354
],
"loc": {
"start": {
- "line": 189,
+ "line": 192,
"column": 48
},
"end": {
- "line": 191,
+ "line": 194,
"column": 29
}
}
@@ -12472,16 +12692,16 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 7314,
- 7322
+ 7394,
+ 7402
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 32
},
"end": {
- "line": 192,
+ "line": 195,
"column": 40
}
}
@@ -12497,16 +12717,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 7325,
- 7335
+ 7405,
+ 7415
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 43
},
"end": {
- "line": 192,
+ "line": 195,
"column": 53
}
}
@@ -12516,32 +12736,32 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 7337,
- 7343
+ 7417,
+ 7423
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 55
},
"end": {
- "line": 192,
+ "line": 195,
"column": 61
}
}
}
],
"range": [
- 7325,
- 7345
+ 7405,
+ 7425
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 43
},
"end": {
- "line": 192,
+ "line": 195,
"column": 63
}
}
@@ -12550,31 +12770,31 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 7348,
- 7356
+ 7428,
+ 7436
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 66
},
"end": {
- "line": 192,
+ "line": 195,
"column": 74
}
}
},
"range": [
- 7325,
- 7356
+ 7405,
+ 7436
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 43
},
"end": {
- "line": 192,
+ "line": 195,
"column": 74
}
}
@@ -12585,16 +12805,16 @@
"type": "Identifier",
"name": "parseFloat",
"range": [
- 7395,
- 7405
+ 7475,
+ 7485
],
"loc": {
"start": {
- "line": 193,
+ "line": 196,
"column": 36
},
"end": {
- "line": 193,
+ "line": 196,
"column": 46
}
}
@@ -12604,32 +12824,32 @@
"type": "Identifier",
"name": "cvalue",
"range": [
- 7407,
- 7413
+ 7487,
+ 7493
],
"loc": {
"start": {
- "line": 193,
+ "line": 196,
"column": 48
},
"end": {
- "line": 193,
+ "line": 196,
"column": 54
}
}
}
],
"range": [
- 7395,
- 7415
+ 7475,
+ 7495
],
"loc": {
"start": {
- "line": 193,
+ "line": 196,
"column": 36
},
"end": {
- "line": 193,
+ "line": 196,
"column": 56
}
}
@@ -12638,187 +12858,187 @@
"type": "Identifier",
"name": "maxValue",
"range": [
- 7417,
- 7425
+ 7497,
+ 7505
],
"loc": {
"start": {
- "line": 193,
+ "line": 196,
"column": 58
},
"end": {
- "line": 193,
+ "line": 196,
"column": 66
}
}
},
"range": [
- 7325,
- 7425
+ 7405,
+ 7505
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 43
},
"end": {
- "line": 193,
+ "line": 196,
"column": 66
}
}
},
"range": [
- 7314,
- 7425
+ 7394,
+ 7505
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 32
},
"end": {
- "line": 193,
+ "line": 196,
"column": 66
}
}
},
"range": [
- 7314,
- 7426
+ 7394,
+ 7506
],
"loc": {
"start": {
- "line": 192,
+ "line": 195,
"column": 32
},
"end": {
- "line": 193,
+ "line": 196,
"column": 67
}
}
}
],
"range": [
- 7280,
- 7456
+ 7360,
+ 7536
],
"loc": {
"start": {
- "line": 191,
+ "line": 194,
"column": 35
},
"end": {
- "line": 194,
+ "line": 197,
"column": 29
}
}
},
"range": [
- 7158,
- 7456
+ 7238,
+ 7536
],
"loc": {
"start": {
- "line": 189,
+ "line": 192,
"column": 28
},
"end": {
- "line": 194,
+ "line": 197,
"column": 29
}
}
}
],
"range": [
- 7128,
- 7482
+ 7208,
+ 7562
],
"loc": {
"start": {
- "line": 188,
+ "line": 191,
"column": 39
},
"end": {
- "line": 195,
+ "line": 198,
"column": 25
}
}
},
"alternate": null,
"range": [
- 7113,
- 7482
+ 7193,
+ 7562
],
"loc": {
"start": {
- "line": 188,
+ "line": 191,
"column": 24
},
"end": {
- "line": 195,
+ "line": 198,
"column": 25
}
}
}
],
"range": [
- 6514,
- 7504
+ 6594,
+ 7584
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 38
},
"end": {
- "line": 196,
+ "line": 199,
"column": 21
}
}
},
"alternate": null,
"range": [
- 6496,
- 7504
+ 6576,
+ 7584
],
"loc": {
"start": {
- "line": 175,
+ "line": 178,
"column": 20
},
"end": {
- "line": 196,
+ "line": 199,
"column": 21
}
}
}
],
"range": [
- 5642,
- 7522
+ 5722,
+ 7602
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 59
},
"end": {
- "line": 197,
+ "line": 200,
"column": 17
}
}
},
"range": [
- 5599,
- 7522
+ 5679,
+ 7602
],
"loc": {
"start": {
- "line": 158,
+ "line": 161,
"column": 16
},
"end": {
- "line": 197,
+ "line": 200,
"column": 17
}
},
@@ -12827,16 +13047,16 @@
"type": "Line",
"value": "for j",
"range": [
- 7522,
- 7529
+ 7602,
+ 7609
],
"loc": {
"start": {
- "line": 197,
+ "line": 200,
"column": 17
},
"end": {
- "line": 197,
+ "line": 200,
"column": 24
}
}
@@ -12852,16 +13072,16 @@
"type": "Identifier",
"name": "meanFlag",
"range": [
- 7549,
- 7557
+ 7629,
+ 7637
],
"loc": {
"start": {
- "line": 198,
+ "line": 201,
"column": 19
},
"end": {
- "line": 198,
+ "line": 201,
"column": 27
}
}
@@ -12871,31 +13091,31 @@
"value": 1,
"raw": "1",
"range": [
- 7560,
- 7561
+ 7640,
+ 7641
],
"loc": {
"start": {
- "line": 198,
+ "line": 201,
"column": 30
},
"end": {
- "line": 198,
+ "line": 201,
"column": 31
}
}
},
"range": [
- 7549,
- 7561
+ 7629,
+ 7641
],
"loc": {
"start": {
- "line": 198,
+ "line": 201,
"column": 19
},
"end": {
- "line": 198,
+ "line": 201,
"column": 31
}
}
@@ -12912,16 +13132,16 @@
"type": "Identifier",
"name": "meanValue",
"range": [
- 7584,
- 7593
+ 7664,
+ 7673
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 20
},
"end": {
- "line": 199,
+ "line": 202,
"column": 29
}
}
@@ -12933,16 +13153,16 @@
"type": "Identifier",
"name": "sumValue",
"range": [
- 7596,
- 7604
+ 7676,
+ 7684
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 32
},
"end": {
- "line": 199,
+ "line": 202,
"column": 40
}
}
@@ -12951,93 +13171,93 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 7605,
- 7613
+ 7685,
+ 7693
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 41
},
"end": {
- "line": 199,
+ "line": 202,
"column": 49
}
}
},
"range": [
- 7596,
- 7613
+ 7676,
+ 7693
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 32
},
"end": {
- "line": 199,
+ "line": 202,
"column": 49
}
}
},
"range": [
- 7584,
- 7613
+ 7664,
+ 7693
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 20
},
"end": {
- "line": 199,
+ "line": 202,
"column": 49
}
}
},
"range": [
- 7584,
- 7614
+ 7664,
+ 7694
],
"loc": {
"start": {
- "line": 199,
+ "line": 202,
"column": 20
},
"end": {
- "line": 199,
+ "line": 202,
"column": 50
}
}
}
],
"range": [
- 7562,
- 7632
+ 7642,
+ 7712
],
"loc": {
"start": {
- "line": 198,
+ "line": 201,
"column": 32
},
"end": {
- "line": 200,
+ "line": 203,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7546,
- 7632
+ 7626,
+ 7712
],
"loc": {
"start": {
- "line": 198,
+ "line": 201,
"column": 16
},
"end": {
- "line": 200,
+ "line": 203,
"column": 17
}
},
@@ -13046,16 +13266,16 @@
"type": "Line",
"value": "for j",
"range": [
- 7522,
- 7529
+ 7602,
+ 7609
],
"loc": {
"start": {
- "line": 197,
+ "line": 200,
"column": 17
},
"end": {
- "line": 197,
+ "line": 200,
"column": 24
}
}
@@ -13071,16 +13291,16 @@
"type": "Identifier",
"name": "medFlag",
"range": [
- 7652,
- 7659
+ 7732,
+ 7739
],
"loc": {
"start": {
- "line": 201,
+ "line": 204,
"column": 19
},
"end": {
- "line": 201,
+ "line": 204,
"column": 26
}
}
@@ -13090,31 +13310,31 @@
"value": 1,
"raw": "1",
"range": [
- 7662,
- 7663
+ 7742,
+ 7743
],
"loc": {
"start": {
- "line": 201,
+ "line": 204,
"column": 29
},
"end": {
- "line": 201,
+ "line": 204,
"column": 30
}
}
},
"range": [
- 7652,
- 7663
+ 7732,
+ 7743
],
"loc": {
"start": {
- "line": 201,
+ "line": 204,
"column": 19
},
"end": {
- "line": 201,
+ "line": 204,
"column": 30
}
}
@@ -13131,16 +13351,16 @@
"type": "Identifier",
"name": "aux",
"range": [
- 7690,
- 7693
+ 7770,
+ 7773
],
"loc": {
"start": {
- "line": 202,
+ "line": 205,
"column": 24
},
"end": {
- "line": 202,
+ "line": 205,
"column": 27
}
}
@@ -13150,31 +13370,31 @@
"value": 0,
"raw": "0",
"range": [
- 7696,
- 7697
+ 7776,
+ 7777
],
"loc": {
"start": {
- "line": 202,
+ "line": 205,
"column": 30
},
"end": {
- "line": 202,
+ "line": 205,
"column": 31
}
}
},
"range": [
- 7690,
- 7697
+ 7770,
+ 7777
],
"loc": {
"start": {
- "line": 202,
+ "line": 205,
"column": 24
},
"end": {
- "line": 202,
+ "line": 205,
"column": 31
}
}
@@ -13182,16 +13402,16 @@
],
"kind": "var",
"range": [
- 7686,
- 7698
+ 7766,
+ 7778
],
"loc": {
"start": {
- "line": 202,
+ "line": 205,
"column": 20
},
"end": {
- "line": 202,
+ "line": 205,
"column": 32
}
}
@@ -13208,16 +13428,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 7722,
- 7730
+ 7802,
+ 7810
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 23
},
"end": {
- "line": 203,
+ "line": 206,
"column": 31
}
}
@@ -13227,31 +13447,31 @@
"value": 2,
"raw": "2",
"range": [
- 7731,
- 7732
+ 7811,
+ 7812
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 32
},
"end": {
- "line": 203,
+ "line": 206,
"column": 33
}
}
},
"range": [
- 7722,
- 7732
+ 7802,
+ 7812
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 23
},
"end": {
- "line": 203,
+ "line": 206,
"column": 33
}
}
@@ -13261,31 +13481,31 @@
"value": 1,
"raw": "1",
"range": [
- 7737,
- 7738
+ 7817,
+ 7818
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 38
},
"end": {
- "line": 203,
+ "line": 206,
"column": 39
}
}
},
"range": [
- 7722,
- 7738
+ 7802,
+ 7818
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 23
},
"end": {
- "line": 203,
+ "line": 206,
"column": 39
}
}
@@ -13302,16 +13522,16 @@
"type": "Identifier",
"name": "aux",
"range": [
- 7765,
- 7768
+ 7845,
+ 7848
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 24
},
"end": {
- "line": 204,
+ "line": 207,
"column": 27
}
}
@@ -13325,16 +13545,16 @@
"type": "Identifier",
"name": "Math",
"range": [
- 7771,
- 7775
+ 7851,
+ 7855
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 30
},
"end": {
- "line": 204,
+ "line": 207,
"column": 34
}
}
@@ -13343,31 +13563,31 @@
"type": "Identifier",
"name": "floor",
"range": [
- 7776,
- 7781
+ 7856,
+ 7861
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 35
},
"end": {
- "line": 204,
+ "line": 207,
"column": 40
}
}
},
"range": [
- 7771,
- 7781
+ 7851,
+ 7861
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 30
},
"end": {
- "line": 204,
+ "line": 207,
"column": 40
}
}
@@ -13380,16 +13600,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 7782,
- 7790
+ 7862,
+ 7870
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 41
},
"end": {
- "line": 204,
+ "line": 207,
"column": 49
}
}
@@ -13399,77 +13619,77 @@
"value": 2,
"raw": "2",
"range": [
- 7791,
- 7792
+ 7871,
+ 7872
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 50
},
"end": {
- "line": 204,
+ "line": 207,
"column": 51
}
}
},
"range": [
- 7782,
- 7792
+ 7862,
+ 7872
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 41
},
"end": {
- "line": 204,
+ "line": 207,
"column": 51
}
}
}
],
"range": [
- 7771,
- 7793
+ 7851,
+ 7873
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 30
},
"end": {
- "line": 204,
+ "line": 207,
"column": 52
}
}
},
"range": [
- 7765,
- 7793
+ 7845,
+ 7873
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 24
},
"end": {
- "line": 204,
+ "line": 207,
"column": 52
}
}
},
"range": [
- 7765,
- 7794
+ 7845,
+ 7874
],
"loc": {
"start": {
- "line": 204,
+ "line": 207,
"column": 24
},
"end": {
- "line": 204,
+ "line": 207,
"column": 53
}
}
@@ -13483,16 +13703,16 @@
"type": "Identifier",
"name": "medValue",
"range": [
- 7819,
- 7827
+ 7899,
+ 7907
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 24
},
"end": {
- "line": 205,
+ "line": 208,
"column": 32
}
}
@@ -13504,16 +13724,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 7830,
- 7837
+ 7910,
+ 7917
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 35
},
"end": {
- "line": 205,
+ "line": 208,
"column": 42
}
}
@@ -13522,77 +13742,77 @@
"type": "Identifier",
"name": "aux",
"range": [
- 7838,
- 7841
+ 7918,
+ 7921
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 43
},
"end": {
- "line": 205,
+ "line": 208,
"column": 46
}
}
},
"range": [
- 7830,
- 7842
+ 7910,
+ 7922
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 35
},
"end": {
- "line": 205,
+ "line": 208,
"column": 47
}
}
},
"range": [
- 7819,
- 7842
+ 7899,
+ 7922
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 24
},
"end": {
- "line": 205,
+ "line": 208,
"column": 47
}
}
},
"range": [
- 7819,
- 7843
+ 7899,
+ 7923
],
"loc": {
"start": {
- "line": 205,
+ "line": 208,
"column": 24
},
"end": {
- "line": 205,
+ "line": 208,
"column": 48
}
}
}
],
"range": [
- 7739,
- 7865
+ 7819,
+ 7945
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 40
},
"end": {
- "line": 206,
+ "line": 209,
"column": 21
}
}
@@ -13609,16 +13829,16 @@
"type": "Identifier",
"name": "medValue",
"range": [
- 7896,
- 7904
+ 7976,
+ 7984
],
"loc": {
"start": {
- "line": 207,
+ "line": 210,
"column": 24
},
"end": {
- "line": 207,
+ "line": 210,
"column": 32
}
}
@@ -13636,16 +13856,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 7936,
- 7943
+ 8016,
+ 8023
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 29
},
"end": {
- "line": 208,
+ "line": 211,
"column": 36
}
}
@@ -13657,16 +13877,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 7944,
- 7952
+ 8024,
+ 8032
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 37
},
"end": {
- "line": 208,
+ "line": 211,
"column": 45
}
}
@@ -13676,46 +13896,46 @@
"value": 2,
"raw": "2",
"range": [
- 7953,
- 7954
+ 8033,
+ 8034
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 46
},
"end": {
- "line": 208,
+ "line": 211,
"column": 47
}
}
},
"range": [
- 7944,
- 7954
+ 8024,
+ 8034
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 37
},
"end": {
- "line": 208,
+ "line": 211,
"column": 47
}
}
},
"range": [
- 7936,
- 7955
+ 8016,
+ 8035
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 29
},
"end": {
- "line": 208,
+ "line": 211,
"column": 48
}
}
@@ -13727,16 +13947,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 7958,
- 7965
+ 8038,
+ 8045
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 51
},
"end": {
- "line": 208,
+ "line": 211,
"column": 58
}
}
@@ -13751,16 +13971,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 7968,
- 7976
+ 8048,
+ 8056
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 61
},
"end": {
- "line": 208,
+ "line": 211,
"column": 69
}
}
@@ -13770,31 +13990,31 @@
"value": 2,
"raw": "2",
"range": [
- 7977,
- 7978
+ 8057,
+ 8058
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 70
},
"end": {
- "line": 208,
+ "line": 211,
"column": 71
}
}
},
"range": [
- 7968,
- 7978
+ 8048,
+ 8058
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 61
},
"end": {
- "line": 208,
+ "line": 211,
"column": 71
}
}
@@ -13804,61 +14024,61 @@
"value": 1,
"raw": "1",
"range": [
- 7980,
- 7981
+ 8060,
+ 8061
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 73
},
"end": {
- "line": 208,
+ "line": 211,
"column": 74
}
}
},
"range": [
- 7967,
- 7981
+ 8047,
+ 8061
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 60
},
"end": {
- "line": 208,
+ "line": 211,
"column": 74
}
}
},
"range": [
- 7958,
- 7983
+ 8038,
+ 8063
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 51
},
"end": {
- "line": 208,
+ "line": 211,
"column": 76
}
}
},
"range": [
- 7936,
- 7983
+ 8016,
+ 8063
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 29
},
"end": {
- "line": 208,
+ "line": 211,
"column": 76
}
}
@@ -13868,124 +14088,124 @@
"value": 2,
"raw": "2",
"range": [
- 7985,
- 7986
+ 8065,
+ 8066
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 78
},
"end": {
- "line": 208,
+ "line": 211,
"column": 79
}
}
},
"range": [
- 7935,
- 7986
+ 8015,
+ 8066
],
"loc": {
"start": {
- "line": 208,
+ "line": 211,
"column": 28
},
"end": {
- "line": 208,
+ "line": 211,
"column": 79
}
}
},
"range": [
- 7896,
- 7986
+ 7976,
+ 8066
],
"loc": {
"start": {
- "line": 207,
+ "line": 210,
"column": 24
},
"end": {
- "line": 208,
+ "line": 211,
"column": 79
}
}
},
"range": [
- 7896,
- 7987
+ 7976,
+ 8067
],
"loc": {
"start": {
- "line": 207,
+ "line": 210,
"column": 24
},
"end": {
- "line": 208,
+ "line": 211,
"column": 80
}
}
}
],
"range": [
- 7870,
- 8009
+ 7950,
+ 8089
],
"loc": {
"start": {
- "line": 206,
+ "line": 209,
"column": 26
},
"end": {
- "line": 209,
+ "line": 212,
"column": 21
}
}
},
"range": [
- 7719,
- 8009
+ 7799,
+ 8089
],
"loc": {
"start": {
- "line": 203,
+ "line": 206,
"column": 20
},
"end": {
- "line": 209,
+ "line": 212,
"column": 21
}
}
}
],
"range": [
- 7664,
- 8027
+ 7744,
+ 8107
],
"loc": {
"start": {
- "line": 201,
+ "line": 204,
"column": 31
},
"end": {
- "line": 210,
+ "line": 213,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7649,
- 8027
+ 7729,
+ 8107
],
"loc": {
"start": {
- "line": 201,
+ "line": 204,
"column": 16
},
"end": {
- "line": 210,
+ "line": 213,
"column": 17
}
}
@@ -13999,32 +14219,32 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8048,
- 8052
+ 8128,
+ 8132
],
"loc": {
"start": {
- "line": 211,
+ "line": 214,
"column": 20
},
"end": {
- "line": 211,
+ "line": 214,
"column": 24
}
}
},
"init": null,
"range": [
- 8048,
- 8052
+ 8128,
+ 8132
],
"loc": {
"start": {
- "line": 211,
+ "line": 214,
"column": 20
},
"end": {
- "line": 211,
+ "line": 214,
"column": 24
}
}
@@ -14032,16 +14252,16 @@
],
"kind": "var",
"range": [
- 8044,
- 8053
+ 8124,
+ 8133
],
"loc": {
"start": {
- "line": 211,
+ "line": 214,
"column": 16
},
"end": {
- "line": 211,
+ "line": 214,
"column": 25
}
}
@@ -14055,16 +14275,16 @@
"type": "Identifier",
"name": "q1Flag",
"range": [
- 8073,
- 8079
+ 8153,
+ 8159
],
"loc": {
"start": {
- "line": 212,
+ "line": 215,
"column": 19
},
"end": {
- "line": 212,
+ "line": 215,
"column": 25
}
}
@@ -14074,31 +14294,31 @@
"value": 1,
"raw": "1",
"range": [
- 8082,
- 8083
+ 8162,
+ 8163
],
"loc": {
"start": {
- "line": 212,
+ "line": 215,
"column": 28
},
"end": {
- "line": 212,
+ "line": 215,
"column": 29
}
}
},
"range": [
- 8073,
- 8083
+ 8153,
+ 8163
],
"loc": {
"start": {
- "line": 212,
+ "line": 215,
"column": 19
},
"end": {
- "line": 212,
+ "line": 215,
"column": 29
}
}
@@ -14115,16 +14335,16 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8106,
- 8110
+ 8186,
+ 8190
],
"loc": {
"start": {
- "line": 213,
+ "line": 216,
"column": 20
},
"end": {
- "line": 213,
+ "line": 216,
"column": 24
}
}
@@ -14134,46 +14354,46 @@
"value": 0,
"raw": "0.0",
"range": [
- 8111,
- 8114
+ 8191,
+ 8194
],
"loc": {
"start": {
- "line": 213,
+ "line": 216,
"column": 25
},
"end": {
- "line": 213,
+ "line": 216,
"column": 28
}
}
},
"range": [
- 8106,
- 8114
+ 8186,
+ 8194
],
"loc": {
"start": {
- "line": 213,
+ "line": 216,
"column": 20
},
"end": {
- "line": 213,
+ "line": 216,
"column": 28
}
}
},
"range": [
- 8106,
- 8115
+ 8186,
+ 8195
],
"loc": {
"start": {
- "line": 213,
+ "line": 216,
"column": 20
},
"end": {
- "line": 213,
+ "line": 216,
"column": 29
}
}
@@ -14187,16 +14407,16 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8136,
- 8140
+ 8216,
+ 8220
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 20
},
"end": {
- "line": 214,
+ "line": 217,
"column": 24
}
}
@@ -14210,16 +14430,16 @@
"type": "Identifier",
"name": "Math",
"range": [
- 8143,
- 8147
+ 8223,
+ 8227
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 27
},
"end": {
- "line": 214,
+ "line": 217,
"column": 31
}
}
@@ -14228,31 +14448,31 @@
"type": "Identifier",
"name": "floor",
"range": [
- 8148,
- 8153
+ 8228,
+ 8233
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 32
},
"end": {
- "line": 214,
+ "line": 217,
"column": 37
}
}
},
"range": [
- 8143,
- 8153
+ 8223,
+ 8233
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 27
},
"end": {
- "line": 214,
+ "line": 217,
"column": 37
}
}
@@ -14265,16 +14485,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 8154,
- 8162
+ 8234,
+ 8242
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 38
},
"end": {
- "line": 214,
+ "line": 217,
"column": 46
}
}
@@ -14284,77 +14504,77 @@
"value": 4,
"raw": "4",
"range": [
- 8163,
- 8164
+ 8243,
+ 8244
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 47
},
"end": {
- "line": 214,
+ "line": 217,
"column": 48
}
}
},
"range": [
- 8154,
- 8164
+ 8234,
+ 8244
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 38
},
"end": {
- "line": 214,
+ "line": 217,
"column": 48
}
}
}
],
"range": [
- 8143,
- 8165
+ 8223,
+ 8245
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 27
},
"end": {
- "line": 214,
+ "line": 217,
"column": 49
}
}
},
"range": [
- 8136,
- 8165
+ 8216,
+ 8245
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 20
},
"end": {
- "line": 214,
+ "line": 217,
"column": 49
}
}
},
"range": [
- 8136,
- 8166
+ 8216,
+ 8246
],
"loc": {
"start": {
- "line": 214,
+ "line": 217,
"column": 20
},
"end": {
- "line": 214,
+ "line": 217,
"column": 50
}
}
@@ -14372,16 +14592,16 @@
"value": 4,
"raw": "4",
"range": [
- 8190,
- 8191
+ 8270,
+ 8271
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 23
},
"end": {
- "line": 215,
+ "line": 218,
"column": 24
}
}
@@ -14390,31 +14610,31 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8192,
- 8196
+ 8272,
+ 8276
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 25
},
"end": {
- "line": 215,
+ "line": 218,
"column": 29
}
}
},
"range": [
- 8190,
- 8196
+ 8270,
+ 8276
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 23
},
"end": {
- "line": 215,
+ "line": 218,
"column": 29
}
}
@@ -14423,31 +14643,31 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 8200,
- 8208
+ 8280,
+ 8288
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 33
},
"end": {
- "line": 215,
+ "line": 218,
"column": 41
}
}
},
"range": [
- 8190,
- 8208
+ 8270,
+ 8288
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 23
},
"end": {
- "line": 215,
+ "line": 218,
"column": 41
}
}
@@ -14464,16 +14684,16 @@
"type": "Identifier",
"name": "q1Value",
"range": [
- 8235,
- 8242
+ 8315,
+ 8322
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 24
},
"end": {
- "line": 216,
+ "line": 219,
"column": 31
}
}
@@ -14491,16 +14711,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8246,
- 8253
+ 8326,
+ 8333
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 35
},
"end": {
- "line": 216,
+ "line": 219,
"column": 42
}
}
@@ -14512,16 +14732,16 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8254,
- 8258
+ 8334,
+ 8338
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 43
},
"end": {
- "line": 216,
+ "line": 219,
"column": 47
}
}
@@ -14531,46 +14751,46 @@
"value": 1,
"raw": "1",
"range": [
- 8259,
- 8260
+ 8339,
+ 8340
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 48
},
"end": {
- "line": 216,
+ "line": 219,
"column": 49
}
}
},
"range": [
- 8254,
- 8260
+ 8334,
+ 8340
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 43
},
"end": {
- "line": 216,
+ "line": 219,
"column": 49
}
}
},
"range": [
- 8246,
- 8261
+ 8326,
+ 8341
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 35
},
"end": {
- "line": 216,
+ "line": 219,
"column": 50
}
}
@@ -14582,16 +14802,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8264,
- 8271
+ 8344,
+ 8351
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 53
},
"end": {
- "line": 216,
+ "line": 219,
"column": 60
}
}
@@ -14600,46 +14820,46 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8272,
- 8276
+ 8352,
+ 8356
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 61
},
"end": {
- "line": 216,
+ "line": 219,
"column": 65
}
}
},
"range": [
- 8264,
- 8277
+ 8344,
+ 8357
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 53
},
"end": {
- "line": 216,
+ "line": 219,
"column": 66
}
}
},
"range": [
- 8246,
- 8277
+ 8326,
+ 8357
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 35
},
"end": {
- "line": 216,
+ "line": 219,
"column": 66
}
}
@@ -14649,77 +14869,77 @@
"value": 2,
"raw": "2",
"range": [
- 8279,
- 8280
+ 8359,
+ 8360
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 68
},
"end": {
- "line": 216,
+ "line": 219,
"column": 69
}
}
},
"range": [
- 8245,
- 8280
+ 8325,
+ 8360
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 34
},
"end": {
- "line": 216,
+ "line": 219,
"column": 69
}
}
},
"range": [
- 8235,
- 8280
+ 8315,
+ 8360
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 24
},
"end": {
- "line": 216,
+ "line": 219,
"column": 69
}
}
},
"range": [
- 8235,
- 8281
+ 8315,
+ 8361
],
"loc": {
"start": {
- "line": 216,
+ "line": 219,
"column": 24
},
"end": {
- "line": 216,
+ "line": 219,
"column": 70
}
}
}
],
"range": [
- 8209,
- 8303
+ 8289,
+ 8383
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 42
},
"end": {
- "line": 217,
+ "line": 220,
"column": 21
}
}
@@ -14736,16 +14956,16 @@
"type": "Identifier",
"name": "q1Value",
"range": [
- 8335,
- 8342
+ 8415,
+ 8422
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 24
},
"end": {
- "line": 218,
+ "line": 221,
"column": 31
}
}
@@ -14757,16 +14977,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8345,
- 8352
+ 8425,
+ 8432
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 34
},
"end": {
- "line": 218,
+ "line": 221,
"column": 41
}
}
@@ -14775,124 +14995,124 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8353,
- 8357
+ 8433,
+ 8437
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 42
},
"end": {
- "line": 218,
+ "line": 221,
"column": 46
}
}
},
"range": [
- 8345,
- 8358
+ 8425,
+ 8438
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 34
},
"end": {
- "line": 218,
+ "line": 221,
"column": 47
}
}
},
"range": [
- 8335,
- 8358
+ 8415,
+ 8438
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 24
},
"end": {
- "line": 218,
+ "line": 221,
"column": 47
}
}
},
"range": [
- 8335,
- 8359
+ 8415,
+ 8439
],
"loc": {
"start": {
- "line": 218,
+ "line": 221,
"column": 24
},
"end": {
- "line": 218,
+ "line": 221,
"column": 48
}
}
}
],
"range": [
- 8309,
- 8381
+ 8389,
+ 8461
],
"loc": {
"start": {
- "line": 217,
+ "line": 220,
"column": 27
},
"end": {
- "line": 219,
+ "line": 222,
"column": 21
}
}
},
"range": [
- 8187,
- 8381
+ 8267,
+ 8461
],
"loc": {
"start": {
- "line": 215,
+ "line": 218,
"column": 20
},
"end": {
- "line": 219,
+ "line": 222,
"column": 21
}
}
}
],
"range": [
- 8084,
- 8399
+ 8164,
+ 8479
],
"loc": {
"start": {
- "line": 212,
+ "line": 215,
"column": 30
},
"end": {
- "line": 220,
+ "line": 223,
"column": 17
}
}
},
"alternate": null,
"range": [
- 8070,
- 8399
+ 8150,
+ 8479
],
"loc": {
"start": {
- "line": 212,
+ "line": 215,
"column": 16
},
"end": {
- "line": 220,
+ "line": 223,
"column": 17
}
}
@@ -14906,16 +15126,16 @@
"type": "Identifier",
"name": "q3Flag",
"range": [
- 8420,
- 8426
+ 8500,
+ 8506
],
"loc": {
"start": {
- "line": 221,
+ "line": 224,
"column": 20
},
"end": {
- "line": 221,
+ "line": 224,
"column": 26
}
}
@@ -14925,31 +15145,31 @@
"value": 1,
"raw": "1",
"range": [
- 8429,
- 8430
+ 8509,
+ 8510
],
"loc": {
"start": {
- "line": 221,
+ "line": 224,
"column": 29
},
"end": {
- "line": 221,
+ "line": 224,
"column": 30
}
}
},
"range": [
- 8420,
- 8430
+ 8500,
+ 8510
],
"loc": {
"start": {
- "line": 221,
+ "line": 224,
"column": 20
},
"end": {
- "line": 221,
+ "line": 224,
"column": 30
}
}
@@ -14966,16 +15186,16 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8453,
- 8457
+ 8533,
+ 8537
],
"loc": {
"start": {
- "line": 222,
+ "line": 225,
"column": 20
},
"end": {
- "line": 222,
+ "line": 225,
"column": 24
}
}
@@ -14985,46 +15205,46 @@
"value": 0,
"raw": "0.0",
"range": [
- 8458,
- 8461
+ 8538,
+ 8541
],
"loc": {
"start": {
- "line": 222,
+ "line": 225,
"column": 25
},
"end": {
- "line": 222,
+ "line": 225,
"column": 28
}
}
},
"range": [
- 8453,
- 8461
+ 8533,
+ 8541
],
"loc": {
"start": {
- "line": 222,
+ "line": 225,
"column": 20
},
"end": {
- "line": 222,
+ "line": 225,
"column": 28
}
}
},
"range": [
- 8453,
- 8462
+ 8533,
+ 8542
],
"loc": {
"start": {
- "line": 222,
+ "line": 225,
"column": 20
},
"end": {
- "line": 222,
+ "line": 225,
"column": 29
}
}
@@ -15038,16 +15258,16 @@
"type": "Identifier",
"name": "posb",
"range": [
- 8487,
- 8491
+ 8567,
+ 8571
],
"loc": {
"start": {
- "line": 223,
+ "line": 226,
"column": 24
},
"end": {
- "line": 223,
+ "line": 226,
"column": 28
}
}
@@ -15057,31 +15277,31 @@
"value": 0,
"raw": "0.0",
"range": [
- 8492,
- 8495
+ 8572,
+ 8575
],
"loc": {
"start": {
- "line": 223,
+ "line": 226,
"column": 29
},
"end": {
- "line": 223,
+ "line": 226,
"column": 32
}
}
},
"range": [
- 8487,
- 8495
+ 8567,
+ 8575
],
"loc": {
"start": {
- "line": 223,
+ "line": 226,
"column": 24
},
"end": {
- "line": 223,
+ "line": 226,
"column": 32
}
}
@@ -15089,16 +15309,16 @@
],
"kind": "var",
"range": [
- 8483,
- 8496
+ 8563,
+ 8576
],
"loc": {
"start": {
- "line": 223,
+ "line": 226,
"column": 20
},
"end": {
- "line": 223,
+ "line": 226,
"column": 33
}
}
@@ -15112,16 +15332,16 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8517,
- 8521
+ 8597,
+ 8601
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 20
},
"end": {
- "line": 224,
+ "line": 227,
"column": 24
}
}
@@ -15135,16 +15355,16 @@
"type": "Identifier",
"name": "Math",
"range": [
- 8524,
- 8528
+ 8604,
+ 8608
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 27
},
"end": {
- "line": 224,
+ "line": 227,
"column": 31
}
}
@@ -15153,31 +15373,31 @@
"type": "Identifier",
"name": "floor",
"range": [
- 8529,
- 8534
+ 8609,
+ 8614
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 32
},
"end": {
- "line": 224,
+ "line": 227,
"column": 37
}
}
},
"range": [
- 8524,
- 8534
+ 8604,
+ 8614
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 27
},
"end": {
- "line": 224,
+ "line": 227,
"column": 37
}
}
@@ -15190,16 +15410,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 8535,
- 8543
+ 8615,
+ 8623
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 38
},
"end": {
- "line": 224,
+ "line": 227,
"column": 46
}
}
@@ -15209,77 +15429,77 @@
"value": 4,
"raw": "4",
"range": [
- 8544,
- 8545
+ 8624,
+ 8625
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 47
},
"end": {
- "line": 224,
+ "line": 227,
"column": 48
}
}
},
"range": [
- 8535,
- 8545
+ 8615,
+ 8625
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 38
},
"end": {
- "line": 224,
+ "line": 227,
"column": 48
}
}
}
],
"range": [
- 8524,
- 8546
+ 8604,
+ 8626
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 27
},
"end": {
- "line": 224,
+ "line": 227,
"column": 49
}
}
},
"range": [
- 8517,
- 8546
+ 8597,
+ 8626
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 20
},
"end": {
- "line": 224,
+ "line": 227,
"column": 49
}
}
},
"range": [
- 8517,
- 8547
+ 8597,
+ 8627
],
"loc": {
"start": {
- "line": 224,
+ "line": 227,
"column": 20
},
"end": {
- "line": 224,
+ "line": 227,
"column": 50
}
}
@@ -15297,16 +15517,16 @@
"value": 4,
"raw": "4",
"range": [
- 8572,
- 8573
+ 8652,
+ 8653
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 24
},
"end": {
- "line": 225,
+ "line": 228,
"column": 25
}
}
@@ -15315,31 +15535,31 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8574,
- 8578
+ 8654,
+ 8658
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 26
},
"end": {
- "line": 225,
+ "line": 228,
"column": 30
}
}
},
"range": [
- 8572,
- 8578
+ 8652,
+ 8658
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 24
},
"end": {
- "line": 225,
+ "line": 228,
"column": 30
}
}
@@ -15348,31 +15568,31 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 8583,
- 8591
+ 8663,
+ 8671
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 35
},
"end": {
- "line": 225,
+ "line": 228,
"column": 43
}
}
},
"range": [
- 8572,
- 8591
+ 8652,
+ 8671
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 24
},
"end": {
- "line": 225,
+ "line": 228,
"column": 43
}
}
@@ -15389,16 +15609,16 @@
"type": "Identifier",
"name": "posb",
"range": [
- 8618,
- 8622
+ 8698,
+ 8702
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 24
},
"end": {
- "line": 226,
+ "line": 229,
"column": 28
}
}
@@ -15411,16 +15631,16 @@
"value": 3,
"raw": "3",
"range": [
- 8625,
- 8626
+ 8705,
+ 8706
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 31
},
"end": {
- "line": 226,
+ "line": 229,
"column": 32
}
}
@@ -15429,61 +15649,61 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8627,
- 8631
+ 8707,
+ 8711
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 33
},
"end": {
- "line": 226,
+ "line": 229,
"column": 37
}
}
},
"range": [
- 8625,
- 8631
+ 8705,
+ 8711
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 31
},
"end": {
- "line": 226,
+ "line": 229,
"column": 37
}
}
},
"range": [
- 8618,
- 8631
+ 8698,
+ 8711
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 24
},
"end": {
- "line": 226,
+ "line": 229,
"column": 37
}
}
},
"range": [
- 8618,
- 8632
+ 8698,
+ 8712
],
"loc": {
"start": {
- "line": 226,
+ "line": 229,
"column": 24
},
"end": {
- "line": 226,
+ "line": 229,
"column": 38
}
}
@@ -15497,16 +15717,16 @@
"type": "Identifier",
"name": "q3Value",
"range": [
- 8657,
- 8664
+ 8737,
+ 8744
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 24
},
"end": {
- "line": 227,
+ "line": 230,
"column": 31
}
}
@@ -15524,16 +15744,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8668,
- 8675
+ 8748,
+ 8755
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 35
},
"end": {
- "line": 227,
+ "line": 230,
"column": 42
}
}
@@ -15542,31 +15762,31 @@
"type": "Identifier",
"name": "posb",
"range": [
- 8676,
- 8680
+ 8756,
+ 8760
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 43
},
"end": {
- "line": 227,
+ "line": 230,
"column": 47
}
}
},
"range": [
- 8668,
- 8681
+ 8748,
+ 8761
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 35
},
"end": {
- "line": 227,
+ "line": 230,
"column": 48
}
}
@@ -15578,16 +15798,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8684,
- 8691
+ 8764,
+ 8771
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 51
},
"end": {
- "line": 227,
+ "line": 230,
"column": 58
}
}
@@ -15599,16 +15819,16 @@
"type": "Identifier",
"name": "posb",
"range": [
- 8692,
- 8696
+ 8772,
+ 8776
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 59
},
"end": {
- "line": 227,
+ "line": 230,
"column": 63
}
}
@@ -15618,61 +15838,61 @@
"value": 1,
"raw": "1",
"range": [
- 8697,
- 8698
+ 8777,
+ 8778
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 64
},
"end": {
- "line": 227,
+ "line": 230,
"column": 65
}
}
},
"range": [
- 8692,
- 8698
+ 8772,
+ 8778
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 59
},
"end": {
- "line": 227,
+ "line": 230,
"column": 65
}
}
},
"range": [
- 8684,
- 8699
+ 8764,
+ 8779
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 51
},
"end": {
- "line": 227,
+ "line": 230,
"column": 66
}
}
},
"range": [
- 8668,
- 8699
+ 8748,
+ 8779
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 35
},
"end": {
- "line": 227,
+ "line": 230,
"column": 66
}
}
@@ -15682,77 +15902,77 @@
"value": 2,
"raw": "2",
"range": [
- 8701,
- 8702
+ 8781,
+ 8782
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 68
},
"end": {
- "line": 227,
+ "line": 230,
"column": 69
}
}
},
"range": [
- 8667,
- 8702
+ 8747,
+ 8782
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 34
},
"end": {
- "line": 227,
+ "line": 230,
"column": 69
}
}
},
"range": [
- 8657,
- 8702
+ 8737,
+ 8782
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 24
},
"end": {
- "line": 227,
+ "line": 230,
"column": 69
}
}
},
"range": [
- 8657,
- 8703
+ 8737,
+ 8783
],
"loc": {
"start": {
- "line": 227,
+ "line": 230,
"column": 24
},
"end": {
- "line": 227,
+ "line": 230,
"column": 70
}
}
}
],
"range": [
- 8592,
- 8725
+ 8672,
+ 8805
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 44
},
"end": {
- "line": 228,
+ "line": 231,
"column": 21
}
}
@@ -15769,16 +15989,16 @@
"type": "Identifier",
"name": "q3Value",
"range": [
- 8757,
- 8764
+ 8837,
+ 8844
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 24
},
"end": {
- "line": 229,
+ "line": 232,
"column": 31
}
}
@@ -15790,16 +16010,16 @@
"type": "Identifier",
"name": "theList",
"range": [
- 8767,
- 8774
+ 8847,
+ 8854
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 34
},
"end": {
- "line": 229,
+ "line": 232,
"column": 41
}
}
@@ -15814,16 +16034,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 8775,
- 8783
+ 8855,
+ 8863
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 42
},
"end": {
- "line": 229,
+ "line": 232,
"column": 50
}
}
@@ -15832,31 +16052,31 @@
"type": "Identifier",
"name": "posa",
"range": [
- 8784,
- 8788
+ 8864,
+ 8868
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 51
},
"end": {
- "line": 229,
+ "line": 232,
"column": 55
}
}
},
"range": [
- 8775,
- 8788
+ 8855,
+ 8868
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 42
},
"end": {
- "line": 229,
+ "line": 232,
"column": 55
}
}
@@ -15866,139 +16086,139 @@
"value": 1,
"raw": "1",
"range": [
- 8789,
- 8790
+ 8869,
+ 8870
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 56
},
"end": {
- "line": 229,
+ "line": 232,
"column": 57
}
}
},
"range": [
- 8775,
- 8790
+ 8855,
+ 8870
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 42
},
"end": {
- "line": 229,
+ "line": 232,
"column": 57
}
}
},
"range": [
- 8767,
- 8791
+ 8847,
+ 8871
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 34
},
"end": {
- "line": 229,
+ "line": 232,
"column": 58
}
}
},
"range": [
- 8757,
- 8791
+ 8837,
+ 8871
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 24
},
"end": {
- "line": 229,
+ "line": 232,
"column": 58
}
}
},
"range": [
- 8757,
- 8792
+ 8837,
+ 8872
],
"loc": {
"start": {
- "line": 229,
+ "line": 232,
"column": 24
},
"end": {
- "line": 229,
+ "line": 232,
"column": 59
}
}
}
],
"range": [
- 8731,
- 8814
+ 8811,
+ 8894
],
"loc": {
"start": {
- "line": 228,
+ "line": 231,
"column": 27
},
"end": {
- "line": 230,
+ "line": 233,
"column": 21
}
}
},
"range": [
- 8568,
- 8814
+ 8648,
+ 8894
],
"loc": {
"start": {
- "line": 225,
+ "line": 228,
"column": 20
},
"end": {
- "line": 230,
+ "line": 233,
"column": 21
}
}
}
],
"range": [
- 8431,
- 8832
+ 8511,
+ 8912
],
"loc": {
"start": {
- "line": 221,
+ "line": 224,
"column": 31
},
"end": {
- "line": 231,
+ "line": 234,
"column": 17
}
}
},
"alternate": null,
"range": [
- 8416,
- 8832
+ 8496,
+ 8912
],
"loc": {
"start": {
- "line": 221,
+ "line": 224,
"column": 16
},
"end": {
- "line": 231,
+ "line": 234,
"column": 17
}
}
@@ -16014,16 +16234,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 8858,
- 8859
+ 8938,
+ 8939
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 24
},
"end": {
- "line": 233,
+ "line": 236,
"column": 25
}
}
@@ -16033,31 +16253,31 @@
"value": 0,
"raw": "0",
"range": [
- 8860,
- 8861
+ 8940,
+ 8941
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 26
},
"end": {
- "line": 233,
+ "line": 236,
"column": 27
}
}
},
"range": [
- 8858,
- 8861
+ 8938,
+ 8941
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 24
},
"end": {
- "line": 233,
+ "line": 236,
"column": 27
}
}
@@ -16065,16 +16285,16 @@
],
"kind": "var",
"range": [
- 8854,
- 8861
+ 8934,
+ 8941
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 20
},
"end": {
- "line": 233,
+ "line": 236,
"column": 27
}
}
@@ -16086,16 +16306,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 8863,
- 8864
+ 8943,
+ 8944
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 29
},
"end": {
- "line": 233,
+ "line": 236,
"column": 30
}
}
@@ -16104,31 +16324,31 @@
"type": "Identifier",
"name": "mThisCol",
"range": [
- 8866,
- 8874
+ 8946,
+ 8954
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 32
},
"end": {
- "line": 233,
+ "line": 236,
"column": 40
}
}
},
"range": [
- 8863,
- 8874
+ 8943,
+ 8954
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 29
},
"end": {
- "line": 233,
+ "line": 236,
"column": 40
}
}
@@ -16140,32 +16360,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 8876,
- 8877
+ 8956,
+ 8957
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 42
},
"end": {
- "line": 233,
+ "line": 236,
"column": 43
}
}
},
"prefix": false,
"range": [
- 8876,
- 8879
+ 8956,
+ 8959
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 42
},
"end": {
- "line": 233,
+ "line": 236,
"column": 45
}
}
@@ -16182,16 +16402,16 @@
"type": "Identifier",
"name": "opsThisCol",
"range": [
- 8910,
- 8920
+ 8990,
+ 9000
],
"loc": {
"start": {
- "line": 234,
+ "line": 237,
"column": 28
},
"end": {
- "line": 234,
+ "line": 237,
"column": 38
}
}
@@ -16200,31 +16420,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 8921,
- 8922
+ 9001,
+ 9002
],
"loc": {
"start": {
- "line": 234,
+ "line": 237,
"column": 39
},
"end": {
- "line": 234,
+ "line": 237,
"column": 40
}
}
},
"range": [
- 8910,
- 8923
+ 8990,
+ 9003
],
"loc": {
"start": {
- "line": 234,
+ "line": 237,
"column": 28
},
"end": {
- "line": 234,
+ "line": 237,
"column": 41
}
}
@@ -16237,16 +16457,16 @@
"value": "mean",
"raw": "'mean'",
"range": [
- 8956,
- 8962
+ 9036,
+ 9042
],
"loc": {
"start": {
- "line": 235,
+ "line": 238,
"column": 29
},
"end": {
- "line": 235,
+ "line": 238,
"column": 35
}
}
@@ -16261,16 +16481,16 @@
"type": "Identifier",
"name": "result",
"range": [
- 8992,
- 8998
+ 9072,
+ 9078
],
"loc": {
"start": {
- "line": 236,
+ "line": 239,
"column": 28
},
"end": {
- "line": 236,
+ "line": 239,
"column": 34
}
}
@@ -16279,46 +16499,46 @@
"type": "Identifier",
"name": "meanValue",
"range": [
- 8999,
- 9008
+ 9079,
+ 9088
],
"loc": {
"start": {
- "line": 236,
+ "line": 239,
"column": 35
},
"end": {
- "line": 236,
+ "line": 239,
"column": 44
}
}
},
"range": [
- 8992,
- 9008
+ 9072,
+ 9088
],
"loc": {
"start": {
- "line": 236,
+ "line": 239,
"column": 28
},
"end": {
- "line": 236,
+ "line": 239,
"column": 44
}
}
},
"range": [
- 8992,
- 9009
+ 9072,
+ 9089
],
"loc": {
"start": {
- "line": 236,
+ "line": 239,
"column": 28
},
"end": {
- "line": 236,
+ "line": 239,
"column": 45
}
}
@@ -16327,135 +16547,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 9034,
- 9040
- ],
- "loc": {
- "start": {
- "line": 237,
- "column": 24
- },
- "end": {
- "line": 237,
- "column": 30
- }
- }
- }
- ],
- "range": [
- 8951,
- 9040
- ],
- "loc": {
- "start": {
- "line": 235,
- "column": 24
- },
- "end": {
- "line": 237,
- "column": 30
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "Literal",
- "value": "sum",
- "raw": "'sum'",
- "range": [
- 9070,
- 9075
- ],
- "loc": {
- "start": {
- "line": 238,
- "column": 29
- },
- "end": {
- "line": 238,
- "column": 34
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "result",
- "range": [
- 9105,
- 9111
- ],
- "loc": {
- "start": {
- "line": 239,
- "column": 28
- },
- "end": {
- "line": 239,
- "column": 34
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "sumValue",
- "range": [
- 9112,
- 9120
- ],
- "loc": {
- "start": {
- "line": 239,
- "column": 35
- },
- "end": {
- "line": 239,
- "column": 43
- }
- }
- },
- "range": [
- 9105,
- 9120
- ],
- "loc": {
- "start": {
- "line": 239,
- "column": 28
- },
- "end": {
- "line": 239,
- "column": 43
- }
- }
- },
- "range": [
- 9105,
- 9121
- ],
- "loc": {
- "start": {
- "line": 239,
- "column": 28
- },
- "end": {
- "line": 239,
- "column": 44
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 9146,
- 9152
+ 9114,
+ 9120
],
"loc": {
"start": {
@@ -16470,8 +16563,8 @@
}
],
"range": [
- 9065,
- 9152
+ 9031,
+ 9120
],
"loc": {
"start": {
@@ -16488,11 +16581,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "min",
- "raw": "'min'",
+ "value": "sum",
+ "raw": "'sum'",
"range": [
- 9182,
- 9187
+ 9150,
+ 9155
],
"loc": {
"start": {
@@ -16515,8 +16608,8 @@
"type": "Identifier",
"name": "result",
"range": [
- 9217,
- 9223
+ 9185,
+ 9191
],
"loc": {
"start": {
@@ -16531,10 +16624,10 @@
},
"right": {
"type": "Identifier",
- "name": "minValue",
+ "name": "sumValue",
"range": [
- 9224,
- 9232
+ 9192,
+ 9200
],
"loc": {
"start": {
@@ -16548,8 +16641,8 @@
}
},
"range": [
- 9217,
- 9232
+ 9185,
+ 9200
],
"loc": {
"start": {
@@ -16563,8 +16656,8 @@
}
},
"range": [
- 9217,
- 9233
+ 9185,
+ 9201
],
"loc": {
"start": {
@@ -16581,8 +16674,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 9258,
- 9264
+ 9226,
+ 9232
],
"loc": {
"start": {
@@ -16597,8 +16690,8 @@
}
],
"range": [
- 9177,
- 9264
+ 9145,
+ 9232
],
"loc": {
"start": {
@@ -16615,11 +16708,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "max",
- "raw": "'max'",
+ "value": "min",
+ "raw": "'min'",
"range": [
- 9294,
- 9299
+ 9262,
+ 9267
],
"loc": {
"start": {
@@ -16642,8 +16735,8 @@
"type": "Identifier",
"name": "result",
"range": [
- 9329,
- 9335
+ 9297,
+ 9303
],
"loc": {
"start": {
@@ -16658,10 +16751,10 @@
},
"right": {
"type": "Identifier",
- "name": "maxValue",
+ "name": "minValue",
"range": [
- 9336,
- 9344
+ 9304,
+ 9312
],
"loc": {
"start": {
@@ -16675,8 +16768,8 @@
}
},
"range": [
- 9329,
- 9344
+ 9297,
+ 9312
],
"loc": {
"start": {
@@ -16690,8 +16783,8 @@
}
},
"range": [
- 9329,
- 9345
+ 9297,
+ 9313
],
"loc": {
"start": {
@@ -16708,8 +16801,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 9370,
- 9376
+ 9338,
+ 9344
],
"loc": {
"start": {
@@ -16724,8 +16817,8 @@
}
],
"range": [
- 9289,
- 9376
+ 9257,
+ 9344
],
"loc": {
"start": {
@@ -16742,11 +16835,11 @@
"type": "SwitchCase",
"test": {
"type": "Literal",
- "value": "median",
- "raw": "'median'",
+ "value": "max",
+ "raw": "'max'",
"range": [
- 9406,
- 9414
+ 9374,
+ 9379
],
"loc": {
"start": {
@@ -16755,7 +16848,7 @@
},
"end": {
"line": 247,
- "column": 37
+ "column": 34
}
}
},
@@ -16769,8 +16862,8 @@
"type": "Identifier",
"name": "result",
"range": [
- 9444,
- 9450
+ 9409,
+ 9415
],
"loc": {
"start": {
@@ -16785,10 +16878,10 @@
},
"right": {
"type": "Identifier",
- "name": "medValue",
+ "name": "maxValue",
"range": [
- 9451,
- 9459
+ 9416,
+ 9424
],
"loc": {
"start": {
@@ -16802,8 +16895,8 @@
}
},
"range": [
- 9444,
- 9459
+ 9409,
+ 9424
],
"loc": {
"start": {
@@ -16817,8 +16910,8 @@
}
},
"range": [
- 9444,
- 9460
+ 9409,
+ 9425
],
"loc": {
"start": {
@@ -16835,24 +16928,24 @@
"type": "BreakStatement",
"label": null,
"range": [
- 9489,
- 9495
+ 9450,
+ 9456
],
"loc": {
"start": {
"line": 249,
- "column": 28
+ "column": 24
},
"end": {
"line": 249,
- "column": 34
+ "column": 30
}
}
}
],
"range": [
- 9401,
- 9495
+ 9369,
+ 9456
],
"loc": {
"start": {
@@ -16861,6 +16954,133 @@
},
"end": {
"line": 249,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "SwitchCase",
+ "test": {
+ "type": "Literal",
+ "value": "median",
+ "raw": "'median'",
+ "range": [
+ 9486,
+ 9494
+ ],
+ "loc": {
+ "start": {
+ "line": 250,
+ "column": 29
+ },
+ "end": {
+ "line": 250,
+ "column": 37
+ }
+ }
+ },
+ "consequent": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "result",
+ "range": [
+ 9524,
+ 9530
+ ],
+ "loc": {
+ "start": {
+ "line": 251,
+ "column": 28
+ },
+ "end": {
+ "line": 251,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "medValue",
+ "range": [
+ 9531,
+ 9539
+ ],
+ "loc": {
+ "start": {
+ "line": 251,
+ "column": 35
+ },
+ "end": {
+ "line": 251,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 9524,
+ 9539
+ ],
+ "loc": {
+ "start": {
+ "line": 251,
+ "column": 28
+ },
+ "end": {
+ "line": 251,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 9524,
+ 9540
+ ],
+ "loc": {
+ "start": {
+ "line": 251,
+ "column": 28
+ },
+ "end": {
+ "line": 251,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "BreakStatement",
+ "label": null,
+ "range": [
+ 9569,
+ 9575
+ ],
+ "loc": {
+ "start": {
+ "line": 252,
+ "column": 28
+ },
+ "end": {
+ "line": 252,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 9481,
+ 9575
+ ],
+ "loc": {
+ "start": {
+ "line": 250,
+ "column": 24
+ },
+ "end": {
+ "line": 252,
"column": 34
}
}
@@ -16872,16 +17092,16 @@
"value": "q1",
"raw": "'q1'",
"range": [
- 9525,
- 9529
+ 9605,
+ 9609
],
"loc": {
"start": {
- "line": 250,
+ "line": 253,
"column": 29
},
"end": {
- "line": 250,
+ "line": 253,
"column": 33
}
}
@@ -16896,16 +17116,16 @@
"type": "Identifier",
"name": "result",
"range": [
- 9559,
- 9565
+ 9639,
+ 9645
],
"loc": {
"start": {
- "line": 251,
+ "line": 254,
"column": 28
},
"end": {
- "line": 251,
+ "line": 254,
"column": 34
}
}
@@ -16914,135 +17134,8 @@
"type": "Identifier",
"name": "q1Value",
"range": [
- 9566,
- 9573
- ],
- "loc": {
- "start": {
- "line": 251,
- "column": 35
- },
- "end": {
- "line": 251,
- "column": 42
- }
- }
- },
- "range": [
- 9559,
- 9573
- ],
- "loc": {
- "start": {
- "line": 251,
- "column": 28
- },
- "end": {
- "line": 251,
- "column": 42
- }
- }
- },
- "range": [
- 9559,
- 9574
- ],
- "loc": {
- "start": {
- "line": 251,
- "column": 28
- },
- "end": {
- "line": 251,
- "column": 43
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 9599,
- 9605
- ],
- "loc": {
- "start": {
- "line": 252,
- "column": 24
- },
- "end": {
- "line": 252,
- "column": 30
- }
- }
- }
- ],
- "range": [
- 9520,
- 9605
- ],
- "loc": {
- "start": {
- "line": 250,
- "column": 24
- },
- "end": {
- "line": 252,
- "column": 30
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "Literal",
- "value": "q3",
- "raw": "'q3'",
- "range": [
- 9635,
- 9639
- ],
- "loc": {
- "start": {
- "line": 253,
- "column": 29
- },
- "end": {
- "line": 253,
- "column": 33
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "result",
- "range": [
- 9669,
- 9675
- ],
- "loc": {
- "start": {
- "line": 254,
- "column": 28
- },
- "end": {
- "line": 254,
- "column": 34
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "q3Value",
- "range": [
- 9676,
- 9683
+ 9646,
+ 9653
],
"loc": {
"start": {
@@ -17056,8 +17149,8 @@
}
},
"range": [
- 9669,
- 9683
+ 9639,
+ 9653
],
"loc": {
"start": {
@@ -17071,8 +17164,8 @@
}
},
"range": [
- 9669,
- 9684
+ 9639,
+ 9654
],
"loc": {
"start": {
@@ -17089,8 +17182,8 @@
"type": "BreakStatement",
"label": null,
"range": [
- 9709,
- 9715
+ 9679,
+ 9685
],
"loc": {
"start": {
@@ -17105,8 +17198,8 @@
}
],
"range": [
- 9630,
- 9715
+ 9600,
+ 9685
],
"loc": {
"start": {
@@ -17118,19 +17211,146 @@
"column": 30
}
}
+ },
+ {
+ "type": "SwitchCase",
+ "test": {
+ "type": "Literal",
+ "value": "q3",
+ "raw": "'q3'",
+ "range": [
+ 9715,
+ 9719
+ ],
+ "loc": {
+ "start": {
+ "line": 256,
+ "column": 29
+ },
+ "end": {
+ "line": 256,
+ "column": 33
+ }
+ }
+ },
+ "consequent": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "result",
+ "range": [
+ 9749,
+ 9755
+ ],
+ "loc": {
+ "start": {
+ "line": 257,
+ "column": 28
+ },
+ "end": {
+ "line": 257,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "q3Value",
+ "range": [
+ 9756,
+ 9763
+ ],
+ "loc": {
+ "start": {
+ "line": 257,
+ "column": 35
+ },
+ "end": {
+ "line": 257,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 9749,
+ 9763
+ ],
+ "loc": {
+ "start": {
+ "line": 257,
+ "column": 28
+ },
+ "end": {
+ "line": 257,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 9749,
+ 9764
+ ],
+ "loc": {
+ "start": {
+ "line": 257,
+ "column": 28
+ },
+ "end": {
+ "line": 257,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "BreakStatement",
+ "label": null,
+ "range": [
+ 9789,
+ 9795
+ ],
+ "loc": {
+ "start": {
+ "line": 258,
+ "column": 24
+ },
+ "end": {
+ "line": 258,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 9710,
+ 9795
+ ],
+ "loc": {
+ "start": {
+ "line": 256,
+ "column": 24
+ },
+ "end": {
+ "line": 258,
+ "column": 30
+ }
+ }
}
],
"range": [
- 8902,
- 9737
+ 8982,
+ 9817
],
"loc": {
"start": {
- "line": 234,
+ "line": 237,
"column": 20
},
"end": {
- "line": 256,
+ "line": 259,
"column": 21
}
}
@@ -17144,16 +17364,16 @@
"type": "Identifier",
"name": "precision",
"range": [
- 9763,
- 9772
+ 9843,
+ 9852
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 24
},
"end": {
- "line": 258,
+ "line": 261,
"column": 33
}
}
@@ -17169,16 +17389,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 9776,
- 9781
+ 9856,
+ 9861
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 37
},
"end": {
- "line": 258,
+ "line": 261,
"column": 42
}
}
@@ -17191,16 +17411,16 @@
"type": "Identifier",
"name": "decThisCol",
"range": [
- 9782,
- 9792
+ 9862,
+ 9872
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 43
},
"end": {
- "line": 258,
+ "line": 261,
"column": 53
}
}
@@ -17209,63 +17429,63 @@
"type": "Identifier",
"name": "i",
"range": [
- 9793,
- 9794
+ 9873,
+ 9874
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 54
},
"end": {
- "line": 258,
+ "line": 261,
"column": 55
}
}
},
"range": [
- 9782,
- 9795
+ 9862,
+ 9875
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 43
},
"end": {
- "line": 258,
+ "line": 261,
"column": 56
}
}
}
],
"range": [
- 9776,
- 9796
+ 9856,
+ 9876
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 37
},
"end": {
- "line": 258,
+ "line": 261,
"column": 57
}
}
},
"prefix": true,
"range": [
- 9775,
- 9796
+ 9855,
+ 9876
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 36
},
"end": {
- "line": 258,
+ "line": 261,
"column": 57
}
}
@@ -17277,16 +17497,16 @@
"type": "Identifier",
"name": "decThisCol",
"range": [
- 9799,
- 9809
+ 9879,
+ 9889
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 60
},
"end": {
- "line": 258,
+ "line": 261,
"column": 70
}
}
@@ -17295,31 +17515,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 9810,
- 9811
+ 9890,
+ 9891
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 71
},
"end": {
- "line": 258,
+ "line": 261,
"column": 72
}
}
},
"range": [
- 9799,
- 9812
+ 9879,
+ 9892
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 60
},
"end": {
- "line": 258,
+ "line": 261,
"column": 73
}
}
@@ -17329,46 +17549,46 @@
"value": 2,
"raw": "2",
"range": [
- 9815,
- 9816
+ 9895,
+ 9896
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 76
},
"end": {
- "line": 258,
+ "line": 261,
"column": 77
}
}
},
"range": [
- 9775,
- 9816
+ 9855,
+ 9896
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 36
},
"end": {
- "line": 258,
+ "line": 261,
"column": 77
}
}
},
"range": [
- 9763,
- 9816
+ 9843,
+ 9896
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 24
},
"end": {
- "line": 258,
+ "line": 261,
"column": 77
}
}
@@ -17376,16 +17596,16 @@
],
"kind": "var",
"range": [
- 9759,
- 9817
+ 9839,
+ 9897
],
"loc": {
"start": {
- "line": 258,
+ "line": 261,
"column": 20
},
"end": {
- "line": 258,
+ "line": 261,
"column": 78
}
},
@@ -17394,16 +17614,16 @@
"type": "Line",
"value": "if outputType is defined",
"range": [
- 9839,
- 9865
+ 9919,
+ 9945
],
"loc": {
"start": {
- "line": 260,
+ "line": 263,
"column": 20
},
"end": {
- "line": 260,
+ "line": 263,
"column": 46
}
}
@@ -17419,16 +17639,16 @@
"type": "Identifier",
"name": "oTypeThisCol",
"range": [
- 9889,
- 9901
+ 9969,
+ 9981
],
"loc": {
"start": {
- "line": 261,
+ "line": 264,
"column": 23
},
"end": {
- "line": 261,
+ "line": 264,
"column": 35
}
}
@@ -17437,31 +17657,31 @@
"type": "Identifier",
"name": "result",
"range": [
- 9905,
- 9911
+ 9985,
+ 9991
],
"loc": {
"start": {
- "line": 261,
+ "line": 264,
"column": 39
},
"end": {
- "line": 261,
+ "line": 264,
"column": 45
}
}
},
"range": [
- 9889,
- 9911
+ 9969,
+ 9991
],
"loc": {
"start": {
- "line": 261,
+ "line": 264,
"column": 23
},
"end": {
- "line": 261,
+ "line": 264,
"column": 45
}
}
@@ -17478,16 +17698,16 @@
"type": "Identifier",
"name": "result",
"range": [
- 9938,
- 9944
+ 10018,
+ 10024
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 24
},
"end": {
- "line": 262,
+ "line": 265,
"column": 30
}
}
@@ -17501,16 +17721,16 @@
"type": "Identifier",
"name": "result",
"range": [
- 9947,
- 9953
+ 10027,
+ 10033
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 33
},
"end": {
- "line": 262,
+ "line": 265,
"column": 39
}
}
@@ -17519,31 +17739,31 @@
"type": "Identifier",
"name": "toFixed",
"range": [
- 9954,
- 9961
+ 10034,
+ 10041
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 40
},
"end": {
- "line": 262,
+ "line": 265,
"column": 47
}
}
},
"range": [
- 9947,
- 9961
+ 10027,
+ 10041
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 33
},
"end": {
- "line": 262,
+ "line": 265,
"column": 47
}
}
@@ -17553,62 +17773,62 @@
"type": "Identifier",
"name": "precision",
"range": [
- 9963,
- 9972
+ 10043,
+ 10052
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 49
},
"end": {
- "line": 262,
+ "line": 265,
"column": 58
}
}
}
],
"range": [
- 9947,
- 9974
+ 10027,
+ 10054
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 33
},
"end": {
- "line": 262,
+ "line": 265,
"column": 60
}
}
},
"range": [
- 9938,
- 9974
+ 10018,
+ 10054
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 24
},
"end": {
- "line": 262,
+ "line": 265,
"column": 60
}
}
},
"range": [
- 9938,
- 9975
+ 10018,
+ 10055
],
"loc": {
"start": {
- "line": 262,
+ "line": 265,
"column": 24
},
"end": {
- "line": 262,
+ "line": 265,
"column": 61
}
}
@@ -17624,16 +17844,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10004,
- 10007
+ 10084,
+ 10087
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 27
},
"end": {
- "line": 264,
+ "line": 267,
"column": 30
}
}
@@ -17642,31 +17862,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 10008,
- 10010
+ 10088,
+ 10090
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 31
},
"end": {
- "line": 264,
+ "line": 267,
"column": 33
}
}
},
"range": [
- 10004,
- 10010
+ 10084,
+ 10090
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 27
},
"end": {
- "line": 264,
+ "line": 267,
"column": 33
}
}
@@ -17679,16 +17899,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 10011,
- 10021
+ 10091,
+ 10101
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 34
},
"end": {
- "line": 264,
+ "line": 267,
"column": 44
}
}
@@ -17697,47 +17917,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 10022,
- 10023
+ 10102,
+ 10103
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 45
},
"end": {
- "line": 264,
+ "line": 267,
"column": 46
}
}
},
"range": [
- 10011,
- 10024
+ 10091,
+ 10104
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 34
},
"end": {
- "line": 264,
+ "line": 267,
"column": 47
}
}
}
],
"range": [
- 10004,
- 10025
+ 10084,
+ 10105
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 27
},
"end": {
- "line": 264,
+ "line": 267,
"column": 48
}
}
@@ -17756,16 +17976,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 10064,
- 10067
+ 10144,
+ 10147
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 36
},
"end": {
- "line": 265,
+ "line": 268,
"column": 39
}
}
@@ -17774,31 +17994,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 10068,
- 10073
+ 10148,
+ 10153
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 40
},
"end": {
- "line": 265,
+ "line": 268,
"column": 45
}
}
},
"range": [
- 10064,
- 10073
+ 10144,
+ 10153
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 36
},
"end": {
- "line": 265,
+ "line": 268,
"column": 45
}
}
@@ -17808,32 +18028,32 @@
"type": "Identifier",
"name": "oTypeThisCol",
"range": [
- 10074,
- 10086
+ 10154,
+ 10166
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 46
},
"end": {
- "line": 265,
+ "line": 268,
"column": 58
}
}
}
],
"range": [
- 10064,
- 10087
+ 10144,
+ 10167
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 36
},
"end": {
- "line": 265,
+ "line": 268,
"column": 59
}
}
@@ -17846,16 +18066,16 @@
"value": "innerhtml",
"raw": "'innerhtml'",
"range": [
- 10128,
- 10139
+ 10208,
+ 10219
],
"loc": {
"start": {
- "line": 266,
+ "line": 269,
"column": 37
},
"end": {
- "line": 266,
+ "line": 269,
"column": 48
}
}
@@ -17875,16 +18095,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 10181,
- 10186
+ 10261,
+ 10266
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 40
},
"end": {
- "line": 267,
+ "line": 270,
"column": 45
}
}
@@ -17894,32 +18114,32 @@
"type": "Identifier",
"name": "result",
"range": [
- 10187,
- 10193
+ 10267,
+ 10273
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 46
},
"end": {
- "line": 267,
+ "line": 270,
"column": 52
}
}
}
],
"range": [
- 10181,
- 10194
+ 10261,
+ 10274
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 40
},
"end": {
- "line": 267,
+ "line": 270,
"column": 53
}
}
@@ -17933,16 +18153,16 @@
"type": "Identifier",
"name": "isFinite",
"range": [
- 10199,
- 10207
+ 10279,
+ 10287
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 58
},
"end": {
- "line": 267,
+ "line": 270,
"column": 66
}
}
@@ -17952,63 +18172,63 @@
"type": "Identifier",
"name": "result",
"range": [
- 10208,
- 10214
+ 10288,
+ 10294
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 67
},
"end": {
- "line": 267,
+ "line": 270,
"column": 73
}
}
}
],
"range": [
- 10199,
- 10215
+ 10279,
+ 10295
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 58
},
"end": {
- "line": 267,
+ "line": 270,
"column": 74
}
}
},
"prefix": true,
"range": [
- 10198,
- 10215
+ 10278,
+ 10295
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 57
},
"end": {
- "line": 267,
+ "line": 270,
"column": 74
}
}
},
"range": [
- 10181,
- 10215
+ 10261,
+ 10295
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 40
},
"end": {
- "line": 267,
+ "line": 270,
"column": 74
}
}
@@ -18020,16 +18240,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 10259,
- 10267
+ 10339,
+ 10347
],
"loc": {
"start": {
- "line": 268,
+ "line": 271,
"column": 40
},
"end": {
- "line": 268,
+ "line": 271,
"column": 48
}
}
@@ -18039,46 +18259,46 @@
"value": 0,
"raw": "0",
"range": [
- 10270,
- 10271
+ 10350,
+ 10351
],
"loc": {
"start": {
- "line": 268,
+ "line": 271,
"column": 51
},
"end": {
- "line": 268,
+ "line": 271,
"column": 52
}
}
},
"range": [
- 10259,
- 10271
+ 10339,
+ 10351
],
"loc": {
"start": {
- "line": 268,
+ "line": 271,
"column": 40
},
"end": {
- "line": 268,
+ "line": 271,
"column": 52
}
}
},
"range": [
- 10181,
- 10271
+ 10261,
+ 10351
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 40
},
"end": {
- "line": 268,
+ "line": 271,
"column": 52
}
}
@@ -18103,16 +18323,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10314,
- 10317
+ 10394,
+ 10397
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 43
}
}
@@ -18121,31 +18341,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 10318,
- 10320
+ 10398,
+ 10400
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 44
},
"end": {
- "line": 269,
+ "line": 272,
"column": 46
}
}
},
"range": [
- 10314,
- 10320
+ 10394,
+ 10400
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 46
}
}
@@ -18158,16 +18378,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 10321,
- 10331
+ 10401,
+ 10411
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 47
},
"end": {
- "line": 269,
+ "line": 272,
"column": 57
}
}
@@ -18176,47 +18396,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 10332,
- 10333
+ 10412,
+ 10413
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 58
},
"end": {
- "line": 269,
+ "line": 272,
"column": 59
}
}
},
"range": [
- 10321,
- 10334
+ 10401,
+ 10414
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 47
},
"end": {
- "line": 269,
+ "line": 272,
"column": 60
}
}
}
],
"range": [
- 10314,
- 10335
+ 10394,
+ 10415
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 61
}
}
@@ -18225,31 +18445,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 10336,
- 10345
+ 10416,
+ 10425
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 62
},
"end": {
- "line": 269,
+ "line": 272,
"column": 71
}
}
},
"range": [
- 10314,
- 10345
+ 10394,
+ 10425
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 71
}
}
@@ -18259,62 +18479,62 @@
"value": ".",
"raw": "'.'",
"range": [
- 10348,
- 10351
+ 10428,
+ 10431
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 74
},
"end": {
- "line": 269,
+ "line": 272,
"column": 77
}
}
},
"range": [
- 10314,
- 10351
+ 10394,
+ 10431
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 77
}
}
},
"range": [
- 10314,
- 10352
+ 10394,
+ 10432
],
"loc": {
"start": {
- "line": 269,
+ "line": 272,
"column": 40
},
"end": {
- "line": 269,
+ "line": 272,
"column": 78
}
}
}
],
"range": [
- 10272,
- 10390
+ 10352,
+ 10470
],
"loc": {
"start": {
- "line": 268,
+ "line": 271,
"column": 53
},
"end": {
- "line": 270,
+ "line": 273,
"column": 37
}
}
@@ -18339,16 +18559,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10437,
- 10440
+ 10517,
+ 10520
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 43
}
}
@@ -18357,31 +18577,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 10441,
- 10443
+ 10521,
+ 10523
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 44
},
"end": {
- "line": 271,
+ "line": 274,
"column": 46
}
}
},
"range": [
- 10437,
- 10443
+ 10517,
+ 10523
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 46
}
}
@@ -18394,16 +18614,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 10444,
- 10454
+ 10524,
+ 10534
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 47
},
"end": {
- "line": 271,
+ "line": 274,
"column": 57
}
}
@@ -18412,47 +18632,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 10455,
- 10456
+ 10535,
+ 10536
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 58
},
"end": {
- "line": 271,
+ "line": 274,
"column": 59
}
}
},
"range": [
- 10444,
- 10457
+ 10524,
+ 10537
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 47
},
"end": {
- "line": 271,
+ "line": 274,
"column": 60
}
}
}
],
"range": [
- 10437,
- 10458
+ 10517,
+ 10538
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 61
}
}
@@ -18461,31 +18681,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 10459,
- 10468
+ 10539,
+ 10548
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 62
},
"end": {
- "line": 271,
+ "line": 274,
"column": 71
}
}
},
"range": [
- 10437,
- 10468
+ 10517,
+ 10548
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 71
}
}
@@ -18494,77 +18714,77 @@
"type": "Identifier",
"name": "result",
"range": [
- 10470,
- 10476
+ 10550,
+ 10556
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 73
},
"end": {
- "line": 271,
+ "line": 274,
"column": 79
}
}
},
"range": [
- 10437,
- 10476
+ 10517,
+ 10556
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 79
}
}
},
"range": [
- 10437,
- 10477
+ 10517,
+ 10557
],
"loc": {
"start": {
- "line": 271,
+ "line": 274,
"column": 40
},
"end": {
- "line": 271,
+ "line": 274,
"column": 80
}
}
}
],
"range": [
- 10395,
- 10515
+ 10475,
+ 10595
],
"loc": {
"start": {
- "line": 270,
+ "line": 273,
"column": 42
},
"end": {
- "line": 272,
+ "line": 275,
"column": 37
}
}
},
"range": [
- 10177,
- 10515
+ 10257,
+ 10595
],
"loc": {
"start": {
- "line": 267,
+ "line": 270,
"column": 36
},
"end": {
- "line": 272,
+ "line": 275,
"column": 37
}
}
@@ -18573,32 +18793,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 10548,
- 10554
+ 10628,
+ 10634
],
"loc": {
"start": {
- "line": 273,
+ "line": 276,
"column": 32
},
"end": {
- "line": 273,
+ "line": 276,
"column": 38
}
}
}
],
"range": [
- 10123,
- 10554
+ 10203,
+ 10634
],
"loc": {
"start": {
- "line": 266,
+ "line": 269,
"column": 32
},
"end": {
- "line": 273,
+ "line": 276,
"column": 38
}
}
@@ -18610,16 +18830,16 @@
"value": "setvalue",
"raw": "'setvalue'",
"range": [
- 10592,
- 10602
+ 10672,
+ 10682
],
"loc": {
"start": {
- "line": 274,
+ "line": 277,
"column": 37
},
"end": {
- "line": 274,
+ "line": 277,
"column": 47
}
}
@@ -18642,16 +18862,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10640,
- 10643
+ 10720,
+ 10723
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 39
}
}
@@ -18660,31 +18880,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 10644,
- 10646
+ 10724,
+ 10726
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 40
},
"end": {
- "line": 275,
+ "line": 278,
"column": 42
}
}
},
"range": [
- 10640,
- 10646
+ 10720,
+ 10726
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 42
}
}
@@ -18697,16 +18917,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 10648,
- 10658
+ 10728,
+ 10738
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 44
},
"end": {
- "line": 275,
+ "line": 278,
"column": 54
}
}
@@ -18715,47 +18935,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 10659,
- 10660
+ 10739,
+ 10740
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 55
},
"end": {
- "line": 275,
+ "line": 278,
"column": 56
}
}
},
"range": [
- 10648,
- 10661
+ 10728,
+ 10741
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 44
},
"end": {
- "line": 275,
+ "line": 278,
"column": 57
}
}
}
],
"range": [
- 10640,
- 10663
+ 10720,
+ 10743
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 59
}
}
@@ -18764,31 +18984,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 10664,
- 10669
+ 10744,
+ 10749
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 60
},
"end": {
- "line": 275,
+ "line": 278,
"column": 65
}
}
},
"range": [
- 10640,
- 10669
+ 10720,
+ 10749
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 65
}
}
@@ -18797,46 +19017,46 @@
"type": "Identifier",
"name": "result",
"range": [
- 10672,
- 10678
+ 10752,
+ 10758
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 68
},
"end": {
- "line": 275,
+ "line": 278,
"column": 74
}
}
},
"range": [
- 10640,
- 10678
+ 10720,
+ 10758
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 74
}
}
},
"range": [
- 10640,
- 10679
+ 10720,
+ 10759
],
"loc": {
"start": {
- "line": 275,
+ "line": 278,
"column": 36
},
"end": {
- "line": 275,
+ "line": 278,
"column": 75
}
}
@@ -18845,32 +19065,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 10712,
- 10718
+ 10792,
+ 10798
],
"loc": {
"start": {
- "line": 276,
+ "line": 279,
"column": 32
},
"end": {
- "line": 276,
+ "line": 279,
"column": 38
}
}
}
],
"range": [
- 10587,
- 10718
+ 10667,
+ 10798
],
"loc": {
"start": {
- "line": 274,
+ "line": 277,
"column": 32
},
"end": {
- "line": 276,
+ "line": 279,
"column": 38
}
}
@@ -18882,16 +19102,16 @@
"value": "createtextnode",
"raw": "'createtextnode'",
"range": [
- 10756,
- 10772
+ 10836,
+ 10852
],
"loc": {
"start": {
- "line": 277,
+ "line": 280,
"column": 37
},
"end": {
- "line": 277,
+ "line": 280,
"column": 53
}
}
@@ -18906,16 +19126,16 @@
"type": "Identifier",
"name": "oldnode",
"range": [
- 10814,
- 10821
+ 10894,
+ 10901
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 40
},
"end": {
- "line": 278,
+ "line": 281,
"column": 47
}
}
@@ -18932,16 +19152,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10824,
- 10827
+ 10904,
+ 10907
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 50
},
"end": {
- "line": 278,
+ "line": 281,
"column": 53
}
}
@@ -18950,31 +19170,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 10828,
- 10830
+ 10908,
+ 10910
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 54
},
"end": {
- "line": 278,
+ "line": 281,
"column": 56
}
}
},
"range": [
- 10824,
- 10830
+ 10904,
+ 10910
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 50
},
"end": {
- "line": 278,
+ "line": 281,
"column": 56
}
}
@@ -18987,16 +19207,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 10831,
- 10841
+ 10911,
+ 10921
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 57
},
"end": {
- "line": 278,
+ "line": 281,
"column": 67
}
}
@@ -19005,47 +19225,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 10842,
- 10843
+ 10922,
+ 10923
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 68
},
"end": {
- "line": 278,
+ "line": 281,
"column": 69
}
}
},
"range": [
- 10831,
- 10844
+ 10911,
+ 10924
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 57
},
"end": {
- "line": 278,
+ "line": 281,
"column": 70
}
}
}
],
"range": [
- 10824,
- 10845
+ 10904,
+ 10925
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 50
},
"end": {
- "line": 278,
+ "line": 281,
"column": 71
}
}
@@ -19054,46 +19274,46 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 10887,
- 10897
+ 10967,
+ 10977
],
"loc": {
"start": {
- "line": 279,
+ "line": 282,
"column": 41
},
"end": {
- "line": 279,
+ "line": 282,
"column": 51
}
}
},
"range": [
- 10824,
- 10897
+ 10904,
+ 10977
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 50
},
"end": {
- "line": 279,
+ "line": 282,
"column": 51
}
}
},
"range": [
- 10814,
- 10897
+ 10894,
+ 10977
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 40
},
"end": {
- "line": 279,
+ "line": 282,
"column": 51
}
}
@@ -19101,16 +19321,16 @@
],
"kind": "var",
"range": [
- 10810,
- 10898
+ 10890,
+ 10978
],
"loc": {
"start": {
- "line": 278,
+ "line": 281,
"column": 36
},
"end": {
- "line": 279,
+ "line": 282,
"column": 52
}
}
@@ -19124,16 +19344,16 @@
"type": "Identifier",
"name": "txtnode",
"range": [
- 10939,
- 10946
+ 11019,
+ 11026
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 40
},
"end": {
- "line": 280,
+ "line": 283,
"column": 47
}
}
@@ -19147,16 +19367,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10949,
- 10952
+ 11029,
+ 11032
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 50
},
"end": {
- "line": 280,
+ "line": 283,
"column": 53
}
}
@@ -19165,31 +19385,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 10953,
- 10957
+ 11033,
+ 11037
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 54
},
"end": {
- "line": 280,
+ "line": 283,
"column": 58
}
}
},
"range": [
- 10949,
- 10957
+ 11029,
+ 11037
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 50
},
"end": {
- "line": 280,
+ "line": 283,
"column": 58
}
}
@@ -19199,47 +19419,47 @@
"type": "Identifier",
"name": "result",
"range": [
- 10958,
- 10964
+ 11038,
+ 11044
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 59
},
"end": {
- "line": 280,
+ "line": 283,
"column": 65
}
}
}
],
"range": [
- 10949,
- 10965
+ 11029,
+ 11045
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 50
},
"end": {
- "line": 280,
+ "line": 283,
"column": 66
}
}
},
"range": [
- 10939,
- 10965
+ 11019,
+ 11045
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 40
},
"end": {
- "line": 280,
+ "line": 283,
"column": 66
}
}
@@ -19247,16 +19467,16 @@
],
"kind": "var",
"range": [
- 10935,
- 10966
+ 11015,
+ 11046
],
"loc": {
"start": {
- "line": 280,
+ "line": 283,
"column": 36
},
"end": {
- "line": 280,
+ "line": 283,
"column": 67
}
}
@@ -19277,16 +19497,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11003,
- 11006
+ 11083,
+ 11086
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 281,
+ "line": 284,
"column": 39
}
}
@@ -19295,31 +19515,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 11007,
- 11009
+ 11087,
+ 11089
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 40
},
"end": {
- "line": 281,
+ "line": 284,
"column": 42
}
}
},
"range": [
- 11003,
- 11009
+ 11083,
+ 11089
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 281,
+ "line": 284,
"column": 42
}
}
@@ -19332,16 +19552,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 11010,
- 11020
+ 11090,
+ 11100
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 43
},
"end": {
- "line": 281,
+ "line": 284,
"column": 53
}
}
@@ -19350,47 +19570,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 11021,
- 11022
+ 11101,
+ 11102
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 54
},
"end": {
- "line": 281,
+ "line": 284,
"column": 55
}
}
},
"range": [
- 11010,
- 11023
+ 11090,
+ 11103
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 43
},
"end": {
- "line": 281,
+ "line": 284,
"column": 56
}
}
}
],
"range": [
- 11003,
- 11024
+ 11083,
+ 11104
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 281,
+ "line": 284,
"column": 57
}
}
@@ -19399,31 +19619,31 @@
"type": "Identifier",
"name": "replaceChild",
"range": [
- 11066,
- 11078
+ 11146,
+ 11158
],
"loc": {
"start": {
- "line": 282,
+ "line": 285,
"column": 41
},
"end": {
- "line": 282,
+ "line": 285,
"column": 53
}
}
},
"range": [
- 11003,
- 11078
+ 11083,
+ 11158
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 282,
+ "line": 285,
"column": 53
}
}
@@ -19433,16 +19653,16 @@
"type": "Identifier",
"name": "txtnode",
"range": [
- 11079,
- 11086
+ 11159,
+ 11166
],
"loc": {
"start": {
- "line": 282,
+ "line": 285,
"column": 54
},
"end": {
- "line": 282,
+ "line": 285,
"column": 61
}
}
@@ -19451,47 +19671,47 @@
"type": "Identifier",
"name": "oldnode",
"range": [
- 11088,
- 11095
+ 11168,
+ 11175
],
"loc": {
"start": {
- "line": 282,
+ "line": 285,
"column": 63
},
"end": {
- "line": 282,
+ "line": 285,
"column": 70
}
}
}
],
"range": [
- 11003,
- 11096
+ 11083,
+ 11176
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 282,
+ "line": 285,
"column": 71
}
}
},
"range": [
- 11003,
- 11097
+ 11083,
+ 11177
],
"loc": {
"start": {
- "line": 281,
+ "line": 284,
"column": 36
},
"end": {
- "line": 282,
+ "line": 285,
"column": 72
}
}
@@ -19500,48 +19720,48 @@
"type": "BreakStatement",
"label": null,
"range": [
- 11130,
- 11136
+ 11210,
+ 11216
],
"loc": {
"start": {
- "line": 283,
+ "line": 286,
"column": 32
},
"end": {
- "line": 283,
+ "line": 286,
"column": 38
}
}
}
],
"range": [
- 10751,
- 11136
+ 10831,
+ 11216
],
"loc": {
"start": {
- "line": 277,
+ "line": 280,
"column": 32
},
"end": {
- "line": 283,
+ "line": 286,
"column": 38
}
}
}
],
"range": [
- 10056,
- 11166
+ 10136,
+ 11246
],
"loc": {
"start": {
- "line": 265,
+ "line": 268,
"column": 28
},
"end": {
- "line": 284,
+ "line": 287,
"column": 29
}
},
@@ -19550,16 +19770,16 @@
"type": "Line",
"value": "switch",
"range": [
- 11166,
- 11174
+ 11246,
+ 11254
],
"loc": {
"start": {
- "line": 284,
+ "line": 287,
"column": 29
},
"end": {
- "line": 284,
+ "line": 287,
"column": 37
}
}
@@ -19568,48 +19788,48 @@
}
],
"range": [
- 10026,
- 11200
+ 10106,
+ 11280
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 49
},
"end": {
- "line": 285,
+ "line": 288,
"column": 25
}
}
},
"alternate": null,
"range": [
- 10001,
- 11200
+ 10081,
+ 11280
],
"loc": {
"start": {
- "line": 264,
+ "line": 267,
"column": 24
},
"end": {
- "line": 285,
+ "line": 288,
"column": 25
}
}
}
],
"range": [
- 9912,
- 11222
+ 9992,
+ 11302
],
"loc": {
"start": {
- "line": 261,
+ "line": 264,
"column": 46
},
"end": {
- "line": 286,
+ "line": 289,
"column": 21
}
}
@@ -19636,16 +19856,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 11290,
- 11295
+ 11370,
+ 11375
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 31
},
"end": {
- "line": 288,
+ "line": 291,
"column": 36
}
}
@@ -19655,32 +19875,32 @@
"type": "Identifier",
"name": "result",
"range": [
- 11296,
- 11302
+ 11376,
+ 11382
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 37
},
"end": {
- "line": 288,
+ "line": 291,
"column": 43
}
}
}
],
"range": [
- 11290,
- 11303
+ 11370,
+ 11383
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 31
},
"end": {
- "line": 288,
+ "line": 291,
"column": 44
}
}
@@ -19694,16 +19914,16 @@
"type": "Identifier",
"name": "isFinite",
"range": [
- 11308,
- 11316
+ 11388,
+ 11396
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 49
},
"end": {
- "line": 288,
+ "line": 291,
"column": 57
}
}
@@ -19713,63 +19933,63 @@
"type": "Identifier",
"name": "result",
"range": [
- 11317,
- 11323
+ 11397,
+ 11403
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 58
},
"end": {
- "line": 288,
+ "line": 291,
"column": 64
}
}
}
],
"range": [
- 11308,
- 11324
+ 11388,
+ 11404
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 49
},
"end": {
- "line": 288,
+ "line": 291,
"column": 65
}
}
},
"prefix": true,
"range": [
- 11307,
- 11324
+ 11387,
+ 11404
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 48
},
"end": {
- "line": 288,
+ "line": 291,
"column": 65
}
}
},
"range": [
- 11290,
- 11324
+ 11370,
+ 11404
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 31
},
"end": {
- "line": 288,
+ "line": 291,
"column": 65
}
}
@@ -19781,16 +20001,16 @@
"type": "Identifier",
"name": "nbvalues",
"range": [
- 11360,
- 11368
+ 11440,
+ 11448
],
"loc": {
"start": {
- "line": 289,
+ "line": 292,
"column": 32
},
"end": {
- "line": 289,
+ "line": 292,
"column": 40
}
}
@@ -19800,46 +20020,46 @@
"value": 0,
"raw": "0",
"range": [
- 11371,
- 11372
+ 11451,
+ 11452
],
"loc": {
"start": {
- "line": 289,
+ "line": 292,
"column": 43
},
"end": {
- "line": 289,
+ "line": 292,
"column": 44
}
}
},
"range": [
- 11360,
- 11372
+ 11440,
+ 11452
],
"loc": {
"start": {
- "line": 289,
+ "line": 292,
"column": 32
},
"end": {
- "line": 289,
+ "line": 292,
"column": 44
}
}
},
"range": [
- 11290,
- 11372
+ 11370,
+ 11452
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 31
},
"end": {
- "line": 289,
+ "line": 292,
"column": 44
}
}
@@ -19864,16 +20084,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11407,
- 11410
+ 11487,
+ 11490
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 35
}
}
@@ -19882,31 +20102,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 11411,
- 11413
+ 11491,
+ 11493
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 36
},
"end": {
- "line": 290,
+ "line": 293,
"column": 38
}
}
},
"range": [
- 11407,
- 11413
+ 11487,
+ 11493
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 38
}
}
@@ -19919,16 +20139,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 11414,
- 11424
+ 11494,
+ 11504
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 39
},
"end": {
- "line": 290,
+ "line": 293,
"column": 49
}
}
@@ -19937,47 +20157,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 11425,
- 11426
+ 11505,
+ 11506
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 50
},
"end": {
- "line": 290,
+ "line": 293,
"column": 51
}
}
},
"range": [
- 11414,
- 11427
+ 11494,
+ 11507
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 39
},
"end": {
- "line": 290,
+ "line": 293,
"column": 52
}
}
}
],
"range": [
- 11407,
- 11428
+ 11487,
+ 11508
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 53
}
}
@@ -19986,31 +20206,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 11429,
- 11438
+ 11509,
+ 11518
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 54
},
"end": {
- "line": 290,
+ "line": 293,
"column": 63
}
}
},
"range": [
- 11407,
- 11438
+ 11487,
+ 11518
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 63
}
}
@@ -20020,62 +20240,62 @@
"value": ".",
"raw": "'.'",
"range": [
- 11441,
- 11444
+ 11521,
+ 11524
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 66
},
"end": {
- "line": 290,
+ "line": 293,
"column": 69
}
}
},
"range": [
- 11407,
- 11444
+ 11487,
+ 11524
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 69
}
}
},
"range": [
- 11407,
- 11445
+ 11487,
+ 11525
],
"loc": {
"start": {
- "line": 290,
+ "line": 293,
"column": 32
},
"end": {
- "line": 290,
+ "line": 293,
"column": 70
}
}
}
],
"range": [
- 11373,
- 11475
+ 11453,
+ 11555
],
"loc": {
"start": {
- "line": 289,
+ "line": 292,
"column": 45
},
"end": {
- "line": 291,
+ "line": 294,
"column": 29
}
}
@@ -20100,16 +20320,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11515,
- 11518
+ 11595,
+ 11598
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 292,
+ "line": 295,
"column": 35
}
}
@@ -20118,31 +20338,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 11519,
- 11521
+ 11599,
+ 11601
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 36
},
"end": {
- "line": 292,
+ "line": 295,
"column": 38
}
}
},
"range": [
- 11515,
- 11521
+ 11595,
+ 11601
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 292,
+ "line": 295,
"column": 38
}
}
@@ -20155,16 +20375,16 @@
"type": "Identifier",
"name": "labThisCol",
"range": [
- 11522,
- 11532
+ 11602,
+ 11612
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 39
},
"end": {
- "line": 292,
+ "line": 295,
"column": 49
}
}
@@ -20173,47 +20393,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 11533,
- 11534
+ 11613,
+ 11614
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 50
},
"end": {
- "line": 292,
+ "line": 295,
"column": 51
}
}
},
"range": [
- 11522,
- 11535
+ 11602,
+ 11615
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 39
},
"end": {
- "line": 292,
+ "line": 295,
"column": 52
}
}
}
],
"range": [
- 11515,
- 11536
+ 11595,
+ 11616
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 292,
+ "line": 295,
"column": 53
}
}
@@ -20222,31 +20442,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 11537,
- 11546
+ 11617,
+ 11626
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 54
},
"end": {
- "line": 292,
+ "line": 295,
"column": 63
}
}
},
"range": [
- 11515,
- 11546
+ 11595,
+ 11626
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 292,
+ "line": 295,
"column": 63
}
}
@@ -20260,16 +20480,16 @@
"type": "Identifier",
"name": "result",
"range": [
- 11585,
- 11591
+ 11665,
+ 11671
],
"loc": {
"start": {
- "line": 293,
+ "line": 296,
"column": 36
},
"end": {
- "line": 293,
+ "line": 296,
"column": 42
}
}
@@ -20278,31 +20498,31 @@
"type": "Identifier",
"name": "toFixed",
"range": [
- 11592,
- 11599
+ 11672,
+ 11679
],
"loc": {
"start": {
- "line": 293,
+ "line": 296,
"column": 43
},
"end": {
- "line": 293,
+ "line": 296,
"column": 50
}
}
},
"range": [
- 11585,
- 11599
+ 11665,
+ 11679
],
"loc": {
"start": {
- "line": 293,
+ "line": 296,
"column": 36
},
"end": {
- "line": 293,
+ "line": 296,
"column": 50
}
}
@@ -20312,109 +20532,109 @@
"type": "Identifier",
"name": "precision",
"range": [
- 11600,
- 11609
+ 11680,
+ 11689
],
"loc": {
"start": {
- "line": 293,
+ "line": 296,
"column": 51
},
"end": {
- "line": 293,
+ "line": 296,
"column": 60
}
}
}
],
"range": [
- 11585,
- 11610
+ 11665,
+ 11690
],
"loc": {
"start": {
- "line": 293,
+ "line": 296,
"column": 36
},
"end": {
- "line": 293,
+ "line": 296,
"column": 61
}
}
},
"range": [
- 11515,
- 11610
+ 11595,
+ 11690
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 293,
+ "line": 296,
"column": 61
}
}
},
"range": [
- 11515,
- 11611
+ 11595,
+ 11691
],
"loc": {
"start": {
- "line": 292,
+ "line": 295,
"column": 32
},
"end": {
- "line": 293,
+ "line": 296,
"column": 62
}
}
}
],
"range": [
- 11481,
- 11641
+ 11561,
+ 11721
],
"loc": {
"start": {
- "line": 291,
+ "line": 294,
"column": 35
},
"end": {
- "line": 294,
+ "line": 297,
"column": 29
}
}
},
"range": [
- 11287,
- 11641
+ 11367,
+ 11721
],
"loc": {
"start": {
- "line": 288,
+ "line": 291,
"column": 28
},
"end": {
- "line": 294,
+ "line": 297,
"column": 29
}
}
}
],
"range": [
- 11257,
- 11667
+ 11337,
+ 11747
],
"loc": {
"start": {
- "line": 287,
+ "line": 290,
"column": 27
},
"end": {
- "line": 295,
+ "line": 298,
"column": 25
}
}
@@ -20425,16 +20645,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 11674,
- 11675
+ 11754,
+ 11755
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 32
},
"end": {
- "line": 295,
+ "line": 298,
"column": 33
}
}
@@ -20443,47 +20663,47 @@
"type": "BlockStatement",
"body": [],
"range": [
- 11677,
- 11679
+ 11757,
+ 11759
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 35
},
"end": {
- "line": 295,
+ "line": 298,
"column": 37
}
}
},
"range": [
- 11668,
- 11679
+ 11748,
+ 11759
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 26
},
"end": {
- "line": 295,
+ "line": 298,
"column": 37
}
}
},
"finalizer": null,
"range": [
- 11254,
- 11679
+ 11334,
+ 11759
],
"loc": {
"start": {
- "line": 287,
+ "line": 290,
"column": 24
},
"end": {
- "line": 295,
+ "line": 298,
"column": 37
}
},
@@ -20492,16 +20712,16 @@
"type": "Line",
"value": "catch",
"range": [
- 11679,
- 11686
+ 11759,
+ 11766
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 37
},
"end": {
- "line": 295,
+ "line": 298,
"column": 44
}
}
@@ -20510,16 +20730,16 @@
}
],
"range": [
- 11228,
- 11708
+ 11308,
+ 11788
],
"loc": {
"start": {
- "line": 286,
+ "line": 289,
"column": 27
},
"end": {
- "line": 296,
+ "line": 299,
"column": 21
}
},
@@ -20528,16 +20748,16 @@
"type": "Line",
"value": "switch",
"range": [
- 11166,
- 11174
+ 11246,
+ 11254
],
"loc": {
"start": {
- "line": 284,
+ "line": 287,
"column": 29
},
"end": {
- "line": 284,
+ "line": 287,
"column": 37
}
}
@@ -20545,16 +20765,16 @@
]
},
"range": [
- 9886,
- 11708
+ 9966,
+ 11788
],
"loc": {
"start": {
- "line": 261,
+ "line": 264,
"column": 20
},
"end": {
- "line": 296,
+ "line": 299,
"column": 21
}
},
@@ -20563,16 +20783,16 @@
"type": "Line",
"value": "if outputType is defined",
"range": [
- 9839,
- 9865
+ 9919,
+ 9945
],
"loc": {
"start": {
- "line": 260,
+ "line": 263,
"column": 20
},
"end": {
- "line": 260,
+ "line": 263,
"column": 46
}
}
@@ -20583,16 +20803,16 @@
"type": "Line",
"value": "else",
"range": [
- 11708,
- 11714
+ 11788,
+ 11794
],
"loc": {
"start": {
- "line": 296,
+ "line": 299,
"column": 21
},
"end": {
- "line": 296,
+ "line": 299,
"column": 27
}
}
@@ -20601,31 +20821,31 @@
}
],
"range": [
- 8880,
- 11732
+ 8960,
+ 11812
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 46
},
"end": {
- "line": 297,
+ "line": 300,
"column": 17
}
}
},
"range": [
- 8850,
- 11732
+ 8930,
+ 11812
],
"loc": {
"start": {
- "line": 233,
+ "line": 236,
"column": 16
},
"end": {
- "line": 297,
+ "line": 300,
"column": 17
}
},
@@ -20634,16 +20854,16 @@
"type": "Line",
"value": "for i",
"range": [
- 11732,
- 11739
+ 11812,
+ 11819
],
"loc": {
"start": {
- "line": 297,
+ "line": 300,
"column": 17
},
"end": {
- "line": 297,
+ "line": 300,
"column": 24
}
}
@@ -20652,16 +20872,16 @@
"type": "Line",
"value": " row(s) with result are always visible",
"range": [
- 11757,
- 11797
+ 11837,
+ 11877
],
"loc": {
"start": {
- "line": 299,
+ "line": 302,
"column": 16
},
"end": {
- "line": 299,
+ "line": 302,
"column": 56
}
}
@@ -20677,16 +20897,16 @@
"type": "Identifier",
"name": "totRow",
"range": [
- 11818,
- 11824
+ 11898,
+ 11904
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 20
},
"end": {
- "line": 300,
+ "line": 303,
"column": 26
}
}
@@ -20700,16 +20920,16 @@
"type": "Identifier",
"name": "totRowIndex",
"range": [
- 11827,
- 11838
+ 11907,
+ 11918
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 29
},
"end": {
- "line": 300,
+ "line": 303,
"column": 40
}
}
@@ -20721,16 +20941,16 @@
"type": "Identifier",
"name": "totRowIndex",
"range": [
- 11842,
- 11853
+ 11922,
+ 11933
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 44
},
"end": {
- "line": 300,
+ "line": 303,
"column": 55
}
}
@@ -20739,46 +20959,46 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 11854,
- 11858
+ 11934,
+ 11938
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 56
},
"end": {
- "line": 300,
+ "line": 303,
"column": 60
}
}
},
"range": [
- 11842,
- 11859
+ 11922,
+ 11939
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 44
},
"end": {
- "line": 300,
+ "line": 303,
"column": 61
}
}
},
"range": [
- 11827,
- 11859
+ 11907,
+ 11939
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 29
},
"end": {
- "line": 300,
+ "line": 303,
"column": 61
}
}
@@ -20790,16 +21010,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 11894,
- 11898
+ 11974,
+ 11978
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 32
},
"end": {
- "line": 301,
+ "line": 304,
"column": 36
}
}
@@ -20811,16 +21031,16 @@
"type": "Identifier",
"name": "totRowIndex",
"range": [
- 11899,
- 11910
+ 11979,
+ 11990
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 37
},
"end": {
- "line": 301,
+ "line": 304,
"column": 48
}
}
@@ -20829,46 +21049,46 @@
"type": "Identifier",
"name": "ucol",
"range": [
- 11911,
- 11915
+ 11991,
+ 11995
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 49
},
"end": {
- "line": 301,
+ "line": 304,
"column": 53
}
}
},
"range": [
- 11899,
- 11916
+ 11979,
+ 11996
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 37
},
"end": {
- "line": 301,
+ "line": 304,
"column": 54
}
}
},
"range": [
- 11894,
- 11917
+ 11974,
+ 11997
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 32
},
"end": {
- "line": 301,
+ "line": 304,
"column": 55
}
}
@@ -20878,46 +21098,46 @@
"value": null,
"raw": "null",
"range": [
- 11920,
- 11924
+ 12000,
+ 12004
],
"loc": {
"start": {
- "line": 301,
+ "line": 304,
"column": 58
},
"end": {
- "line": 301,
+ "line": 304,
"column": 62
}
}
},
"range": [
- 11827,
- 11924
+ 11907,
+ 12004
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 29
},
"end": {
- "line": 301,
+ "line": 304,
"column": 62
}
}
},
"range": [
- 11818,
- 11924
+ 11898,
+ 12004
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 20
},
"end": {
- "line": 301,
+ "line": 304,
"column": 62
}
}
@@ -20925,16 +21145,16 @@
],
"kind": "var",
"range": [
- 11814,
- 11925
+ 11894,
+ 12005
],
"loc": {
"start": {
- "line": 300,
+ "line": 303,
"column": 16
},
"end": {
- "line": 301,
+ "line": 304,
"column": 63
}
},
@@ -20943,16 +21163,16 @@
"type": "Line",
"value": "catch",
"range": [
- 11679,
- 11686
+ 11759,
+ 11766
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 37
},
"end": {
- "line": 295,
+ "line": 298,
"column": 44
}
}
@@ -20961,16 +21181,16 @@
"type": "Line",
"value": "else",
"range": [
- 11708,
- 11714
+ 11788,
+ 11794
],
"loc": {
"start": {
- "line": 296,
+ "line": 299,
"column": 21
},
"end": {
- "line": 296,
+ "line": 299,
"column": 27
}
}
@@ -20979,16 +21199,16 @@
"type": "Line",
"value": "for i",
"range": [
- 11732,
- 11739
+ 11812,
+ 11819
],
"loc": {
"start": {
- "line": 297,
+ "line": 300,
"column": 17
},
"end": {
- "line": 297,
+ "line": 300,
"column": 24
}
}
@@ -20997,16 +21217,16 @@
"type": "Line",
"value": " row(s) with result are always visible",
"range": [
- 11757,
- 11797
+ 11837,
+ 11877
],
"loc": {
"start": {
- "line": 299,
+ "line": 302,
"column": 16
},
"end": {
- "line": 299,
+ "line": 302,
"column": 56
}
}
@@ -21019,16 +21239,16 @@
"type": "Identifier",
"name": "totRow",
"range": [
- 11945,
- 11951
+ 12025,
+ 12031
],
"loc": {
"start": {
- "line": 302,
+ "line": 305,
"column": 19
},
"end": {
- "line": 302,
+ "line": 305,
"column": 25
}
}
@@ -21051,16 +21271,16 @@
"type": "Identifier",
"name": "totRow",
"range": [
- 11974,
- 11980
+ 12054,
+ 12060
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 20
},
"end": {
- "line": 303,
+ "line": 306,
"column": 26
}
}
@@ -21069,31 +21289,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 11981,
- 11986
+ 12061,
+ 12066
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 27
},
"end": {
- "line": 303,
+ "line": 306,
"column": 32
}
}
},
"range": [
- 11974,
- 11986
+ 12054,
+ 12066
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 20
},
"end": {
- "line": 303,
+ "line": 306,
"column": 32
}
}
@@ -21102,31 +21322,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 11987,
- 11994
+ 12067,
+ 12074
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 33
},
"end": {
- "line": 303,
+ "line": 306,
"column": 40
}
}
},
"range": [
- 11974,
- 11994
+ 12054,
+ 12074
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 20
},
"end": {
- "line": 303,
+ "line": 306,
"column": 40
}
}
@@ -21136,109 +21356,109 @@
"value": "",
"raw": "''",
"range": [
- 11997,
- 11999
+ 12077,
+ 12079
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 43
},
"end": {
- "line": 303,
+ "line": 306,
"column": 45
}
}
},
"range": [
- 11974,
- 11999
+ 12054,
+ 12079
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 20
},
"end": {
- "line": 303,
+ "line": 306,
"column": 45
}
}
},
"range": [
- 11974,
- 12000
+ 12054,
+ 12080
],
"loc": {
"start": {
- "line": 303,
+ "line": 306,
"column": 20
},
"end": {
- "line": 303,
+ "line": 306,
"column": 46
}
}
}
],
"range": [
- 11952,
- 12018
+ 12032,
+ 12098
],
"loc": {
"start": {
- "line": 302,
+ "line": 305,
"column": 26
},
"end": {
- "line": 304,
+ "line": 307,
"column": 17
}
}
},
"alternate": null,
"range": [
- 11942,
- 12018
+ 12022,
+ 12098
],
"loc": {
"start": {
- "line": 302,
+ "line": 305,
"column": 16
},
"end": {
- "line": 304,
+ "line": 307,
"column": 17
}
}
}
],
"range": [
- 2975,
- 12032
+ 3055,
+ 12112
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 50
},
"end": {
- "line": 305,
+ "line": 308,
"column": 13
}
}
},
"range": [
- 2937,
- 12032
+ 3017,
+ 12112
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 12
},
"end": {
- "line": 305,
+ "line": 308,
"column": 13
}
},
@@ -21247,16 +21467,16 @@
"type": "Line",
"value": "for ucol",
"range": [
- 12032,
- 12042
+ 12112,
+ 12122
],
"loc": {
"start": {
- "line": 305,
+ "line": 308,
"column": 13
},
"end": {
- "line": 305,
+ "line": 308,
"column": 23
}
}
@@ -21265,32 +21485,32 @@
}
],
"range": [
- 2854,
- 12052
+ 2934,
+ 12132
],
"loc": {
"start": {
- "line": 86,
+ "line": 89,
"column": 50
},
"end": {
- "line": 306,
+ "line": 309,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2710,
- 12052
+ 2790,
+ 12132
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 8
},
"end": {
- "line": 306,
+ "line": 309,
"column": 9
}
},
@@ -21299,16 +21519,16 @@
"type": "Line",
"value": "if typeof",
"range": [
- 12052,
- 12063
+ 12132,
+ 12143
],
"loc": {
"start": {
- "line": 306,
+ "line": 309,
"column": 9
},
"end": {
- "line": 306,
+ "line": 309,
"column": 20
}
}
@@ -21323,16 +21543,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12076,
- 12080
+ 12156,
+ 12160
],
"loc": {
"start": {
- "line": 308,
+ "line": 311,
"column": 11
},
"end": {
- "line": 308,
+ "line": 311,
"column": 15
}
}
@@ -21341,31 +21561,31 @@
"type": "Identifier",
"name": "onAfterOperation",
"range": [
- 12081,
- 12097
+ 12161,
+ 12177
],
"loc": {
"start": {
- "line": 308,
+ "line": 311,
"column": 16
},
"end": {
- "line": 308,
+ "line": 311,
"column": 32
}
}
},
"range": [
- 12076,
- 12097
+ 12156,
+ 12177
],
"loc": {
"start": {
- "line": 308,
+ "line": 311,
"column": 11
},
"end": {
- "line": 308,
+ "line": 311,
"column": 32
}
}
@@ -21386,16 +21606,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12112,
- 12116
+ 12192,
+ 12196
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 12
},
"end": {
- "line": 309,
+ "line": 312,
"column": 16
}
}
@@ -21404,31 +21624,31 @@
"type": "Identifier",
"name": "onAfterOperation",
"range": [
- 12117,
- 12133
+ 12197,
+ 12213
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 17
},
"end": {
- "line": 309,
+ "line": 312,
"column": 33
}
}
},
"range": [
- 12112,
- 12133
+ 12192,
+ 12213
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 12
},
"end": {
- "line": 309,
+ "line": 312,
"column": 33
}
}
@@ -21437,31 +21657,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 12134,
- 12138
+ 12214,
+ 12218
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 34
},
"end": {
- "line": 309,
+ "line": 312,
"column": 38
}
}
},
"range": [
- 12112,
- 12138
+ 12192,
+ 12218
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 12
},
"end": {
- "line": 309,
+ "line": 312,
"column": 38
}
}
@@ -21472,16 +21692,16 @@
"value": null,
"raw": "null",
"range": [
- 12139,
- 12143
+ 12219,
+ 12223
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 39
},
"end": {
- "line": 309,
+ "line": 312,
"column": 43
}
}
@@ -21490,79 +21710,79 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12145,
- 12147
+ 12225,
+ 12227
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 45
},
"end": {
- "line": 309,
+ "line": 312,
"column": 47
}
}
}
],
"range": [
- 12112,
- 12148
+ 12192,
+ 12228
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 12
},
"end": {
- "line": 309,
+ "line": 312,
"column": 48
}
}
},
"range": [
- 12112,
- 12149
+ 12192,
+ 12229
],
"loc": {
"start": {
- "line": 309,
+ "line": 312,
"column": 12
},
"end": {
- "line": 309,
+ "line": 312,
"column": 49
}
}
}
],
"range": [
- 12098,
- 12159
+ 12178,
+ 12239
],
"loc": {
"start": {
- "line": 308,
+ "line": 311,
"column": 33
},
"end": {
- "line": 310,
+ "line": 313,
"column": 9
}
}
},
"alternate": null,
"range": [
- 12073,
- 12159
+ 12153,
+ 12239
],
"loc": {
"start": {
- "line": 308,
+ "line": 311,
"column": 8
},
"end": {
- "line": 310,
+ "line": 313,
"column": 9
}
},
@@ -21571,16 +21791,16 @@
"type": "Line",
"value": "for ucol",
"range": [
- 12032,
- 12042
+ 12112,
+ 12122
],
"loc": {
"start": {
- "line": 305,
+ "line": 308,
"column": 13
},
"end": {
- "line": 305,
+ "line": 308,
"column": 23
}
}
@@ -21589,16 +21809,16 @@
"type": "Line",
"value": "if typeof",
"range": [
- 12052,
- 12063
+ 12132,
+ 12143
],
"loc": {
"start": {
- "line": 306,
+ "line": 309,
"column": 9
},
"end": {
- "line": 306,
+ "line": 309,
"column": 20
}
}
@@ -21607,16 +21827,16 @@
}
],
"range": [
- 1459,
- 12165
+ 1558,
+ 12245
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 11
},
"end": {
- "line": 311,
+ "line": 314,
"column": 5
}
}
@@ -21624,16 +21844,16 @@
"generator": false,
"expression": false,
"range": [
- 1456,
- 12165
+ 1555,
+ 12245
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 8
},
"end": {
- "line": 311,
+ "line": 314,
"column": 5
}
}
@@ -21641,16 +21861,16 @@
"kind": "method",
"computed": false,
"range": [
- 1452,
- 12165
+ 1551,
+ 12245
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 4
},
"end": {
- "line": 311,
+ "line": 314,
"column": 5
}
},
@@ -21659,16 +21879,16 @@
"type": "Block",
"value": "*\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n ",
"range": [
- 666,
- 1447
+ 765,
+ 1546
],
"loc": {
"start": {
- "line": 28,
+ "line": 31,
"column": 4
},
"end": {
- "line": 43,
+ "line": 46,
"column": 7
}
}
@@ -21682,16 +21902,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 12171,
- 12178
+ 12251,
+ 12258
],
"loc": {
"start": {
- "line": 313,
+ "line": 316,
"column": 4
},
"end": {
- "line": 313,
+ "line": 316,
"column": 11
}
}
@@ -21702,53 +21922,365 @@
"params": [],
"body": {
"type": "BlockStatement",
- "body": [],
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 12303,
+ 12307
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12308,
+ 12310
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 13
+ },
+ "end": {
+ "line": 318,
+ "column": 15
+ }
+ }
+ },
+ "range": [
+ 12303,
+ 12310
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 12311,
+ 12318
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 16
+ },
+ "end": {
+ "line": 318,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 12303,
+ 12318
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 12319,
+ 12322
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 24
+ },
+ "end": {
+ "line": 318,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 12303,
+ 12322
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 12324,
+ 12341
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 29
+ },
+ "end": {
+ "line": 318,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 12323,
+ 12342
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 28
+ },
+ "end": {
+ "line": 318,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 12349,
+ 12353
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 54
+ },
+ "end": {
+ "line": 318,
+ "column": 58
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "calc",
+ "range": [
+ 12354,
+ 12358
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 59
+ },
+ "end": {
+ "line": 318,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 12349,
+ 12358
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 54
+ },
+ "end": {
+ "line": 318,
+ "column": 63
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 12349,
+ 12360
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 54
+ },
+ "end": {
+ "line": 318,
+ "column": 65
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 12344,
+ 12360
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 49
+ },
+ "end": {
+ "line": 318,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 12303,
+ 12361
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 12303,
+ 12362
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 67
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 12270,
+ 12294
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 32
+ }
+ }
+ }
+ ]
+ }
+ ],
"range": [
- 12180,
- 12182
+ 12260,
+ 12368
],
"loc": {
"start": {
- "line": 313,
+ "line": 316,
"column": 13
},
"end": {
- "line": 313,
- "column": 15
+ "line": 319,
+ "column": 5
}
}
},
"generator": false,
"expression": false,
"range": [
- 12178,
- 12182
+ 12258,
+ 12368
],
"loc": {
"start": {
- "line": 313,
+ "line": 316,
"column": 11
},
"end": {
- "line": 313,
- "column": 15
+ "line": 319,
+ "column": 5
}
}
},
"kind": "method",
"computed": false,
"range": [
- 12171,
- 12182
+ 12251,
+ 12368
],
"loc": {
"start": {
- "line": 313,
+ "line": 316,
"column": 4
},
"end": {
- "line": 313,
- "column": 15
+ "line": 319,
+ "column": 5
}
},
"static": false
@@ -21756,7 +22288,7 @@
],
"range": [
122,
- 12185
+ 12371
],
"loc": {
"start": {
@@ -21764,14 +22296,14 @@
"column": 27
},
"end": {
- "line": 315,
+ "line": 321,
"column": 1
}
}
},
"range": [
110,
- 12185
+ 12371
],
"loc": {
"start": {
@@ -21779,7 +22311,7 @@
"column": 15
},
"end": {
- "line": 315,
+ "line": 321,
"column": 1
}
},
@@ -21788,7 +22320,7 @@
},
"range": [
95,
- 12185
+ 12371
],
"loc": {
"start": {
@@ -21796,7 +22328,7 @@
"column": 0
},
"end": {
- "line": 315,
+ "line": 321,
"column": 1
}
}
@@ -21805,7 +22337,7 @@
"sourceType": "module",
"range": [
0,
- 12185
+ 12371
],
"loc": {
"start": {
@@ -21813,7 +22345,7 @@
"column": 0
},
"end": {
- "line": 315,
+ "line": 321,
"column": 1
}
},
@@ -21873,19 +22405,37 @@
}
},
{
- "type": "Block",
- "value": "*\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n ",
+ "type": "Line",
+ "value": " subscribe to events",
"range": [
- 666,
- 1447
+ 642,
+ 664
],
"loc": {
"start": {
- "line": 28,
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n ",
+ "range": [
+ 765,
+ 1546
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
"column": 4
},
"end": {
- "line": 43,
+ "line": 46,
"column": 7
}
}
@@ -21894,16 +22444,16 @@
"type": "Line",
"value": "nuovella: determine unique list of columns to operate on",
"range": [
- 2053,
- 2111
+ 2133,
+ 2191
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 8
},
"end": {
- "line": 64,
+ "line": 67,
"column": 66
}
}
@@ -21912,16 +22462,16 @@
"type": "Line",
"value": "see if colIndex[ii] is already in the list of unique indexes",
"range": [
- 2296,
- 2358
+ 2376,
+ 2438
],
"loc": {
"start": {
- "line": 71,
+ "line": 74,
"column": 12
},
"end": {
- "line": 71,
+ "line": 74,
"column": 74
}
}
@@ -21930,16 +22480,16 @@
"type": "Line",
"value": "if not saved then, save the index;",
"range": [
- 2532,
- 2568
+ 2612,
+ 2648
],
"loc": {
"start": {
- "line": 77,
+ "line": 80,
"column": 12
},
"end": {
- "line": 77,
+ "line": 80,
"column": 48
}
}
@@ -21948,16 +22498,16 @@
"type": "Line",
"value": "this retrieves col values",
"range": [
- 2993,
- 3020
+ 3073,
+ 3100
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 16
},
"end": {
- "line": 91,
+ "line": 94,
"column": 43
}
}
@@ -21966,16 +22516,16 @@
"type": "Line",
"value": "use ucolIndex because we only want to pass through this loop",
"range": [
- 3037,
- 3099
+ 3117,
+ 3179
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 16
},
"end": {
- "line": 92,
+ "line": 95,
"column": 78
}
}
@@ -21984,16 +22534,16 @@
"type": "Line",
"value": "once for each column get the values in this unique column",
"range": [
- 3116,
- 3175
+ 3196,
+ 3255
],
"loc": {
"start": {
- "line": 93,
+ "line": 96,
"column": 16
},
"end": {
- "line": 93,
+ "line": 96,
"column": 75
}
}
@@ -22002,16 +22552,16 @@
"type": "Line",
"value": "next: calculate all operations for this column",
"range": [
- 3305,
- 3353
+ 3385,
+ 3433
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 16
},
"end": {
- "line": 97,
+ "line": 100,
"column": 64
}
}
@@ -22020,16 +22570,16 @@
"type": "Line",
"value": "sort the list for calculation of median and quartiles",
"range": [
- 5664,
- 5719
+ 5744,
+ 5799
],
"loc": {
"start": {
- "line": 159,
+ "line": 162,
"column": 20
},
"end": {
- "line": 159,
+ "line": 162,
"column": 75
}
}
@@ -22038,16 +22588,16 @@
"type": "Line",
"value": "for j",
"range": [
- 7522,
- 7529
+ 7602,
+ 7609
],
"loc": {
"start": {
- "line": 197,
+ "line": 200,
"column": 17
},
"end": {
- "line": 197,
+ "line": 200,
"column": 24
}
}
@@ -22056,16 +22606,16 @@
"type": "Line",
"value": "if outputType is defined",
"range": [
- 9839,
- 9865
+ 9919,
+ 9945
],
"loc": {
"start": {
- "line": 260,
+ "line": 263,
"column": 20
},
"end": {
- "line": 260,
+ "line": 263,
"column": 46
}
}
@@ -22074,16 +22624,16 @@
"type": "Line",
"value": "switch",
"range": [
- 11166,
- 11174
+ 11246,
+ 11254
],
"loc": {
"start": {
- "line": 284,
+ "line": 287,
"column": 29
},
"end": {
- "line": 284,
+ "line": 287,
"column": 37
}
}
@@ -22092,16 +22642,16 @@
"type": "Line",
"value": "catch",
"range": [
- 11679,
- 11686
+ 11759,
+ 11766
],
"loc": {
"start": {
- "line": 295,
+ "line": 298,
"column": 37
},
"end": {
- "line": 295,
+ "line": 298,
"column": 44
}
}
@@ -22110,16 +22660,16 @@
"type": "Line",
"value": "else",
"range": [
- 11708,
- 11714
+ 11788,
+ 11794
],
"loc": {
"start": {
- "line": 296,
+ "line": 299,
"column": 21
},
"end": {
- "line": 296,
+ "line": 299,
"column": 27
}
}
@@ -22128,16 +22678,16 @@
"type": "Line",
"value": "for i",
"range": [
- 11732,
- 11739
+ 11812,
+ 11819
],
"loc": {
"start": {
- "line": 297,
+ "line": 300,
"column": 17
},
"end": {
- "line": 297,
+ "line": 300,
"column": 24
}
}
@@ -22146,16 +22696,16 @@
"type": "Line",
"value": " row(s) with result are always visible",
"range": [
- 11757,
- 11797
+ 11837,
+ 11877
],
"loc": {
"start": {
- "line": 299,
+ "line": 302,
"column": 16
},
"end": {
- "line": 299,
+ "line": 302,
"column": 56
}
}
@@ -22164,16 +22714,16 @@
"type": "Line",
"value": "for ucol",
"range": [
- 12032,
- 12042
+ 12112,
+ 12122
],
"loc": {
"start": {
- "line": 305,
+ "line": 308,
"column": 13
},
"end": {
- "line": 305,
+ "line": 308,
"column": 23
}
}
@@ -22182,19 +22732,37 @@
"type": "Line",
"value": "if typeof",
"range": [
- 12052,
- 12063
+ 12132,
+ 12143
],
"loc": {
"start": {
- "line": 306,
+ "line": 309,
"column": 9
},
"end": {
- "line": 306,
+ "line": 309,
"column": 20
}
}
+ },
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 12270,
+ 12294
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/extensions/sort/adapterSortabletable.js.json b/docs/ast/source/src/extensions/sort/adapterSortabletable.js.json
index 946ba6f2..0842e940 100644
--- a/docs/ast/source/src/extensions/sort/adapterSortabletable.js.json
+++ b/docs/ast/source/src/extensions/sort/adapterSortabletable.js.json
@@ -4488,11 +4488,153 @@
"column": 21
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1924,
+ 1928
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1929,
+ 1936
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 13
+ },
+ "end": {
+ "line": 49,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 1924,
+ 1936
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1939,
+ 1941
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 23
+ },
+ "end": {
+ "line": 49,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1942,
+ 1949
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 26
+ },
+ "end": {
+ "line": 49,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1939,
+ 1949
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 23
+ },
+ "end": {
+ "line": 49,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1924,
+ 1949
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1924,
+ 1950
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 34
+ }
+ }
}
],
"range": [
338,
- 1921
+ 1956
],
"loc": {
"start": {
@@ -4500,7 +4642,7 @@
"column": 25
},
"end": {
- "line": 49,
+ "line": 50,
"column": 5
}
}
@@ -4509,7 +4651,7 @@
"expression": false,
"range": [
328,
- 1921
+ 1956
],
"loc": {
"start": {
@@ -4517,7 +4659,7 @@
"column": 15
},
"end": {
- "line": 49,
+ "line": 50,
"column": 5
}
}
@@ -4526,7 +4668,7 @@
"computed": false,
"range": [
317,
- 1921
+ 1956
],
"loc": {
"start": {
@@ -4534,7 +4676,7 @@
"column": 4
},
"end": {
- "line": 49,
+ "line": 50,
"column": 5
}
},
@@ -4566,16 +4708,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 1927,
- 1931
+ 1962,
+ 1966
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 4
},
"end": {
- "line": 51,
+ "line": 52,
"column": 8
}
}
@@ -4596,16 +4738,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1947,
- 1949
+ 1982,
+ 1984
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 14
}
}
@@ -4616,16 +4758,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1952,
- 1956
+ 1987,
+ 1991
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 17
},
"end": {
- "line": 52,
+ "line": 53,
"column": 21
}
}
@@ -4634,46 +4776,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1957,
- 1959
+ 1992,
+ 1994
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 22
},
"end": {
- "line": 52,
+ "line": 53,
"column": 24
}
}
},
"range": [
- 1952,
- 1959
+ 1987,
+ 1994
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 17
},
"end": {
- "line": 52,
+ "line": 53,
"column": 24
}
}
},
"range": [
- 1947,
- 1959
+ 1982,
+ 1994
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 24
}
}
@@ -4681,16 +4823,16 @@
],
"kind": "let",
"range": [
- 1943,
- 1960
+ 1978,
+ 1995
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 8
},
"end": {
- "line": 52,
+ "line": 53,
"column": 25
}
}
@@ -4704,16 +4846,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 1973,
- 1977
+ 2008,
+ 2012
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 12
},
"end": {
- "line": 53,
+ "line": 54,
"column": 16
}
}
@@ -4721,31 +4863,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 1980,
- 1984
+ 2015,
+ 2019
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 19
},
"end": {
- "line": 53,
+ "line": 54,
"column": 23
}
}
},
"range": [
- 1973,
- 1984
+ 2008,
+ 2019
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 12
},
"end": {
- "line": 53,
+ "line": 54,
"column": 23
}
}
@@ -4753,16 +4895,16 @@
],
"kind": "let",
"range": [
- 1969,
- 1985
+ 2004,
+ 2020
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 8
},
"end": {
- "line": 53,
+ "line": 54,
"column": 24
}
},
@@ -4771,16 +4913,16 @@
"type": "Line",
"value": " SortableTable class sanity check (sortabletable.js)",
"range": [
- 1995,
- 2049
+ 2030,
+ 2084
],
"loc": {
"start": {
- "line": 55,
+ "line": 56,
"column": 8
},
"end": {
- "line": 55,
+ "line": 56,
"column": 62
}
}
@@ -4798,16 +4940,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 2061,
- 2066
+ 2096,
+ 2101
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 11
},
"end": {
- "line": 56,
+ "line": 57,
"column": 16
}
}
@@ -4816,31 +4958,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 2067,
- 2074
+ 2102,
+ 2109
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 17
},
"end": {
- "line": 56,
+ "line": 57,
"column": 24
}
}
},
"range": [
- 2061,
- 2074
+ 2096,
+ 2109
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 11
},
"end": {
- "line": 56,
+ "line": 57,
"column": 24
}
}
@@ -4850,32 +4992,32 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 2075,
- 2088
+ 2110,
+ 2123
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 25
},
"end": {
- "line": 56,
+ "line": 57,
"column": 38
}
}
}
],
"range": [
- 2061,
- 2089
+ 2096,
+ 2124
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 11
},
"end": {
- "line": 56,
+ "line": 57,
"column": 39
}
}
@@ -4891,16 +5033,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 2114,
- 2119
+ 2149,
+ 2154
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 22
},
"end": {
- "line": 57,
+ "line": 58,
"column": 27
}
}
@@ -4911,79 +5053,79 @@
"value": "SortableTable class not found.",
"raw": "'SortableTable class not found.'",
"range": [
- 2120,
- 2152
+ 2155,
+ 2187
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 28
},
"end": {
- "line": 57,
+ "line": 58,
"column": 60
}
}
}
],
"range": [
- 2110,
- 2153
+ 2145,
+ 2188
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 18
},
"end": {
- "line": 57,
+ "line": 58,
"column": 61
}
}
},
"range": [
- 2104,
- 2154
+ 2139,
+ 2189
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 12
},
"end": {
- "line": 57,
+ "line": 58,
"column": 62
}
}
}
],
"range": [
- 2090,
- 2164
+ 2125,
+ 2199
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 40
},
"end": {
- "line": 58,
+ "line": 59,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2058,
- 2164
+ 2093,
+ 2199
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 9
}
},
@@ -4992,16 +5134,16 @@
"type": "Line",
"value": " SortableTable class sanity check (sortabletable.js)",
"range": [
- 1995,
- 2049
+ 2030,
+ 2084
],
"loc": {
"start": {
- "line": 55,
+ "line": 56,
"column": 8
},
"end": {
- "line": 55,
+ "line": 56,
"column": 62
}
}
@@ -5018,16 +5160,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2174,
- 2178
+ 2209,
+ 2213
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 8
},
"end": {
- "line": 60,
+ "line": 61,
"column": 12
}
}
@@ -5036,62 +5178,62 @@
"type": "Identifier",
"name": "overrideSortableTable",
"range": [
- 2179,
- 2200
+ 2214,
+ 2235
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 13
},
"end": {
- "line": 60,
+ "line": 61,
"column": 34
}
}
},
"range": [
- 2174,
- 2200
+ 2209,
+ 2235
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 8
},
"end": {
- "line": 60,
+ "line": 61,
"column": 34
}
}
},
"arguments": [],
"range": [
- 2174,
- 2202
+ 2209,
+ 2237
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 8
},
"end": {
- "line": 60,
+ "line": 61,
"column": 36
}
}
},
"range": [
- 2174,
- 2203
+ 2209,
+ 2238
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 8
},
"end": {
- "line": 60,
+ "line": 61,
"column": 37
}
}
@@ -5106,16 +5248,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2212,
- 2216
+ 2247,
+ 2251
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 8
},
"end": {
- "line": 61,
+ "line": 62,
"column": 12
}
}
@@ -5124,62 +5266,62 @@
"type": "Identifier",
"name": "setSortTypes",
"range": [
- 2217,
- 2229
+ 2252,
+ 2264
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 13
},
"end": {
- "line": 61,
+ "line": 62,
"column": 25
}
}
},
"range": [
- 2212,
- 2229
+ 2247,
+ 2264
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 8
},
"end": {
- "line": 61,
+ "line": 62,
"column": 25
}
}
},
"arguments": [],
"range": [
- 2212,
- 2231
+ 2247,
+ 2266
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 8
},
"end": {
- "line": 61,
+ "line": 62,
"column": 27
}
}
},
"range": [
- 2212,
- 2232
+ 2247,
+ 2267
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 8
},
"end": {
- "line": 61,
+ "line": 62,
"column": 28
}
},
@@ -5188,16 +5330,16 @@
"type": "Line",
"value": "Column sort at start",
"range": [
- 2242,
- 2264
+ 2277,
+ 2299
],
"loc": {
"start": {
- "line": 63,
+ "line": 64,
"column": 8
},
"end": {
- "line": 63,
+ "line": 64,
"column": 30
}
}
@@ -5213,16 +5355,16 @@
"type": "Identifier",
"name": "sortColAtStart",
"range": [
- 2277,
- 2291
+ 2312,
+ 2326
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 12
},
"end": {
- "line": 64,
+ "line": 65,
"column": 26
}
}
@@ -5234,16 +5376,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 2294,
- 2298
+ 2329,
+ 2333
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 29
},
"end": {
- "line": 64,
+ "line": 65,
"column": 33
}
}
@@ -5252,46 +5394,46 @@
"type": "Identifier",
"name": "sortColAtStart",
"range": [
- 2299,
- 2313
+ 2334,
+ 2348
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 34
},
"end": {
- "line": 64,
+ "line": 65,
"column": 48
}
}
},
"range": [
- 2294,
- 2313
+ 2329,
+ 2348
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 29
},
"end": {
- "line": 64,
+ "line": 65,
"column": 48
}
}
},
"range": [
- 2277,
- 2313
+ 2312,
+ 2348
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 12
},
"end": {
- "line": 64,
+ "line": 65,
"column": 48
}
}
@@ -5299,16 +5441,16 @@
],
"kind": "let",
"range": [
- 2273,
- 2314
+ 2308,
+ 2349
],
"loc": {
"start": {
- "line": 64,
+ "line": 65,
"column": 8
},
"end": {
- "line": 64,
+ "line": 65,
"column": 49
}
},
@@ -5317,16 +5459,16 @@
"type": "Line",
"value": "Column sort at start",
"range": [
- 2242,
- 2264
+ 2277,
+ 2299
],
"loc": {
"start": {
- "line": 63,
+ "line": 64,
"column": 8
},
"end": {
- "line": 63,
+ "line": 64,
"column": 30
}
}
@@ -5339,16 +5481,16 @@
"type": "Identifier",
"name": "sortColAtStart",
"range": [
- 2326,
- 2340
+ 2361,
+ 2375
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 11
},
"end": {
- "line": 65,
+ "line": 66,
"column": 25
}
}
@@ -5369,16 +5511,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2355,
- 2359
+ 2390,
+ 2394
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 12
},
"end": {
- "line": 66,
+ "line": 67,
"column": 16
}
}
@@ -5387,31 +5529,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 2360,
- 2363
+ 2395,
+ 2398
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 17
},
"end": {
- "line": 66,
+ "line": 67,
"column": 20
}
}
},
"range": [
- 2355,
- 2363
+ 2390,
+ 2398
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 12
},
"end": {
- "line": 66,
+ "line": 67,
"column": 20
}
}
@@ -5420,31 +5562,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 2364,
- 2368
+ 2399,
+ 2403
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 21
},
"end": {
- "line": 66,
+ "line": 67,
"column": 25
}
}
},
"range": [
- 2355,
- 2368
+ 2390,
+ 2403
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 12
},
"end": {
- "line": 66,
+ "line": 67,
"column": 25
}
}
@@ -5457,16 +5599,16 @@
"type": "Identifier",
"name": "sortColAtStart",
"range": [
- 2369,
- 2383
+ 2404,
+ 2418
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 26
},
"end": {
- "line": 66,
+ "line": 67,
"column": 40
}
}
@@ -5476,31 +5618,31 @@
"value": 0,
"raw": "0",
"range": [
- 2384,
- 2385
+ 2419,
+ 2420
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 41
},
"end": {
- "line": 66,
+ "line": 67,
"column": 42
}
}
},
"range": [
- 2369,
- 2386
+ 2404,
+ 2421
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 26
},
"end": {
- "line": 66,
+ "line": 67,
"column": 43
}
}
@@ -5512,16 +5654,16 @@
"type": "Identifier",
"name": "sortColAtStart",
"range": [
- 2388,
- 2402
+ 2423,
+ 2437
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 45
},
"end": {
- "line": 66,
+ "line": 67,
"column": 59
}
}
@@ -5531,94 +5673,94 @@
"value": 1,
"raw": "1",
"range": [
- 2403,
- 2404
+ 2438,
+ 2439
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 60
},
"end": {
- "line": 66,
+ "line": 67,
"column": 61
}
}
},
"range": [
- 2388,
- 2405
+ 2423,
+ 2440
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 45
},
"end": {
- "line": 66,
+ "line": 67,
"column": 62
}
}
}
],
"range": [
- 2355,
- 2406
+ 2390,
+ 2441
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 12
},
"end": {
- "line": 66,
+ "line": 67,
"column": 63
}
}
},
"range": [
- 2355,
- 2407
+ 2390,
+ 2442
],
"loc": {
"start": {
- "line": 66,
+ "line": 67,
"column": 12
},
"end": {
- "line": 66,
+ "line": 67,
"column": 64
}
}
}
],
"range": [
- 2341,
- 2417
+ 2376,
+ 2452
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 26
},
"end": {
- "line": 67,
+ "line": 68,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2323,
- 2417
+ 2358,
+ 2452
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 8
},
"end": {
- "line": 67,
+ "line": 68,
"column": 9
}
}
@@ -5631,16 +5773,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2430,
- 2434
+ 2465,
+ 2469
],
"loc": {
"start": {
- "line": 69,
+ "line": 70,
"column": 11
},
"end": {
- "line": 69,
+ "line": 70,
"column": 15
}
}
@@ -5649,31 +5791,31 @@
"type": "Identifier",
"name": "onSortLoaded",
"range": [
- 2435,
- 2447
+ 2470,
+ 2482
],
"loc": {
"start": {
- "line": 69,
+ "line": 70,
"column": 16
},
"end": {
- "line": 69,
+ "line": 70,
"column": 28
}
}
},
"range": [
- 2430,
- 2447
+ 2465,
+ 2482
],
"loc": {
"start": {
- "line": 69,
+ "line": 70,
"column": 11
},
"end": {
- "line": 69,
+ "line": 70,
"column": 28
}
}
@@ -5694,16 +5836,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2462,
- 2466
+ 2497,
+ 2501
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 12
},
"end": {
- "line": 70,
+ "line": 71,
"column": 16
}
}
@@ -5712,31 +5854,31 @@
"type": "Identifier",
"name": "onSortLoaded",
"range": [
- 2467,
- 2479
+ 2502,
+ 2514
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 17
},
"end": {
- "line": 70,
+ "line": 71,
"column": 29
}
}
},
"range": [
- 2462,
- 2479
+ 2497,
+ 2514
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 12
},
"end": {
- "line": 70,
+ "line": 71,
"column": 29
}
}
@@ -5745,31 +5887,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2480,
- 2484
+ 2515,
+ 2519
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 30
},
"end": {
- "line": 70,
+ "line": 71,
"column": 34
}
}
},
"range": [
- 2462,
- 2484
+ 2497,
+ 2519
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 12
},
"end": {
- "line": 70,
+ "line": 71,
"column": 34
}
}
@@ -5780,16 +5922,16 @@
"value": null,
"raw": "null",
"range": [
- 2485,
- 2489
+ 2520,
+ 2524
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 35
},
"end": {
- "line": 70,
+ "line": 71,
"column": 39
}
}
@@ -5798,16 +5940,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2491,
- 2493
+ 2526,
+ 2528
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 41
},
"end": {
- "line": 70,
+ "line": 71,
"column": 43
}
}
@@ -5815,79 +5957,79 @@
{
"type": "ThisExpression",
"range": [
- 2495,
- 2499
+ 2530,
+ 2534
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 45
},
"end": {
- "line": 70,
+ "line": 71,
"column": 49
}
}
}
],
"range": [
- 2462,
- 2500
+ 2497,
+ 2535
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 12
},
"end": {
- "line": 70,
+ "line": 71,
"column": 50
}
}
},
"range": [
- 2462,
- 2501
+ 2497,
+ 2536
],
"loc": {
"start": {
- "line": 70,
+ "line": 71,
"column": 12
},
"end": {
- "line": 70,
+ "line": 71,
"column": 51
}
}
}
],
"range": [
- 2448,
- 2511
+ 2483,
+ 2546
],
"loc": {
"start": {
- "line": 69,
+ "line": 70,
"column": 29
},
"end": {
- "line": 71,
+ "line": 72,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2427,
- 2511
+ 2462,
+ 2546
],
"loc": {
"start": {
- "line": 69,
+ "line": 70,
"column": 8
},
"end": {
- "line": 71,
+ "line": 72,
"column": 9
}
},
@@ -5896,16 +6038,16 @@
"type": "Block",
"value": "** SortableTable callbacks **",
"range": [
- 2521,
- 2554
+ 2556,
+ 2589
],
"loc": {
"start": {
- "line": 73,
+ "line": 74,
"column": 8
},
"end": {
- "line": 73,
+ "line": 74,
"column": 41
}
}
@@ -5926,16 +6068,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2563,
- 2567
+ 2598,
+ 2602
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 8
},
"end": {
- "line": 74,
+ "line": 75,
"column": 12
}
}
@@ -5944,31 +6086,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 2568,
- 2571
+ 2603,
+ 2606
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 13
},
"end": {
- "line": 74,
+ "line": 75,
"column": 16
}
}
},
"range": [
- 2563,
- 2571
+ 2598,
+ 2606
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 8
},
"end": {
- "line": 74,
+ "line": 75,
"column": 16
}
}
@@ -5977,31 +6119,31 @@
"type": "Identifier",
"name": "onbeforesort",
"range": [
- 2572,
- 2584
+ 2607,
+ 2619
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 17
},
"end": {
- "line": 74,
+ "line": 75,
"column": 29
}
}
},
"range": [
- 2563,
- 2584
+ 2598,
+ 2619
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 8
},
"end": {
- "line": 74,
+ "line": 75,
"column": 29
}
}
@@ -6022,16 +6164,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 2614,
- 2618
+ 2649,
+ 2653
],
"loc": {
"start": {
- "line": 75,
+ "line": 76,
"column": 15
},
"end": {
- "line": 75,
+ "line": 76,
"column": 19
}
}
@@ -6040,31 +6182,31 @@
"type": "Identifier",
"name": "onBeforeSort",
"range": [
- 2619,
- 2631
+ 2654,
+ 2666
],
"loc": {
"start": {
- "line": 75,
+ "line": 76,
"column": 20
},
"end": {
- "line": 75,
+ "line": 76,
"column": 32
}
}
},
"range": [
- 2614,
- 2631
+ 2649,
+ 2666
],
"loc": {
"start": {
- "line": 75,
+ "line": 76,
"column": 15
},
"end": {
- "line": 75,
+ "line": 76,
"column": 32
}
}
@@ -6086,16 +6228,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 2650,
- 2654
+ 2685,
+ 2689
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 16
},
"end": {
- "line": 76,
+ "line": 77,
"column": 20
}
}
@@ -6104,31 +6246,31 @@
"type": "Identifier",
"name": "onBeforeSort",
"range": [
- 2655,
- 2667
+ 2690,
+ 2702
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 21
},
"end": {
- "line": 76,
+ "line": 77,
"column": 33
}
}
},
"range": [
- 2650,
- 2667
+ 2685,
+ 2702
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 16
},
"end": {
- "line": 76,
+ "line": 77,
"column": 33
}
}
@@ -6137,31 +6279,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2668,
- 2672
+ 2703,
+ 2707
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 34
},
"end": {
- "line": 76,
+ "line": 77,
"column": 38
}
}
},
"range": [
- 2650,
- 2672
+ 2685,
+ 2707
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 16
},
"end": {
- "line": 76,
+ "line": 77,
"column": 38
}
}
@@ -6172,16 +6314,16 @@
"value": null,
"raw": "null",
"range": [
- 2673,
- 2677
+ 2708,
+ 2712
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 39
},
"end": {
- "line": 76,
+ "line": 77,
"column": 43
}
}
@@ -6190,16 +6332,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2679,
- 2681
+ 2714,
+ 2716
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 45
},
"end": {
- "line": 76,
+ "line": 77,
"column": 47
}
}
@@ -6214,16 +6356,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 2683,
- 2687
+ 2718,
+ 2722
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 49
},
"end": {
- "line": 76,
+ "line": 77,
"column": 53
}
}
@@ -6232,31 +6374,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 2688,
- 2691
+ 2723,
+ 2726
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 54
},
"end": {
- "line": 76,
+ "line": 77,
"column": 57
}
}
},
"range": [
- 2683,
- 2691
+ 2718,
+ 2726
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 49
},
"end": {
- "line": 76,
+ "line": 77,
"column": 57
}
}
@@ -6265,94 +6407,94 @@
"type": "Identifier",
"name": "sortColumn",
"range": [
- 2692,
- 2702
+ 2727,
+ 2737
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 58
},
"end": {
- "line": 76,
+ "line": 77,
"column": 68
}
}
},
"range": [
- 2683,
- 2702
+ 2718,
+ 2737
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 49
},
"end": {
- "line": 76,
+ "line": 77,
"column": 68
}
}
}
],
"range": [
- 2650,
- 2703
+ 2685,
+ 2738
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 16
},
"end": {
- "line": 76,
+ "line": 77,
"column": 69
}
}
},
"range": [
- 2650,
- 2704
+ 2685,
+ 2739
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 16
},
"end": {
- "line": 76,
+ "line": 77,
"column": 70
}
}
}
],
"range": [
- 2632,
- 2718
+ 2667,
+ 2753
],
"loc": {
"start": {
- "line": 75,
+ "line": 76,
"column": 33
},
"end": {
- "line": 77,
+ "line": 78,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2611,
- 2718
+ 2646,
+ 2753
],
"loc": {
"start": {
- "line": 75,
+ "line": 76,
"column": 12
},
"end": {
- "line": 77,
+ "line": 78,
"column": 13
}
},
@@ -6361,16 +6503,16 @@
"type": "Block",
"value": "** sort behaviour for paging **",
"range": [
- 2732,
- 2767
+ 2767,
+ 2802
],
"loc": {
"start": {
- "line": 79,
+ "line": 80,
"column": 12
},
"end": {
- "line": 79,
+ "line": 80,
"column": 47
}
}
@@ -6386,16 +6528,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2783,
- 2785
+ 2818,
+ 2820
],
"loc": {
"start": {
- "line": 80,
+ "line": 81,
"column": 15
},
"end": {
- "line": 80,
+ "line": 81,
"column": 17
}
}
@@ -6404,31 +6546,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 2786,
- 2792
+ 2821,
+ 2827
],
"loc": {
"start": {
- "line": 80,
+ "line": 81,
"column": 18
},
"end": {
- "line": 80,
+ "line": 81,
"column": 24
}
}
},
"range": [
- 2783,
- 2792
+ 2818,
+ 2827
],
"loc": {
"start": {
- "line": 80,
+ "line": 81,
"column": 15
},
"end": {
- "line": 80,
+ "line": 81,
"column": 24
}
}
@@ -6452,16 +6594,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2811,
- 2813
+ 2846,
+ 2848
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 18
}
}
@@ -6470,31 +6612,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 2814,
- 2821
+ 2849,
+ 2856
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 19
},
"end": {
- "line": 81,
+ "line": 82,
"column": 26
}
}
},
"range": [
- 2811,
- 2821
+ 2846,
+ 2856
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 26
}
}
@@ -6505,32 +6647,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 2822,
- 2830
+ 2857,
+ 2865
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 27
},
"end": {
- "line": 81,
+ "line": 82,
"column": 35
}
}
}
],
"range": [
- 2811,
- 2831
+ 2846,
+ 2866
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 36
}
}
@@ -6539,94 +6681,94 @@
"type": "Identifier",
"name": "disable",
"range": [
- 2832,
- 2839
+ 2867,
+ 2874
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 37
},
"end": {
- "line": 81,
+ "line": 82,
"column": 44
}
}
},
"range": [
- 2811,
- 2839
+ 2846,
+ 2874
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 44
}
}
},
"arguments": [],
"range": [
- 2811,
- 2841
+ 2846,
+ 2876
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 46
}
}
},
"range": [
- 2811,
- 2842
+ 2846,
+ 2877
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 16
},
"end": {
- "line": 81,
+ "line": 82,
"column": 47
}
}
}
],
"range": [
- 2793,
- 2856
+ 2828,
+ 2891
],
"loc": {
"start": {
- "line": 80,
+ "line": 81,
"column": 25
},
"end": {
- "line": 82,
+ "line": 83,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2780,
- 2856
+ 2815,
+ 2891
],
"loc": {
"start": {
- "line": 80,
+ "line": 81,
"column": 12
},
"end": {
- "line": 82,
+ "line": 83,
"column": 13
}
},
@@ -6635,16 +6777,16 @@
"type": "Block",
"value": "** sort behaviour for paging **",
"range": [
- 2732,
- 2767
+ 2767,
+ 2802
],
"loc": {
"start": {
- "line": 79,
+ "line": 80,
"column": 12
},
"end": {
- "line": 79,
+ "line": 80,
"column": 47
}
}
@@ -6653,16 +6795,16 @@
}
],
"range": [
- 2597,
- 2866
+ 2632,
+ 2901
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 42
},
"end": {
- "line": 83,
+ "line": 84,
"column": 9
}
}
@@ -6670,46 +6812,46 @@
"generator": false,
"expression": false,
"range": [
- 2587,
- 2866
+ 2622,
+ 2901
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 32
},
"end": {
- "line": 83,
+ "line": 84,
"column": 9
}
}
},
"range": [
- 2563,
- 2866
+ 2598,
+ 2901
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 8
},
"end": {
- "line": 83,
+ "line": 84,
"column": 9
}
}
},
"range": [
- 2563,
- 2867
+ 2598,
+ 2902
],
"loc": {
"start": {
- "line": 74,
+ "line": 75,
"column": 8
},
"end": {
- "line": 83,
+ "line": 84,
"column": 10
}
},
@@ -6718,16 +6860,16 @@
"type": "Block",
"value": "** SortableTable callbacks **",
"range": [
- 2521,
- 2554
+ 2556,
+ 2589
],
"loc": {
"start": {
- "line": 73,
+ "line": 74,
"column": 8
},
"end": {
- "line": 73,
+ "line": 74,
"column": 41
}
}
@@ -6748,16 +6890,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2877,
- 2881
+ 2912,
+ 2916
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 8
},
"end": {
- "line": 85,
+ "line": 86,
"column": 12
}
}
@@ -6766,31 +6908,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 2882,
- 2885
+ 2917,
+ 2920
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 13
},
"end": {
- "line": 85,
+ "line": 86,
"column": 16
}
}
},
"range": [
- 2877,
- 2885
+ 2912,
+ 2920
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 8
},
"end": {
- "line": 85,
+ "line": 86,
"column": 16
}
}
@@ -6799,31 +6941,31 @@
"type": "Identifier",
"name": "onsort",
"range": [
- 2886,
- 2892
+ 2921,
+ 2927
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 17
},
"end": {
- "line": 85,
+ "line": 86,
"column": 23
}
}
},
"range": [
- 2877,
- 2892
+ 2912,
+ 2927
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 8
},
"end": {
- "line": 85,
+ "line": 86,
"column": 23
}
}
@@ -6847,16 +6989,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 2919,
- 2923
+ 2954,
+ 2958
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 12
},
"end": {
- "line": 86,
+ "line": 87,
"column": 16
}
}
@@ -6865,31 +7007,31 @@
"type": "Identifier",
"name": "sorted",
"range": [
- 2924,
- 2930
+ 2959,
+ 2965
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 17
},
"end": {
- "line": 86,
+ "line": 87,
"column": 23
}
}
},
"range": [
- 2919,
- 2930
+ 2954,
+ 2965
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 12
},
"end": {
- "line": 86,
+ "line": 87,
"column": 23
}
}
@@ -6899,3261 +7041,64 @@
"value": true,
"raw": "true",
"range": [
- 2933,
- 2937
+ 2968,
+ 2972
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 26
},
"end": {
- "line": 86,
+ "line": 87,
"column": 30
}
}
},
"range": [
- 2919,
- 2937
+ 2954,
+ 2972
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 12
},
"end": {
- "line": 86,
+ "line": 87,
"column": 30
}
}
},
"range": [
- 2919,
- 2938
+ 2954,
+ 2973
],
"loc": {
"start": {
- "line": 86,
+ "line": 87,
"column": 12
},
"end": {
- "line": 86,
+ "line": 87,
"column": 31
}
},
- "trailingComments": [
- {
- "type": "Line",
- "value": "rows alternating bg issue",
- "range": [
- 2952,
- 2979
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 12
- },
- "end": {
- "line": 88,
- "column": 39
- }
- }
- },
- {
- "type": "Line",
- "value": " TODO: move into AlternateRows component",
- "range": [
- 2992,
- 3034
- ],
- "loc": {
- "start": {
- "line": 89,
- "column": 12
- },
- "end": {
- "line": 89,
- "column": 54
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3050,
- 3052
- ],
- "loc": {
- "start": {
- "line": 90,
- "column": 15
- },
- "end": {
- "line": 90,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 3053,
- 3066
- ],
- "loc": {
- "start": {
- "line": 90,
- "column": 18
- },
- "end": {
- "line": 90,
- "column": 31
- }
- }
- },
- "range": [
- 3050,
- 3066
- ],
- "loc": {
- "start": {
- "line": 90,
- "column": 15
- },
- "end": {
- "line": 90,
- "column": 31
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 3089,
- 3093
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 20
- },
- "end": {
- "line": 91,
- "column": 24
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3096,
- 3098
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 27
- },
- "end": {
- "line": 91,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 3099,
- 3102
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 30
- },
- "end": {
- "line": 91,
- "column": 33
- }
- }
- },
- "range": [
- 3096,
- 3102
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 27
- },
- "end": {
- "line": 91,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 3103,
- 3107
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 34
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- },
- "range": [
- 3096,
- 3107
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 27
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- },
- "range": [
- 3089,
- 3107
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 20
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "c",
- "range": [
- 3109,
- 3110
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 40
- },
- "end": {
- "line": 91,
- "column": 41
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 3113,
- 3114
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 44
- },
- "end": {
- "line": 91,
- "column": 45
- }
- }
- },
- "range": [
- 3109,
- 3114
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 40
- },
- "end": {
- "line": 91,
- "column": 45
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 3085,
- 3115
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 16
- },
- "end": {
- "line": 91,
- "column": 46
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "setClass",
- "range": [
- 3137,
- 3145
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 20
- },
- "end": {
- "line": 93,
- "column": 28
- }
- }
- },
- "init": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "row",
- "range": [
- 3157,
- 3160
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 40
- },
- "end": {
- "line": 93,
- "column": 43
- }
- }
- },
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3162,
- 3163
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 45
- },
- "end": {
- "line": 93,
- "column": 46
- }
- }
- },
- {
- "type": "Identifier",
- "name": "removeOnly",
- "range": [
- 3165,
- 3175
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 48
- },
- "end": {
- "line": 93,
- "column": 58
- }
- }
- }
- ],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Types",
- "range": [
- 3201,
- 3206
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 23
- },
- "end": {
- "line": 94,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isUndef",
- "range": [
- 3207,
- 3214
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 29
- },
- "end": {
- "line": 94,
- "column": 36
- }
- }
- },
- "range": [
- 3201,
- 3214
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 23
- },
- "end": {
- "line": 94,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "removeOnly",
- "range": [
- 3215,
- 3225
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 37
- },
- "end": {
- "line": 94,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 3201,
- 3226
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 23
- },
- "end": {
- "line": 94,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "removeOnly",
- "range": [
- 3253,
- 3263
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 24
- },
- "end": {
- "line": 95,
- "column": 34
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 3266,
- 3271
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 37
- },
- "end": {
- "line": 95,
- "column": 42
- }
- }
- },
- "range": [
- 3253,
- 3271
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 24
- },
- "end": {
- "line": 95,
- "column": 42
- }
- }
- },
- "range": [
- 3253,
- 3272
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 24
- },
- "end": {
- "line": 95,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 3227,
- 3294
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 49
- },
- "end": {
- "line": 96,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 3198,
- 3294
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 20
- },
- "end": {
- "line": 96,
- "column": 21
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "altRows",
- "range": [
- 3319,
- 3326
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 24
- },
- "end": {
- "line": 97,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3329,
- 3331
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 34
- },
- "end": {
- "line": 97,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 3332,
- 3339
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 37
- },
- "end": {
- "line": 97,
- "column": 44
- }
- }
- },
- "range": [
- 3329,
- 3339
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 34
- },
- "end": {
- "line": 97,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "alternateRows",
- "raw": "'alternateRows'",
- "range": [
- 3340,
- 3355
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 45
- },
- "end": {
- "line": 97,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 3329,
- 3356
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 34
- },
- "end": {
- "line": 97,
- "column": 61
- }
- }
- },
- "range": [
- 3319,
- 3356
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 24
- },
- "end": {
- "line": 97,
- "column": 61
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "oddCls",
- "range": [
- 3382,
- 3388
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 24
- },
- "end": {
- "line": 98,
- "column": 30
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "altRows",
- "range": [
- 3391,
- 3398
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 33
- },
- "end": {
- "line": 98,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "oddCss",
- "range": [
- 3399,
- 3405
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 41
- },
- "end": {
- "line": 98,
- "column": 47
- }
- }
- },
- "range": [
- 3391,
- 3405
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 33
- },
- "end": {
- "line": 98,
- "column": 47
- }
- }
- },
- "range": [
- 3382,
- 3405
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 24
- },
- "end": {
- "line": 98,
- "column": 47
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "evenCls",
- "range": [
- 3431,
- 3438
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 24
- },
- "end": {
- "line": 99,
- "column": 31
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "altRows",
- "range": [
- 3441,
- 3448
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 34
- },
- "end": {
- "line": 99,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "evenCss",
- "range": [
- 3449,
- 3456
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 42
- },
- "end": {
- "line": 99,
- "column": 49
- }
- }
- },
- "range": [
- 3441,
- 3456
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 34
- },
- "end": {
- "line": 99,
- "column": 49
- }
- }
- },
- "range": [
- 3431,
- 3456
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 24
- },
- "end": {
- "line": 99,
- "column": 49
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 3315,
- 3457
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 20
- },
- "end": {
- "line": 99,
- "column": 50
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 3478,
- 3481
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeClass",
- "range": [
- 3482,
- 3493
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 24
- },
- "end": {
- "line": 100,
- "column": 35
- }
- }
- },
- "range": [
- 3478,
- 3493
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "row",
- "range": [
- 3494,
- 3497
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 36
- },
- "end": {
- "line": 100,
- "column": 39
- }
- }
- },
- {
- "type": "Identifier",
- "name": "oddCls",
- "range": [
- 3499,
- 3505
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 41
- },
- "end": {
- "line": 100,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 3478,
- 3506
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 48
- }
- }
- },
- "range": [
- 3478,
- 3507
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 49
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 3528,
- 3531
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 20
- },
- "end": {
- "line": 101,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeClass",
- "range": [
- 3532,
- 3543
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 24
- },
- "end": {
- "line": 101,
- "column": 35
- }
- }
- },
- "range": [
- 3528,
- 3543
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 20
- },
- "end": {
- "line": 101,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "row",
- "range": [
- 3544,
- 3547
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 36
- },
- "end": {
- "line": 101,
- "column": 39
- }
- }
- },
- {
- "type": "Identifier",
- "name": "evenCls",
- "range": [
- 3549,
- 3556
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 41
- },
- "end": {
- "line": 101,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 3528,
- 3557
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 20
- },
- "end": {
- "line": 101,
- "column": 49
- }
- }
- },
- "range": [
- 3528,
- 3558
- ],
- "loc": {
- "start": {
- "line": 101,
- "column": 20
- },
- "end": {
- "line": 101,
- "column": 50
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "Identifier",
- "name": "removeOnly",
- "range": [
- 3584,
- 3594
- ],
- "loc": {
- "start": {
- "line": 103,
- "column": 24
- },
- "end": {
- "line": 103,
- "column": 34
- }
- }
- },
- "prefix": true,
- "range": [
- 3583,
- 3594
- ],
- "loc": {
- "start": {
- "line": 103,
- "column": 23
- },
- "end": {
- "line": 103,
- "column": 34
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 3621,
- 3624
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 24
- },
- "end": {
- "line": 104,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "addClass",
- "range": [
- 3625,
- 3633
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 28
- },
- "end": {
- "line": 104,
- "column": 36
- }
- }
- },
- "range": [
- 3621,
- 3633
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 24
- },
- "end": {
- "line": 104,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "row",
- "range": [
- 3634,
- 3637
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 37
- },
- "end": {
- "line": 104,
- "column": 40
- }
- }
- },
- {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": "%",
- "left": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3639,
- 3640
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 42
- },
- "end": {
- "line": 104,
- "column": 43
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 2,
- "raw": "2",
- "range": [
- 3643,
- 3644
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 46
- },
- "end": {
- "line": 104,
- "column": 47
- }
- }
- },
- "range": [
- 3639,
- 3644
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 42
- },
- "end": {
- "line": 104,
- "column": 47
- }
- }
- },
- "consequent": {
- "type": "Identifier",
- "name": "oddCls",
- "range": [
- 3647,
- 3653
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 50
- },
- "end": {
- "line": 104,
- "column": 56
- }
- }
- },
- "alternate": {
- "type": "Identifier",
- "name": "evenCls",
- "range": [
- 3656,
- 3663
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 59
- },
- "end": {
- "line": 104,
- "column": 66
- }
- }
- },
- "range": [
- 3639,
- 3663
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 42
- },
- "end": {
- "line": 104,
- "column": 66
- }
- }
- }
- ],
- "range": [
- 3621,
- 3664
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 24
- },
- "end": {
- "line": 104,
- "column": 67
- }
- }
- },
- "range": [
- 3621,
- 3665
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 24
- },
- "end": {
- "line": 104,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 3595,
- 3687
- ],
- "loc": {
- "start": {
- "line": 103,
- "column": 35
- },
- "end": {
- "line": 105,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 3580,
- 3687
- ],
- "loc": {
- "start": {
- "line": 103,
- "column": 20
- },
- "end": {
- "line": 105,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 3176,
- 3705
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 59
- },
- "end": {
- "line": 106,
- "column": 17
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 3148,
- 3705
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 31
- },
- "end": {
- "line": 106,
- "column": 17
- }
- }
- },
- "range": [
- 3137,
- 3705
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 20
- },
- "end": {
- "line": 106,
- "column": 17
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 3133,
- 3706
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 16
- },
- "end": {
- "line": 106,
- "column": 18
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3733,
- 3734
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 25
- },
- "end": {
- "line": 108,
- "column": 26
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3737,
- 3739
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 29
- },
- "end": {
- "line": 108,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 3740,
- 3746
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 32
- },
- "end": {
- "line": 108,
- "column": 38
- }
- }
- },
- "range": [
- 3737,
- 3746
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 29
- },
- "end": {
- "line": 108,
- "column": 38
- }
- }
- },
- "range": [
- 3733,
- 3746
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 25
- },
- "end": {
- "line": 108,
- "column": 38
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 3729,
- 3746
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 21
- },
- "end": {
- "line": 108,
- "column": 38
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3748,
- 3749
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 40
- },
- "end": {
- "line": 108,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3752,
- 3754
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 44
- },
- "end": {
- "line": 108,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbRows",
- "range": [
- 3755,
- 3761
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 47
- },
- "end": {
- "line": 108,
- "column": 53
- }
- }
- },
- "range": [
- 3752,
- 3761
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 44
- },
- "end": {
- "line": 108,
- "column": 53
- }
- }
- },
- "range": [
- 3748,
- 3761
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 40
- },
- "end": {
- "line": 108,
- "column": 53
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3763,
- 3764
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 55
- },
- "end": {
- "line": 108,
- "column": 56
- }
- }
- },
- "prefix": false,
- "range": [
- 3763,
- 3766
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 55
- },
- "end": {
- "line": 108,
- "column": 58
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 3793,
- 3803
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 24
- },
- "end": {
- "line": 109,
- "column": 34
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 3806,
- 3810
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 37
- },
- "end": {
- "line": 109,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3811,
- 3812
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 42
- },
- "end": {
- "line": 109,
- "column": 43
- }
- }
- },
- "range": [
- 3806,
- 3813
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 37
- },
- "end": {
- "line": 109,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 3814,
- 3826
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 45
- },
- "end": {
- "line": 109,
- "column": 57
- }
- }
- },
- "range": [
- 3806,
- 3826
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 37
- },
- "end": {
- "line": 109,
- "column": 57
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "validRow",
- "raw": "'validRow'",
- "range": [
- 3827,
- 3837
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 58
- },
- "end": {
- "line": 109,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 3806,
- 3838
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 37
- },
- "end": {
- "line": 109,
- "column": 69
- }
- }
- },
- "range": [
- 3793,
- 3838
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 24
- },
- "end": {
- "line": 109,
- "column": 69
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 3789,
- 3839
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 20
- },
- "end": {
- "line": 109,
- "column": 70
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3863,
- 3865
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 23
- },
- "end": {
- "line": 110,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 3866,
- 3872
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 26
- },
- "end": {
- "line": 110,
- "column": 32
- }
- }
- },
- "range": [
- 3863,
- 3872
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 23
- },
- "end": {
- "line": 110,
- "column": 32
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 3876,
- 3880
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 36
- },
- "end": {
- "line": 110,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3881,
- 3882
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 41
- },
- "end": {
- "line": 110,
- "column": 42
- }
- }
- },
- "range": [
- 3876,
- 3883
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 36
- },
- "end": {
- "line": 110,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "style",
- "range": [
- 3884,
- 3889
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 44
- },
- "end": {
- "line": 110,
- "column": 49
- }
- }
- },
- "range": [
- 3876,
- 3889
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 36
- },
- "end": {
- "line": 110,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "display",
- "range": [
- 3890,
- 3897
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 50
- },
- "end": {
- "line": 110,
- "column": 57
- }
- }
- },
- "range": [
- 3876,
- 3897
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 36
- },
- "end": {
- "line": 110,
- "column": 57
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 3902,
- 3904
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 62
- },
- "end": {
- "line": 110,
- "column": 64
- }
- }
- },
- "range": [
- 3876,
- 3904
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 36
- },
- "end": {
- "line": 110,
- "column": 64
- }
- }
- },
- "range": [
- 3863,
- 3904
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 23
- },
- "end": {
- "line": 110,
- "column": 64
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "setClass",
- "range": [
- 3931,
- 3939
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 24
- },
- "end": {
- "line": 111,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 3940,
- 3944
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 33
- },
- "end": {
- "line": 111,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 3945,
- 3946
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 38
- },
- "end": {
- "line": 111,
- "column": 39
- }
- }
- },
- "range": [
- 3940,
- 3947
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 33
- },
- "end": {
- "line": 111,
- "column": 40
- }
- }
- },
- {
- "type": "Identifier",
- "name": "c",
- "range": [
- 3949,
- 3950
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 42
- },
- "end": {
- "line": 111,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 3931,
- 3951
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 24
- },
- "end": {
- "line": 111,
- "column": 44
- }
- }
- },
- "range": [
- 3931,
- 3952
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 24
- },
- "end": {
- "line": 111,
- "column": 45
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "c",
- "range": [
- 3977,
- 3978
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 24
- },
- "end": {
- "line": 112,
- "column": 25
- }
- }
- },
- "prefix": false,
- "range": [
- 3977,
- 3980
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 24
- },
- "end": {
- "line": 112,
- "column": 27
- }
- }
- },
- "range": [
- 3977,
- 3981
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 24
- },
- "end": {
- "line": 112,
- "column": 28
- }
- }
- }
- ],
- "range": [
- 3905,
- 4003
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 65
- },
- "end": {
- "line": 113,
- "column": 21
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 4039,
- 4049
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 28
- },
- "end": {
- "line": 114,
- "column": 38
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "true",
- "raw": "'true'",
- "range": [
- 4052,
- 4058
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 41
- },
- "end": {
- "line": 114,
- "column": 47
- }
- }
- },
- "range": [
- 4039,
- 4058
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 28
- },
- "end": {
- "line": 114,
- "column": 47
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 4062,
- 4072
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 51
- },
- "end": {
- "line": 114,
- "column": 61
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 4075,
- 4079
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 64
- },
- "end": {
- "line": 114,
- "column": 68
- }
- }
- },
- "range": [
- 4062,
- 4079
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 51
- },
- "end": {
- "line": 114,
- "column": 68
- }
- }
- },
- "range": [
- 4039,
- 4079
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 28
- },
- "end": {
- "line": 114,
- "column": 68
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 4112,
- 4116
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 28
- },
- "end": {
- "line": 115,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 4117,
- 4118
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 33
- },
- "end": {
- "line": 115,
- "column": 34
- }
- }
- },
- "range": [
- 4112,
- 4119
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 28
- },
- "end": {
- "line": 115,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "style",
- "range": [
- 4120,
- 4125
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 36
- },
- "end": {
- "line": 115,
- "column": 41
- }
- }
- },
- "range": [
- 4112,
- 4125
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 28
- },
- "end": {
- "line": 115,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "display",
- "range": [
- 4126,
- 4133
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 42
- },
- "end": {
- "line": 115,
- "column": 49
- }
- }
- },
- "range": [
- 4112,
- 4133
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 28
- },
- "end": {
- "line": 115,
- "column": 49
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 4138,
- 4140
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 54
- },
- "end": {
- "line": 115,
- "column": 56
- }
- }
- },
- "range": [
- 4112,
- 4140
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 28
- },
- "end": {
- "line": 115,
- "column": 56
- }
- }
- },
- "range": [
- 4038,
- 4140
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 27
- },
- "end": {
- "line": 115,
- "column": 56
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "setClass",
- "range": [
- 4171,
- 4179
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 28
- },
- "end": {
- "line": 116,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 4180,
- 4184
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 37
- },
- "end": {
- "line": 116,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 4185,
- 4186
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 42
- },
- "end": {
- "line": 116,
- "column": 43
- }
- }
- },
- "range": [
- 4180,
- 4187
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 37
- },
- "end": {
- "line": 116,
- "column": 44
- }
- }
- },
- {
- "type": "Identifier",
- "name": "c",
- "range": [
- 4189,
- 4190
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 46
- },
- "end": {
- "line": 116,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 4171,
- 4191
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 28
- },
- "end": {
- "line": 116,
- "column": 48
- }
- }
- },
- "range": [
- 4171,
- 4192
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 28
- },
- "end": {
- "line": 116,
- "column": 49
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "c",
- "range": [
- 4221,
- 4222
- ],
- "loc": {
- "start": {
- "line": 117,
- "column": 28
- },
- "end": {
- "line": 117,
- "column": 29
- }
- }
- },
- "prefix": false,
- "range": [
- 4221,
- 4224
- ],
- "loc": {
- "start": {
- "line": 117,
- "column": 28
- },
- "end": {
- "line": 117,
- "column": 31
- }
- }
- },
- "range": [
- 4221,
- 4225
- ],
- "loc": {
- "start": {
- "line": 117,
- "column": 28
- },
- "end": {
- "line": 117,
- "column": 32
- }
- }
- }
- ],
- "range": [
- 4141,
- 4251
- ],
- "loc": {
- "start": {
- "line": 115,
- "column": 57
- },
- "end": {
- "line": 118,
- "column": 25
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "setClass",
- "range": [
- 4287,
- 4295
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 28
- },
- "end": {
- "line": 119,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 4296,
- 4300
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 37
- },
- "end": {
- "line": 119,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 4301,
- 4302
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 42
- },
- "end": {
- "line": 119,
- "column": 43
- }
- }
- },
- "range": [
- 4296,
- 4303
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 37
- },
- "end": {
- "line": 119,
- "column": 44
- }
- }
- },
- {
- "type": "Identifier",
- "name": "c",
- "range": [
- 4305,
- 4306
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 46
- },
- "end": {
- "line": 119,
- "column": 47
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 4308,
- 4312
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 49
- },
- "end": {
- "line": 119,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 4287,
- 4313
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 28
- },
- "end": {
- "line": 119,
- "column": 54
- }
- }
- },
- "range": [
- 4287,
- 4314
- ],
- "loc": {
- "start": {
- "line": 119,
- "column": 28
- },
- "end": {
- "line": 119,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 4257,
- 4340
- ],
- "loc": {
- "start": {
- "line": 118,
- "column": 31
- },
- "end": {
- "line": 120,
- "column": 25
- }
- }
- },
- "range": [
- 4035,
- 4340
- ],
- "loc": {
- "start": {
- "line": 114,
- "column": 24
- },
- "end": {
- "line": 120,
- "column": 25
- }
- }
- }
- ],
- "range": [
- 4009,
- 4362
- ],
- "loc": {
- "start": {
- "line": 113,
- "column": 27
- },
- "end": {
- "line": 121,
- "column": 21
- }
- }
- },
- "range": [
- 3860,
- 4362
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 20
- },
- "end": {
- "line": 121,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 3767,
- 4380
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 59
- },
- "end": {
- "line": 122,
- "column": 17
- }
- }
- },
- "range": [
- 3724,
- 4380
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 16
- },
- "end": {
- "line": 122,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 3067,
- 4394
- ],
- "loc": {
- "start": {
- "line": 90,
- "column": 32
- },
- "end": {
- "line": 123,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 3047,
- 4394
- ],
- "loc": {
- "start": {
- "line": 90,
- "column": 12
- },
- "end": {
- "line": 123,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "rows alternating bg issue",
- "range": [
- 2952,
- 2979
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 12
- },
- "end": {
- "line": 88,
- "column": 39
- }
- }
- },
- {
- "type": "Line",
- "value": " TODO: move into AlternateRows component",
- "range": [
- 2992,
- 3034
- ],
- "loc": {
- "start": {
- "line": 89,
- "column": 12
- },
- "end": {
- "line": 89,
- "column": 54
- }
- }
- }
- ],
"trailingComments": [
{
"type": "Line",
"value": "sort behaviour for paging",
"range": [
- 4407,
- 4434
+ 2987,
+ 3014
],
"loc": {
"start": {
- "line": 124,
+ "line": 89,
"column": 12
},
"end": {
- "line": 124,
+ "line": 89,
"column": 39
}
}
@@ -10169,16 +7114,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4450,
- 4452
+ 3030,
+ 3032
],
"loc": {
"start": {
- "line": 125,
+ "line": 90,
"column": 15
},
"end": {
- "line": 125,
+ "line": 90,
"column": 17
}
}
@@ -10187,31 +7132,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 4453,
- 4459
+ 3033,
+ 3039
],
"loc": {
"start": {
- "line": 125,
+ "line": 90,
"column": 18
},
"end": {
- "line": 125,
+ "line": 90,
"column": 24
}
}
},
"range": [
- 4450,
- 4459
+ 3030,
+ 3039
],
"loc": {
"start": {
- "line": 125,
+ "line": 90,
"column": 15
},
"end": {
- "line": 125,
+ "line": 90,
"column": 24
}
}
@@ -10228,16 +7173,16 @@
"type": "Identifier",
"name": "paginator",
"range": [
- 4482,
- 4491
+ 3062,
+ 3071
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 20
},
"end": {
- "line": 126,
+ "line": 91,
"column": 29
}
}
@@ -10251,16 +7196,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4494,
- 4496
+ 3074,
+ 3076
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 32
},
"end": {
- "line": 126,
+ "line": 91,
"column": 34
}
}
@@ -10269,31 +7214,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 4497,
- 4504
+ 3077,
+ 3084
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 35
},
"end": {
- "line": 126,
+ "line": 91,
"column": 42
}
}
},
"range": [
- 4494,
- 4504
+ 3074,
+ 3084
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 32
},
"end": {
- "line": 126,
+ "line": 91,
"column": 42
}
}
@@ -10304,47 +7249,47 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 4505,
- 4513
+ 3085,
+ 3093
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 43
},
"end": {
- "line": 126,
+ "line": 91,
"column": 51
}
}
}
],
"range": [
- 4494,
- 4514
+ 3074,
+ 3094
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 32
},
"end": {
- "line": 126,
+ "line": 91,
"column": 52
}
}
},
"range": [
- 4482,
- 4514
+ 3062,
+ 3094
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 20
},
"end": {
- "line": 126,
+ "line": 91,
"column": 52
}
}
@@ -10352,16 +7297,16 @@
],
"kind": "let",
"range": [
- 4478,
- 4515
+ 3058,
+ 3095
],
"loc": {
"start": {
- "line": 126,
+ "line": 91,
"column": 16
},
"end": {
- "line": 126,
+ "line": 91,
"column": 53
}
},
@@ -10370,16 +7315,16 @@
"type": "Line",
"value": " recalculate valid rows index as sorting may have change it",
"range": [
- 4532,
- 4593
+ 3112,
+ 3173
],
"loc": {
"start": {
- "line": 127,
+ "line": 92,
"column": 16
},
"end": {
- "line": 127,
+ "line": 92,
"column": 77
}
}
@@ -10397,16 +7342,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4610,
- 4612
+ 3190,
+ 3192
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 16
},
"end": {
- "line": 128,
+ "line": 93,
"column": 18
}
}
@@ -10415,31 +7360,31 @@
"type": "Identifier",
"name": "getValidRows",
"range": [
- 4613,
- 4625
+ 3193,
+ 3205
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 19
},
"end": {
- "line": 128,
+ "line": 93,
"column": 31
}
}
},
"range": [
- 4610,
- 4625
+ 3190,
+ 3205
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 16
},
"end": {
- "line": 128,
+ "line": 93,
"column": 31
}
}
@@ -10450,47 +7395,47 @@
"value": true,
"raw": "true",
"range": [
- 4626,
- 4630
+ 3206,
+ 3210
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 32
},
"end": {
- "line": 128,
+ "line": 93,
"column": 36
}
}
}
],
"range": [
- 4610,
- 4631
+ 3190,
+ 3211
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 16
},
"end": {
- "line": 128,
+ "line": 93,
"column": 37
}
}
},
"range": [
- 4610,
- 4632
+ 3190,
+ 3212
],
"loc": {
"start": {
- "line": 128,
+ "line": 93,
"column": 16
},
"end": {
- "line": 128,
+ "line": 93,
"column": 38
}
},
@@ -10499,16 +7444,16 @@
"type": "Line",
"value": " recalculate valid rows index as sorting may have change it",
"range": [
- 4532,
- 4593
+ 3112,
+ 3173
],
"loc": {
"start": {
- "line": 127,
+ "line": 92,
"column": 16
},
"end": {
- "line": 127,
+ "line": 92,
"column": 77
}
}
@@ -10526,16 +7471,16 @@
"type": "Identifier",
"name": "paginator",
"range": [
- 4649,
- 4658
+ 3229,
+ 3238
],
"loc": {
"start": {
- "line": 129,
+ "line": 94,
"column": 16
},
"end": {
- "line": 129,
+ "line": 94,
"column": 25
}
}
@@ -10544,62 +7489,62 @@
"type": "Identifier",
"name": "enable",
"range": [
- 4659,
- 4665
+ 3239,
+ 3245
],
"loc": {
"start": {
- "line": 129,
+ "line": 94,
"column": 26
},
"end": {
- "line": 129,
+ "line": 94,
"column": 32
}
}
},
"range": [
- 4649,
- 4665
+ 3229,
+ 3245
],
"loc": {
"start": {
- "line": 129,
+ "line": 94,
"column": 16
},
"end": {
- "line": 129,
+ "line": 94,
"column": 32
}
}
},
"arguments": [],
"range": [
- 4649,
- 4667
+ 3229,
+ 3247
],
"loc": {
"start": {
- "line": 129,
+ "line": 94,
"column": 16
},
"end": {
- "line": 129,
+ "line": 94,
"column": 34
}
}
},
"range": [
- 4649,
- 4668
+ 3229,
+ 3248
],
"loc": {
"start": {
- "line": 129,
+ "line": 94,
"column": 16
},
"end": {
- "line": 129,
+ "line": 94,
"column": 35
}
}
@@ -10615,16 +7560,16 @@
"type": "Identifier",
"name": "paginator",
"range": [
- 4685,
- 4694
+ 3265,
+ 3274
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 16
},
"end": {
- "line": 130,
+ "line": 95,
"column": 25
}
}
@@ -10633,31 +7578,31 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 4695,
- 4702
+ 3275,
+ 3282
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 26
},
"end": {
- "line": 130,
+ "line": 95,
"column": 33
}
}
},
"range": [
- 4685,
- 4702
+ 3265,
+ 3282
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 16
},
"end": {
- "line": 130,
+ "line": 95,
"column": 33
}
}
@@ -10672,16 +7617,16 @@
"type": "Identifier",
"name": "paginator",
"range": [
- 4703,
- 4712
+ 3283,
+ 3292
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 34
},
"end": {
- "line": 130,
+ "line": 95,
"column": 43
}
}
@@ -10690,110 +7635,110 @@
"type": "Identifier",
"name": "getPage",
"range": [
- 4713,
- 4720
+ 3293,
+ 3300
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 44
},
"end": {
- "line": 130,
+ "line": 95,
"column": 51
}
}
},
"range": [
- 4703,
- 4720
+ 3283,
+ 3300
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 34
},
"end": {
- "line": 130,
+ "line": 95,
"column": 51
}
}
},
"arguments": [],
"range": [
- 4703,
- 4722
+ 3283,
+ 3302
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 34
},
"end": {
- "line": 130,
+ "line": 95,
"column": 53
}
}
}
],
"range": [
- 4685,
- 4723
+ 3265,
+ 3303
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 16
},
"end": {
- "line": 130,
+ "line": 95,
"column": 54
}
}
},
"range": [
- 4685,
- 4724
+ 3265,
+ 3304
],
"loc": {
"start": {
- "line": 130,
+ "line": 95,
"column": 16
},
"end": {
- "line": 130,
+ "line": 95,
"column": 55
}
}
}
],
"range": [
- 4460,
- 4738
+ 3040,
+ 3318
],
"loc": {
"start": {
- "line": 125,
+ "line": 90,
"column": 25
},
"end": {
- "line": 131,
+ "line": 96,
"column": 13
}
}
},
"alternate": null,
"range": [
- 4447,
- 4738
+ 3027,
+ 3318
],
"loc": {
"start": {
- "line": 125,
+ "line": 90,
"column": 12
},
"end": {
- "line": 131,
+ "line": 96,
"column": 13
}
},
@@ -10802,16 +7747,16 @@
"type": "Line",
"value": "sort behaviour for paging",
"range": [
- 4407,
- 4434
+ 2987,
+ 3014
],
"loc": {
"start": {
- "line": 124,
+ "line": 89,
"column": 12
},
"end": {
- "line": 124,
+ "line": 89,
"column": 39
}
}
@@ -10827,16 +7772,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 4755,
- 4759
+ 3335,
+ 3339
],
"loc": {
"start": {
- "line": 133,
+ "line": 98,
"column": 15
},
"end": {
- "line": 133,
+ "line": 98,
"column": 19
}
}
@@ -10845,31 +7790,31 @@
"type": "Identifier",
"name": "onAfterSort",
"range": [
- 4760,
- 4771
+ 3340,
+ 3351
],
"loc": {
"start": {
- "line": 133,
+ "line": 98,
"column": 20
},
"end": {
- "line": 133,
+ "line": 98,
"column": 31
}
}
},
"range": [
- 4755,
- 4771
+ 3335,
+ 3351
],
"loc": {
"start": {
- "line": 133,
+ "line": 98,
"column": 15
},
"end": {
- "line": 133,
+ "line": 98,
"column": 31
}
}
@@ -10891,16 +7836,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 4790,
- 4794
+ 3370,
+ 3374
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 16
},
"end": {
- "line": 134,
+ "line": 99,
"column": 20
}
}
@@ -10909,31 +7854,31 @@
"type": "Identifier",
"name": "onAfterSort",
"range": [
- 4795,
- 4806
+ 3375,
+ 3386
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 21
},
"end": {
- "line": 134,
+ "line": 99,
"column": 32
}
}
},
"range": [
- 4790,
- 4806
+ 3370,
+ 3386
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 16
},
"end": {
- "line": 134,
+ "line": 99,
"column": 32
}
}
@@ -10942,31 +7887,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 4807,
- 4811
+ 3387,
+ 3391
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 33
},
"end": {
- "line": 134,
+ "line": 99,
"column": 37
}
}
},
"range": [
- 4790,
- 4811
+ 3370,
+ 3391
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 16
},
"end": {
- "line": 134,
+ "line": 99,
"column": 37
}
}
@@ -10977,16 +7922,16 @@
"value": null,
"raw": "null",
"range": [
- 4812,
- 4816
+ 3392,
+ 3396
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 38
},
"end": {
- "line": 134,
+ "line": 99,
"column": 42
}
}
@@ -10995,16 +7940,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4818,
- 4820
+ 3398,
+ 3400
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 44
},
"end": {
- "line": 134,
+ "line": 99,
"column": 46
}
}
@@ -11019,16 +7964,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 4822,
- 4826
+ 3402,
+ 3406
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 48
},
"end": {
- "line": 134,
+ "line": 99,
"column": 52
}
}
@@ -11037,31 +7982,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 4827,
- 4830
+ 3407,
+ 3410
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 53
},
"end": {
- "line": 134,
+ "line": 99,
"column": 56
}
}
},
"range": [
- 4822,
- 4830
+ 3402,
+ 3410
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 48
},
"end": {
- "line": 134,
+ "line": 99,
"column": 56
}
}
@@ -11070,110 +8015,363 @@
"type": "Identifier",
"name": "sortColumn",
"range": [
- 4831,
- 4841
+ 3411,
+ 3421
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 57
},
"end": {
- "line": 134,
+ "line": 99,
"column": 67
}
}
},
"range": [
- 4822,
- 4841
+ 3402,
+ 3421
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 48
},
"end": {
- "line": 134,
+ "line": 99,
"column": 67
}
}
}
],
"range": [
- 4790,
- 4842
+ 3370,
+ 3422
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 16
},
"end": {
- "line": 134,
+ "line": 99,
"column": 68
}
}
},
"range": [
- 4790,
- 4843
+ 3370,
+ 3423
],
"loc": {
"start": {
- "line": 134,
+ "line": 99,
"column": 16
},
"end": {
- "line": 134,
+ "line": 99,
"column": 69
}
}
}
],
"range": [
- 4772,
- 4857
+ 3352,
+ 3437
],
"loc": {
"start": {
- "line": 133,
+ "line": 98,
"column": 32
},
"end": {
- "line": 135,
+ "line": 100,
"column": 13
}
}
},
"alternate": null,
"range": [
- 4752,
- 4857
+ 3332,
+ 3437
],
"loc": {
"start": {
- "line": 133,
+ "line": 98,
"column": 12
},
"end": {
- "line": 135,
+ "line": 100,
"column": 13
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "adpt",
+ "range": [
+ 3451,
+ 3455
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 12
+ },
+ "end": {
+ "line": 102,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3456,
+ 3463
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 17
+ },
+ "end": {
+ "line": 102,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3451,
+ 3463
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 12
+ },
+ "end": {
+ "line": 102,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 3464,
+ 3468
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 25
+ },
+ "end": {
+ "line": 102,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3451,
+ 3468
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 12
+ },
+ "end": {
+ "line": 102,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "column-sorted",
+ "raw": "'column-sorted'",
+ "range": [
+ 3469,
+ 3484
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 30
+ },
+ "end": {
+ "line": 102,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3486,
+ 3488
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 47
+ },
+ "end": {
+ "line": 102,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "adpt",
+ "range": [
+ 3490,
+ 3494
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 51
+ },
+ "end": {
+ "line": 102,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "stt",
+ "range": [
+ 3495,
+ 3498
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 56
+ },
+ "end": {
+ "line": 102,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 3490,
+ 3498
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 51
+ },
+ "end": {
+ "line": 102,
+ "column": 59
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "sortColumn",
+ "range": [
+ 3499,
+ 3509
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 60
+ },
+ "end": {
+ "line": 102,
+ "column": 70
+ }
+ }
+ },
+ "range": [
+ 3490,
+ 3509
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 51
+ },
+ "end": {
+ "line": 102,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 3451,
+ 3510
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 12
+ },
+ "end": {
+ "line": 102,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 3451,
+ 3511
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 12
+ },
+ "end": {
+ "line": 102,
+ "column": 72
+ }
+ }
}
],
"range": [
- 2905,
- 4867
+ 2940,
+ 3521
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 36
},
"end": {
- "line": 136,
+ "line": 103,
"column": 9
}
}
@@ -11181,46 +8379,46 @@
"generator": false,
"expression": false,
"range": [
- 2895,
- 4867
+ 2930,
+ 3521
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 26
},
"end": {
- "line": 136,
+ "line": 103,
"column": 9
}
}
},
"range": [
- 2877,
- 4867
+ 2912,
+ 3521
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 8
},
"end": {
- "line": 136,
+ "line": 103,
"column": 9
}
}
},
"range": [
- 2877,
- 4868
+ 2912,
+ 3522
],
"loc": {
"start": {
- "line": 85,
+ "line": 86,
"column": 8
},
"end": {
- "line": 136,
+ "line": 103,
"column": 10
}
}
@@ -11236,16 +8434,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4878,
- 4882
+ 3532,
+ 3536
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 8
},
"end": {
- "line": 138,
+ "line": 105,
"column": 12
}
}
@@ -11254,31 +8452,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 4883,
- 4894
+ 3537,
+ 3548
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 13
},
"end": {
- "line": 138,
+ "line": 105,
"column": 24
}
}
},
"range": [
- 4878,
- 4894
+ 3532,
+ 3548
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 8
},
"end": {
- "line": 138,
+ "line": 105,
"column": 24
}
}
@@ -11288,62 +8486,62 @@
"value": true,
"raw": "true",
"range": [
- 4897,
- 4901
+ 3551,
+ 3555
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 27
},
"end": {
- "line": 138,
+ "line": 105,
"column": 31
}
}
},
"range": [
- 4878,
- 4901
+ 3532,
+ 3555
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 8
},
"end": {
- "line": 138,
+ "line": 105,
"column": 31
}
}
},
"range": [
- 4878,
- 4902
+ 3532,
+ 3556
],
"loc": {
"start": {
- "line": 138,
+ "line": 105,
"column": 8
},
"end": {
- "line": 138,
+ "line": 105,
"column": 32
}
}
}
],
"range": [
- 1933,
- 4908
+ 1968,
+ 3562
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 10
},
"end": {
- "line": 139,
+ "line": 106,
"column": 5
}
}
@@ -11351,16 +8549,16 @@
"generator": false,
"expression": false,
"range": [
- 1931,
- 4908
+ 1966,
+ 3562
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 8
},
"end": {
- "line": 139,
+ "line": 106,
"column": 5
}
}
@@ -11368,16 +8566,16 @@
"kind": "method",
"computed": false,
"range": [
- 1927,
- 4908
+ 1962,
+ 3562
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 4
},
"end": {
- "line": 139,
+ "line": 106,
"column": 5
}
},
@@ -11386,16 +8584,16 @@
"type": "Block",
"value": "*\n * Sort specified column\n * @param {Number} colIdx Column index\n * @param {Boolean} desc Optional: descending manner\n ",
"range": [
- 4914,
- 5054
+ 3568,
+ 3708
],
"loc": {
"start": {
- "line": 141,
+ "line": 108,
"column": 4
},
"end": {
- "line": 145,
+ "line": 112,
"column": 7
}
}
@@ -11409,16 +8607,16 @@
"type": "Identifier",
"name": "sortByColumnIndex",
"range": [
- 5059,
- 5076
+ 3713,
+ 3730
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 4
},
"end": {
- "line": 146,
+ "line": 113,
"column": 21
}
}
@@ -11431,16 +8629,16 @@
"type": "Identifier",
"name": "colIdx",
"range": [
- 5077,
- 5083
+ 3731,
+ 3737
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 22
},
"end": {
- "line": 146,
+ "line": 113,
"column": 28
}
}
@@ -11449,16 +8647,16 @@
"type": "Identifier",
"name": "desc",
"range": [
- 5085,
- 5089
+ 3739,
+ 3743
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 30
},
"end": {
- "line": 146,
+ "line": 113,
"column": 34
}
}
@@ -11480,16 +8678,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5100,
- 5104
+ 3754,
+ 3758
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 8
},
"end": {
- "line": 147,
+ "line": 114,
"column": 12
}
}
@@ -11498,31 +8696,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 5105,
- 5108
+ 3759,
+ 3762
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 13
},
"end": {
- "line": 147,
+ "line": 114,
"column": 16
}
}
},
"range": [
- 5100,
- 5108
+ 3754,
+ 3762
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 8
},
"end": {
- "line": 147,
+ "line": 114,
"column": 16
}
}
@@ -11531,31 +8729,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 5109,
- 5113
+ 3763,
+ 3767
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 17
},
"end": {
- "line": 147,
+ "line": 114,
"column": 21
}
}
},
"range": [
- 5100,
- 5113
+ 3754,
+ 3767
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 8
},
"end": {
- "line": 147,
+ "line": 114,
"column": 21
}
}
@@ -11565,16 +8763,16 @@
"type": "Identifier",
"name": "colIdx",
"range": [
- 5114,
- 5120
+ 3768,
+ 3774
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 22
},
"end": {
- "line": 147,
+ "line": 114,
"column": 28
}
}
@@ -11583,63 +8781,63 @@
"type": "Identifier",
"name": "desc",
"range": [
- 5122,
- 5126
+ 3776,
+ 3780
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 30
},
"end": {
- "line": 147,
+ "line": 114,
"column": 34
}
}
}
],
"range": [
- 5100,
- 5127
+ 3754,
+ 3781
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 8
},
"end": {
- "line": 147,
+ "line": 114,
"column": 35
}
}
},
"range": [
- 5100,
- 5128
+ 3754,
+ 3782
],
"loc": {
"start": {
- "line": 147,
+ "line": 114,
"column": 8
},
"end": {
- "line": 147,
+ "line": 114,
"column": 36
}
}
}
],
"range": [
- 5090,
- 5134
+ 3744,
+ 3788
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 35
},
"end": {
- "line": 148,
+ "line": 115,
"column": 5
}
}
@@ -11647,16 +8845,16 @@
"generator": false,
"expression": false,
"range": [
- 5076,
- 5134
+ 3730,
+ 3788
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 21
},
"end": {
- "line": 148,
+ "line": 115,
"column": 5
}
}
@@ -11664,16 +8862,16 @@
"kind": "method",
"computed": false,
"range": [
- 5059,
- 5134
+ 3713,
+ 3788
],
"loc": {
"start": {
- "line": 146,
+ "line": 113,
"column": 4
},
"end": {
- "line": 148,
+ "line": 115,
"column": 5
}
},
@@ -11682,16 +8880,16 @@
"type": "Block",
"value": "*\n * Sort specified column\n * @param {Number} colIdx Column index\n * @param {Boolean} desc Optional: descending manner\n ",
"range": [
- 4914,
- 5054
+ 3568,
+ 3708
],
"loc": {
"start": {
- "line": 141,
+ "line": 108,
"column": 4
},
"end": {
- "line": 145,
+ "line": 112,
"column": 7
}
}
@@ -11705,16 +8903,16 @@
"type": "Identifier",
"name": "overrideSortableTable",
"range": [
- 5140,
- 5161
+ 3794,
+ 3815
],
"loc": {
"start": {
- "line": 150,
+ "line": 117,
"column": 4
},
"end": {
- "line": 150,
+ "line": 117,
"column": 25
}
}
@@ -11735,16 +8933,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 5177,
- 5181
+ 3831,
+ 3835
],
"loc": {
"start": {
- "line": 151,
+ "line": 118,
"column": 12
},
"end": {
- "line": 151,
+ "line": 118,
"column": 16
}
}
@@ -11752,31 +8950,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 5184,
- 5188
+ 3838,
+ 3842
],
"loc": {
"start": {
- "line": 151,
+ "line": 118,
"column": 19
},
"end": {
- "line": 151,
+ "line": 118,
"column": 23
}
}
},
"range": [
- 5177,
- 5188
+ 3831,
+ 3842
],
"loc": {
"start": {
- "line": 151,
+ "line": 118,
"column": 12
},
"end": {
- "line": 151,
+ "line": 118,
"column": 23
}
}
@@ -11787,16 +8985,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5202,
- 5204
+ 3856,
+ 3858
],
"loc": {
"start": {
- "line": 152,
+ "line": 119,
"column": 12
},
"end": {
- "line": 152,
+ "line": 119,
"column": 14
}
}
@@ -11807,16 +9005,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5207,
- 5211
+ 3861,
+ 3865
],
"loc": {
"start": {
- "line": 152,
+ "line": 119,
"column": 17
},
"end": {
- "line": 152,
+ "line": 119,
"column": 21
}
}
@@ -11825,46 +9023,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5212,
- 5214
+ 3866,
+ 3868
],
"loc": {
"start": {
- "line": 152,
+ "line": 119,
"column": 22
},
"end": {
- "line": 152,
+ "line": 119,
"column": 24
}
}
},
"range": [
- 5207,
- 5214
+ 3861,
+ 3868
],
"loc": {
"start": {
- "line": 152,
+ "line": 119,
"column": 17
},
"end": {
- "line": 152,
+ "line": 119,
"column": 24
}
}
},
"range": [
- 5202,
- 5214
+ 3856,
+ 3868
],
"loc": {
"start": {
- "line": 152,
+ "line": 119,
"column": 12
},
"end": {
- "line": 152,
+ "line": 119,
"column": 24
}
}
@@ -11872,16 +9070,16 @@
],
"kind": "let",
"range": [
- 5173,
- 5215
+ 3827,
+ 3869
],
"loc": {
"start": {
- "line": 151,
+ "line": 118,
"column": 8
},
"end": {
- "line": 152,
+ "line": 119,
"column": 25
}
},
@@ -11890,16 +9088,16 @@
"type": "Block",
"value": "*\n * Overrides headerOnclick method in order to handle th event\n * @param {Object} e [description]\n ",
"range": [
- 5225,
- 5354
+ 3879,
+ 4008
],
"loc": {
"start": {
- "line": 154,
+ "line": 121,
"column": 8
},
"end": {
- "line": 157,
+ "line": 124,
"column": 11
}
}
@@ -11921,16 +9119,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 5363,
- 5376
+ 4017,
+ 4030
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 8
},
"end": {
- "line": 158,
+ "line": 125,
"column": 21
}
}
@@ -11939,31 +9137,31 @@
"type": "Identifier",
"name": "prototype",
"range": [
- 5377,
- 5386
+ 4031,
+ 4040
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 22
},
"end": {
- "line": 158,
+ "line": 125,
"column": 31
}
}
},
"range": [
- 5363,
- 5386
+ 4017,
+ 4040
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 8
},
"end": {
- "line": 158,
+ "line": 125,
"column": 31
}
}
@@ -11972,31 +9170,31 @@
"type": "Identifier",
"name": "headerOnclick",
"range": [
- 5387,
- 5400
+ 4041,
+ 4054
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 32
},
"end": {
- "line": 158,
+ "line": 125,
"column": 45
}
}
},
"range": [
- 5363,
- 5400
+ 4017,
+ 4054
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 8
},
"end": {
- "line": 158,
+ "line": 125,
"column": 45
}
}
@@ -12009,16 +9207,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 5412,
- 5415
+ 4066,
+ 4069
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 57
},
"end": {
- "line": 158,
+ "line": 125,
"column": 60
}
}
@@ -12039,16 +9237,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 5434,
- 5438
+ 4088,
+ 4092
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 16
},
"end": {
- "line": 159,
+ "line": 126,
"column": 20
}
}
@@ -12057,47 +9255,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 5439,
- 5450
+ 4093,
+ 4104
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 21
},
"end": {
- "line": 159,
+ "line": 126,
"column": 32
}
}
},
"range": [
- 5434,
- 5450
+ 4088,
+ 4104
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 16
},
"end": {
- "line": 159,
+ "line": 126,
"column": 32
}
}
},
"prefix": true,
"range": [
- 5433,
- 5450
+ 4087,
+ 4104
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 15
},
"end": {
- "line": 159,
+ "line": 126,
"column": 32
}
}
@@ -12109,48 +9307,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 5469,
- 5476
+ 4123,
+ 4130
],
"loc": {
"start": {
- "line": 160,
+ "line": 127,
"column": 16
},
"end": {
- "line": 160,
+ "line": 127,
"column": 23
}
}
}
],
"range": [
- 5451,
- 5490
+ 4105,
+ 4144
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 33
},
"end": {
- "line": 161,
+ "line": 128,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5430,
- 5490
+ 4084,
+ 4144
],
"loc": {
"start": {
- "line": 159,
+ "line": 126,
"column": 12
},
"end": {
- "line": 161,
+ "line": 128,
"column": 13
}
},
@@ -12159,16 +9357,16 @@
"type": "Line",
"value": " find Header element",
"range": [
- 5504,
- 5526
+ 4158,
+ 4180
],
"loc": {
"start": {
- "line": 163,
+ "line": 130,
"column": 12
},
"end": {
- "line": 163,
+ "line": 130,
"column": 34
}
}
@@ -12184,16 +9382,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5543,
- 5545
+ 4197,
+ 4199
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 16
},
"end": {
- "line": 164,
+ "line": 131,
"column": 18
}
}
@@ -12208,16 +9406,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 5548,
- 5551
+ 4202,
+ 4205
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 21
},
"end": {
- "line": 164,
+ "line": 131,
"column": 24
}
}
@@ -12226,31 +9424,31 @@
"type": "Identifier",
"name": "target",
"range": [
- 5552,
- 5558
+ 4206,
+ 4212
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 25
},
"end": {
- "line": 164,
+ "line": 131,
"column": 31
}
}
},
"range": [
- 5548,
- 5558
+ 4202,
+ 4212
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 21
},
"end": {
- "line": 164,
+ "line": 131,
"column": 31
}
}
@@ -12262,16 +9460,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 5562,
- 5565
+ 4216,
+ 4219
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 35
},
"end": {
- "line": 164,
+ "line": 131,
"column": 38
}
}
@@ -12280,61 +9478,61 @@
"type": "Identifier",
"name": "srcElement",
"range": [
- 5566,
- 5576
+ 4220,
+ 4230
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 39
},
"end": {
- "line": 164,
+ "line": 131,
"column": 49
}
}
},
"range": [
- 5562,
- 5576
+ 4216,
+ 4230
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 35
},
"end": {
- "line": 164,
+ "line": 131,
"column": 49
}
}
},
"range": [
- 5548,
- 5576
+ 4202,
+ 4230
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 21
},
"end": {
- "line": 164,
+ "line": 131,
"column": 49
}
}
},
"range": [
- 5543,
- 5576
+ 4197,
+ 4230
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 16
},
"end": {
- "line": 164,
+ "line": 131,
"column": 49
}
}
@@ -12342,16 +9540,16 @@
],
"kind": "let",
"range": [
- 5539,
- 5577
+ 4193,
+ 4231
],
"loc": {
"start": {
- "line": 164,
+ "line": 131,
"column": 12
},
"end": {
- "line": 164,
+ "line": 131,
"column": 50
}
},
@@ -12360,16 +9558,16 @@
"type": "Line",
"value": " find Header element",
"range": [
- 5504,
- 5526
+ 4158,
+ 4180
],
"loc": {
"start": {
- "line": 163,
+ "line": 130,
"column": 12
},
"end": {
- "line": 163,
+ "line": 130,
"column": 34
}
}
@@ -12391,16 +9589,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5597,
- 5599
+ 4251,
+ 4253
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 18
},
"end": {
- "line": 166,
+ "line": 133,
"column": 20
}
}
@@ -12409,31 +9607,31 @@
"type": "Identifier",
"name": "tagName",
"range": [
- 5600,
- 5607
+ 4254,
+ 4261
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 21
},
"end": {
- "line": 166,
+ "line": 133,
"column": 28
}
}
},
"range": [
- 5597,
- 5607
+ 4251,
+ 4261
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 18
},
"end": {
- "line": 166,
+ "line": 133,
"column": 28
}
}
@@ -12443,31 +9641,31 @@
"value": "TD",
"raw": "'TD'",
"range": [
- 5612,
- 5616
+ 4266,
+ 4270
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 33
},
"end": {
- "line": 166,
+ "line": 133,
"column": 37
}
}
},
"range": [
- 5597,
- 5616
+ 4251,
+ 4270
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 18
},
"end": {
- "line": 166,
+ "line": 133,
"column": 37
}
}
@@ -12482,16 +9680,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5620,
- 5622
+ 4274,
+ 4276
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 41
},
"end": {
- "line": 166,
+ "line": 133,
"column": 43
}
}
@@ -12500,31 +9698,31 @@
"type": "Identifier",
"name": "tagName",
"range": [
- 5623,
- 5630
+ 4277,
+ 4284
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 44
},
"end": {
- "line": 166,
+ "line": 133,
"column": 51
}
}
},
"range": [
- 5620,
- 5630
+ 4274,
+ 4284
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 41
},
"end": {
- "line": 166,
+ "line": 133,
"column": 51
}
}
@@ -12534,46 +9732,46 @@
"value": "TH",
"raw": "'TH'",
"range": [
- 5635,
- 5639
+ 4289,
+ 4293
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 56
},
"end": {
- "line": 166,
+ "line": 133,
"column": 60
}
}
},
"range": [
- 5620,
- 5639
+ 4274,
+ 4293
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 41
},
"end": {
- "line": 166,
+ "line": 133,
"column": 60
}
}
},
"range": [
- 5597,
- 5639
+ 4251,
+ 4293
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 18
},
"end": {
- "line": 166,
+ "line": 133,
"column": 60
}
}
@@ -12590,16 +9788,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5658,
- 5660
+ 4312,
+ 4314
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 16
},
"end": {
- "line": 167,
+ "line": 134,
"column": 18
}
}
@@ -12611,16 +9809,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5663,
- 5665
+ 4317,
+ 4319
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 21
},
"end": {
- "line": 167,
+ "line": 134,
"column": 23
}
}
@@ -12629,92 +9827,92 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 5666,
- 5676
+ 4320,
+ 4330
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 24
},
"end": {
- "line": 167,
+ "line": 134,
"column": 34
}
}
},
"range": [
- 5663,
- 5676
+ 4317,
+ 4330
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 21
},
"end": {
- "line": 167,
+ "line": 134,
"column": 34
}
}
},
"range": [
- 5658,
- 5676
+ 4312,
+ 4330
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 16
},
"end": {
- "line": 167,
+ "line": 134,
"column": 34
}
}
},
"range": [
- 5658,
- 5677
+ 4312,
+ 4331
],
"loc": {
"start": {
- "line": 167,
+ "line": 134,
"column": 16
},
"end": {
- "line": 167,
+ "line": 134,
"column": 35
}
}
}
],
"range": [
- 5640,
- 5691
+ 4294,
+ 4345
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 61
},
"end": {
- "line": 168,
+ "line": 135,
"column": 13
}
}
},
"range": [
- 5591,
- 5691
+ 4245,
+ 4345
],
"loc": {
"start": {
- "line": 166,
+ "line": 133,
"column": 12
},
"end": {
- "line": 168,
+ "line": 135,
"column": 13
}
}
@@ -12729,16 +9927,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5705,
- 5709
+ 4359,
+ 4363
],
"loc": {
"start": {
- "line": 170,
+ "line": 137,
"column": 12
},
"end": {
- "line": 170,
+ "line": 137,
"column": 16
}
}
@@ -12747,31 +9945,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 5710,
- 5714
+ 4364,
+ 4368
],
"loc": {
"start": {
- "line": 170,
+ "line": 137,
"column": 17
},
"end": {
- "line": 170,
+ "line": 137,
"column": 21
}
}
},
"range": [
- 5705,
- 5714
+ 4359,
+ 4368
],
"loc": {
"start": {
- "line": 170,
+ "line": 137,
"column": 12
},
"end": {
- "line": 170,
+ "line": 137,
"column": 21
}
}
@@ -12786,16 +9984,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 5732,
- 5745
+ 4386,
+ 4399
],
"loc": {
"start": {
- "line": 171,
+ "line": 138,
"column": 16
},
"end": {
- "line": 171,
+ "line": 138,
"column": 29
}
}
@@ -12804,31 +10002,31 @@
"type": "Identifier",
"name": "msie",
"range": [
- 5746,
- 5750
+ 4400,
+ 4404
],
"loc": {
"start": {
- "line": 171,
+ "line": 138,
"column": 30
},
"end": {
- "line": 171,
+ "line": 138,
"column": 34
}
}
},
"range": [
- 5732,
- 5750
+ 4386,
+ 4404
],
"loc": {
"start": {
- "line": 171,
+ "line": 138,
"column": 16
},
"end": {
- "line": 171,
+ "line": 138,
"column": 34
}
}
@@ -12842,16 +10040,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 5773,
- 5786
+ 4427,
+ 4440
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 20
},
"end": {
- "line": 172,
+ "line": 139,
"column": 33
}
}
@@ -12860,31 +10058,31 @@
"type": "Identifier",
"name": "getCellIndex",
"range": [
- 5787,
- 5799
+ 4441,
+ 4453
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 34
},
"end": {
- "line": 172,
+ "line": 139,
"column": 46
}
}
},
"range": [
- 5773,
- 5799
+ 4427,
+ 4453
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 20
},
"end": {
- "line": 172,
+ "line": 139,
"column": 46
}
}
@@ -12894,32 +10092,32 @@
"type": "Identifier",
"name": "el",
"range": [
- 5800,
- 5802
+ 4454,
+ 4456
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 47
},
"end": {
- "line": 172,
+ "line": 139,
"column": 49
}
}
}
],
"range": [
- 5773,
- 5803
+ 4427,
+ 4457
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 20
},
"end": {
- "line": 172,
+ "line": 139,
"column": 50
}
}
@@ -12931,16 +10129,16 @@
"type": "Identifier",
"name": "el",
"range": [
- 5806,
- 5808
+ 4460,
+ 4462
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 53
},
"end": {
- "line": 172,
+ "line": 139,
"column": 55
}
}
@@ -12949,93 +10147,93 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 5809,
- 5818
+ 4463,
+ 4472
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 56
},
"end": {
- "line": 172,
+ "line": 139,
"column": 65
}
}
},
"range": [
- 5806,
- 5818
+ 4460,
+ 4472
],
"loc": {
"start": {
- "line": 172,
+ "line": 139,
"column": 53
},
"end": {
- "line": 172,
+ "line": 139,
"column": 65
}
}
},
"range": [
- 5732,
- 5818
+ 4386,
+ 4472
],
"loc": {
"start": {
- "line": 171,
+ "line": 138,
"column": 16
},
"end": {
- "line": 172,
+ "line": 139,
"column": 65
}
}
}
],
"range": [
- 5705,
- 5832
+ 4359,
+ 4486
],
"loc": {
"start": {
- "line": 170,
+ "line": 137,
"column": 12
},
"end": {
- "line": 173,
+ "line": 140,
"column": 13
}
}
},
"range": [
- 5705,
- 5833
+ 4359,
+ 4487
],
"loc": {
"start": {
- "line": 170,
+ "line": 137,
"column": 12
},
"end": {
- "line": 173,
+ "line": 140,
"column": 14
}
}
}
],
"range": [
- 5416,
- 5843
+ 4070,
+ 4497
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 61
},
"end": {
- "line": 174,
+ "line": 141,
"column": 9
}
}
@@ -13043,46 +10241,46 @@
"generator": false,
"expression": false,
"range": [
- 5403,
- 5843
+ 4057,
+ 4497
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 48
},
"end": {
- "line": 174,
+ "line": 141,
"column": 9
}
}
},
"range": [
- 5363,
- 5843
+ 4017,
+ 4497
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 8
},
"end": {
- "line": 174,
+ "line": 141,
"column": 9
}
}
},
"range": [
- 5363,
- 5844
+ 4017,
+ 4498
],
"loc": {
"start": {
- "line": 158,
+ "line": 125,
"column": 8
},
"end": {
- "line": 174,
+ "line": 141,
"column": 10
}
},
@@ -13091,16 +10289,16 @@
"type": "Block",
"value": "*\n * Overrides headerOnclick method in order to handle th event\n * @param {Object} e [description]\n ",
"range": [
- 5225,
- 5354
+ 3879,
+ 4008
],
"loc": {
"start": {
- "line": 154,
+ "line": 121,
"column": 8
},
"end": {
- "line": 157,
+ "line": 124,
"column": 11
}
}
@@ -13111,16 +10309,16 @@
"type": "Block",
"value": "*\n * Overrides getCellIndex IE returns wrong cellIndex when columns are\n * hidden\n * @param {Object} oTd TD element\n * @return {Number} Cell index\n ",
"range": [
- 5854,
- 6051
+ 4508,
+ 4705
],
"loc": {
"start": {
- "line": 176,
+ "line": 143,
"column": 8
},
"end": {
- "line": 181,
+ "line": 148,
"column": 11
}
}
@@ -13139,16 +10337,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 6060,
- 6073
+ 4714,
+ 4727
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 8
},
"end": {
- "line": 182,
+ "line": 149,
"column": 21
}
}
@@ -13157,31 +10355,31 @@
"type": "Identifier",
"name": "getCellIndex",
"range": [
- 6074,
- 6086
+ 4728,
+ 4740
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 22
},
"end": {
- "line": 182,
+ "line": 149,
"column": 34
}
}
},
"range": [
- 6060,
- 6086
+ 4714,
+ 4740
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 8
},
"end": {
- "line": 182,
+ "line": 149,
"column": 34
}
}
@@ -13194,16 +10392,16 @@
"type": "Identifier",
"name": "oTd",
"range": [
- 6098,
- 6101
+ 4752,
+ 4755
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 46
},
"end": {
- "line": 182,
+ "line": 149,
"column": 49
}
}
@@ -13221,16 +10419,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6120,
- 6125
+ 4774,
+ 4779
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 16
},
"end": {
- "line": 183,
+ "line": 150,
"column": 21
}
}
@@ -13245,16 +10443,16 @@
"type": "Identifier",
"name": "oTd",
"range": [
- 6128,
- 6131
+ 4782,
+ 4785
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 24
},
"end": {
- "line": 183,
+ "line": 150,
"column": 27
}
}
@@ -13263,31 +10461,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 6132,
- 6142
+ 4786,
+ 4796
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 28
},
"end": {
- "line": 183,
+ "line": 150,
"column": 38
}
}
},
"range": [
- 6128,
- 6142
+ 4782,
+ 4796
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 24
},
"end": {
- "line": 183,
+ "line": 150,
"column": 38
}
}
@@ -13296,46 +10494,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6143,
- 6148
+ 4797,
+ 4802
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 39
},
"end": {
- "line": 183,
+ "line": 150,
"column": 44
}
}
},
"range": [
- 6128,
- 6148
+ 4782,
+ 4802
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 24
},
"end": {
- "line": 183,
+ "line": 150,
"column": 44
}
}
},
"range": [
- 6120,
- 6148
+ 4774,
+ 4802
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 16
},
"end": {
- "line": 183,
+ "line": 150,
"column": 44
}
}
@@ -13346,16 +10544,16 @@
"type": "Identifier",
"name": "l",
"range": [
- 6166,
- 6167
+ 4820,
+ 4821
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 16
},
"end": {
- "line": 184,
+ "line": 151,
"column": 17
}
}
@@ -13367,16 +10565,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6170,
- 6175
+ 4824,
+ 4829
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 20
},
"end": {
- "line": 184,
+ "line": 151,
"column": 25
}
}
@@ -13385,46 +10583,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 6176,
- 6182
+ 4830,
+ 4836
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 26
},
"end": {
- "line": 184,
+ "line": 151,
"column": 32
}
}
},
"range": [
- 6170,
- 6182
+ 4824,
+ 4836
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 20
},
"end": {
- "line": 184,
+ "line": 151,
"column": 32
}
}
},
"range": [
- 6166,
- 6182
+ 4820,
+ 4836
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 16
},
"end": {
- "line": 184,
+ "line": 151,
"column": 32
}
}
@@ -13435,32 +10633,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6184,
- 6185
+ 4838,
+ 4839
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 34
},
"end": {
- "line": 184,
+ "line": 151,
"column": 35
}
}
},
"init": null,
"range": [
- 6184,
- 6185
+ 4838,
+ 4839
],
"loc": {
"start": {
- "line": 184,
+ "line": 151,
"column": 34
},
"end": {
- "line": 184,
+ "line": 151,
"column": 35
}
}
@@ -13468,16 +10666,16 @@
],
"kind": "let",
"range": [
- 6116,
- 6186
+ 4770,
+ 4840
],
"loc": {
"start": {
- "line": 183,
+ "line": 150,
"column": 12
},
"end": {
- "line": 184,
+ "line": 151,
"column": 36
}
}
@@ -13491,16 +10689,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6204,
- 6205
+ 4858,
+ 4859
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 17
},
"end": {
- "line": 185,
+ "line": 152,
"column": 18
}
}
@@ -13510,31 +10708,31 @@
"value": 0,
"raw": "0",
"range": [
- 6208,
- 6209
+ 4862,
+ 4863
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 21
},
"end": {
- "line": 185,
+ "line": 152,
"column": 22
}
}
},
"range": [
- 6204,
- 6209
+ 4858,
+ 4863
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 17
},
"end": {
- "line": 185,
+ "line": 152,
"column": 22
}
}
@@ -13552,16 +10750,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6211,
- 6216
+ 4865,
+ 4870
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 24
},
"end": {
- "line": 185,
+ "line": 152,
"column": 29
}
}
@@ -13570,31 +10768,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 6217,
- 6218
+ 4871,
+ 4872
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 30
},
"end": {
- "line": 185,
+ "line": 152,
"column": 31
}
}
},
"range": [
- 6211,
- 6219
+ 4865,
+ 4873
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 24
},
"end": {
- "line": 185,
+ "line": 152,
"column": 32
}
}
@@ -13603,31 +10801,31 @@
"type": "Identifier",
"name": "oTd",
"range": [
- 6223,
- 6226
+ 4877,
+ 4880
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 36
},
"end": {
- "line": 185,
+ "line": 152,
"column": 39
}
}
},
"range": [
- 6211,
- 6226
+ 4865,
+ 4880
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 24
},
"end": {
- "line": 185,
+ "line": 152,
"column": 39
}
}
@@ -13639,16 +10837,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6230,
- 6231
+ 4884,
+ 4885
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 43
},
"end": {
- "line": 185,
+ "line": 152,
"column": 44
}
}
@@ -13657,46 +10855,46 @@
"type": "Identifier",
"name": "l",
"range": [
- 6234,
- 6235
+ 4888,
+ 4889
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 47
},
"end": {
- "line": 185,
+ "line": 152,
"column": 48
}
}
},
"range": [
- 6230,
- 6235
+ 4884,
+ 4889
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 43
},
"end": {
- "line": 185,
+ "line": 152,
"column": 48
}
}
},
"range": [
- 6211,
- 6235
+ 4865,
+ 4889
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 24
},
"end": {
- "line": 185,
+ "line": 152,
"column": 48
}
}
@@ -13708,32 +10906,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6237,
- 6238
+ 4891,
+ 4892
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 50
},
"end": {
- "line": 185,
+ "line": 152,
"column": 51
}
}
},
"prefix": false,
"range": [
- 6237,
- 6240
+ 4891,
+ 4894
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 50
},
"end": {
- "line": 185,
+ "line": 152,
"column": 53
}
}
@@ -13742,31 +10940,31 @@
"type": "BlockStatement",
"body": [],
"range": [
- 6241,
- 6243
+ 4895,
+ 4897
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 54
},
"end": {
- "line": 185,
+ "line": 152,
"column": 56
}
}
},
"range": [
- 6199,
- 6243
+ 4853,
+ 4897
],
"loc": {
"start": {
- "line": 185,
+ "line": 152,
"column": 12
},
"end": {
- "line": 185,
+ "line": 152,
"column": 56
}
}
@@ -13777,47 +10975,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 6263,
- 6264
+ 4917,
+ 4918
],
"loc": {
"start": {
- "line": 186,
+ "line": 153,
"column": 19
},
"end": {
- "line": 186,
+ "line": 153,
"column": 20
}
}
},
"range": [
- 6256,
- 6265
+ 4910,
+ 4919
],
"loc": {
"start": {
- "line": 186,
+ "line": 153,
"column": 12
},
"end": {
- "line": 186,
+ "line": 153,
"column": 21
}
}
}
],
"range": [
- 6102,
- 6275
+ 4756,
+ 4929
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 50
},
"end": {
- "line": 187,
+ "line": 154,
"column": 9
}
}
@@ -13825,46 +11023,46 @@
"generator": false,
"expression": false,
"range": [
- 6089,
- 6275
+ 4743,
+ 4929
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 37
},
"end": {
- "line": 187,
+ "line": 154,
"column": 9
}
}
},
"range": [
- 6060,
- 6275
+ 4714,
+ 4929
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 8
},
"end": {
- "line": 187,
+ "line": 154,
"column": 9
}
}
},
"range": [
- 6060,
- 6276
+ 4714,
+ 4930
],
"loc": {
"start": {
- "line": 182,
+ "line": 149,
"column": 8
},
"end": {
- "line": 187,
+ "line": 154,
"column": 10
}
},
@@ -13873,16 +11071,16 @@
"type": "Block",
"value": "*\n * Overrides getCellIndex IE returns wrong cellIndex when columns are\n * hidden\n * @param {Object} oTd TD element\n * @return {Number} Cell index\n ",
"range": [
- 5854,
- 6051
+ 4508,
+ 4705
],
"loc": {
"start": {
- "line": 176,
+ "line": 143,
"column": 8
},
"end": {
- "line": 181,
+ "line": 148,
"column": 11
}
}
@@ -13893,16 +11091,16 @@
"type": "Block",
"value": "*\n * Overrides initHeader in order to handle filters row position\n * @param {Array} oSortTypes\n ",
"range": [
- 6286,
- 6411
+ 4940,
+ 5065
],
"loc": {
"start": {
- "line": 189,
+ "line": 156,
"column": 8
},
"end": {
- "line": 192,
+ "line": 159,
"column": 11
}
}
@@ -13924,16 +11122,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 6420,
- 6433
+ 5074,
+ 5087
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 8
},
"end": {
- "line": 193,
+ "line": 160,
"column": 21
}
}
@@ -13942,31 +11140,31 @@
"type": "Identifier",
"name": "prototype",
"range": [
- 6434,
- 6443
+ 5088,
+ 5097
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 22
},
"end": {
- "line": 193,
+ "line": 160,
"column": 31
}
}
},
"range": [
- 6420,
- 6443
+ 5074,
+ 5097
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 8
},
"end": {
- "line": 193,
+ "line": 160,
"column": 31
}
}
@@ -13975,31 +11173,31 @@
"type": "Identifier",
"name": "initHeader",
"range": [
- 6444,
- 6454
+ 5098,
+ 5108
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 32
},
"end": {
- "line": 193,
+ "line": 160,
"column": 42
}
}
},
"range": [
- 6420,
- 6454
+ 5074,
+ 5108
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 8
},
"end": {
- "line": 193,
+ "line": 160,
"column": 42
}
}
@@ -14012,16 +11210,16 @@
"type": "Identifier",
"name": "oSortTypes",
"range": [
- 6466,
- 6476
+ 5120,
+ 5130
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 54
},
"end": {
- "line": 193,
+ "line": 160,
"column": 64
}
}
@@ -14039,16 +11237,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6495,
- 6498
+ 5149,
+ 5152
],
"loc": {
"start": {
- "line": 194,
+ "line": 161,
"column": 16
},
"end": {
- "line": 194,
+ "line": 161,
"column": 19
}
}
@@ -14056,31 +11254,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 6501,
- 6505
+ 5155,
+ 5159
],
"loc": {
"start": {
- "line": 194,
+ "line": 161,
"column": 22
},
"end": {
- "line": 194,
+ "line": 161,
"column": 26
}
}
},
"range": [
- 6495,
- 6505
+ 5149,
+ 5159
],
"loc": {
"start": {
- "line": 194,
+ "line": 161,
"column": 16
},
"end": {
- "line": 194,
+ "line": 161,
"column": 26
}
}
@@ -14088,16 +11286,16 @@
],
"kind": "let",
"range": [
- 6491,
- 6506
+ 5145,
+ 5160
],
"loc": {
"start": {
- "line": 194,
+ "line": 161,
"column": 12
},
"end": {
- "line": 194,
+ "line": 161,
"column": 27
}
}
@@ -14114,16 +11312,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6524,
- 6527
+ 5178,
+ 5181
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 17
},
"end": {
- "line": 195,
+ "line": 162,
"column": 20
}
}
@@ -14132,47 +11330,47 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 6528,
- 6533
+ 5182,
+ 5187
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 21
},
"end": {
- "line": 195,
+ "line": 162,
"column": 26
}
}
},
"range": [
- 6524,
- 6533
+ 5178,
+ 5187
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 17
},
"end": {
- "line": 195,
+ "line": 162,
"column": 26
}
}
},
"prefix": true,
"range": [
- 6523,
- 6533
+ 5177,
+ 5187
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 16
},
"end": {
- "line": 195,
+ "line": 162,
"column": 26
}
}
@@ -14189,16 +11387,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6555,
- 6557
+ 5209,
+ 5211
],
"loc": {
"start": {
- "line": 196,
+ "line": 163,
"column": 19
},
"end": {
- "line": 196,
+ "line": 163,
"column": 21
}
}
@@ -14207,31 +11405,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 6558,
- 6568
+ 5212,
+ 5222
],
"loc": {
"start": {
- "line": 196,
+ "line": 163,
"column": 22
},
"end": {
- "line": 196,
+ "line": 163,
"column": 32
}
}
},
"range": [
- 6555,
- 6568
+ 5209,
+ 5222
],
"loc": {
"start": {
- "line": 196,
+ "line": 163,
"column": 19
},
"end": {
- "line": 196,
+ "line": 163,
"column": 32
}
}
@@ -14251,16 +11449,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6591,
- 6594
+ 5245,
+ 5248
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 20
},
"end": {
- "line": 197,
+ "line": 164,
"column": 23
}
}
@@ -14269,31 +11467,31 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 6595,
- 6600
+ 5249,
+ 5254
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 24
},
"end": {
- "line": 197,
+ "line": 164,
"column": 29
}
}
},
"range": [
- 6591,
- 6600
+ 5245,
+ 5254
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 20
},
"end": {
- "line": 197,
+ "line": 164,
"column": 29
}
}
@@ -14313,16 +11511,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6603,
- 6605
+ 5257,
+ 5259
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 32
},
"end": {
- "line": 197,
+ "line": 164,
"column": 34
}
}
@@ -14331,31 +11529,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 6606,
- 6613
+ 5260,
+ 5267
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 35
},
"end": {
- "line": 197,
+ "line": 164,
"column": 42
}
}
},
"range": [
- 6603,
- 6613
+ 5257,
+ 5267
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 32
},
"end": {
- "line": 197,
+ "line": 164,
"column": 42
}
}
@@ -14366,32 +11564,32 @@
"value": "gridLayout",
"raw": "'gridLayout'",
"range": [
- 6614,
- 6626
+ 5268,
+ 5280
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 43
},
"end": {
- "line": 197,
+ "line": 164,
"column": 55
}
}
}
],
"range": [
- 6603,
- 6627
+ 5257,
+ 5281
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 32
},
"end": {
- "line": 197,
+ "line": 164,
"column": 56
}
}
@@ -14400,31 +11598,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 6628,
- 6635
+ 5282,
+ 5289
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 57
},
"end": {
- "line": 197,
+ "line": 164,
"column": 64
}
}
},
"range": [
- 6603,
- 6635
+ 5257,
+ 5289
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 32
},
"end": {
- "line": 197,
+ "line": 164,
"column": 64
}
}
@@ -14433,77 +11631,77 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 6636,
- 6641
+ 5290,
+ 5295
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 65
},
"end": {
- "line": 197,
+ "line": 164,
"column": 70
}
}
},
"range": [
- 6603,
- 6641
+ 5257,
+ 5295
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 32
},
"end": {
- "line": 197,
+ "line": 164,
"column": 70
}
}
},
"range": [
- 6591,
- 6641
+ 5245,
+ 5295
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 20
},
"end": {
- "line": 197,
+ "line": 164,
"column": 70
}
}
},
"range": [
- 6591,
- 6642
+ 5245,
+ 5296
],
"loc": {
"start": {
- "line": 197,
+ "line": 164,
"column": 20
},
"end": {
- "line": 197,
+ "line": 164,
"column": 71
}
}
}
],
"range": [
- 6569,
- 6660
+ 5223,
+ 5314
],
"loc": {
"start": {
- "line": 196,
+ "line": 163,
"column": 33
},
"end": {
- "line": 198,
+ "line": 165,
"column": 17
}
}
@@ -14515,79 +11713,79 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 6688,
- 6695
+ 5342,
+ 5349
],
"loc": {
"start": {
- "line": 199,
+ "line": 166,
"column": 20
},
"end": {
- "line": 199,
+ "line": 166,
"column": 27
}
}
}
],
"range": [
- 6666,
- 6713
+ 5320,
+ 5367
],
"loc": {
"start": {
- "line": 198,
+ "line": 165,
"column": 23
},
"end": {
- "line": 200,
+ "line": 167,
"column": 17
}
}
},
"range": [
- 6552,
- 6713
+ 5206,
+ 5367
],
"loc": {
"start": {
- "line": 196,
+ "line": 163,
"column": 16
},
"end": {
- "line": 200,
+ "line": 167,
"column": 17
}
}
}
],
"range": [
- 6534,
- 6727
+ 5188,
+ 5381
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 27
},
"end": {
- "line": 201,
+ "line": 168,
"column": 13
}
}
},
"alternate": null,
"range": [
- 6519,
- 6727
+ 5173,
+ 5381
],
"loc": {
"start": {
- "line": 195,
+ "line": 162,
"column": 12
},
"end": {
- "line": 201,
+ "line": 168,
"column": 13
}
}
@@ -14604,16 +11802,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6741,
- 6744
+ 5395,
+ 5398
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 12
},
"end": {
- "line": 203,
+ "line": 170,
"column": 15
}
}
@@ -14622,31 +11820,31 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 6745,
- 6755
+ 5399,
+ 5409
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 16
},
"end": {
- "line": 203,
+ "line": 170,
"column": 26
}
}
},
"range": [
- 6741,
- 6755
+ 5395,
+ 5409
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 12
},
"end": {
- "line": 203,
+ "line": 170,
"column": 26
}
}
@@ -14658,16 +11856,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6758,
- 6760
+ 5412,
+ 5414
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 29
},
"end": {
- "line": 203,
+ "line": 170,
"column": 31
}
}
@@ -14676,61 +11874,61 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 6761,
- 6771
+ 5415,
+ 5425
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 32
},
"end": {
- "line": 203,
+ "line": 170,
"column": 42
}
}
},
"range": [
- 6758,
- 6771
+ 5412,
+ 5425
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 29
},
"end": {
- "line": 203,
+ "line": 170,
"column": 42
}
}
},
"range": [
- 6741,
- 6771
+ 5395,
+ 5425
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 12
},
"end": {
- "line": 203,
+ "line": 170,
"column": 42
}
}
},
"range": [
- 6741,
- 6772
+ 5395,
+ 5426
],
"loc": {
"start": {
- "line": 203,
+ "line": 170,
"column": 12
},
"end": {
- "line": 203,
+ "line": 170,
"column": 43
}
}
@@ -14744,16 +11942,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6789,
- 6794
+ 5443,
+ 5448
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 16
},
"end": {
- "line": 204,
+ "line": 171,
"column": 21
}
}
@@ -14774,16 +11972,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6797,
- 6800
+ 5451,
+ 5454
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 24
},
"end": {
- "line": 204,
+ "line": 171,
"column": 27
}
}
@@ -14792,31 +11990,31 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 6801,
- 6806
+ 5455,
+ 5460
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 28
},
"end": {
- "line": 204,
+ "line": 171,
"column": 33
}
}
},
"range": [
- 6797,
- 6806
+ 5451,
+ 5460
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 24
},
"end": {
- "line": 204,
+ "line": 171,
"column": 33
}
}
@@ -14825,31 +12023,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 6807,
- 6811
+ 5461,
+ 5465
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 34
},
"end": {
- "line": 204,
+ "line": 171,
"column": 38
}
}
},
"range": [
- 6797,
- 6811
+ 5451,
+ 5465
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 24
},
"end": {
- "line": 204,
+ "line": 171,
"column": 38
}
}
@@ -14861,16 +12059,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6812,
- 6815
+ 5466,
+ 5469
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 39
},
"end": {
- "line": 204,
+ "line": 171,
"column": 42
}
}
@@ -14879,46 +12077,46 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 6816,
- 6826
+ 5470,
+ 5480
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 43
},
"end": {
- "line": 204,
+ "line": 171,
"column": 53
}
}
},
"range": [
- 6812,
- 6826
+ 5466,
+ 5480
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 39
},
"end": {
- "line": 204,
+ "line": 171,
"column": 53
}
}
},
"range": [
- 6797,
- 6827
+ 5451,
+ 5481
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 24
},
"end": {
- "line": 204,
+ "line": 171,
"column": 54
}
}
@@ -14927,46 +12125,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6828,
- 6833
+ 5482,
+ 5487
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 55
},
"end": {
- "line": 204,
+ "line": 171,
"column": 60
}
}
},
"range": [
- 6797,
- 6833
+ 5451,
+ 5487
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 24
},
"end": {
- "line": 204,
+ "line": 171,
"column": 60
}
}
},
"range": [
- 6789,
- 6833
+ 5443,
+ 5487
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 16
},
"end": {
- "line": 204,
+ "line": 171,
"column": 60
}
}
@@ -14974,16 +12172,16 @@
],
"kind": "let",
"range": [
- 6785,
- 6834
+ 5439,
+ 5488
],
"loc": {
"start": {
- "line": 204,
+ "line": 171,
"column": 12
},
"end": {
- "line": 204,
+ "line": 171,
"column": 61
}
}
@@ -15000,16 +12198,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 6847,
- 6850
+ 5501,
+ 5504
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 12
},
"end": {
- "line": 205,
+ "line": 172,
"column": 15
}
}
@@ -15018,31 +12216,31 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 6851,
- 6860
+ 5505,
+ 5514
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 16
},
"end": {
- "line": 205,
+ "line": 172,
"column": 25
}
}
},
"range": [
- 6847,
- 6860
+ 5501,
+ 5514
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 12
},
"end": {
- "line": 205,
+ "line": 172,
"column": 25
}
}
@@ -15054,16 +12252,16 @@
"type": "Identifier",
"name": "oSortTypes",
"range": [
- 6863,
- 6873
+ 5517,
+ 5527
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 28
},
"end": {
- "line": 205,
+ "line": 172,
"column": 38
}
}
@@ -15072,61 +12270,61 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 6877,
- 6879
+ 5531,
+ 5533
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 42
},
"end": {
- "line": 205,
+ "line": 172,
"column": 44
}
}
},
"range": [
- 6863,
- 6879
+ 5517,
+ 5533
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 28
},
"end": {
- "line": 205,
+ "line": 172,
"column": 44
}
}
},
"range": [
- 6847,
- 6879
+ 5501,
+ 5533
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 12
},
"end": {
- "line": 205,
+ "line": 172,
"column": 44
}
}
},
"range": [
- 6847,
- 6880
+ 5501,
+ 5534
],
"loc": {
"start": {
- "line": 205,
+ "line": 172,
"column": 12
},
"end": {
- "line": 205,
+ "line": 172,
"column": 45
}
}
@@ -15140,16 +12338,16 @@
"type": "Identifier",
"name": "l",
"range": [
- 6897,
- 6898
+ 5551,
+ 5552
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 16
},
"end": {
- "line": 206,
+ "line": 173,
"column": 17
}
}
@@ -15161,16 +12359,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 6901,
- 6906
+ 5555,
+ 5560
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 20
},
"end": {
- "line": 206,
+ "line": 173,
"column": 25
}
}
@@ -15179,46 +12377,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 6907,
- 6913
+ 5561,
+ 5567
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 26
},
"end": {
- "line": 206,
+ "line": 173,
"column": 32
}
}
},
"range": [
- 6901,
- 6913
+ 5555,
+ 5567
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 20
},
"end": {
- "line": 206,
+ "line": 173,
"column": 32
}
}
},
"range": [
- 6897,
- 6913
+ 5551,
+ 5567
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 16
},
"end": {
- "line": 206,
+ "line": 173,
"column": 32
}
}
@@ -15226,16 +12424,16 @@
],
"kind": "let",
"range": [
- 6893,
- 6914
+ 5547,
+ 5568
],
"loc": {
"start": {
- "line": 206,
+ "line": 173,
"column": 12
},
"end": {
- "line": 206,
+ "line": 173,
"column": 33
}
}
@@ -15249,32 +12447,32 @@
"type": "Identifier",
"name": "img",
"range": [
- 6931,
- 6934
+ 5585,
+ 5588
],
"loc": {
"start": {
- "line": 207,
+ "line": 174,
"column": 16
},
"end": {
- "line": 207,
+ "line": 174,
"column": 19
}
}
},
"init": null,
"range": [
- 6931,
- 6934
+ 5585,
+ 5588
],
"loc": {
"start": {
- "line": 207,
+ "line": 174,
"column": 16
},
"end": {
- "line": 207,
+ "line": 174,
"column": 19
}
}
@@ -15285,32 +12483,32 @@
"type": "Identifier",
"name": "c",
"range": [
- 6936,
- 6937
+ 5590,
+ 5591
],
"loc": {
"start": {
- "line": 207,
+ "line": 174,
"column": 21
},
"end": {
- "line": 207,
+ "line": 174,
"column": 22
}
}
},
"init": null,
"range": [
- 6936,
- 6937
+ 5590,
+ 5591
],
"loc": {
"start": {
- "line": 207,
+ "line": 174,
"column": 21
},
"end": {
- "line": 207,
+ "line": 174,
"column": 22
}
}
@@ -15318,16 +12516,16 @@
],
"kind": "let",
"range": [
- 6927,
- 6938
+ 5581,
+ 5592
],
"loc": {
"start": {
- "line": 207,
+ "line": 174,
"column": 12
},
"end": {
- "line": 207,
+ "line": 174,
"column": 23
}
}
@@ -15343,16 +12541,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6961,
- 6962
+ 5615,
+ 5616
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 21
},
"end": {
- "line": 209,
+ "line": 176,
"column": 22
}
}
@@ -15362,31 +12560,31 @@
"value": 0,
"raw": "0",
"range": [
- 6965,
- 6966
+ 5619,
+ 5620
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 25
},
"end": {
- "line": 209,
+ "line": 176,
"column": 26
}
}
},
"range": [
- 6961,
- 6966
+ 5615,
+ 5620
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 21
},
"end": {
- "line": 209,
+ "line": 176,
"column": 26
}
}
@@ -15394,16 +12592,16 @@
],
"kind": "let",
"range": [
- 6957,
- 6966
+ 5611,
+ 5620
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 17
},
"end": {
- "line": 209,
+ "line": 176,
"column": 26
}
}
@@ -15415,16 +12613,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6968,
- 6969
+ 5622,
+ 5623
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 28
},
"end": {
- "line": 209,
+ "line": 176,
"column": 29
}
}
@@ -15433,31 +12631,31 @@
"type": "Identifier",
"name": "l",
"range": [
- 6972,
- 6973
+ 5626,
+ 5627
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 32
},
"end": {
- "line": 209,
+ "line": 176,
"column": 33
}
}
},
"range": [
- 6968,
- 6973
+ 5622,
+ 5627
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 28
},
"end": {
- "line": 209,
+ "line": 176,
"column": 33
}
}
@@ -15469,32 +12667,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6975,
- 6976
+ 5629,
+ 5630
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 35
},
"end": {
- "line": 209,
+ "line": 176,
"column": 36
}
}
},
"prefix": false,
"range": [
- 6975,
- 6978
+ 5629,
+ 5632
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 35
},
"end": {
- "line": 209,
+ "line": 176,
"column": 38
}
}
@@ -15511,16 +12709,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 6998,
- 6999
+ 5652,
+ 5653
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 16
},
"end": {
- "line": 210,
+ "line": 177,
"column": 17
}
}
@@ -15532,16 +12730,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 7002,
- 7007
+ 5656,
+ 5661
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 20
},
"end": {
- "line": 210,
+ "line": 177,
"column": 25
}
}
@@ -15550,61 +12748,61 @@
"type": "Identifier",
"name": "i",
"range": [
- 7008,
- 7009
+ 5662,
+ 5663
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 26
},
"end": {
- "line": 210,
+ "line": 177,
"column": 27
}
}
},
"range": [
- 7002,
- 7010
+ 5656,
+ 5664
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 20
},
"end": {
- "line": 210,
+ "line": 177,
"column": 28
}
}
},
"range": [
- 6998,
- 7010
+ 5652,
+ 5664
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 16
},
"end": {
- "line": 210,
+ "line": 177,
"column": 28
}
}
},
"range": [
- 6998,
- 7011
+ 5652,
+ 5665
],
"loc": {
"start": {
- "line": 210,
+ "line": 177,
"column": 16
},
"end": {
- "line": 210,
+ "line": 177,
"column": 29
}
}
@@ -15627,16 +12825,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7032,
- 7035
+ 5686,
+ 5689
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 20
},
"end": {
- "line": 211,
+ "line": 178,
"column": 23
}
}
@@ -15645,31 +12843,31 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 7036,
- 7045
+ 5690,
+ 5699
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 24
},
"end": {
- "line": 211,
+ "line": 178,
"column": 33
}
}
},
"range": [
- 7032,
- 7045
+ 5686,
+ 5699
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 20
},
"end": {
- "line": 211,
+ "line": 178,
"column": 33
}
}
@@ -15678,31 +12876,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 7046,
- 7047
+ 5700,
+ 5701
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 34
},
"end": {
- "line": 211,
+ "line": 178,
"column": 35
}
}
},
"range": [
- 7032,
- 7048
+ 5686,
+ 5702
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 20
},
"end": {
- "line": 211,
+ "line": 178,
"column": 36
}
}
@@ -15712,31 +12910,31 @@
"value": null,
"raw": "null",
"range": [
- 7053,
- 7057
+ 5707,
+ 5711
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 41
},
"end": {
- "line": 211,
+ "line": 178,
"column": 45
}
}
},
"range": [
- 7032,
- 7057
+ 5686,
+ 5711
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 20
},
"end": {
- "line": 211,
+ "line": 178,
"column": 45
}
}
@@ -15754,16 +12952,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7061,
- 7064
+ 5715,
+ 5718
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 49
},
"end": {
- "line": 211,
+ "line": 178,
"column": 52
}
}
@@ -15772,31 +12970,31 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 7065,
- 7074
+ 5719,
+ 5728
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 53
},
"end": {
- "line": 211,
+ "line": 178,
"column": 62
}
}
},
"range": [
- 7061,
- 7074
+ 5715,
+ 5728
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 49
},
"end": {
- "line": 211,
+ "line": 178,
"column": 62
}
}
@@ -15805,31 +13003,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 7075,
- 7076
+ 5729,
+ 5730
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 63
},
"end": {
- "line": 211,
+ "line": 178,
"column": 64
}
}
},
"range": [
- 7061,
- 7077
+ 5715,
+ 5731
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 49
},
"end": {
- "line": 211,
+ "line": 178,
"column": 65
}
}
@@ -15839,46 +13037,46 @@
"value": "None",
"raw": "'None'",
"range": [
- 7082,
- 7088
+ 5736,
+ 5742
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 70
},
"end": {
- "line": 211,
+ "line": 178,
"column": 76
}
}
},
"range": [
- 7061,
- 7088
+ 5715,
+ 5742
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 49
},
"end": {
- "line": 211,
+ "line": 178,
"column": 76
}
}
},
"range": [
- 7032,
- 7088
+ 5686,
+ 5742
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 20
},
"end": {
- "line": 211,
+ "line": 178,
"column": 76
}
}
@@ -15901,16 +13099,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7111,
- 7112
+ 5765,
+ 5766
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 20
},
"end": {
- "line": 212,
+ "line": 179,
"column": 21
}
}
@@ -15919,31 +13117,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 7113,
- 7118
+ 5767,
+ 5772
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 22
},
"end": {
- "line": 212,
+ "line": 179,
"column": 27
}
}
},
"range": [
- 7111,
- 7118
+ 5765,
+ 5772
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 20
},
"end": {
- "line": 212,
+ "line": 179,
"column": 27
}
}
@@ -15952,31 +13150,31 @@
"type": "Identifier",
"name": "cursor",
"range": [
- 7119,
- 7125
+ 5773,
+ 5779
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 28
},
"end": {
- "line": 212,
+ "line": 179,
"column": 34
}
}
},
"range": [
- 7111,
- 7125
+ 5765,
+ 5779
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 20
},
"end": {
- "line": 212,
+ "line": 179,
"column": 34
}
}
@@ -15986,46 +13184,46 @@
"value": "pointer",
"raw": "'pointer'",
"range": [
- 7128,
- 7137
+ 5782,
+ 5791
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 37
},
"end": {
- "line": 212,
+ "line": 179,
"column": 46
}
}
},
"range": [
- 7111,
- 7137
+ 5765,
+ 5791
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 20
},
"end": {
- "line": 212,
+ "line": 179,
"column": 46
}
}
},
"range": [
- 7111,
- 7138
+ 5765,
+ 5792
],
"loc": {
"start": {
- "line": 212,
+ "line": 179,
"column": 20
},
"end": {
- "line": 212,
+ "line": 179,
"column": 47
}
}
@@ -16039,16 +13237,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 7159,
- 7162
+ 5813,
+ 5816
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 20
},
"end": {
- "line": 213,
+ "line": 180,
"column": 23
}
}
@@ -16062,16 +13260,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7165,
- 7168
+ 5819,
+ 5822
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 26
},
"end": {
- "line": 213,
+ "line": 180,
"column": 29
}
}
@@ -16080,31 +13278,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 7169,
- 7175
+ 5823,
+ 5829
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 30
},
"end": {
- "line": 213,
+ "line": 180,
"column": 36
}
}
},
"range": [
- 7165,
- 7175
+ 5819,
+ 5829
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 26
},
"end": {
- "line": 213,
+ "line": 180,
"column": 36
}
}
@@ -16115,16 +13313,16 @@
"value": "img",
"raw": "'img'",
"range": [
- 7176,
- 7181
+ 5830,
+ 5835
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 37
},
"end": {
- "line": 213,
+ "line": 180,
"column": 42
}
}
@@ -16137,16 +13335,16 @@
"value": "src",
"raw": "'src'",
"range": [
- 7208,
- 7213
+ 5862,
+ 5867
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 25
},
"end": {
- "line": 214,
+ "line": 181,
"column": 30
}
}
@@ -16161,16 +13359,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 7215,
- 7219
+ 5869,
+ 5873
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 32
},
"end": {
- "line": 214,
+ "line": 181,
"column": 36
}
}
@@ -16179,31 +13377,31 @@
"type": "Identifier",
"name": "imgPath",
"range": [
- 7220,
- 7227
+ 5874,
+ 5881
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 37
},
"end": {
- "line": 214,
+ "line": 181,
"column": 44
}
}
},
"range": [
- 7215,
- 7227
+ 5869,
+ 5881
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 32
},
"end": {
- "line": 214,
+ "line": 181,
"column": 44
}
}
@@ -16215,16 +13413,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 7230,
- 7234
+ 5884,
+ 5888
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 47
},
"end": {
- "line": 214,
+ "line": 181,
"column": 51
}
}
@@ -16233,108 +13431,108 @@
"type": "Identifier",
"name": "imgBlank",
"range": [
- 7235,
- 7243
+ 5889,
+ 5897
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 52
},
"end": {
- "line": 214,
+ "line": 181,
"column": 60
}
}
},
"range": [
- 7230,
- 7243
+ 5884,
+ 5897
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 47
},
"end": {
- "line": 214,
+ "line": 181,
"column": 60
}
}
},
"range": [
- 7215,
- 7243
+ 5869,
+ 5897
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 32
},
"end": {
- "line": 214,
+ "line": 181,
"column": 60
}
}
}
],
"range": [
- 7207,
- 7244
+ 5861,
+ 5898
],
"loc": {
"start": {
- "line": 214,
+ "line": 181,
"column": 24
},
"end": {
- "line": 214,
+ "line": 181,
"column": 61
}
}
}
],
"range": [
- 7165,
- 7245
+ 5819,
+ 5899
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 26
},
"end": {
- "line": 214,
+ "line": 181,
"column": 62
}
}
},
"range": [
- 7159,
- 7245
+ 5813,
+ 5899
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 20
},
"end": {
- "line": 214,
+ "line": 181,
"column": 62
}
}
},
"range": [
- 7159,
- 7246
+ 5813,
+ 5900
],
"loc": {
"start": {
- "line": 213,
+ "line": 180,
"column": 20
},
"end": {
- "line": 214,
+ "line": 181,
"column": 63
}
}
@@ -16350,16 +13548,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7267,
- 7268
+ 5921,
+ 5922
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 20
},
"end": {
- "line": 215,
+ "line": 182,
"column": 21
}
}
@@ -16368,31 +13566,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 7269,
- 7280
+ 5923,
+ 5934
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 22
},
"end": {
- "line": 215,
+ "line": 182,
"column": 33
}
}
},
"range": [
- 7267,
- 7280
+ 5921,
+ 5934
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 20
},
"end": {
- "line": 215,
+ "line": 182,
"column": 33
}
}
@@ -16402,47 +13600,47 @@
"type": "Identifier",
"name": "img",
"range": [
- 7281,
- 7284
+ 5935,
+ 5938
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 34
},
"end": {
- "line": 215,
+ "line": 182,
"column": 37
}
}
}
],
"range": [
- 7267,
- 7285
+ 5921,
+ 5939
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 20
},
"end": {
- "line": 215,
+ "line": 182,
"column": 38
}
}
},
"range": [
- 7267,
- 7286
+ 5921,
+ 5940
],
"loc": {
"start": {
- "line": 215,
+ "line": 182,
"column": 20
},
"end": {
- "line": 215,
+ "line": 182,
"column": 39
}
}
@@ -16462,16 +13660,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7311,
- 7314
+ 5965,
+ 5968
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 24
},
"end": {
- "line": 216,
+ "line": 183,
"column": 27
}
}
@@ -16480,31 +13678,31 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 7315,
- 7324
+ 5969,
+ 5978
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 28
},
"end": {
- "line": 216,
+ "line": 183,
"column": 37
}
}
},
"range": [
- 7311,
- 7324
+ 5965,
+ 5978
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 24
},
"end": {
- "line": 216,
+ "line": 183,
"column": 37
}
}
@@ -16513,31 +13711,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 7325,
- 7326
+ 5979,
+ 5980
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 38
},
"end": {
- "line": 216,
+ "line": 183,
"column": 39
}
}
},
"range": [
- 7311,
- 7327
+ 5965,
+ 5981
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 24
},
"end": {
- "line": 216,
+ "line": 183,
"column": 40
}
}
@@ -16547,31 +13745,31 @@
"value": null,
"raw": "null",
"range": [
- 7332,
- 7336
+ 5986,
+ 5990
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 45
},
"end": {
- "line": 216,
+ "line": 183,
"column": 49
}
}
},
"range": [
- 7311,
- 7336
+ 5965,
+ 5990
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 24
},
"end": {
- "line": 216,
+ "line": 183,
"column": 49
}
}
@@ -16590,16 +13788,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7363,
- 7364
+ 6017,
+ 6018
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 24
},
"end": {
- "line": 217,
+ "line": 184,
"column": 25
}
}
@@ -16608,31 +13806,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 7365,
- 7377
+ 6019,
+ 6031
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 26
},
"end": {
- "line": 217,
+ "line": 184,
"column": 38
}
}
},
"range": [
- 7363,
- 7377
+ 6017,
+ 6031
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 24
},
"end": {
- "line": 217,
+ "line": 184,
"column": 38
}
}
@@ -16643,16 +13841,16 @@
"value": "_sortType",
"raw": "'_sortType'",
"range": [
- 7379,
- 7390
+ 6033,
+ 6044
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 40
},
"end": {
- "line": 217,
+ "line": 184,
"column": 51
}
}
@@ -16667,16 +13865,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7392,
- 7395
+ 6046,
+ 6049
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 53
},
"end": {
- "line": 217,
+ "line": 184,
"column": 56
}
}
@@ -16685,31 +13883,31 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 7396,
- 7405
+ 6050,
+ 6059
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 57
},
"end": {
- "line": 217,
+ "line": 184,
"column": 66
}
}
},
"range": [
- 7392,
- 7405
+ 6046,
+ 6059
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 53
},
"end": {
- "line": 217,
+ "line": 184,
"column": 66
}
}
@@ -16718,94 +13916,94 @@
"type": "Identifier",
"name": "i",
"range": [
- 7406,
- 7407
+ 6060,
+ 6061
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 67
},
"end": {
- "line": 217,
+ "line": 184,
"column": 68
}
}
},
"range": [
- 7392,
- 7408
+ 6046,
+ 6062
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 53
},
"end": {
- "line": 217,
+ "line": 184,
"column": 69
}
}
}
],
"range": [
- 7363,
- 7409
+ 6017,
+ 6063
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 24
},
"end": {
- "line": 217,
+ "line": 184,
"column": 70
}
}
},
"range": [
- 7363,
- 7410
+ 6017,
+ 6064
],
"loc": {
"start": {
- "line": 217,
+ "line": 184,
"column": 24
},
"end": {
- "line": 217,
+ "line": 184,
"column": 71
}
}
}
],
"range": [
- 7337,
- 7432
+ 5991,
+ 6086
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 50
},
"end": {
- "line": 218,
+ "line": 185,
"column": 21
}
}
},
"alternate": null,
"range": [
- 7307,
- 7432
+ 5961,
+ 6086
],
"loc": {
"start": {
- "line": 216,
+ "line": 183,
"column": 20
},
"end": {
- "line": 218,
+ "line": 185,
"column": 21
}
}
@@ -16821,16 +14019,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 7453,
- 7458
+ 6107,
+ 6112
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 20
},
"end": {
- "line": 219,
+ "line": 186,
"column": 25
}
}
@@ -16839,31 +14037,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 7459,
- 7462
+ 6113,
+ 6116
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 26
},
"end": {
- "line": 219,
+ "line": 186,
"column": 29
}
}
},
"range": [
- 7453,
- 7462
+ 6107,
+ 6116
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 20
},
"end": {
- "line": 219,
+ "line": 186,
"column": 29
}
}
@@ -16873,16 +14071,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7463,
- 7464
+ 6117,
+ 6118
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 30
},
"end": {
- "line": 219,
+ "line": 186,
"column": 31
}
}
@@ -16892,16 +14090,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 7466,
- 7473
+ 6120,
+ 6127
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 33
},
"end": {
- "line": 219,
+ "line": 186,
"column": 40
}
}
@@ -16913,16 +14111,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7475,
- 7478
+ 6129,
+ 6132
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 42
},
"end": {
- "line": 219,
+ "line": 186,
"column": 45
}
}
@@ -16931,78 +14129,78 @@
"type": "Identifier",
"name": "_headerOnclick",
"range": [
- 7479,
- 7493
+ 6133,
+ 6147
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 46
},
"end": {
- "line": 219,
+ "line": 186,
"column": 60
}
}
},
"range": [
- 7475,
- 7493
+ 6129,
+ 6147
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 42
},
"end": {
- "line": 219,
+ "line": 186,
"column": 60
}
}
}
],
"range": [
- 7453,
- 7494
+ 6107,
+ 6148
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 20
},
"end": {
- "line": 219,
+ "line": 186,
"column": 61
}
}
},
"range": [
- 7453,
- 7495
+ 6107,
+ 6149
],
"loc": {
"start": {
- "line": 219,
+ "line": 186,
"column": 20
},
"end": {
- "line": 219,
+ "line": 186,
"column": 62
}
}
}
],
"range": [
- 7089,
- 7513
+ 5743,
+ 6167
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 77
},
"end": {
- "line": 220,
+ "line": 187,
"column": 17
}
}
@@ -17021,16 +14219,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7541,
- 7542
+ 6195,
+ 6196
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 20
},
"end": {
- "line": 221,
+ "line": 188,
"column": 21
}
}
@@ -17039,31 +14237,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 7543,
- 7555
+ 6197,
+ 6209
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 22
},
"end": {
- "line": 221,
+ "line": 188,
"column": 34
}
}
},
"range": [
- 7541,
- 7555
+ 6195,
+ 6209
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 20
},
"end": {
- "line": 221,
+ "line": 188,
"column": 34
}
}
@@ -17074,16 +14272,16 @@
"value": "_sortType",
"raw": "'_sortType'",
"range": [
- 7556,
- 7567
+ 6210,
+ 6221
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 35
},
"end": {
- "line": 221,
+ "line": 188,
"column": 46
}
}
@@ -17095,16 +14293,16 @@
"type": "Identifier",
"name": "oSortTypes",
"range": [
- 7569,
- 7579
+ 6223,
+ 6233
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 48
},
"end": {
- "line": 221,
+ "line": 188,
"column": 58
}
}
@@ -17113,62 +14311,62 @@
"type": "Identifier",
"name": "i",
"range": [
- 7580,
- 7581
+ 6234,
+ 6235
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 59
},
"end": {
- "line": 221,
+ "line": 188,
"column": 60
}
}
},
"range": [
- 7569,
- 7582
+ 6223,
+ 6236
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 48
},
"end": {
- "line": 221,
+ "line": 188,
"column": 61
}
}
}
],
"range": [
- 7541,
- 7583
+ 6195,
+ 6237
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 20
},
"end": {
- "line": 221,
+ "line": 188,
"column": 62
}
}
},
"range": [
- 7541,
- 7584
+ 6195,
+ 6238
],
"loc": {
"start": {
- "line": 221,
+ "line": 188,
"column": 20
},
"end": {
- "line": 221,
+ "line": 188,
"column": 63
}
}
@@ -17185,16 +14383,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 7605,
- 7606
+ 6259,
+ 6260
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 20
},
"end": {
- "line": 222,
+ "line": 189,
"column": 21
}
}
@@ -17203,31 +14401,31 @@
"type": "Identifier",
"name": "_sortType",
"range": [
- 7607,
- 7616
+ 6261,
+ 6270
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 22
},
"end": {
- "line": 222,
+ "line": 189,
"column": 31
}
}
},
"range": [
- 7605,
- 7616
+ 6259,
+ 6270
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 20
},
"end": {
- "line": 222,
+ "line": 189,
"column": 31
}
}
@@ -17237,108 +14435,108 @@
"value": "None",
"raw": "'None'",
"range": [
- 7619,
- 7625
+ 6273,
+ 6279
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 34
},
"end": {
- "line": 222,
+ "line": 189,
"column": 40
}
}
},
"range": [
- 7605,
- 7625
+ 6259,
+ 6279
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 20
},
"end": {
- "line": 222,
+ "line": 189,
"column": 40
}
}
},
"range": [
- 7605,
- 7626
+ 6259,
+ 6280
],
"loc": {
"start": {
- "line": 222,
+ "line": 189,
"column": 20
},
"end": {
- "line": 222,
+ "line": 189,
"column": 41
}
}
}
],
"range": [
- 7519,
- 7644
+ 6173,
+ 6298
],
"loc": {
"start": {
- "line": 220,
+ "line": 187,
"column": 23
},
"end": {
- "line": 223,
+ "line": 190,
"column": 17
}
}
},
"range": [
- 7028,
- 7644
+ 5682,
+ 6298
],
"loc": {
"start": {
- "line": 211,
+ "line": 178,
"column": 16
},
"end": {
- "line": 223,
+ "line": 190,
"column": 17
}
}
}
],
"range": [
- 6980,
- 7658
+ 5634,
+ 6312
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 40
},
"end": {
- "line": 224,
+ "line": 191,
"column": 13
}
}
},
"range": [
- 6952,
- 7658
+ 5606,
+ 6312
],
"loc": {
"start": {
- "line": 209,
+ "line": 176,
"column": 12
},
"end": {
- "line": 224,
+ "line": 191,
"column": 13
}
}
@@ -17354,16 +14552,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7671,
- 7674
+ 6325,
+ 6328
],
"loc": {
"start": {
- "line": 225,
+ "line": 192,
"column": 12
},
"end": {
- "line": 225,
+ "line": 192,
"column": 15
}
}
@@ -17372,78 +14570,78 @@
"type": "Identifier",
"name": "updateHeaderArrows",
"range": [
- 7675,
- 7693
+ 6329,
+ 6347
],
"loc": {
"start": {
- "line": 225,
+ "line": 192,
"column": 16
},
"end": {
- "line": 225,
+ "line": 192,
"column": 34
}
}
},
"range": [
- 7671,
- 7693
+ 6325,
+ 6347
],
"loc": {
"start": {
- "line": 225,
+ "line": 192,
"column": 12
},
"end": {
- "line": 225,
+ "line": 192,
"column": 34
}
}
},
"arguments": [],
"range": [
- 7671,
- 7695
+ 6325,
+ 6349
],
"loc": {
"start": {
- "line": 225,
+ "line": 192,
"column": 12
},
"end": {
- "line": 225,
+ "line": 192,
"column": 36
}
}
},
"range": [
- 7671,
- 7696
+ 6325,
+ 6350
],
"loc": {
"start": {
- "line": 225,
+ "line": 192,
"column": 12
},
"end": {
- "line": 225,
+ "line": 192,
"column": 37
}
}
}
],
"range": [
- 6477,
- 7706
+ 5131,
+ 6360
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 65
},
"end": {
- "line": 226,
+ "line": 193,
"column": 9
}
}
@@ -17451,46 +14649,46 @@
"generator": false,
"expression": false,
"range": [
- 6457,
- 7706
+ 5111,
+ 6360
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 45
},
"end": {
- "line": 226,
+ "line": 193,
"column": 9
}
}
},
"range": [
- 6420,
- 7706
+ 5074,
+ 6360
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 8
},
"end": {
- "line": 226,
+ "line": 193,
"column": 9
}
}
},
"range": [
- 6420,
- 7707
+ 5074,
+ 6361
],
"loc": {
"start": {
- "line": 193,
+ "line": 160,
"column": 8
},
"end": {
- "line": 226,
+ "line": 193,
"column": 10
}
},
@@ -17499,16 +14697,16 @@
"type": "Block",
"value": "*\n * Overrides initHeader in order to handle filters row position\n * @param {Array} oSortTypes\n ",
"range": [
- 6286,
- 6411
+ 4940,
+ 5065
],
"loc": {
"start": {
- "line": 189,
+ "line": 156,
"column": 8
},
"end": {
- "line": 192,
+ "line": 159,
"column": 11
}
}
@@ -17519,16 +14717,16 @@
"type": "Block",
"value": "*\n * Overrides updateHeaderArrows in order to handle arrows indicators\n ",
"range": [
- 7717,
- 7809
+ 6371,
+ 6463
],
"loc": {
"start": {
- "line": 228,
+ "line": 195,
"column": 8
},
"end": {
- "line": 230,
+ "line": 197,
"column": 11
}
}
@@ -17550,16 +14748,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 7818,
- 7831
+ 6472,
+ 6485
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 8
},
"end": {
- "line": 231,
+ "line": 198,
"column": 21
}
}
@@ -17568,31 +14766,31 @@
"type": "Identifier",
"name": "prototype",
"range": [
- 7832,
- 7841
+ 6486,
+ 6495
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 22
},
"end": {
- "line": 231,
+ "line": 198,
"column": 31
}
}
},
"range": [
- 7818,
- 7841
+ 6472,
+ 6495
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 8
},
"end": {
- "line": 231,
+ "line": 198,
"column": 31
}
}
@@ -17601,31 +14799,31 @@
"type": "Identifier",
"name": "updateHeaderArrows",
"range": [
- 7842,
- 7860
+ 6496,
+ 6514
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 32
},
"end": {
- "line": 231,
+ "line": 198,
"column": 50
}
}
},
"range": [
- 7818,
- 7860
+ 6472,
+ 6514
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 8
},
"end": {
- "line": 231,
+ "line": 198,
"column": 50
}
}
@@ -17646,16 +14844,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 7891,
- 7894
+ 6545,
+ 6548
],
"loc": {
"start": {
- "line": 232,
+ "line": 199,
"column": 16
},
"end": {
- "line": 232,
+ "line": 199,
"column": 19
}
}
@@ -17663,31 +14861,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 7897,
- 7901
+ 6551,
+ 6555
],
"loc": {
"start": {
- "line": 232,
+ "line": 199,
"column": 22
},
"end": {
- "line": 232,
+ "line": 199,
"column": 26
}
}
},
"range": [
- 7891,
- 7901
+ 6545,
+ 6555
],
"loc": {
"start": {
- "line": 232,
+ "line": 199,
"column": 16
},
"end": {
- "line": 232,
+ "line": 199,
"column": 26
}
}
@@ -17695,16 +14893,16 @@
],
"kind": "let",
"range": [
- 7887,
- 7902
+ 6541,
+ 6556
],
"loc": {
"start": {
- "line": 232,
+ "line": 199,
"column": 12
},
"end": {
- "line": 232,
+ "line": 199,
"column": 27
}
}
@@ -17718,32 +14916,32 @@
"type": "Identifier",
"name": "cells",
"range": [
- 7919,
- 7924
+ 6573,
+ 6578
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 16
},
"end": {
- "line": 233,
+ "line": 200,
"column": 21
}
}
},
"init": null,
"range": [
- 7919,
- 7924
+ 6573,
+ 6578
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 16
},
"end": {
- "line": 233,
+ "line": 200,
"column": 21
}
}
@@ -17754,32 +14952,32 @@
"type": "Identifier",
"name": "l",
"range": [
- 7926,
- 7927
+ 6580,
+ 6581
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 23
},
"end": {
- "line": 233,
+ "line": 200,
"column": 24
}
}
},
"init": null,
"range": [
- 7926,
- 7927
+ 6580,
+ 6581
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 23
},
"end": {
- "line": 233,
+ "line": 200,
"column": 24
}
}
@@ -17790,32 +14988,32 @@
"type": "Identifier",
"name": "img",
"range": [
- 7929,
- 7932
+ 6583,
+ 6586
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 26
},
"end": {
- "line": 233,
+ "line": 200,
"column": 29
}
}
},
"init": null,
"range": [
- 7929,
- 7932
+ 6583,
+ 6586
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 26
},
"end": {
- "line": 233,
+ "line": 200,
"column": 29
}
}
@@ -17823,16 +15021,16 @@
],
"kind": "let",
"range": [
- 7915,
- 7933
+ 6569,
+ 6587
],
"loc": {
"start": {
- "line": 233,
+ "line": 200,
"column": 12
},
"end": {
- "line": 233,
+ "line": 200,
"column": 30
}
},
@@ -17841,16 +15039,16 @@
"type": "Line",
"value": " external headers",
"range": [
- 7947,
- 7966
+ 6601,
+ 6620
],
"loc": {
"start": {
- "line": 235,
+ "line": 202,
"column": 12
},
"end": {
- "line": 235,
+ "line": 202,
"column": 31
}
}
@@ -17869,16 +15067,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 7982,
- 7986
+ 6636,
+ 6640
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 15
},
"end": {
- "line": 236,
+ "line": 203,
"column": 19
}
}
@@ -17887,31 +15085,31 @@
"type": "Identifier",
"name": "asyncSort",
"range": [
- 7987,
- 7996
+ 6641,
+ 6650
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 20
},
"end": {
- "line": 236,
+ "line": 203,
"column": 29
}
}
},
"range": [
- 7982,
- 7996
+ 6636,
+ 6650
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 15
},
"end": {
- "line": 236,
+ "line": 203,
"column": 29
}
}
@@ -17929,16 +15127,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 8000,
- 8004
+ 6654,
+ 6658
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 33
},
"end": {
- "line": 236,
+ "line": 203,
"column": 37
}
}
@@ -17947,31 +15145,31 @@
"type": "Identifier",
"name": "triggerIds",
"range": [
- 8005,
- 8015
+ 6659,
+ 6669
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 38
},
"end": {
- "line": 236,
+ "line": 203,
"column": 48
}
}
},
"range": [
- 8000,
- 8015
+ 6654,
+ 6669
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 33
},
"end": {
- "line": 236,
+ "line": 203,
"column": 48
}
}
@@ -17980,31 +15178,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 8016,
- 8022
+ 6670,
+ 6676
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 49
},
"end": {
- "line": 236,
+ "line": 203,
"column": 55
}
}
},
"range": [
- 8000,
- 8022
+ 6654,
+ 6676
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 33
},
"end": {
- "line": 236,
+ "line": 203,
"column": 55
}
}
@@ -18014,46 +15212,46 @@
"value": 0,
"raw": "0",
"range": [
- 8025,
- 8026
+ 6679,
+ 6680
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 58
},
"end": {
- "line": 236,
+ "line": 203,
"column": 59
}
}
},
"range": [
- 8000,
- 8026
+ 6654,
+ 6680
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 33
},
"end": {
- "line": 236,
+ "line": 203,
"column": 59
}
}
},
"range": [
- 7982,
- 8026
+ 6636,
+ 6680
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 15
},
"end": {
- "line": 236,
+ "line": 203,
"column": 59
}
}
@@ -18070,16 +15268,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 8049,
- 8057
+ 6703,
+ 6711
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 20
},
"end": {
- "line": 237,
+ "line": 204,
"column": 28
}
}
@@ -18091,16 +15289,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 8060,
- 8064
+ 6714,
+ 6718
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 31
},
"end": {
- "line": 237,
+ "line": 204,
"column": 35
}
}
@@ -18109,46 +15307,46 @@
"type": "Identifier",
"name": "triggerIds",
"range": [
- 8065,
- 8075
+ 6719,
+ 6729
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 36
},
"end": {
- "line": 237,
+ "line": 204,
"column": 46
}
}
},
"range": [
- 8060,
- 8075
+ 6714,
+ 6729
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 31
},
"end": {
- "line": 237,
+ "line": 204,
"column": 46
}
}
},
"range": [
- 8049,
- 8075
+ 6703,
+ 6729
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 20
},
"end": {
- "line": 237,
+ "line": 204,
"column": 46
}
}
@@ -18156,16 +15354,16 @@
],
"kind": "let",
"range": [
- 8045,
- 8076
+ 6699,
+ 6730
],
"loc": {
"start": {
- "line": 237,
+ "line": 204,
"column": 16
},
"end": {
- "line": 237,
+ "line": 204,
"column": 47
}
}
@@ -18179,16 +15377,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8093,
- 8098
+ 6747,
+ 6752
],
"loc": {
"start": {
- "line": 238,
+ "line": 205,
"column": 16
},
"end": {
- "line": 238,
+ "line": 205,
"column": 21
}
}
@@ -18197,46 +15395,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 8101,
- 8103
+ 6755,
+ 6757
],
"loc": {
"start": {
- "line": 238,
+ "line": 205,
"column": 24
},
"end": {
- "line": 238,
+ "line": 205,
"column": 26
}
}
},
"range": [
- 8093,
- 8103
+ 6747,
+ 6757
],
"loc": {
"start": {
- "line": 238,
+ "line": 205,
"column": 16
},
"end": {
- "line": 238,
+ "line": 205,
"column": 26
}
}
},
"range": [
- 8093,
- 8104
+ 6747,
+ 6758
],
"loc": {
"start": {
- "line": 238,
+ "line": 205,
"column": 16
},
"end": {
- "line": 238,
+ "line": 205,
"column": 27
}
}
@@ -18250,16 +15448,16 @@
"type": "Identifier",
"name": "l",
"range": [
- 8121,
- 8122
+ 6775,
+ 6776
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 16
},
"end": {
- "line": 239,
+ "line": 206,
"column": 17
}
}
@@ -18271,16 +15469,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 8125,
- 8133
+ 6779,
+ 6787
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 20
},
"end": {
- "line": 239,
+ "line": 206,
"column": 28
}
}
@@ -18289,61 +15487,61 @@
"type": "Identifier",
"name": "length",
"range": [
- 8134,
- 8140
+ 6788,
+ 6794
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 29
},
"end": {
- "line": 239,
+ "line": 206,
"column": 35
}
}
},
"range": [
- 8125,
- 8140
+ 6779,
+ 6794
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 20
},
"end": {
- "line": 239,
+ "line": 206,
"column": 35
}
}
},
"range": [
- 8121,
- 8140
+ 6775,
+ 6794
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 16
},
"end": {
- "line": 239,
+ "line": 206,
"column": 35
}
}
},
"range": [
- 8121,
- 8141
+ 6775,
+ 6795
],
"loc": {
"start": {
- "line": 239,
+ "line": 206,
"column": 16
},
"end": {
- "line": 239,
+ "line": 206,
"column": 36
}
}
@@ -18359,16 +15557,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 8166,
- 8167
+ 6820,
+ 6821
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 24
},
"end": {
- "line": 240,
+ "line": 207,
"column": 25
}
}
@@ -18378,31 +15576,31 @@
"value": 0,
"raw": "0",
"range": [
- 8168,
- 8169
+ 6822,
+ 6823
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 26
},
"end": {
- "line": 240,
+ "line": 207,
"column": 27
}
}
},
"range": [
- 8166,
- 8169
+ 6820,
+ 6823
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 24
},
"end": {
- "line": 240,
+ "line": 207,
"column": 27
}
}
@@ -18410,16 +15608,16 @@
],
"kind": "let",
"range": [
- 8162,
- 8169
+ 6816,
+ 6823
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 20
},
"end": {
- "line": 240,
+ "line": 207,
"column": 27
}
}
@@ -18431,16 +15629,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 8171,
- 8172
+ 6825,
+ 6826
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 29
},
"end": {
- "line": 240,
+ "line": 207,
"column": 30
}
}
@@ -18452,16 +15650,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 8173,
- 8181
+ 6827,
+ 6835
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 31
},
"end": {
- "line": 240,
+ "line": 207,
"column": 39
}
}
@@ -18470,46 +15668,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 8182,
- 8188
+ 6836,
+ 6842
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 40
},
"end": {
- "line": 240,
+ "line": 207,
"column": 46
}
}
},
"range": [
- 8173,
- 8188
+ 6827,
+ 6842
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 31
},
"end": {
- "line": 240,
+ "line": 207,
"column": 46
}
}
},
"range": [
- 8171,
- 8188
+ 6825,
+ 6842
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 29
},
"end": {
- "line": 240,
+ "line": 207,
"column": 46
}
}
@@ -18521,32 +15719,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 8190,
- 8191
+ 6844,
+ 6845
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 48
},
"end": {
- "line": 240,
+ "line": 207,
"column": 49
}
}
},
"prefix": false,
"range": [
- 8190,
- 8193
+ 6844,
+ 6847
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 48
},
"end": {
- "line": 240,
+ "line": 207,
"column": 51
}
}
@@ -18565,16 +15763,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8216,
- 8221
+ 6870,
+ 6875
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 20
},
"end": {
- "line": 241,
+ "line": 208,
"column": 25
}
}
@@ -18583,31 +15781,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 8222,
- 8226
+ 6876,
+ 6880
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 26
},
"end": {
- "line": 241,
+ "line": 208,
"column": 30
}
}
},
"range": [
- 8216,
- 8226
+ 6870,
+ 6880
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 20
},
"end": {
- "line": 241,
+ "line": 208,
"column": 30
}
}
@@ -18622,16 +15820,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8227,
- 8230
+ 6881,
+ 6884
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 31
},
"end": {
- "line": 241,
+ "line": 208,
"column": 34
}
}
@@ -18640,31 +15838,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 8231,
- 8233
+ 6885,
+ 6887
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 35
},
"end": {
- "line": 241,
+ "line": 208,
"column": 37
}
}
},
"range": [
- 8227,
- 8233
+ 6881,
+ 6887
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 31
},
"end": {
- "line": 241,
+ "line": 208,
"column": 37
}
}
@@ -18677,16 +15875,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 8234,
- 8242
+ 6888,
+ 6896
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 38
},
"end": {
- "line": 241,
+ "line": 208,
"column": 46
}
}
@@ -18695,125 +15893,125 @@
"type": "Identifier",
"name": "j",
"range": [
- 8243,
- 8244
+ 6897,
+ 6898
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 47
},
"end": {
- "line": 241,
+ "line": 208,
"column": 48
}
}
},
"range": [
- 8234,
- 8245
+ 6888,
+ 6899
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 38
},
"end": {
- "line": 241,
+ "line": 208,
"column": 49
}
}
}
],
"range": [
- 8227,
- 8246
+ 6881,
+ 6900
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 31
},
"end": {
- "line": 241,
+ "line": 208,
"column": 50
}
}
}
],
"range": [
- 8216,
- 8247
+ 6870,
+ 6901
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 20
},
"end": {
- "line": 241,
+ "line": 208,
"column": 51
}
}
},
"range": [
- 8216,
- 8248
+ 6870,
+ 6902
],
"loc": {
"start": {
- "line": 241,
+ "line": 208,
"column": 20
},
"end": {
- "line": 241,
+ "line": 208,
"column": 52
}
}
}
],
"range": [
- 8194,
- 8266
+ 6848,
+ 6920
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 52
},
"end": {
- "line": 242,
+ "line": 209,
"column": 17
}
}
},
"range": [
- 8158,
- 8266
+ 6812,
+ 6920
],
"loc": {
"start": {
- "line": 240,
+ "line": 207,
"column": 16
},
"end": {
- "line": 242,
+ "line": 209,
"column": 17
}
}
}
],
"range": [
- 8027,
- 8280
+ 6681,
+ 6934
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 60
},
"end": {
- "line": 243,
+ "line": 210,
"column": 13
}
}
@@ -18832,16 +16030,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8308,
- 8312
+ 6962,
+ 6966
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 20
},
"end": {
- "line": 244,
+ "line": 211,
"column": 24
}
}
@@ -18850,47 +16048,47 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 8313,
- 8318
+ 6967,
+ 6972
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 25
},
"end": {
- "line": 244,
+ "line": 211,
"column": 30
}
}
},
"range": [
- 8308,
- 8318
+ 6962,
+ 6972
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 20
},
"end": {
- "line": 244,
+ "line": 211,
"column": 30
}
}
},
"prefix": true,
"range": [
- 8307,
- 8318
+ 6961,
+ 6972
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 19
},
"end": {
- "line": 244,
+ "line": 211,
"column": 30
}
}
@@ -18902,48 +16100,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 8341,
- 8348
+ 6995,
+ 7002
],
"loc": {
"start": {
- "line": 245,
+ "line": 212,
"column": 20
},
"end": {
- "line": 245,
+ "line": 212,
"column": 27
}
}
}
],
"range": [
- 8319,
- 8366
+ 6973,
+ 7020
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 31
},
"end": {
- "line": 246,
+ "line": 213,
"column": 17
}
}
},
"alternate": null,
"range": [
- 8304,
- 8366
+ 6958,
+ 7020
],
"loc": {
"start": {
- "line": 244,
+ "line": 211,
"column": 16
},
"end": {
- "line": 246,
+ "line": 213,
"column": 17
}
}
@@ -18957,16 +16155,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8383,
- 8388
+ 7037,
+ 7042
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 16
},
"end": {
- "line": 247,
+ "line": 214,
"column": 21
}
}
@@ -18987,16 +16185,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 8391,
- 8394
+ 7045,
+ 7048
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 24
},
"end": {
- "line": 247,
+ "line": 214,
"column": 27
}
}
@@ -19005,31 +16203,31 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 8395,
- 8400
+ 7049,
+ 7054
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 28
},
"end": {
- "line": 247,
+ "line": 214,
"column": 33
}
}
},
"range": [
- 8391,
- 8400
+ 7045,
+ 7054
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 24
},
"end": {
- "line": 247,
+ "line": 214,
"column": 33
}
}
@@ -19038,31 +16236,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 8401,
- 8405
+ 7055,
+ 7059
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 34
},
"end": {
- "line": 247,
+ "line": 214,
"column": 38
}
}
},
"range": [
- 8391,
- 8405
+ 7045,
+ 7059
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 24
},
"end": {
- "line": 247,
+ "line": 214,
"column": 38
}
}
@@ -19074,16 +16272,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 8406,
- 8409
+ 7060,
+ 7063
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 39
},
"end": {
- "line": 247,
+ "line": 214,
"column": 42
}
}
@@ -19092,46 +16290,46 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 8410,
- 8420
+ 7064,
+ 7074
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 43
},
"end": {
- "line": 247,
+ "line": 214,
"column": 53
}
}
},
"range": [
- 8406,
- 8420
+ 7060,
+ 7074
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 39
},
"end": {
- "line": 247,
+ "line": 214,
"column": 53
}
}
},
"range": [
- 8391,
- 8421
+ 7045,
+ 7075
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 24
},
"end": {
- "line": 247,
+ "line": 214,
"column": 54
}
}
@@ -19140,61 +16338,61 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8422,
- 8427
+ 7076,
+ 7081
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 55
},
"end": {
- "line": 247,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 8391,
- 8427
+ 7045,
+ 7081
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 24
},
"end": {
- "line": 247,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 8383,
- 8427
+ 7037,
+ 7081
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 16
},
"end": {
- "line": 247,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 8383,
- 8428
+ 7037,
+ 7082
],
"loc": {
"start": {
- "line": 247,
+ "line": 214,
"column": 16
},
"end": {
- "line": 247,
+ "line": 214,
"column": 61
}
}
@@ -19208,16 +16406,16 @@
"type": "Identifier",
"name": "l",
"range": [
- 8445,
- 8446
+ 7099,
+ 7100
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 16
},
"end": {
- "line": 248,
+ "line": 215,
"column": 17
}
}
@@ -19229,16 +16427,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8449,
- 8454
+ 7103,
+ 7108
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 20
},
"end": {
- "line": 248,
+ "line": 215,
"column": 25
}
}
@@ -19247,92 +16445,92 @@
"type": "Identifier",
"name": "length",
"range": [
- 8455,
- 8461
+ 7109,
+ 7115
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 26
},
"end": {
- "line": 248,
+ "line": 215,
"column": 32
}
}
},
"range": [
- 8449,
- 8461
+ 7103,
+ 7115
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 20
},
"end": {
- "line": 248,
+ "line": 215,
"column": 32
}
}
},
"range": [
- 8445,
- 8461
+ 7099,
+ 7115
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 16
},
"end": {
- "line": 248,
+ "line": 215,
"column": 32
}
}
},
"range": [
- 8445,
- 8462
+ 7099,
+ 7116
],
"loc": {
"start": {
- "line": 248,
+ "line": 215,
"column": 16
},
"end": {
- "line": 248,
+ "line": 215,
"column": 33
}
}
}
],
"range": [
- 8286,
- 8476
+ 6940,
+ 7130
],
"loc": {
"start": {
- "line": 243,
+ "line": 210,
"column": 19
},
"end": {
- "line": 249,
+ "line": 216,
"column": 13
}
}
},
"range": [
- 7979,
- 8476
+ 6633,
+ 7130
],
"loc": {
"start": {
- "line": 236,
+ "line": 203,
"column": 12
},
"end": {
- "line": 249,
+ "line": 216,
"column": 13
}
},
@@ -19341,16 +16539,16 @@
"type": "Line",
"value": " external headers",
"range": [
- 7947,
- 7966
+ 6601,
+ 6620
],
"loc": {
"start": {
- "line": 235,
+ "line": 202,
"column": 12
},
"end": {
- "line": 235,
+ "line": 202,
"column": 31
}
}
@@ -19368,16 +16566,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 8497,
- 8498
+ 7151,
+ 7152
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 20
},
"end": {
- "line": 250,
+ "line": 217,
"column": 21
}
}
@@ -19387,31 +16585,31 @@
"value": 0,
"raw": "0",
"range": [
- 8501,
- 8502
+ 7155,
+ 7156
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 24
},
"end": {
- "line": 250,
+ "line": 217,
"column": 25
}
}
},
"range": [
- 8497,
- 8502
+ 7151,
+ 7156
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 20
},
"end": {
- "line": 250,
+ "line": 217,
"column": 25
}
}
@@ -19419,16 +16617,16 @@
],
"kind": "let",
"range": [
- 8493,
- 8502
+ 7147,
+ 7156
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 16
},
"end": {
- "line": 250,
+ "line": 217,
"column": 25
}
}
@@ -19440,16 +16638,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 8504,
- 8505
+ 7158,
+ 7159
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 27
},
"end": {
- "line": 250,
+ "line": 217,
"column": 28
}
}
@@ -19458,31 +16656,31 @@
"type": "Identifier",
"name": "l",
"range": [
- 8508,
- 8509
+ 7162,
+ 7163
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 31
},
"end": {
- "line": 250,
+ "line": 217,
"column": 32
}
}
},
"range": [
- 8504,
- 8509
+ 7158,
+ 7163
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 27
},
"end": {
- "line": 250,
+ "line": 217,
"column": 32
}
}
@@ -19494,32 +16692,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 8511,
- 8512
+ 7165,
+ 7166
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 34
},
"end": {
- "line": 250,
+ "line": 217,
"column": 35
}
}
},
"prefix": false,
"range": [
- 8511,
- 8514
+ 7165,
+ 7168
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 34
},
"end": {
- "line": 250,
+ "line": 217,
"column": 37
}
}
@@ -19536,16 +16734,16 @@
"type": "Identifier",
"name": "cellAttr",
"range": [
- 8537,
- 8545
+ 7191,
+ 7199
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 20
},
"end": {
- "line": 251,
+ "line": 218,
"column": 28
}
}
@@ -19562,16 +16760,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8548,
- 8553
+ 7202,
+ 7207
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 31
},
"end": {
- "line": 251,
+ "line": 218,
"column": 36
}
}
@@ -19580,31 +16778,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 8554,
- 8555
+ 7208,
+ 7209
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 37
},
"end": {
- "line": 251,
+ "line": 218,
"column": 38
}
}
},
"range": [
- 8548,
- 8556
+ 7202,
+ 7210
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 31
},
"end": {
- "line": 251,
+ "line": 218,
"column": 39
}
}
@@ -19613,31 +16811,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 8557,
- 8569
+ 7211,
+ 7223
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 40
},
"end": {
- "line": 251,
+ "line": 218,
"column": 52
}
}
},
"range": [
- 8548,
- 8569
+ 7202,
+ 7223
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 31
},
"end": {
- "line": 251,
+ "line": 218,
"column": 52
}
}
@@ -19648,47 +16846,47 @@
"value": "_sortType",
"raw": "'_sortType'",
"range": [
- 8570,
- 8581
+ 7224,
+ 7235
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 53
},
"end": {
- "line": 251,
+ "line": 218,
"column": 64
}
}
}
],
"range": [
- 8548,
- 8582
+ 7202,
+ 7236
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 31
},
"end": {
- "line": 251,
+ "line": 218,
"column": 65
}
}
},
"range": [
- 8537,
- 8582
+ 7191,
+ 7236
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 20
},
"end": {
- "line": 251,
+ "line": 218,
"column": 65
}
}
@@ -19696,16 +16894,16 @@
],
"kind": "let",
"range": [
- 8533,
- 8583
+ 7187,
+ 7237
],
"loc": {
"start": {
- "line": 251,
+ "line": 218,
"column": 16
},
"end": {
- "line": 251,
+ "line": 218,
"column": 66
}
}
@@ -19722,16 +16920,16 @@
"type": "Identifier",
"name": "cellAttr",
"range": [
- 8603,
- 8611
+ 7257,
+ 7265
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 19
},
"end": {
- "line": 252,
+ "line": 219,
"column": 27
}
}
@@ -19741,31 +16939,31 @@
"value": null,
"raw": "null",
"range": [
- 8616,
- 8620
+ 7270,
+ 7274
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 32
},
"end": {
- "line": 252,
+ "line": 219,
"column": 36
}
}
},
"range": [
- 8603,
- 8620
+ 7257,
+ 7274
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 19
},
"end": {
- "line": 252,
+ "line": 219,
"column": 36
}
}
@@ -19777,16 +16975,16 @@
"type": "Identifier",
"name": "cellAttr",
"range": [
- 8624,
- 8632
+ 7278,
+ 7286
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 40
},
"end": {
- "line": 252,
+ "line": 219,
"column": 48
}
}
@@ -19796,46 +16994,46 @@
"value": "None",
"raw": "'None'",
"range": [
- 8637,
- 8643
+ 7291,
+ 7297
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 53
},
"end": {
- "line": 252,
+ "line": 219,
"column": 59
}
}
},
"range": [
- 8624,
- 8643
+ 7278,
+ 7297
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 40
},
"end": {
- "line": 252,
+ "line": 219,
"column": 59
}
}
},
"range": [
- 8603,
- 8643
+ 7257,
+ 7297
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 19
},
"end": {
- "line": 252,
+ "line": 219,
"column": 59
}
}
@@ -19852,16 +17050,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 8666,
- 8669
+ 7320,
+ 7323
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 20
},
"end": {
- "line": 253,
+ "line": 220,
"column": 23
}
}
@@ -19879,16 +17077,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8672,
- 8677
+ 7326,
+ 7331
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 26
},
"end": {
- "line": 253,
+ "line": 220,
"column": 31
}
}
@@ -19897,31 +17095,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 8678,
- 8679
+ 7332,
+ 7333
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 32
},
"end": {
- "line": 253,
+ "line": 220,
"column": 33
}
}
},
"range": [
- 8672,
- 8680
+ 7326,
+ 7334
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 26
},
"end": {
- "line": 253,
+ "line": 220,
"column": 34
}
}
@@ -19930,31 +17128,31 @@
"type": "Identifier",
"name": "lastChild",
"range": [
- 8681,
- 8690
+ 7335,
+ 7344
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 35
},
"end": {
- "line": 253,
+ "line": 220,
"column": 44
}
}
},
"range": [
- 8672,
- 8690
+ 7326,
+ 7344
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 26
},
"end": {
- "line": 253,
+ "line": 220,
"column": 44
}
}
@@ -19966,16 +17164,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8694,
- 8699
+ 7348,
+ 7353
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 48
},
"end": {
- "line": 253,
+ "line": 220,
"column": 53
}
}
@@ -19984,76 +17182,76 @@
"type": "Identifier",
"name": "i",
"range": [
- 8700,
- 8701
+ 7354,
+ 7355
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 54
},
"end": {
- "line": 253,
+ "line": 220,
"column": 55
}
}
},
"range": [
- 8694,
- 8702
+ 7348,
+ 7356
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 48
},
"end": {
- "line": 253,
+ "line": 220,
"column": 56
}
}
},
"range": [
- 8672,
- 8702
+ 7326,
+ 7356
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 26
},
"end": {
- "line": 253,
+ "line": 220,
"column": 56
}
}
},
"range": [
- 8666,
- 8702
+ 7320,
+ 7356
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 20
},
"end": {
- "line": 253,
+ "line": 220,
"column": 56
}
}
},
"range": [
- 8666,
- 8703
+ 7320,
+ 7357
],
"loc": {
"start": {
- "line": 253,
+ "line": 220,
"column": 20
},
"end": {
- "line": 253,
+ "line": 220,
"column": 57
}
}
@@ -20075,16 +17273,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 8727,
- 8730
+ 7381,
+ 7384
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 23
},
"end": {
- "line": 254,
+ "line": 221,
"column": 26
}
}
@@ -20093,31 +17291,31 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 8731,
- 8739
+ 7385,
+ 7393
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 27
},
"end": {
- "line": 254,
+ "line": 221,
"column": 35
}
}
},
"range": [
- 8727,
- 8739
+ 7381,
+ 7393
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 23
},
"end": {
- "line": 254,
+ "line": 221,
"column": 35
}
}
@@ -20126,47 +17324,47 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 8740,
- 8751
+ 7394,
+ 7405
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 36
},
"end": {
- "line": 254,
+ "line": 221,
"column": 47
}
}
},
"range": [
- 8727,
- 8751
+ 7381,
+ 7405
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 23
},
"end": {
- "line": 254,
+ "line": 221,
"column": 47
}
}
},
"arguments": [],
"range": [
- 8727,
- 8753
+ 7381,
+ 7407
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 23
},
"end": {
- "line": 254,
+ "line": 221,
"column": 49
}
}
@@ -20176,31 +17374,31 @@
"value": "img",
"raw": "'img'",
"range": [
- 8758,
- 8763
+ 7412,
+ 7417
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 54
},
"end": {
- "line": 254,
+ "line": 221,
"column": 59
}
}
},
"range": [
- 8727,
- 8763
+ 7381,
+ 7417
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 23
},
"end": {
- "line": 254,
+ "line": 221,
"column": 59
}
}
@@ -20217,16 +17415,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 8790,
- 8793
+ 7444,
+ 7447
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 24
},
"end": {
- "line": 255,
+ "line": 222,
"column": 27
}
}
@@ -20240,16 +17438,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8796,
- 8799
+ 7450,
+ 7453
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 30
},
"end": {
- "line": 255,
+ "line": 222,
"column": 33
}
}
@@ -20258,31 +17456,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 8800,
- 8806
+ 7454,
+ 7460
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 34
},
"end": {
- "line": 255,
+ "line": 222,
"column": 40
}
}
},
"range": [
- 8796,
- 8806
+ 7450,
+ 7460
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 30
},
"end": {
- "line": 255,
+ "line": 222,
"column": 40
}
}
@@ -20293,16 +17491,16 @@
"value": "img",
"raw": "'img'",
"range": [
- 8807,
- 8812
+ 7461,
+ 7466
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 41
},
"end": {
- "line": 255,
+ "line": 222,
"column": 46
}
}
@@ -20315,16 +17513,16 @@
"value": "src",
"raw": "'src'",
"range": [
- 8843,
- 8848
+ 7497,
+ 7502
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 29
},
"end": {
- "line": 256,
+ "line": 223,
"column": 34
}
}
@@ -20339,16 +17537,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 8850,
- 8854
+ 7504,
+ 7508
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 36
},
"end": {
- "line": 256,
+ "line": 223,
"column": 40
}
}
@@ -20357,31 +17555,31 @@
"type": "Identifier",
"name": "imgPath",
"range": [
- 8855,
- 8862
+ 7509,
+ 7516
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 41
},
"end": {
- "line": 256,
+ "line": 223,
"column": 48
}
}
},
"range": [
- 8850,
- 8862
+ 7504,
+ 7516
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 36
},
"end": {
- "line": 256,
+ "line": 223,
"column": 48
}
}
@@ -20393,16 +17591,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 8865,
- 8869
+ 7519,
+ 7523
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 51
},
"end": {
- "line": 256,
+ "line": 223,
"column": 55
}
}
@@ -20411,108 +17609,108 @@
"type": "Identifier",
"name": "imgBlank",
"range": [
- 8870,
- 8878
+ 7524,
+ 7532
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 56
},
"end": {
- "line": 256,
+ "line": 223,
"column": 64
}
}
},
"range": [
- 8865,
- 8878
+ 7519,
+ 7532
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 51
},
"end": {
- "line": 256,
+ "line": 223,
"column": 64
}
}
},
"range": [
- 8850,
- 8878
+ 7504,
+ 7532
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 36
},
"end": {
- "line": 256,
+ "line": 223,
"column": 64
}
}
}
],
"range": [
- 8842,
- 8879
+ 7496,
+ 7533
],
"loc": {
"start": {
- "line": 256,
+ "line": 223,
"column": 28
},
"end": {
- "line": 256,
+ "line": 223,
"column": 65
}
}
}
],
"range": [
- 8796,
- 8880
+ 7450,
+ 7534
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 30
},
"end": {
- "line": 256,
+ "line": 223,
"column": 66
}
}
},
"range": [
- 8790,
- 8880
+ 7444,
+ 7534
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 24
},
"end": {
- "line": 256,
+ "line": 223,
"column": 66
}
}
},
"range": [
- 8790,
- 8881
+ 7444,
+ 7535
],
"loc": {
"start": {
- "line": 255,
+ "line": 222,
"column": 24
},
"end": {
- "line": 256,
+ "line": 223,
"column": 67
}
}
@@ -20531,16 +17729,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 8906,
- 8911
+ 7560,
+ 7565
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 24
},
"end": {
- "line": 257,
+ "line": 224,
"column": 29
}
}
@@ -20549,31 +17747,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 8912,
- 8913
+ 7566,
+ 7567
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 30
},
"end": {
- "line": 257,
+ "line": 224,
"column": 31
}
}
},
"range": [
- 8906,
- 8914
+ 7560,
+ 7568
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 24
},
"end": {
- "line": 257,
+ "line": 224,
"column": 32
}
}
@@ -20582,31 +17780,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 8915,
- 8926
+ 7569,
+ 7580
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 33
},
"end": {
- "line": 257,
+ "line": 224,
"column": 44
}
}
},
"range": [
- 8906,
- 8926
+ 7560,
+ 7580
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 24
},
"end": {
- "line": 257,
+ "line": 224,
"column": 44
}
}
@@ -20616,79 +17814,79 @@
"type": "Identifier",
"name": "img",
"range": [
- 8927,
- 8930
+ 7581,
+ 7584
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 45
},
"end": {
- "line": 257,
+ "line": 224,
"column": 48
}
}
}
],
"range": [
- 8906,
- 8931
+ 7560,
+ 7585
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 24
},
"end": {
- "line": 257,
+ "line": 224,
"column": 49
}
}
},
"range": [
- 8906,
- 8932
+ 7560,
+ 7586
],
"loc": {
"start": {
- "line": 257,
+ "line": 224,
"column": 24
},
"end": {
- "line": 257,
+ "line": 224,
"column": 50
}
}
}
],
"range": [
- 8764,
- 8954
+ 7418,
+ 7608
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 60
},
"end": {
- "line": 258,
+ "line": 225,
"column": 21
}
}
},
"alternate": null,
"range": [
- 8724,
- 8954
+ 7378,
+ 7608
],
"loc": {
"start": {
- "line": 254,
+ "line": 221,
"column": 20
},
"end": {
- "line": 258,
+ "line": 225,
"column": 21
}
}
@@ -20702,16 +17900,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 8979,
- 8980
+ 7633,
+ 7634
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 24
},
"end": {
- "line": 259,
+ "line": 226,
"column": 25
}
}
@@ -20723,16 +17921,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 8985,
- 8988
+ 7639,
+ 7642
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 30
},
"end": {
- "line": 259,
+ "line": 226,
"column": 33
}
}
@@ -20741,46 +17939,46 @@
"type": "Identifier",
"name": "sortColumn",
"range": [
- 8989,
- 8999
+ 7643,
+ 7653
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 34
},
"end": {
- "line": 259,
+ "line": 226,
"column": 44
}
}
},
"range": [
- 8985,
- 8999
+ 7639,
+ 7653
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 30
},
"end": {
- "line": 259,
+ "line": 226,
"column": 44
}
}
},
"range": [
- 8979,
- 8999
+ 7633,
+ 7653
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 24
},
"end": {
- "line": 259,
+ "line": 226,
"column": 44
}
}
@@ -20800,16 +17998,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 9026,
- 9029
+ 7680,
+ 7683
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 24
},
"end": {
- "line": 260,
+ "line": 227,
"column": 27
}
}
@@ -20818,31 +18016,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 9030,
- 9039
+ 7684,
+ 7693
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 28
},
"end": {
- "line": 260,
+ "line": 227,
"column": 37
}
}
},
"range": [
- 9026,
- 9039
+ 7680,
+ 7693
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 24
},
"end": {
- "line": 260,
+ "line": 227,
"column": 37
}
}
@@ -20860,16 +18058,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 9042,
- 9046
+ 7696,
+ 7700
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 40
},
"end": {
- "line": 260,
+ "line": 227,
"column": 44
}
}
@@ -20878,31 +18076,31 @@
"type": "Identifier",
"name": "imgClassName",
"range": [
- 9047,
- 9059
+ 7701,
+ 7713
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 45
},
"end": {
- "line": 260,
+ "line": 227,
"column": 57
}
}
},
"range": [
- 9042,
- 9059
+ 7696,
+ 7713
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 40
},
"end": {
- "line": 260,
+ "line": 227,
"column": 57
}
}
@@ -20912,31 +18110,31 @@
"value": " ",
"raw": "' '",
"range": [
- 9061,
- 9064
+ 7715,
+ 7718
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 59
},
"end": {
- "line": 260,
+ "line": 227,
"column": 62
}
}
},
"range": [
- 9042,
- 9064
+ 7696,
+ 7718
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 40
},
"end": {
- "line": 260,
+ "line": 227,
"column": 62
}
}
@@ -20949,16 +18147,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9095,
- 9099
+ 7749,
+ 7753
],
"loc": {
"start": {
- "line": 261,
+ "line": 228,
"column": 29
},
"end": {
- "line": 261,
+ "line": 228,
"column": 33
}
}
@@ -20967,31 +18165,31 @@
"type": "Identifier",
"name": "descending",
"range": [
- 9100,
- 9110
+ 7754,
+ 7764
],
"loc": {
"start": {
- "line": 261,
+ "line": 228,
"column": 34
},
"end": {
- "line": 261,
+ "line": 228,
"column": 44
}
}
},
"range": [
- 9095,
- 9110
+ 7749,
+ 7764
],
"loc": {
"start": {
- "line": 261,
+ "line": 228,
"column": 29
},
"end": {
- "line": 261,
+ "line": 228,
"column": 44
}
}
@@ -21003,16 +18201,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 9145,
- 9149
+ 7799,
+ 7803
],
"loc": {
"start": {
- "line": 262,
+ "line": 229,
"column": 32
},
"end": {
- "line": 262,
+ "line": 229,
"column": 36
}
}
@@ -21021,31 +18219,31 @@
"type": "Identifier",
"name": "imgDescClassName",
"range": [
- 9150,
- 9166
+ 7804,
+ 7820
],
"loc": {
"start": {
- "line": 262,
+ "line": 229,
"column": 37
},
"end": {
- "line": 262,
+ "line": 229,
"column": 53
}
}
},
"range": [
- 9145,
- 9166
+ 7799,
+ 7820
],
"loc": {
"start": {
- "line": 262,
+ "line": 229,
"column": 32
},
"end": {
- "line": 262,
+ "line": 229,
"column": 53
}
}
@@ -21057,16 +18255,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 9201,
- 9205
+ 7855,
+ 7859
],
"loc": {
"start": {
- "line": 263,
+ "line": 230,
"column": 32
},
"end": {
- "line": 263,
+ "line": 230,
"column": 36
}
}
@@ -21075,107 +18273,107 @@
"type": "Identifier",
"name": "imgAscClassName",
"range": [
- 9206,
- 9221
+ 7860,
+ 7875
],
"loc": {
"start": {
- "line": 263,
+ "line": 230,
"column": 37
},
"end": {
- "line": 263,
+ "line": 230,
"column": 52
}
}
},
"range": [
- 9201,
- 9221
+ 7855,
+ 7875
],
"loc": {
"start": {
- "line": 263,
+ "line": 230,
"column": 32
},
"end": {
- "line": 263,
+ "line": 230,
"column": 52
}
}
},
"range": [
- 9095,
- 9221
+ 7749,
+ 7875
],
"loc": {
"start": {
- "line": 261,
+ "line": 228,
"column": 29
},
"end": {
- "line": 263,
+ "line": 230,
"column": 52
}
}
},
"range": [
- 9042,
- 9222
+ 7696,
+ 7876
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 40
},
"end": {
- "line": 263,
+ "line": 230,
"column": 53
}
}
},
"range": [
- 9026,
- 9222
+ 7680,
+ 7876
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 24
},
"end": {
- "line": 263,
+ "line": 230,
"column": 53
}
}
},
"range": [
- 9026,
- 9223
+ 7680,
+ 7877
],
"loc": {
"start": {
- "line": 260,
+ "line": 227,
"column": 24
},
"end": {
- "line": 263,
+ "line": 230,
"column": 54
}
}
}
],
"range": [
- 9000,
- 9245
+ 7654,
+ 7899
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 45
},
"end": {
- "line": 264,
+ "line": 231,
"column": 21
}
}
@@ -21195,16 +18393,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 9276,
- 9279
+ 7930,
+ 7933
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 24
},
"end": {
- "line": 265,
+ "line": 232,
"column": 27
}
}
@@ -21213,31 +18411,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 9280,
- 9289
+ 7934,
+ 7943
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 28
},
"end": {
- "line": 265,
+ "line": 232,
"column": 37
}
}
},
"range": [
- 9276,
- 9289
+ 7930,
+ 7943
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 24
},
"end": {
- "line": 265,
+ "line": 232,
"column": 37
}
}
@@ -21249,16 +18447,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 9292,
- 9296
+ 7946,
+ 7950
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 40
},
"end": {
- "line": 265,
+ "line": 232,
"column": 44
}
}
@@ -21267,171 +18465,171 @@
"type": "Identifier",
"name": "imgClassName",
"range": [
- 9297,
- 9309
+ 7951,
+ 7963
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 45
},
"end": {
- "line": 265,
+ "line": 232,
"column": 57
}
}
},
"range": [
- 9292,
- 9309
+ 7946,
+ 7963
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 40
},
"end": {
- "line": 265,
+ "line": 232,
"column": 57
}
}
},
"range": [
- 9276,
- 9309
+ 7930,
+ 7963
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 24
},
"end": {
- "line": 265,
+ "line": 232,
"column": 57
}
}
},
"range": [
- 9276,
- 9310
+ 7930,
+ 7964
],
"loc": {
"start": {
- "line": 265,
+ "line": 232,
"column": 24
},
"end": {
- "line": 265,
+ "line": 232,
"column": 58
}
}
}
],
"range": [
- 9250,
- 9332
+ 7904,
+ 7986
],
"loc": {
"start": {
- "line": 264,
+ "line": 231,
"column": 26
},
"end": {
- "line": 266,
+ "line": 233,
"column": 21
}
}
},
"range": [
- 8975,
- 9332
+ 7629,
+ 7986
],
"loc": {
"start": {
- "line": 259,
+ "line": 226,
"column": 20
},
"end": {
- "line": 266,
+ "line": 233,
"column": 21
}
}
}
],
"range": [
- 8644,
- 9350
+ 7298,
+ 8004
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 60
},
"end": {
- "line": 267,
+ "line": 234,
"column": 17
}
}
},
"alternate": null,
"range": [
- 8600,
- 9350
+ 7254,
+ 8004
],
"loc": {
"start": {
- "line": 252,
+ "line": 219,
"column": 16
},
"end": {
- "line": 267,
+ "line": 234,
"column": 17
}
}
}
],
"range": [
- 8515,
- 9364
+ 7169,
+ 8018
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 38
},
"end": {
- "line": 268,
+ "line": 235,
"column": 13
}
}
},
"range": [
- 8489,
- 9364
+ 7143,
+ 8018
],
"loc": {
"start": {
- "line": 250,
+ "line": 217,
"column": 12
},
"end": {
- "line": 268,
+ "line": 235,
"column": 13
}
}
}
],
"range": [
- 7873,
- 9374
+ 6527,
+ 8028
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 63
},
"end": {
- "line": 269,
+ "line": 236,
"column": 9
}
}
@@ -21439,46 +18637,46 @@
"generator": false,
"expression": false,
"range": [
- 7863,
- 9374
+ 6517,
+ 8028
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 53
},
"end": {
- "line": 269,
+ "line": 236,
"column": 9
}
}
},
"range": [
- 7818,
- 9374
+ 6472,
+ 8028
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 8
},
"end": {
- "line": 269,
+ "line": 236,
"column": 9
}
}
},
"range": [
- 7818,
- 9375
+ 6472,
+ 8029
],
"loc": {
"start": {
- "line": 231,
+ "line": 198,
"column": 8
},
"end": {
- "line": 269,
+ "line": 236,
"column": 10
}
},
@@ -21487,16 +18685,16 @@
"type": "Block",
"value": "*\n * Overrides updateHeaderArrows in order to handle arrows indicators\n ",
"range": [
- 7717,
- 7809
+ 6371,
+ 6463
],
"loc": {
"start": {
- "line": 228,
+ "line": 195,
"column": 8
},
"end": {
- "line": 230,
+ "line": 197,
"column": 11
}
}
@@ -21507,16 +18705,16 @@
"type": "Block",
"value": "*\n * Overrides getRowValue for custom key value feature\n * @param {Object} oRow Row element\n * @param {String} sType\n * @param {Number} nColumn\n * @return {String}\n ",
"range": [
- 9385,
- 9608
+ 8039,
+ 8262
],
"loc": {
"start": {
- "line": 271,
+ "line": 238,
"column": 8
},
"end": {
- "line": 277,
+ "line": 244,
"column": 11
}
}
@@ -21538,16 +18736,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 9617,
- 9630
+ 8271,
+ 8284
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 8
},
"end": {
- "line": 278,
+ "line": 245,
"column": 21
}
}
@@ -21556,31 +18754,31 @@
"type": "Identifier",
"name": "prototype",
"range": [
- 9631,
- 9640
+ 8285,
+ 8294
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 22
},
"end": {
- "line": 278,
+ "line": 245,
"column": 31
}
}
},
"range": [
- 9617,
- 9640
+ 8271,
+ 8294
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 8
},
"end": {
- "line": 278,
+ "line": 245,
"column": 31
}
}
@@ -21589,31 +18787,31 @@
"type": "Identifier",
"name": "getRowValue",
"range": [
- 9641,
- 9652
+ 8295,
+ 8306
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 32
},
"end": {
- "line": 278,
+ "line": 245,
"column": 43
}
}
},
"range": [
- 9617,
- 9652
+ 8271,
+ 8306
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 8
},
"end": {
- "line": 278,
+ "line": 245,
"column": 43
}
}
@@ -21626,16 +18824,16 @@
"type": "Identifier",
"name": "oRow",
"range": [
- 9664,
- 9668
+ 8318,
+ 8322
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 55
},
"end": {
- "line": 278,
+ "line": 245,
"column": 59
}
}
@@ -21644,16 +18842,16 @@
"type": "Identifier",
"name": "sType",
"range": [
- 9670,
- 9675
+ 8324,
+ 8329
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 61
},
"end": {
- "line": 278,
+ "line": 245,
"column": 66
}
}
@@ -21662,16 +18860,16 @@
"type": "Identifier",
"name": "nColumn",
"range": [
- 9677,
- 9684
+ 8331,
+ 8338
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 68
},
"end": {
- "line": 278,
+ "line": 245,
"column": 75
}
}
@@ -21689,16 +18887,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 9703,
- 9706
+ 8357,
+ 8360
],
"loc": {
"start": {
- "line": 279,
+ "line": 246,
"column": 16
},
"end": {
- "line": 279,
+ "line": 246,
"column": 19
}
}
@@ -21706,31 +18904,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 9709,
- 9713
+ 8363,
+ 8367
],
"loc": {
"start": {
- "line": 279,
+ "line": 246,
"column": 22
},
"end": {
- "line": 279,
+ "line": 246,
"column": 26
}
}
},
"range": [
- 9703,
- 9713
+ 8357,
+ 8367
],
"loc": {
"start": {
- "line": 279,
+ "line": 246,
"column": 16
},
"end": {
- "line": 279,
+ "line": 246,
"column": 26
}
}
@@ -21738,16 +18936,16 @@
],
"kind": "let",
"range": [
- 9699,
- 9714
+ 8353,
+ 8368
],
"loc": {
"start": {
- "line": 279,
+ "line": 246,
"column": 12
},
"end": {
- "line": 279,
+ "line": 246,
"column": 27
}
},
@@ -21756,16 +18954,16 @@
"type": "Line",
"value": " if we have defined a custom getRowValue use that",
"range": [
- 9727,
- 9778
+ 8381,
+ 8432
],
"loc": {
"start": {
- "line": 280,
+ "line": 247,
"column": 12
},
"end": {
- "line": 280,
+ "line": 247,
"column": 63
}
}
@@ -21781,16 +18979,16 @@
"type": "Identifier",
"name": "sortTypeInfo",
"range": [
- 9795,
- 9807
+ 8449,
+ 8461
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 16
},
"end": {
- "line": 281,
+ "line": 248,
"column": 28
}
}
@@ -21805,16 +19003,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 9810,
- 9813
+ 8464,
+ 8467
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 31
},
"end": {
- "line": 281,
+ "line": 248,
"column": 34
}
}
@@ -21823,31 +19021,31 @@
"type": "Identifier",
"name": "_sortTypeInfo",
"range": [
- 9814,
- 9827
+ 8468,
+ 8481
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 35
},
"end": {
- "line": 281,
+ "line": 248,
"column": 48
}
}
},
"range": [
- 9810,
- 9827
+ 8464,
+ 8481
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 31
},
"end": {
- "line": 281,
+ "line": 248,
"column": 48
}
}
@@ -21856,46 +19054,46 @@
"type": "Identifier",
"name": "sType",
"range": [
- 9828,
- 9833
+ 8482,
+ 8487
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 49
},
"end": {
- "line": 281,
+ "line": 248,
"column": 54
}
}
},
"range": [
- 9810,
- 9834
+ 8464,
+ 8488
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 31
},
"end": {
- "line": 281,
+ "line": 248,
"column": 55
}
}
},
"range": [
- 9795,
- 9834
+ 8449,
+ 8488
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 16
},
"end": {
- "line": 281,
+ "line": 248,
"column": 55
}
}
@@ -21903,16 +19101,16 @@
],
"kind": "let",
"range": [
- 9791,
- 9835
+ 8445,
+ 8489
],
"loc": {
"start": {
- "line": 281,
+ "line": 248,
"column": 12
},
"end": {
- "line": 281,
+ "line": 248,
"column": 56
}
},
@@ -21921,16 +19119,16 @@
"type": "Line",
"value": " if we have defined a custom getRowValue use that",
"range": [
- 9727,
- 9778
+ 8381,
+ 8432
],
"loc": {
"start": {
- "line": 280,
+ "line": 247,
"column": 12
},
"end": {
- "line": 280,
+ "line": 247,
"column": 63
}
}
@@ -21946,16 +19144,16 @@
"type": "Identifier",
"name": "sortTypeInfo",
"range": [
- 9852,
- 9864
+ 8506,
+ 8518
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 16
},
"end": {
- "line": 282,
+ "line": 249,
"column": 28
}
}
@@ -21967,16 +19165,16 @@
"type": "Identifier",
"name": "sortTypeInfo",
"range": [
- 9868,
- 9880
+ 8522,
+ 8534
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 32
},
"end": {
- "line": 282,
+ "line": 249,
"column": 44
}
}
@@ -21985,46 +19183,46 @@
"type": "Identifier",
"name": "getRowValue",
"range": [
- 9881,
- 9892
+ 8535,
+ 8546
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 45
},
"end": {
- "line": 282,
+ "line": 249,
"column": 56
}
}
},
"range": [
- 9868,
- 9892
+ 8522,
+ 8546
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 32
},
"end": {
- "line": 282,
+ "line": 249,
"column": 56
}
}
},
"range": [
- 9852,
- 9892
+ 8506,
+ 8546
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 16
},
"end": {
- "line": 282,
+ "line": 249,
"column": 56
}
}
@@ -22043,16 +19241,16 @@
"type": "Identifier",
"name": "sortTypeInfo",
"range": [
- 9918,
- 9930
+ 8572,
+ 8584
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 23
},
"end": {
- "line": 283,
+ "line": 250,
"column": 35
}
}
@@ -22061,31 +19259,31 @@
"type": "Identifier",
"name": "getRowValue",
"range": [
- 9931,
- 9942
+ 8585,
+ 8596
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 36
},
"end": {
- "line": 283,
+ "line": 250,
"column": 47
}
}
},
"range": [
- 9918,
- 9942
+ 8572,
+ 8596
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 23
},
"end": {
- "line": 283,
+ "line": 250,
"column": 47
}
}
@@ -22095,16 +19293,16 @@
"type": "Identifier",
"name": "oRow",
"range": [
- 9943,
- 9947
+ 8597,
+ 8601
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 48
},
"end": {
- "line": 283,
+ "line": 250,
"column": 52
}
}
@@ -22113,79 +19311,79 @@
"type": "Identifier",
"name": "nColumn",
"range": [
- 9949,
- 9956
+ 8603,
+ 8610
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 54
},
"end": {
- "line": 283,
+ "line": 250,
"column": 61
}
}
}
],
"range": [
- 9918,
- 9957
+ 8572,
+ 8611
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 23
},
"end": {
- "line": 283,
+ "line": 250,
"column": 62
}
}
},
"range": [
- 9911,
- 9958
+ 8565,
+ 8612
],
"loc": {
"start": {
- "line": 283,
+ "line": 250,
"column": 16
},
"end": {
- "line": 283,
+ "line": 250,
"column": 63
}
}
}
],
"range": [
- 9893,
- 9972
+ 8547,
+ 8626
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 57
},
"end": {
- "line": 284,
+ "line": 251,
"column": 13
}
}
},
"alternate": null,
"range": [
- 9848,
- 9972
+ 8502,
+ 8626
],
"loc": {
"start": {
- "line": 282,
+ "line": 249,
"column": 12
},
"end": {
- "line": 284,
+ "line": 251,
"column": 13
}
}
@@ -22199,16 +19397,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 9989,
- 9990
+ 8643,
+ 8644
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 16
},
"end": {
- "line": 285,
+ "line": 252,
"column": 17
}
}
@@ -22223,16 +19421,16 @@
"type": "Identifier",
"name": "oRow",
"range": [
- 9993,
- 9997
+ 8647,
+ 8651
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 20
},
"end": {
- "line": 285,
+ "line": 252,
"column": 24
}
}
@@ -22241,31 +19439,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 9998,
- 10003
+ 8652,
+ 8657
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 25
},
"end": {
- "line": 285,
+ "line": 252,
"column": 30
}
}
},
"range": [
- 9993,
- 10003
+ 8647,
+ 8657
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 20
},
"end": {
- "line": 285,
+ "line": 252,
"column": 30
}
}
@@ -22274,46 +19472,46 @@
"type": "Identifier",
"name": "nColumn",
"range": [
- 10004,
- 10011
+ 8658,
+ 8665
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 31
},
"end": {
- "line": 285,
+ "line": 252,
"column": 38
}
}
},
"range": [
- 9993,
- 10012
+ 8647,
+ 8666
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 20
},
"end": {
- "line": 285,
+ "line": 252,
"column": 39
}
}
},
"range": [
- 9989,
- 10012
+ 8643,
+ 8666
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 16
},
"end": {
- "line": 285,
+ "line": 252,
"column": 39
}
}
@@ -22321,16 +19519,16 @@
],
"kind": "let",
"range": [
- 9985,
- 10013
+ 8639,
+ 8667
],
"loc": {
"start": {
- "line": 285,
+ "line": 252,
"column": 12
},
"end": {
- "line": 285,
+ "line": 252,
"column": 40
}
}
@@ -22344,16 +19542,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 10030,
- 10031
+ 8684,
+ 8685
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 16
},
"end": {
- "line": 286,
+ "line": 253,
"column": 17
}
}
@@ -22367,16 +19565,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 10034,
- 10047
+ 8688,
+ 8701
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 20
},
"end": {
- "line": 286,
+ "line": 253,
"column": 33
}
}
@@ -22385,31 +19583,31 @@
"type": "Identifier",
"name": "getInnerText",
"range": [
- 10048,
- 10060
+ 8702,
+ 8714
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 34
},
"end": {
- "line": 286,
+ "line": 253,
"column": 46
}
}
},
"range": [
- 10034,
- 10060
+ 8688,
+ 8714
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 20
},
"end": {
- "line": 286,
+ "line": 253,
"column": 46
}
}
@@ -22419,47 +19617,47 @@
"type": "Identifier",
"name": "c",
"range": [
- 10061,
- 10062
+ 8715,
+ 8716
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 47
},
"end": {
- "line": 286,
+ "line": 253,
"column": 48
}
}
}
],
"range": [
- 10034,
- 10063
+ 8688,
+ 8717
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 20
},
"end": {
- "line": 286,
+ "line": 253,
"column": 49
}
}
},
"range": [
- 10030,
- 10063
+ 8684,
+ 8717
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 16
},
"end": {
- "line": 286,
+ "line": 253,
"column": 49
}
}
@@ -22467,16 +19665,16 @@
],
"kind": "let",
"range": [
- 10026,
- 10064
+ 8680,
+ 8718
],
"loc": {
"start": {
- "line": 286,
+ "line": 253,
"column": 12
},
"end": {
- "line": 286,
+ "line": 253,
"column": 50
}
}
@@ -22492,16 +19690,16 @@
"type": "Identifier",
"name": "stt",
"range": [
- 10084,
- 10087
+ 8738,
+ 8741
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 19
},
"end": {
- "line": 287,
+ "line": 254,
"column": 22
}
}
@@ -22510,31 +19708,31 @@
"type": "Identifier",
"name": "getValueFromString",
"range": [
- 10088,
- 10106
+ 8742,
+ 8760
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 23
},
"end": {
- "line": 287,
+ "line": 254,
"column": 41
}
}
},
"range": [
- 10084,
- 10106
+ 8738,
+ 8760
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 19
},
"end": {
- "line": 287,
+ "line": 254,
"column": 41
}
}
@@ -22544,16 +19742,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 10107,
- 10108
+ 8761,
+ 8762
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 42
},
"end": {
- "line": 287,
+ "line": 254,
"column": 43
}
}
@@ -22562,63 +19760,63 @@
"type": "Identifier",
"name": "sType",
"range": [
- 10110,
- 10115
+ 8764,
+ 8769
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 45
},
"end": {
- "line": 287,
+ "line": 254,
"column": 50
}
}
}
],
"range": [
- 10084,
- 10116
+ 8738,
+ 8770
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 19
},
"end": {
- "line": 287,
+ "line": 254,
"column": 51
}
}
},
"range": [
- 10077,
- 10117
+ 8731,
+ 8771
],
"loc": {
"start": {
- "line": 287,
+ "line": 254,
"column": 12
},
"end": {
- "line": 287,
+ "line": 254,
"column": 52
}
}
}
],
"range": [
- 9685,
- 10127
+ 8339,
+ 8781
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 76
},
"end": {
- "line": 288,
+ "line": 255,
"column": 9
}
}
@@ -22626,46 +19824,46 @@
"generator": false,
"expression": false,
"range": [
- 9655,
- 10127
+ 8309,
+ 8781
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 46
},
"end": {
- "line": 288,
+ "line": 255,
"column": 9
}
}
},
"range": [
- 9617,
- 10127
+ 8271,
+ 8781
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 8
},
"end": {
- "line": 288,
+ "line": 255,
"column": 9
}
}
},
"range": [
- 9617,
- 10128
+ 8271,
+ 8782
],
"loc": {
"start": {
- "line": 278,
+ "line": 245,
"column": 8
},
"end": {
- "line": 288,
+ "line": 255,
"column": 10
}
},
@@ -22674,16 +19872,16 @@
"type": "Block",
"value": "*\n * Overrides getRowValue for custom key value feature\n * @param {Object} oRow Row element\n * @param {String} sType\n * @param {Number} nColumn\n * @return {String}\n ",
"range": [
- 9385,
- 9608
+ 8039,
+ 8262
],
"loc": {
"start": {
- "line": 271,
+ "line": 238,
"column": 8
},
"end": {
- "line": 277,
+ "line": 244,
"column": 11
}
}
@@ -22694,16 +19892,16 @@
"type": "Block",
"value": "*\n * Overrides getInnerText in order to avoid Firefox unexpected sorting\n * behaviour with untrimmed text elements\n * @param {Object} oNode DOM element\n * @return {String} DOM element inner text\n ",
"range": [
- 10138,
- 10385
+ 8792,
+ 9039
],
"loc": {
"start": {
- "line": 290,
+ "line": 257,
"column": 8
},
"end": {
- "line": 295,
+ "line": 262,
"column": 11
}
}
@@ -22722,16 +19920,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 10394,
- 10407
+ 9048,
+ 9061
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 8
},
"end": {
- "line": 296,
+ "line": 263,
"column": 21
}
}
@@ -22740,31 +19938,31 @@
"type": "Identifier",
"name": "getInnerText",
"range": [
- 10408,
- 10420
+ 9062,
+ 9074
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 22
},
"end": {
- "line": 296,
+ "line": 263,
"column": 34
}
}
},
"range": [
- 10394,
- 10420
+ 9048,
+ 9074
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 8
},
"end": {
- "line": 296,
+ "line": 263,
"column": 34
}
}
@@ -22777,16 +19975,16 @@
"type": "Identifier",
"name": "oNode",
"range": [
- 10432,
- 10437
+ 9086,
+ 9091
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 46
},
"end": {
- "line": 296,
+ "line": 263,
"column": 51
}
}
@@ -22804,32 +20002,32 @@
"type": "Identifier",
"name": "oNode",
"range": [
- 10456,
- 10461
+ 9110,
+ 9115
],
"loc": {
"start": {
- "line": 297,
+ "line": 264,
"column": 16
},
"end": {
- "line": 297,
+ "line": 264,
"column": 21
}
}
},
"prefix": true,
"range": [
- 10455,
- 10461
+ 9109,
+ 9115
],
"loc": {
"start": {
- "line": 297,
+ "line": 264,
"column": 15
},
"end": {
- "line": 297,
+ "line": 264,
"column": 21
}
}
@@ -22841,48 +20039,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 10480,
- 10487
+ 9134,
+ 9141
],
"loc": {
"start": {
- "line": 298,
+ "line": 265,
"column": 16
},
"end": {
- "line": 298,
+ "line": 265,
"column": 23
}
}
}
],
"range": [
- 10462,
- 10501
+ 9116,
+ 9155
],
"loc": {
"start": {
- "line": 297,
+ "line": 264,
"column": 22
},
"end": {
- "line": 299,
+ "line": 266,
"column": 13
}
}
},
"alternate": null,
"range": [
- 10452,
- 10501
+ 9106,
+ 9155
],
"loc": {
"start": {
- "line": 297,
+ "line": 264,
"column": 12
},
"end": {
- "line": 299,
+ "line": 266,
"column": 13
}
}
@@ -22898,16 +20096,16 @@
"type": "Identifier",
"name": "oNode",
"range": [
- 10517,
- 10522
+ 9171,
+ 9176
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 15
},
"end": {
- "line": 300,
+ "line": 267,
"column": 20
}
}
@@ -22916,31 +20114,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 10523,
- 10535
+ 9177,
+ 9189
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 21
},
"end": {
- "line": 300,
+ "line": 267,
"column": 33
}
}
},
"range": [
- 10517,
- 10535
+ 9171,
+ 9189
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 15
},
"end": {
- "line": 300,
+ "line": 267,
"column": 33
}
}
@@ -22953,16 +20151,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 10536,
- 10540
+ 9190,
+ 9194
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 34
},
"end": {
- "line": 300,
+ "line": 267,
"column": 38
}
}
@@ -22971,47 +20169,47 @@
"type": "Identifier",
"name": "customKey",
"range": [
- 10541,
- 10550
+ 9195,
+ 9204
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 39
},
"end": {
- "line": 300,
+ "line": 267,
"column": 48
}
}
},
"range": [
- 10536,
- 10550
+ 9190,
+ 9204
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 34
},
"end": {
- "line": 300,
+ "line": 267,
"column": 48
}
}
}
],
"range": [
- 10517,
- 10551
+ 9171,
+ 9205
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 15
},
"end": {
- "line": 300,
+ "line": 267,
"column": 49
}
}
@@ -23030,16 +20228,16 @@
"type": "Identifier",
"name": "oNode",
"range": [
- 10577,
- 10582
+ 9231,
+ 9236
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 23
},
"end": {
- "line": 301,
+ "line": 268,
"column": 28
}
}
@@ -23048,31 +20246,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 10583,
- 10595
+ 9237,
+ 9249
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 29
},
"end": {
- "line": 301,
+ "line": 268,
"column": 41
}
}
},
"range": [
- 10577,
- 10595
+ 9231,
+ 9249
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 23
},
"end": {
- "line": 301,
+ "line": 268,
"column": 41
}
}
@@ -23085,16 +20283,16 @@
"type": "Identifier",
"name": "adpt",
"range": [
- 10596,
- 10600
+ 9250,
+ 9254
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 42
},
"end": {
- "line": 301,
+ "line": 268,
"column": 46
}
}
@@ -23103,78 +20301,78 @@
"type": "Identifier",
"name": "customKey",
"range": [
- 10601,
- 10610
+ 9255,
+ 9264
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 47
},
"end": {
- "line": 301,
+ "line": 268,
"column": 56
}
}
},
"range": [
- 10596,
- 10610
+ 9250,
+ 9264
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 42
},
"end": {
- "line": 301,
+ "line": 268,
"column": 56
}
}
}
],
"range": [
- 10577,
- 10611
+ 9231,
+ 9265
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 23
},
"end": {
- "line": 301,
+ "line": 268,
"column": 57
}
}
},
"range": [
- 10570,
- 10612
+ 9224,
+ 9266
],
"loc": {
"start": {
- "line": 301,
+ "line": 268,
"column": 16
},
"end": {
- "line": 301,
+ "line": 268,
"column": 58
}
}
}
],
"range": [
- 10552,
- 10626
+ 9206,
+ 9280
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 50
},
"end": {
- "line": 302,
+ "line": 269,
"column": 13
}
}
@@ -23193,16 +20391,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10657,
- 10660
+ 9311,
+ 9314
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 23
},
"end": {
- "line": 303,
+ "line": 270,
"column": 26
}
}
@@ -23211,31 +20409,31 @@
"type": "Identifier",
"name": "getText",
"range": [
- 10661,
- 10668
+ 9315,
+ 9322
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 27
},
"end": {
- "line": 303,
+ "line": 270,
"column": 34
}
}
},
"range": [
- 10657,
- 10668
+ 9311,
+ 9322
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 23
},
"end": {
- "line": 303,
+ "line": 270,
"column": 34
}
}
@@ -23245,94 +20443,94 @@
"type": "Identifier",
"name": "oNode",
"range": [
- 10669,
- 10674
+ 9323,
+ 9328
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 35
},
"end": {
- "line": 303,
+ "line": 270,
"column": 40
}
}
}
],
"range": [
- 10657,
- 10675
+ 9311,
+ 9329
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 23
},
"end": {
- "line": 303,
+ "line": 270,
"column": 41
}
}
},
"range": [
- 10650,
- 10676
+ 9304,
+ 9330
],
"loc": {
"start": {
- "line": 303,
+ "line": 270,
"column": 16
},
"end": {
- "line": 303,
+ "line": 270,
"column": 42
}
}
}
],
"range": [
- 10632,
- 10690
+ 9286,
+ 9344
],
"loc": {
"start": {
- "line": 302,
+ "line": 269,
"column": 19
},
"end": {
- "line": 304,
+ "line": 271,
"column": 13
}
}
},
"range": [
- 10514,
- 10690
+ 9168,
+ 9344
],
"loc": {
"start": {
- "line": 300,
+ "line": 267,
"column": 12
},
"end": {
- "line": 304,
+ "line": 271,
"column": 13
}
}
}
],
"range": [
- 10438,
- 10700
+ 9092,
+ 9354
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 52
},
"end": {
- "line": 305,
+ "line": 272,
"column": 9
}
}
@@ -23340,46 +20538,46 @@
"generator": false,
"expression": false,
"range": [
- 10423,
- 10700
+ 9077,
+ 9354
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 37
},
"end": {
- "line": 305,
+ "line": 272,
"column": 9
}
}
},
"range": [
- 10394,
- 10700
+ 9048,
+ 9354
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 8
},
"end": {
- "line": 305,
+ "line": 272,
"column": 9
}
}
},
"range": [
- 10394,
- 10701
+ 9048,
+ 9355
],
"loc": {
"start": {
- "line": 296,
+ "line": 263,
"column": 8
},
"end": {
- "line": 305,
+ "line": 272,
"column": 10
}
},
@@ -23388,16 +20586,16 @@
"type": "Block",
"value": "*\n * Overrides getInnerText in order to avoid Firefox unexpected sorting\n * behaviour with untrimmed text elements\n * @param {Object} oNode DOM element\n * @return {String} DOM element inner text\n ",
"range": [
- 10138,
- 10385
+ 8792,
+ 9039
],
"loc": {
"start": {
- "line": 290,
+ "line": 257,
"column": 8
},
"end": {
- "line": 295,
+ "line": 262,
"column": 11
}
}
@@ -23406,16 +20604,16 @@
}
],
"range": [
- 5163,
- 10707
+ 3817,
+ 9361
],
"loc": {
"start": {
- "line": 150,
+ "line": 117,
"column": 27
},
"end": {
- "line": 306,
+ "line": 273,
"column": 5
}
}
@@ -23423,16 +20621,16 @@
"generator": false,
"expression": false,
"range": [
- 5161,
- 10707
+ 3815,
+ 9361
],
"loc": {
"start": {
- "line": 150,
+ "line": 117,
"column": 25
},
"end": {
- "line": 306,
+ "line": 273,
"column": 5
}
}
@@ -23440,16 +20638,16 @@
"kind": "method",
"computed": false,
"range": [
- 5140,
- 10707
+ 3794,
+ 9361
],
"loc": {
"start": {
- "line": 150,
+ "line": 117,
"column": 4
},
"end": {
- "line": 306,
+ "line": 273,
"column": 5
}
},
@@ -23461,16 +20659,16 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 10713,
- 10724
+ 9367,
+ 9378
],
"loc": {
"start": {
- "line": 308,
+ "line": 275,
"column": 4
},
"end": {
- "line": 308,
+ "line": 275,
"column": 15
}
}
@@ -23491,16 +20689,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 10740,
- 10744
+ 9394,
+ 9398
],
"loc": {
"start": {
- "line": 309,
+ "line": 276,
"column": 12
},
"end": {
- "line": 309,
+ "line": 276,
"column": 16
}
}
@@ -23509,31 +20707,31 @@
"type": "Identifier",
"name": "arguments",
"range": [
- 10747,
- 10756
+ 9401,
+ 9410
],
"loc": {
"start": {
- "line": 309,
+ "line": 276,
"column": 19
},
"end": {
- "line": 309,
+ "line": 276,
"column": 28
}
}
},
"range": [
- 10740,
- 10756
+ 9394,
+ 9410
],
"loc": {
"start": {
- "line": 309,
+ "line": 276,
"column": 12
},
"end": {
- "line": 309,
+ "line": 276,
"column": 28
}
}
@@ -23541,16 +20739,16 @@
],
"kind": "var",
"range": [
- 10736,
- 10757
+ 9390,
+ 9411
],
"loc": {
"start": {
- "line": 309,
+ "line": 276,
"column": 8
},
"end": {
- "line": 309,
+ "line": 276,
"column": 29
}
}
@@ -23569,16 +20767,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 10766,
- 10779
+ 9420,
+ 9433
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 8
},
"end": {
- "line": 310,
+ "line": 277,
"column": 21
}
}
@@ -23587,31 +20785,31 @@
"type": "Identifier",
"name": "prototype",
"range": [
- 10780,
- 10789
+ 9434,
+ 9443
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 22
},
"end": {
- "line": 310,
+ "line": 277,
"column": 31
}
}
},
"range": [
- 10766,
- 10789
+ 9420,
+ 9443
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 8
},
"end": {
- "line": 310,
+ "line": 277,
"column": 31
}
}
@@ -23620,31 +20818,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 10790,
- 10801
+ 9444,
+ 9455
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 32
},
"end": {
- "line": 310,
+ "line": 277,
"column": 43
}
}
},
"range": [
- 10766,
- 10801
+ 9420,
+ 9455
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 8
},
"end": {
- "line": 310,
+ "line": 277,
"column": 43
}
}
@@ -23657,16 +20855,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 10802,
- 10806
+ 9456,
+ 9460
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 44
},
"end": {
- "line": 310,
+ "line": 277,
"column": 48
}
}
@@ -23676,31 +20874,31 @@
"value": 0,
"raw": "0",
"range": [
- 10807,
- 10808
+ 9461,
+ 9462
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 49
},
"end": {
- "line": 310,
+ "line": 277,
"column": 50
}
}
},
"range": [
- 10802,
- 10809
+ 9456,
+ 9463
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 44
},
"end": {
- "line": 310,
+ "line": 277,
"column": 51
}
}
@@ -23712,16 +20910,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 10811,
- 10815
+ 9465,
+ 9469
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 53
},
"end": {
- "line": 310,
+ "line": 277,
"column": 57
}
}
@@ -23731,31 +20929,31 @@
"value": 1,
"raw": "1",
"range": [
- 10816,
- 10817
+ 9470,
+ 9471
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 58
},
"end": {
- "line": 310,
+ "line": 277,
"column": 59
}
}
},
"range": [
- 10811,
- 10818
+ 9465,
+ 9472
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 53
},
"end": {
- "line": 310,
+ "line": 277,
"column": 60
}
}
@@ -23767,16 +20965,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 10820,
- 10824
+ 9474,
+ 9478
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 62
},
"end": {
- "line": 310,
+ "line": 277,
"column": 66
}
}
@@ -23786,31 +20984,31 @@
"value": 2,
"raw": "2",
"range": [
- 10825,
- 10826
+ 9479,
+ 9480
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 67
},
"end": {
- "line": 310,
+ "line": 277,
"column": 68
}
}
},
"range": [
- 10820,
- 10827
+ 9474,
+ 9481
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 62
},
"end": {
- "line": 310,
+ "line": 277,
"column": 69
}
}
@@ -23822,16 +21020,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 10829,
- 10833
+ 9483,
+ 9487
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 71
},
"end": {
- "line": 310,
+ "line": 277,
"column": 75
}
}
@@ -23841,78 +21039,78 @@
"value": 3,
"raw": "3",
"range": [
- 10834,
- 10835
+ 9488,
+ 9489
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 76
},
"end": {
- "line": 310,
+ "line": 277,
"column": 77
}
}
},
"range": [
- 10829,
- 10836
+ 9483,
+ 9490
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 71
},
"end": {
- "line": 310,
+ "line": 277,
"column": 78
}
}
}
],
"range": [
- 10766,
- 10837
+ 9420,
+ 9491
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 8
},
"end": {
- "line": 310,
+ "line": 277,
"column": 79
}
}
},
"range": [
- 10766,
- 10838
+ 9420,
+ 9492
],
"loc": {
"start": {
- "line": 310,
+ "line": 277,
"column": 8
},
"end": {
- "line": 310,
+ "line": 277,
"column": 80
}
}
}
],
"range": [
- 10726,
- 10844
+ 9380,
+ 9498
],
"loc": {
"start": {
- "line": 308,
+ "line": 275,
"column": 17
},
"end": {
- "line": 311,
+ "line": 278,
"column": 5
}
}
@@ -23920,16 +21118,16 @@
"generator": false,
"expression": false,
"range": [
- 10724,
- 10844
+ 9378,
+ 9498
],
"loc": {
"start": {
- "line": 308,
+ "line": 275,
"column": 15
},
"end": {
- "line": 311,
+ "line": 278,
"column": 5
}
}
@@ -23937,16 +21135,16 @@
"kind": "method",
"computed": false,
"range": [
- 10713,
- 10844
+ 9367,
+ 9498
],
"loc": {
"start": {
- "line": 308,
+ "line": 275,
"column": 4
},
"end": {
- "line": 311,
+ "line": 278,
"column": 5
}
},
@@ -23958,16 +21156,16 @@
"type": "Identifier",
"name": "setSortTypes",
"range": [
- 10850,
- 10862
+ 9504,
+ 9516
],
"loc": {
"start": {
- "line": 313,
+ "line": 280,
"column": 4
},
"end": {
- "line": 313,
+ "line": 280,
"column": 16
}
}
@@ -23988,16 +21186,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10878,
- 10880
+ 9532,
+ 9534
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 12
},
"end": {
- "line": 314,
+ "line": 281,
"column": 14
}
}
@@ -24008,16 +21206,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10883,
- 10887
+ 9537,
+ 9541
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 17
},
"end": {
- "line": 314,
+ "line": 281,
"column": 21
}
}
@@ -24026,46 +21224,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10888,
- 10890
+ 9542,
+ 9544
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 22
},
"end": {
- "line": 314,
+ "line": 281,
"column": 24
}
}
},
"range": [
- 10883,
- 10890
+ 9537,
+ 9544
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 17
},
"end": {
- "line": 314,
+ "line": 281,
"column": 24
}
}
},
"range": [
- 10878,
- 10890
+ 9532,
+ 9544
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 12
},
"end": {
- "line": 314,
+ "line": 281,
"column": 24
}
}
@@ -24076,16 +21274,16 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 10904,
- 10913
+ 9558,
+ 9567
],
"loc": {
"start": {
- "line": 315,
+ "line": 282,
"column": 12
},
"end": {
- "line": 315,
+ "line": 282,
"column": 21
}
}
@@ -24096,16 +21294,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10916,
- 10920
+ 9570,
+ 9574
],
"loc": {
"start": {
- "line": 315,
+ "line": 282,
"column": 24
},
"end": {
- "line": 315,
+ "line": 282,
"column": 28
}
}
@@ -24114,46 +21312,46 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 10921,
- 10930
+ 9575,
+ 9584
],
"loc": {
"start": {
- "line": 315,
+ "line": 282,
"column": 29
},
"end": {
- "line": 315,
+ "line": 282,
"column": 38
}
}
},
"range": [
- 10916,
- 10930
+ 9570,
+ 9584
],
"loc": {
"start": {
- "line": 315,
+ "line": 282,
"column": 24
},
"end": {
- "line": 315,
+ "line": 282,
"column": 38
}
}
},
"range": [
- 10904,
- 10930
+ 9558,
+ 9584
],
"loc": {
"start": {
- "line": 315,
+ "line": 282,
"column": 12
},
"end": {
- "line": 315,
+ "line": 282,
"column": 38
}
}
@@ -24164,16 +21362,16 @@
"type": "Identifier",
"name": "_sortTypes",
"range": [
- 10944,
- 10954
+ 9598,
+ 9608
],
"loc": {
"start": {
- "line": 316,
+ "line": 283,
"column": 12
},
"end": {
- "line": 316,
+ "line": 283,
"column": 22
}
}
@@ -24182,31 +21380,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 10957,
- 10959
+ 9611,
+ 9613
],
"loc": {
"start": {
- "line": 316,
+ "line": 283,
"column": 25
},
"end": {
- "line": 316,
+ "line": 283,
"column": 27
}
}
},
"range": [
- 10944,
- 10959
+ 9598,
+ 9613
],
"loc": {
"start": {
- "line": 316,
+ "line": 283,
"column": 12
},
"end": {
- "line": 316,
+ "line": 283,
"column": 27
}
}
@@ -24214,16 +21412,16 @@
],
"kind": "let",
"range": [
- 10874,
- 10960
+ 9528,
+ 9614
],
"loc": {
"start": {
- "line": 314,
+ "line": 281,
"column": 8
},
"end": {
- "line": 316,
+ "line": 283,
"column": 28
}
}
@@ -24239,16 +21437,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 10978,
- 10979
+ 9632,
+ 9633
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 16
},
"end": {
- "line": 318,
+ "line": 285,
"column": 17
}
}
@@ -24258,31 +21456,31 @@
"value": 0,
"raw": "0",
"range": [
- 10980,
- 10981
+ 9634,
+ 9635
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 18
},
"end": {
- "line": 318,
+ "line": 285,
"column": 19
}
}
},
"range": [
- 10978,
- 10981
+ 9632,
+ 9635
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 16
},
"end": {
- "line": 318,
+ "line": 285,
"column": 19
}
}
@@ -24290,16 +21488,16 @@
],
"kind": "let",
"range": [
- 10974,
- 10981
+ 9628,
+ 9635
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 12
},
"end": {
- "line": 318,
+ "line": 285,
"column": 19
}
}
@@ -24311,16 +21509,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 10983,
- 10984
+ 9637,
+ 9638
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 21
},
"end": {
- "line": 318,
+ "line": 285,
"column": 22
}
}
@@ -24332,16 +21530,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10985,
- 10987
+ 9639,
+ 9641
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 23
},
"end": {
- "line": 318,
+ "line": 285,
"column": 25
}
}
@@ -24350,46 +21548,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 10988,
- 10995
+ 9642,
+ 9649
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 26
},
"end": {
- "line": 318,
+ "line": 285,
"column": 33
}
}
},
"range": [
- 10985,
- 10995
+ 9639,
+ 9649
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 23
},
"end": {
- "line": 318,
+ "line": 285,
"column": 33
}
}
},
"range": [
- 10983,
- 10995
+ 9637,
+ 9649
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 21
},
"end": {
- "line": 318,
+ "line": 285,
"column": 33
}
}
@@ -24401,32 +21599,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 10997,
- 10998
+ 9651,
+ 9652
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 35
},
"end": {
- "line": 318,
+ "line": 285,
"column": 36
}
}
},
"prefix": false,
"range": [
- 10997,
- 11000
+ 9651,
+ 9654
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 35
},
"end": {
- "line": 318,
+ "line": 285,
"column": 38
}
}
@@ -24443,32 +21641,32 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11019,
- 11026
+ 9673,
+ 9680
],
"loc": {
"start": {
- "line": 319,
+ "line": 286,
"column": 16
},
"end": {
- "line": 319,
+ "line": 286,
"column": 23
}
}
},
"init": null,
"range": [
- 11019,
- 11026
+ 9673,
+ 9680
],
"loc": {
"start": {
- "line": 319,
+ "line": 286,
"column": 16
},
"end": {
- "line": 319,
+ "line": 286,
"column": 23
}
}
@@ -24476,16 +21674,16 @@
],
"kind": "let",
"range": [
- 11015,
- 11027
+ 9669,
+ 9681
],
"loc": {
"start": {
- "line": 319,
+ "line": 286,
"column": 12
},
"end": {
- "line": 319,
+ "line": 286,
"column": 24
}
}
@@ -24499,16 +21697,16 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 11044,
- 11053
+ 9698,
+ 9707
],
"loc": {
"start": {
- "line": 321,
+ "line": 288,
"column": 15
},
"end": {
- "line": 321,
+ "line": 288,
"column": 24
}
}
@@ -24517,31 +21715,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11054,
- 11055
+ 9708,
+ 9709
],
"loc": {
"start": {
- "line": 321,
+ "line": 288,
"column": 25
},
"end": {
- "line": 321,
+ "line": 288,
"column": 26
}
}
},
"range": [
- 11044,
- 11056
+ 9698,
+ 9710
],
"loc": {
"start": {
- "line": 321,
+ "line": 288,
"column": 15
},
"end": {
- "line": 321,
+ "line": 288,
"column": 27
}
}
@@ -24558,16 +21756,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11075,
- 11082
+ 9729,
+ 9736
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 16
},
"end": {
- "line": 322,
+ "line": 289,
"column": 23
}
}
@@ -24584,16 +21782,16 @@
"type": "Identifier",
"name": "sortTypes",
"range": [
- 11085,
- 11094
+ 9739,
+ 9748
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 26
},
"end": {
- "line": 322,
+ "line": 289,
"column": 35
}
}
@@ -24602,31 +21800,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11095,
- 11096
+ 9749,
+ 9750
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 36
},
"end": {
- "line": 322,
+ "line": 289,
"column": 37
}
}
},
"range": [
- 11085,
- 11097
+ 9739,
+ 9751
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 26
},
"end": {
- "line": 322,
+ "line": 289,
"column": 38
}
}
@@ -24635,77 +21833,77 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 11098,
- 11109
+ 9752,
+ 9763
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 39
},
"end": {
- "line": 322,
+ "line": 289,
"column": 50
}
}
},
"range": [
- 11085,
- 11109
+ 9739,
+ 9763
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 26
},
"end": {
- "line": 322,
+ "line": 289,
"column": 50
}
}
},
"arguments": [],
"range": [
- 11085,
- 11111
+ 9739,
+ 9765
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 26
},
"end": {
- "line": 322,
+ "line": 289,
"column": 52
}
}
},
"range": [
- 11075,
- 11111
+ 9729,
+ 9765
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 16
},
"end": {
- "line": 322,
+ "line": 289,
"column": 52
}
}
},
"range": [
- 11075,
- 11112
+ 9729,
+ 9766
],
"loc": {
"start": {
- "line": 322,
+ "line": 289,
"column": 16
},
"end": {
- "line": 322,
+ "line": 289,
"column": 53
}
}
@@ -24719,16 +21917,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11132,
- 11139
+ 9786,
+ 9793
],
"loc": {
"start": {
- "line": 323,
+ "line": 290,
"column": 19
},
"end": {
- "line": 323,
+ "line": 290,
"column": 26
}
}
@@ -24738,31 +21936,31 @@
"value": "none",
"raw": "'none'",
"range": [
- 11144,
- 11150
+ 9798,
+ 9804
],
"loc": {
"start": {
- "line": 323,
+ "line": 290,
"column": 31
},
"end": {
- "line": 323,
+ "line": 290,
"column": 37
}
}
},
"range": [
- 11132,
- 11150
+ 9786,
+ 9804
],
"loc": {
"start": {
- "line": 323,
+ "line": 290,
"column": 19
},
"end": {
- "line": 323,
+ "line": 290,
"column": 37
}
}
@@ -24779,16 +21977,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11173,
- 11180
+ 9827,
+ 9834
],
"loc": {
"start": {
- "line": 324,
+ "line": 291,
"column": 20
},
"end": {
- "line": 324,
+ "line": 291,
"column": 27
}
}
@@ -24798,94 +21996,94 @@
"value": "None",
"raw": "'None'",
"range": [
- 11183,
- 11189
+ 9837,
+ 9843
],
"loc": {
"start": {
- "line": 324,
+ "line": 291,
"column": 30
},
"end": {
- "line": 324,
+ "line": 291,
"column": 36
}
}
},
"range": [
- 11173,
- 11189
+ 9827,
+ 9843
],
"loc": {
"start": {
- "line": 324,
+ "line": 291,
"column": 20
},
"end": {
- "line": 324,
+ "line": 291,
"column": 36
}
}
},
"range": [
- 11173,
- 11190
+ 9827,
+ 9844
],
"loc": {
"start": {
- "line": 324,
+ "line": 291,
"column": 20
},
"end": {
- "line": 324,
+ "line": 291,
"column": 37
}
}
}
],
"range": [
- 11151,
- 11208
+ 9805,
+ 9862
],
"loc": {
"start": {
- "line": 323,
+ "line": 290,
"column": 38
},
"end": {
- "line": 325,
+ "line": 292,
"column": 17
}
}
},
"alternate": null,
"range": [
- 11129,
- 11208
+ 9783,
+ 9862
],
"loc": {
"start": {
- "line": 323,
+ "line": 290,
"column": 16
},
"end": {
- "line": 325,
+ "line": 292,
"column": 17
}
}
}
],
"range": [
- 11057,
- 11222
+ 9711,
+ 9876
],
"loc": {
"start": {
- "line": 321,
+ "line": 288,
"column": 28
},
"end": {
- "line": 326,
+ "line": 293,
"column": 13
}
}
@@ -24905,16 +22103,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11273,
- 11275
+ 9927,
+ 9929
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 19
},
"end": {
- "line": 327,
+ "line": 294,
"column": 21
}
}
@@ -24923,31 +22121,31 @@
"type": "Identifier",
"name": "hasColNbFormat",
"range": [
- 11276,
- 11290
+ 9930,
+ 9944
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 22
},
"end": {
- "line": 327,
+ "line": 294,
"column": 36
}
}
},
"range": [
- 11273,
- 11290
+ 9927,
+ 9944
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 19
},
"end": {
- "line": 327,
+ "line": 294,
"column": 36
}
}
@@ -24965,16 +22163,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11294,
- 11296
+ 9948,
+ 9950
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 40
},
"end": {
- "line": 327,
+ "line": 294,
"column": 42
}
}
@@ -24983,31 +22181,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 11297,
- 11308
+ 9951,
+ 9962
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 43
},
"end": {
- "line": 327,
+ "line": 294,
"column": 54
}
}
},
"range": [
- 11294,
- 11308
+ 9948,
+ 9962
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 40
},
"end": {
- "line": 327,
+ "line": 294,
"column": 54
}
}
@@ -25016,31 +22214,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11309,
- 11310
+ 9963,
+ 9964
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 55
},
"end": {
- "line": 327,
+ "line": 294,
"column": 56
}
}
},
"range": [
- 11294,
- 11311
+ 9948,
+ 9965
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 40
},
"end": {
- "line": 327,
+ "line": 294,
"column": 57
}
}
@@ -25050,46 +22248,46 @@
"value": null,
"raw": "null",
"range": [
- 11316,
- 11320
+ 9970,
+ 9974
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 62
},
"end": {
- "line": 327,
+ "line": 294,
"column": 66
}
}
},
"range": [
- 11294,
- 11320
+ 9948,
+ 9974
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 40
},
"end": {
- "line": 327,
+ "line": 294,
"column": 66
}
}
},
"range": [
- 11273,
- 11320
+ 9927,
+ 9974
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 19
},
"end": {
- "line": 327,
+ "line": 294,
"column": 66
}
}
@@ -25106,16 +22304,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11343,
- 11350
+ 9997,
+ 10004
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 20
},
"end": {
- "line": 328,
+ "line": 295,
"column": 27
}
}
@@ -25135,16 +22333,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11353,
- 11355
+ 10007,
+ 10009
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 30
},
"end": {
- "line": 328,
+ "line": 295,
"column": 32
}
}
@@ -25153,31 +22351,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 11356,
- 11367
+ 10010,
+ 10021
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 33
},
"end": {
- "line": 328,
+ "line": 295,
"column": 44
}
}
},
"range": [
- 11353,
- 11367
+ 10007,
+ 10021
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 30
},
"end": {
- "line": 328,
+ "line": 295,
"column": 44
}
}
@@ -25186,31 +22384,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11368,
- 11369
+ 10022,
+ 10023
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 45
},
"end": {
- "line": 328,
+ "line": 295,
"column": 46
}
}
},
"range": [
- 11353,
- 11370
+ 10007,
+ 10024
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 30
},
"end": {
- "line": 328,
+ "line": 295,
"column": 47
}
}
@@ -25219,93 +22417,93 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 11371,
- 11382
+ 10025,
+ 10036
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 48
},
"end": {
- "line": 328,
+ "line": 295,
"column": 59
}
}
},
"range": [
- 11353,
- 11382
+ 10007,
+ 10036
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 30
},
"end": {
- "line": 328,
+ "line": 295,
"column": 59
}
}
},
"arguments": [],
"range": [
- 11353,
- 11384
+ 10007,
+ 10038
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 30
},
"end": {
- "line": 328,
+ "line": 295,
"column": 61
}
}
},
"range": [
- 11343,
- 11384
+ 9997,
+ 10038
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 20
},
"end": {
- "line": 328,
+ "line": 295,
"column": 61
}
}
},
"range": [
- 11343,
- 11385
+ 9997,
+ 10039
],
"loc": {
"start": {
- "line": 328,
+ "line": 295,
"column": 20
},
"end": {
- "line": 328,
+ "line": 295,
"column": 62
}
}
}
],
"range": [
- 11321,
- 11403
+ 9975,
+ 10057
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 67
},
"end": {
- "line": 329,
+ "line": 296,
"column": 17
}
}
@@ -25322,16 +22520,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11412,
- 11414
+ 10066,
+ 10068
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 26
},
"end": {
- "line": 329,
+ "line": 296,
"column": 28
}
}
@@ -25340,31 +22538,31 @@
"type": "Identifier",
"name": "hasColDateType",
"range": [
- 11415,
- 11429
+ 10069,
+ 10083
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 29
},
"end": {
- "line": 329,
+ "line": 296,
"column": 43
}
}
},
"range": [
- 11412,
- 11429
+ 10066,
+ 10083
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 26
},
"end": {
- "line": 329,
+ "line": 296,
"column": 43
}
}
@@ -25382,16 +22580,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11433,
- 11435
+ 10087,
+ 10089
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 47
},
"end": {
- "line": 329,
+ "line": 296,
"column": 49
}
}
@@ -25400,31 +22598,31 @@
"type": "Identifier",
"name": "colDateType",
"range": [
- 11436,
- 11447
+ 10090,
+ 10101
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 50
},
"end": {
- "line": 329,
+ "line": 296,
"column": 61
}
}
},
"range": [
- 11433,
- 11447
+ 10087,
+ 10101
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 47
},
"end": {
- "line": 329,
+ "line": 296,
"column": 61
}
}
@@ -25433,31 +22631,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11448,
- 11449
+ 10102,
+ 10103
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 62
},
"end": {
- "line": 329,
+ "line": 296,
"column": 63
}
}
},
"range": [
- 11433,
- 11450
+ 10087,
+ 10104
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 47
},
"end": {
- "line": 329,
+ "line": 296,
"column": 64
}
}
@@ -25467,46 +22665,46 @@
"value": null,
"raw": "null",
"range": [
- 11455,
- 11459
+ 10109,
+ 10113
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 69
},
"end": {
- "line": 329,
+ "line": 296,
"column": 73
}
}
},
"range": [
- 11433,
- 11459
+ 10087,
+ 10113
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 47
},
"end": {
- "line": 329,
+ "line": 296,
"column": 73
}
}
},
"range": [
- 11412,
- 11459
+ 10066,
+ 10113
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 26
},
"end": {
- "line": 329,
+ "line": 296,
"column": 73
}
}
@@ -25523,16 +22721,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11482,
- 11489
+ 10136,
+ 10143
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 20
},
"end": {
- "line": 330,
+ "line": 297,
"column": 27
}
}
@@ -25555,16 +22753,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11492,
- 11494
+ 10146,
+ 10148
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 32
}
}
@@ -25573,31 +22771,31 @@
"type": "Identifier",
"name": "colDateType",
"range": [
- 11495,
- 11506
+ 10149,
+ 10160
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 33
},
"end": {
- "line": 330,
+ "line": 297,
"column": 44
}
}
},
"range": [
- 11492,
- 11506
+ 10146,
+ 10160
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 44
}
}
@@ -25606,31 +22804,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 11507,
- 11508
+ 10161,
+ 10162
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 45
},
"end": {
- "line": 330,
+ "line": 297,
"column": 46
}
}
},
"range": [
- 11492,
- 11509
+ 10146,
+ 10163
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 47
}
}
@@ -25639,47 +22837,47 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 11510,
- 11521
+ 10164,
+ 10175
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 48
},
"end": {
- "line": 330,
+ "line": 297,
"column": 59
}
}
},
"range": [
- 11492,
- 11521
+ 10146,
+ 10175
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 59
}
}
},
"arguments": [],
"range": [
- 11492,
- 11523
+ 10146,
+ 10177
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 61
}
}
@@ -25689,77 +22887,77 @@
"value": "date",
"raw": "'date'",
"range": [
- 11524,
- 11530
+ 10178,
+ 10184
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 62
},
"end": {
- "line": 330,
+ "line": 297,
"column": 68
}
}
},
"range": [
- 11492,
- 11530
+ 10146,
+ 10184
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 30
},
"end": {
- "line": 330,
+ "line": 297,
"column": 68
}
}
},
"range": [
- 11482,
- 11530
+ 10136,
+ 10184
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 20
},
"end": {
- "line": 330,
+ "line": 297,
"column": 68
}
}
},
"range": [
- 11482,
- 11531
+ 10136,
+ 10185
],
"loc": {
"start": {
- "line": 330,
+ "line": 297,
"column": 20
},
"end": {
- "line": 330,
+ "line": 297,
"column": 69
}
}
}
],
"range": [
- 11460,
- 11549
+ 10114,
+ 10203
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 74
},
"end": {
- "line": 331,
+ "line": 298,
"column": 17
}
}
@@ -25776,16 +22974,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11577,
- 11584
+ 10231,
+ 10238
],
"loc": {
"start": {
- "line": 332,
+ "line": 299,
"column": 20
},
"end": {
- "line": 332,
+ "line": 299,
"column": 27
}
}
@@ -25795,92 +22993,92 @@
"value": "String",
"raw": "'String'",
"range": [
- 11587,
- 11595
+ 10241,
+ 10249
],
"loc": {
"start": {
- "line": 332,
+ "line": 299,
"column": 30
},
"end": {
- "line": 332,
+ "line": 299,
"column": 38
}
}
},
"range": [
- 11577,
- 11595
+ 10231,
+ 10249
],
"loc": {
"start": {
- "line": 332,
+ "line": 299,
"column": 20
},
"end": {
- "line": 332,
+ "line": 299,
"column": 38
}
}
},
"range": [
- 11577,
- 11596
+ 10231,
+ 10250
],
"loc": {
"start": {
- "line": 332,
+ "line": 299,
"column": 20
},
"end": {
- "line": 332,
+ "line": 299,
"column": 39
}
}
}
],
"range": [
- 11555,
- 11614
+ 10209,
+ 10268
],
"loc": {
"start": {
- "line": 331,
+ "line": 298,
"column": 23
},
"end": {
- "line": 333,
+ "line": 300,
"column": 17
}
}
},
"range": [
- 11409,
- 11614
+ 10063,
+ 10268
],
"loc": {
"start": {
- "line": 329,
+ "line": 296,
"column": 23
},
"end": {
- "line": 333,
+ "line": 300,
"column": 17
}
}
},
"range": [
- 11270,
- 11614
+ 9924,
+ 10268
],
"loc": {
"start": {
- "line": 327,
+ "line": 294,
"column": 16
},
"end": {
- "line": 333,
+ "line": 300,
"column": 17
}
},
@@ -25889,16 +23087,16 @@
"type": "Line",
"value": " resolve column types",
"range": [
- 11230,
- 11253
+ 9884,
+ 9907
],
"loc": {
"start": {
- "line": 326,
+ "line": 293,
"column": 21
},
"end": {
- "line": 326,
+ "line": 293,
"column": 44
}
}
@@ -25907,31 +23105,31 @@
}
],
"range": [
- 11228,
- 11628
+ 9882,
+ 10282
],
"loc": {
"start": {
- "line": 326,
+ "line": 293,
"column": 19
},
"end": {
- "line": 334,
+ "line": 301,
"column": 13
}
}
},
"range": [
- 11041,
- 11628
+ 9695,
+ 10282
],
"loc": {
"start": {
- "line": 321,
+ "line": 288,
"column": 12
},
"end": {
- "line": 334,
+ "line": 301,
"column": 13
}
}
@@ -25947,16 +23145,16 @@
"type": "Identifier",
"name": "_sortTypes",
"range": [
- 11641,
- 11651
+ 10295,
+ 10305
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 12
},
"end": {
- "line": 335,
+ "line": 302,
"column": 22
}
}
@@ -25965,31 +23163,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 11652,
- 11656
+ 10306,
+ 10310
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 23
},
"end": {
- "line": 335,
+ "line": 302,
"column": 27
}
}
},
"range": [
- 11641,
- 11656
+ 10295,
+ 10310
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 12
},
"end": {
- "line": 335,
+ "line": 302,
"column": 27
}
}
@@ -25999,78 +23197,78 @@
"type": "Identifier",
"name": "colType",
"range": [
- 11657,
- 11664
+ 10311,
+ 10318
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 28
},
"end": {
- "line": 335,
+ "line": 302,
"column": 35
}
}
}
],
"range": [
- 11641,
- 11665
+ 10295,
+ 10319
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 12
},
"end": {
- "line": 335,
+ "line": 302,
"column": 36
}
}
},
"range": [
- 11641,
- 11666
+ 10295,
+ 10320
],
"loc": {
"start": {
- "line": 335,
+ "line": 302,
"column": 12
},
"end": {
- "line": 335,
+ "line": 302,
"column": 37
}
}
}
],
"range": [
- 11001,
- 11676
+ 9655,
+ 10330
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 39
},
"end": {
- "line": 336,
+ "line": 303,
"column": 9
}
}
},
"range": [
- 10970,
- 11676
+ 9624,
+ 10330
],
"loc": {
"start": {
- "line": 318,
+ "line": 285,
"column": 8
},
"end": {
- "line": 336,
+ "line": 303,
"column": 9
}
},
@@ -26079,16 +23277,16 @@
"type": "Line",
"value": "Public TF method to add sort type",
"range": [
- 11686,
- 11721
+ 10340,
+ 10375
],
"loc": {
"start": {
- "line": 338,
+ "line": 305,
"column": 8
},
"end": {
- "line": 338,
+ "line": 305,
"column": 43
}
}
@@ -26097,16 +23295,16 @@
"type": "Line",
"value": "Custom sort types",
"range": [
- 11731,
- 11750
+ 10385,
+ 10404
],
"loc": {
"start": {
- "line": 340,
+ "line": 307,
"column": 8
},
"end": {
- "line": 340,
+ "line": 307,
"column": 27
}
}
@@ -26123,16 +23321,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11759,
- 11763
+ 10413,
+ 10417
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 8
},
"end": {
- "line": 341,
+ "line": 308,
"column": 12
}
}
@@ -26141,31 +23339,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 11764,
- 11775
+ 10418,
+ 10429
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 13
},
"end": {
- "line": 341,
+ "line": 308,
"column": 24
}
}
},
"range": [
- 11759,
- 11775
+ 10413,
+ 10429
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 8
},
"end": {
- "line": 341,
+ "line": 308,
"column": 24
}
}
@@ -26176,16 +23374,16 @@
"value": "number",
"raw": "'number'",
"range": [
- 11776,
- 11784
+ 10430,
+ 10438
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 25
},
"end": {
- "line": 341,
+ "line": 308,
"column": 33
}
}
@@ -26194,47 +23392,47 @@
"type": "Identifier",
"name": "Number",
"range": [
- 11786,
- 11792
+ 10440,
+ 10446
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 35
},
"end": {
- "line": 341,
+ "line": 308,
"column": 41
}
}
}
],
"range": [
- 11759,
- 11793
+ 10413,
+ 10447
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 8
},
"end": {
- "line": 341,
+ "line": 308,
"column": 42
}
}
},
"range": [
- 11759,
- 11794
+ 10413,
+ 10448
],
"loc": {
"start": {
- "line": 341,
+ "line": 308,
"column": 8
},
"end": {
- "line": 341,
+ "line": 308,
"column": 43
}
},
@@ -26243,16 +23441,16 @@
"type": "Line",
"value": "Public TF method to add sort type",
"range": [
- 11686,
- 11721
+ 10340,
+ 10375
],
"loc": {
"start": {
- "line": 338,
+ "line": 305,
"column": 8
},
"end": {
- "line": 338,
+ "line": 305,
"column": 43
}
}
@@ -26261,16 +23459,16 @@
"type": "Line",
"value": "Custom sort types",
"range": [
- 11731,
- 11750
+ 10385,
+ 10404
],
"loc": {
"start": {
- "line": 340,
+ "line": 307,
"column": 8
},
"end": {
- "line": 340,
+ "line": 307,
"column": 27
}
}
@@ -26287,16 +23485,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11803,
- 11807
+ 10457,
+ 10461
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 8
},
"end": {
- "line": 342,
+ "line": 309,
"column": 12
}
}
@@ -26305,31 +23503,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 11808,
- 11819
+ 10462,
+ 10473
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 13
},
"end": {
- "line": 342,
+ "line": 309,
"column": 24
}
}
},
"range": [
- 11803,
- 11819
+ 10457,
+ 10473
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 8
},
"end": {
- "line": 342,
+ "line": 309,
"column": 24
}
}
@@ -26340,16 +23538,16 @@
"value": "caseinsensitivestring",
"raw": "'caseinsensitivestring'",
"range": [
- 11820,
- 11843
+ 10474,
+ 10497
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 25
},
"end": {
- "line": 342,
+ "line": 309,
"column": 48
}
}
@@ -26361,16 +23559,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 11845,
- 11858
+ 10499,
+ 10512
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 50
},
"end": {
- "line": 342,
+ "line": 309,
"column": 63
}
}
@@ -26379,62 +23577,62 @@
"type": "Identifier",
"name": "toUpperCase",
"range": [
- 11859,
- 11870
+ 10513,
+ 10524
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 64
},
"end": {
- "line": 342,
+ "line": 309,
"column": 75
}
}
},
"range": [
- 11845,
- 11870
+ 10499,
+ 10524
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 50
},
"end": {
- "line": 342,
+ "line": 309,
"column": 75
}
}
}
],
"range": [
- 11803,
- 11871
+ 10457,
+ 10525
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 8
},
"end": {
- "line": 342,
+ "line": 309,
"column": 76
}
}
},
"range": [
- 11803,
- 11872
+ 10457,
+ 10526
],
"loc": {
"start": {
- "line": 342,
+ "line": 309,
"column": 8
},
"end": {
- "line": 342,
+ "line": 309,
"column": 77
}
}
@@ -26449,16 +23647,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11881,
- 11885
+ 10535,
+ 10539
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 8
},
"end": {
- "line": 343,
+ "line": 310,
"column": 12
}
}
@@ -26467,31 +23665,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 11886,
- 11897
+ 10540,
+ 10551
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 13
},
"end": {
- "line": 343,
+ "line": 310,
"column": 24
}
}
},
"range": [
- 11881,
- 11897
+ 10535,
+ 10551
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 8
},
"end": {
- "line": 343,
+ "line": 310,
"column": 24
}
}
@@ -26502,16 +23700,16 @@
"value": "date",
"raw": "'date'",
"range": [
- 11898,
- 11904
+ 10552,
+ 10558
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 25
},
"end": {
- "line": 343,
+ "line": 310,
"column": 31
}
}
@@ -26523,16 +23721,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 11906,
- 11919
+ 10560,
+ 10573
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 33
},
"end": {
- "line": 343,
+ "line": 310,
"column": 46
}
}
@@ -26541,62 +23739,62 @@
"type": "Identifier",
"name": "toDate",
"range": [
- 11920,
- 11926
+ 10574,
+ 10580
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 47
},
"end": {
- "line": 343,
+ "line": 310,
"column": 53
}
}
},
"range": [
- 11906,
- 11926
+ 10560,
+ 10580
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 33
},
"end": {
- "line": 343,
+ "line": 310,
"column": 53
}
}
}
],
"range": [
- 11881,
- 11927
+ 10535,
+ 10581
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 8
},
"end": {
- "line": 343,
+ "line": 310,
"column": 54
}
}
},
"range": [
- 11881,
- 11928
+ 10535,
+ 10582
],
"loc": {
"start": {
- "line": 343,
+ "line": 310,
"column": 8
},
"end": {
- "line": 343,
+ "line": 310,
"column": 55
}
}
@@ -26611,16 +23809,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11937,
- 11941
+ 10591,
+ 10595
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 8
},
"end": {
- "line": 344,
+ "line": 311,
"column": 12
}
}
@@ -26629,31 +23827,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 11942,
- 11953
+ 10596,
+ 10607
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 13
},
"end": {
- "line": 344,
+ "line": 311,
"column": 24
}
}
},
"range": [
- 11937,
- 11953
+ 10591,
+ 10607
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 8
},
"end": {
- "line": 344,
+ "line": 311,
"column": 24
}
}
@@ -26664,47 +23862,47 @@
"value": "string",
"raw": "'string'",
"range": [
- 11954,
- 11962
+ 10608,
+ 10616
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 25
},
"end": {
- "line": 344,
+ "line": 311,
"column": 33
}
}
}
],
"range": [
- 11937,
- 11963
+ 10591,
+ 10617
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 8
},
"end": {
- "line": 344,
+ "line": 311,
"column": 34
}
}
},
"range": [
- 11937,
- 11964
+ 10591,
+ 10618
],
"loc": {
"start": {
- "line": 344,
+ "line": 311,
"column": 8
},
"end": {
- "line": 344,
+ "line": 311,
"column": 35
}
}
@@ -26719,16 +23917,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11973,
- 11977
+ 10627,
+ 10631
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 8
},
"end": {
- "line": 345,
+ "line": 312,
"column": 12
}
}
@@ -26737,31 +23935,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 11978,
- 11989
+ 10632,
+ 10643
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 13
},
"end": {
- "line": 345,
+ "line": 312,
"column": 24
}
}
},
"range": [
- 11973,
- 11989
+ 10627,
+ 10643
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 8
},
"end": {
- "line": 345,
+ "line": 312,
"column": 24
}
}
@@ -26772,16 +23970,16 @@
"value": "us",
"raw": "'us'",
"range": [
- 11990,
- 11994
+ 10644,
+ 10648
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 25
},
"end": {
- "line": 345,
+ "line": 312,
"column": 29
}
}
@@ -26790,47 +23988,47 @@
"type": "Identifier",
"name": "usNumberConverter",
"range": [
- 11996,
- 12013
+ 10650,
+ 10667
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 31
},
"end": {
- "line": 345,
+ "line": 312,
"column": 48
}
}
}
],
"range": [
- 11973,
- 12014
+ 10627,
+ 10668
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 8
},
"end": {
- "line": 345,
+ "line": 312,
"column": 49
}
}
},
"range": [
- 11973,
- 12015
+ 10627,
+ 10669
],
"loc": {
"start": {
- "line": 345,
+ "line": 312,
"column": 8
},
"end": {
- "line": 345,
+ "line": 312,
"column": 50
}
}
@@ -26845,16 +24043,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12024,
- 12028
+ 10678,
+ 10682
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 8
},
"end": {
- "line": 346,
+ "line": 313,
"column": 12
}
}
@@ -26863,31 +24061,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12029,
- 12040
+ 10683,
+ 10694
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 13
},
"end": {
- "line": 346,
+ "line": 313,
"column": 24
}
}
},
"range": [
- 12024,
- 12040
+ 10678,
+ 10694
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 8
},
"end": {
- "line": 346,
+ "line": 313,
"column": 24
}
}
@@ -26898,16 +24096,16 @@
"value": "eu",
"raw": "'eu'",
"range": [
- 12041,
- 12045
+ 10695,
+ 10699
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 25
},
"end": {
- "line": 346,
+ "line": 313,
"column": 29
}
}
@@ -26916,47 +24114,47 @@
"type": "Identifier",
"name": "euNumberConverter",
"range": [
- 12047,
- 12064
+ 10701,
+ 10718
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 31
},
"end": {
- "line": 346,
+ "line": 313,
"column": 48
}
}
}
],
"range": [
- 12024,
- 12065
+ 10678,
+ 10719
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 8
},
"end": {
- "line": 346,
+ "line": 313,
"column": 49
}
}
},
"range": [
- 12024,
- 12066
+ 10678,
+ 10720
],
"loc": {
"start": {
- "line": 346,
+ "line": 313,
"column": 8
},
"end": {
- "line": 346,
+ "line": 313,
"column": 50
}
}
@@ -26971,16 +24169,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12075,
- 12079
+ 10729,
+ 10733
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 8
},
"end": {
- "line": 347,
+ "line": 314,
"column": 12
}
}
@@ -26989,31 +24187,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12080,
- 12091
+ 10734,
+ 10745
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 13
},
"end": {
- "line": 347,
+ "line": 314,
"column": 24
}
}
},
"range": [
- 12075,
- 12091
+ 10729,
+ 10745
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 8
},
"end": {
- "line": 347,
+ "line": 314,
"column": 24
}
}
@@ -27024,16 +24222,16 @@
"value": "dmydate",
"raw": "'dmydate'",
"range": [
- 12092,
- 12101
+ 10746,
+ 10755
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 25
},
"end": {
- "line": 347,
+ "line": 314,
"column": 34
}
}
@@ -27042,47 +24240,47 @@
"type": "Identifier",
"name": "dmyDateConverter",
"range": [
- 12103,
- 12119
+ 10757,
+ 10773
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 36
},
"end": {
- "line": 347,
+ "line": 314,
"column": 52
}
}
}
],
"range": [
- 12075,
- 12121
+ 10729,
+ 10775
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 8
},
"end": {
- "line": 347,
+ "line": 314,
"column": 54
}
}
},
"range": [
- 12075,
- 12122
+ 10729,
+ 10776
],
"loc": {
"start": {
- "line": 347,
+ "line": 314,
"column": 8
},
"end": {
- "line": 347,
+ "line": 314,
"column": 55
}
}
@@ -27097,16 +24295,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12131,
- 12135
+ 10785,
+ 10789
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 8
},
"end": {
- "line": 348,
+ "line": 315,
"column": 12
}
}
@@ -27115,31 +24313,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12136,
- 12147
+ 10790,
+ 10801
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 13
},
"end": {
- "line": 348,
+ "line": 315,
"column": 24
}
}
},
"range": [
- 12131,
- 12147
+ 10785,
+ 10801
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 8
},
"end": {
- "line": 348,
+ "line": 315,
"column": 24
}
}
@@ -27150,16 +24348,16 @@
"value": "ymddate",
"raw": "'ymddate'",
"range": [
- 12148,
- 12157
+ 10802,
+ 10811
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 25
},
"end": {
- "line": 348,
+ "line": 315,
"column": 34
}
}
@@ -27168,47 +24366,47 @@
"type": "Identifier",
"name": "ymdDateConverter",
"range": [
- 12159,
- 12175
+ 10813,
+ 10829
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 36
},
"end": {
- "line": 348,
+ "line": 315,
"column": 52
}
}
}
],
"range": [
- 12131,
- 12176
+ 10785,
+ 10830
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 8
},
"end": {
- "line": 348,
+ "line": 315,
"column": 53
}
}
},
"range": [
- 12131,
- 12177
+ 10785,
+ 10831
],
"loc": {
"start": {
- "line": 348,
+ "line": 315,
"column": 8
},
"end": {
- "line": 348,
+ "line": 315,
"column": 54
}
}
@@ -27223,16 +24421,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12186,
- 12190
+ 10840,
+ 10844
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 8
},
"end": {
- "line": 349,
+ "line": 316,
"column": 12
}
}
@@ -27241,31 +24439,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12191,
- 12202
+ 10845,
+ 10856
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 13
},
"end": {
- "line": 349,
+ "line": 316,
"column": 24
}
}
},
"range": [
- 12186,
- 12202
+ 10840,
+ 10856
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 8
},
"end": {
- "line": 349,
+ "line": 316,
"column": 24
}
}
@@ -27276,16 +24474,16 @@
"value": "mdydate",
"raw": "'mdydate'",
"range": [
- 12203,
- 12212
+ 10857,
+ 10866
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 25
},
"end": {
- "line": 349,
+ "line": 316,
"column": 34
}
}
@@ -27294,47 +24492,47 @@
"type": "Identifier",
"name": "mdyDateConverter",
"range": [
- 12214,
- 12230
+ 10868,
+ 10884
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 36
},
"end": {
- "line": 349,
+ "line": 316,
"column": 52
}
}
}
],
"range": [
- 12186,
- 12231
+ 10840,
+ 10885
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 8
},
"end": {
- "line": 349,
+ "line": 316,
"column": 53
}
}
},
"range": [
- 12186,
- 12232
+ 10840,
+ 10886
],
"loc": {
"start": {
- "line": 349,
+ "line": 316,
"column": 8
},
"end": {
- "line": 349,
+ "line": 316,
"column": 54
}
}
@@ -27349,16 +24547,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12241,
- 12245
+ 10895,
+ 10899
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 8
},
"end": {
- "line": 350,
+ "line": 317,
"column": 12
}
}
@@ -27367,31 +24565,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12246,
- 12257
+ 10900,
+ 10911
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 13
},
"end": {
- "line": 350,
+ "line": 317,
"column": 24
}
}
},
"range": [
- 12241,
- 12257
+ 10895,
+ 10911
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 8
},
"end": {
- "line": 350,
+ "line": 317,
"column": 24
}
}
@@ -27402,16 +24600,16 @@
"value": "ddmmmyyyydate",
"raw": "'ddmmmyyyydate'",
"range": [
- 12258,
- 12273
+ 10912,
+ 10927
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 25
},
"end": {
- "line": 350,
+ "line": 317,
"column": 40
}
}
@@ -27420,47 +24618,47 @@
"type": "Identifier",
"name": "ddmmmyyyyDateConverter",
"range": [
- 12275,
- 12297
+ 10929,
+ 10951
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 42
},
"end": {
- "line": 350,
+ "line": 317,
"column": 64
}
}
}
],
"range": [
- 12241,
- 12298
+ 10895,
+ 10952
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 8
},
"end": {
- "line": 350,
+ "line": 317,
"column": 65
}
}
},
"range": [
- 12241,
- 12299
+ 10895,
+ 10953
],
"loc": {
"start": {
- "line": 350,
+ "line": 317,
"column": 8
},
"end": {
- "line": 350,
+ "line": 317,
"column": 66
}
}
@@ -27475,16 +24673,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12308,
- 12312
+ 10962,
+ 10966
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 8
},
"end": {
- "line": 351,
+ "line": 318,
"column": 12
}
}
@@ -27493,31 +24691,31 @@
"type": "Identifier",
"name": "addSortType",
"range": [
- 12313,
- 12324
+ 10967,
+ 10978
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 13
},
"end": {
- "line": 351,
+ "line": 318,
"column": 24
}
}
},
"range": [
- 12308,
- 12324
+ 10962,
+ 10978
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 8
},
"end": {
- "line": 351,
+ "line": 318,
"column": 24
}
}
@@ -27528,16 +24726,16 @@
"value": "ipaddress",
"raw": "'ipaddress'",
"range": [
- 12325,
- 12336
+ 10979,
+ 10990
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 25
},
"end": {
- "line": 351,
+ "line": 318,
"column": 36
}
}
@@ -27546,16 +24744,16 @@
"type": "Identifier",
"name": "ipAddress",
"range": [
- 12338,
- 12347
+ 10992,
+ 11001
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 38
},
"end": {
- "line": 351,
+ "line": 318,
"column": 47
}
}
@@ -27564,47 +24762,47 @@
"type": "Identifier",
"name": "sortIP",
"range": [
- 12349,
- 12355
+ 11003,
+ 11009
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 49
},
"end": {
- "line": 351,
+ "line": 318,
"column": 55
}
}
}
],
"range": [
- 12308,
- 12356
+ 10962,
+ 11010
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 8
},
"end": {
- "line": 351,
+ "line": 318,
"column": 56
}
}
},
"range": [
- 12308,
- 12357
+ 10962,
+ 11011
],
"loc": {
"start": {
- "line": 351,
+ "line": 318,
"column": 8
},
"end": {
- "line": 351,
+ "line": 318,
"column": 57
}
}
@@ -27620,16 +24818,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12367,
- 12371
+ 11021,
+ 11025
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 8
},
"end": {
- "line": 353,
+ "line": 320,
"column": 12
}
}
@@ -27638,31 +24836,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 12372,
- 12375
+ 11026,
+ 11029
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 13
},
"end": {
- "line": 353,
+ "line": 320,
"column": 16
}
}
},
"range": [
- 12367,
- 12375
+ 11021,
+ 11029
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 8
},
"end": {
- "line": 353,
+ "line": 320,
"column": 16
}
}
@@ -27673,16 +24871,16 @@
"type": "Identifier",
"name": "SortableTable",
"range": [
- 12382,
- 12395
+ 11036,
+ 11049
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 23
},
"end": {
- "line": 353,
+ "line": 320,
"column": 36
}
}
@@ -27695,16 +24893,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12396,
- 12398
+ 11050,
+ 11052
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 37
},
"end": {
- "line": 353,
+ "line": 320,
"column": 39
}
}
@@ -27713,31 +24911,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 12399,
- 12402
+ 11053,
+ 11056
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 40
},
"end": {
- "line": 353,
+ "line": 320,
"column": 43
}
}
},
"range": [
- 12396,
- 12402
+ 11050,
+ 11056
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 37
},
"end": {
- "line": 353,
+ "line": 320,
"column": 43
}
}
@@ -27746,62 +24944,62 @@
"type": "Identifier",
"name": "_sortTypes",
"range": [
- 12404,
- 12414
+ 11058,
+ 11068
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 45
},
"end": {
- "line": 353,
+ "line": 320,
"column": 55
}
}
}
],
"range": [
- 12378,
- 12415
+ 11032,
+ 11069
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 19
},
"end": {
- "line": 353,
+ "line": 320,
"column": 56
}
}
},
"range": [
- 12367,
- 12415
+ 11021,
+ 11069
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 8
},
"end": {
- "line": 353,
+ "line": 320,
"column": 56
}
}
},
"range": [
- 12367,
- 12416
+ 11021,
+ 11070
],
"loc": {
"start": {
- "line": 353,
+ "line": 320,
"column": 8
},
"end": {
- "line": 353,
+ "line": 320,
"column": 57
}
},
@@ -27810,16 +25008,16 @@
"type": "Block",
"value": "** external table headers adapter **",
"range": [
- 12426,
- 12466
+ 11080,
+ 11120
],
"loc": {
"start": {
- "line": 355,
+ "line": 322,
"column": 8
},
"end": {
- "line": 355,
+ "line": 322,
"column": 48
}
}
@@ -27837,16 +25035,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12478,
- 12482
+ 11132,
+ 11136
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 11
},
"end": {
- "line": 356,
+ "line": 323,
"column": 15
}
}
@@ -27855,31 +25053,31 @@
"type": "Identifier",
"name": "asyncSort",
"range": [
- 12483,
- 12492
+ 11137,
+ 11146
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 16
},
"end": {
- "line": 356,
+ "line": 323,
"column": 25
}
}
},
"range": [
- 12478,
- 12492
+ 11132,
+ 11146
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 11
},
"end": {
- "line": 356,
+ "line": 323,
"column": 25
}
}
@@ -27896,16 +25094,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12496,
- 12500
+ 11150,
+ 11154
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 29
},
"end": {
- "line": 356,
+ "line": 323,
"column": 33
}
}
@@ -27914,31 +25112,31 @@
"type": "Identifier",
"name": "triggerIds",
"range": [
- 12501,
- 12511
+ 11155,
+ 11165
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 34
},
"end": {
- "line": 356,
+ "line": 323,
"column": 44
}
}
},
"range": [
- 12496,
- 12511
+ 11150,
+ 11165
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 29
},
"end": {
- "line": 356,
+ "line": 323,
"column": 44
}
}
@@ -27947,31 +25145,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 12512,
- 12518
+ 11166,
+ 11172
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 45
},
"end": {
- "line": 356,
+ "line": 323,
"column": 51
}
}
},
"range": [
- 12496,
- 12518
+ 11150,
+ 11172
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 29
},
"end": {
- "line": 356,
+ "line": 323,
"column": 51
}
}
@@ -27981,46 +25179,46 @@
"value": 0,
"raw": "0",
"range": [
- 12521,
- 12522
+ 11175,
+ 11176
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 54
},
"end": {
- "line": 356,
+ "line": 323,
"column": 55
}
}
},
"range": [
- 12496,
- 12522
+ 11150,
+ 11176
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 29
},
"end": {
- "line": 356,
+ "line": 323,
"column": 55
}
}
},
"range": [
- 12478,
- 12522
+ 11132,
+ 11176
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 11
},
"end": {
- "line": 356,
+ "line": 323,
"column": 55
}
}
@@ -28037,16 +25235,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 12541,
- 12549
+ 11195,
+ 11203
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 16
},
"end": {
- "line": 357,
+ "line": 324,
"column": 24
}
}
@@ -28057,16 +25255,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12552,
- 12556
+ 11206,
+ 11210
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 27
},
"end": {
- "line": 357,
+ "line": 324,
"column": 31
}
}
@@ -28075,46 +25273,46 @@
"type": "Identifier",
"name": "triggerIds",
"range": [
- 12557,
- 12567
+ 11211,
+ 11221
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 32
},
"end": {
- "line": 357,
+ "line": 324,
"column": 42
}
}
},
"range": [
- 12552,
- 12567
+ 11206,
+ 11221
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 27
},
"end": {
- "line": 357,
+ "line": 324,
"column": 42
}
}
},
"range": [
- 12541,
- 12567
+ 11195,
+ 11221
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 16
},
"end": {
- "line": 357,
+ "line": 324,
"column": 42
}
}
@@ -28122,16 +25320,16 @@
],
"kind": "let",
"range": [
- 12537,
- 12568
+ 11191,
+ 11222
],
"loc": {
"start": {
- "line": 357,
+ "line": 324,
"column": 12
},
"end": {
- "line": 357,
+ "line": 324,
"column": 43
}
}
@@ -28147,16 +25345,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 12589,
- 12590
+ 11243,
+ 11244
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 20
},
"end": {
- "line": 358,
+ "line": 325,
"column": 21
}
}
@@ -28166,31 +25364,31 @@
"value": 0,
"raw": "0",
"range": [
- 12591,
- 12592
+ 11245,
+ 11246
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 22
},
"end": {
- "line": 358,
+ "line": 325,
"column": 23
}
}
},
"range": [
- 12589,
- 12592
+ 11243,
+ 11246
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 20
},
"end": {
- "line": 358,
+ "line": 325,
"column": 23
}
}
@@ -28198,16 +25396,16 @@
],
"kind": "let",
"range": [
- 12585,
- 12592
+ 11239,
+ 11246
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 16
},
"end": {
- "line": 358,
+ "line": 325,
"column": 23
}
}
@@ -28219,16 +25417,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 12594,
- 12595
+ 11248,
+ 11249
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 25
},
"end": {
- "line": 358,
+ "line": 325,
"column": 26
}
}
@@ -28240,16 +25438,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 12596,
- 12604
+ 11250,
+ 11258
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 27
},
"end": {
- "line": 358,
+ "line": 325,
"column": 35
}
}
@@ -28258,46 +25456,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 12605,
- 12611
+ 11259,
+ 11265
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 36
},
"end": {
- "line": 358,
+ "line": 325,
"column": 42
}
}
},
"range": [
- 12596,
- 12611
+ 11250,
+ 11265
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 27
},
"end": {
- "line": 358,
+ "line": 325,
"column": 42
}
}
},
"range": [
- 12594,
- 12611
+ 11248,
+ 11265
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 25
},
"end": {
- "line": 358,
+ "line": 325,
"column": 42
}
}
@@ -28309,32 +25507,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 12613,
- 12614
+ 11267,
+ 11268
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 44
},
"end": {
- "line": 358,
+ "line": 325,
"column": 45
}
}
},
"prefix": false,
"range": [
- 12613,
- 12616
+ 11267,
+ 11270
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 44
},
"end": {
- "line": 358,
+ "line": 325,
"column": 47
}
}
@@ -28354,16 +25552,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 12638,
- 12646
+ 11292,
+ 11300
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 19
},
"end": {
- "line": 359,
+ "line": 326,
"column": 27
}
}
@@ -28372,31 +25570,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 12647,
- 12648
+ 11301,
+ 11302
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 28
},
"end": {
- "line": 359,
+ "line": 326,
"column": 29
}
}
},
"range": [
- 12638,
- 12649
+ 11292,
+ 11303
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 19
},
"end": {
- "line": 359,
+ "line": 326,
"column": 30
}
}
@@ -28406,31 +25604,31 @@
"value": null,
"raw": "null",
"range": [
- 12654,
- 12658
+ 11308,
+ 11312
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 35
},
"end": {
- "line": 359,
+ "line": 326,
"column": 39
}
}
},
"range": [
- 12638,
- 12658
+ 11292,
+ 11312
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 19
},
"end": {
- "line": 359,
+ "line": 326,
"column": 39
}
}
@@ -28442,48 +25640,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 12681,
- 12690
+ 11335,
+ 11344
],
"loc": {
"start": {
- "line": 360,
+ "line": 327,
"column": 20
},
"end": {
- "line": 360,
+ "line": 327,
"column": 29
}
}
}
],
"range": [
- 12659,
- 12708
+ 11313,
+ 11362
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 40
},
"end": {
- "line": 361,
+ "line": 328,
"column": 17
}
}
},
"alternate": null,
"range": [
- 12635,
- 12708
+ 11289,
+ 11362
],
"loc": {
"start": {
- "line": 359,
+ "line": 326,
"column": 16
},
"end": {
- "line": 361,
+ "line": 328,
"column": 17
}
}
@@ -28497,16 +25695,16 @@
"type": "Identifier",
"name": "trigger",
"range": [
- 12729,
- 12736
+ 11383,
+ 11390
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 20
},
"end": {
- "line": 362,
+ "line": 329,
"column": 27
}
}
@@ -28520,16 +25718,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12739,
- 12742
+ 11393,
+ 11396
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 30
},
"end": {
- "line": 362,
+ "line": 329,
"column": 33
}
}
@@ -28538,31 +25736,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 12743,
- 12745
+ 11397,
+ 11399
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 34
},
"end": {
- "line": 362,
+ "line": 329,
"column": 36
}
}
},
"range": [
- 12739,
- 12745
+ 11393,
+ 11399
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 30
},
"end": {
- "line": 362,
+ "line": 329,
"column": 36
}
}
@@ -28575,16 +25773,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 12746,
- 12754
+ 11400,
+ 11408
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 37
},
"end": {
- "line": 362,
+ "line": 329,
"column": 45
}
}
@@ -28593,62 +25791,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 12755,
- 12756
+ 11409,
+ 11410
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 46
},
"end": {
- "line": 362,
+ "line": 329,
"column": 47
}
}
},
"range": [
- 12746,
- 12757
+ 11400,
+ 11411
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 37
},
"end": {
- "line": 362,
+ "line": 329,
"column": 48
}
}
}
],
"range": [
- 12739,
- 12758
+ 11393,
+ 11412
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 30
},
"end": {
- "line": 362,
+ "line": 329,
"column": 49
}
}
},
"range": [
- 12729,
- 12758
+ 11383,
+ 11412
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 20
},
"end": {
- "line": 362,
+ "line": 329,
"column": 49
}
}
@@ -28656,16 +25854,16 @@
],
"kind": "let",
"range": [
- 12725,
- 12759
+ 11379,
+ 11413
],
"loc": {
"start": {
- "line": 362,
+ "line": 329,
"column": 16
},
"end": {
- "line": 362,
+ "line": 329,
"column": 50
}
}
@@ -28676,16 +25874,16 @@
"type": "Identifier",
"name": "trigger",
"range": [
- 12779,
- 12786
+ 11433,
+ 11440
],
"loc": {
"start": {
- "line": 363,
+ "line": 330,
"column": 19
},
"end": {
- "line": 363,
+ "line": 330,
"column": 26
}
}
@@ -28708,16 +25906,16 @@
"type": "Identifier",
"name": "trigger",
"range": [
- 12809,
- 12816
+ 11463,
+ 11470
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 20
},
"end": {
- "line": 364,
+ "line": 331,
"column": 27
}
}
@@ -28726,31 +25924,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 12817,
- 12822
+ 11471,
+ 11476
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 28
},
"end": {
- "line": 364,
+ "line": 331,
"column": 33
}
}
},
"range": [
- 12809,
- 12822
+ 11463,
+ 11476
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 20
},
"end": {
- "line": 364,
+ "line": 331,
"column": 33
}
}
@@ -28759,31 +25957,31 @@
"type": "Identifier",
"name": "cursor",
"range": [
- 12823,
- 12829
+ 11477,
+ 11483
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 34
},
"end": {
- "line": 364,
+ "line": 331,
"column": 40
}
}
},
"range": [
- 12809,
- 12829
+ 11463,
+ 11483
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 20
},
"end": {
- "line": 364,
+ "line": 331,
"column": 40
}
}
@@ -28793,46 +25991,46 @@
"value": "pointer",
"raw": "'pointer'",
"range": [
- 12832,
- 12841
+ 11486,
+ 11495
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 43
},
"end": {
- "line": 364,
+ "line": 331,
"column": 52
}
}
},
"range": [
- 12809,
- 12841
+ 11463,
+ 11495
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 20
},
"end": {
- "line": 364,
+ "line": 331,
"column": 52
}
}
},
"range": [
- 12809,
- 12842
+ 11463,
+ 11496
],
"loc": {
"start": {
- "line": 364,
+ "line": 331,
"column": 20
},
"end": {
- "line": 364,
+ "line": 331,
"column": 53
}
}
@@ -28848,16 +26046,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 12864,
- 12869
+ 11518,
+ 11523
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 20
},
"end": {
- "line": 366,
+ "line": 333,
"column": 25
}
}
@@ -28866,31 +26064,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 12870,
- 12873
+ 11524,
+ 11527
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 26
},
"end": {
- "line": 366,
+ "line": 333,
"column": 29
}
}
},
"range": [
- 12864,
- 12873
+ 11518,
+ 11527
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 20
},
"end": {
- "line": 366,
+ "line": 333,
"column": 29
}
}
@@ -28900,16 +26098,16 @@
"type": "Identifier",
"name": "trigger",
"range": [
- 12874,
- 12881
+ 11528,
+ 11535
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 30
},
"end": {
- "line": 366,
+ "line": 333,
"column": 37
}
}
@@ -28919,16 +26117,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 12883,
- 12890
+ 11537,
+ 11544
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 39
},
"end": {
- "line": 366,
+ "line": 333,
"column": 46
}
}
@@ -28941,16 +26139,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 12893,
- 12896
+ 11547,
+ 11550
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 49
},
"end": {
- "line": 366,
+ "line": 333,
"column": 52
}
}
@@ -28968,16 +26166,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 12931,
- 12934
+ 11585,
+ 11588
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 28
},
"end": {
- "line": 367,
+ "line": 334,
"column": 31
}
}
@@ -28989,16 +26187,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 12937,
- 12940
+ 11591,
+ 11594
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 34
},
"end": {
- "line": 367,
+ "line": 334,
"column": 37
}
}
@@ -29007,46 +26205,46 @@
"type": "Identifier",
"name": "target",
"range": [
- 12941,
- 12947
+ 11595,
+ 11601
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 38
},
"end": {
- "line": 367,
+ "line": 334,
"column": 44
}
}
},
"range": [
- 12937,
- 12947
+ 11591,
+ 11601
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 34
},
"end": {
- "line": 367,
+ "line": 334,
"column": 44
}
}
},
"range": [
- 12931,
- 12947
+ 11585,
+ 11601
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 28
},
"end": {
- "line": 367,
+ "line": 334,
"column": 44
}
}
@@ -29054,16 +26252,16 @@
],
"kind": "let",
"range": [
- 12927,
- 12948
+ 11581,
+ 11602
],
"loc": {
"start": {
- "line": 367,
+ "line": 334,
"column": 24
},
"end": {
- "line": 367,
+ "line": 334,
"column": 45
}
}
@@ -29082,16 +26280,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12977,
- 12981
+ 11631,
+ 11635
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 28
},
"end": {
- "line": 368,
+ "line": 335,
"column": 32
}
}
@@ -29100,31 +26298,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12982,
- 12984
+ 11636,
+ 11638
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 33
},
"end": {
- "line": 368,
+ "line": 335,
"column": 35
}
}
},
"range": [
- 12977,
- 12984
+ 11631,
+ 11638
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 28
},
"end": {
- "line": 368,
+ "line": 335,
"column": 35
}
}
@@ -29133,47 +26331,47 @@
"type": "Identifier",
"name": "sort",
"range": [
- 12985,
- 12989
+ 11639,
+ 11643
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 36
},
"end": {
- "line": 368,
+ "line": 335,
"column": 40
}
}
},
"range": [
- 12977,
- 12989
+ 11631,
+ 11643
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 28
},
"end": {
- "line": 368,
+ "line": 335,
"column": 40
}
}
},
"prefix": true,
"range": [
- 12976,
- 12989
+ 11630,
+ 11643
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 27
},
"end": {
- "line": 368,
+ "line": 335,
"column": 40
}
}
@@ -29185,48 +26383,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 13020,
- 13027
+ 11674,
+ 11681
],
"loc": {
"start": {
- "line": 369,
+ "line": 336,
"column": 28
},
"end": {
- "line": 369,
+ "line": 336,
"column": 35
}
}
}
],
"range": [
- 12990,
- 13053
+ 11644,
+ 11707
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 41
},
"end": {
- "line": 370,
+ "line": 337,
"column": 25
}
}
},
"alternate": null,
"range": [
- 12973,
- 13053
+ 11627,
+ 11707
],
"loc": {
"start": {
- "line": 368,
+ "line": 335,
"column": 24
},
"end": {
- "line": 370,
+ "line": 337,
"column": 25
}
}
@@ -29244,16 +26442,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13078,
- 13082
+ 11732,
+ 11736
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 24
},
"end": {
- "line": 371,
+ "line": 338,
"column": 28
}
}
@@ -29262,31 +26460,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 13083,
- 13086
+ 11737,
+ 11740
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 29
},
"end": {
- "line": 371,
+ "line": 338,
"column": 32
}
}
},
"range": [
- 13078,
- 13086
+ 11732,
+ 11740
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 24
},
"end": {
- "line": 371,
+ "line": 338,
"column": 32
}
}
@@ -29295,31 +26493,31 @@
"type": "Identifier",
"name": "asyncSort",
"range": [
- 13087,
- 13096
+ 11741,
+ 11750
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 33
},
"end": {
- "line": 371,
+ "line": 338,
"column": 42
}
}
},
"range": [
- 13078,
- 13096
+ 11732,
+ 11750
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 24
},
"end": {
- "line": 371,
+ "line": 338,
"column": 42
}
}
@@ -29334,16 +26532,16 @@
"type": "Identifier",
"name": "triggers",
"range": [
- 13097,
- 13105
+ 11751,
+ 11759
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 43
},
"end": {
- "line": 371,
+ "line": 338,
"column": 51
}
}
@@ -29352,31 +26550,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 13106,
- 13113
+ 11760,
+ 11767
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 52
},
"end": {
- "line": 371,
+ "line": 338,
"column": 59
}
}
},
"range": [
- 13097,
- 13113
+ 11751,
+ 11767
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 43
},
"end": {
- "line": 371,
+ "line": 338,
"column": 59
}
}
@@ -29389,16 +26587,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 13114,
- 13117
+ 11768,
+ 11771
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 60
},
"end": {
- "line": 371,
+ "line": 338,
"column": 63
}
}
@@ -29407,94 +26605,94 @@
"type": "Identifier",
"name": "id",
"range": [
- 13118,
- 13120
+ 11772,
+ 11774
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 64
},
"end": {
- "line": 371,
+ "line": 338,
"column": 66
}
}
},
"range": [
- 13114,
- 13120
+ 11768,
+ 11774
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 60
},
"end": {
- "line": 371,
+ "line": 338,
"column": 66
}
}
}
],
"range": [
- 13097,
- 13121
+ 11751,
+ 11775
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 43
},
"end": {
- "line": 371,
+ "line": 338,
"column": 67
}
}
}
],
"range": [
- 13078,
- 13122
+ 11732,
+ 11776
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 24
},
"end": {
- "line": 371,
+ "line": 338,
"column": 68
}
}
},
"range": [
- 13078,
- 13123
+ 11732,
+ 11777
],
"loc": {
"start": {
- "line": 371,
+ "line": 338,
"column": 24
},
"end": {
- "line": 371,
+ "line": 338,
"column": 69
}
}
}
],
"range": [
- 12901,
- 13145
+ 11555,
+ 11799
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 57
},
"end": {
- "line": 372,
+ "line": 339,
"column": 21
}
}
@@ -29502,47 +26700,47 @@
"generator": false,
"expression": false,
"range": [
- 12892,
- 13145
+ 11546,
+ 11799
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 48
},
"end": {
- "line": 372,
+ "line": 339,
"column": 21
}
}
}
],
"range": [
- 12864,
- 13146
+ 11518,
+ 11800
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 20
},
"end": {
- "line": 372,
+ "line": 339,
"column": 22
}
}
},
"range": [
- 12864,
- 13147
+ 11518,
+ 11801
],
"loc": {
"start": {
- "line": 366,
+ "line": 333,
"column": 20
},
"end": {
- "line": 372,
+ "line": 339,
"column": 23
}
}
@@ -29558,16 +26756,16 @@
"type": "Identifier",
"name": "trigger",
"range": [
- 13168,
- 13175
+ 11822,
+ 11829
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 20
},
"end": {
- "line": 373,
+ "line": 340,
"column": 27
}
}
@@ -29576,31 +26774,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 13176,
- 13188
+ 11830,
+ 11842
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 28
},
"end": {
- "line": 373,
+ "line": 340,
"column": 40
}
}
},
"range": [
- 13168,
- 13188
+ 11822,
+ 11842
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 20
},
"end": {
- "line": 373,
+ "line": 340,
"column": 40
}
}
@@ -29611,16 +26809,16 @@
"value": "_sortType",
"raw": "'_sortType'",
"range": [
- 13189,
- 13200
+ 11843,
+ 11854
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 41
},
"end": {
- "line": 373,
+ "line": 340,
"column": 52
}
}
@@ -29632,16 +26830,16 @@
"type": "Identifier",
"name": "_sortTypes",
"range": [
- 13202,
- 13212
+ 11856,
+ 11866
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 54
},
"end": {
- "line": 373,
+ "line": 340,
"column": 64
}
}
@@ -29650,157 +26848,157 @@
"type": "Identifier",
"name": "j",
"range": [
- 13213,
- 13214
+ 11867,
+ 11868
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 65
},
"end": {
- "line": 373,
+ "line": 340,
"column": 66
}
}
},
"range": [
- 13202,
- 13215
+ 11856,
+ 11869
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 54
},
"end": {
- "line": 373,
+ "line": 340,
"column": 67
}
}
}
],
"range": [
- 13168,
- 13216
+ 11822,
+ 11870
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 20
},
"end": {
- "line": 373,
+ "line": 340,
"column": 68
}
}
},
"range": [
- 13168,
- 13217
+ 11822,
+ 11871
],
"loc": {
"start": {
- "line": 373,
+ "line": 340,
"column": 20
},
"end": {
- "line": 373,
+ "line": 340,
"column": 69
}
}
}
],
"range": [
- 12787,
- 13235
+ 11441,
+ 11889
],
"loc": {
"start": {
- "line": 363,
+ "line": 330,
"column": 27
},
"end": {
- "line": 374,
+ "line": 341,
"column": 17
}
}
},
"alternate": null,
"range": [
- 12776,
- 13235
+ 11430,
+ 11889
],
"loc": {
"start": {
- "line": 363,
+ "line": 330,
"column": 16
},
"end": {
- "line": 374,
+ "line": 341,
"column": 17
}
}
}
],
"range": [
- 12617,
- 13249
+ 11271,
+ 11903
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 48
},
"end": {
- "line": 375,
+ "line": 342,
"column": 13
}
}
},
"range": [
- 12581,
- 13249
+ 11235,
+ 11903
],
"loc": {
"start": {
- "line": 358,
+ "line": 325,
"column": 12
},
"end": {
- "line": 375,
+ "line": 342,
"column": 13
}
}
}
],
"range": [
- 12523,
- 13259
+ 11177,
+ 11913
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 56
},
"end": {
- "line": 376,
+ "line": 343,
"column": 9
}
}
},
"alternate": null,
"range": [
- 12475,
- 13259
+ 11129,
+ 11913
],
"loc": {
"start": {
- "line": 356,
+ "line": 323,
"column": 8
},
"end": {
- "line": 376,
+ "line": 343,
"column": 9
}
},
@@ -29809,16 +27007,16 @@
"type": "Block",
"value": "** external table headers adapter **",
"range": [
- 12426,
- 12466
+ 11080,
+ 11120
],
"loc": {
"start": {
- "line": 355,
+ "line": 322,
"column": 8
},
"end": {
- "line": 355,
+ "line": 322,
"column": 48
}
}
@@ -29827,16 +27025,16 @@
}
],
"range": [
- 10864,
- 13265
+ 9518,
+ 11919
],
"loc": {
"start": {
- "line": 313,
+ "line": 280,
"column": 18
},
"end": {
- "line": 377,
+ "line": 344,
"column": 5
}
}
@@ -29844,16 +27042,16 @@
"generator": false,
"expression": false,
"range": [
- 10862,
- 13265
+ 9516,
+ 11919
],
"loc": {
"start": {
- "line": 313,
+ "line": 280,
"column": 16
},
"end": {
- "line": 377,
+ "line": 344,
"column": 5
}
}
@@ -29861,16 +27059,16 @@
"kind": "method",
"computed": false,
"range": [
- 10850,
- 13265
+ 9504,
+ 11919
],
"loc": {
"start": {
- "line": 313,
+ "line": 280,
"column": 4
},
"end": {
- "line": 377,
+ "line": 344,
"column": 5
}
},
@@ -29879,16 +27077,16 @@
"type": "Block",
"value": "*\n * Destroy sort\n ",
"range": [
- 13271,
- 13302
+ 11925,
+ 11956
],
"loc": {
"start": {
- "line": 379,
+ "line": 346,
"column": 4
},
"end": {
- "line": 381,
+ "line": 348,
"column": 7
}
}
@@ -29902,16 +27100,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 13307,
- 13314
+ 11961,
+ 11968
],
"loc": {
"start": {
- "line": 382,
+ "line": 349,
"column": 4
},
"end": {
- "line": 382,
+ "line": 349,
"column": 11
}
}
@@ -29932,16 +27130,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13330,
- 13332
+ 11984,
+ 11986
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 12
},
"end": {
- "line": 383,
+ "line": 350,
"column": 14
}
}
@@ -29952,16 +27150,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13335,
- 13339
+ 11989,
+ 11993
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 17
},
"end": {
- "line": 383,
+ "line": 350,
"column": 21
}
}
@@ -29970,46 +27168,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13340,
- 13342
+ 11994,
+ 11996
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 22
},
"end": {
- "line": 383,
+ "line": 350,
"column": 24
}
}
},
"range": [
- 13335,
- 13342
+ 11989,
+ 11996
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 17
},
"end": {
- "line": 383,
+ "line": 350,
"column": 24
}
}
},
"range": [
- 13330,
- 13342
+ 11984,
+ 11996
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 12
},
"end": {
- "line": 383,
+ "line": 350,
"column": 24
}
}
@@ -30017,16 +27215,16 @@
],
"kind": "let",
"range": [
- 13326,
- 13343
+ 11980,
+ 11997
],
"loc": {
"start": {
- "line": 383,
+ "line": 350,
"column": 8
},
"end": {
- "line": 383,
+ "line": 350,
"column": 25
}
}
@@ -30042,16 +27240,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13352,
- 13356
+ 12006,
+ 12010
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 8
},
"end": {
- "line": 384,
+ "line": 351,
"column": 12
}
}
@@ -30060,31 +27258,31 @@
"type": "Identifier",
"name": "sorted",
"range": [
- 13357,
- 13363
+ 12011,
+ 12017
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 13
},
"end": {
- "line": 384,
+ "line": 351,
"column": 19
}
}
},
"range": [
- 13352,
- 13363
+ 12006,
+ 12017
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 8
},
"end": {
- "line": 384,
+ "line": 351,
"column": 19
}
}
@@ -30094,46 +27292,46 @@
"value": false,
"raw": "false",
"range": [
- 13366,
- 13371
+ 12020,
+ 12025
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 22
},
"end": {
- "line": 384,
+ "line": 351,
"column": 27
}
}
},
"range": [
- 13352,
- 13371
+ 12006,
+ 12025
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 8
},
"end": {
- "line": 384,
+ "line": 351,
"column": 27
}
}
},
"range": [
- 13352,
- 13372
+ 12006,
+ 12026
],
"loc": {
"start": {
- "line": 384,
+ "line": 351,
"column": 8
},
"end": {
- "line": 384,
+ "line": 351,
"column": 28
}
}
@@ -30149,16 +27347,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13381,
- 13385
+ 12035,
+ 12039
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 8
},
"end": {
- "line": 385,
+ "line": 352,
"column": 12
}
}
@@ -30167,31 +27365,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 13386,
- 13397
+ 12040,
+ 12051
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 13
},
"end": {
- "line": 385,
+ "line": 352,
"column": 24
}
}
},
"range": [
- 13381,
- 13397
+ 12035,
+ 12051
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 8
},
"end": {
- "line": 385,
+ "line": 352,
"column": 24
}
}
@@ -30201,46 +27399,46 @@
"value": false,
"raw": "false",
"range": [
- 13400,
- 13405
+ 12054,
+ 12059
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 27
},
"end": {
- "line": 385,
+ "line": 352,
"column": 32
}
}
},
"range": [
- 13381,
- 13405
+ 12035,
+ 12059
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 8
},
"end": {
- "line": 385,
+ "line": 352,
"column": 32
}
}
},
"range": [
- 13381,
- 13406
+ 12035,
+ 12060
],
"loc": {
"start": {
- "line": 385,
+ "line": 352,
"column": 8
},
"end": {
- "line": 385,
+ "line": 352,
"column": 33
}
}
@@ -30258,16 +27456,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13415,
- 13419
+ 12069,
+ 12073
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 8
},
"end": {
- "line": 386,
+ "line": 353,
"column": 12
}
}
@@ -30276,31 +27474,31 @@
"type": "Identifier",
"name": "stt",
"range": [
- 13420,
- 13423
+ 12074,
+ 12077
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 13
},
"end": {
- "line": 386,
+ "line": 353,
"column": 16
}
}
},
"range": [
- 13415,
- 13423
+ 12069,
+ 12077
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 8
},
"end": {
- "line": 386,
+ "line": 353,
"column": 16
}
}
@@ -30309,62 +27507,62 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 13424,
- 13431
+ 12078,
+ 12085
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 17
},
"end": {
- "line": 386,
+ "line": 353,
"column": 24
}
}
},
"range": [
- 13415,
- 13431
+ 12069,
+ 12085
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 8
},
"end": {
- "line": 386,
+ "line": 353,
"column": 24
}
}
},
"arguments": [],
"range": [
- 13415,
- 13433
+ 12069,
+ 12087
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 8
},
"end": {
- "line": 386,
+ "line": 353,
"column": 26
}
}
},
"range": [
- 13415,
- 13434
+ 12069,
+ 12088
],
"loc": {
"start": {
- "line": 386,
+ "line": 353,
"column": 8
},
"end": {
- "line": 386,
+ "line": 353,
"column": 27
}
}
@@ -30378,16 +27576,16 @@
"type": "Identifier",
"name": "ids",
"range": [
- 13448,
- 13451
+ 12102,
+ 12105
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 12
},
"end": {
- "line": 388,
+ "line": 355,
"column": 15
}
}
@@ -30401,16 +27599,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13454,
- 13456
+ 12108,
+ 12110
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 18
},
"end": {
- "line": 388,
+ "line": 355,
"column": 20
}
}
@@ -30419,62 +27617,62 @@
"type": "Identifier",
"name": "getFiltersId",
"range": [
- 13457,
- 13469
+ 12111,
+ 12123
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 21
},
"end": {
- "line": 388,
+ "line": 355,
"column": 33
}
}
},
"range": [
- 13454,
- 13469
+ 12108,
+ 12123
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 18
},
"end": {
- "line": 388,
+ "line": 355,
"column": 33
}
}
},
"arguments": [],
"range": [
- 13454,
- 13471
+ 12108,
+ 12125
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 18
},
"end": {
- "line": 388,
+ "line": 355,
"column": 35
}
}
},
"range": [
- 13448,
- 13471
+ 12102,
+ 12125
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 12
},
"end": {
- "line": 388,
+ "line": 355,
"column": 35
}
}
@@ -30482,16 +27680,16 @@
],
"kind": "let",
"range": [
- 13444,
- 13472
+ 12098,
+ 12126
],
"loc": {
"start": {
- "line": 388,
+ "line": 355,
"column": 8
},
"end": {
- "line": 388,
+ "line": 355,
"column": 36
}
}
@@ -30507,16 +27705,16 @@
"type": "Identifier",
"name": "idx",
"range": [
- 13490,
- 13493
+ 12144,
+ 12147
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 17
},
"end": {
- "line": 389,
+ "line": 356,
"column": 20
}
}
@@ -30526,31 +27724,31 @@
"value": 0,
"raw": "0",
"range": [
- 13496,
- 13497
+ 12150,
+ 12151
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 23
},
"end": {
- "line": 389,
+ "line": 356,
"column": 24
}
}
},
"range": [
- 13490,
- 13497
+ 12144,
+ 12151
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 17
},
"end": {
- "line": 389,
+ "line": 356,
"column": 24
}
}
@@ -30558,16 +27756,16 @@
],
"kind": "let",
"range": [
- 13486,
- 13497
+ 12140,
+ 12151
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 13
},
"end": {
- "line": 389,
+ "line": 356,
"column": 24
}
}
@@ -30579,16 +27777,16 @@
"type": "Identifier",
"name": "idx",
"range": [
- 13499,
- 13502
+ 12153,
+ 12156
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 26
},
"end": {
- "line": 389,
+ "line": 356,
"column": 29
}
}
@@ -30600,16 +27798,16 @@
"type": "Identifier",
"name": "ids",
"range": [
- 13505,
- 13508
+ 12159,
+ 12162
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 32
},
"end": {
- "line": 389,
+ "line": 356,
"column": 35
}
}
@@ -30618,46 +27816,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 13509,
- 13515
+ 12163,
+ 12169
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 36
},
"end": {
- "line": 389,
+ "line": 356,
"column": 42
}
}
},
"range": [
- 13505,
- 13515
+ 12159,
+ 12169
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 32
},
"end": {
- "line": 389,
+ "line": 356,
"column": 42
}
}
},
"range": [
- 13499,
- 13515
+ 12153,
+ 12169
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 26
},
"end": {
- "line": 389,
+ "line": 356,
"column": 42
}
}
@@ -30669,32 +27867,32 @@
"type": "Identifier",
"name": "idx",
"range": [
- 13517,
- 13520
+ 12171,
+ 12174
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 44
},
"end": {
- "line": 389,
+ "line": 356,
"column": 47
}
}
},
"prefix": false,
"range": [
- 13517,
- 13522
+ 12171,
+ 12176
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 44
},
"end": {
- "line": 389,
+ "line": 356,
"column": 49
}
}
@@ -30711,16 +27909,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 13541,
- 13547
+ 12195,
+ 12201
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 16
},
"end": {
- "line": 390,
+ "line": 357,
"column": 22
}
}
@@ -30734,16 +27932,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13550,
- 13552
+ 12204,
+ 12206
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 25
},
"end": {
- "line": 390,
+ "line": 357,
"column": 27
}
}
@@ -30752,31 +27950,31 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 13553,
- 13569
+ 12207,
+ 12223
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 28
},
"end": {
- "line": 390,
+ "line": 357,
"column": 44
}
}
},
"range": [
- 13550,
- 13569
+ 12204,
+ 12223
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 25
},
"end": {
- "line": 390,
+ "line": 357,
"column": 44
}
}
@@ -30786,47 +27984,47 @@
"type": "Identifier",
"name": "idx",
"range": [
- 13570,
- 13573
+ 12224,
+ 12227
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 45
},
"end": {
- "line": 390,
+ "line": 357,
"column": 48
}
}
}
],
"range": [
- 13550,
- 13574
+ 12204,
+ 12228
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 25
},
"end": {
- "line": 390,
+ "line": 357,
"column": 49
}
}
},
"range": [
- 13541,
- 13574
+ 12195,
+ 12228
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 16
},
"end": {
- "line": 390,
+ "line": 357,
"column": 49
}
}
@@ -30834,16 +28032,16 @@
],
"kind": "let",
"range": [
- 13537,
- 13575
+ 12191,
+ 12229
],
"loc": {
"start": {
- "line": 390,
+ "line": 357,
"column": 12
},
"end": {
- "line": 390,
+ "line": 357,
"column": 50
}
}
@@ -30857,16 +28055,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 13592,
- 13595
+ 12246,
+ 12249
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 16
},
"end": {
- "line": 391,
+ "line": 358,
"column": 19
}
}
@@ -30880,16 +28078,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13598,
- 13601
+ 12252,
+ 12255
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 22
},
"end": {
- "line": 391,
+ "line": 358,
"column": 25
}
}
@@ -30898,31 +28096,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 13602,
- 13605
+ 12256,
+ 12259
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 26
},
"end": {
- "line": 391,
+ "line": 358,
"column": 29
}
}
},
"range": [
- 13598,
- 13605
+ 12252,
+ 12259
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 22
},
"end": {
- "line": 391,
+ "line": 358,
"column": 29
}
}
@@ -30932,16 +28130,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 13606,
- 13612
+ 12260,
+ 12266
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 30
},
"end": {
- "line": 391,
+ "line": 358,
"column": 36
}
}
@@ -30951,47 +28149,47 @@
"value": "img",
"raw": "'img'",
"range": [
- 13614,
- 13619
+ 12268,
+ 12273
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 38
},
"end": {
- "line": 391,
+ "line": 358,
"column": 43
}
}
}
],
"range": [
- 13598,
- 13620
+ 12252,
+ 12274
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 22
},
"end": {
- "line": 391,
+ "line": 358,
"column": 44
}
}
},
"range": [
- 13592,
- 13620
+ 12246,
+ 12274
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 16
},
"end": {
- "line": 391,
+ "line": 358,
"column": 44
}
}
@@ -30999,16 +28197,16 @@
],
"kind": "let",
"range": [
- 13588,
- 13621
+ 12242,
+ 12275
],
"loc": {
"start": {
- "line": 391,
+ "line": 358,
"column": 12
},
"end": {
- "line": 391,
+ "line": 358,
"column": 45
}
}
@@ -31025,16 +28223,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 13638,
- 13641
+ 12292,
+ 12295
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 15
},
"end": {
- "line": 393,
+ "line": 360,
"column": 18
}
}
@@ -31043,31 +28241,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 13642,
- 13648
+ 12296,
+ 12302
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 19
},
"end": {
- "line": 393,
+ "line": 360,
"column": 25
}
}
},
"range": [
- 13638,
- 13648
+ 12292,
+ 12302
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 15
},
"end": {
- "line": 393,
+ "line": 360,
"column": 25
}
}
@@ -31077,31 +28275,31 @@
"value": 1,
"raw": "1",
"range": [
- 13653,
- 13654
+ 12307,
+ 12308
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 30
},
"end": {
- "line": 393,
+ "line": 360,
"column": 31
}
}
},
"range": [
- 13638,
- 13654
+ 12292,
+ 12308
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 15
},
"end": {
- "line": 393,
+ "line": 360,
"column": 31
}
}
@@ -31120,16 +28318,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 13673,
- 13679
+ 12327,
+ 12333
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 16
},
"end": {
- "line": 394,
+ "line": 361,
"column": 22
}
}
@@ -31138,31 +28336,31 @@
"type": "Identifier",
"name": "removeChild",
"range": [
- 13680,
- 13691
+ 12334,
+ 12345
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 23
},
"end": {
- "line": 394,
+ "line": 361,
"column": 34
}
}
},
"range": [
- 13673,
- 13691
+ 12327,
+ 12345
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 16
},
"end": {
- "line": 394,
+ "line": 361,
"column": 34
}
}
@@ -31175,16 +28373,16 @@
"type": "Identifier",
"name": "img",
"range": [
- 13692,
- 13695
+ 12346,
+ 12349
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 35
},
"end": {
- "line": 394,
+ "line": 361,
"column": 38
}
}
@@ -31194,141 +28392,141 @@
"value": 0,
"raw": "0",
"range": [
- 13696,
- 13697
+ 12350,
+ 12351
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 39
},
"end": {
- "line": 394,
+ "line": 361,
"column": 40
}
}
},
"range": [
- 13692,
- 13698
+ 12346,
+ 12352
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 35
},
"end": {
- "line": 394,
+ "line": 361,
"column": 41
}
}
}
],
"range": [
- 13673,
- 13699
+ 12327,
+ 12353
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 16
},
"end": {
- "line": 394,
+ "line": 361,
"column": 42
}
}
},
"range": [
- 13673,
- 13700
+ 12327,
+ 12354
],
"loc": {
"start": {
- "line": 394,
+ "line": 361,
"column": 16
},
"end": {
- "line": 394,
+ "line": 361,
"column": 43
}
}
}
],
"range": [
- 13655,
- 13714
+ 12309,
+ 12368
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 32
},
"end": {
- "line": 395,
+ "line": 362,
"column": 13
}
}
},
"alternate": null,
"range": [
- 13635,
- 13714
+ 12289,
+ 12368
],
"loc": {
"start": {
- "line": 393,
+ "line": 360,
"column": 12
},
"end": {
- "line": 395,
+ "line": 362,
"column": 13
}
}
}
],
"range": [
- 13523,
- 13724
+ 12177,
+ 12378
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 50
},
"end": {
- "line": 396,
+ "line": 363,
"column": 9
}
}
},
"range": [
- 13481,
- 13724
+ 12135,
+ 12378
],
"loc": {
"start": {
- "line": 389,
+ "line": 356,
"column": 8
},
"end": {
- "line": 396,
+ "line": 363,
"column": 9
}
}
}
],
"range": [
- 13316,
- 13730
+ 11970,
+ 12384
],
"loc": {
"start": {
- "line": 382,
+ "line": 349,
"column": 13
},
"end": {
- "line": 397,
+ "line": 364,
"column": 5
}
}
@@ -31336,16 +28534,16 @@
"generator": false,
"expression": false,
"range": [
- 13314,
- 13730
+ 11968,
+ 12384
],
"loc": {
"start": {
- "line": 382,
+ "line": 349,
"column": 11
},
"end": {
- "line": 397,
+ "line": 364,
"column": 5
}
}
@@ -31353,16 +28551,16 @@
"kind": "method",
"computed": false,
"range": [
- 13307,
- 13730
+ 11961,
+ 12384
],
"loc": {
"start": {
- "line": 382,
+ "line": 349,
"column": 4
},
"end": {
- "line": 397,
+ "line": 364,
"column": 5
}
},
@@ -31371,16 +28569,16 @@
"type": "Block",
"value": "*\n * Destroy sort\n ",
"range": [
- 13271,
- 13302
+ 11925,
+ 11956
],
"loc": {
"start": {
- "line": 379,
+ "line": 346,
"column": 4
},
"end": {
- "line": 381,
+ "line": 348,
"column": 7
}
}
@@ -31391,7 +28589,7 @@
],
"range": [
211,
- 13733
+ 12387
],
"loc": {
"start": {
@@ -31399,14 +28597,14 @@
"column": 41
},
"end": {
- "line": 399,
+ "line": 366,
"column": 1
}
}
},
"range": [
185,
- 13733
+ 12387
],
"loc": {
"start": {
@@ -31414,7 +28612,7 @@
"column": 15
},
"end": {
- "line": 399,
+ "line": 366,
"column": 1
}
},
@@ -31424,16 +28622,16 @@
"type": "Line",
"value": "Converters",
"range": [
- 13735,
- 13747
+ 12389,
+ 12401
],
"loc": {
"start": {
- "line": 401,
+ "line": 368,
"column": 0
},
"end": {
- "line": 401,
+ "line": 368,
"column": 12
}
}
@@ -31442,7 +28640,7 @@
},
"range": [
170,
- 13733
+ 12387
],
"loc": {
"start": {
@@ -31450,7 +28648,7 @@
"column": 0
},
"end": {
- "line": 399,
+ "line": 366,
"column": 1
}
},
@@ -31459,16 +28657,16 @@
"type": "Line",
"value": "Converters",
"range": [
- 13735,
- 13747
+ 12389,
+ 12401
],
"loc": {
"start": {
- "line": 401,
+ "line": 368,
"column": 0
},
"end": {
- "line": 401,
+ "line": 368,
"column": 12
}
}
@@ -31481,16 +28679,16 @@
"type": "Identifier",
"name": "usNumberConverter",
"range": [
- 13757,
- 13774
+ 12411,
+ 12428
],
"loc": {
"start": {
- "line": 402,
+ "line": 369,
"column": 9
},
"end": {
- "line": 402,
+ "line": 369,
"column": 26
}
}
@@ -31500,16 +28698,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13775,
- 13776
+ 12429,
+ 12430
],
"loc": {
"start": {
- "line": 402,
+ "line": 369,
"column": 27
},
"end": {
- "line": 402,
+ "line": 369,
"column": 28
}
}
@@ -31529,16 +28727,16 @@
"type": "Identifier",
"name": "Helpers",
"range": [
- 13790,
- 13797
+ 12444,
+ 12451
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 11
},
"end": {
- "line": 403,
+ "line": 370,
"column": 18
}
}
@@ -31547,31 +28745,31 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 13798,
- 13812
+ 12452,
+ 12466
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 19
},
"end": {
- "line": 403,
+ "line": 370,
"column": 33
}
}
},
"range": [
- 13790,
- 13812
+ 12444,
+ 12466
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 11
},
"end": {
- "line": 403,
+ "line": 370,
"column": 33
}
}
@@ -31581,16 +28779,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13813,
- 13814
+ 12467,
+ 12468
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 34
},
"end": {
- "line": 403,
+ "line": 370,
"column": 35
}
}
@@ -31600,63 +28798,63 @@
"value": "us",
"raw": "'us'",
"range": [
- 13816,
- 13820
+ 12470,
+ 12474
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 37
},
"end": {
- "line": 403,
+ "line": 370,
"column": 41
}
}
}
],
"range": [
- 13790,
- 13821
+ 12444,
+ 12475
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 11
},
"end": {
- "line": 403,
+ "line": 370,
"column": 42
}
}
},
"range": [
- 13783,
- 13822
+ 12437,
+ 12476
],
"loc": {
"start": {
- "line": 403,
+ "line": 370,
"column": 4
},
"end": {
- "line": 403,
+ "line": 370,
"column": 43
}
}
}
],
"range": [
- 13777,
- 13824
+ 12431,
+ 12478
],
"loc": {
"start": {
- "line": 402,
+ "line": 369,
"column": 29
},
"end": {
- "line": 404,
+ "line": 371,
"column": 1
}
}
@@ -31664,16 +28862,16 @@
"generator": false,
"expression": false,
"range": [
- 13748,
- 13824
+ 12402,
+ 12478
],
"loc": {
"start": {
- "line": 402,
+ "line": 369,
"column": 0
},
"end": {
- "line": 404,
+ "line": 371,
"column": 1
}
},
@@ -31682,16 +28880,16 @@
"type": "Line",
"value": "Converters",
"range": [
- 13735,
- 13747
+ 12389,
+ 12401
],
"loc": {
"start": {
- "line": 401,
+ "line": 368,
"column": 0
},
"end": {
- "line": 401,
+ "line": 368,
"column": 12
}
}
@@ -31704,16 +28902,16 @@
"type": "Identifier",
"name": "euNumberConverter",
"range": [
- 13834,
- 13851
+ 12488,
+ 12505
],
"loc": {
"start": {
- "line": 405,
+ "line": 372,
"column": 9
},
"end": {
- "line": 405,
+ "line": 372,
"column": 26
}
}
@@ -31723,16 +28921,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13852,
- 13853
+ 12506,
+ 12507
],
"loc": {
"start": {
- "line": 405,
+ "line": 372,
"column": 27
},
"end": {
- "line": 405,
+ "line": 372,
"column": 28
}
}
@@ -31752,16 +28950,16 @@
"type": "Identifier",
"name": "Helpers",
"range": [
- 13867,
- 13874
+ 12521,
+ 12528
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 11
},
"end": {
- "line": 406,
+ "line": 373,
"column": 18
}
}
@@ -31770,31 +28968,31 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 13875,
- 13889
+ 12529,
+ 12543
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 19
},
"end": {
- "line": 406,
+ "line": 373,
"column": 33
}
}
},
"range": [
- 13867,
- 13889
+ 12521,
+ 12543
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 11
},
"end": {
- "line": 406,
+ "line": 373,
"column": 33
}
}
@@ -31804,16 +29002,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13890,
- 13891
+ 12544,
+ 12545
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 34
},
"end": {
- "line": 406,
+ "line": 373,
"column": 35
}
}
@@ -31823,63 +29021,63 @@
"value": "eu",
"raw": "'eu'",
"range": [
- 13893,
- 13897
+ 12547,
+ 12551
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 37
},
"end": {
- "line": 406,
+ "line": 373,
"column": 41
}
}
}
],
"range": [
- 13867,
- 13898
+ 12521,
+ 12552
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 11
},
"end": {
- "line": 406,
+ "line": 373,
"column": 42
}
}
},
"range": [
- 13860,
- 13899
+ 12514,
+ 12553
],
"loc": {
"start": {
- "line": 406,
+ "line": 373,
"column": 4
},
"end": {
- "line": 406,
+ "line": 373,
"column": 43
}
}
}
],
"range": [
- 13854,
- 13901
+ 12508,
+ 12555
],
"loc": {
"start": {
- "line": 405,
+ "line": 372,
"column": 29
},
"end": {
- "line": 407,
+ "line": 374,
"column": 1
}
}
@@ -31887,16 +29085,16 @@
"generator": false,
"expression": false,
"range": [
- 13825,
- 13901
+ 12479,
+ 12555
],
"loc": {
"start": {
- "line": 405,
+ "line": 372,
"column": 0
},
"end": {
- "line": 407,
+ "line": 374,
"column": 1
}
}
@@ -31907,16 +29105,16 @@
"type": "Identifier",
"name": "dateConverter",
"range": [
- 13911,
- 13924
+ 12565,
+ 12578
],
"loc": {
"start": {
- "line": 408,
+ "line": 375,
"column": 9
},
"end": {
- "line": 408,
+ "line": 375,
"column": 22
}
}
@@ -31926,16 +29124,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13925,
- 13926
+ 12579,
+ 12580
],
"loc": {
"start": {
- "line": 408,
+ "line": 375,
"column": 23
},
"end": {
- "line": 408,
+ "line": 375,
"column": 24
}
}
@@ -31944,16 +29142,16 @@
"type": "Identifier",
"name": "format",
"range": [
- 13928,
- 13934
+ 12582,
+ 12588
],
"loc": {
"start": {
- "line": 408,
+ "line": 375,
"column": 26
},
"end": {
- "line": 408,
+ "line": 375,
"column": 32
}
}
@@ -31973,16 +29171,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 13948,
- 13958
+ 12602,
+ 12612
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 11
},
"end": {
- "line": 409,
+ "line": 376,
"column": 21
}
}
@@ -31991,31 +29189,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 13959,
- 13965
+ 12613,
+ 12619
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 22
},
"end": {
- "line": 409,
+ "line": 376,
"column": 28
}
}
},
"range": [
- 13948,
- 13965
+ 12602,
+ 12619
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 11
},
"end": {
- "line": 409,
+ "line": 376,
"column": 28
}
}
@@ -32025,16 +29223,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 13966,
- 13967
+ 12620,
+ 12621
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 29
},
"end": {
- "line": 409,
+ "line": 376,
"column": 30
}
}
@@ -32043,63 +29241,63 @@
"type": "Identifier",
"name": "format",
"range": [
- 13969,
- 13975
+ 12623,
+ 12629
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 32
},
"end": {
- "line": 409,
+ "line": 376,
"column": 38
}
}
}
],
"range": [
- 13948,
- 13976
+ 12602,
+ 12630
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 11
},
"end": {
- "line": 409,
+ "line": 376,
"column": 39
}
}
},
"range": [
- 13941,
- 13977
+ 12595,
+ 12631
],
"loc": {
"start": {
- "line": 409,
+ "line": 376,
"column": 4
},
"end": {
- "line": 409,
+ "line": 376,
"column": 40
}
}
}
],
"range": [
- 13935,
- 13979
+ 12589,
+ 12633
],
"loc": {
"start": {
- "line": 408,
+ "line": 375,
"column": 33
},
"end": {
- "line": 410,
+ "line": 377,
"column": 1
}
}
@@ -32107,16 +29305,16 @@
"generator": false,
"expression": false,
"range": [
- 13902,
- 13979
+ 12556,
+ 12633
],
"loc": {
"start": {
- "line": 408,
+ "line": 375,
"column": 0
},
"end": {
- "line": 410,
+ "line": 377,
"column": 1
}
}
@@ -32127,16 +29325,16 @@
"type": "Identifier",
"name": "dmyDateConverter",
"range": [
- 13989,
- 14005
+ 12643,
+ 12659
],
"loc": {
"start": {
- "line": 411,
+ "line": 378,
"column": 9
},
"end": {
- "line": 411,
+ "line": 378,
"column": 25
}
}
@@ -32146,16 +29344,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14006,
- 14007
+ 12660,
+ 12661
],
"loc": {
"start": {
- "line": 411,
+ "line": 378,
"column": 26
},
"end": {
- "line": 411,
+ "line": 378,
"column": 27
}
}
@@ -32172,16 +29370,16 @@
"type": "Identifier",
"name": "dateConverter",
"range": [
- 14021,
- 14034
+ 12675,
+ 12688
],
"loc": {
"start": {
- "line": 412,
+ "line": 379,
"column": 11
},
"end": {
- "line": 412,
+ "line": 379,
"column": 24
}
}
@@ -32191,16 +29389,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14035,
- 14036
+ 12689,
+ 12690
],
"loc": {
"start": {
- "line": 412,
+ "line": 379,
"column": 25
},
"end": {
- "line": 412,
+ "line": 379,
"column": 26
}
}
@@ -32210,63 +29408,63 @@
"value": "DMY",
"raw": "'DMY'",
"range": [
- 14038,
- 14043
+ 12692,
+ 12697
],
"loc": {
"start": {
- "line": 412,
+ "line": 379,
"column": 28
},
"end": {
- "line": 412,
+ "line": 379,
"column": 33
}
}
}
],
"range": [
- 14021,
- 14044
+ 12675,
+ 12698
],
"loc": {
"start": {
- "line": 412,
+ "line": 379,
"column": 11
},
"end": {
- "line": 412,
+ "line": 379,
"column": 34
}
}
},
"range": [
- 14014,
- 14045
+ 12668,
+ 12699
],
"loc": {
"start": {
- "line": 412,
+ "line": 379,
"column": 4
},
"end": {
- "line": 412,
+ "line": 379,
"column": 35
}
}
}
],
"range": [
- 14008,
- 14047
+ 12662,
+ 12701
],
"loc": {
"start": {
- "line": 411,
+ "line": 378,
"column": 28
},
"end": {
- "line": 413,
+ "line": 380,
"column": 1
}
}
@@ -32274,16 +29472,16 @@
"generator": false,
"expression": false,
"range": [
- 13980,
- 14047
+ 12634,
+ 12701
],
"loc": {
"start": {
- "line": 411,
+ "line": 378,
"column": 0
},
"end": {
- "line": 413,
+ "line": 380,
"column": 1
}
}
@@ -32294,16 +29492,16 @@
"type": "Identifier",
"name": "mdyDateConverter",
"range": [
- 14057,
- 14073
+ 12711,
+ 12727
],
"loc": {
"start": {
- "line": 414,
+ "line": 381,
"column": 9
},
"end": {
- "line": 414,
+ "line": 381,
"column": 25
}
}
@@ -32313,16 +29511,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14074,
- 14075
+ 12728,
+ 12729
],
"loc": {
"start": {
- "line": 414,
+ "line": 381,
"column": 26
},
"end": {
- "line": 414,
+ "line": 381,
"column": 27
}
}
@@ -32339,16 +29537,16 @@
"type": "Identifier",
"name": "dateConverter",
"range": [
- 14089,
- 14102
+ 12743,
+ 12756
],
"loc": {
"start": {
- "line": 415,
+ "line": 382,
"column": 11
},
"end": {
- "line": 415,
+ "line": 382,
"column": 24
}
}
@@ -32358,16 +29556,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14103,
- 14104
+ 12757,
+ 12758
],
"loc": {
"start": {
- "line": 415,
+ "line": 382,
"column": 25
},
"end": {
- "line": 415,
+ "line": 382,
"column": 26
}
}
@@ -32377,63 +29575,63 @@
"value": "MDY",
"raw": "'MDY'",
"range": [
- 14106,
- 14111
+ 12760,
+ 12765
],
"loc": {
"start": {
- "line": 415,
+ "line": 382,
"column": 28
},
"end": {
- "line": 415,
+ "line": 382,
"column": 33
}
}
}
],
"range": [
- 14089,
- 14112
+ 12743,
+ 12766
],
"loc": {
"start": {
- "line": 415,
+ "line": 382,
"column": 11
},
"end": {
- "line": 415,
+ "line": 382,
"column": 34
}
}
},
"range": [
- 14082,
- 14113
+ 12736,
+ 12767
],
"loc": {
"start": {
- "line": 415,
+ "line": 382,
"column": 4
},
"end": {
- "line": 415,
+ "line": 382,
"column": 35
}
}
}
],
"range": [
- 14076,
- 14115
+ 12730,
+ 12769
],
"loc": {
"start": {
- "line": 414,
+ "line": 381,
"column": 28
},
"end": {
- "line": 416,
+ "line": 383,
"column": 1
}
}
@@ -32441,16 +29639,16 @@
"generator": false,
"expression": false,
"range": [
- 14048,
- 14115
+ 12702,
+ 12769
],
"loc": {
"start": {
- "line": 414,
+ "line": 381,
"column": 0
},
"end": {
- "line": 416,
+ "line": 383,
"column": 1
}
}
@@ -32461,16 +29659,16 @@
"type": "Identifier",
"name": "ymdDateConverter",
"range": [
- 14125,
- 14141
+ 12779,
+ 12795
],
"loc": {
"start": {
- "line": 417,
+ "line": 384,
"column": 9
},
"end": {
- "line": 417,
+ "line": 384,
"column": 25
}
}
@@ -32480,16 +29678,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14142,
- 14143
+ 12796,
+ 12797
],
"loc": {
"start": {
- "line": 417,
+ "line": 384,
"column": 26
},
"end": {
- "line": 417,
+ "line": 384,
"column": 27
}
}
@@ -32506,16 +29704,16 @@
"type": "Identifier",
"name": "dateConverter",
"range": [
- 14157,
- 14170
+ 12811,
+ 12824
],
"loc": {
"start": {
- "line": 418,
+ "line": 385,
"column": 11
},
"end": {
- "line": 418,
+ "line": 385,
"column": 24
}
}
@@ -32525,16 +29723,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14171,
- 14172
+ 12825,
+ 12826
],
"loc": {
"start": {
- "line": 418,
+ "line": 385,
"column": 25
},
"end": {
- "line": 418,
+ "line": 385,
"column": 26
}
}
@@ -32544,63 +29742,63 @@
"value": "YMD",
"raw": "'YMD'",
"range": [
- 14174,
- 14179
+ 12828,
+ 12833
],
"loc": {
"start": {
- "line": 418,
+ "line": 385,
"column": 28
},
"end": {
- "line": 418,
+ "line": 385,
"column": 33
}
}
}
],
"range": [
- 14157,
- 14180
+ 12811,
+ 12834
],
"loc": {
"start": {
- "line": 418,
+ "line": 385,
"column": 11
},
"end": {
- "line": 418,
+ "line": 385,
"column": 34
}
}
},
"range": [
- 14150,
- 14181
+ 12804,
+ 12835
],
"loc": {
"start": {
- "line": 418,
+ "line": 385,
"column": 4
},
"end": {
- "line": 418,
+ "line": 385,
"column": 35
}
}
}
],
"range": [
- 14144,
- 14183
+ 12798,
+ 12837
],
"loc": {
"start": {
- "line": 417,
+ "line": 384,
"column": 28
},
"end": {
- "line": 419,
+ "line": 386,
"column": 1
}
}
@@ -32608,16 +29806,16 @@
"generator": false,
"expression": false,
"range": [
- 14116,
- 14183
+ 12770,
+ 12837
],
"loc": {
"start": {
- "line": 417,
+ "line": 384,
"column": 0
},
"end": {
- "line": 419,
+ "line": 386,
"column": 1
}
}
@@ -32628,16 +29826,16 @@
"type": "Identifier",
"name": "ddmmmyyyyDateConverter",
"range": [
- 14193,
- 14215
+ 12847,
+ 12869
],
"loc": {
"start": {
- "line": 420,
+ "line": 387,
"column": 9
},
"end": {
- "line": 420,
+ "line": 387,
"column": 31
}
}
@@ -32647,16 +29845,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14216,
- 14217
+ 12870,
+ 12871
],
"loc": {
"start": {
- "line": 420,
+ "line": 387,
"column": 32
},
"end": {
- "line": 420,
+ "line": 387,
"column": 33
}
}
@@ -32673,16 +29871,16 @@
"type": "Identifier",
"name": "dateConverter",
"range": [
- 14231,
- 14244
+ 12885,
+ 12898
],
"loc": {
"start": {
- "line": 421,
+ "line": 388,
"column": 11
},
"end": {
- "line": 421,
+ "line": 388,
"column": 24
}
}
@@ -32692,16 +29890,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 14245,
- 14246
+ 12899,
+ 12900
],
"loc": {
"start": {
- "line": 421,
+ "line": 388,
"column": 25
},
"end": {
- "line": 421,
+ "line": 388,
"column": 26
}
}
@@ -32711,63 +29909,63 @@
"value": "DDMMMYYYY",
"raw": "'DDMMMYYYY'",
"range": [
- 14248,
- 14259
+ 12902,
+ 12913
],
"loc": {
"start": {
- "line": 421,
+ "line": 388,
"column": 28
},
"end": {
- "line": 421,
+ "line": 388,
"column": 39
}
}
}
],
"range": [
- 14231,
- 14260
+ 12885,
+ 12914
],
"loc": {
"start": {
- "line": 421,
+ "line": 388,
"column": 11
},
"end": {
- "line": 421,
+ "line": 388,
"column": 40
}
}
},
"range": [
- 14224,
- 14261
+ 12878,
+ 12915
],
"loc": {
"start": {
- "line": 421,
+ "line": 388,
"column": 4
},
"end": {
- "line": 421,
+ "line": 388,
"column": 41
}
}
}
],
"range": [
- 14218,
- 14263
+ 12872,
+ 12917
],
"loc": {
"start": {
- "line": 420,
+ "line": 387,
"column": 34
},
"end": {
- "line": 422,
+ "line": 389,
"column": 1
}
}
@@ -32775,16 +29973,16 @@
"generator": false,
"expression": false,
"range": [
- 14184,
- 14263
+ 12838,
+ 12917
],
"loc": {
"start": {
- "line": 420,
+ "line": 387,
"column": 0
},
"end": {
- "line": 422,
+ "line": 389,
"column": 1
}
}
@@ -32795,16 +29993,16 @@
"type": "Identifier",
"name": "ipAddress",
"range": [
- 14274,
- 14283
+ 12928,
+ 12937
],
"loc": {
"start": {
- "line": 424,
+ "line": 391,
"column": 9
},
"end": {
- "line": 424,
+ "line": 391,
"column": 18
}
}
@@ -32814,16 +30012,16 @@
"type": "Identifier",
"name": "value",
"range": [
- 14284,
- 14289
+ 12938,
+ 12943
],
"loc": {
"start": {
- "line": 424,
+ "line": 391,
"column": 19
},
"end": {
- "line": 424,
+ "line": 391,
"column": 24
}
}
@@ -32841,16 +30039,16 @@
"type": "Identifier",
"name": "vals",
"range": [
- 14300,
- 14304
+ 12954,
+ 12958
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 8
},
"end": {
- "line": 425,
+ "line": 392,
"column": 12
}
}
@@ -32864,16 +30062,16 @@
"type": "Identifier",
"name": "value",
"range": [
- 14307,
- 14312
+ 12961,
+ 12966
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 15
},
"end": {
- "line": 425,
+ "line": 392,
"column": 20
}
}
@@ -32882,31 +30080,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 14313,
- 14318
+ 12967,
+ 12972
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 21
},
"end": {
- "line": 425,
+ "line": 392,
"column": 26
}
}
},
"range": [
- 14307,
- 14318
+ 12961,
+ 12972
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 15
},
"end": {
- "line": 425,
+ "line": 392,
"column": 26
}
}
@@ -32917,47 +30115,47 @@
"value": ".",
"raw": "'.'",
"range": [
- 14319,
- 14322
+ 12973,
+ 12976
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 27
},
"end": {
- "line": 425,
+ "line": 392,
"column": 30
}
}
}
],
"range": [
- 14307,
- 14323
+ 12961,
+ 12977
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 15
},
"end": {
- "line": 425,
+ "line": 392,
"column": 31
}
}
},
"range": [
- 14300,
- 14323
+ 12954,
+ 12977
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 8
},
"end": {
- "line": 425,
+ "line": 392,
"column": 31
}
}
@@ -32965,16 +30163,16 @@
],
"kind": "let",
"range": [
- 14296,
- 14324
+ 12950,
+ 12978
],
"loc": {
"start": {
- "line": 425,
+ "line": 392,
"column": 4
},
"end": {
- "line": 425,
+ "line": 392,
"column": 32
}
}
@@ -32990,32 +30188,32 @@
"type": "Identifier",
"name": "x",
"range": [
- 14338,
- 14339
+ 12992,
+ 12993
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 13
},
"end": {
- "line": 426,
+ "line": 393,
"column": 14
}
}
},
"init": null,
"range": [
- 14338,
- 14339
+ 12992,
+ 12993
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 13
},
"end": {
- "line": 426,
+ "line": 393,
"column": 14
}
}
@@ -33023,16 +30221,16 @@
],
"kind": "let",
"range": [
- 14334,
- 14339
+ 12988,
+ 12993
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 9
},
"end": {
- "line": 426,
+ "line": 393,
"column": 14
}
}
@@ -33041,16 +30239,16 @@
"type": "Identifier",
"name": "vals",
"range": [
- 14343,
- 14347
+ 12997,
+ 13001
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 18
},
"end": {
- "line": 426,
+ "line": 393,
"column": 22
}
}
@@ -33067,16 +30265,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 14363,
- 14366
+ 13017,
+ 13020
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 12
},
"end": {
- "line": 427,
+ "line": 394,
"column": 15
}
}
@@ -33088,16 +30286,16 @@
"type": "Identifier",
"name": "vals",
"range": [
- 14369,
- 14373
+ 13023,
+ 13027
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 18
},
"end": {
- "line": 427,
+ "line": 394,
"column": 22
}
}
@@ -33106,46 +30304,46 @@
"type": "Identifier",
"name": "x",
"range": [
- 14374,
- 14375
+ 13028,
+ 13029
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 23
},
"end": {
- "line": 427,
+ "line": 394,
"column": 24
}
}
},
"range": [
- 14369,
- 14376
+ 13023,
+ 13030
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 18
},
"end": {
- "line": 427,
+ "line": 394,
"column": 25
}
}
},
"range": [
- 14363,
- 14376
+ 13017,
+ 13030
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 12
},
"end": {
- "line": 427,
+ "line": 394,
"column": 25
}
}
@@ -33153,16 +30351,16 @@
],
"kind": "let",
"range": [
- 14359,
- 14377
+ 13013,
+ 13031
],
"loc": {
"start": {
- "line": 427,
+ "line": 394,
"column": 8
},
"end": {
- "line": 427,
+ "line": 394,
"column": 26
}
}
@@ -33177,16 +30375,16 @@
"value": 3,
"raw": "3",
"range": [
- 14393,
- 14394
+ 13047,
+ 13048
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 15
},
"end": {
- "line": 428,
+ "line": 395,
"column": 16
}
}
@@ -33198,16 +30396,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 14397,
- 14400
+ 13051,
+ 13054
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 19
},
"end": {
- "line": 428,
+ "line": 395,
"column": 22
}
}
@@ -33216,46 +30414,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 14401,
- 14407
+ 13055,
+ 13061
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 23
},
"end": {
- "line": 428,
+ "line": 395,
"column": 29
}
}
},
"range": [
- 14397,
- 14407
+ 13051,
+ 13061
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 19
},
"end": {
- "line": 428,
+ "line": 395,
"column": 29
}
}
},
"range": [
- 14393,
- 14407
+ 13047,
+ 13061
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 15
},
"end": {
- "line": 428,
+ "line": 395,
"column": 29
}
}
@@ -33272,16 +30470,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 14422,
- 14425
+ 13076,
+ 13079
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 12
},
"end": {
- "line": 429,
+ "line": 396,
"column": 15
}
}
@@ -33294,16 +30492,16 @@
"value": "0",
"raw": "'0'",
"range": [
- 14428,
- 14431
+ 13082,
+ 13085
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 18
},
"end": {
- "line": 429,
+ "line": 396,
"column": 21
}
}
@@ -33312,92 +30510,92 @@
"type": "Identifier",
"name": "val",
"range": [
- 14432,
- 14435
+ 13086,
+ 13089
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 22
},
"end": {
- "line": 429,
+ "line": 396,
"column": 25
}
}
},
"range": [
- 14428,
- 14435
+ 13082,
+ 13089
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 18
},
"end": {
- "line": 429,
+ "line": 396,
"column": 25
}
}
},
"range": [
- 14422,
- 14435
+ 13076,
+ 13089
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 12
},
"end": {
- "line": 429,
+ "line": 396,
"column": 25
}
}
},
"range": [
- 14422,
- 14436
+ 13076,
+ 13090
],
"loc": {
"start": {
- "line": 429,
+ "line": 396,
"column": 12
},
"end": {
- "line": 429,
+ "line": 396,
"column": 26
}
}
}
],
"range": [
- 14408,
- 14446
+ 13062,
+ 13100
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 30
},
"end": {
- "line": 430,
+ "line": 397,
"column": 9
}
}
},
"range": [
- 14386,
- 14446
+ 13040,
+ 13100
],
"loc": {
"start": {
- "line": 428,
+ "line": 395,
"column": 8
},
"end": {
- "line": 430,
+ "line": 397,
"column": 9
}
}
@@ -33414,16 +30612,16 @@
"type": "Identifier",
"name": "vals",
"range": [
- 14455,
- 14459
+ 13109,
+ 13113
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 8
},
"end": {
- "line": 431,
+ "line": 398,
"column": 12
}
}
@@ -33432,31 +30630,31 @@
"type": "Identifier",
"name": "x",
"range": [
- 14460,
- 14461
+ 13114,
+ 13115
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 13
},
"end": {
- "line": 431,
+ "line": 398,
"column": 14
}
}
},
"range": [
- 14455,
- 14462
+ 13109,
+ 13116
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 8
},
"end": {
- "line": 431,
+ "line": 398,
"column": 15
}
}
@@ -33465,78 +30663,78 @@
"type": "Identifier",
"name": "val",
"range": [
- 14465,
- 14468
+ 13119,
+ 13122
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 18
},
"end": {
- "line": 431,
+ "line": 398,
"column": 21
}
}
},
"range": [
- 14455,
- 14468
+ 13109,
+ 13122
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 8
},
"end": {
- "line": 431,
+ "line": 398,
"column": 21
}
}
},
"range": [
- 14455,
- 14469
+ 13109,
+ 13123
],
"loc": {
"start": {
- "line": 431,
+ "line": 398,
"column": 8
},
"end": {
- "line": 431,
+ "line": 398,
"column": 22
}
}
}
],
"range": [
- 14349,
- 14475
+ 13003,
+ 13129
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 24
},
"end": {
- "line": 432,
+ "line": 399,
"column": 5
}
}
},
"each": false,
"range": [
- 14329,
- 14475
+ 12983,
+ 13129
],
"loc": {
"start": {
- "line": 426,
+ "line": 393,
"column": 4
},
"end": {
- "line": 432,
+ "line": 399,
"column": 5
}
}
@@ -33552,16 +30750,16 @@
"type": "Identifier",
"name": "vals",
"range": [
- 14487,
- 14491
+ 13141,
+ 13145
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 11
},
"end": {
- "line": 433,
+ "line": 400,
"column": 15
}
}
@@ -33570,31 +30768,31 @@
"type": "Identifier",
"name": "join",
"range": [
- 14492,
- 14496
+ 13146,
+ 13150
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 16
},
"end": {
- "line": 433,
+ "line": 400,
"column": 20
}
}
},
"range": [
- 14487,
- 14496
+ 13141,
+ 13150
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 11
},
"end": {
- "line": 433,
+ "line": 400,
"column": 20
}
}
@@ -33605,63 +30803,63 @@
"value": ".",
"raw": "'.'",
"range": [
- 14497,
- 14500
+ 13151,
+ 13154
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 21
},
"end": {
- "line": 433,
+ "line": 400,
"column": 24
}
}
}
],
"range": [
- 14487,
- 14501
+ 13141,
+ 13155
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 11
},
"end": {
- "line": 433,
+ "line": 400,
"column": 25
}
}
},
"range": [
- 14480,
- 14502
+ 13134,
+ 13156
],
"loc": {
"start": {
- "line": 433,
+ "line": 400,
"column": 4
},
"end": {
- "line": 433,
+ "line": 400,
"column": 26
}
}
}
],
"range": [
- 14290,
- 14504
+ 12944,
+ 13158
],
"loc": {
"start": {
- "line": 424,
+ "line": 391,
"column": 25
},
"end": {
- "line": 434,
+ "line": 401,
"column": 1
}
}
@@ -33669,16 +30867,16 @@
"generator": false,
"expression": false,
"range": [
- 14265,
- 14504
+ 12919,
+ 13158
],
"loc": {
"start": {
- "line": 424,
+ "line": 391,
"column": 0
},
"end": {
- "line": 434,
+ "line": 401,
"column": 1
}
}
@@ -33689,16 +30887,16 @@
"type": "Identifier",
"name": "sortIP",
"range": [
- 14515,
- 14521
+ 13169,
+ 13175
],
"loc": {
"start": {
- "line": 436,
+ "line": 403,
"column": 9
},
"end": {
- "line": 436,
+ "line": 403,
"column": 15
}
}
@@ -33708,16 +30906,16 @@
"type": "Identifier",
"name": "a",
"range": [
- 14522,
- 14523
+ 13176,
+ 13177
],
"loc": {
"start": {
- "line": 436,
+ "line": 403,
"column": 16
},
"end": {
- "line": 436,
+ "line": 403,
"column": 17
}
}
@@ -33726,16 +30924,16 @@
"type": "Identifier",
"name": "b",
"range": [
- 14524,
- 14525
+ 13178,
+ 13179
],
"loc": {
"start": {
- "line": 436,
+ "line": 403,
"column": 18
},
"end": {
- "line": 436,
+ "line": 403,
"column": 19
}
}
@@ -33753,16 +30951,16 @@
"type": "Identifier",
"name": "aa",
"range": [
- 14536,
- 14538
+ 13190,
+ 13192
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 8
},
"end": {
- "line": 437,
+ "line": 404,
"column": 10
}
}
@@ -33773,16 +30971,16 @@
"type": "Identifier",
"name": "ipAddress",
"range": [
- 14541,
- 14550
+ 13195,
+ 13204
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 13
},
"end": {
- "line": 437,
+ "line": 404,
"column": 22
}
}
@@ -33800,16 +30998,16 @@
"type": "Identifier",
"name": "a",
"range": [
- 14551,
- 14552
+ 13205,
+ 13206
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 23
},
"end": {
- "line": 437,
+ "line": 404,
"column": 24
}
}
@@ -33818,31 +31016,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 14553,
- 14558
+ 13207,
+ 13212
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 25
},
"end": {
- "line": 437,
+ "line": 404,
"column": 30
}
}
},
"range": [
- 14551,
- 14558
+ 13205,
+ 13212
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 23
},
"end": {
- "line": 437,
+ "line": 404,
"column": 30
}
}
@@ -33851,78 +31049,78 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 14559,
- 14570
+ 13213,
+ 13224
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 31
},
"end": {
- "line": 437,
+ "line": 404,
"column": 42
}
}
},
"range": [
- 14551,
- 14570
+ 13205,
+ 13224
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 23
},
"end": {
- "line": 437,
+ "line": 404,
"column": 42
}
}
},
"arguments": [],
"range": [
- 14551,
- 14572
+ 13205,
+ 13226
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 23
},
"end": {
- "line": 437,
+ "line": 404,
"column": 44
}
}
}
],
"range": [
- 14541,
- 14573
+ 13195,
+ 13227
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 13
},
"end": {
- "line": 437,
+ "line": 404,
"column": 45
}
}
},
"range": [
- 14536,
- 14573
+ 13190,
+ 13227
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 8
},
"end": {
- "line": 437,
+ "line": 404,
"column": 45
}
}
@@ -33930,16 +31128,16 @@
],
"kind": "let",
"range": [
- 14532,
- 14574
+ 13186,
+ 13228
],
"loc": {
"start": {
- "line": 437,
+ "line": 404,
"column": 4
},
"end": {
- "line": 437,
+ "line": 404,
"column": 46
}
}
@@ -33953,16 +31151,16 @@
"type": "Identifier",
"name": "bb",
"range": [
- 14583,
- 14585
+ 13237,
+ 13239
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 8
},
"end": {
- "line": 438,
+ "line": 405,
"column": 10
}
}
@@ -33973,16 +31171,16 @@
"type": "Identifier",
"name": "ipAddress",
"range": [
- 14588,
- 14597
+ 13242,
+ 13251
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 13
},
"end": {
- "line": 438,
+ "line": 405,
"column": 22
}
}
@@ -34000,16 +31198,16 @@
"type": "Identifier",
"name": "b",
"range": [
- 14598,
- 14599
+ 13252,
+ 13253
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 23
},
"end": {
- "line": 438,
+ "line": 405,
"column": 24
}
}
@@ -34018,31 +31216,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 14600,
- 14605
+ 13254,
+ 13259
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 25
},
"end": {
- "line": 438,
+ "line": 405,
"column": 30
}
}
},
"range": [
- 14598,
- 14605
+ 13252,
+ 13259
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 23
},
"end": {
- "line": 438,
+ "line": 405,
"column": 30
}
}
@@ -34051,78 +31249,78 @@
"type": "Identifier",
"name": "toLowerCase",
"range": [
- 14606,
- 14617
+ 13260,
+ 13271
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 31
},
"end": {
- "line": 438,
+ "line": 405,
"column": 42
}
}
},
"range": [
- 14598,
- 14617
+ 13252,
+ 13271
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 23
},
"end": {
- "line": 438,
+ "line": 405,
"column": 42
}
}
},
"arguments": [],
"range": [
- 14598,
- 14619
+ 13252,
+ 13273
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 23
},
"end": {
- "line": 438,
+ "line": 405,
"column": 44
}
}
}
],
"range": [
- 14588,
- 14620
+ 13242,
+ 13274
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 13
},
"end": {
- "line": 438,
+ "line": 405,
"column": 45
}
}
},
"range": [
- 14583,
- 14620
+ 13237,
+ 13274
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 8
},
"end": {
- "line": 438,
+ "line": 405,
"column": 45
}
}
@@ -34130,16 +31328,16 @@
],
"kind": "let",
"range": [
- 14579,
- 14621
+ 13233,
+ 13275
],
"loc": {
"start": {
- "line": 438,
+ "line": 405,
"column": 4
},
"end": {
- "line": 438,
+ "line": 405,
"column": 46
}
}
@@ -34153,16 +31351,16 @@
"type": "Identifier",
"name": "aa",
"range": [
- 14630,
- 14632
+ 13284,
+ 13286
],
"loc": {
"start": {
- "line": 439,
+ "line": 406,
"column": 8
},
"end": {
- "line": 439,
+ "line": 406,
"column": 10
}
}
@@ -34171,31 +31369,31 @@
"type": "Identifier",
"name": "bb",
"range": [
- 14634,
- 14636
+ 13288,
+ 13290
],
"loc": {
"start": {
- "line": 439,
+ "line": 406,
"column": 12
},
"end": {
- "line": 439,
+ "line": 406,
"column": 14
}
}
},
"range": [
- 14630,
- 14636
+ 13284,
+ 13290
],
"loc": {
"start": {
- "line": 439,
+ "line": 406,
"column": 8
},
"end": {
- "line": 439,
+ "line": 406,
"column": 14
}
}
@@ -34210,47 +31408,47 @@
"value": 0,
"raw": "0",
"range": [
- 14654,
- 14655
+ 13308,
+ 13309
],
"loc": {
"start": {
- "line": 440,
+ "line": 407,
"column": 15
},
"end": {
- "line": 440,
+ "line": 407,
"column": 16
}
}
},
"range": [
- 14647,
- 14656
+ 13301,
+ 13310
],
"loc": {
"start": {
- "line": 440,
+ "line": 407,
"column": 8
},
"end": {
- "line": 440,
+ "line": 407,
"column": 17
}
}
}
],
"range": [
- 14637,
- 14662
+ 13291,
+ 13316
],
"loc": {
"start": {
- "line": 439,
+ "line": 406,
"column": 15
},
"end": {
- "line": 441,
+ "line": 408,
"column": 5
}
}
@@ -34264,16 +31462,16 @@
"type": "Identifier",
"name": "aa",
"range": [
- 14672,
- 14674
+ 13326,
+ 13328
],
"loc": {
"start": {
- "line": 441,
+ "line": 408,
"column": 15
},
"end": {
- "line": 441,
+ "line": 408,
"column": 17
}
}
@@ -34282,31 +31480,31 @@
"type": "Identifier",
"name": "bb",
"range": [
- 14675,
- 14677
+ 13329,
+ 13331
],
"loc": {
"start": {
- "line": 441,
+ "line": 408,
"column": 18
},
"end": {
- "line": 441,
+ "line": 408,
"column": 20
}
}
},
"range": [
- 14672,
- 14677
+ 13326,
+ 13331
],
"loc": {
"start": {
- "line": 441,
+ "line": 408,
"column": 15
},
"end": {
- "line": 441,
+ "line": 408,
"column": 20
}
}
@@ -34324,63 +31522,63 @@
"value": 1,
"raw": "1",
"range": [
- 14696,
- 14697
+ 13350,
+ 13351
],
"loc": {
"start": {
- "line": 442,
+ "line": 409,
"column": 16
},
"end": {
- "line": 442,
+ "line": 409,
"column": 17
}
}
},
"prefix": true,
"range": [
- 14695,
- 14697
+ 13349,
+ 13351
],
"loc": {
"start": {
- "line": 442,
+ "line": 409,
"column": 15
},
"end": {
- "line": 442,
+ "line": 409,
"column": 17
}
}
},
"range": [
- 14688,
- 14698
+ 13342,
+ 13352
],
"loc": {
"start": {
- "line": 442,
+ "line": 409,
"column": 8
},
"end": {
- "line": 442,
+ "line": 409,
"column": 18
}
}
}
],
"range": [
- 14678,
- 14704
+ 13332,
+ 13358
],
"loc": {
"start": {
- "line": 441,
+ "line": 408,
"column": 21
},
"end": {
- "line": 443,
+ "line": 410,
"column": 5
}
}
@@ -34395,93 +31593,93 @@
"value": 1,
"raw": "1",
"range": [
- 14727,
- 14728
+ 13381,
+ 13382
],
"loc": {
"start": {
- "line": 444,
+ "line": 411,
"column": 15
},
"end": {
- "line": 444,
+ "line": 411,
"column": 16
}
}
},
"range": [
- 14720,
- 14729
+ 13374,
+ 13383
],
"loc": {
"start": {
- "line": 444,
+ "line": 411,
"column": 8
},
"end": {
- "line": 444,
+ "line": 411,
"column": 17
}
}
}
],
"range": [
- 14710,
- 14735
+ 13364,
+ 13389
],
"loc": {
"start": {
- "line": 443,
+ "line": 410,
"column": 11
},
"end": {
- "line": 445,
+ "line": 412,
"column": 5
}
}
},
"range": [
- 14668,
- 14735
+ 13322,
+ 13389
],
"loc": {
"start": {
- "line": 441,
+ "line": 408,
"column": 11
},
"end": {
- "line": 445,
+ "line": 412,
"column": 5
}
}
},
"range": [
- 14626,
- 14735
+ 13280,
+ 13389
],
"loc": {
"start": {
- "line": 439,
+ "line": 406,
"column": 4
},
"end": {
- "line": 445,
+ "line": 412,
"column": 5
}
}
}
],
"range": [
- 14526,
- 14737
+ 13180,
+ 13391
],
"loc": {
"start": {
- "line": 436,
+ "line": 403,
"column": 20
},
"end": {
- "line": 446,
+ "line": 413,
"column": 1
}
}
@@ -34489,16 +31687,16 @@
"generator": false,
"expression": false,
"range": [
- 14506,
- 14737
+ 13160,
+ 13391
],
"loc": {
"start": {
- "line": 436,
+ "line": 403,
"column": 0
},
"end": {
- "line": 446,
+ "line": 413,
"column": 1
}
}
@@ -34507,7 +31705,7 @@
"sourceType": "module",
"range": [
0,
- 14737
+ 13391
],
"loc": {
"start": {
@@ -34515,7 +31713,7 @@
"column": 0
},
"end": {
- "line": 446,
+ "line": 413,
"column": 1
}
},
@@ -34668,16 +31866,16 @@
"type": "Line",
"value": " SortableTable class sanity check (sortabletable.js)",
"range": [
- 1995,
- 2049
+ 2030,
+ 2084
],
"loc": {
"start": {
- "line": 55,
+ "line": 56,
"column": 8
},
"end": {
- "line": 55,
+ "line": 56,
"column": 62
}
}
@@ -34686,16 +31884,16 @@
"type": "Line",
"value": "Column sort at start",
"range": [
- 2242,
- 2264
+ 2277,
+ 2299
],
"loc": {
"start": {
- "line": 63,
+ "line": 64,
"column": 8
},
"end": {
- "line": 63,
+ "line": 64,
"column": 30
}
}
@@ -34704,16 +31902,16 @@
"type": "Block",
"value": "** SortableTable callbacks **",
"range": [
- 2521,
- 2554
+ 2556,
+ 2589
],
"loc": {
"start": {
- "line": 73,
+ "line": 74,
"column": 8
},
"end": {
- "line": 73,
+ "line": 74,
"column": 41
}
}
@@ -34722,70 +31920,34 @@
"type": "Block",
"value": "** sort behaviour for paging **",
"range": [
- 2732,
- 2767
+ 2767,
+ 2802
],
"loc": {
"start": {
- "line": 79,
+ "line": 80,
"column": 12
},
"end": {
- "line": 79,
+ "line": 80,
"column": 47
}
}
},
- {
- "type": "Line",
- "value": "rows alternating bg issue",
- "range": [
- 2952,
- 2979
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 12
- },
- "end": {
- "line": 88,
- "column": 39
- }
- }
- },
- {
- "type": "Line",
- "value": " TODO: move into AlternateRows component",
- "range": [
- 2992,
- 3034
- ],
- "loc": {
- "start": {
- "line": 89,
- "column": 12
- },
- "end": {
- "line": 89,
- "column": 54
- }
- }
- },
{
"type": "Line",
"value": "sort behaviour for paging",
"range": [
- 4407,
- 4434
+ 2987,
+ 3014
],
"loc": {
"start": {
- "line": 124,
+ "line": 89,
"column": 12
},
"end": {
- "line": 124,
+ "line": 89,
"column": 39
}
}
@@ -34794,16 +31956,16 @@
"type": "Line",
"value": " recalculate valid rows index as sorting may have change it",
"range": [
- 4532,
- 4593
+ 3112,
+ 3173
],
"loc": {
"start": {
- "line": 127,
+ "line": 92,
"column": 16
},
"end": {
- "line": 127,
+ "line": 92,
"column": 77
}
}
@@ -34812,16 +31974,16 @@
"type": "Block",
"value": "*\n * Sort specified column\n * @param {Number} colIdx Column index\n * @param {Boolean} desc Optional: descending manner\n ",
"range": [
- 4914,
- 5054
+ 3568,
+ 3708
],
"loc": {
"start": {
- "line": 141,
+ "line": 108,
"column": 4
},
"end": {
- "line": 145,
+ "line": 112,
"column": 7
}
}
@@ -34830,16 +31992,16 @@
"type": "Block",
"value": "*\n * Overrides headerOnclick method in order to handle th event\n * @param {Object} e [description]\n ",
"range": [
- 5225,
- 5354
+ 3879,
+ 4008
],
"loc": {
"start": {
- "line": 154,
+ "line": 121,
"column": 8
},
"end": {
- "line": 157,
+ "line": 124,
"column": 11
}
}
@@ -34848,16 +32010,16 @@
"type": "Line",
"value": " find Header element",
"range": [
- 5504,
- 5526
+ 4158,
+ 4180
],
"loc": {
"start": {
- "line": 163,
+ "line": 130,
"column": 12
},
"end": {
- "line": 163,
+ "line": 130,
"column": 34
}
}
@@ -34866,16 +32028,16 @@
"type": "Block",
"value": "*\n * Overrides getCellIndex IE returns wrong cellIndex when columns are\n * hidden\n * @param {Object} oTd TD element\n * @return {Number} Cell index\n ",
"range": [
- 5854,
- 6051
+ 4508,
+ 4705
],
"loc": {
"start": {
- "line": 176,
+ "line": 143,
"column": 8
},
"end": {
- "line": 181,
+ "line": 148,
"column": 11
}
}
@@ -34884,16 +32046,16 @@
"type": "Block",
"value": "*\n * Overrides initHeader in order to handle filters row position\n * @param {Array} oSortTypes\n ",
"range": [
- 6286,
- 6411
+ 4940,
+ 5065
],
"loc": {
"start": {
- "line": 189,
+ "line": 156,
"column": 8
},
"end": {
- "line": 192,
+ "line": 159,
"column": 11
}
}
@@ -34902,16 +32064,16 @@
"type": "Block",
"value": "*\n * Overrides updateHeaderArrows in order to handle arrows indicators\n ",
"range": [
- 7717,
- 7809
+ 6371,
+ 6463
],
"loc": {
"start": {
- "line": 228,
+ "line": 195,
"column": 8
},
"end": {
- "line": 230,
+ "line": 197,
"column": 11
}
}
@@ -34920,16 +32082,16 @@
"type": "Line",
"value": " external headers",
"range": [
- 7947,
- 7966
+ 6601,
+ 6620
],
"loc": {
"start": {
- "line": 235,
+ "line": 202,
"column": 12
},
"end": {
- "line": 235,
+ "line": 202,
"column": 31
}
}
@@ -34938,16 +32100,16 @@
"type": "Block",
"value": "*\n * Overrides getRowValue for custom key value feature\n * @param {Object} oRow Row element\n * @param {String} sType\n * @param {Number} nColumn\n * @return {String}\n ",
"range": [
- 9385,
- 9608
+ 8039,
+ 8262
],
"loc": {
"start": {
- "line": 271,
+ "line": 238,
"column": 8
},
"end": {
- "line": 277,
+ "line": 244,
"column": 11
}
}
@@ -34956,16 +32118,16 @@
"type": "Line",
"value": " if we have defined a custom getRowValue use that",
"range": [
- 9727,
- 9778
+ 8381,
+ 8432
],
"loc": {
"start": {
- "line": 280,
+ "line": 247,
"column": 12
},
"end": {
- "line": 280,
+ "line": 247,
"column": 63
}
}
@@ -34974,16 +32136,16 @@
"type": "Block",
"value": "*\n * Overrides getInnerText in order to avoid Firefox unexpected sorting\n * behaviour with untrimmed text elements\n * @param {Object} oNode DOM element\n * @return {String} DOM element inner text\n ",
"range": [
- 10138,
- 10385
+ 8792,
+ 9039
],
"loc": {
"start": {
- "line": 290,
+ "line": 257,
"column": 8
},
"end": {
- "line": 295,
+ "line": 262,
"column": 11
}
}
@@ -34992,16 +32154,16 @@
"type": "Line",
"value": " resolve column types",
"range": [
- 11230,
- 11253
+ 9884,
+ 9907
],
"loc": {
"start": {
- "line": 326,
+ "line": 293,
"column": 21
},
"end": {
- "line": 326,
+ "line": 293,
"column": 44
}
}
@@ -35010,16 +32172,16 @@
"type": "Line",
"value": "Public TF method to add sort type",
"range": [
- 11686,
- 11721
+ 10340,
+ 10375
],
"loc": {
"start": {
- "line": 338,
+ "line": 305,
"column": 8
},
"end": {
- "line": 338,
+ "line": 305,
"column": 43
}
}
@@ -35028,16 +32190,16 @@
"type": "Line",
"value": "Custom sort types",
"range": [
- 11731,
- 11750
+ 10385,
+ 10404
],
"loc": {
"start": {
- "line": 340,
+ "line": 307,
"column": 8
},
"end": {
- "line": 340,
+ "line": 307,
"column": 27
}
}
@@ -35046,16 +32208,16 @@
"type": "Block",
"value": "** external table headers adapter **",
"range": [
- 12426,
- 12466
+ 11080,
+ 11120
],
"loc": {
"start": {
- "line": 355,
+ "line": 322,
"column": 8
},
"end": {
- "line": 355,
+ "line": 322,
"column": 48
}
}
@@ -35064,16 +32226,16 @@
"type": "Block",
"value": "*\n * Destroy sort\n ",
"range": [
- 13271,
- 13302
+ 11925,
+ 11956
],
"loc": {
"start": {
- "line": 379,
+ "line": 346,
"column": 4
},
"end": {
- "line": 381,
+ "line": 348,
"column": 7
}
}
@@ -35082,16 +32244,16 @@
"type": "Line",
"value": "Converters",
"range": [
- 13735,
- 13747
+ 12389,
+ 12401
],
"loc": {
"start": {
- "line": 401,
+ "line": 368,
"column": 0
},
"end": {
- "line": 401,
+ "line": 368,
"column": 12
}
}
diff --git a/docs/ast/source/src/modules/alternateRows.js.json b/docs/ast/source/src/modules/alternateRows.js.json
index e0435d91..84292dcd 100644
--- a/docs/ast/source/src/modules/alternateRows.js.json
+++ b/docs/ast/source/src/modules/alternateRows.js.json
@@ -1117,1237 +1117,342 @@
}
},
{
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tf",
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 638,
- 640
+ 634,
+ 638
],
"loc": {
"start": {
"line": 28,
- "column": 12
+ "column": 8
},
"end": {
"line": 28,
- "column": 14
+ "column": 12
}
}
},
- "init": {
+ "property": {
+ "type": "Identifier",
+ "name": "processAll",
+ "range": [
+ 639,
+ 649
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 13
+ },
+ "end": {
+ "line": 28,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 634,
+ 649
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 8
+ },
+ "end": {
+ "line": 28,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 634,
+ 651
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 8
+ },
+ "end": {
+ "line": 28,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 634,
+ 652
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 8
+ },
+ "end": {
+ "line": 28,
+ "column": 26
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 662,
+ 684
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 30,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 643,
- 647
+ 693,
+ 697
],
"loc": {
"start": {
- "line": 28,
- "column": 17
+ "line": 31,
+ "column": 8
},
"end": {
- "line": 28,
- "column": 21
+ "line": 31,
+ "column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "tf",
+ "name": "emitter",
"range": [
- 648,
- 650
+ 698,
+ 705
],
"loc": {
"start": {
- "line": 28,
- "column": 22
+ "line": 31,
+ "column": 13
},
"end": {
- "line": 28,
- "column": 24
+ "line": 31,
+ "column": 20
}
}
},
"range": [
- 643,
- 650
+ 693,
+ 705
],
"loc": {
"start": {
- "line": 28,
- "column": 17
+ "line": 31,
+ "column": 8
},
"end": {
- "line": 28,
- "column": 24
- }
- }
- },
- "range": [
- 638,
- 650
- ],
- "loc": {
- "start": {
- "line": 28,
- "column": 12
- },
- "end": {
- "line": 28,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 634,
- 651
- ],
- "loc": {
- "start": {
- "line": 28,
- "column": 8
- },
- "end": {
- "line": 28,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 664,
- 678
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 12
- },
- "end": {
- "line": 29,
- "column": 26
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 681,
- 683
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 29
- },
- "end": {
- "line": 29,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 684,
- 698
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 32
- },
- "end": {
- "line": 29,
- "column": 46
- }
- }
- },
- "range": [
- 681,
- 698
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 29
- },
- "end": {
- "line": 29,
- "column": 46
- }
- }
- },
- "range": [
- 664,
- 698
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 12
- },
- "end": {
- "line": 29,
- "column": 46
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 660,
- 699
- ],
- "loc": {
- "start": {
- "line": 29,
- "column": 8
- },
- "end": {
- "line": 29,
- "column": 47
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "noValidRowsIndex",
- "range": [
- 712,
- 728
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 12
- },
- "end": {
- "line": 30,
- "column": 28
- }
- }
- },
- "init": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 731,
- 745
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 31
- },
- "end": {
- "line": 30,
- "column": 45
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 748,
- 752
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 48
- },
- "end": {
- "line": 30,
- "column": 52
- }
- }
- },
- "range": [
- 731,
- 752
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 31
- },
- "end": {
- "line": 30,
- "column": 52
- }
- }
- },
- "range": [
- 712,
- 752
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 12
- },
- "end": {
- "line": 30,
- "column": 52
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 708,
- 753
- ],
- "loc": {
- "start": {
- "line": 30,
- "column": 8
- },
- "end": {
- "line": 30,
- "column": 53
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "1st index",
- "range": [
- 762,
- 773
- ],
- "loc": {
- "start": {
- "line": 31,
- "column": 8
- },
- "end": {
- "line": 31,
- "column": 19
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "beginIndex",
- "range": [
- 786,
- 796
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 12
- },
- "end": {
- "line": 32,
- "column": 22
- }
- }
- },
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "Identifier",
- "name": "noValidRowsIndex",
- "range": [
- 799,
- 815
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 25
- },
- "end": {
- "line": 32,
- "column": 41
- }
- }
- },
- "consequent": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 818,
- 820
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 44
- },
- "end": {
- "line": 32,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 821,
- 827
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 47
- },
- "end": {
- "line": 32,
- "column": 53
- }
- }
- },
- "range": [
- 818,
- 827
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 44
- },
- "end": {
- "line": 32,
- "column": 53
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 830,
- 831
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 56
- },
- "end": {
- "line": 32,
- "column": 57
- }
- }
- },
- "range": [
- 799,
- 831
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 25
- },
- "end": {
- "line": 32,
- "column": 57
- }
- }
- },
- "range": [
- 786,
- 831
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 12
- },
- "end": {
- "line": 32,
- "column": 57
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 782,
- 832
- ],
- "loc": {
- "start": {
- "line": 32,
- "column": 8
- },
- "end": {
- "line": 32,
- "column": 58
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "1st index",
- "range": [
- 762,
- 773
- ],
- "loc": {
- "start": {
- "line": 31,
- "column": 8
- },
- "end": {
- "line": 31,
- "column": 19
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": " nb indexes",
- "range": [
- 841,
- 854
- ],
- "loc": {
- "start": {
- "line": 33,
- "column": 8
- },
- "end": {
- "line": 33,
- "column": 21
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "indexLen",
- "range": [
- 867,
- 875
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 12
- },
- "end": {
- "line": 34,
+ "line": 31,
"column": 20
}
}
},
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "Identifier",
- "name": "noValidRowsIndex",
- "range": [
- 878,
- 894
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 23
- },
- "end": {
- "line": 34,
- "column": 39
- }
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 706,
+ 708
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 21
+ },
+ "end": {
+ "line": 31,
+ "column": 23
}
+ }
+ },
+ "range": [
+ 693,
+ 708
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 8
},
- "consequent": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 913,
- 915
- ],
- "loc": {
- "start": {
- "line": 35,
- "column": 16
- },
- "end": {
- "line": 35,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 916,
- 932
- ],
- "loc": {
- "start": {
- "line": 35,
- "column": 19
- },
- "end": {
- "line": 35,
- "column": 35
- }
- }
- },
+ "end": {
+ "line": 31,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "row-processed",
+ "raw": "'row-processed'",
"range": [
- 913,
- 932
+ 710,
+ 725
],
"loc": {
"start": {
- "line": 35,
- "column": 16
+ "line": 31,
+ "column": 25
},
"end": {
- "line": 35,
+ "line": 31,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "row-paged",
+ "raw": "'row-paged'",
+ "range": [
+ 727,
+ 738
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 42
+ },
+ "end": {
+ "line": 31,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 709,
+ 739
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 24
+ },
+ "end": {
+ "line": 31,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 754,
+ 756
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 13
+ },
+ "end": {
+ "line": 32,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 758,
+ 766
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 17
+ },
+ "end": {
+ "line": 32,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "arrIndex",
+ "range": [
+ 768,
+ 776
+ ],
+ "loc": {
+ "start": {
+ "line": 32,
+ "column": 27
+ },
+ "end": {
+ "line": 32,
"column": 35
}
}
},
- "right": {
- "type": "Identifier",
- "name": "beginIndex",
- "range": [
- 933,
- 943
- ],
- "loc": {
- "start": {
- "line": 35,
- "column": 36
- },
- "end": {
- "line": 35,
- "column": 46
- }
- }
- },
- "range": [
- 913,
- 943
- ],
- "loc": {
- "start": {
- "line": 35,
- "column": 16
- },
- "end": {
- "line": 35,
- "column": 46
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 962,
- 976
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 16
- },
- "end": {
- "line": 36,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 977,
- 983
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 31
- },
- "end": {
- "line": 36,
- "column": 37
- }
- }
- },
- "range": [
- 962,
- 983
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 16
- },
- "end": {
- "line": 36,
- "column": 37
- }
- }
- },
- "range": [
- 878,
- 983
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 23
- },
- "end": {
- "line": 36,
- "column": 37
- }
- }
- },
- "range": [
- 867,
- 983
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 12
- },
- "end": {
- "line": 36,
- "column": 37
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 863,
- 984
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 8
- },
- "end": {
- "line": 36,
- "column": 38
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " nb indexes",
- "range": [
- 841,
- 854
- ],
- "loc": {
- "start": {
- "line": 33,
- "column": 8
- },
- "end": {
- "line": 33,
- "column": 21
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "idx",
- "range": [
- 997,
- 1000
- ],
- "loc": {
- "start": {
- "line": 37,
- "column": 12
- },
- "end": {
- "line": 37,
- "column": 15
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 1003,
- 1004
- ],
- "loc": {
- "start": {
- "line": 37,
- "column": 18
- },
- "end": {
- "line": 37,
- "column": 19
- }
- }
- },
- "range": [
- 997,
- 1004
- ],
- "loc": {
- "start": {
- "line": 37,
- "column": 12
- },
- "end": {
- "line": 37,
- "column": 19
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 993,
- 1005
- ],
- "loc": {
- "start": {
- "line": 37,
- "column": 8
- },
- "end": {
- "line": 37,
- "column": 20
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "alternates bg color",
- "range": [
- 1015,
- 1036
- ],
- "loc": {
- "start": {
- "line": 39,
- "column": 8
- },
- "end": {
- "line": 39,
- "column": 29
- }
- }
- }
- ]
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 1053,
- 1054
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 16
- },
- "end": {
- "line": 40,
- "column": 17
- }
- }
- },
- "init": {
- "type": "Identifier",
- "name": "beginIndex",
- "range": [
- 1055,
- 1065
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 18
- },
- "end": {
- "line": 40,
- "column": 28
- }
- }
- },
- "range": [
- 1053,
- 1065
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 16
- },
- "end": {
- "line": 40,
- "column": 28
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 1049,
- 1065
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 12
- },
- "end": {
- "line": 40,
- "column": 28
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 1067,
- 1068
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 30
- },
- "end": {
- "line": 40,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "indexLen",
- "range": [
- 1069,
- 1077
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 32
- },
- "end": {
- "line": 40,
- "column": 40
- }
- }
- },
- "range": [
- 1067,
- 1077
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 30
- },
- "end": {
- "line": 40,
- "column": 40
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 1079,
- 1080
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 42
- },
- "end": {
- "line": 40,
- "column": 43
- }
- }
- },
- "prefix": false,
- "range": [
- 1079,
- 1082
- ],
- "loc": {
- "start": {
- "line": 40,
- "column": 42
- },
- "end": {
- "line": 40,
- "column": 45
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
{
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "rowIdx",
- "range": [
- 1101,
- 1107
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 16
- },
- "end": {
- "line": 41,
- "column": 22
- }
- }
- },
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "Identifier",
- "name": "noValidRowsIndex",
- "range": [
- 1110,
- 1126
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 25
- },
- "end": {
- "line": 41,
- "column": 41
- }
- }
- },
- "consequent": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 1129,
- 1130
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 44
- },
- "end": {
- "line": 41,
- "column": 45
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 1133,
- 1147
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 48
- },
- "end": {
- "line": 41,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 1148,
- 1149
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 63
- },
- "end": {
- "line": 41,
- "column": 64
- }
- }
- },
- "range": [
- 1133,
- 1150
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 48
- },
- "end": {
- "line": 41,
- "column": 65
- }
- }
- },
- "range": [
- 1110,
- 1150
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 25
- },
- "end": {
- "line": 41,
- "column": 65
- }
- }
- },
+ "type": "Identifier",
+ "name": "isValid",
"range": [
- 1101,
- 1150
+ 778,
+ 785
],
"loc": {
"start": {
- "line": 41,
- "column": 16
+ "line": 32,
+ "column": 37
},
"end": {
- "line": 41,
- "column": 65
+ "line": 32,
+ "column": 44
}
}
}
],
- "kind": "var",
- "range": [
- 1097,
- 1151
- ],
- "loc": {
- "start": {
- "line": 41,
- "column": 12
- },
- "end": {
- "line": 41,
- "column": 66
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
+ "body": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
@@ -2355,226 +1460,447 @@
"object": {
"type": "ThisExpression",
"range": [
- 1164,
- 1168
+ 805,
+ 809
],
"loc": {
"start": {
- "line": 42,
- "column": 12
+ "line": 33,
+ "column": 16
},
"end": {
- "line": 42,
- "column": 16
+ "line": 33,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "setRowBg",
+ "name": "processRow",
"range": [
- 1169,
- 1177
+ 810,
+ 820
],
"loc": {
"start": {
- "line": 42,
- "column": 17
+ "line": 33,
+ "column": 21
},
"end": {
- "line": 42,
- "column": 25
+ "line": 33,
+ "column": 31
}
}
},
"range": [
- 1164,
- 1177
+ 805,
+ 820
],
"loc": {
"start": {
- "line": 42,
- "column": 12
+ "line": 33,
+ "column": 16
},
"end": {
- "line": 42,
- "column": 25
+ "line": 33,
+ "column": 31
}
}
},
"arguments": [
{
"type": "Identifier",
- "name": "rowIdx",
+ "name": "rowIndex",
"range": [
- 1178,
- 1184
+ 821,
+ 829
],
"loc": {
"start": {
- "line": 42,
- "column": 26
+ "line": 33,
+ "column": 32
},
"end": {
- "line": 42,
- "column": 32
+ "line": 33,
+ "column": 40
}
}
},
{
"type": "Identifier",
- "name": "idx",
+ "name": "arrIndex",
"range": [
- 1186,
- 1189
+ 831,
+ 839
],
"loc": {
"start": {
- "line": 42,
- "column": 34
+ "line": 33,
+ "column": 42
},
"end": {
- "line": 42,
- "column": 37
+ "line": 33,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 841,
+ 848
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 52
+ },
+ "end": {
+ "line": 33,
+ "column": 59
}
}
}
],
"range": [
- 1164,
- 1190
+ 805,
+ 849
],
"loc": {
"start": {
- "line": 42,
- "column": 12
+ "line": 33,
+ "column": 16
},
"end": {
- "line": 42,
- "column": 38
+ "line": 33,
+ "column": 60
}
}
},
+ "generator": false,
+ "expression": true,
"range": [
- 1164,
- 1191
+ 753,
+ 849
],
"loc": {
"start": {
- "line": 42,
+ "line": 32,
"column": 12
},
"end": {
- "line": 42,
- "column": 39
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "idx",
- "range": [
- 1204,
- 1207
- ],
- "loc": {
- "start": {
- "line": 43,
- "column": 12
- },
- "end": {
- "line": 43,
- "column": 15
- }
- }
- },
- "prefix": false,
- "range": [
- 1204,
- 1209
- ],
- "loc": {
- "start": {
- "line": 43,
- "column": 12
- },
- "end": {
- "line": 43,
- "column": 17
- }
- }
- },
- "range": [
- 1204,
- 1210
- ],
- "loc": {
- "start": {
- "line": 43,
- "column": 12
- },
- "end": {
- "line": 43,
- "column": 18
+ "line": 33,
+ "column": 60
}
}
}
],
"range": [
- 1083,
- 1220
+ 693,
+ 850
],
"loc": {
"start": {
- "line": 40,
- "column": 46
+ "line": 31,
+ "column": 8
},
"end": {
- "line": 44,
- "column": 9
+ "line": 33,
+ "column": 61
}
}
},
"range": [
- 1045,
- 1220
+ 693,
+ 851
],
"loc": {
"start": {
- "line": 40,
+ "line": 31,
"column": 8
},
"end": {
- "line": 44,
- "column": 9
+ "line": 33,
+ "column": 62
}
},
"leadingComments": [
{
"type": "Line",
- "value": "alternates bg color",
+ "value": " Subscribe to events",
"range": [
- 1015,
- 1036
+ 662,
+ 684
],
"loc": {
"start": {
- "line": 39,
+ "line": 30,
"column": 8
},
"end": {
- "line": 39,
- "column": 29
+ "line": 30,
+ "column": 30
}
}
}
]
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 860,
+ 864
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 865,
+ 872
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 13
+ },
+ "end": {
+ "line": 34,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 860,
+ 872
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 873,
+ 875
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 21
+ },
+ "end": {
+ "line": 34,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 860,
+ 875
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "column-sorted",
+ "raw": "'column-sorted'",
+ "range": [
+ 877,
+ 892
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 25
+ },
+ "end": {
+ "line": 34,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 876,
+ 893
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 24
+ },
+ "end": {
+ "line": 34,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 900,
+ 904
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 48
+ },
+ "end": {
+ "line": 34,
+ "column": 52
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "processAll",
+ "range": [
+ 905,
+ 915
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 53
+ },
+ "end": {
+ "line": 34,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 900,
+ 915
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 48
+ },
+ "end": {
+ "line": 34,
+ "column": 63
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 900,
+ 917
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 48
+ },
+ "end": {
+ "line": 34,
+ "column": 65
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 895,
+ 917
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 43
+ },
+ "end": {
+ "line": 34,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 860,
+ 918
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 860,
+ 919
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 67
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -2586,16 +1912,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1229,
- 1233
+ 929,
+ 933
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 8
},
"end": {
- "line": 45,
+ "line": 36,
"column": 12
}
}
@@ -2604,31 +1930,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 1234,
- 1245
+ 934,
+ 945
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 13
},
"end": {
- "line": 45,
+ "line": 36,
"column": 24
}
}
},
"range": [
- 1229,
- 1245
+ 929,
+ 945
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 8
},
"end": {
- "line": 45,
+ "line": 36,
"column": 24
}
}
@@ -2638,46 +1964,46 @@
"value": true,
"raw": "true",
"range": [
- 1248,
- 1252
+ 948,
+ 952
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 27
},
"end": {
- "line": 45,
+ "line": 36,
"column": 31
}
}
},
"range": [
- 1229,
- 1252
+ 929,
+ 952
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 8
},
"end": {
- "line": 45,
+ "line": 36,
"column": 31
}
}
},
"range": [
- 1229,
- 1253
+ 929,
+ 953
],
"loc": {
"start": {
- "line": 45,
+ "line": 36,
"column": 8
},
"end": {
- "line": 45,
+ "line": 36,
"column": 32
}
}
@@ -2685,7 +2011,7 @@
],
"range": [
563,
- 1259
+ 959
],
"loc": {
"start": {
@@ -2693,7 +2019,7 @@
"column": 11
},
"end": {
- "line": 46,
+ "line": 37,
"column": 5
}
}
@@ -2702,7 +2028,7 @@
"expression": false,
"range": [
560,
- 1259
+ 959
],
"loc": {
"start": {
@@ -2710,7 +2036,7 @@
"column": 8
},
"end": {
- "line": 46,
+ "line": 37,
"column": 5
}
}
@@ -2719,7 +2045,7 @@
"computed": false,
"range": [
556,
- 1259
+ 959
],
"loc": {
"start": {
@@ -2727,7 +2053,7 @@
"column": 4
},
"end": {
- "line": 46,
+ "line": 37,
"column": 5
}
},
@@ -2751,21 +2077,2255 @@
}
}
],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "processAll",
+ "range": [
+ 965,
+ 975
+ ],
+ "loc": {
+ "start": {
+ "line": 39,
+ "column": 4
+ },
+ "end": {
+ "line": 39,
+ "column": 14
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 992,
+ 996
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 12
+ },
+ "end": {
+ "line": 40,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isEnabled",
+ "range": [
+ 997,
+ 1006
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 17
+ },
+ "end": {
+ "line": 40,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 992,
+ 1006
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 12
+ },
+ "end": {
+ "line": 40,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 992,
+ 1008
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 12
+ },
+ "end": {
+ "line": 40,
+ "column": 28
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 991,
+ 1008
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 11
+ },
+ "end": {
+ "line": 40,
+ "column": 28
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 1023,
+ 1030
+ ],
+ "loc": {
+ "start": {
+ "line": 41,
+ "column": 12
+ },
+ "end": {
+ "line": 41,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 1009,
+ 1040
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 29
+ },
+ "end": {
+ "line": 42,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 988,
+ 1040
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 42,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1053,
+ 1055
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 12
+ },
+ "end": {
+ "line": 43,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1058,
+ 1062
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 17
+ },
+ "end": {
+ "line": 43,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1063,
+ 1065
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 22
+ },
+ "end": {
+ "line": 43,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 1058,
+ 1065
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 17
+ },
+ "end": {
+ "line": 43,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 1053,
+ 1065
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 12
+ },
+ "end": {
+ "line": 43,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1049,
+ 1066
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 1079,
+ 1093
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 12
+ },
+ "end": {
+ "line": 44,
+ "column": 26
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1096,
+ 1098
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 29
+ },
+ "end": {
+ "line": 44,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getValidRows",
+ "range": [
+ 1099,
+ 1111
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 32
+ },
+ "end": {
+ "line": 44,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 1096,
+ 1111
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 29
+ },
+ "end": {
+ "line": 44,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 1112,
+ 1116
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 45
+ },
+ "end": {
+ "line": 44,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 1096,
+ 1117
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 29
+ },
+ "end": {
+ "line": 44,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 1079,
+ 1117
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 12
+ },
+ "end": {
+ "line": 44,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1075,
+ 1118
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "noValidRowsIndex",
+ "range": [
+ 1131,
+ 1147
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 12
+ },
+ "end": {
+ "line": 45,
+ "column": 28
+ }
+ }
+ },
+ "init": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 1150,
+ 1164
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 1165,
+ 1171
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 46
+ },
+ "end": {
+ "line": 45,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 1150,
+ 1171
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 52
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 1176,
+ 1177
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 57
+ },
+ "end": {
+ "line": 45,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 1150,
+ 1177
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 31
+ },
+ "end": {
+ "line": 45,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 1131,
+ 1177
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 12
+ },
+ "end": {
+ "line": 45,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1127,
+ 1178
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 8
+ },
+ "end": {
+ "line": 45,
+ "column": 59
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "1st index",
+ "range": [
+ 1187,
+ 1198
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 46,
+ "column": 19
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "beginIndex",
+ "range": [
+ 1211,
+ 1221
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 22
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "noValidRowsIndex",
+ "range": [
+ 1224,
+ 1240
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 25
+ },
+ "end": {
+ "line": 47,
+ "column": 41
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1243,
+ 1245
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 44
+ },
+ "end": {
+ "line": 47,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 1246,
+ 1252
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 47
+ },
+ "end": {
+ "line": 47,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 1243,
+ 1252
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 44
+ },
+ "end": {
+ "line": 47,
+ "column": 53
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 1255,
+ 1256
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 56
+ },
+ "end": {
+ "line": 47,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 1224,
+ 1256
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 25
+ },
+ "end": {
+ "line": 47,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 1211,
+ 1256
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1207,
+ 1257
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 8
+ },
+ "end": {
+ "line": 47,
+ "column": 58
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "1st index",
+ "range": [
+ 1187,
+ 1198
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 46,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " nb indexes",
+ "range": [
+ 1266,
+ 1279
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 21
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "indexLen",
+ "range": [
+ 1292,
+ 1300
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 12
+ },
+ "end": {
+ "line": 49,
+ "column": 20
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "noValidRowsIndex",
+ "range": [
+ 1303,
+ 1319
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 23
+ },
+ "end": {
+ "line": 49,
+ "column": 39
+ }
+ }
+ },
+ "consequent": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1338,
+ 1340
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 16
+ },
+ "end": {
+ "line": 50,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 1341,
+ 1357
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 19
+ },
+ "end": {
+ "line": 50,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 1338,
+ 1357
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 16
+ },
+ "end": {
+ "line": 50,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "beginIndex",
+ "range": [
+ 1358,
+ 1368
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 36
+ },
+ "end": {
+ "line": 50,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 1338,
+ 1368
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 16
+ },
+ "end": {
+ "line": 50,
+ "column": 46
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 1387,
+ 1401
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 16
+ },
+ "end": {
+ "line": 51,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 1402,
+ 1408
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 31
+ },
+ "end": {
+ "line": 51,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1387,
+ 1408
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 16
+ },
+ "end": {
+ "line": 51,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1303,
+ 1408
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 23
+ },
+ "end": {
+ "line": 51,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1292,
+ 1408
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 12
+ },
+ "end": {
+ "line": 51,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1288,
+ 1409
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 38
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " nb indexes",
+ "range": [
+ 1266,
+ 1279
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 21
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "idx",
+ "range": [
+ 1422,
+ 1425
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 12
+ },
+ "end": {
+ "line": 52,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 1428,
+ 1429
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 18
+ },
+ "end": {
+ "line": 52,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 1422,
+ 1429
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 12
+ },
+ "end": {
+ "line": 52,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1418,
+ 1430
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 8
+ },
+ "end": {
+ "line": 52,
+ "column": 20
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "alternates bg color",
+ "range": [
+ 1440,
+ 1461
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 29
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ForStatement",
+ "init": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 1478,
+ 1479
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 16
+ },
+ "end": {
+ "line": 55,
+ "column": 17
+ }
+ }
+ },
+ "init": {
+ "type": "Identifier",
+ "name": "beginIndex",
+ "range": [
+ 1480,
+ 1490
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 18
+ },
+ "end": {
+ "line": 55,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1478,
+ 1490
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 16
+ },
+ "end": {
+ "line": 55,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1474,
+ 1490
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 12
+ },
+ "end": {
+ "line": 55,
+ "column": 28
+ }
+ }
+ },
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "<",
+ "left": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 1492,
+ 1493
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 30
+ },
+ "end": {
+ "line": 55,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "indexLen",
+ "range": [
+ 1494,
+ 1502
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 32
+ },
+ "end": {
+ "line": 55,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 1492,
+ 1502
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 30
+ },
+ "end": {
+ "line": 55,
+ "column": 40
+ }
+ }
+ },
+ "update": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 1504,
+ 1505
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 42
+ },
+ "end": {
+ "line": 55,
+ "column": 43
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 1504,
+ 1507
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 42
+ },
+ "end": {
+ "line": 55,
+ "column": 45
+ }
+ }
+ },
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "rowIdx",
+ "range": [
+ 1526,
+ 1532
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 16
+ },
+ "end": {
+ "line": 56,
+ "column": 22
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "noValidRowsIndex",
+ "range": [
+ 1535,
+ 1551
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 25
+ },
+ "end": {
+ "line": 56,
+ "column": 41
+ }
+ }
+ },
+ "consequent": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 1554,
+ 1555
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 44
+ },
+ "end": {
+ "line": 56,
+ "column": 45
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 1558,
+ 1572
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 48
+ },
+ "end": {
+ "line": 56,
+ "column": 62
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 1573,
+ 1574
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 63
+ },
+ "end": {
+ "line": 56,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 1558,
+ 1575
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 48
+ },
+ "end": {
+ "line": 56,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 1535,
+ 1575
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 25
+ },
+ "end": {
+ "line": 56,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 1526,
+ 1575
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 16
+ },
+ "end": {
+ "line": 56,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 1522,
+ 1576
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 12
+ },
+ "end": {
+ "line": 56,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1589,
+ 1593
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 12
+ },
+ "end": {
+ "line": 57,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setRowBg",
+ "range": [
+ 1594,
+ 1602
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 17
+ },
+ "end": {
+ "line": 57,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1589,
+ 1602
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 12
+ },
+ "end": {
+ "line": 57,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIdx",
+ "range": [
+ 1603,
+ 1609
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 26
+ },
+ "end": {
+ "line": 57,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "idx",
+ "range": [
+ 1611,
+ 1614
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 34
+ },
+ "end": {
+ "line": 57,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 1589,
+ 1615
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 12
+ },
+ "end": {
+ "line": 57,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 1589,
+ 1616
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 12
+ },
+ "end": {
+ "line": 57,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "Identifier",
+ "name": "idx",
+ "range": [
+ 1629,
+ 1632
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 12
+ },
+ "end": {
+ "line": 58,
+ "column": 15
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 1629,
+ 1634
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 12
+ },
+ "end": {
+ "line": 58,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 1629,
+ 1635
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 12
+ },
+ "end": {
+ "line": 58,
+ "column": 18
+ }
+ }
+ }
+ ],
+ "range": [
+ 1508,
+ 1645
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 46
+ },
+ "end": {
+ "line": 59,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 1470,
+ 1645
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "alternates bg color",
+ "range": [
+ 1440,
+ 1461
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 29
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "range": [
+ 978,
+ 1651
+ ],
+ "loc": {
+ "start": {
+ "line": 39,
+ "column": 17
+ },
+ "end": {
+ "line": 60,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 975,
+ 1651
+ ],
+ "loc": {
+ "start": {
+ "line": 39,
+ "column": 14
+ },
+ "end": {
+ "line": 60,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 965,
+ 1651
+ ],
+ "loc": {
+ "start": {
+ "line": 39,
+ "column": 4
+ },
+ "end": {
+ "line": 60,
+ "column": 5
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Set/remove row background based on row validation\n * @param {Number} rowIdx Row index\n * @param {Boolean} isValid Valid row flag\n ",
+ "range": [
+ 1657,
+ 1816
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 4
+ },
+ "end": {
+ "line": 66,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "processRow",
+ "range": [
+ 1821,
+ 1831
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 4
+ },
+ "end": {
+ "line": 67,
+ "column": 14
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "rowIdx",
+ "range": [
+ 1832,
+ 1838
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 15
+ },
+ "end": {
+ "line": 67,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "arrIdx",
+ "range": [
+ 1840,
+ 1846
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 23
+ },
+ "end": {
+ "line": 67,
+ "column": 29
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 1848,
+ 1855
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 31
+ },
+ "end": {
+ "line": 67,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 1870,
+ 1877
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 11
+ },
+ "end": {
+ "line": 68,
+ "column": 18
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1892,
+ 1896
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setRowBg",
+ "range": [
+ 1897,
+ 1905
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 17
+ },
+ "end": {
+ "line": 69,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1892,
+ 1905
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIdx",
+ "range": [
+ 1906,
+ 1912
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 26
+ },
+ "end": {
+ "line": 69,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "arrIdx",
+ "range": [
+ 1914,
+ 1920
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 34
+ },
+ "end": {
+ "line": 69,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 1892,
+ 1921
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 1892,
+ 1922
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 1878,
+ 1932
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 19
+ },
+ "end": {
+ "line": 70,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1952,
+ 1956
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 12
+ },
+ "end": {
+ "line": 71,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "removeRowBg",
+ "range": [
+ 1957,
+ 1968
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 17
+ },
+ "end": {
+ "line": 71,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1952,
+ 1968
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 12
+ },
+ "end": {
+ "line": 71,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIdx",
+ "range": [
+ 1969,
+ 1975
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 29
+ },
+ "end": {
+ "line": 71,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 1952,
+ 1976
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 12
+ },
+ "end": {
+ "line": 71,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 1952,
+ 1977
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 12
+ },
+ "end": {
+ "line": 71,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 1938,
+ 1987
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 15
+ },
+ "end": {
+ "line": 72,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 1867,
+ 1987
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 72,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 1857,
+ 1993
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 40
+ },
+ "end": {
+ "line": 73,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 1831,
+ 1993
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 14
+ },
+ "end": {
+ "line": 73,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 1821,
+ 1993
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 4
+ },
+ "end": {
+ "line": 73,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Set/remove row background based on row validation\n * @param {Number} rowIdx Row index\n * @param {Boolean} isValid Valid row flag\n ",
+ "range": [
+ 1657,
+ 1816
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 4
+ },
+ "end": {
+ "line": 66,
+ "column": 7
+ }
+ }
+ }
+ ],
"trailingComments": [
{
"type": "Block",
"value": "*\n * Sets row background color\n * @param {Number} rowIdx Row index\n * @param {Number} idx Valid rows collection index needed to calculate bg\n * color\n ",
"range": [
- 1265,
- 1443
+ 1999,
+ 2177
],
"loc": {
"start": {
- "line": 48,
+ "line": 75,
"column": 4
},
"end": {
- "line": 53,
+ "line": 80,
"column": 7
}
}
@@ -2779,16 +4339,16 @@
"type": "Identifier",
"name": "setRowBg",
"range": [
- 1448,
- 1456
+ 2182,
+ 2190
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 4
},
"end": {
- "line": 54,
+ "line": 81,
"column": 12
}
}
@@ -2801,16 +4361,16 @@
"type": "Identifier",
"name": "rowIdx",
"range": [
- 1457,
- 1463
+ 2191,
+ 2197
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 13
},
"end": {
- "line": 54,
+ "line": 81,
"column": 19
}
}
@@ -2819,16 +4379,16 @@
"type": "Identifier",
"name": "idx",
"range": [
- 1465,
- 1468
+ 2199,
+ 2202
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 21
},
"end": {
- "line": 54,
+ "line": 81,
"column": 24
}
}
@@ -2853,16 +4413,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1484,
- 1488
+ 2218,
+ 2222
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 12
},
"end": {
- "line": 55,
+ "line": 82,
"column": 16
}
}
@@ -2871,63 +4431,63 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 1489,
- 1498
+ 2223,
+ 2232
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 17
},
"end": {
- "line": 55,
+ "line": 82,
"column": 26
}
}
},
"range": [
- 1484,
- 1498
+ 2218,
+ 2232
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 12
},
"end": {
- "line": 55,
+ "line": 82,
"column": 26
}
}
},
"arguments": [],
"range": [
- 1484,
- 1500
+ 2218,
+ 2234
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 12
},
"end": {
- "line": 55,
+ "line": 82,
"column": 28
}
}
},
"prefix": true,
"range": [
- 1483,
- 1500
+ 2217,
+ 2234
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 11
},
"end": {
- "line": 55,
+ "line": 82,
"column": 28
}
}
@@ -2938,16 +4498,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 1504,
- 1509
+ 2238,
+ 2243
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 32
},
"end": {
- "line": 55,
+ "line": 82,
"column": 37
}
}
@@ -2957,47 +4517,47 @@
"type": "Identifier",
"name": "rowIdx",
"range": [
- 1510,
- 1516
+ 2244,
+ 2250
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 38
},
"end": {
- "line": 55,
+ "line": 82,
"column": 44
}
}
}
],
"range": [
- 1504,
- 1517
+ 2238,
+ 2251
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 32
},
"end": {
- "line": 55,
+ "line": 82,
"column": 45
}
}
},
"range": [
- 1483,
- 1517
+ 2217,
+ 2251
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 11
},
"end": {
- "line": 55,
+ "line": 82,
"column": 45
}
}
@@ -3009,48 +4569,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1532,
- 1539
+ 2266,
+ 2273
],
"loc": {
"start": {
- "line": 56,
+ "line": 83,
"column": 12
},
"end": {
- "line": 56,
+ "line": 83,
"column": 19
}
}
}
],
"range": [
- 1518,
- 1549
+ 2252,
+ 2283
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 46
},
"end": {
- "line": 57,
+ "line": 84,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1480,
- 1549
+ 2214,
+ 2283
],
"loc": {
"start": {
- "line": 55,
+ "line": 82,
"column": 8
},
"end": {
- "line": 57,
+ "line": 84,
"column": 9
}
}
@@ -3064,16 +4624,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 1562,
- 1566
+ 2296,
+ 2300
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 12
},
"end": {
- "line": 58,
+ "line": 85,
"column": 16
}
}
@@ -3090,16 +4650,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1569,
- 1573
+ 2303,
+ 2307
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 19
},
"end": {
- "line": 58,
+ "line": 85,
"column": 23
}
}
@@ -3108,31 +4668,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1574,
- 1576
+ 2308,
+ 2310
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 24
},
"end": {
- "line": 58,
+ "line": 85,
"column": 26
}
}
},
"range": [
- 1569,
- 1576
+ 2303,
+ 2310
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 19
},
"end": {
- "line": 58,
+ "line": 85,
"column": 26
}
}
@@ -3141,31 +4701,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1577,
- 1580
+ 2311,
+ 2314
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 27
},
"end": {
- "line": 58,
+ "line": 85,
"column": 30
}
}
},
"range": [
- 1569,
- 1580
+ 2303,
+ 2314
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 19
},
"end": {
- "line": 58,
+ "line": 85,
"column": 30
}
}
@@ -3174,46 +4734,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 1581,
- 1585
+ 2315,
+ 2319
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 31
},
"end": {
- "line": 58,
+ "line": 85,
"column": 35
}
}
},
"range": [
- 1569,
- 1585
+ 2303,
+ 2319
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 19
},
"end": {
- "line": 58,
+ "line": 85,
"column": 35
}
}
},
"range": [
- 1562,
- 1585
+ 2296,
+ 2319
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 12
},
"end": {
- "line": 58,
+ "line": 85,
"column": 35
}
}
@@ -3221,16 +4781,16 @@
],
"kind": "var",
"range": [
- 1558,
- 1586
+ 2292,
+ 2320
],
"loc": {
"start": {
- "line": 58,
+ "line": 85,
"column": 8
},
"end": {
- "line": 58,
+ "line": 85,
"column": 36
}
}
@@ -3244,16 +4804,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 1599,
- 1600
+ 2333,
+ 2334
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 12
},
"end": {
- "line": 59,
+ "line": 86,
"column": 13
}
}
@@ -3266,16 +4826,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 1603,
- 1608
+ 2337,
+ 2342
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 16
},
"end": {
- "line": 59,
+ "line": 86,
"column": 21
}
}
@@ -3285,32 +4845,32 @@
"type": "Identifier",
"name": "idx",
"range": [
- 1609,
- 1612
+ 2343,
+ 2346
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 22
},
"end": {
- "line": 59,
+ "line": 86,
"column": 25
}
}
}
],
"range": [
- 1603,
- 1613
+ 2337,
+ 2347
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 16
},
"end": {
- "line": 59,
+ "line": 86,
"column": 26
}
}
@@ -3319,16 +4879,16 @@
"type": "Identifier",
"name": "rowIdx",
"range": [
- 1616,
- 1622
+ 2350,
+ 2356
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 29
},
"end": {
- "line": 59,
+ "line": 86,
"column": 35
}
}
@@ -3337,46 +4897,46 @@
"type": "Identifier",
"name": "idx",
"range": [
- 1625,
- 1628
+ 2359,
+ 2362
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 38
},
"end": {
- "line": 59,
+ "line": 86,
"column": 41
}
}
},
"range": [
- 1603,
- 1628
+ 2337,
+ 2362
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 16
},
"end": {
- "line": 59,
+ "line": 86,
"column": 41
}
}
},
"range": [
- 1599,
- 1628
+ 2333,
+ 2362
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 12
},
"end": {
- "line": 59,
+ "line": 86,
"column": 41
}
}
@@ -3384,16 +4944,16 @@
],
"kind": "var",
"range": [
- 1595,
- 1629
+ 2329,
+ 2363
],
"loc": {
"start": {
- "line": 59,
+ "line": 86,
"column": 8
},
"end": {
- "line": 59,
+ "line": 86,
"column": 42
}
}
@@ -3408,16 +4968,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1638,
- 1642
+ 2372,
+ 2376
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 8
},
"end": {
- "line": 60,
+ "line": 87,
"column": 12
}
}
@@ -3426,31 +4986,31 @@
"type": "Identifier",
"name": "removeRowBg",
"range": [
- 1643,
- 1654
+ 2377,
+ 2388
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 13
},
"end": {
- "line": 60,
+ "line": 87,
"column": 24
}
}
},
"range": [
- 1638,
- 1654
+ 2372,
+ 2388
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 8
},
"end": {
- "line": 60,
+ "line": 87,
"column": 24
}
}
@@ -3460,47 +5020,47 @@
"type": "Identifier",
"name": "rowIdx",
"range": [
- 1655,
- 1661
+ 2389,
+ 2395
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 25
},
"end": {
- "line": 60,
+ "line": 87,
"column": 31
}
}
}
],
"range": [
- 1638,
- 1662
+ 2372,
+ 2396
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 8
},
"end": {
- "line": 60,
+ "line": 87,
"column": 32
}
}
},
"range": [
- 1638,
- 1663
+ 2372,
+ 2397
],
"loc": {
"start": {
- "line": 60,
+ "line": 87,
"column": 8
},
"end": {
- "line": 60,
+ "line": 87,
"column": 33
}
}
@@ -3516,16 +5076,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1673,
- 1676
+ 2407,
+ 2410
],
"loc": {
"start": {
- "line": 62,
+ "line": 89,
"column": 8
},
"end": {
- "line": 62,
+ "line": 89,
"column": 11
}
}
@@ -3534,31 +5094,31 @@
"type": "Identifier",
"name": "addClass",
"range": [
- 1677,
- 1685
+ 2411,
+ 2419
],
"loc": {
"start": {
- "line": 62,
+ "line": 89,
"column": 12
},
"end": {
- "line": 62,
+ "line": 89,
"column": 20
}
}
},
"range": [
- 1673,
- 1685
+ 2407,
+ 2419
],
"loc": {
"start": {
- "line": 62,
+ "line": 89,
"column": 8
},
"end": {
- "line": 62,
+ "line": 89,
"column": 20
}
}
@@ -3571,16 +5131,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 1699,
- 1703
+ 2433,
+ 2437
],
"loc": {
"start": {
- "line": 63,
+ "line": 90,
"column": 12
},
"end": {
- "line": 63,
+ "line": 90,
"column": 16
}
}
@@ -3589,31 +5149,31 @@
"type": "Identifier",
"name": "rowIdx",
"range": [
- 1704,
- 1710
+ 2438,
+ 2444
],
"loc": {
"start": {
- "line": 63,
+ "line": 90,
"column": 17
},
"end": {
- "line": 63,
+ "line": 90,
"column": 23
}
}
},
"range": [
- 1699,
- 1711
+ 2433,
+ 2445
],
"loc": {
"start": {
- "line": 63,
+ "line": 90,
"column": 12
},
"end": {
- "line": 63,
+ "line": 90,
"column": 24
}
}
@@ -3627,16 +5187,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 1726,
- 1727
+ 2460,
+ 2461
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 13
},
"end": {
- "line": 64,
+ "line": 91,
"column": 14
}
}
@@ -3646,31 +5206,31 @@
"value": 2,
"raw": "2",
"range": [
- 1728,
- 1729
+ 2462,
+ 2463
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 15
},
"end": {
- "line": 64,
+ "line": 91,
"column": 16
}
}
},
"range": [
- 1726,
- 1729
+ 2460,
+ 2463
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 13
},
"end": {
- "line": 64,
+ "line": 91,
"column": 16
}
}
@@ -3681,16 +5241,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1733,
- 1737
+ 2467,
+ 2471
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 20
},
"end": {
- "line": 64,
+ "line": 91,
"column": 24
}
}
@@ -3699,31 +5259,31 @@
"type": "Identifier",
"name": "evenCss",
"range": [
- 1738,
- 1745
+ 2472,
+ 2479
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 25
},
"end": {
- "line": 64,
+ "line": 91,
"column": 32
}
}
},
"range": [
- 1733,
- 1745
+ 2467,
+ 2479
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 20
},
"end": {
- "line": 64,
+ "line": 91,
"column": 32
}
}
@@ -3734,16 +5294,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1748,
- 1752
+ 2482,
+ 2486
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 35
},
"end": {
- "line": 64,
+ "line": 91,
"column": 39
}
}
@@ -3752,93 +5312,93 @@
"type": "Identifier",
"name": "oddCss",
"range": [
- 1753,
- 1759
+ 2487,
+ 2493
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 40
},
"end": {
- "line": 64,
+ "line": 91,
"column": 46
}
}
},
"range": [
- 1748,
- 1759
+ 2482,
+ 2493
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 35
},
"end": {
- "line": 64,
+ "line": 91,
"column": 46
}
}
},
"range": [
- 1725,
- 1759
+ 2459,
+ 2493
],
"loc": {
"start": {
- "line": 64,
+ "line": 91,
"column": 12
},
"end": {
- "line": 64,
+ "line": 91,
"column": 46
}
}
}
],
"range": [
- 1673,
- 1769
+ 2407,
+ 2503
],
"loc": {
"start": {
- "line": 62,
+ "line": 89,
"column": 8
},
"end": {
- "line": 65,
+ "line": 92,
"column": 9
}
}
},
"range": [
- 1673,
- 1770
+ 2407,
+ 2504
],
"loc": {
"start": {
- "line": 62,
+ "line": 89,
"column": 8
},
"end": {
- "line": 65,
+ "line": 92,
"column": 10
}
}
}
],
"range": [
- 1470,
- 1776
+ 2204,
+ 2510
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 26
},
"end": {
- "line": 66,
+ "line": 93,
"column": 5
}
}
@@ -3846,16 +5406,16 @@
"generator": false,
"expression": false,
"range": [
- 1456,
- 1776
+ 2190,
+ 2510
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 12
},
"end": {
- "line": 66,
+ "line": 93,
"column": 5
}
}
@@ -3863,16 +5423,16 @@
"kind": "method",
"computed": false,
"range": [
- 1448,
- 1776
+ 2182,
+ 2510
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 4
},
"end": {
- "line": 66,
+ "line": 93,
"column": 5
}
},
@@ -3881,16 +5441,16 @@
"type": "Block",
"value": "*\n * Sets row background color\n * @param {Number} rowIdx Row index\n * @param {Number} idx Valid rows collection index needed to calculate bg\n * color\n ",
"range": [
- 1265,
- 1443
+ 1999,
+ 2177
],
"loc": {
"start": {
- "line": 48,
+ "line": 75,
"column": 4
},
"end": {
- "line": 53,
+ "line": 80,
"column": 7
}
}
@@ -3901,16 +5461,16 @@
"type": "Block",
"value": "*\n * Removes row background color\n * @param {Number} idx Row index\n ",
"range": [
- 1782,
- 1867
+ 2516,
+ 2601
],
"loc": {
"start": {
- "line": 68,
+ "line": 95,
"column": 4
},
"end": {
- "line": 71,
+ "line": 98,
"column": 7
}
}
@@ -3924,16 +5484,16 @@
"type": "Identifier",
"name": "removeRowBg",
"range": [
- 1872,
- 1883
+ 2606,
+ 2617
],
"loc": {
"start": {
- "line": 72,
+ "line": 99,
"column": 4
},
"end": {
- "line": 72,
+ "line": 99,
"column": 15
}
}
@@ -3946,16 +5506,16 @@
"type": "Identifier",
"name": "idx",
"range": [
- 1884,
- 1887
+ 2618,
+ 2621
],
"loc": {
"start": {
- "line": 72,
+ "line": 99,
"column": 16
},
"end": {
- "line": 72,
+ "line": 99,
"column": 19
}
}
@@ -3972,16 +5532,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 1902,
- 1907
+ 2636,
+ 2641
],
"loc": {
"start": {
- "line": 73,
+ "line": 100,
"column": 11
},
"end": {
- "line": 73,
+ "line": 100,
"column": 16
}
}
@@ -3991,32 +5551,32 @@
"type": "Identifier",
"name": "idx",
"range": [
- 1908,
- 1911
+ 2642,
+ 2645
],
"loc": {
"start": {
- "line": 73,
+ "line": 100,
"column": 17
},
"end": {
- "line": 73,
+ "line": 100,
"column": 20
}
}
}
],
"range": [
- 1902,
- 1912
+ 2636,
+ 2646
],
"loc": {
"start": {
- "line": 73,
+ "line": 100,
"column": 11
},
"end": {
- "line": 73,
+ "line": 100,
"column": 21
}
}
@@ -4028,48 +5588,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1927,
- 1934
+ 2661,
+ 2668
],
"loc": {
"start": {
- "line": 74,
+ "line": 101,
"column": 12
},
"end": {
- "line": 74,
+ "line": 101,
"column": 19
}
}
}
],
"range": [
- 1913,
- 1944
+ 2647,
+ 2678
],
"loc": {
"start": {
- "line": 73,
+ "line": 100,
"column": 22
},
"end": {
- "line": 75,
+ "line": 102,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1899,
- 1944
+ 2633,
+ 2678
],
"loc": {
"start": {
- "line": 73,
+ "line": 100,
"column": 8
},
"end": {
- "line": 75,
+ "line": 102,
"column": 9
}
}
@@ -4083,16 +5643,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 1957,
- 1961
+ 2691,
+ 2695
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 12
},
"end": {
- "line": 76,
+ "line": 103,
"column": 16
}
}
@@ -4109,16 +5669,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1964,
- 1968
+ 2698,
+ 2702
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 19
},
"end": {
- "line": 76,
+ "line": 103,
"column": 23
}
}
@@ -4127,31 +5687,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1969,
- 1971
+ 2703,
+ 2705
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 24
},
"end": {
- "line": 76,
+ "line": 103,
"column": 26
}
}
},
"range": [
- 1964,
- 1971
+ 2698,
+ 2705
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 19
},
"end": {
- "line": 76,
+ "line": 103,
"column": 26
}
}
@@ -4160,31 +5720,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1972,
- 1975
+ 2706,
+ 2709
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 27
},
"end": {
- "line": 76,
+ "line": 103,
"column": 30
}
}
},
"range": [
- 1964,
- 1975
+ 2698,
+ 2709
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 19
},
"end": {
- "line": 76,
+ "line": 103,
"column": 30
}
}
@@ -4193,46 +5753,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 1976,
- 1980
+ 2710,
+ 2714
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 31
},
"end": {
- "line": 76,
+ "line": 103,
"column": 35
}
}
},
"range": [
- 1964,
- 1980
+ 2698,
+ 2714
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 19
},
"end": {
- "line": 76,
+ "line": 103,
"column": 35
}
}
},
"range": [
- 1957,
- 1980
+ 2691,
+ 2714
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 12
},
"end": {
- "line": 76,
+ "line": 103,
"column": 35
}
}
@@ -4240,16 +5800,16 @@
],
"kind": "var",
"range": [
- 1953,
- 1981
+ 2687,
+ 2715
],
"loc": {
"start": {
- "line": 76,
+ "line": 103,
"column": 8
},
"end": {
- "line": 76,
+ "line": 103,
"column": 36
}
}
@@ -4265,16 +5825,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1990,
- 1993
+ 2724,
+ 2727
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 8
},
"end": {
- "line": 77,
+ "line": 104,
"column": 11
}
}
@@ -4283,31 +5843,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 1994,
- 2005
+ 2728,
+ 2739
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 12
},
"end": {
- "line": 77,
+ "line": 104,
"column": 23
}
}
},
"range": [
- 1990,
- 2005
+ 2724,
+ 2739
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 8
},
"end": {
- "line": 77,
+ "line": 104,
"column": 23
}
}
@@ -4320,16 +5880,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2006,
- 2010
+ 2740,
+ 2744
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 24
},
"end": {
- "line": 77,
+ "line": 104,
"column": 28
}
}
@@ -4338,31 +5898,31 @@
"type": "Identifier",
"name": "idx",
"range": [
- 2011,
- 2014
+ 2745,
+ 2748
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 29
},
"end": {
- "line": 77,
+ "line": 104,
"column": 32
}
}
},
"range": [
- 2006,
- 2015
+ 2740,
+ 2749
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 24
},
"end": {
- "line": 77,
+ "line": 104,
"column": 33
}
}
@@ -4373,16 +5933,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2017,
- 2021
+ 2751,
+ 2755
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 35
},
"end": {
- "line": 77,
+ "line": 104,
"column": 39
}
}
@@ -4391,62 +5951,62 @@
"type": "Identifier",
"name": "oddCss",
"range": [
- 2022,
- 2028
+ 2756,
+ 2762
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 40
},
"end": {
- "line": 77,
+ "line": 104,
"column": 46
}
}
},
"range": [
- 2017,
- 2028
+ 2751,
+ 2762
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 35
},
"end": {
- "line": 77,
+ "line": 104,
"column": 46
}
}
}
],
"range": [
- 1990,
- 2029
+ 2724,
+ 2763
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 8
},
"end": {
- "line": 77,
+ "line": 104,
"column": 47
}
}
},
"range": [
- 1990,
- 2030
+ 2724,
+ 2764
],
"loc": {
"start": {
- "line": 77,
+ "line": 104,
"column": 8
},
"end": {
- "line": 77,
+ "line": 104,
"column": 48
}
}
@@ -4462,16 +6022,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2039,
- 2042
+ 2773,
+ 2776
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 8
},
"end": {
- "line": 78,
+ "line": 105,
"column": 11
}
}
@@ -4480,31 +6040,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 2043,
- 2054
+ 2777,
+ 2788
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 12
},
"end": {
- "line": 78,
+ "line": 105,
"column": 23
}
}
},
"range": [
- 2039,
- 2054
+ 2773,
+ 2788
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 8
},
"end": {
- "line": 78,
+ "line": 105,
"column": 23
}
}
@@ -4517,16 +6077,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2055,
- 2059
+ 2789,
+ 2793
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 24
},
"end": {
- "line": 78,
+ "line": 105,
"column": 28
}
}
@@ -4535,31 +6095,31 @@
"type": "Identifier",
"name": "idx",
"range": [
- 2060,
- 2063
+ 2794,
+ 2797
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 29
},
"end": {
- "line": 78,
+ "line": 105,
"column": 32
}
}
},
"range": [
- 2055,
- 2064
+ 2789,
+ 2798
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 24
},
"end": {
- "line": 78,
+ "line": 105,
"column": 33
}
}
@@ -4570,16 +6130,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2066,
- 2070
+ 2800,
+ 2804
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 35
},
"end": {
- "line": 78,
+ "line": 105,
"column": 39
}
}
@@ -4588,78 +6148,78 @@
"type": "Identifier",
"name": "evenCss",
"range": [
- 2071,
- 2078
+ 2805,
+ 2812
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 40
},
"end": {
- "line": 78,
+ "line": 105,
"column": 47
}
}
},
"range": [
- 2066,
- 2078
+ 2800,
+ 2812
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 35
},
"end": {
- "line": 78,
+ "line": 105,
"column": 47
}
}
}
],
"range": [
- 2039,
- 2079
+ 2773,
+ 2813
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 8
},
"end": {
- "line": 78,
+ "line": 105,
"column": 48
}
}
},
"range": [
- 2039,
- 2080
+ 2773,
+ 2814
],
"loc": {
"start": {
- "line": 78,
+ "line": 105,
"column": 8
},
"end": {
- "line": 78,
+ "line": 105,
"column": 49
}
}
}
],
"range": [
- 1889,
- 2086
+ 2623,
+ 2820
],
"loc": {
"start": {
- "line": 72,
+ "line": 99,
"column": 21
},
"end": {
- "line": 79,
+ "line": 106,
"column": 5
}
}
@@ -4667,16 +6227,16 @@
"generator": false,
"expression": false,
"range": [
- 1883,
- 2086
+ 2617,
+ 2820
],
"loc": {
"start": {
- "line": 72,
+ "line": 99,
"column": 15
},
"end": {
- "line": 79,
+ "line": 106,
"column": 5
}
}
@@ -4684,16 +6244,16 @@
"kind": "method",
"computed": false,
"range": [
- 1872,
- 2086
+ 2606,
+ 2820
],
"loc": {
"start": {
- "line": 72,
+ "line": 99,
"column": 4
},
"end": {
- "line": 79,
+ "line": 106,
"column": 5
}
},
@@ -4702,16 +6262,16 @@
"type": "Block",
"value": "*\n * Removes row background color\n * @param {Number} idx Row index\n ",
"range": [
- 1782,
- 1867
+ 2516,
+ 2601
],
"loc": {
"start": {
- "line": 68,
+ "line": 95,
"column": 4
},
"end": {
- "line": 71,
+ "line": 98,
"column": 7
}
}
@@ -4722,16 +6282,16 @@
"type": "Block",
"value": "*\n * Removes all alternating backgrounds\n ",
"range": [
- 2092,
- 2146
+ 2826,
+ 2880
],
"loc": {
"start": {
- "line": 81,
+ "line": 108,
"column": 4
},
"end": {
- "line": 83,
+ "line": 110,
"column": 7
}
}
@@ -4745,16 +6305,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 2151,
- 2158
+ 2885,
+ 2892
],
"loc": {
"start": {
- "line": 84,
+ "line": 111,
"column": 4
},
"end": {
- "line": 84,
+ "line": 111,
"column": 11
}
}
@@ -4777,16 +6337,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2175,
- 2179
+ 2909,
+ 2913
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 12
},
"end": {
- "line": 85,
+ "line": 112,
"column": 16
}
}
@@ -4795,47 +6355,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2180,
- 2191
+ 2914,
+ 2925
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 17
},
"end": {
- "line": 85,
+ "line": 112,
"column": 28
}
}
},
"range": [
- 2175,
- 2191
+ 2909,
+ 2925
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 12
},
"end": {
- "line": 85,
+ "line": 112,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2174,
- 2191
+ 2908,
+ 2925
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 11
},
"end": {
- "line": 85,
+ "line": 112,
"column": 28
}
}
@@ -4847,48 +6407,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2206,
- 2213
+ 2940,
+ 2947
],
"loc": {
"start": {
- "line": 86,
+ "line": 113,
"column": 12
},
"end": {
- "line": 86,
+ "line": 113,
"column": 19
}
}
}
],
"range": [
- 2192,
- 2223
+ 2926,
+ 2957
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 29
},
"end": {
- "line": 87,
+ "line": 114,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2171,
- 2223
+ 2905,
+ 2957
],
"loc": {
"start": {
- "line": 85,
+ "line": 112,
"column": 8
},
"end": {
- "line": 87,
+ "line": 114,
"column": 9
}
}
@@ -4904,138 +6464,68 @@
"type": "Identifier",
"name": "i",
"range": [
- 2240,
- 2241
+ 2974,
+ 2975
],
"loc": {
"start": {
- "line": 88,
+ "line": 115,
"column": 16
},
"end": {
- "line": 88,
+ "line": 115,
"column": 17
}
}
},
"init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 2242,
- 2246
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 18
- },
- "end": {
- "line": 88,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 2247,
- 2249
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 23
- },
- "end": {
- "line": 88,
- "column": 25
- }
- }
- },
- "range": [
- 2242,
- 2249
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 18
- },
- "end": {
- "line": 88,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 2250,
- 2256
- ],
- "loc": {
- "start": {
- "line": 88,
- "column": 26
- },
- "end": {
- "line": 88,
- "column": 32
- }
- }
- },
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
"range": [
- 2242,
- 2256
+ 2976,
+ 2977
],
"loc": {
"start": {
- "line": 88,
+ "line": 115,
"column": 18
},
"end": {
- "line": 88,
- "column": 32
+ "line": 115,
+ "column": 19
}
}
},
"range": [
- 2240,
- 2256
+ 2974,
+ 2977
],
"loc": {
"start": {
- "line": 88,
+ "line": 115,
"column": 16
},
"end": {
- "line": 88,
- "column": 32
+ "line": 115,
+ "column": 19
}
}
}
],
"kind": "var",
"range": [
- 2236,
- 2256
+ 2970,
+ 2977
],
"loc": {
"start": {
- "line": 88,
+ "line": 115,
"column": 12
},
"end": {
- "line": 88,
- "column": 32
+ "line": 115,
+ "column": 19
}
}
},
@@ -5046,17 +6536,17 @@
"type": "Identifier",
"name": "i",
"range": [
- 2258,
- 2259
+ 2979,
+ 2980
],
"loc": {
"start": {
- "line": 88,
- "column": 34
+ "line": 115,
+ "column": 21
},
"end": {
- "line": 88,
- "column": 35
+ "line": 115,
+ "column": 22
}
}
},
@@ -5069,17 +6559,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 2260,
- 2264
+ 2981,
+ 2985
],
"loc": {
"start": {
- "line": 88,
- "column": 36
+ "line": 115,
+ "column": 23
},
"end": {
- "line": 88,
- "column": 40
+ "line": 115,
+ "column": 27
}
}
},
@@ -5087,32 +6577,32 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2265,
- 2267
+ 2986,
+ 2988
],
"loc": {
"start": {
- "line": 88,
- "column": 41
+ "line": 115,
+ "column": 28
},
"end": {
- "line": 88,
- "column": 43
+ "line": 115,
+ "column": 30
}
}
},
"range": [
- 2260,
- 2267
+ 2981,
+ 2988
],
"loc": {
"start": {
- "line": 88,
- "column": 36
+ "line": 115,
+ "column": 23
},
"end": {
- "line": 88,
- "column": 43
+ "line": 115,
+ "column": 30
}
}
},
@@ -5120,47 +6610,47 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 2268,
- 2274
+ 2989,
+ 2995
],
"loc": {
"start": {
- "line": 88,
- "column": 44
+ "line": 115,
+ "column": 31
},
"end": {
- "line": 88,
- "column": 50
+ "line": 115,
+ "column": 37
}
}
},
"range": [
- 2260,
- 2274
+ 2981,
+ 2995
],
"loc": {
"start": {
- "line": 88,
- "column": 36
+ "line": 115,
+ "column": 23
},
"end": {
- "line": 88,
- "column": 50
+ "line": 115,
+ "column": 37
}
}
},
"range": [
- 2258,
- 2274
+ 2979,
+ 2995
],
"loc": {
"start": {
- "line": 88,
- "column": 34
+ "line": 115,
+ "column": 21
},
"end": {
- "line": 88,
- "column": 50
+ "line": 115,
+ "column": 37
}
}
},
@@ -5171,33 +6661,33 @@
"type": "Identifier",
"name": "i",
"range": [
- 2276,
- 2277
+ 2997,
+ 2998
],
"loc": {
"start": {
- "line": 88,
- "column": 52
+ "line": 115,
+ "column": 39
},
"end": {
- "line": 88,
- "column": 53
+ "line": 115,
+ "column": 40
}
}
},
"prefix": false,
"range": [
- 2276,
- 2279
+ 2997,
+ 3000
],
"loc": {
"start": {
- "line": 88,
- "column": 52
+ "line": 115,
+ "column": 39
},
"end": {
- "line": 88,
- "column": 55
+ "line": 115,
+ "column": 42
}
}
},
@@ -5214,16 +6704,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2294,
- 2298
+ 3015,
+ 3019
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 12
},
"end": {
- "line": 89,
+ "line": 116,
"column": 16
}
}
@@ -5232,31 +6722,31 @@
"type": "Identifier",
"name": "removeRowBg",
"range": [
- 2299,
- 2310
+ 3020,
+ 3031
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 17
},
"end": {
- "line": 89,
+ "line": 116,
"column": 28
}
}
},
"range": [
- 2294,
- 2310
+ 3015,
+ 3031
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 12
},
"end": {
- "line": 89,
+ "line": 116,
"column": 28
}
}
@@ -5266,80 +6756,777 @@
"type": "Identifier",
"name": "i",
"range": [
- 2311,
- 2312
+ 3032,
+ 3033
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 29
},
"end": {
- "line": 89,
+ "line": 116,
"column": 30
}
}
}
],
"range": [
- 2294,
- 2313
+ 3015,
+ 3034
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 12
},
"end": {
- "line": 89,
+ "line": 116,
"column": 31
}
}
},
"range": [
- 2294,
- 2314
+ 3015,
+ 3035
],
"loc": {
"start": {
- "line": 89,
+ "line": 116,
"column": 12
},
"end": {
- "line": 89,
+ "line": 116,
"column": 32
}
}
}
],
"range": [
- 2280,
- 2324
+ 3001,
+ 3045
],
"loc": {
"start": {
- "line": 88,
- "column": 56
+ "line": 115,
+ "column": 43
},
"end": {
- "line": 90,
+ "line": 117,
"column": 9
}
}
},
"range": [
- 2232,
- 2324
+ 2966,
+ 3045
],
"loc": {
"start": {
- "line": 88,
+ "line": 115,
"column": 8
},
"end": {
- "line": 90,
+ "line": 117,
"column": 9
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3055,
+ 3079
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 119,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3088,
+ 3092
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 8
+ },
+ "end": {
+ "line": 120,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3093,
+ 3100
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 13
+ },
+ "end": {
+ "line": 120,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3088,
+ 3100
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 8
+ },
+ "end": {
+ "line": 120,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3101,
+ 3104
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 21
+ },
+ "end": {
+ "line": 120,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3088,
+ 3104
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 8
+ },
+ "end": {
+ "line": 120,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "row-processed",
+ "raw": "'row-processed'",
+ "range": [
+ 3106,
+ 3121
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 26
+ },
+ "end": {
+ "line": 120,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "row-paged",
+ "raw": "'row-paged'",
+ "range": [
+ 3123,
+ 3134
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 43
+ },
+ "end": {
+ "line": 120,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 3105,
+ 3135
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 25
+ },
+ "end": {
+ "line": 120,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3150,
+ 3152
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 13
+ },
+ "end": {
+ "line": 121,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 3154,
+ 3162
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 17
+ },
+ "end": {
+ "line": 121,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "arrIndex",
+ "range": [
+ 3164,
+ 3172
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 27
+ },
+ "end": {
+ "line": 121,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 3174,
+ 3181
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 37
+ },
+ "end": {
+ "line": 121,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3201,
+ 3205
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "processRow",
+ "range": [
+ 3206,
+ 3216
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 21
+ },
+ "end": {
+ "line": 122,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3201,
+ 3216
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 3217,
+ 3225
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 32
+ },
+ "end": {
+ "line": 122,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "arrIndex",
+ "range": [
+ 3227,
+ 3235
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 42
+ },
+ "end": {
+ "line": 122,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 3237,
+ 3244
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 52
+ },
+ "end": {
+ "line": 122,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 3201,
+ 3245
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 60
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3149,
+ 3245
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 12
+ },
+ "end": {
+ "line": 122,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 3088,
+ 3246
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 8
+ },
+ "end": {
+ "line": 122,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 3088,
+ 3247
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 8
+ },
+ "end": {
+ "line": 122,
+ "column": 62
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3055,
+ 3079
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 119,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3256,
+ 3260
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3261,
+ 3268
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 13
+ },
+ "end": {
+ "line": 123,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3256,
+ 3268
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3269,
+ 3272
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 21
+ },
+ "end": {
+ "line": 123,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3256,
+ 3272
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "column-sorted",
+ "raw": "'column-sorted'",
+ "range": [
+ 3274,
+ 3289
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 26
+ },
+ "end": {
+ "line": 123,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 3273,
+ 3290
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 25
+ },
+ "end": {
+ "line": 123,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3297,
+ 3301
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 49
+ },
+ "end": {
+ "line": 123,
+ "column": 53
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "processAll",
+ "range": [
+ 3302,
+ 3312
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 54
+ },
+ "end": {
+ "line": 123,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 3297,
+ 3312
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 49
+ },
+ "end": {
+ "line": 123,
+ "column": 64
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3297,
+ 3314
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 49
+ },
+ "end": {
+ "line": 123,
+ "column": 66
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3292,
+ 3314
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 44
+ },
+ "end": {
+ "line": 123,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 3256,
+ 3315
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 3256,
+ 3316
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 68
+ }
}
},
{
@@ -5353,16 +7540,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2333,
- 2337
+ 3326,
+ 3330
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 8
},
"end": {
- "line": 91,
+ "line": 125,
"column": 12
}
}
@@ -5371,31 +7558,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2338,
- 2349
+ 3331,
+ 3342
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 13
},
"end": {
- "line": 91,
+ "line": 125,
"column": 24
}
}
},
"range": [
- 2333,
- 2349
+ 3326,
+ 3342
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 8
},
"end": {
- "line": 91,
+ "line": 125,
"column": 24
}
}
@@ -5405,62 +7592,62 @@
"value": false,
"raw": "false",
"range": [
- 2352,
- 2357
+ 3345,
+ 3350
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 27
},
"end": {
- "line": 91,
+ "line": 125,
"column": 32
}
}
},
"range": [
- 2333,
- 2357
+ 3326,
+ 3350
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 8
},
"end": {
- "line": 91,
+ "line": 125,
"column": 32
}
}
},
"range": [
- 2333,
- 2358
+ 3326,
+ 3351
],
"loc": {
"start": {
- "line": 91,
+ "line": 125,
"column": 8
},
"end": {
- "line": 91,
+ "line": 125,
"column": 33
}
}
}
],
"range": [
- 2161,
- 2364
+ 2895,
+ 3357
],
"loc": {
"start": {
- "line": 84,
+ "line": 111,
"column": 14
},
"end": {
- "line": 92,
+ "line": 126,
"column": 5
}
}
@@ -5468,16 +7655,16 @@
"generator": false,
"expression": false,
"range": [
- 2158,
- 2364
+ 2892,
+ 3357
],
"loc": {
"start": {
- "line": 84,
+ "line": 111,
"column": 11
},
"end": {
- "line": 92,
+ "line": 126,
"column": 5
}
}
@@ -5485,16 +7672,16 @@
"kind": "method",
"computed": false,
"range": [
- 2151,
- 2364
+ 2885,
+ 3357
],
"loc": {
"start": {
- "line": 84,
+ "line": 111,
"column": 4
},
"end": {
- "line": 92,
+ "line": 126,
"column": 5
}
},
@@ -5503,16 +7690,16 @@
"type": "Block",
"value": "*\n * Removes all alternating backgrounds\n ",
"range": [
- 2092,
- 2146
+ 2826,
+ 2880
],
"loc": {
"start": {
- "line": 81,
+ "line": 108,
"column": 4
},
"end": {
- "line": 83,
+ "line": 110,
"column": 7
}
}
@@ -5523,7 +7710,7 @@
],
"range": [
105,
- 2367
+ 3360
],
"loc": {
"start": {
@@ -5531,14 +7718,14 @@
"column": 43
},
"end": {
- "line": 94,
+ "line": 128,
"column": 1
}
}
},
"range": [
69,
- 2367
+ 3360
],
"loc": {
"start": {
@@ -5546,7 +7733,7 @@
"column": 7
},
"end": {
- "line": 94,
+ "line": 128,
"column": 1
}
},
@@ -5557,7 +7744,7 @@
"source": null,
"range": [
62,
- 2367
+ 3360
],
"loc": {
"start": {
@@ -5565,7 +7752,7 @@
"column": 0
},
"end": {
- "line": 94,
+ "line": 128,
"column": 1
}
}
@@ -5574,7 +7761,7 @@
"sourceType": "module",
"range": [
0,
- 2367
+ 3360
],
"loc": {
"start": {
@@ -5582,7 +7769,7 @@
"column": 0
},
"end": {
- "line": 94,
+ "line": 128,
"column": 1
}
},
@@ -5661,18 +7848,36 @@
},
{
"type": "Line",
- "value": "1st index",
+ "value": " Subscribe to events",
"range": [
- 762,
- 773
+ 662,
+ 684
],
"loc": {
"start": {
- "line": 31,
+ "line": 30,
"column": 8
},
"end": {
- "line": 31,
+ "line": 30,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "1st index",
+ "range": [
+ 1187,
+ 1198
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 46,
"column": 19
}
}
@@ -5681,16 +7886,16 @@
"type": "Line",
"value": " nb indexes",
"range": [
- 841,
- 854
+ 1266,
+ 1279
],
"loc": {
"start": {
- "line": 33,
+ "line": 48,
"column": 8
},
"end": {
- "line": 33,
+ "line": 48,
"column": 21
}
}
@@ -5699,34 +7904,52 @@
"type": "Line",
"value": "alternates bg color",
"range": [
- 1015,
- 1036
+ 1440,
+ 1461
],
"loc": {
"start": {
- "line": 39,
+ "line": 54,
"column": 8
},
"end": {
- "line": 39,
+ "line": 54,
"column": 29
}
}
},
+ {
+ "type": "Block",
+ "value": "*\n * Set/remove row background based on row validation\n * @param {Number} rowIdx Row index\n * @param {Boolean} isValid Valid row flag\n ",
+ "range": [
+ 1657,
+ 1816
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 4
+ },
+ "end": {
+ "line": 66,
+ "column": 7
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Sets row background color\n * @param {Number} rowIdx Row index\n * @param {Number} idx Valid rows collection index needed to calculate bg\n * color\n ",
"range": [
- 1265,
- 1443
+ 1999,
+ 2177
],
"loc": {
"start": {
- "line": 48,
+ "line": 75,
"column": 4
},
"end": {
- "line": 53,
+ "line": 80,
"column": 7
}
}
@@ -5735,16 +7958,16 @@
"type": "Block",
"value": "*\n * Removes row background color\n * @param {Number} idx Row index\n ",
"range": [
- 1782,
- 1867
+ 2516,
+ 2601
],
"loc": {
"start": {
- "line": 68,
+ "line": 95,
"column": 4
},
"end": {
- "line": 71,
+ "line": 98,
"column": 7
}
}
@@ -5753,19 +7976,37 @@
"type": "Block",
"value": "*\n * Removes all alternating backgrounds\n ",
"range": [
- 2092,
- 2146
+ 2826,
+ 2880
],
"loc": {
"start": {
- "line": 81,
+ "line": 108,
"column": 4
},
"end": {
- "line": 83,
+ "line": 110,
"column": 7
}
}
+ },
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3055,
+ 3079
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 119,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/checkList.js.json b/docs/ast/source/src/modules/checkList.js.json
index d5c056aa..c8ee3862 100644
--- a/docs/ast/source/src/modules/checkList.js.json
+++ b/docs/ast/source/src/modules/checkList.js.json
@@ -1,6 +1,97 @@
{
"type": "Program",
"body": [
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ },
+ "imported": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ },
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "./feature",
+ "raw": "'./feature'",
+ "range": [
+ 22,
+ 33
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 22
+ },
+ "end": {
+ "line": 1,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 0,
+ 34
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 34
+ }
+ }
+ },
{
"type": "ImportDeclaration",
"specifiers": [
@@ -10,31 +101,31 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7,
- 10
+ 42,
+ 45
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 7
},
"end": {
- "line": 1,
+ "line": 2,
"column": 10
}
}
},
"range": [
- 7,
- 10
+ 42,
+ 45
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 7
},
"end": {
- "line": 1,
+ "line": 2,
"column": 10
}
}
@@ -45,31 +136,31 @@
"value": "../dom",
"raw": "'../dom'",
"range": [
- 16,
- 24
+ 51,
+ 59
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 16
},
"end": {
- "line": 1,
+ "line": 2,
"column": 24
}
}
},
"range": [
- 0,
- 25
+ 35,
+ 60
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 0
},
"end": {
- "line": 1,
+ "line": 2,
"column": 25
}
}
@@ -83,31 +174,31 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 33,
- 36
+ 68,
+ 71
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 7
},
"end": {
- "line": 2,
+ "line": 3,
"column": 10
}
}
},
"range": [
- 33,
- 36
+ 68,
+ 71
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 7
},
"end": {
- "line": 2,
+ "line": 3,
"column": 10
}
}
@@ -118,31 +209,31 @@
"value": "../array",
"raw": "'../array'",
"range": [
- 42,
- 52
+ 77,
+ 87
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 16
},
"end": {
- "line": 2,
+ "line": 3,
"column": 26
}
}
},
"range": [
- 26,
- 53
+ 61,
+ 88
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 0
},
"end": {
- "line": 2,
+ "line": 3,
"column": 27
}
}
@@ -156,31 +247,31 @@
"type": "Identifier",
"name": "Str",
"range": [
- 61,
- 64
+ 96,
+ 99
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 7
},
"end": {
- "line": 3,
+ "line": 4,
"column": 10
}
}
},
"range": [
- 61,
- 64
+ 96,
+ 99
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 7
},
"end": {
- "line": 3,
+ "line": 4,
"column": 10
}
}
@@ -191,31 +282,31 @@
"value": "../string",
"raw": "'../string'",
"range": [
- 70,
- 81
+ 105,
+ 116
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 16
},
"end": {
- "line": 3,
+ "line": 4,
"column": 27
}
}
},
"range": [
- 54,
- 82
+ 89,
+ 117
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 0
},
"end": {
- "line": 3,
+ "line": 4,
"column": 28
}
}
@@ -229,31 +320,31 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 90,
- 94
+ 125,
+ 129
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 7
},
"end": {
- "line": 4,
+ "line": 5,
"column": 11
}
}
},
"range": [
- 90,
- 94
+ 125,
+ 129
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 7
},
"end": {
- "line": 4,
+ "line": 5,
"column": 11
}
}
@@ -264,31 +355,31 @@
"value": "../sort",
"raw": "'../sort'",
"range": [
- 100,
- 109
+ 135,
+ 144
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 17
},
"end": {
- "line": 4,
+ "line": 5,
"column": 26
}
}
},
"range": [
- 83,
- 110
+ 118,
+ 145
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 0
},
"end": {
- "line": 4,
+ "line": 5,
"column": 27
}
}
@@ -302,31 +393,31 @@
"type": "Identifier",
"name": "Event",
"range": [
- 118,
- 123
+ 153,
+ 158
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 7
},
"end": {
- "line": 5,
+ "line": 6,
"column": 12
}
}
},
"range": [
- 118,
- 123
+ 153,
+ 158
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 7
},
"end": {
- "line": 5,
+ "line": 6,
"column": 12
}
}
@@ -337,31 +428,31 @@
"value": "../event",
"raw": "'../event'",
"range": [
- 129,
- 139
+ 164,
+ 174
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 18
},
"end": {
- "line": 5,
+ "line": 6,
"column": 28
}
}
},
"range": [
- 111,
- 140
+ 146,
+ 175
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 0
},
"end": {
- "line": 5,
+ "line": 6,
"column": 29
}
}
@@ -374,21 +465,38 @@
"type": "Identifier",
"name": "CheckList",
"range": [
- 155,
- 164
+ 190,
+ 199
],
"loc": {
"start": {
- "line": 7,
+ "line": 8,
"column": 13
},
"end": {
- "line": 7,
+ "line": 8,
"column": 22
}
}
},
- "superClass": null,
+ "superClass": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 208,
+ 215
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 31
+ },
+ "end": {
+ "line": 8,
+ "column": 38
+ }
+ }
+ },
"body": {
"type": "ClassBody",
"body": [
@@ -398,16 +506,16 @@
"type": "Identifier",
"name": "constructor",
"range": [
- 264,
- 275
+ 315,
+ 326
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 4
},
"end": {
- "line": 13,
+ "line": 14,
"column": 15
}
}
@@ -420,16 +528,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 276,
- 278
+ 327,
+ 329
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 16
},
"end": {
- "line": 13,
+ "line": 14,
"column": 18
}
}
@@ -438,6 +546,116 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Super",
+ "range": [
+ 340,
+ 345
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 13
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 346,
+ 348
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 14
+ },
+ "end": {
+ "line": 15,
+ "column": 16
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "checkList",
+ "raw": "'checkList'",
+ "range": [
+ 350,
+ 361
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 18
+ },
+ "end": {
+ "line": 15,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 340,
+ 362
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 340,
+ 363
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 31
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Configuration object",
+ "range": [
+ 373,
+ 396
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 8
+ },
+ "end": {
+ "line": 17,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -447,16 +665,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 325,
- 326
+ 409,
+ 410
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 12
},
"end": {
- "line": 15,
+ "line": 18,
"column": 13
}
}
@@ -470,16 +688,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 329,
- 331
+ 413,
+ 415
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 16
},
"end": {
- "line": 15,
+ "line": 18,
"column": 18
}
}
@@ -488,79 +706,79 @@
"type": "Identifier",
"name": "config",
"range": [
- 332,
- 338
+ 416,
+ 422
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 19
},
"end": {
- "line": 15,
+ "line": 18,
"column": 25
}
}
},
"range": [
- 329,
- 338
+ 413,
+ 422
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 16
},
"end": {
- "line": 15,
+ "line": 18,
"column": 25
}
}
},
"arguments": [],
"range": [
- 329,
- 340
+ 413,
+ 424
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 16
},
"end": {
- "line": 15,
+ "line": 18,
"column": 27
}
}
},
"range": [
- 325,
- 340
+ 409,
+ 424
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 12
},
"end": {
- "line": 15,
+ "line": 18,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 321,
- 341
+ 405,
+ 425
],
"loc": {
"start": {
- "line": 15,
+ "line": 18,
"column": 8
},
"end": {
- "line": 15,
+ "line": 18,
"column": 28
}
},
@@ -569,16 +787,16 @@
"type": "Line",
"value": " Configuration object",
"range": [
- 289,
- 312
+ 373,
+ 396
],
"loc": {
"start": {
- "line": 14,
+ "line": 17,
"column": 8
},
"end": {
- "line": 14,
+ "line": 17,
"column": 31
}
}
@@ -596,16 +814,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 351,
- 355
+ 435,
+ 439
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 20,
"column": 12
}
}
@@ -614,31 +832,31 @@
"type": "Identifier",
"name": "checkListDiv",
"range": [
- 356,
- 368
+ 440,
+ 452
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 13
},
"end": {
- "line": 17,
+ "line": 20,
"column": 25
}
}
},
"range": [
- 351,
- 368
+ 435,
+ 452
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 20,
"column": 25
}
}
@@ -647,46 +865,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 371,
- 373
+ 455,
+ 457
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 28
},
"end": {
- "line": 17,
+ "line": 20,
"column": 30
}
}
},
"range": [
- 351,
- 373
+ 435,
+ 457
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 20,
"column": 30
}
}
},
"range": [
- 351,
- 374
+ 435,
+ 458
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 20,
"column": 31
}
},
@@ -695,16 +913,16 @@
"type": "Line",
"value": "checklist container div",
"range": [
- 375,
- 400
+ 459,
+ 484
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 32
},
"end": {
- "line": 17,
+ "line": 20,
"column": 57
}
}
@@ -713,16 +931,16 @@
"type": "Line",
"value": "defines css class for div containing checklist filter",
"range": [
- 409,
- 464
+ 493,
+ 548
],
"loc": {
"start": {
- "line": 18,
+ "line": 21,
"column": 8
},
"end": {
- "line": 18,
+ "line": 21,
"column": 63
}
}
@@ -740,16 +958,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 473,
- 477
+ 557,
+ 561
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 8
},
"end": {
- "line": 19,
+ "line": 22,
"column": 12
}
}
@@ -758,31 +976,31 @@
"type": "Identifier",
"name": "checkListDivCssClass",
"range": [
- 478,
- 498
+ 562,
+ 582
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 13
},
"end": {
- "line": 19,
+ "line": 22,
"column": 33
}
}
},
"range": [
- 473,
- 498
+ 557,
+ 582
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 8
},
"end": {
- "line": 19,
+ "line": 22,
"column": 33
}
}
@@ -797,16 +1015,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 501,
- 502
+ 585,
+ 586
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 36
},
"end": {
- "line": 19,
+ "line": 22,
"column": 37
}
}
@@ -815,31 +1033,31 @@
"type": "Identifier",
"name": "div_checklist_css_class",
"range": [
- 503,
- 526
+ 587,
+ 610
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 38
},
"end": {
- "line": 19,
+ "line": 22,
"column": 61
}
}
},
"range": [
- 501,
- 526
+ 585,
+ 610
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 36
},
"end": {
- "line": 19,
+ "line": 22,
"column": 61
}
}
@@ -849,61 +1067,61 @@
"value": "div_checklist",
"raw": "'div_checklist'",
"range": [
- 542,
- 557
+ 626,
+ 641
],
"loc": {
"start": {
- "line": 20,
+ "line": 23,
"column": 12
},
"end": {
- "line": 20,
+ "line": 23,
"column": 27
}
}
},
"range": [
- 501,
- 557
+ 585,
+ 641
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 36
},
"end": {
- "line": 20,
+ "line": 23,
"column": 27
}
}
},
"range": [
- 473,
- 557
+ 557,
+ 641
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 8
},
"end": {
- "line": 20,
+ "line": 23,
"column": 27
}
}
},
"range": [
- 473,
- 558
+ 557,
+ 642
],
"loc": {
"start": {
- "line": 19,
+ "line": 22,
"column": 8
},
"end": {
- "line": 20,
+ "line": 23,
"column": 28
}
},
@@ -912,16 +1130,16 @@
"type": "Line",
"value": "checklist container div",
"range": [
- 375,
- 400
+ 459,
+ 484
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 32
},
"end": {
- "line": 17,
+ "line": 20,
"column": 57
}
}
@@ -930,16 +1148,16 @@
"type": "Line",
"value": "defines css class for div containing checklist filter",
"range": [
- 409,
- 464
+ 493,
+ 548
],
"loc": {
"start": {
- "line": 18,
+ "line": 21,
"column": 8
},
"end": {
- "line": 18,
+ "line": 21,
"column": 63
}
}
@@ -950,16 +1168,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 567,
- 608
+ 651,
+ 692
],
"loc": {
"start": {
- "line": 21,
+ "line": 24,
"column": 8
},
"end": {
- "line": 21,
+ "line": 24,
"column": 49
}
}
@@ -977,16 +1195,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 617,
- 621
+ 701,
+ 705
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 8
},
"end": {
- "line": 22,
+ "line": 25,
"column": 12
}
}
@@ -995,31 +1213,31 @@
"type": "Identifier",
"name": "checkListCssClass",
"range": [
- 622,
- 639
+ 706,
+ 723
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 13
},
"end": {
- "line": 22,
+ "line": 25,
"column": 30
}
}
},
"range": [
- 617,
- 639
+ 701,
+ 723
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 8
},
"end": {
- "line": 22,
+ "line": 25,
"column": 30
}
}
@@ -1034,16 +1252,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 642,
- 643
+ 726,
+ 727
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 33
},
"end": {
- "line": 22,
+ "line": 25,
"column": 34
}
}
@@ -1052,31 +1270,31 @@
"type": "Identifier",
"name": "checklist_css_class",
"range": [
- 644,
- 663
+ 728,
+ 747
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 35
},
"end": {
- "line": 22,
+ "line": 25,
"column": 54
}
}
},
"range": [
- 642,
- 663
+ 726,
+ 747
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 33
},
"end": {
- "line": 22,
+ "line": 25,
"column": 54
}
}
@@ -1086,61 +1304,61 @@
"value": "flt_checklist",
"raw": "'flt_checklist'",
"range": [
- 667,
- 682
+ 751,
+ 766
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 58
},
"end": {
- "line": 22,
+ "line": 25,
"column": 73
}
}
},
"range": [
- 642,
- 682
+ 726,
+ 766
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 33
},
"end": {
- "line": 22,
+ "line": 25,
"column": 73
}
}
},
"range": [
- 617,
- 682
+ 701,
+ 766
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 8
},
"end": {
- "line": 22,
+ "line": 25,
"column": 73
}
}
},
"range": [
- 617,
- 683
+ 701,
+ 767
],
"loc": {
"start": {
- "line": 22,
+ "line": 25,
"column": 8
},
"end": {
- "line": 22,
+ "line": 25,
"column": 74
}
},
@@ -1149,16 +1367,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 567,
- 608
+ 651,
+ 692
],
"loc": {
"start": {
- "line": 21,
+ "line": 24,
"column": 8
},
"end": {
- "line": 21,
+ "line": 24,
"column": 49
}
}
@@ -1169,16 +1387,16 @@
"type": "Line",
"value": "defines css class for checklist item (li)",
"range": [
- 692,
- 735
+ 776,
+ 819
],
"loc": {
"start": {
- "line": 23,
+ "line": 26,
"column": 8
},
"end": {
- "line": 23,
+ "line": 26,
"column": 51
}
}
@@ -1196,16 +1414,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 744,
- 748
+ 828,
+ 832
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 8
},
"end": {
- "line": 24,
+ "line": 27,
"column": 12
}
}
@@ -1214,31 +1432,31 @@
"type": "Identifier",
"name": "checkListItemCssClass",
"range": [
- 749,
- 770
+ 833,
+ 854
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 13
},
"end": {
- "line": 24,
+ "line": 27,
"column": 34
}
}
},
"range": [
- 744,
- 770
+ 828,
+ 854
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 8
},
"end": {
- "line": 24,
+ "line": 27,
"column": 34
}
}
@@ -1253,16 +1471,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 773,
- 774
+ 857,
+ 858
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 37
},
"end": {
- "line": 24,
+ "line": 27,
"column": 38
}
}
@@ -1271,31 +1489,31 @@
"type": "Identifier",
"name": "checklist_item_css_class",
"range": [
- 775,
- 799
+ 859,
+ 883
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 39
},
"end": {
- "line": 24,
+ "line": 27,
"column": 63
}
}
},
"range": [
- 773,
- 799
+ 857,
+ 883
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 37
},
"end": {
- "line": 24,
+ "line": 27,
"column": 63
}
}
@@ -1305,61 +1523,61 @@
"value": "flt_checklist_item",
"raw": "'flt_checklist_item'",
"range": [
- 815,
- 835
+ 899,
+ 919
],
"loc": {
"start": {
- "line": 25,
+ "line": 28,
"column": 12
},
"end": {
- "line": 25,
+ "line": 28,
"column": 32
}
}
},
"range": [
- 773,
- 835
+ 857,
+ 919
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 37
},
"end": {
- "line": 25,
+ "line": 28,
"column": 32
}
}
},
"range": [
- 744,
- 835
+ 828,
+ 919
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 8
},
"end": {
- "line": 25,
+ "line": 28,
"column": 32
}
}
},
"range": [
- 744,
- 836
+ 828,
+ 920
],
"loc": {
"start": {
- "line": 24,
+ "line": 27,
"column": 8
},
"end": {
- "line": 25,
+ "line": 28,
"column": 33
}
},
@@ -1368,16 +1586,16 @@
"type": "Line",
"value": "defines css class for checklist item (li)",
"range": [
- 692,
- 735
+ 776,
+ 819
],
"loc": {
"start": {
- "line": 23,
+ "line": 26,
"column": 8
},
"end": {
- "line": 23,
+ "line": 26,
"column": 51
}
}
@@ -1388,16 +1606,16 @@
"type": "Line",
"value": "defines css class for selected checklist item (li)",
"range": [
- 845,
- 897
+ 929,
+ 981
],
"loc": {
"start": {
- "line": 26,
+ "line": 29,
"column": 8
},
"end": {
- "line": 26,
+ "line": 29,
"column": 60
}
}
@@ -1415,16 +1633,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 906,
- 910
+ 990,
+ 994
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 8
},
"end": {
- "line": 27,
+ "line": 30,
"column": 12
}
}
@@ -1433,31 +1651,31 @@
"type": "Identifier",
"name": "checkListSlcItemCssClass",
"range": [
- 911,
- 935
+ 995,
+ 1019
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 13
},
"end": {
- "line": 27,
+ "line": 30,
"column": 37
}
}
},
"range": [
- 906,
- 935
+ 990,
+ 1019
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 8
},
"end": {
- "line": 27,
+ "line": 30,
"column": 37
}
}
@@ -1472,16 +1690,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 938,
- 939
+ 1022,
+ 1023
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 40
},
"end": {
- "line": 27,
+ "line": 30,
"column": 41
}
}
@@ -1490,31 +1708,31 @@
"type": "Identifier",
"name": "checklist_selected_item_css_class",
"range": [
- 940,
- 973
+ 1024,
+ 1057
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 42
},
"end": {
- "line": 27,
+ "line": 30,
"column": 75
}
}
},
"range": [
- 938,
- 973
+ 1022,
+ 1057
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 40
},
"end": {
- "line": 27,
+ "line": 30,
"column": 75
}
}
@@ -1524,61 +1742,61 @@
"value": "flt_checklist_slc_item",
"raw": "'flt_checklist_slc_item'",
"range": [
- 989,
- 1013
+ 1073,
+ 1097
],
"loc": {
"start": {
- "line": 28,
+ "line": 31,
"column": 12
},
"end": {
- "line": 28,
+ "line": 31,
"column": 36
}
}
},
"range": [
- 938,
- 1013
+ 1022,
+ 1097
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 40
},
"end": {
- "line": 28,
+ "line": 31,
"column": 36
}
}
},
"range": [
- 906,
- 1013
+ 990,
+ 1097
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 8
},
"end": {
- "line": 28,
+ "line": 31,
"column": 36
}
}
},
"range": [
- 906,
- 1014
+ 990,
+ 1098
],
"loc": {
"start": {
- "line": 27,
+ "line": 30,
"column": 8
},
"end": {
- "line": 28,
+ "line": 31,
"column": 37
}
},
@@ -1587,16 +1805,16 @@
"type": "Line",
"value": "defines css class for selected checklist item (li)",
"range": [
- 845,
- 897
+ 929,
+ 981
],
"loc": {
"start": {
- "line": 26,
+ "line": 29,
"column": 8
},
"end": {
- "line": 26,
+ "line": 29,
"column": 60
}
}
@@ -1607,16 +1825,16 @@
"type": "Line",
"value": "Load on demand text",
"range": [
- 1023,
- 1044
+ 1107,
+ 1128
],
"loc": {
"start": {
- "line": 29,
+ "line": 32,
"column": 8
},
"end": {
- "line": 29,
+ "line": 32,
"column": 29
}
}
@@ -1634,16 +1852,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1053,
- 1057
+ 1137,
+ 1141
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 8
},
"end": {
- "line": 30,
+ "line": 33,
"column": 12
}
}
@@ -1652,31 +1870,31 @@
"type": "Identifier",
"name": "activateCheckListTxt",
"range": [
- 1058,
- 1078
+ 1142,
+ 1162
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 13
},
"end": {
- "line": 30,
+ "line": 33,
"column": 33
}
}
},
"range": [
- 1053,
- 1078
+ 1137,
+ 1162
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 8
},
"end": {
- "line": 30,
+ "line": 33,
"column": 33
}
}
@@ -1691,16 +1909,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 1081,
- 1082
+ 1165,
+ 1166
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 36
},
"end": {
- "line": 30,
+ "line": 33,
"column": 37
}
}
@@ -1709,31 +1927,31 @@
"type": "Identifier",
"name": "activate_checklist_text",
"range": [
- 1083,
- 1106
+ 1167,
+ 1190
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 38
},
"end": {
- "line": 30,
+ "line": 33,
"column": 61
}
}
},
"range": [
- 1081,
- 1106
+ 1165,
+ 1190
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 36
},
"end": {
- "line": 30,
+ "line": 33,
"column": 61
}
}
@@ -1743,61 +1961,61 @@
"value": "Click to load filter data",
"raw": "'Click to load filter data'",
"range": [
- 1122,
- 1149
+ 1206,
+ 1233
],
"loc": {
"start": {
- "line": 31,
+ "line": 34,
"column": 12
},
"end": {
- "line": 31,
+ "line": 34,
"column": 39
}
}
},
"range": [
- 1081,
- 1149
+ 1165,
+ 1233
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 36
},
"end": {
- "line": 31,
+ "line": 34,
"column": 39
}
}
},
"range": [
- 1053,
- 1149
+ 1137,
+ 1233
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 8
},
"end": {
- "line": 31,
+ "line": 34,
"column": 39
}
}
},
"range": [
- 1053,
- 1150
+ 1137,
+ 1234
],
"loc": {
"start": {
- "line": 30,
+ "line": 33,
"column": 8
},
"end": {
- "line": 31,
+ "line": 34,
"column": 40
}
},
@@ -1806,16 +2024,16 @@
"type": "Line",
"value": "Load on demand text",
"range": [
- 1023,
- 1044
+ 1107,
+ 1128
],
"loc": {
"start": {
- "line": 29,
+ "line": 32,
"column": 8
},
"end": {
- "line": 29,
+ "line": 32,
"column": 29
}
}
@@ -1826,16 +2044,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 1159,
- 1200
+ 1243,
+ 1284
],
"loc": {
"start": {
- "line": 32,
+ "line": 35,
"column": 8
},
"end": {
- "line": 32,
+ "line": 35,
"column": 49
}
}
@@ -1853,16 +2071,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1209,
- 1213
+ 1293,
+ 1297
],
"loc": {
"start": {
- "line": 33,
+ "line": 36,
"column": 8
},
"end": {
- "line": 33,
+ "line": 36,
"column": 12
}
}
@@ -1871,31 +2089,31 @@
"type": "Identifier",
"name": "checkListItemDisabledCssClass",
"range": [
- 1214,
- 1243
+ 1298,
+ 1327
],
"loc": {
"start": {
- "line": 33,
+ "line": 36,
"column": 13
},
"end": {
- "line": 33,
+ "line": 36,
"column": 42
}
}
},
"range": [
- 1209,
- 1243
+ 1293,
+ 1327
],
"loc": {
"start": {
- "line": 33,
+ "line": 36,
"column": 8
},
"end": {
- "line": 33,
+ "line": 36,
"column": 42
}
}
@@ -1910,16 +2128,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 1258,
- 1259
+ 1342,
+ 1343
],
"loc": {
"start": {
- "line": 34,
+ "line": 37,
"column": 12
},
"end": {
- "line": 34,
+ "line": 37,
"column": 13
}
}
@@ -1928,31 +2146,31 @@
"type": "Identifier",
"name": "checklist_item_disabled_css_class",
"range": [
- 1260,
- 1293
+ 1344,
+ 1377
],
"loc": {
"start": {
- "line": 34,
+ "line": 37,
"column": 14
},
"end": {
- "line": 34,
+ "line": 37,
"column": 47
}
}
},
"range": [
- 1258,
- 1293
+ 1342,
+ 1377
],
"loc": {
"start": {
- "line": 34,
+ "line": 37,
"column": 12
},
"end": {
- "line": 34,
+ "line": 37,
"column": 47
}
}
@@ -1962,61 +2180,61 @@
"value": "flt_checklist_item_disabled",
"raw": "'flt_checklist_item_disabled'",
"range": [
- 1309,
- 1338
+ 1393,
+ 1422
],
"loc": {
"start": {
- "line": 35,
+ "line": 38,
"column": 12
},
"end": {
- "line": 35,
+ "line": 38,
"column": 41
}
}
},
"range": [
- 1258,
- 1338
+ 1342,
+ 1422
],
"loc": {
"start": {
- "line": 34,
+ "line": 37,
"column": 12
},
"end": {
- "line": 35,
+ "line": 38,
"column": 41
}
}
},
"range": [
- 1209,
- 1338
+ 1293,
+ 1422
],
"loc": {
"start": {
- "line": 33,
+ "line": 36,
"column": 8
},
"end": {
- "line": 35,
+ "line": 38,
"column": 41
}
}
},
"range": [
- 1209,
- 1339
+ 1293,
+ 1423
],
"loc": {
"start": {
- "line": 33,
+ "line": 36,
"column": 8
},
"end": {
- "line": 35,
+ "line": 38,
"column": 42
}
},
@@ -2025,16 +2243,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 1159,
- 1200
+ 1243,
+ 1284
],
"loc": {
"start": {
- "line": 32,
+ "line": 35,
"column": 8
},
"end": {
- "line": 32,
+ "line": 35,
"column": 49
}
}
@@ -2052,16 +2270,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1348,
- 1352
+ 1432,
+ 1436
],
"loc": {
"start": {
- "line": 36,
+ "line": 39,
"column": 8
},
"end": {
- "line": 36,
+ "line": 39,
"column": 12
}
}
@@ -2070,31 +2288,31 @@
"type": "Identifier",
"name": "enableCheckListResetFilter",
"range": [
- 1353,
- 1379
+ 1437,
+ 1463
],
"loc": {
"start": {
- "line": 36,
+ "line": 39,
"column": 13
},
"end": {
- "line": 36,
+ "line": 39,
"column": 39
}
}
},
"range": [
- 1348,
- 1379
+ 1432,
+ 1463
],
"loc": {
"start": {
- "line": 36,
+ "line": 39,
"column": 8
},
"end": {
- "line": 36,
+ "line": 39,
"column": 39
}
}
@@ -2111,16 +2329,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 1394,
- 1395
+ 1478,
+ 1479
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 12
},
"end": {
- "line": 37,
+ "line": 40,
"column": 13
}
}
@@ -2129,31 +2347,31 @@
"type": "Identifier",
"name": "enable_checklist_reset_filter",
"range": [
- 1396,
- 1425
+ 1480,
+ 1509
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 14
},
"end": {
- "line": 37,
+ "line": 40,
"column": 43
}
}
},
"range": [
- 1394,
- 1425
+ 1478,
+ 1509
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 12
},
"end": {
- "line": 37,
+ "line": 40,
"column": 43
}
}
@@ -2163,31 +2381,31 @@
"value": false,
"raw": "false",
"range": [
- 1428,
- 1433
+ 1512,
+ 1517
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 46
},
"end": {
- "line": 37,
+ "line": 40,
"column": 51
}
}
},
"range": [
- 1394,
- 1433
+ 1478,
+ 1517
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 12
},
"end": {
- "line": 37,
+ "line": 40,
"column": 51
}
}
@@ -2197,16 +2415,16 @@
"value": false,
"raw": "false",
"range": [
- 1436,
- 1441
+ 1520,
+ 1525
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 54
},
"end": {
- "line": 37,
+ "line": 40,
"column": 59
}
}
@@ -2216,61 +2434,61 @@
"value": true,
"raw": "true",
"range": [
- 1444,
- 1448
+ 1528,
+ 1532
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 62
},
"end": {
- "line": 37,
+ "line": 40,
"column": 66
}
}
},
"range": [
- 1394,
- 1448
+ 1478,
+ 1532
],
"loc": {
"start": {
- "line": 37,
+ "line": 40,
"column": 12
},
"end": {
- "line": 37,
+ "line": 40,
"column": 66
}
}
},
"range": [
- 1348,
- 1448
+ 1432,
+ 1532
],
"loc": {
"start": {
- "line": 36,
+ "line": 39,
"column": 8
},
"end": {
- "line": 37,
+ "line": 40,
"column": 66
}
}
},
"range": [
- 1348,
- 1449
+ 1432,
+ 1533
],
"loc": {
"start": {
- "line": 36,
+ "line": 39,
"column": 8
},
"end": {
- "line": 37,
+ "line": 40,
"column": 67
}
},
@@ -2279,16 +2497,16 @@
"type": "Line",
"value": "checklist filter container div",
"range": [
- 1458,
- 1490
+ 1542,
+ 1574
],
"loc": {
"start": {
- "line": 38,
+ "line": 41,
"column": 8
},
"end": {
- "line": 38,
+ "line": 41,
"column": 40
}
}
@@ -2306,16 +2524,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1499,
- 1503
+ 1583,
+ 1587
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 8
},
"end": {
- "line": 39,
+ "line": 42,
"column": 12
}
}
@@ -2324,31 +2542,31 @@
"type": "Identifier",
"name": "prfxCheckListDiv",
"range": [
- 1504,
- 1520
+ 1588,
+ 1604
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 13
},
"end": {
- "line": 39,
+ "line": 42,
"column": 29
}
}
},
"range": [
- 1499,
- 1520
+ 1583,
+ 1604
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 8
},
"end": {
- "line": 39,
+ "line": 42,
"column": 29
}
}
@@ -2358,46 +2576,46 @@
"value": "chkdiv_",
"raw": "'chkdiv_'",
"range": [
- 1523,
- 1532
+ 1607,
+ 1616
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 32
},
"end": {
- "line": 39,
+ "line": 42,
"column": 41
}
}
},
"range": [
- 1499,
- 1532
+ 1583,
+ 1616
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 8
},
"end": {
- "line": 39,
+ "line": 42,
"column": 41
}
}
},
"range": [
- 1499,
- 1533
+ 1583,
+ 1617
],
"loc": {
"start": {
- "line": 39,
+ "line": 42,
"column": 8
},
"end": {
- "line": 39,
+ "line": 42,
"column": 42
}
},
@@ -2406,16 +2624,16 @@
"type": "Line",
"value": "checklist filter container div",
"range": [
- 1458,
- 1490
+ 1542,
+ 1574
],
"loc": {
"start": {
- "line": 38,
+ "line": 41,
"column": 8
},
"end": {
- "line": 38,
+ "line": 41,
"column": 40
}
}
@@ -2433,16 +2651,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1543,
- 1547
+ 1627,
+ 1631
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 8
},
"end": {
- "line": 41,
+ "line": 44,
"column": 12
}
}
@@ -2451,31 +2669,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 1548,
- 1556
+ 1632,
+ 1640
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 13
},
"end": {
- "line": 41,
+ "line": 44,
"column": 21
}
}
},
"range": [
- 1543,
- 1556
+ 1627,
+ 1640
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 8
},
"end": {
- "line": 41,
+ "line": 44,
"column": 21
}
}
@@ -2485,46 +2703,46 @@
"value": null,
"raw": "null",
"range": [
- 1559,
- 1563
+ 1643,
+ 1647
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 24
},
"end": {
- "line": 41,
+ "line": 44,
"column": 28
}
}
},
"range": [
- 1543,
- 1563
+ 1627,
+ 1647
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 8
},
"end": {
- "line": 41,
+ "line": 44,
"column": 28
}
}
},
"range": [
- 1543,
- 1564
+ 1627,
+ 1648
],
"loc": {
"start": {
- "line": 41,
+ "line": 44,
"column": 8
},
"end": {
- "line": 41,
+ "line": 44,
"column": 29
}
}
@@ -2540,16 +2758,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1573,
- 1577
+ 1657,
+ 1661
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 8
},
"end": {
- "line": 42,
+ "line": 45,
"column": 12
}
}
@@ -2558,31 +2776,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1578,
- 1582
+ 1662,
+ 1666
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 13
},
"end": {
- "line": 42,
+ "line": 45,
"column": 17
}
}
},
"range": [
- 1573,
- 1582
+ 1657,
+ 1666
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 8
},
"end": {
- "line": 42,
+ "line": 45,
"column": 17
}
}
@@ -2592,46 +2810,46 @@
"value": null,
"raw": "null",
"range": [
- 1585,
- 1589
+ 1669,
+ 1673
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 20
},
"end": {
- "line": 42,
+ "line": 45,
"column": 24
}
}
},
"range": [
- 1573,
- 1589
+ 1657,
+ 1673
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 8
},
"end": {
- "line": 42,
+ "line": 45,
"column": 24
}
}
},
"range": [
- 1573,
- 1590
+ 1657,
+ 1674
],
"loc": {
"start": {
- "line": 42,
+ "line": 45,
"column": 8
},
"end": {
- "line": 42,
+ "line": 45,
"column": 25
}
}
@@ -2647,16 +2865,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1599,
- 1603
+ 1683,
+ 1687
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 8
},
"end": {
- "line": 43,
+ "line": 46,
"column": 12
}
}
@@ -2665,31 +2883,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 1604,
- 1611
+ 1688,
+ 1695
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 13
},
"end": {
- "line": 43,
+ "line": 46,
"column": 20
}
}
},
"range": [
- 1599,
- 1611
+ 1683,
+ 1695
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 8
},
"end": {
- "line": 43,
+ "line": 46,
"column": 20
}
}
@@ -2699,46 +2917,46 @@
"value": null,
"raw": "null",
"range": [
- 1614,
- 1618
+ 1698,
+ 1702
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 23
},
"end": {
- "line": 43,
+ "line": 46,
"column": 27
}
}
},
"range": [
- 1599,
- 1618
+ 1683,
+ 1702
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 8
},
"end": {
- "line": 43,
+ "line": 46,
"column": 27
}
}
},
"range": [
- 1599,
- 1619
+ 1683,
+ 1703
],
"loc": {
"start": {
- "line": 43,
+ "line": 46,
"column": 8
},
"end": {
- "line": 43,
+ "line": 46,
"column": 28
}
}
@@ -2754,16 +2972,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1628,
- 1632
+ 1712,
+ 1716
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 8
},
"end": {
- "line": 44,
+ "line": 47,
"column": 12
}
}
@@ -2772,31 +2990,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 1633,
- 1645
+ 1717,
+ 1729
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 13
},
"end": {
- "line": 44,
+ "line": 47,
"column": 25
}
}
},
"range": [
- 1628,
- 1645
+ 1712,
+ 1729
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 8
},
"end": {
- "line": 44,
+ "line": 47,
"column": 25
}
}
@@ -2806,168 +3024,62 @@
"value": null,
"raw": "null",
"range": [
- 1648,
- 1652
+ 1732,
+ 1736
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 28
},
"end": {
- "line": 44,
+ "line": 47,
"column": 32
}
}
},
"range": [
- 1628,
- 1652
+ 1712,
+ 1736
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 8
},
"end": {
- "line": 44,
+ "line": 47,
"column": 32
}
}
},
"range": [
- 1628,
- 1653
+ 1712,
+ 1737
],
"loc": {
"start": {
- "line": 44,
+ "line": 47,
"column": 8
},
"end": {
- "line": 44,
+ "line": 47,
"column": 33
}
}
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1663,
- 1667
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1668,
- 1670
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 13
- },
- "end": {
- "line": 46,
- "column": 15
- }
- }
- },
- "range": [
- 1663,
- 1670
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 15
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1673,
- 1675
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 18
- },
- "end": {
- "line": 46,
- "column": 20
- }
- }
- },
- "range": [
- 1663,
- 1675
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 20
- }
- }
- },
- "range": [
- 1663,
- 1676
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 21
- }
- }
}
],
"range": [
- 279,
- 1682
+ 330,
+ 1743
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 19
},
"end": {
- "line": 47,
+ "line": 48,
"column": 5
}
}
@@ -2975,16 +3087,16 @@
"generator": false,
"expression": false,
"range": [
- 275,
- 1682
+ 326,
+ 1743
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 15
},
"end": {
- "line": 47,
+ "line": 48,
"column": 5
}
}
@@ -2992,16 +3104,16 @@
"kind": "constructor",
"computed": false,
"range": [
- 264,
- 1682
+ 315,
+ 1743
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 4
},
"end": {
- "line": 47,
+ "line": 48,
"column": 5
}
},
@@ -3010,41 +3122,21 @@
"type": "Block",
"value": "*\n * Checklist UI component\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 171,
- 259
+ 222,
+ 310
],
"loc": {
"start": {
- "line": 9,
+ "line": 10,
"column": 4
},
"end": {
- "line": 12,
+ "line": 13,
"column": 7
}
}
}
],
- "trailingComments": [
- {
- "type": "Line",
- "value": " TODO: move event here",
- "range": [
- 1688,
- 1712
- ],
- "loc": {
- "start": {
- "line": 49,
- "column": 4
- },
- "end": {
- "line": 49,
- "column": 28
- }
- }
- }
- ],
"static": false
},
{
@@ -3053,8 +3145,8 @@
"type": "Identifier",
"name": "onChange",
"range": [
- 1717,
- 1725
+ 1749,
+ 1757
],
"loc": {
"start": {
@@ -3075,8 +3167,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 1726,
- 1729
+ 1758,
+ 1761
],
"loc": {
"start": {
@@ -3102,8 +3194,8 @@
"type": "Identifier",
"name": "elm",
"range": [
- 1744,
- 1747
+ 1776,
+ 1779
],
"loc": {
"start": {
@@ -3123,8 +3215,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 1750,
- 1753
+ 1782,
+ 1785
],
"loc": {
"start": {
@@ -3141,8 +3233,8 @@
"type": "Identifier",
"name": "target",
"range": [
- 1754,
- 1760
+ 1786,
+ 1792
],
"loc": {
"start": {
@@ -3156,8 +3248,8 @@
}
},
"range": [
- 1750,
- 1760
+ 1782,
+ 1792
],
"loc": {
"start": {
@@ -3171,8 +3263,8 @@
}
},
"range": [
- 1744,
- 1760
+ 1776,
+ 1792
],
"loc": {
"start": {
@@ -3188,8 +3280,8 @@
],
"kind": "let",
"range": [
- 1740,
- 1761
+ 1772,
+ 1793
],
"loc": {
"start": {
@@ -3203,30 +3295,45 @@
}
},
{
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1806,
+ 1808
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 12
+ },
+ "end": {
+ "line": 52,
+ "column": 14
+ }
+ }
+ },
+ "init": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 1770,
- 1774
+ 1811,
+ 1815
],
"loc": {
"start": {
"line": 52,
- "column": 8
+ "column": 17
},
"end": {
"line": 52,
- "column": 12
+ "column": 21
}
}
},
@@ -3234,178 +3341,55 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1775,
- 1777
+ 1816,
+ 1818
],
"loc": {
"start": {
"line": 52,
- "column": 13
+ "column": 22
},
"end": {
"line": 52,
- "column": 15
+ "column": 24
}
}
},
"range": [
- 1770,
- 1777
+ 1811,
+ 1818
],
"loc": {
"start": {
"line": 52,
- "column": 8
+ "column": 17
},
"end": {
"line": 52,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFilterId",
- "range": [
- 1778,
- 1792
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 16
- },
- "end": {
- "line": 52,
- "column": 30
+ "column": 24
}
}
},
"range": [
- 1770,
- 1792
+ 1806,
+ 1818
],
"loc": {
"start": {
"line": 52,
- "column": 8
+ "column": 12
},
"end": {
"line": 52,
- "column": 30
+ "column": 24
}
}
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 1795,
- 1798
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 33
- },
- "end": {
- "line": 52,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 1799,
- 1811
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 37
- },
- "end": {
- "line": 52,
- "column": 49
- }
- }
- },
- "range": [
- 1795,
- 1811
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 33
- },
- "end": {
- "line": 52,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 1812,
- 1816
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 50
- },
- "end": {
- "line": 52,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 1795,
- 1817
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 33
- },
- "end": {
- "line": 52,
- "column": 55
- }
- }
- },
- "range": [
- 1770,
- 1817
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 8
- },
- "end": {
- "line": 52,
- "column": 55
- }
}
- },
+ ],
+ "kind": "let",
"range": [
- 1770,
- 1818
+ 1802,
+ 1819
],
"loc": {
"start": {
@@ -3414,7 +3398,7 @@
},
"end": {
"line": 52,
- "column": 56
+ "column": 25
}
}
},
@@ -3427,46 +3411,11 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1827,
- 1831
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 8
- },
- "end": {
- "line": 53,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1832,
- 1834
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 13
- },
- "end": {
- "line": 53,
- "column": 15
- }
- }
- },
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 1827,
- 1834
+ 1828,
+ 1830
],
"loc": {
"start": {
@@ -3475,21 +3424,21 @@
},
"end": {
"line": 53,
- "column": 15
+ "column": 10
}
}
},
"property": {
"type": "Identifier",
- "name": "activeFlt",
+ "name": "activeFilterId",
"range": [
- 1835,
- 1844
+ 1831,
+ 1845
],
"loc": {
"start": {
"line": 53,
- "column": 16
+ "column": 11
},
"end": {
"line": 53,
@@ -3498,8 +3447,8 @@
}
},
"range": [
- 1827,
- 1844
+ 1828,
+ 1845
],
"loc": {
"start": {
@@ -3519,10 +3468,10 @@
"computed": false,
"object": {
"type": "Identifier",
- "name": "Dom",
+ "name": "elm",
"range": [
- 1847,
- 1850
+ 1848,
+ 1851
],
"loc": {
"start": {
@@ -3537,10 +3486,10 @@
},
"property": {
"type": "Identifier",
- "name": "id",
+ "name": "getAttribute",
"range": [
- 1851,
- 1853
+ 1852,
+ 1864
],
"loc": {
"start": {
@@ -3549,13 +3498,13 @@
},
"end": {
"line": 53,
- "column": 34
+ "column": 44
}
}
},
"range": [
- 1847,
- 1853
+ 1848,
+ 1864
],
"loc": {
"start": {
@@ -3564,104 +3513,34 @@
},
"end": {
"line": 53,
- "column": 34
+ "column": 44
}
}
},
"arguments": [
{
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1854,
- 1858
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 35
- },
- "end": {
- "line": 53,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1859,
- 1861
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 40
- },
- "end": {
- "line": 53,
- "column": 42
- }
- }
- },
- "range": [
- 1854,
- 1861
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 35
- },
- "end": {
- "line": 53,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFilterId",
- "range": [
- 1862,
- 1876
- ],
- "loc": {
- "start": {
- "line": 53,
- "column": 43
- },
- "end": {
- "line": 53,
- "column": 57
- }
- }
- },
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
"range": [
- 1854,
- 1876
+ 1865,
+ 1869
],
"loc": {
"start": {
"line": 53,
- "column": 35
+ "column": 45
},
"end": {
"line": 53,
- "column": 57
+ "column": 49
}
}
}
],
"range": [
- 1847,
- 1877
+ 1848,
+ 1870
],
"loc": {
"start": {
@@ -3670,13 +3549,13 @@
},
"end": {
"line": 53,
- "column": 58
+ "column": 50
}
}
},
"range": [
- 1827,
- 1877
+ 1828,
+ 1870
],
"loc": {
"start": {
@@ -3685,13 +3564,13 @@
},
"end": {
"line": 53,
- "column": 58
+ "column": 50
}
}
},
"range": [
- 1827,
- 1878
+ 1828,
+ 1871
],
"loc": {
"start": {
@@ -3700,7 +3579,223 @@
},
"end": {
"line": 53,
- "column": 59
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1880,
+ 1882
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFlt",
+ "range": [
+ 1883,
+ 1892
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 11
+ },
+ "end": {
+ "line": 54,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 1880,
+ 1892
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 1895,
+ 1898
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 23
+ },
+ "end": {
+ "line": 54,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 1899,
+ 1901
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 27
+ },
+ "end": {
+ "line": 54,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1895,
+ 1901
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 23
+ },
+ "end": {
+ "line": 54,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1902,
+ 1904
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 30
+ },
+ "end": {
+ "line": 54,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFilterId",
+ "range": [
+ 1905,
+ 1919
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 33
+ },
+ "end": {
+ "line": 54,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 1902,
+ 1919
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 30
+ },
+ "end": {
+ "line": 54,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 1895,
+ 1920
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 23
+ },
+ "end": {
+ "line": 54,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 1880,
+ 1920
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 1880,
+ 1921
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 49
}
}
},
@@ -3712,270 +3807,91 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1887,
- 1891
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 8
- },
- "end": {
- "line": 54,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1892,
- 1894
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 13
- },
- "end": {
- "line": 54,
- "column": 15
- }
- }
- },
- "range": [
- 1887,
- 1894
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 8
- },
- "end": {
- "line": 54,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 1895,
- 1898
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 16
- },
- "end": {
- "line": 54,
- "column": 19
- }
- }
- },
- "range": [
- 1887,
- 1898
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 8
- },
- "end": {
- "line": 54,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onSlcChange",
- "range": [
- 1899,
- 1910
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 20
- },
- "end": {
- "line": 54,
- "column": 31
- }
- }
- },
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 1887,
- 1910
+ 1930,
+ 1932
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 8
},
"end": {
- "line": 54,
- "column": 31
+ "line": 55,
+ "column": 10
}
}
},
"property": {
"type": "Identifier",
- "name": "call",
+ "name": "filter",
"range": [
- 1911,
- 1915
+ 1933,
+ 1939
],
"loc": {
"start": {
- "line": 54,
- "column": 32
+ "line": 55,
+ "column": 11
},
"end": {
- "line": 54,
- "column": 36
+ "line": 55,
+ "column": 17
}
}
},
"range": [
- 1887,
- 1915
+ 1930,
+ 1939
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 8
},
"end": {
- "line": 54,
- "column": 36
+ "line": 55,
+ "column": 17
}
}
},
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1916,
- 1920
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 37
- },
- "end": {
- "line": 54,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1921,
- 1923
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 42
- },
- "end": {
- "line": 54,
- "column": 44
- }
- }
- },
- "range": [
- 1916,
- 1923
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 37
- },
- "end": {
- "line": 54,
- "column": 44
- }
- }
- },
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 1925,
- 1928
- ],
- "loc": {
- "start": {
- "line": 54,
- "column": 46
- },
- "end": {
- "line": 54,
- "column": 49
- }
- }
- }
- ],
+ "arguments": [],
"range": [
- 1887,
- 1929
+ 1930,
+ 1941
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 8
},
"end": {
- "line": 54,
- "column": 50
+ "line": 55,
+ "column": 19
}
}
},
"range": [
- 1887,
- 1930
+ 1930,
+ 1942
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 8
},
"end": {
- "line": 54,
- "column": 51
+ "line": 55,
+ "column": 20
}
}
}
],
"range": [
- 1730,
- 1936
+ 1762,
+ 1948
],
"loc": {
"start": {
@@ -3983,7 +3899,7 @@
"column": 17
},
"end": {
- "line": 55,
+ "line": 56,
"column": 5
}
}
@@ -3991,8 +3907,8 @@
"generator": false,
"expression": false,
"range": [
- 1725,
- 1936
+ 1757,
+ 1948
],
"loc": {
"start": {
@@ -4000,7 +3916,7 @@
"column": 12
},
"end": {
- "line": 55,
+ "line": 56,
"column": 5
}
}
@@ -4008,8 +3924,8 @@
"kind": "method",
"computed": false,
"range": [
- 1717,
- 1936
+ 1749,
+ 1948
],
"loc": {
"start": {
@@ -4017,30 +3933,10 @@
"column": 4
},
"end": {
- "line": 55,
+ "line": 56,
"column": 5
}
},
- "leadingComments": [
- {
- "type": "Line",
- "value": " TODO: move event here",
- "range": [
- 1688,
- 1712
- ],
- "loc": {
- "start": {
- "line": 49,
- "column": 4
- },
- "end": {
- "line": 49,
- "column": 28
- }
- }
- }
- ],
"static": false
},
{
@@ -4049,16 +3945,16 @@
"type": "Identifier",
"name": "optionClick",
"range": [
- 1942,
- 1953
+ 1954,
+ 1965
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 4
},
"end": {
- "line": 57,
+ "line": 58,
"column": 15
}
}
@@ -4071,16 +3967,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 1954,
- 1957
+ 1966,
+ 1969
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 16
},
"end": {
- "line": 57,
+ "line": 58,
"column": 19
}
}
@@ -4099,16 +3995,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1968,
- 1972
+ 1980,
+ 1984
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 12
}
}
@@ -4117,31 +4013,31 @@
"type": "Identifier",
"name": "setCheckListValues",
"range": [
- 1973,
- 1991
+ 1985,
+ 2003
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 13
},
"end": {
- "line": 58,
+ "line": 59,
"column": 31
}
}
},
"range": [
- 1968,
- 1991
+ 1980,
+ 2003
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 31
}
}
@@ -4154,16 +4050,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 1992,
- 1995
+ 2004,
+ 2007
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 32
},
"end": {
- "line": 58,
+ "line": 59,
"column": 35
}
}
@@ -4172,62 +4068,62 @@
"type": "Identifier",
"name": "target",
"range": [
- 1996,
- 2002
+ 2008,
+ 2014
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 36
},
"end": {
- "line": 58,
+ "line": 59,
"column": 42
}
}
},
"range": [
- 1992,
- 2002
+ 2004,
+ 2014
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 32
},
"end": {
- "line": 58,
+ "line": 59,
"column": 42
}
}
}
],
"range": [
- 1968,
- 2003
+ 1980,
+ 2015
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 43
}
}
},
"range": [
- 1968,
- 2004
+ 1980,
+ 2016
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 44
}
}
@@ -4242,16 +4138,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2013,
- 2017
+ 2025,
+ 2029
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 8
},
"end": {
- "line": 59,
+ "line": 60,
"column": 12
}
}
@@ -4260,31 +4156,31 @@
"type": "Identifier",
"name": "onChange",
"range": [
- 2018,
- 2026
+ 2030,
+ 2038
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 13
},
"end": {
- "line": 59,
+ "line": 60,
"column": 21
}
}
},
"range": [
- 2013,
- 2026
+ 2025,
+ 2038
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 8
},
"end": {
- "line": 59,
+ "line": 60,
"column": 21
}
}
@@ -4294,63 +4190,63 @@
"type": "Identifier",
"name": "evt",
"range": [
- 2027,
- 2030
+ 2039,
+ 2042
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 22
},
"end": {
- "line": 59,
+ "line": 60,
"column": 25
}
}
}
],
"range": [
- 2013,
- 2031
+ 2025,
+ 2043
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 8
},
"end": {
- "line": 59,
+ "line": 60,
"column": 26
}
}
},
"range": [
- 2013,
- 2032
+ 2025,
+ 2044
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 8
},
"end": {
- "line": 59,
+ "line": 60,
"column": 27
}
}
}
],
"range": [
- 1958,
- 2038
+ 1970,
+ 2050
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 20
},
"end": {
- "line": 60,
+ "line": 61,
"column": 5
}
}
@@ -4358,16 +4254,16 @@
"generator": false,
"expression": false,
"range": [
- 1953,
- 2038
+ 1965,
+ 2050
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 15
},
"end": {
- "line": 60,
+ "line": 61,
"column": 5
}
}
@@ -4375,34 +4271,1205 @@
"kind": "method",
"computed": false,
"range": [
- 1942,
- 2038
+ 1954,
+ 2050
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 4
},
"end": {
- "line": 60,
+ "line": 61,
+ "column": 5
+ }
+ },
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "onCheckListClick",
+ "range": [
+ 2056,
+ 2072
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 4
+ },
+ "end": {
+ "line": 63,
+ "column": 20
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 2073,
+ 2076
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 21
+ },
+ "end": {
+ "line": 63,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 2091,
+ 2094
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 12
+ },
+ "end": {
+ "line": 64,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 2097,
+ 2102
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 18
+ },
+ "end": {
+ "line": 64,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "target",
+ "range": [
+ 2103,
+ 2109
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 24
+ },
+ "end": {
+ "line": 64,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2097,
+ 2109
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 18
+ },
+ "end": {
+ "line": 64,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 2110,
+ 2113
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 31
+ },
+ "end": {
+ "line": 64,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 2097,
+ 2114
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 18
+ },
+ "end": {
+ "line": 64,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2091,
+ 2114
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 12
+ },
+ "end": {
+ "line": 64,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2087,
+ 2115
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 36
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2127,
+ 2131
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 11
+ },
+ "end": {
+ "line": 65,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2132,
+ 2134
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 16
+ },
+ "end": {
+ "line": 65,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2127,
+ 2134
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 11
+ },
+ "end": {
+ "line": 65,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 2135,
+ 2150
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 19
+ },
+ "end": {
+ "line": 65,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2127,
+ 2150
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 11
+ },
+ "end": {
+ "line": 65,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 2154,
+ 2157
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 38
+ },
+ "end": {
+ "line": 65,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 2158,
+ 2170
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 42
+ },
+ "end": {
+ "line": 65,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 2154,
+ 2170
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 38
+ },
+ "end": {
+ "line": 65,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "filled",
+ "raw": "'filled'",
+ "range": [
+ 2171,
+ 2179
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 55
+ },
+ "end": {
+ "line": 65,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 2154,
+ 2180
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 38
+ },
+ "end": {
+ "line": 65,
+ "column": 64
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "0",
+ "raw": "'0'",
+ "range": [
+ 2185,
+ 2188
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 69
+ },
+ "end": {
+ "line": 65,
+ "column": 72
+ }
+ }
+ },
+ "range": [
+ 2154,
+ 2188
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 38
+ },
+ "end": {
+ "line": 65,
+ "column": 72
+ }
+ }
+ },
+ "range": [
+ 2127,
+ 2188
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 11
+ },
+ "end": {
+ "line": 65,
+ "column": 72
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "ct",
+ "range": [
+ 2207,
+ 2209
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 16
+ },
+ "end": {
+ "line": 66,
+ "column": 18
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 2212,
+ 2215
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 21
+ },
+ "end": {
+ "line": 66,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 2216,
+ 2228
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 25
+ },
+ "end": {
+ "line": 66,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 2212,
+ 2228
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 21
+ },
+ "end": {
+ "line": 66,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
+ "range": [
+ 2229,
+ 2233
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 38
+ },
+ "end": {
+ "line": 66,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 2212,
+ 2234
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 21
+ },
+ "end": {
+ "line": 66,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 2207,
+ 2234
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 16
+ },
+ "end": {
+ "line": 66,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2203,
+ 2235
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 12
+ },
+ "end": {
+ "line": 66,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "div",
+ "range": [
+ 2252,
+ 2255
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 16
+ },
+ "end": {
+ "line": 67,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2258,
+ 2262
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 22
+ },
+ "end": {
+ "line": 67,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkListDiv",
+ "range": [
+ 2263,
+ 2275
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 27
+ },
+ "end": {
+ "line": 67,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 2258,
+ 2275
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 22
+ },
+ "end": {
+ "line": 67,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "ct",
+ "range": [
+ 2276,
+ 2278
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 40
+ },
+ "end": {
+ "line": 67,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2258,
+ 2279
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 22
+ },
+ "end": {
+ "line": 67,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 2252,
+ 2279
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 16
+ },
+ "end": {
+ "line": 67,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2248,
+ 2280
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 12
+ },
+ "end": {
+ "line": 67,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2293,
+ 2297
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 2298,
+ 2303
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 17
+ },
+ "end": {
+ "line": 68,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 2293,
+ 2303
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "ct",
+ "range": [
+ 2304,
+ 2306
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 23
+ },
+ "end": {
+ "line": 68,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "range": [
+ 2293,
+ 2307
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2293,
+ 2308
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 27
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 2321,
+ 2326
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 17
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remove",
+ "range": [
+ 2327,
+ 2333
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 18
+ },
+ "end": {
+ "line": 69,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 2321,
+ 2333
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "div",
+ "range": [
+ 2334,
+ 2337
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 25
+ },
+ "end": {
+ "line": 69,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "click",
+ "raw": "'click'",
+ "range": [
+ 2339,
+ 2346
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 30
+ },
+ "end": {
+ "line": 69,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 2349,
+ 2352
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 40
+ },
+ "end": {
+ "line": 69,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2356,
+ 2360
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 47
+ },
+ "end": {
+ "line": 69,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onCheckListClick",
+ "range": [
+ 2361,
+ 2377
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 52
+ },
+ "end": {
+ "line": 69,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 2356,
+ 2377
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 47
+ },
+ "end": {
+ "line": 69,
+ "column": 68
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 2378,
+ 2381
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 69
+ },
+ "end": {
+ "line": 69,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 2356,
+ 2382
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 47
+ },
+ "end": {
+ "line": 69,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2348,
+ 2382
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 39
+ },
+ "end": {
+ "line": 69,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 2321,
+ 2383
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 2321,
+ 2384
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 12
+ },
+ "end": {
+ "line": 69,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 2189,
+ 2394
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 73
+ },
+ "end": {
+ "line": 70,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 2124,
+ 2394
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 8
+ },
+ "end": {
+ "line": 70,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 2077,
+ 2400
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 25
+ },
+ "end": {
+ "line": 71,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 2072,
+ 2400
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 20
+ },
+ "end": {
+ "line": 71,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 2056,
+ 2400
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 4
+ },
+ "end": {
+ "line": 71,
"column": 5
}
},
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Build checklist UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
+ "value": "*\n * Initialize checklist filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
"range": [
- 2044,
- 2268
+ 2406,
+ 2637
],
"loc": {
"start": {
- "line": 62,
+ "line": 73,
"column": 4
},
"end": {
- "line": 67,
+ "line": 78,
"column": 7
}
}
@@ -4414,19 +5481,19 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "build",
+ "name": "init",
"range": [
- 2273,
- 2278
+ 2642,
+ 2646
],
"loc": {
"start": {
- "line": 68,
+ "line": 79,
"column": 4
},
"end": {
- "line": 68,
- "column": 9
+ "line": 79,
+ "column": 8
}
}
},
@@ -4438,17 +5505,17 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2279,
- 2287
+ 2647,
+ 2655
],
"loc": {
"start": {
- "line": 68,
- "column": 10
+ "line": 79,
+ "column": 9
},
"end": {
- "line": 68,
- "column": 18
+ "line": 79,
+ "column": 17
}
}
},
@@ -4456,34 +5523,34 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2289,
- 2299
+ 2657,
+ 2667
],
"loc": {
"start": {
- "line": 68,
- "column": 20
+ "line": 79,
+ "column": 19
},
"end": {
- "line": 68,
- "column": 30
+ "line": 79,
+ "column": 29
}
}
},
{
"type": "Identifier",
- "name": "extFltId",
+ "name": "container",
"range": [
- 2301,
- 2309
+ 2669,
+ 2678
],
"loc": {
"start": {
- "line": 68,
- "column": 32
+ "line": 79,
+ "column": 31
},
"end": {
- "line": 68,
+ "line": 79,
"column": 40
}
}
@@ -4501,16 +5568,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2324,
- 2326
+ 2693,
+ 2695
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 12
},
"end": {
- "line": 69,
+ "line": 80,
"column": 14
}
}
@@ -4521,16 +5588,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2329,
- 2333
+ 2698,
+ 2702
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 17
},
"end": {
- "line": 69,
+ "line": 80,
"column": 21
}
}
@@ -4539,67 +5606,1592 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2334,
- 2336
+ 2703,
+ 2705
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 22
},
"end": {
- "line": 69,
+ "line": 80,
"column": 24
}
}
},
"range": [
- 2329,
- 2336
+ 2698,
+ 2705
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 17
},
"end": {
- "line": 69,
+ "line": 80,
"column": 24
}
}
},
"range": [
- 2324,
- 2336
+ 2693,
+ 2705
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 12
},
"end": {
- "line": 69,
+ "line": 80,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2320,
- 2337
+ 2689,
+ 2706
],
"loc": {
"start": {
- "line": 69,
+ "line": 80,
"column": 8
},
"end": {
- "line": 69,
+ "line": 80,
"column": 25
}
}
},
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 2719,
+ 2735
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 12
+ },
+ "end": {
+ "line": 81,
+ "column": 28
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 2738,
+ 2748
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 31
+ },
+ "end": {
+ "line": 81,
+ "column": 41
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2763,
+ 2765
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltTgtIds",
+ "range": [
+ 2766,
+ 2783
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 15
+ },
+ "end": {
+ "line": 82,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2763,
+ 2783
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2784,
+ 2792
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 33
+ },
+ "end": {
+ "line": 82,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 2763,
+ 2793
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 42
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 2796,
+ 2800
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 45
+ },
+ "end": {
+ "line": 82,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 2738,
+ 2800
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 31
+ },
+ "end": {
+ "line": 82,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 2719,
+ 2800
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2715,
+ 2801
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 2815,
+ 2822
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 2825,
+ 2828
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 22
+ },
+ "end": {
+ "line": 84,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "create",
+ "range": [
+ 2829,
+ 2835
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 26
+ },
+ "end": {
+ "line": 84,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2825,
+ 2835
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 22
+ },
+ "end": {
+ "line": 84,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "div",
+ "raw": "'div'",
+ "range": [
+ 2836,
+ 2841
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 33
+ },
+ "end": {
+ "line": 84,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
+ "range": [
+ 2856,
+ 2860
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 13
+ },
+ "end": {
+ "line": 85,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2862,
+ 2866
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 19
+ },
+ "end": {
+ "line": 85,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCheckListDiv",
+ "range": [
+ 2867,
+ 2883
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 24
+ },
+ "end": {
+ "line": 85,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 2862,
+ 2883
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 19
+ },
+ "end": {
+ "line": 85,
+ "column": 40
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2884,
+ 2892
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 41
+ },
+ "end": {
+ "line": 85,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 2862,
+ 2892
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 19
+ },
+ "end": {
+ "line": 85,
+ "column": 49
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "_",
+ "raw": "'_'",
+ "range": [
+ 2893,
+ 2896
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 50
+ },
+ "end": {
+ "line": 85,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2862,
+ 2896
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 19
+ },
+ "end": {
+ "line": 85,
+ "column": 53
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2897,
+ 2899
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 54
+ },
+ "end": {
+ "line": 85,
+ "column": 56
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 2900,
+ 2902
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 57
+ },
+ "end": {
+ "line": 85,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 2897,
+ 2902
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 54
+ },
+ "end": {
+ "line": 85,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 2862,
+ 2902
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 19
+ },
+ "end": {
+ "line": 85,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 2855,
+ 2903
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
+ "range": [
+ 2918,
+ 2922
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 13
+ },
+ "end": {
+ "line": 86,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2924,
+ 2932
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 19
+ },
+ "end": {
+ "line": 86,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "range": [
+ 2917,
+ 2933
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 12
+ },
+ "end": {
+ "line": 86,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filled",
+ "raw": "'filled'",
+ "range": [
+ 2936,
+ 2944
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 31
+ },
+ "end": {
+ "line": 86,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "0",
+ "raw": "'0'",
+ "range": [
+ 2946,
+ 2949
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 41
+ },
+ "end": {
+ "line": 86,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 2935,
+ 2950
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 30
+ },
+ "end": {
+ "line": 86,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 2825,
+ 2951
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 22
+ },
+ "end": {
+ "line": 86,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 2815,
+ 2951
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 86,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2811,
+ 2952
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 8
+ },
+ "end": {
+ "line": 86,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 2961,
+ 2968
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 8
+ },
+ "end": {
+ "line": 87,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "className",
+ "range": [
+ 2969,
+ 2978
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 16
+ },
+ "end": {
+ "line": 87,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 2961,
+ 2978
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 8
+ },
+ "end": {
+ "line": 87,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2981,
+ 2985
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 28
+ },
+ "end": {
+ "line": 87,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkListDivCssClass",
+ "range": [
+ 2986,
+ 3006
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 33
+ },
+ "end": {
+ "line": 87,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2981,
+ 3006
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 28
+ },
+ "end": {
+ "line": 87,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2961,
+ 3006
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 8
+ },
+ "end": {
+ "line": 87,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2961,
+ 3007
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 8
+ },
+ "end": {
+ "line": 87,
+ "column": 54
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in desired element",
+ "range": [
+ 3017,
+ 3056
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 8
+ },
+ "end": {
+ "line": 89,
+ "column": 47
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 3068,
+ 3084
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 11
+ },
+ "end": {
+ "line": 90,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 3099,
+ 3102
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 3103,
+ 3105
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 16
+ },
+ "end": {
+ "line": 91,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 3099,
+ 3105
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 3106,
+ 3122
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 19
+ },
+ "end": {
+ "line": 91,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 3099,
+ 3123
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 3124,
+ 3135
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 37
+ },
+ "end": {
+ "line": 91,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 3099,
+ 3135
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3136,
+ 3143
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 49
+ },
+ "end": {
+ "line": 91,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 3099,
+ 3144
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 3099,
+ 3145
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 12
+ },
+ "end": {
+ "line": 91,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3158,
+ 3160
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltEls",
+ "range": [
+ 3161,
+ 3175
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 15
+ },
+ "end": {
+ "line": 92,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3158,
+ 3175
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 3176,
+ 3180
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 30
+ },
+ "end": {
+ "line": 92,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 3158,
+ 3180
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 34
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3181,
+ 3188
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 35
+ },
+ "end": {
+ "line": 92,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 3158,
+ 3189
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 3158,
+ 3190
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 3085,
+ 3200
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 28
+ },
+ "end": {
+ "line": 93,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 3220,
+ 3229
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 12
+ },
+ "end": {
+ "line": 94,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 3230,
+ 3241
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 22
+ },
+ "end": {
+ "line": 94,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 3220,
+ 3241
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 12
+ },
+ "end": {
+ "line": 94,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3242,
+ 3249
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 34
+ },
+ "end": {
+ "line": 94,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 3220,
+ 3250
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 12
+ },
+ "end": {
+ "line": 94,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 3220,
+ 3251
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 12
+ },
+ "end": {
+ "line": 94,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 3206,
+ 3261
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 15
+ },
+ "end": {
+ "line": 95,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3065,
+ 3261
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 95,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in desired element",
+ "range": [
+ 3017,
+ 3056
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 8
+ },
+ "end": {
+ "line": 89,
+ "column": 47
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3271,
+ 3275
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 8
+ },
+ "end": {
+ "line": 97,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkListDiv",
+ "range": [
+ 3276,
+ 3288
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 13
+ },
+ "end": {
+ "line": 97,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 3271,
+ 3288
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 8
+ },
+ "end": {
+ "line": 97,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3289,
+ 3297
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 26
+ },
+ "end": {
+ "line": 97,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 3271,
+ 3298
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 8
+ },
+ "end": {
+ "line": 97,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3301,
+ 3308
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 38
+ },
+ "end": {
+ "line": 97,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 3271,
+ 3308
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 8
+ },
+ "end": {
+ "line": 97,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 3271,
+ 3309
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 8
+ },
+ "end": {
+ "line": 97,
+ "column": 46
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -4608,416 +7200,1844 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 2346,
- 2348
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 8
- },
- "end": {
- "line": 70,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 2349,
- 2359
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 11
- },
- "end": {
- "line": 70,
- "column": 21
- }
- }
- },
- "range": [
- 2346,
- 2359
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 8
- },
- "end": {
- "line": 70,
- "column": 21
- }
- }
- },
- "arguments": [
- {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 2373,
- 2375
- ],
- "loc": {
- "start": {
- "line": 71,
- "column": 12
- },
- "end": {
- "line": 71,
- "column": 14
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 2376,
- 2379
- ],
- "loc": {
- "start": {
- "line": 71,
- "column": 15
- },
- "end": {
- "line": 71,
- "column": 18
- }
- }
- },
- "range": [
- 2373,
- 2379
- ],
- "loc": {
- "start": {
- "line": 71,
- "column": 12
- },
- "end": {
- "line": 71,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 2380,
- 2384
- ],
- "loc": {
- "start": {
- "line": 71,
- "column": 19
- },
- "end": {
- "line": 71,
- "column": 23
- }
- }
- },
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 2373,
- 2384
+ 3318,
+ 3320
],
"loc": {
"start": {
- "line": 71,
- "column": 12
+ "line": 98,
+ "column": 8
},
"end": {
- "line": 71,
- "column": 23
+ "line": 98,
+ "column": 10
}
}
},
"property": {
"type": "Identifier",
- "name": "checklist",
+ "name": "fltIds",
"range": [
- 2385,
- 2394
+ 3321,
+ 3327
],
"loc": {
"start": {
- "line": 71,
- "column": 24
+ "line": 98,
+ "column": 11
},
"end": {
- "line": 71,
- "column": 33
+ "line": 98,
+ "column": 17
}
}
},
"range": [
- 2373,
- 2394
+ 3318,
+ 3327
],
"loc": {
"start": {
- "line": 71,
- "column": 12
+ "line": 98,
+ "column": 8
},
"end": {
- "line": 71,
- "column": 33
+ "line": 98,
+ "column": 17
}
}
},
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 3328,
+ 3332
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 18
+ },
+ "end": {
+ "line": 98,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 3318,
+ 3332
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 8
+ },
+ "end": {
+ "line": 98,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
{
- "type": "ObjectExpression",
- "properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcIndex",
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3333,
+ 3335
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 23
+ },
+ "end": {
+ "line": 98,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxFlt",
+ "range": [
+ 3336,
+ 3343
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 26
+ },
+ "end": {
+ "line": 98,
+ "column": 33
+ }
+ }
+ },
"range": [
- 2410,
- 2418
+ 3333,
+ 3343
],
"loc": {
"start": {
- "line": 72,
- "column": 14
+ "line": 98,
+ "column": 23
},
"end": {
- "line": 72,
+ "line": 98,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3344,
+ 3352
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 34
+ },
+ "end": {
+ "line": 98,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 3333,
+ 3352
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 23
+ },
+ "end": {
+ "line": 98,
+ "column": 42
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "_",
+ "raw": "'_'",
+ "range": [
+ 3353,
+ 3356
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 43
+ },
+ "end": {
+ "line": 98,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 3333,
+ 3356
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 23
+ },
+ "end": {
+ "line": 98,
+ "column": 46
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3357,
+ 3359
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 47
+ },
+ "end": {
+ "line": 98,
+ "column": 49
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 3360,
+ 3362
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 50
+ },
+ "end": {
+ "line": 98,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 3357,
+ 3362
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 47
+ },
+ "end": {
+ "line": 98,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 3333,
+ 3362
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 23
+ },
+ "end": {
+ "line": 98,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 3318,
+ 3363
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 8
+ },
+ "end": {
+ "line": 98,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 3318,
+ 3364
+ ],
+ "loc": {
+ "start": {
+ "line": 98,
+ "column": 8
+ },
+ "end": {
+ "line": 98,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3378,
+ 3380
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 12
+ },
+ "end": {
+ "line": 100,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 3381,
+ 3396
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 15
+ },
+ "end": {
+ "line": 100,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 3378,
+ 3396
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 12
+ },
+ "end": {
+ "line": 100,
+ "column": 30
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 3377,
+ 3396
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 11
+ },
+ "end": {
+ "line": 100,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3411,
+ 3415
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 12
+ },
+ "end": {
+ "line": 101,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 3416,
+ 3421
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 17
+ },
+ "end": {
+ "line": 101,
"column": 22
}
}
},
- "value": {
+ "range": [
+ 3411,
+ 3421
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 12
+ },
+ "end": {
+ "line": 101,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
"type": "Identifier",
"name": "colIndex",
"range": [
- 2419,
- 2427
+ 3422,
+ 3430
],
"loc": {
"start": {
- "line": 72,
+ "line": 101,
"column": 23
},
"end": {
- "line": 72,
+ "line": 101,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "range": [
+ 3411,
+ 3431
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 12
+ },
+ "end": {
+ "line": 101,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 3411,
+ 3432
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 12
+ },
+ "end": {
+ "line": 101,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 3397,
+ 3442
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 31
+ },
+ "end": {
+ "line": 102,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 3462,
+ 3467
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 12
+ },
+ "end": {
+ "line": 103,
+ "column": 17
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 3468,
+ 3471
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 18
+ },
+ "end": {
+ "line": 103,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 3462,
+ 3471
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 12
+ },
+ "end": {
+ "line": 103,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3472,
+ 3479
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 22
+ },
+ "end": {
+ "line": 103,
+ "column": 29
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "click",
+ "raw": "'click'",
+ "range": [
+ 3481,
+ 3488
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 31
+ },
+ "end": {
+ "line": 103,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 3491,
+ 3494
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 41
+ },
+ "end": {
+ "line": 103,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3498,
+ 3502
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 48
+ },
+ "end": {
+ "line": 103,
+ "column": 52
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onCheckListClick",
+ "range": [
+ 3503,
+ 3519
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 53
+ },
+ "end": {
+ "line": 103,
+ "column": 69
+ }
+ }
+ },
+ "range": [
+ 3498,
+ 3519
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 48
+ },
+ "end": {
+ "line": 103,
+ "column": 69
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 3520,
+ 3523
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 70
+ },
+ "end": {
+ "line": 103,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 3498,
+ 3524
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 48
+ },
+ "end": {
+ "line": 103,
+ "column": 74
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3490,
+ 3524
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 40
+ },
+ "end": {
+ "line": 103,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 3462,
+ 3525
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 12
+ },
+ "end": {
+ "line": 103,
+ "column": 75
+ }
+ }
+ },
+ "range": [
+ 3462,
+ 3526
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 12
+ },
+ "end": {
+ "line": 103,
+ "column": 76
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "divCont",
+ "range": [
+ 3539,
+ 3546
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 3547,
+ 3558
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 20
+ },
+ "end": {
+ "line": 104,
"column": 31
}
}
},
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
"range": [
- 2410,
- 2427
+ 3539,
+ 3558
],
"loc": {
"start": {
- "line": 72,
- "column": 14
+ "line": 104,
+ "column": 12
},
"end": {
- "line": 72,
+ "line": 104,
"column": 31
}
}
},
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 2429,
- 2440
- ],
- "loc": {
- "start": {
- "line": 72,
- "column": 33
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 3559,
+ 3562
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 32
+ },
+ "end": {
+ "line": 104,
+ "column": 35
+ }
+ }
},
- "end": {
- "line": 72,
- "column": 44
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "isExternal",
- "range": [
- 2441,
- 2451
- ],
- "loc": {
- "start": {
- "line": 72,
- "column": 45
+ "property": {
+ "type": "Identifier",
+ "name": "text",
+ "range": [
+ 3563,
+ 3567
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 36
+ },
+ "end": {
+ "line": 104,
+ "column": 40
+ }
+ }
},
- "end": {
- "line": 72,
- "column": 55
+ "range": [
+ 3559,
+ 3567
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 32
+ },
+ "end": {
+ "line": 104,
+ "column": 40
+ }
}
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 2429,
- 2451
- ],
- "loc": {
- "start": {
- "line": 72,
- "column": 33
},
- "end": {
- "line": 72,
- "column": 55
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3568,
+ 3572
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 41
+ },
+ "end": {
+ "line": 104,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activateCheckListTxt",
+ "range": [
+ 3573,
+ 3593
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 46
+ },
+ "end": {
+ "line": 104,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 3568,
+ 3593
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 41
+ },
+ "end": {
+ "line": 104,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 3559,
+ 3594
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 32
+ },
+ "end": {
+ "line": 104,
+ "column": 67
+ }
}
}
+ ],
+ "range": [
+ 3539,
+ 3595
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 3539,
+ 3596
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
},
+ "end": {
+ "line": 104,
+ "column": 69
+ }
+ }
+ }
+ ],
+ "range": [
+ 3448,
+ 3606
+ ],
+ "loc": {
+ "start": {
+ "line": 102,
+ "column": 15
+ },
+ "end": {
+ "line": 105,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3374,
+ 3606
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 8
+ },
+ "end": {
+ "line": 105,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3616,
+ 3620
+ ],
+ "loc": {
+ "start": {
+ "line": 107,
+ "column": 8
+ },
+ "end": {
+ "line": 107,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3621,
+ 3628
+ ],
+ "loc": {
+ "start": {
+ "line": 107,
+ "column": 13
+ },
+ "end": {
+ "line": 107,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3616,
+ 3628
+ ],
+ "loc": {
+ "start": {
+ "line": 107,
+ "column": 8
+ },
+ "end": {
+ "line": 107,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3629,
+ 3631
+ ],
+ "loc": {
+ "start": {
+ "line": 107,
+ "column": 21
+ },
+ "end": {
+ "line": 107,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3616,
+ 3631
+ ],
+ "loc": {
+ "start": {
+ "line": 107,
+ "column": 8
+ },
+ "end": {
+ "line": 107,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
{
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 2453,
- 2458
- ],
- "loc": {
- "start": {
- "line": 72,
- "column": 57
- },
- "end": {
- "line": 72,
- "column": 62
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "extFltId",
- "range": [
- 2459,
- 2467
- ],
- "loc": {
- "start": {
- "line": 72,
- "column": 63
- },
- "end": {
- "line": 72,
- "column": 71
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
+ "type": "Literal",
+ "value": "build-checklist-filter",
+ "raw": "'build-checklist-filter'",
"range": [
- 2453,
- 2467
+ 3646,
+ 3670
],
"loc": {
"start": {
- "line": 72,
- "column": 57
+ "line": 108,
+ "column": 13
},
"end": {
- "line": 72,
- "column": 71
+ "line": 108,
+ "column": 37
}
}
}
],
"range": [
- 2408,
- 2469
+ 3645,
+ 3671
],
"loc": {
"start": {
- "line": 72,
+ "line": 108,
"column": 12
},
"end": {
- "line": 72,
+ "line": 108,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3686,
+ 3688
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 13
+ },
+ "end": {
+ "line": 109,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3690,
+ 3698
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 17
+ },
+ "end": {
+ "line": 109,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 3700,
+ 3710
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 27
+ },
+ "end": {
+ "line": 109,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3714,
+ 3718
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 41
+ },
+ "end": {
+ "line": 109,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 3719,
+ 3724
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 46
+ },
+ "end": {
+ "line": 109,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 3714,
+ 3724
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 41
+ },
+ "end": {
+ "line": 109,
+ "column": 51
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3725,
+ 3733
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 52
+ },
+ "end": {
+ "line": 109,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 3735,
+ 3745
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 62
+ },
+ "end": {
+ "line": 109,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 3714,
+ 3746
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 41
+ },
+ "end": {
+ "line": 109,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3685,
+ 3746
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 12
+ },
+ "end": {
+ "line": 109,
"column": 73
}
}
}
],
"range": [
- 2346,
- 2479
+ 3616,
+ 3756
],
"loc": {
"start": {
- "line": 70,
+ "line": 107,
"column": 8
},
"end": {
- "line": 73,
+ "line": 110,
"column": 9
}
}
},
"range": [
- 2346,
- 2480
+ 3616,
+ 3757
],
"loc": {
"start": {
- "line": 70,
+ "line": 107,
"column": 8
},
"end": {
- "line": 73,
+ "line": 110,
"column": 10
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3767,
+ 3771
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3772,
+ 3779
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 13
+ },
+ "end": {
+ "line": 112,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3767,
+ 3779
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3780,
+ 3782
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 21
+ },
+ "end": {
+ "line": 112,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3767,
+ 3782
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "select-checklist-options",
+ "raw": "'select-checklist-options'",
+ "range": [
+ 3797,
+ 3823
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 13
+ },
+ "end": {
+ "line": 113,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 3796,
+ 3824
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 12
+ },
+ "end": {
+ "line": 113,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3839,
+ 3841
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 13
+ },
+ "end": {
+ "line": 114,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3843,
+ 3851
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 17
+ },
+ "end": {
+ "line": 114,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 3853,
+ 3859
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 27
+ },
+ "end": {
+ "line": 114,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3863,
+ 3867
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 37
+ },
+ "end": {
+ "line": 114,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 3868,
+ 3881
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 42
+ },
+ "end": {
+ "line": 114,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 3863,
+ 3881
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 37
+ },
+ "end": {
+ "line": 114,
+ "column": 55
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3882,
+ 3890
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 56
+ },
+ "end": {
+ "line": 114,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 3892,
+ 3898
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 66
+ },
+ "end": {
+ "line": 114,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 3863,
+ 3899
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 37
+ },
+ "end": {
+ "line": 114,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3838,
+ 3899
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 12
+ },
+ "end": {
+ "line": 114,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 3767,
+ 3909
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3767,
+ 3910
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3920,
+ 3924
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 3925,
+ 3936
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 13
+ },
+ "end": {
+ "line": 117,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3920,
+ 3936
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 3939,
+ 3943
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 27
+ },
+ "end": {
+ "line": 117,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3920,
+ 3943
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3920,
+ 3944
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 32
+ }
+ }
}
],
"range": [
- 2310,
- 2486
+ 2679,
+ 3950
],
"loc": {
"start": {
- "line": 68,
+ "line": 79,
"column": 41
},
"end": {
- "line": 74,
+ "line": 118,
"column": 5
}
}
@@ -5025,16 +9045,16 @@
"generator": false,
"expression": false,
"range": [
- 2278,
- 2486
+ 2646,
+ 3950
],
"loc": {
"start": {
- "line": 68,
- "column": 9
+ "line": 79,
+ "column": 8
},
"end": {
- "line": 74,
+ "line": 118,
"column": 5
}
}
@@ -5042,34 +9062,34 @@
"kind": "method",
"computed": false,
"range": [
- 2273,
- 2486
+ 2642,
+ 3950
],
"loc": {
"start": {
- "line": 68,
+ "line": 79,
"column": 4
},
"end": {
- "line": 74,
+ "line": 118,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Build checklist UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
+ "value": "*\n * Initialize checklist filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
"range": [
- 2044,
- 2268
+ 2406,
+ 2637
],
"loc": {
"start": {
- "line": 62,
+ "line": 73,
"column": 4
},
"end": {
- "line": 67,
+ "line": 78,
"column": 7
}
}
@@ -5080,16 +9100,16 @@
"type": "Block",
"value": "*\n * Build checklist UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
"range": [
- 2492,
- 2701
+ 3956,
+ 4165
],
"loc": {
"start": {
- "line": 76,
+ "line": 120,
"column": 4
},
"end": {
- "line": 81,
+ "line": 125,
"column": 7
}
}
@@ -5101,19 +9121,19 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "_build",
+ "name": "build",
"range": [
- 2706,
- 2712
+ 4170,
+ 4175
],
"loc": {
"start": {
- "line": 82,
+ "line": 126,
"column": 4
},
"end": {
- "line": 82,
- "column": 10
+ "line": 126,
+ "column": 9
}
}
},
@@ -5125,17 +9145,17 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2713,
- 2721
+ 4176,
+ 4184
],
"loc": {
"start": {
- "line": 82,
- "column": 11
+ "line": 126,
+ "column": 10
},
"end": {
- "line": 82,
- "column": 19
+ "line": 126,
+ "column": 18
}
}
},
@@ -5145,17 +9165,17 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2723,
- 2733
+ 4186,
+ 4196
],
"loc": {
"start": {
- "line": 82,
- "column": 21
+ "line": 126,
+ "column": 20
},
"end": {
- "line": 82,
- "column": 31
+ "line": 126,
+ "column": 30
}
}
},
@@ -5164,32 +9184,32 @@
"value": false,
"raw": "false",
"range": [
- 2734,
- 2739
+ 4197,
+ 4202
],
"loc": {
"start": {
- "line": 82,
- "column": 32
+ "line": 126,
+ "column": 31
},
"end": {
- "line": 82,
- "column": 37
+ "line": 126,
+ "column": 36
}
}
},
"range": [
- 2723,
- 2739
+ 4186,
+ 4202
],
"loc": {
"start": {
- "line": 82,
- "column": 21
+ "line": 126,
+ "column": 20
},
"end": {
- "line": 82,
- "column": 37
+ "line": 126,
+ "column": 36
}
}
},
@@ -5199,17 +9219,17 @@
"type": "Identifier",
"name": "extFltId",
"range": [
- 2741,
- 2749
+ 4204,
+ 4212
],
"loc": {
"start": {
- "line": 82,
- "column": 39
+ "line": 126,
+ "column": 38
},
"end": {
- "line": 82,
- "column": 47
+ "line": 126,
+ "column": 46
}
}
},
@@ -5218,32 +9238,32 @@
"value": null,
"raw": "null",
"range": [
- 2750,
- 2754
+ 4213,
+ 4217
],
"loc": {
"start": {
- "line": 82,
- "column": 48
+ "line": 126,
+ "column": 47
},
"end": {
- "line": 82,
- "column": 52
+ "line": 126,
+ "column": 51
}
}
},
"range": [
- 2741,
- 2754
+ 4204,
+ 4217
],
"loc": {
"start": {
- "line": 82,
- "column": 39
+ "line": 126,
+ "column": 38
},
"end": {
- "line": 82,
- "column": 52
+ "line": 126,
+ "column": 51
}
}
}
@@ -5260,16 +9280,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2769,
- 2771
+ 4232,
+ 4234
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 12
},
"end": {
- "line": 83,
+ "line": 127,
"column": 14
}
}
@@ -5280,16 +9300,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2774,
- 2778
+ 4237,
+ 4241
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 17
},
"end": {
- "line": 83,
+ "line": 127,
"column": 21
}
}
@@ -5298,63 +9318,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2779,
- 2781
+ 4242,
+ 4244
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 22
},
"end": {
- "line": 83,
+ "line": 127,
"column": 24
}
}
},
"range": [
- 2774,
- 2781
+ 4237,
+ 4244
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 17
},
"end": {
- "line": 83,
+ "line": 127,
"column": 24
}
}
},
"range": [
- 2769,
- 2781
+ 4232,
+ 4244
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 12
},
"end": {
- "line": 83,
+ "line": 127,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2765,
- 2782
+ 4228,
+ 4245
],
"loc": {
"start": {
- "line": 83,
+ "line": 127,
"column": 8
},
"end": {
- "line": 83,
+ "line": 127,
"column": 25
}
}
@@ -5368,16 +9388,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2791,
- 2799
+ 4254,
+ 4262
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 8
},
"end": {
- "line": 84,
+ "line": 128,
"column": 16
}
}
@@ -5388,16 +9408,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 2802,
- 2810
+ 4265,
+ 4273
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 19
},
"end": {
- "line": 84,
+ "line": 128,
"column": 27
}
}
@@ -5407,16 +9427,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2811,
- 2819
+ 4274,
+ 4282
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 28
},
"end": {
- "line": 84,
+ "line": 128,
"column": 36
}
}
@@ -5426,66 +9446,246 @@
"value": 10,
"raw": "10",
"range": [
- 2821,
- 2823
+ 4284,
+ 4286
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 38
},
"end": {
- "line": 84,
+ "line": 128,
"column": 40
}
}
}
],
"range": [
- 2802,
- 2824
+ 4265,
+ 4287
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 19
},
"end": {
- "line": 84,
+ "line": 128,
"column": 41
}
}
},
"range": [
- 2791,
- 2824
+ 4254,
+ 4287
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 8
},
"end": {
- "line": 84,
+ "line": 128,
"column": 41
}
}
},
"range": [
- 2791,
- 2825
+ 4254,
+ 4288
],
"loc": {
"start": {
- "line": 84,
+ "line": 128,
"column": 8
},
"end": {
- "line": 84,
+ "line": 128,
"column": 42
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4298,
+ 4302
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4303,
+ 4310
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 13
+ },
+ "end": {
+ "line": 130,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4298,
+ 4310
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 4311,
+ 4315
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 21
+ },
+ "end": {
+ "line": 130,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 4298,
+ 4315
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 4316,
+ 4342
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 26
+ },
+ "end": {
+ "line": 130,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4344,
+ 4346
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 54
+ },
+ "end": {
+ "line": 130,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4348,
+ 4356
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 58
+ },
+ "end": {
+ "line": 130,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 4298,
+ 4357
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 4298,
+ 4358
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 68
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -5497,16 +9697,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2835,
- 2839
+ 4368,
+ 4372
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 8
},
"end": {
- "line": 86,
+ "line": 132,
"column": 12
}
}
@@ -5515,31 +9715,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 2840,
- 2844
+ 4373,
+ 4377
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 13
},
"end": {
- "line": 86,
+ "line": 132,
"column": 17
}
}
},
"range": [
- 2835,
- 2844
+ 4368,
+ 4377
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 8
},
"end": {
- "line": 86,
+ "line": 132,
"column": 17
}
}
@@ -5548,46 +9748,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2847,
- 2849
+ 4380,
+ 4382
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 20
},
"end": {
- "line": 86,
+ "line": 132,
"column": 22
}
}
},
"range": [
- 2835,
- 2849
+ 4368,
+ 4382
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 8
},
"end": {
- "line": 86,
+ "line": 132,
"column": 22
}
}
},
"range": [
- 2835,
- 2850
+ 4368,
+ 4383
],
"loc": {
"start": {
- "line": 86,
+ "line": 132,
"column": 8
},
"end": {
- "line": 86,
+ "line": 132,
"column": 23
}
}
@@ -5603,16 +9803,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2859,
- 2863
+ 4392,
+ 4396
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 8
},
"end": {
- "line": 87,
+ "line": 133,
"column": 12
}
}
@@ -5621,31 +9821,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 2864,
- 2871
+ 4397,
+ 4404
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 13
},
"end": {
- "line": 87,
+ "line": 133,
"column": 20
}
}
},
"range": [
- 2859,
- 2871
+ 4392,
+ 4404
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 8
},
"end": {
- "line": 87,
+ "line": 133,
"column": 20
}
}
@@ -5654,46 +9854,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2874,
- 2876
+ 4407,
+ 4409
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 23
},
"end": {
- "line": 87,
+ "line": 133,
"column": 25
}
}
},
"range": [
- 2859,
- 2876
+ 4392,
+ 4409
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 8
},
"end": {
- "line": 87,
+ "line": 133,
"column": 25
}
}
},
"range": [
- 2859,
- 2877
+ 4392,
+ 4410
],
"loc": {
"start": {
- "line": 87,
+ "line": 133,
"column": 8
},
"end": {
- "line": 87,
+ "line": 133,
"column": 26
}
}
@@ -5707,16 +9907,16 @@
"type": "Identifier",
"name": "divFltId",
"range": [
- 2891,
- 2899
+ 4424,
+ 4432
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 12
},
"end": {
- "line": 89,
+ "line": 135,
"column": 20
}
}
@@ -5736,16 +9936,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2902,
- 2906
+ 4435,
+ 4439
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 23
},
"end": {
- "line": 89,
+ "line": 135,
"column": 27
}
}
@@ -5754,31 +9954,31 @@
"type": "Identifier",
"name": "prfxCheckListDiv",
"range": [
- 2907,
- 2923
+ 4440,
+ 4456
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 28
},
"end": {
- "line": 89,
+ "line": 135,
"column": 44
}
}
},
"range": [
- 2902,
- 2923
+ 4435,
+ 4456
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 23
},
"end": {
- "line": 89,
+ "line": 135,
"column": 44
}
}
@@ -5787,31 +9987,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2924,
- 2932
+ 4457,
+ 4465
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 45
},
"end": {
- "line": 89,
+ "line": 135,
"column": 53
}
}
},
"range": [
- 2902,
- 2932
+ 4435,
+ 4465
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 23
},
"end": {
- "line": 89,
+ "line": 135,
"column": 53
}
}
@@ -5821,31 +10021,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 2933,
- 2936
+ 4466,
+ 4469
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 54
},
"end": {
- "line": 89,
+ "line": 135,
"column": 57
}
}
},
"range": [
- 2902,
- 2936
+ 4435,
+ 4469
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 23
},
"end": {
- "line": 89,
+ "line": 135,
"column": 57
}
}
@@ -5857,16 +10057,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2937,
- 2939
+ 4470,
+ 4472
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 58
},
"end": {
- "line": 89,
+ "line": 135,
"column": 60
}
}
@@ -5875,78 +10075,78 @@
"type": "Identifier",
"name": "id",
"range": [
- 2940,
- 2942
+ 4473,
+ 4475
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 61
},
"end": {
- "line": 89,
+ "line": 135,
"column": 63
}
}
},
"range": [
- 2937,
- 2942
+ 4470,
+ 4475
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 58
},
"end": {
- "line": 89,
+ "line": 135,
"column": 63
}
}
},
"range": [
- 2902,
- 2942
+ 4435,
+ 4475
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 23
},
"end": {
- "line": 89,
+ "line": 135,
"column": 63
}
}
},
"range": [
- 2891,
- 2942
+ 4424,
+ 4475
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 12
},
"end": {
- "line": 89,
+ "line": 135,
"column": 63
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2887,
- 2943
+ 4420,
+ 4476
],
"loc": {
"start": {
- "line": 89,
+ "line": 135,
"column": 8
},
"end": {
- "line": 89,
+ "line": 135,
"column": 64
}
}
@@ -5971,16 +10171,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2957,
- 2960
+ 4490,
+ 4493
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 13
},
"end": {
- "line": 90,
+ "line": 136,
"column": 16
}
}
@@ -5989,31 +10189,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2961,
- 2963
+ 4494,
+ 4496
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 17
},
"end": {
- "line": 90,
+ "line": 136,
"column": 19
}
}
},
"range": [
- 2957,
- 2963
+ 4490,
+ 4496
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 13
},
"end": {
- "line": 90,
+ "line": 136,
"column": 19
}
}
@@ -6023,48 +10223,48 @@
"type": "Identifier",
"name": "divFltId",
"range": [
- 2964,
- 2972
+ 4497,
+ 4505
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 20
},
"end": {
- "line": 90,
+ "line": 136,
"column": 28
}
}
}
],
"range": [
- 2957,
- 2973
+ 4490,
+ 4506
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 13
},
"end": {
- "line": 90,
+ "line": 136,
"column": 29
}
}
},
"prefix": true,
"range": [
- 2956,
- 2973
+ 4489,
+ 4506
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 12
},
"end": {
- "line": 90,
+ "line": 136,
"column": 29
}
}
@@ -6076,47 +10276,47 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2978,
- 2988
+ 4511,
+ 4521
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 34
},
"end": {
- "line": 90,
+ "line": 136,
"column": 44
}
}
},
"prefix": true,
"range": [
- 2977,
- 2988
+ 4510,
+ 4521
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 33
},
"end": {
- "line": 90,
+ "line": 136,
"column": 44
}
}
},
"range": [
- 2956,
- 2988
+ 4489,
+ 4521
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 12
},
"end": {
- "line": 90,
+ "line": 136,
"column": 44
}
}
@@ -6136,16 +10336,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3007,
- 3010
+ 4540,
+ 4543
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 14
},
"end": {
- "line": 91,
+ "line": 137,
"column": 17
}
}
@@ -6154,31 +10354,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 3011,
- 3013
+ 4544,
+ 4546
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 18
},
"end": {
- "line": 91,
+ "line": 137,
"column": 20
}
}
},
"range": [
- 3007,
- 3013
+ 4540,
+ 4546
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 14
},
"end": {
- "line": 91,
+ "line": 137,
"column": 20
}
}
@@ -6188,48 +10388,48 @@
"type": "Identifier",
"name": "extFltId",
"range": [
- 3014,
- 3022
+ 4547,
+ 4555
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 21
},
"end": {
- "line": 91,
+ "line": 137,
"column": 29
}
}
}
],
"range": [
- 3007,
- 3023
+ 4540,
+ 4556
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 14
},
"end": {
- "line": 91,
+ "line": 137,
"column": 30
}
}
},
"prefix": true,
"range": [
- 3006,
- 3023
+ 4539,
+ 4556
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 13
},
"end": {
- "line": 91,
+ "line": 137,
"column": 30
}
}
@@ -6238,46 +10438,46 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 3027,
- 3037
+ 4560,
+ 4570
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 34
},
"end": {
- "line": 91,
+ "line": 137,
"column": 44
}
}
},
"range": [
- 3006,
- 3037
+ 4539,
+ 4570
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 13
},
"end": {
- "line": 91,
+ "line": 137,
"column": 44
}
}
},
"range": [
- 2955,
- 3038
+ 4488,
+ 4571
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 11
},
"end": {
- "line": 91,
+ "line": 137,
"column": 45
}
}
@@ -6289,48 +10489,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 3053,
- 3060
+ 4586,
+ 4593
],
"loc": {
"start": {
- "line": 92,
+ "line": 138,
"column": 12
},
"end": {
- "line": 92,
+ "line": 138,
"column": 19
}
}
}
],
"range": [
- 3039,
- 3070
+ 4572,
+ 4603
],
"loc": {
"start": {
- "line": 91,
+ "line": 137,
"column": 46
},
"end": {
- "line": 93,
+ "line": 139,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2952,
- 3070
+ 4485,
+ 4603
],
"loc": {
"start": {
- "line": 90,
+ "line": 136,
"column": 8
},
"end": {
- "line": 93,
+ "line": 139,
"column": 9
}
}
@@ -6344,16 +10544,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 3084,
- 3087
+ 4617,
+ 4620
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 12
},
"end": {
- "line": 95,
+ "line": 141,
"column": 15
}
}
@@ -6367,32 +10567,32 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 3091,
- 3101
+ 4624,
+ 4634
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 19
},
"end": {
- "line": 95,
+ "line": 141,
"column": 29
}
}
},
"prefix": true,
"range": [
- 3090,
- 3101
+ 4623,
+ 4634
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 18
},
"end": {
- "line": 95,
+ "line": 141,
"column": 29
}
}
@@ -6406,16 +10606,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3104,
- 3108
+ 4637,
+ 4641
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 32
},
"end": {
- "line": 95,
+ "line": 141,
"column": 36
}
}
@@ -6424,31 +10624,31 @@
"type": "Identifier",
"name": "checkListDiv",
"range": [
- 3109,
- 3121
+ 4642,
+ 4654
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 37
},
"end": {
- "line": 95,
+ "line": 141,
"column": 49
}
}
},
"range": [
- 3104,
- 3121
+ 4637,
+ 4654
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 32
},
"end": {
- "line": 95,
+ "line": 141,
"column": 49
}
}
@@ -6457,31 +10657,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 3122,
- 3130
+ 4655,
+ 4663
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 50
},
"end": {
- "line": 95,
+ "line": 141,
"column": 58
}
}
},
"range": [
- 3104,
- 3131
+ 4637,
+ 4664
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 32
},
"end": {
- "line": 95,
+ "line": 141,
"column": 59
}
}
@@ -6495,16 +10695,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3134,
- 3137
+ 4667,
+ 4670
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 62
},
"end": {
- "line": 95,
+ "line": 141,
"column": 65
}
}
@@ -6513,31 +10713,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 3138,
- 3140
+ 4671,
+ 4673
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 66
},
"end": {
- "line": 95,
+ "line": 141,
"column": 68
}
}
},
"range": [
- 3134,
- 3140
+ 4667,
+ 4673
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 62
},
"end": {
- "line": 95,
+ "line": 141,
"column": 68
}
}
@@ -6547,79 +10747,79 @@
"type": "Identifier",
"name": "extFltId",
"range": [
- 3141,
- 3149
+ 4674,
+ 4682
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 69
},
"end": {
- "line": 95,
+ "line": 141,
"column": 77
}
}
}
],
"range": [
- 3134,
- 3150
+ 4667,
+ 4683
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 62
},
"end": {
- "line": 95,
+ "line": 141,
"column": 78
}
}
},
"range": [
- 3090,
- 3150
+ 4623,
+ 4683
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 18
},
"end": {
- "line": 95,
+ "line": 141,
"column": 78
}
}
},
"range": [
- 3084,
- 3150
+ 4617,
+ 4683
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 12
},
"end": {
- "line": 95,
+ "line": 141,
"column": 78
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3080,
- 3151
+ 4613,
+ 4684
],
"loc": {
"start": {
- "line": 95,
+ "line": 141,
"column": 8
},
"end": {
- "line": 95,
+ "line": 141,
"column": 79
}
}
@@ -6633,16 +10833,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 3164,
- 3166
+ 4697,
+ 4699
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 12
},
"end": {
- "line": 96,
+ "line": 142,
"column": 14
}
}
@@ -6656,16 +10856,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3169,
- 3172
+ 4702,
+ 4705
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 17
},
"end": {
- "line": 96,
+ "line": 142,
"column": 20
}
}
@@ -6674,31 +10874,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 3173,
- 3179
+ 4706,
+ 4712
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 21
},
"end": {
- "line": 96,
+ "line": 142,
"column": 27
}
}
},
"range": [
- 3169,
- 3179
+ 4702,
+ 4712
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 17
},
"end": {
- "line": 96,
+ "line": 142,
"column": 27
}
}
@@ -6709,16 +10909,16 @@
"value": "ul",
"raw": "'ul'",
"range": [
- 3193,
- 3197
+ 4726,
+ 4730
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 12
},
"end": {
- "line": 97,
+ "line": 143,
"column": 16
}
}
@@ -6731,16 +10931,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 3200,
- 3204
+ 4733,
+ 4737
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 19
},
"end": {
- "line": 97,
+ "line": 143,
"column": 23
}
}
@@ -6755,16 +10955,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3206,
- 3208
+ 4739,
+ 4741
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 25
},
"end": {
- "line": 97,
+ "line": 143,
"column": 27
}
}
@@ -6773,31 +10973,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 3209,
- 3215
+ 4742,
+ 4748
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 28
},
"end": {
- "line": 97,
+ "line": 143,
"column": 34
}
}
},
"range": [
- 3206,
- 3215
+ 4739,
+ 4748
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 25
},
"end": {
- "line": 97,
+ "line": 143,
"column": 34
}
}
@@ -6806,47 +11006,47 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 3216,
- 3224
+ 4749,
+ 4757
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 35
},
"end": {
- "line": 97,
+ "line": 143,
"column": 43
}
}
},
"range": [
- 3206,
- 3225
+ 4739,
+ 4758
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 25
},
"end": {
- "line": 97,
+ "line": 143,
"column": 44
}
}
}
],
"range": [
- 3199,
- 3226
+ 4732,
+ 4759
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 18
},
"end": {
- "line": 97,
+ "line": 143,
"column": 45
}
}
@@ -6859,16 +11059,16 @@
"value": "colIndex",
"raw": "'colIndex'",
"range": [
- 3229,
- 3239
+ 4762,
+ 4772
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 48
},
"end": {
- "line": 97,
+ "line": 143,
"column": 58
}
}
@@ -6877,80 +11077,80 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 3241,
- 3249
+ 4774,
+ 4782
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 60
},
"end": {
- "line": 97,
+ "line": 143,
"column": 68
}
}
}
],
"range": [
- 3228,
- 3250
+ 4761,
+ 4783
],
"loc": {
"start": {
- "line": 97,
+ "line": 143,
"column": 47
},
"end": {
- "line": 97,
+ "line": 143,
"column": 69
}
}
}
],
"range": [
- 3169,
- 3251
+ 4702,
+ 4784
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 17
},
"end": {
- "line": 97,
+ "line": 143,
"column": 70
}
}
},
"range": [
- 3164,
- 3251
+ 4697,
+ 4784
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 12
},
"end": {
- "line": 97,
+ "line": 143,
"column": 70
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3160,
- 3252
+ 4693,
+ 4785
],
"loc": {
"start": {
- "line": 96,
+ "line": 142,
"column": 8
},
"end": {
- "line": 97,
+ "line": 143,
"column": 71
}
}
@@ -6967,16 +11167,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 3261,
- 3263
+ 4794,
+ 4796
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 8
},
"end": {
- "line": 98,
+ "line": 144,
"column": 10
}
}
@@ -6985,31 +11185,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 3264,
- 3273
+ 4797,
+ 4806
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 11
},
"end": {
- "line": 98,
+ "line": 144,
"column": 20
}
}
},
"range": [
- 3261,
- 3273
+ 4794,
+ 4806
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 8
},
"end": {
- "line": 98,
+ "line": 144,
"column": 20
}
}
@@ -7020,16 +11220,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3276,
- 3280
+ 4809,
+ 4813
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 23
},
"end": {
- "line": 98,
+ "line": 144,
"column": 27
}
}
@@ -7038,61 +11238,61 @@
"type": "Identifier",
"name": "checkListCssClass",
"range": [
- 3281,
- 3298
+ 4814,
+ 4831
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 28
},
"end": {
- "line": 98,
+ "line": 144,
"column": 45
}
}
},
"range": [
- 3276,
- 3298
+ 4809,
+ 4831
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 23
},
"end": {
- "line": 98,
+ "line": 144,
"column": 45
}
}
},
"range": [
- 3261,
- 3298
+ 4794,
+ 4831
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 8
},
"end": {
- "line": 98,
+ "line": 144,
"column": 45
}
}
},
"range": [
- 3261,
- 3299
+ 4794,
+ 4832
],
"loc": {
"start": {
- "line": 98,
+ "line": 144,
"column": 8
},
"end": {
- "line": 98,
+ "line": 144,
"column": 46
}
}
@@ -7108,16 +11308,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 3308,
- 3313
+ 4841,
+ 4846
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 8
},
"end": {
- "line": 99,
+ "line": 145,
"column": 13
}
}
@@ -7126,31 +11326,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 3314,
- 3317
+ 4847,
+ 4850
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 14
},
"end": {
- "line": 99,
+ "line": 145,
"column": 17
}
}
},
"range": [
- 3308,
- 3317
+ 4841,
+ 4850
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 8
},
"end": {
- "line": 99,
+ "line": 145,
"column": 17
}
}
@@ -7160,16 +11360,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 3318,
- 3320
+ 4851,
+ 4853
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 18
},
"end": {
- "line": 99,
+ "line": 145,
"column": 20
}
}
@@ -7179,16 +11379,16 @@
"value": "change",
"raw": "'change'",
"range": [
- 3322,
- 3330
+ 4855,
+ 4863
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 22
},
"end": {
- "line": 99,
+ "line": 145,
"column": 30
}
}
@@ -7201,192 +11401,156 @@
"type": "Identifier",
"name": "evt",
"range": [
- 3333,
- 3336
+ 4866,
+ 4869
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 33
},
"end": {
- "line": 99,
+ "line": 145,
"column": 36
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3343,
- 3347
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 43
- },
- "end": {
- "line": 99,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onChange",
- "range": [
- 3348,
- 3356
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 48
- },
- "end": {
- "line": 99,
- "column": 56
- }
- }
- },
- "range": [
- 3343,
- 3356
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 43
- },
- "end": {
- "line": 99,
- "column": 56
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 3357,
- 3360
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 57
- },
- "end": {
- "line": 99,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 3343,
- 3361
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 43
- },
- "end": {
- "line": 99,
- "column": 61
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 3343,
- 3362
+ 4873,
+ 4877
],
"loc": {
"start": {
- "line": 99,
- "column": 43
+ "line": 145,
+ "column": 40
},
"end": {
- "line": 99,
- "column": 62
+ "line": 145,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onChange",
+ "range": [
+ 4878,
+ 4886
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 45
+ },
+ "end": {
+ "line": 145,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 4873,
+ 4886
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 40
+ },
+ "end": {
+ "line": 145,
+ "column": 53
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 4887,
+ 4890
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 54
+ },
+ "end": {
+ "line": 145,
+ "column": 57
}
}
}
],
"range": [
- 3341,
- 3364
+ 4873,
+ 4891
],
"loc": {
"start": {
- "line": 99,
- "column": 41
+ "line": 145,
+ "column": 40
},
"end": {
- "line": 99,
- "column": 64
+ "line": 145,
+ "column": 58
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 3332,
- 3364
+ 4865,
+ 4891
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 32
},
"end": {
- "line": 99,
- "column": 64
+ "line": 145,
+ "column": 58
}
}
}
],
"range": [
- 3308,
- 3365
+ 4841,
+ 4892
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 8
},
"end": {
- "line": 99,
- "column": 65
+ "line": 145,
+ "column": 59
}
}
},
"range": [
- 3308,
- 3366
+ 4841,
+ 4893
],
"loc": {
"start": {
- "line": 99,
+ "line": 145,
"column": 8
},
"end": {
- "line": 99,
- "column": 66
+ "line": 145,
+ "column": 60
}
}
},
@@ -7399,16 +11563,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 3380,
- 3384
+ 4907,
+ 4911
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 12
},
"end": {
- "line": 101,
+ "line": 147,
"column": 16
}
}
@@ -7423,16 +11587,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3387,
- 3389
+ 4914,
+ 4916
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 19
},
"end": {
- "line": 101,
+ "line": 147,
"column": 21
}
}
@@ -7441,31 +11605,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3390,
- 3393
+ 4917,
+ 4920
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 22
},
"end": {
- "line": 101,
+ "line": 147,
"column": 25
}
}
},
"range": [
- 3387,
- 3393
+ 4914,
+ 4920
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 19
},
"end": {
- "line": 101,
+ "line": 147,
"column": 25
}
}
@@ -7474,63 +11638,63 @@
"type": "Identifier",
"name": "rows",
"range": [
- 3394,
- 3398
+ 4921,
+ 4925
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 26
},
"end": {
- "line": 101,
+ "line": 147,
"column": 30
}
}
},
"range": [
- 3387,
- 3398
+ 4914,
+ 4925
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 19
},
"end": {
- "line": 101,
+ "line": 147,
"column": 30
}
}
},
"range": [
- 3380,
- 3398
+ 4907,
+ 4925
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 12
},
"end": {
- "line": 101,
+ "line": 147,
"column": 30
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3376,
- 3399
+ 4903,
+ 4926
],
"loc": {
"start": {
- "line": 101,
+ "line": 147,
"column": 8
},
"end": {
- "line": 101,
+ "line": 147,
"column": 31
}
}
@@ -7546,16 +11710,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3408,
- 3412
+ 4935,
+ 4939
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 8
},
"end": {
- "line": 102,
+ "line": 148,
"column": 12
}
}
@@ -7564,31 +11728,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 3413,
- 3421
+ 4940,
+ 4948
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 13
},
"end": {
- "line": 102,
+ "line": 148,
"column": 21
}
}
},
"range": [
- 3408,
- 3421
+ 4935,
+ 4948
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 8
},
"end": {
- "line": 102,
+ "line": 148,
"column": 21
}
}
@@ -7602,16 +11766,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3424,
- 3426
+ 4951,
+ 4953
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 24
},
"end": {
- "line": 102,
+ "line": 148,
"column": 26
}
}
@@ -7620,31 +11784,31 @@
"type": "Identifier",
"name": "isCustomOptions",
"range": [
- 3427,
- 3442
+ 4954,
+ 4969
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 27
},
"end": {
- "line": 102,
+ "line": 148,
"column": 42
}
}
},
"range": [
- 3424,
- 3442
+ 4951,
+ 4969
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 24
},
"end": {
- "line": 102,
+ "line": 148,
"column": 42
}
}
@@ -7654,62 +11818,62 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 3443,
- 3451
+ 4970,
+ 4978
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 43
},
"end": {
- "line": 102,
+ "line": 148,
"column": 51
}
}
}
],
"range": [
- 3424,
- 3452
+ 4951,
+ 4979
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 24
},
"end": {
- "line": 102,
+ "line": 148,
"column": 52
}
}
},
"range": [
- 3408,
- 3452
+ 4935,
+ 4979
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 8
},
"end": {
- "line": 102,
+ "line": 148,
"column": 52
}
}
},
"range": [
- 3408,
- 3453
+ 4935,
+ 4980
],
"loc": {
"start": {
- "line": 102,
+ "line": 148,
"column": 8
},
"end": {
- "line": 102,
+ "line": 148,
"column": 53
}
}
@@ -7723,49 +11887,49 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 3467,
- 3476
+ 4994,
+ 5003
],
"loc": {
"start": {
- "line": 104,
+ "line": 150,
"column": 12
},
"end": {
- "line": 104,
+ "line": 150,
"column": 21
}
}
},
"init": null,
"range": [
- 3467,
- 3476
+ 4994,
+ 5003
],
"loc": {
"start": {
- "line": 104,
+ "line": 150,
"column": 12
},
"end": {
- "line": 104,
+ "line": 150,
"column": 21
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3463,
- 3477
+ 4990,
+ 5004
],
"loc": {
"start": {
- "line": 104,
+ "line": 150,
"column": 8
},
"end": {
- "line": 104,
+ "line": 150,
"column": 22
}
}
@@ -7782,16 +11946,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3489,
- 3491
+ 5016,
+ 5018
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 11
},
"end": {
- "line": 105,
+ "line": 151,
"column": 13
}
}
@@ -7800,31 +11964,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 3492,
- 3505
+ 5019,
+ 5032
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 14
},
"end": {
- "line": 105,
+ "line": 151,
"column": 27
}
}
},
"range": [
- 3489,
- 3505
+ 5016,
+ 5032
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 11
},
"end": {
- "line": 105,
+ "line": 151,
"column": 27
}
}
@@ -7836,16 +12000,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3509,
- 3511
+ 5036,
+ 5038
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 31
},
"end": {
- "line": 105,
+ "line": 151,
"column": 33
}
}
@@ -7854,46 +12018,46 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 3512,
- 3526
+ 5039,
+ 5053
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 34
},
"end": {
- "line": 105,
+ "line": 151,
"column": 48
}
}
},
"range": [
- 3509,
- 3526
+ 5036,
+ 5053
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 31
},
"end": {
- "line": 105,
+ "line": 151,
"column": 48
}
}
},
"range": [
- 3489,
- 3526
+ 5016,
+ 5053
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 11
},
"end": {
- "line": 105,
+ "line": 151,
"column": 48
}
}
@@ -7910,16 +12074,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 3541,
- 3550
+ 5068,
+ 5077
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 12
},
"end": {
- "line": 106,
+ "line": 152,
"column": 21
}
}
@@ -7939,16 +12103,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3553,
- 3555
+ 5080,
+ 5082
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 24
},
"end": {
- "line": 106,
+ "line": 152,
"column": 26
}
}
@@ -7957,31 +12121,31 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 3556,
- 3570
+ 5083,
+ 5097
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 27
},
"end": {
- "line": 106,
+ "line": 152,
"column": 41
}
}
},
"range": [
- 3553,
- 3570
+ 5080,
+ 5097
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 24
},
"end": {
- "line": 106,
+ "line": 152,
"column": 41
}
}
@@ -7990,31 +12154,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 3571,
- 3576
+ 5098,
+ 5103
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 42
},
"end": {
- "line": 106,
+ "line": 152,
"column": 47
}
}
},
"range": [
- 3553,
- 3576
+ 5080,
+ 5103
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 24
},
"end": {
- "line": 106,
+ "line": 152,
"column": 47
}
}
@@ -8025,32 +12189,32 @@
"value": "_",
"raw": "'_'",
"range": [
- 3577,
- 3580
+ 5104,
+ 5107
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 48
},
"end": {
- "line": 106,
+ "line": 152,
"column": 51
}
}
}
],
"range": [
- 3553,
- 3581
+ 5080,
+ 5108
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 24
},
"end": {
- "line": 106,
+ "line": 152,
"column": 52
}
}
@@ -8060,61 +12224,61 @@
"value": 0,
"raw": "0",
"range": [
- 3582,
- 3583
+ 5109,
+ 5110
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 53
},
"end": {
- "line": 106,
+ "line": 152,
"column": 54
}
}
},
"range": [
- 3553,
- 3584
+ 5080,
+ 5111
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 24
},
"end": {
- "line": 106,
+ "line": 152,
"column": 55
}
}
},
"range": [
- 3541,
- 3584
+ 5068,
+ 5111
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 12
},
"end": {
- "line": 106,
+ "line": 152,
"column": 55
}
}
},
"range": [
- 3541,
- 3585
+ 5068,
+ 5112
],
"loc": {
"start": {
- "line": 106,
+ "line": 152,
"column": 12
},
"end": {
- "line": 106,
+ "line": 152,
"column": 56
}
}
@@ -8128,16 +12292,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 3598,
- 3607
+ 5125,
+ 5134
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 12
},
"end": {
- "line": 107,
+ "line": 153,
"column": 21
}
}
@@ -8154,16 +12318,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 3610,
- 3619
+ 5137,
+ 5146
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 24
},
"end": {
- "line": 107,
+ "line": 153,
"column": 33
}
}
@@ -8172,31 +12336,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 3620,
- 3625
+ 5147,
+ 5152
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 34
},
"end": {
- "line": 107,
+ "line": 153,
"column": 39
}
}
},
"range": [
- 3610,
- 3625
+ 5137,
+ 5152
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 24
},
"end": {
- "line": 107,
+ "line": 153,
"column": 39
}
}
@@ -8209,16 +12373,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3626,
- 3628
+ 5153,
+ 5155
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 40
},
"end": {
- "line": 107,
+ "line": 153,
"column": 42
}
}
@@ -8227,47 +12391,47 @@
"type": "Identifier",
"name": "prfxFlt",
"range": [
- 3629,
- 3636
+ 5156,
+ 5163
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 43
},
"end": {
- "line": 107,
+ "line": 153,
"column": 50
}
}
},
"range": [
- 3626,
- 3636
+ 5153,
+ 5163
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 40
},
"end": {
- "line": 107,
+ "line": 153,
"column": 50
}
}
}
],
"range": [
- 3610,
- 3637
+ 5137,
+ 5164
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 24
},
"end": {
- "line": 107,
+ "line": 153,
"column": 51
}
}
@@ -8277,93 +12441,93 @@
"value": 1,
"raw": "1",
"range": [
- 3638,
- 3639
+ 5165,
+ 5166
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 52
},
"end": {
- "line": 107,
+ "line": 153,
"column": 53
}
}
},
"range": [
- 3610,
- 3640
+ 5137,
+ 5167
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 24
},
"end": {
- "line": 107,
+ "line": 153,
"column": 54
}
}
},
"range": [
- 3598,
- 3640
+ 5125,
+ 5167
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 12
},
"end": {
- "line": 107,
+ "line": 153,
"column": 54
}
}
},
"range": [
- 3598,
- 3641
+ 5125,
+ 5168
],
"loc": {
"start": {
- "line": 107,
+ "line": 153,
"column": 12
},
"end": {
- "line": 107,
+ "line": 153,
"column": 55
}
}
}
],
"range": [
- 3527,
- 3651
+ 5054,
+ 5178
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 49
},
"end": {
- "line": 108,
+ "line": 154,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3486,
- 3651
+ 5013,
+ 5178
],
"loc": {
"start": {
- "line": 105,
+ "line": 151,
"column": 8
},
"end": {
- "line": 108,
+ "line": 154,
"column": 9
}
}
@@ -8377,16 +12541,16 @@
"type": "Identifier",
"name": "filteredDataCol",
"range": [
- 3665,
- 3680
+ 5192,
+ 5207
],
"loc": {
"start": {
- "line": 110,
+ "line": 156,
"column": 12
},
"end": {
- "line": 110,
+ "line": 156,
"column": 27
}
}
@@ -8395,48 +12559,48 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3683,
- 3685
+ 5210,
+ 5212
],
"loc": {
"start": {
- "line": 110,
+ "line": 156,
"column": 30
},
"end": {
- "line": 110,
+ "line": 156,
"column": 32
}
}
},
"range": [
- 3665,
- 3685
+ 5192,
+ 5212
],
"loc": {
"start": {
- "line": 110,
+ "line": 156,
"column": 12
},
"end": {
- "line": 110,
+ "line": 156,
"column": 32
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3661,
- 3686
+ 5188,
+ 5213
],
"loc": {
"start": {
- "line": 110,
+ "line": 156,
"column": 8
},
"end": {
- "line": 110,
+ "line": 156,
"column": 33
}
}
@@ -8453,16 +12617,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3698,
- 3700
+ 5225,
+ 5227
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 11
},
"end": {
- "line": 111,
+ "line": 157,
"column": 13
}
}
@@ -8471,31 +12635,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 3701,
- 3714
+ 5228,
+ 5241
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 14
},
"end": {
- "line": 111,
+ "line": 157,
"column": 27
}
}
},
"range": [
- 3698,
- 3714
+ 5225,
+ 5241
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 11
},
"end": {
- "line": 111,
+ "line": 157,
"column": 27
}
}
@@ -8507,16 +12671,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3718,
- 3720
+ 5245,
+ 5247
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 31
},
"end": {
- "line": 111,
+ "line": 157,
"column": 33
}
}
@@ -8525,46 +12689,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 3721,
- 3743
+ 5248,
+ 5270
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 34
},
"end": {
- "line": 111,
+ "line": 157,
"column": 56
}
}
},
"range": [
- 3718,
- 3743
+ 5245,
+ 5270
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 31
},
"end": {
- "line": 111,
+ "line": 157,
"column": 56
}
}
},
"range": [
- 3698,
- 3743
+ 5225,
+ 5270
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 11
},
"end": {
- "line": 111,
+ "line": 157,
"column": 56
}
}
@@ -8583,16 +12747,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3758,
- 3762
+ 5285,
+ 5289
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 12
},
"end": {
- "line": 112,
+ "line": 158,
"column": 16
}
}
@@ -8601,31 +12765,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 3763,
- 3775
+ 5290,
+ 5302
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 17
},
"end": {
- "line": 112,
+ "line": 158,
"column": 29
}
}
},
"range": [
- 3758,
- 3775
+ 5285,
+ 5302
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 12
},
"end": {
- "line": 112,
+ "line": 158,
"column": 29
}
}
@@ -8634,78 +12798,78 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3778,
- 3780
+ 5305,
+ 5307
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 32
},
"end": {
- "line": 112,
+ "line": 158,
"column": 34
}
}
},
"range": [
- 3758,
- 3780
+ 5285,
+ 5307
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 12
},
"end": {
- "line": 112,
+ "line": 158,
"column": 34
}
}
},
"range": [
- 3758,
- 3781
+ 5285,
+ 5308
],
"loc": {
"start": {
- "line": 112,
+ "line": 158,
"column": 12
},
"end": {
- "line": 112,
+ "line": 158,
"column": 35
}
}
}
],
"range": [
- 3744,
- 3791
+ 5271,
+ 5318
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 57
},
"end": {
- "line": 113,
+ "line": 159,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3695,
- 3791
+ 5222,
+ 5318
],
"loc": {
"start": {
- "line": 111,
+ "line": 157,
"column": 8
},
"end": {
- "line": 113,
+ "line": 159,
"column": 9
}
}
@@ -8721,16 +12885,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3809,
- 3810
+ 5336,
+ 5337
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 16
},
"end": {
- "line": 115,
+ "line": 161,
"column": 17
}
}
@@ -8742,16 +12906,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3811,
- 3813
+ 5338,
+ 5340
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 18
},
"end": {
- "line": 115,
+ "line": 161,
"column": 20
}
}
@@ -8760,63 +12924,63 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 3814,
- 3820
+ 5341,
+ 5347
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 21
},
"end": {
- "line": 115,
+ "line": 161,
"column": 27
}
}
},
"range": [
- 3811,
- 3820
+ 5338,
+ 5347
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 18
},
"end": {
- "line": 115,
+ "line": 161,
"column": 27
}
}
},
"range": [
- 3809,
- 3820
+ 5336,
+ 5347
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 16
},
"end": {
- "line": 115,
+ "line": 161,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3805,
- 3820
+ 5332,
+ 5347
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 12
},
"end": {
- "line": 115,
+ "line": 161,
"column": 27
}
}
@@ -8828,16 +12992,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3822,
- 3823
+ 5349,
+ 5350
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 29
},
"end": {
- "line": 115,
+ "line": 161,
"column": 30
}
}
@@ -8849,16 +13013,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3824,
- 3826
+ 5351,
+ 5353
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 31
},
"end": {
- "line": 115,
+ "line": 161,
"column": 33
}
}
@@ -8867,46 +13031,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 3827,
- 3833
+ 5354,
+ 5360
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 34
},
"end": {
- "line": 115,
+ "line": 161,
"column": 40
}
}
},
"range": [
- 3824,
- 3833
+ 5351,
+ 5360
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 31
},
"end": {
- "line": 115,
+ "line": 161,
"column": 40
}
}
},
"range": [
- 3822,
- 3833
+ 5349,
+ 5360
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 29
},
"end": {
- "line": 115,
+ "line": 161,
"column": 40
}
}
@@ -8918,32 +13082,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 3835,
- 3836
+ 5362,
+ 5363
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 42
},
"end": {
- "line": 115,
+ "line": 161,
"column": 43
}
}
},
"prefix": false,
"range": [
- 3835,
- 3838
+ 5362,
+ 5365
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 42
},
"end": {
- "line": 115,
+ "line": 161,
"column": 45
}
}
@@ -8963,16 +13127,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3954,
- 3956
+ 5481,
+ 5483
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 15
},
"end": {
- "line": 118,
+ "line": 164,
"column": 17
}
}
@@ -8981,31 +13145,31 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 3957,
- 3971
+ 5484,
+ 5498
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 18
},
"end": {
- "line": 118,
+ "line": 164,
"column": 32
}
}
},
"range": [
- 3954,
- 3971
+ 5481,
+ 5498
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 15
},
"end": {
- "line": 118,
+ "line": 164,
"column": 32
}
}
@@ -9025,16 +13189,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3975,
- 3977
+ 5502,
+ 5504
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 36
},
"end": {
- "line": 118,
+ "line": 164,
"column": 38
}
}
@@ -9043,31 +13207,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 3978,
- 3989
+ 5505,
+ 5516
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 39
},
"end": {
- "line": 118,
+ "line": 164,
"column": 50
}
}
},
"range": [
- 3975,
- 3989
+ 5502,
+ 5516
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 36
},
"end": {
- "line": 118,
+ "line": 164,
"column": 50
}
}
@@ -9076,31 +13240,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 3990,
- 3997
+ 5517,
+ 5524
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 51
},
"end": {
- "line": 118,
+ "line": 164,
"column": 58
}
}
},
"range": [
- 3975,
- 3997
+ 5502,
+ 5524
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 36
},
"end": {
- "line": 118,
+ "line": 164,
"column": 58
}
}
@@ -9110,32 +13274,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 3998,
- 3999
+ 5525,
+ 5526
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 59
},
"end": {
- "line": 118,
+ "line": 164,
"column": 60
}
}
}
],
"range": [
- 3975,
- 4000
+ 5502,
+ 5527
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 36
},
"end": {
- "line": 118,
+ "line": 164,
"column": 61
}
}
@@ -9148,62 +13312,62 @@
"value": 1,
"raw": "1",
"range": [
- 4006,
- 4007
+ 5533,
+ 5534
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 67
},
"end": {
- "line": 118,
+ "line": 164,
"column": 68
}
}
},
"prefix": true,
"range": [
- 4005,
- 4007
+ 5532,
+ 5534
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 66
},
"end": {
- "line": 118,
+ "line": 164,
"column": 68
}
}
},
"range": [
- 3975,
- 4007
+ 5502,
+ 5534
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 36
},
"end": {
- "line": 118,
+ "line": 164,
"column": 68
}
}
},
"range": [
- 3954,
- 4007
+ 5481,
+ 5534
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 15
},
"end": {
- "line": 118,
+ "line": 164,
"column": 68
}
}
@@ -9215,48 +13379,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 4026,
- 4035
+ 5553,
+ 5562
],
"loc": {
"start": {
- "line": 119,
+ "line": 165,
"column": 16
},
"end": {
- "line": 119,
+ "line": 165,
"column": 25
}
}
}
],
"range": [
- 4008,
- 4049
+ 5535,
+ 5576
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 69
},
"end": {
- "line": 120,
+ "line": 166,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3951,
- 4049
+ 5478,
+ 5576
],
"loc": {
"start": {
- "line": 118,
+ "line": 164,
"column": 12
},
"end": {
- "line": 120,
+ "line": 166,
"column": 13
}
},
@@ -9265,16 +13429,16 @@
"type": "Line",
"value": " always visible rows don't need to appear on selects as always",
"range": [
- 3853,
- 3917
+ 5380,
+ 5444
],
"loc": {
"start": {
- "line": 116,
+ "line": 162,
"column": 12
},
"end": {
- "line": 116,
+ "line": 162,
"column": 76
}
}
@@ -9283,16 +13447,16 @@
"type": "Line",
"value": " valid",
"range": [
- 3930,
- 3938
+ 5457,
+ 5465
],
"loc": {
"start": {
- "line": 117,
+ "line": 163,
"column": 12
},
"end": {
- "line": 117,
+ "line": 163,
"column": 20
}
}
@@ -9308,16 +13472,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 4067,
- 4072
+ 5594,
+ 5599
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 16
},
"end": {
- "line": 122,
+ "line": 168,
"column": 21
}
}
@@ -9332,16 +13496,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 4075,
- 4079
+ 5602,
+ 5606
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 24
},
"end": {
- "line": 122,
+ "line": 168,
"column": 28
}
}
@@ -9350,31 +13514,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 4080,
- 4081
+ 5607,
+ 5608
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 29
},
"end": {
- "line": 122,
+ "line": 168,
"column": 30
}
}
},
"range": [
- 4075,
- 4082
+ 5602,
+ 5609
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 24
},
"end": {
- "line": 122,
+ "line": 168,
"column": 31
}
}
@@ -9383,63 +13547,63 @@
"type": "Identifier",
"name": "cells",
"range": [
- 4083,
- 4088
+ 5610,
+ 5615
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 32
},
"end": {
- "line": 122,
+ "line": 168,
"column": 37
}
}
},
"range": [
- 4075,
- 4088
+ 5602,
+ 5615
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 24
},
"end": {
- "line": 122,
+ "line": 168,
"column": 37
}
}
},
"range": [
- 4067,
- 4088
+ 5594,
+ 5615
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 16
},
"end": {
- "line": 122,
+ "line": 168,
"column": 37
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4063,
- 4089
+ 5590,
+ 5616
],
"loc": {
"start": {
- "line": 122,
+ "line": 168,
"column": 12
},
"end": {
- "line": 122,
+ "line": 168,
"column": 38
}
}
@@ -9453,16 +13617,16 @@
"type": "Identifier",
"name": "ncells",
"range": [
- 4106,
- 4112
+ 5633,
+ 5639
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 16
},
"end": {
- "line": 123,
+ "line": 169,
"column": 22
}
}
@@ -9474,16 +13638,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 4115,
- 4120
+ 5642,
+ 5647
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 25
},
"end": {
- "line": 123,
+ "line": 169,
"column": 30
}
}
@@ -9492,63 +13656,63 @@
"type": "Identifier",
"name": "length",
"range": [
- 4121,
- 4127
+ 5648,
+ 5654
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 31
},
"end": {
- "line": 123,
+ "line": 169,
"column": 37
}
}
},
"range": [
- 4115,
- 4127
+ 5642,
+ 5654
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 25
},
"end": {
- "line": 123,
+ "line": 169,
"column": 37
}
}
},
"range": [
- 4106,
- 4127
+ 5633,
+ 5654
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 16
},
"end": {
- "line": 123,
+ "line": 169,
"column": 37
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4102,
- 4128
+ 5629,
+ 5655
],
"loc": {
"start": {
- "line": 123,
+ "line": 169,
"column": 12
},
"end": {
- "line": 123,
+ "line": 169,
"column": 38
}
},
@@ -9557,16 +13721,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 4142,
- 4175
+ 5669,
+ 5702
],
"loc": {
"start": {
- "line": 125,
+ "line": 171,
"column": 12
},
"end": {
- "line": 125,
+ "line": 171,
"column": 45
}
}
@@ -9585,16 +13749,16 @@
"type": "Identifier",
"name": "ncells",
"range": [
- 4191,
- 4197
+ 5718,
+ 5724
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 15
},
"end": {
- "line": 126,
+ "line": 172,
"column": 21
}
}
@@ -9606,16 +13770,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4202,
- 4204
+ 5729,
+ 5731
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 26
},
"end": {
- "line": 126,
+ "line": 172,
"column": 28
}
}
@@ -9624,46 +13788,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 4205,
- 4212
+ 5732,
+ 5739
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 29
},
"end": {
- "line": 126,
+ "line": 172,
"column": 36
}
}
},
"range": [
- 4202,
- 4212
+ 5729,
+ 5739
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 26
},
"end": {
- "line": 126,
+ "line": 172,
"column": 36
}
}
},
"range": [
- 4191,
- 4212
+ 5718,
+ 5739
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 15
},
"end": {
- "line": 126,
+ "line": 172,
"column": 36
}
}
@@ -9674,16 +13838,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4216,
- 4220
+ 5743,
+ 5747
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 40
},
"end": {
- "line": 126,
+ "line": 172,
"column": 44
}
}
@@ -9692,46 +13856,46 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 4221,
- 4229
+ 5748,
+ 5756
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 45
},
"end": {
- "line": 126,
+ "line": 172,
"column": 53
}
}
},
"range": [
- 4216,
- 4229
+ 5743,
+ 5756
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 40
},
"end": {
- "line": 126,
+ "line": 172,
"column": 53
}
}
},
"range": [
- 4191,
- 4229
+ 5718,
+ 5756
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 15
},
"end": {
- "line": 126,
+ "line": 172,
"column": 53
}
}
@@ -9743,48 +13907,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 4248,
- 4257
+ 5775,
+ 5784
],
"loc": {
"start": {
- "line": 127,
+ "line": 173,
"column": 16
},
"end": {
- "line": 127,
+ "line": 173,
"column": 25
}
}
}
],
"range": [
- 4230,
- 4271
+ 5757,
+ 5798
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 54
},
"end": {
- "line": 128,
+ "line": 174,
"column": 13
}
}
},
"alternate": null,
"range": [
- 4188,
- 4271
+ 5715,
+ 5798
],
"loc": {
"start": {
- "line": 126,
+ "line": 172,
"column": 12
},
"end": {
- "line": 128,
+ "line": 174,
"column": 13
}
},
@@ -9793,16 +13957,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 4142,
- 4175
+ 5669,
+ 5702
],
"loc": {
"start": {
- "line": 125,
+ "line": 171,
"column": 12
},
"end": {
- "line": 125,
+ "line": 171,
"column": 45
}
}
@@ -9813,16 +13977,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4285,
- 4317
+ 5812,
+ 5844
],
"loc": {
"start": {
- "line": 130,
+ "line": 176,
"column": 12
},
"end": {
- "line": 130,
+ "line": 176,
"column": 44
}
}
@@ -9840,16 +14004,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 4338,
- 4339
+ 5865,
+ 5866
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 20
},
"end": {
- "line": 131,
+ "line": 177,
"column": 21
}
}
@@ -9859,48 +14023,48 @@
"value": 0,
"raw": "0",
"range": [
- 4340,
- 4341
+ 5867,
+ 5868
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 22
},
"end": {
- "line": 131,
+ "line": 177,
"column": 23
}
}
},
"range": [
- 4338,
- 4341
+ 5865,
+ 5868
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 20
},
"end": {
- "line": 131,
+ "line": 177,
"column": 23
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4334,
- 4341
+ 5861,
+ 5868
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 16
},
"end": {
- "line": 131,
+ "line": 177,
"column": 23
}
}
@@ -9912,16 +14076,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 4343,
- 4344
+ 5870,
+ 5871
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 25
},
"end": {
- "line": 131,
+ "line": 177,
"column": 26
}
}
@@ -9930,31 +14094,31 @@
"type": "Identifier",
"name": "ncells",
"range": [
- 4345,
- 4351
+ 5872,
+ 5878
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 27
},
"end": {
- "line": 131,
+ "line": 177,
"column": 33
}
}
},
"range": [
- 4343,
- 4351
+ 5870,
+ 5878
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 25
},
"end": {
- "line": 131,
+ "line": 177,
"column": 33
}
}
@@ -9966,32 +14130,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 4353,
- 4354
+ 5880,
+ 5881
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 35
},
"end": {
- "line": 131,
+ "line": 177,
"column": 36
}
}
},
"prefix": false,
"range": [
- 4353,
- 4356
+ 5880,
+ 5883
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 35
},
"end": {
- "line": 131,
+ "line": 177,
"column": 38
}
}
@@ -10014,16 +14178,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4433,
- 4441
+ 5960,
+ 5968
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 20
},
"end": {
- "line": 133,
+ "line": 179,
"column": 28
}
}
@@ -10032,31 +14196,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 4444,
- 4445
+ 5971,
+ 5972
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 31
},
"end": {
- "line": 133,
+ "line": 179,
"column": 32
}
}
},
"range": [
- 4433,
- 4445
+ 5960,
+ 5972
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 20
},
"end": {
- "line": 133,
+ "line": 179,
"column": 32
}
}
@@ -10074,16 +14238,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4451,
- 4453
+ 5978,
+ 5980
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 38
},
"end": {
- "line": 133,
+ "line": 179,
"column": 40
}
}
@@ -10092,47 +14256,47 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 4454,
- 4467
+ 5981,
+ 5994
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 41
},
"end": {
- "line": 133,
+ "line": 179,
"column": 54
}
}
},
"range": [
- 4451,
- 4467
+ 5978,
+ 5994
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 38
},
"end": {
- "line": 133,
+ "line": 179,
"column": 54
}
}
},
"prefix": true,
"range": [
- 4450,
- 4467
+ 5977,
+ 5994
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 37
},
"end": {
- "line": 133,
+ "line": 179,
"column": 54
}
}
@@ -10147,16 +14311,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4492,
- 4494
+ 6019,
+ 6021
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 21
},
"end": {
- "line": 134,
+ "line": 180,
"column": 23
}
}
@@ -10165,31 +14329,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 4495,
- 4508
+ 6022,
+ 6035
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 24
},
"end": {
- "line": 134,
+ "line": 180,
"column": 37
}
}
},
"range": [
- 4492,
- 4508
+ 6019,
+ 6035
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 21
},
"end": {
- "line": 134,
+ "line": 180,
"column": 37
}
}
@@ -10201,16 +14365,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4512,
- 4514
+ 6039,
+ 6041
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 41
},
"end": {
- "line": 134,
+ "line": 180,
"column": 43
}
}
@@ -10219,76 +14383,76 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 4515,
- 4537
+ 6042,
+ 6064
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 44
},
"end": {
- "line": 134,
+ "line": 180,
"column": 66
}
}
},
"range": [
- 4512,
- 4537
+ 6039,
+ 6064
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 41
},
"end": {
- "line": 134,
+ "line": 180,
"column": 66
}
}
},
"range": [
- 4492,
- 4537
+ 6019,
+ 6064
],
"loc": {
"start": {
- "line": 134,
+ "line": 180,
"column": 21
},
"end": {
- "line": 134,
+ "line": 180,
"column": 66
}
}
},
"range": [
- 4450,
- 4538
+ 5977,
+ 6065
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 37
},
"end": {
- "line": 134,
+ "line": 180,
"column": 67
}
}
},
"range": [
- 4433,
- 4539
+ 5960,
+ 6066
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 20
},
"end": {
- "line": 134,
+ "line": 180,
"column": 68
}
}
@@ -10306,16 +14470,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4564,
- 4572
+ 6091,
+ 6099
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 21
},
"end": {
- "line": 135,
+ "line": 181,
"column": 29
}
}
@@ -10324,31 +14488,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 4575,
- 4576
+ 6102,
+ 6103
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 32
},
"end": {
- "line": 135,
+ "line": 181,
"column": 33
}
}
},
"range": [
- 4564,
- 4576
+ 6091,
+ 6103
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 21
},
"end": {
- "line": 135,
+ "line": 181,
"column": 33
}
}
@@ -10360,16 +14524,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4580,
- 4582
+ 6107,
+ 6109
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 37
},
"end": {
- "line": 135,
+ "line": 181,
"column": 39
}
}
@@ -10378,46 +14542,46 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 4583,
- 4596
+ 6110,
+ 6123
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 40
},
"end": {
- "line": 135,
+ "line": 181,
"column": 53
}
}
},
"range": [
- 4580,
- 4596
+ 6107,
+ 6123
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 37
},
"end": {
- "line": 135,
+ "line": 181,
"column": 53
}
}
},
"range": [
- 4564,
- 4596
+ 6091,
+ 6123
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 21
},
"end": {
- "line": 135,
+ "line": 181,
"column": 53
}
}
@@ -10444,16 +14608,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 4622,
- 4626
+ 6149,
+ 6153
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 26
}
}
@@ -10462,31 +14626,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 4627,
- 4628
+ 6154,
+ 6155
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 27
},
"end": {
- "line": 136,
+ "line": 182,
"column": 28
}
}
},
"range": [
- 4622,
- 4629
+ 6149,
+ 6156
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 29
}
}
@@ -10495,31 +14659,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4630,
- 4635
+ 6157,
+ 6162
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 30
},
"end": {
- "line": 136,
+ "line": 182,
"column": 35
}
}
},
"range": [
- 4622,
- 4635
+ 6149,
+ 6162
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 35
}
}
@@ -10528,31 +14692,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4636,
- 4643
+ 6163,
+ 6170
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 36
},
"end": {
- "line": 136,
+ "line": 182,
"column": 43
}
}
},
"range": [
- 4622,
- 4643
+ 6149,
+ 6170
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 43
}
}
@@ -10562,31 +14726,31 @@
"value": "",
"raw": "''",
"range": [
- 4648,
- 4650
+ 6175,
+ 6177
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 48
},
"end": {
- "line": 136,
+ "line": 182,
"column": 50
}
}
},
"range": [
- 4622,
- 4650
+ 6149,
+ 6177
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 50
}
}
@@ -10601,16 +14765,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4655,
- 4657
+ 6182,
+ 6184
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 55
},
"end": {
- "line": 136,
+ "line": 182,
"column": 57
}
}
@@ -10619,62 +14783,62 @@
"type": "Identifier",
"name": "paging",
"range": [
- 4658,
- 4664
+ 6185,
+ 6191
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 58
},
"end": {
- "line": 136,
+ "line": 182,
"column": 64
}
}
},
"range": [
- 4655,
- 4664
+ 6182,
+ 6191
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 55
},
"end": {
- "line": 136,
+ "line": 182,
"column": 64
}
}
},
"prefix": true,
"range": [
- 4654,
- 4664
+ 6181,
+ 6191
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 54
},
"end": {
- "line": 136,
+ "line": 182,
"column": 64
}
}
},
"range": [
- 4622,
- 4664
+ 6149,
+ 6191
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 22
},
"end": {
- "line": 136,
+ "line": 182,
"column": 64
}
}
@@ -10689,16 +14853,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4690,
- 4692
+ 6217,
+ 6219
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 21
},
"end": {
- "line": 137,
+ "line": 183,
"column": 23
}
}
@@ -10707,31 +14871,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 4693,
- 4699
+ 6220,
+ 6226
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 24
},
"end": {
- "line": 137,
+ "line": 183,
"column": 30
}
}
},
"range": [
- 4690,
- 4699
+ 6217,
+ 6226
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 21
},
"end": {
- "line": 137,
+ "line": 183,
"column": 30
}
}
@@ -10749,32 +14913,32 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4706,
- 4715
+ 6233,
+ 6242
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 37
},
"end": {
- "line": 137,
+ "line": 183,
"column": 46
}
}
},
"prefix": true,
"range": [
- 4705,
- 4715
+ 6232,
+ 6242
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 36
},
"end": {
- "line": 137,
+ "line": 183,
"column": 46
}
}
@@ -10786,16 +14950,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4719,
- 4728
+ 6246,
+ 6255
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 50
},
"end": {
- "line": 137,
+ "line": 183,
"column": 59
}
}
@@ -10804,46 +14968,46 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4731,
- 4739
+ 6258,
+ 6266
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 62
},
"end": {
- "line": 137,
+ "line": 183,
"column": 70
}
}
},
"range": [
- 4719,
- 4739
+ 6246,
+ 6266
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 50
},
"end": {
- "line": 137,
+ "line": 183,
"column": 70
}
}
},
"range": [
- 4705,
- 4739
+ 6232,
+ 6266
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 36
},
"end": {
- "line": 137,
+ "line": 183,
"column": 70
}
}
@@ -10858,16 +15022,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4765,
- 4774
+ 6292,
+ 6301
],
"loc": {
"start": {
- "line": 138,
+ "line": 184,
"column": 21
},
"end": {
- "line": 138,
+ "line": 184,
"column": 30
}
}
@@ -10876,31 +15040,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4776,
- 4784
+ 6303,
+ 6311
],
"loc": {
"start": {
- "line": 138,
+ "line": 184,
"column": 32
},
"end": {
- "line": 138,
+ "line": 184,
"column": 40
}
}
},
"range": [
- 4765,
- 4784
+ 6292,
+ 6311
],
"loc": {
"start": {
- "line": 138,
+ "line": 184,
"column": 21
},
"end": {
- "line": 138,
+ "line": 184,
"column": 40
}
}
@@ -10920,16 +15084,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4812,
- 4814
+ 6339,
+ 6341
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 24
},
"end": {
- "line": 139,
+ "line": 185,
"column": 26
}
}
@@ -10938,31 +15102,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4815,
- 4829
+ 6342,
+ 6356
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 27
},
"end": {
- "line": 139,
+ "line": 185,
"column": 41
}
}
},
"range": [
- 4812,
- 4829
+ 6339,
+ 6356
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 24
},
"end": {
- "line": 139,
+ "line": 185,
"column": 41
}
}
@@ -10971,31 +15135,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 4830,
- 4837
+ 6357,
+ 6364
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 42
},
"end": {
- "line": 139,
+ "line": 185,
"column": 49
}
}
},
"range": [
- 4812,
- 4837
+ 6339,
+ 6364
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 24
},
"end": {
- "line": 139,
+ "line": 185,
"column": 49
}
}
@@ -11005,32 +15169,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 4838,
- 4839
+ 6365,
+ 6366
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 50
},
"end": {
- "line": 139,
+ "line": 185,
"column": 51
}
}
}
],
"range": [
- 4812,
- 4840
+ 6339,
+ 6367
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 24
},
"end": {
- "line": 139,
+ "line": 185,
"column": 52
}
}
@@ -11043,137 +15207,137 @@
"value": 1,
"raw": "1",
"range": [
- 4845,
- 4846
+ 6372,
+ 6373
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 57
},
"end": {
- "line": 139,
+ "line": 185,
"column": 58
}
}
},
"prefix": true,
"range": [
- 4844,
- 4846
+ 6371,
+ 6373
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 56
},
"end": {
- "line": 139,
+ "line": 185,
"column": 58
}
}
},
"range": [
- 4812,
- 4846
+ 6339,
+ 6373
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 24
},
"end": {
- "line": 139,
+ "line": 185,
"column": 58
}
}
},
"range": [
- 4765,
- 4846
+ 6292,
+ 6373
],
"loc": {
"start": {
- "line": 138,
+ "line": 184,
"column": 21
},
"end": {
- "line": 139,
+ "line": 185,
"column": 58
}
}
},
"range": [
- 4704,
- 4847
+ 6231,
+ 6374
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 35
},
"end": {
- "line": 139,
+ "line": 185,
"column": 59
}
}
},
"range": [
- 4690,
- 4848
+ 6217,
+ 6375
],
"loc": {
"start": {
- "line": 137,
+ "line": 183,
"column": 21
},
"end": {
- "line": 139,
+ "line": 185,
"column": 60
}
}
},
"range": [
- 4621,
- 4850
+ 6148,
+ 6377
],
"loc": {
"start": {
- "line": 136,
+ "line": 182,
"column": 21
},
"end": {
- "line": 139,
+ "line": 185,
"column": 62
}
}
},
"range": [
- 4564,
- 4851
+ 6091,
+ 6378
],
"loc": {
"start": {
- "line": 135,
+ "line": 181,
"column": 21
},
"end": {
- "line": 139,
+ "line": 185,
"column": 63
}
}
},
"range": [
- 4432,
- 4852
+ 5959,
+ 6379
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 19
},
"end": {
- "line": 139,
+ "line": 185,
"column": 64
}
}
@@ -11190,16 +15354,16 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 4879,
- 4888
+ 6406,
+ 6415
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 24
},
"end": {
- "line": 140,
+ "line": 186,
"column": 33
}
}
@@ -11213,16 +15377,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4891,
- 4893
+ 6418,
+ 6420
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 36
},
"end": {
- "line": 140,
+ "line": 186,
"column": 38
}
}
@@ -11231,31 +15395,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 4894,
- 4905
+ 6421,
+ 6432
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 39
},
"end": {
- "line": 140,
+ "line": 186,
"column": 50
}
}
},
"range": [
- 4891,
- 4905
+ 6418,
+ 6432
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 36
},
"end": {
- "line": 140,
+ "line": 186,
"column": 50
}
}
@@ -11268,16 +15432,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 4906,
- 4911
+ 6433,
+ 6438
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 51
},
"end": {
- "line": 140,
+ "line": 186,
"column": 56
}
}
@@ -11286,79 +15450,79 @@
"type": "Identifier",
"name": "j",
"range": [
- 4912,
- 4913
+ 6439,
+ 6440
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 57
},
"end": {
- "line": 140,
+ "line": 186,
"column": 58
}
}
},
"range": [
- 4906,
- 4914
+ 6433,
+ 6441
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 51
},
"end": {
- "line": 140,
+ "line": 186,
"column": 59
}
}
}
],
"range": [
- 4891,
- 4915
+ 6418,
+ 6442
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 36
},
"end": {
- "line": 140,
+ "line": 186,
"column": 60
}
}
},
"range": [
- 4879,
- 4915
+ 6406,
+ 6442
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 24
},
"end": {
- "line": 140,
+ "line": 186,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4875,
- 4916
+ 6402,
+ 6443
],
"loc": {
"start": {
- "line": 140,
+ "line": 186,
"column": 20
},
"end": {
- "line": 140,
+ "line": 186,
"column": 61
}
},
@@ -11367,16 +15531,16 @@
"type": "Line",
"value": "Vary Peter's patch",
"range": [
- 4937,
- 4957
+ 6464,
+ 6484
],
"loc": {
"start": {
- "line": 141,
+ "line": 187,
"column": 20
},
"end": {
- "line": 141,
+ "line": 187,
"column": 40
}
}
@@ -11392,16 +15556,16 @@
"type": "Identifier",
"name": "cell_string",
"range": [
- 4982,
- 4993
+ 6509,
+ 6520
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 24
},
"end": {
- "line": 142,
+ "line": 188,
"column": 35
}
}
@@ -11415,16 +15579,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 4996,
- 4999
+ 6523,
+ 6526
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 38
},
"end": {
- "line": 142,
+ "line": 188,
"column": 41
}
}
@@ -11433,31 +15597,31 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5000,
- 5009
+ 6527,
+ 6536
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 42
},
"end": {
- "line": 142,
+ "line": 188,
"column": 51
}
}
},
"range": [
- 4996,
- 5009
+ 6523,
+ 6536
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 38
},
"end": {
- "line": 142,
+ "line": 188,
"column": 51
}
}
@@ -11467,16 +15631,16 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5010,
- 5019
+ 6537,
+ 6546
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 52
},
"end": {
- "line": 142,
+ "line": 188,
"column": 61
}
}
@@ -11488,16 +15652,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5021,
- 5023
+ 6548,
+ 6550
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 63
},
"end": {
- "line": 142,
+ "line": 188,
"column": 65
}
}
@@ -11506,79 +15670,79 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5024,
- 5033
+ 6551,
+ 6560
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 66
},
"end": {
- "line": 142,
+ "line": 188,
"column": 75
}
}
},
"range": [
- 5021,
- 5033
+ 6548,
+ 6560
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 63
},
"end": {
- "line": 142,
+ "line": 188,
"column": 75
}
}
}
],
"range": [
- 4996,
- 5034
+ 6523,
+ 6561
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 38
},
"end": {
- "line": 142,
+ "line": 188,
"column": 76
}
}
},
"range": [
- 4982,
- 5034
+ 6509,
+ 6561
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 24
},
"end": {
- "line": 142,
+ "line": 188,
"column": 76
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4978,
- 5035
+ 6505,
+ 6562
],
"loc": {
"start": {
- "line": 142,
+ "line": 188,
"column": 20
},
"end": {
- "line": 142,
+ "line": 188,
"column": 77
}
},
@@ -11587,16 +15751,16 @@
"type": "Line",
"value": "Vary Peter's patch",
"range": [
- 4937,
- 4957
+ 6464,
+ 6484
],
"loc": {
"start": {
- "line": 141,
+ "line": 187,
"column": 20
},
"end": {
- "line": 141,
+ "line": 187,
"column": 40
}
}
@@ -11607,16 +15771,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5056,
- 5097
+ 6583,
+ 6624
],
"loc": {
"start": {
- "line": 143,
+ "line": 189,
"column": 20
},
"end": {
- "line": 143,
+ "line": 189,
"column": 61
}
}
@@ -11637,16 +15801,16 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 5122,
- 5125
+ 6649,
+ 6652
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 24
},
"end": {
- "line": 144,
+ "line": 190,
"column": 27
}
}
@@ -11655,31 +15819,31 @@
"type": "Identifier",
"name": "has",
"range": [
- 5126,
- 5129
+ 6653,
+ 6656
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 28
},
"end": {
- "line": 144,
+ "line": 190,
"column": 31
}
}
},
"range": [
- 5122,
- 5129
+ 6649,
+ 6656
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 24
},
"end": {
- "line": 144,
+ "line": 190,
"column": 31
}
}
@@ -11691,16 +15855,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5130,
- 5134
+ 6657,
+ 6661
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 32
},
"end": {
- "line": 144,
+ "line": 190,
"column": 36
}
}
@@ -11709,31 +15873,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 5135,
- 5139
+ 6662,
+ 6666
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 37
},
"end": {
- "line": 144,
+ "line": 190,
"column": 41
}
}
},
"range": [
- 5130,
- 5139
+ 6657,
+ 6666
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 32
},
"end": {
- "line": 144,
+ "line": 190,
"column": 41
}
}
@@ -11742,16 +15906,16 @@
"type": "Identifier",
"name": "cell_string",
"range": [
- 5141,
- 5152
+ 6668,
+ 6679
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 43
},
"end": {
- "line": 144,
+ "line": 190,
"column": 54
}
}
@@ -11763,16 +15927,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5154,
- 5156
+ 6681,
+ 6683
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 56
},
"end": {
- "line": 144,
+ "line": 190,
"column": 58
}
}
@@ -11781,63 +15945,63 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5157,
- 5166
+ 6684,
+ 6693
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 59
},
"end": {
- "line": 144,
+ "line": 190,
"column": 68
}
}
},
"range": [
- 5154,
- 5166
+ 6681,
+ 6693
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 56
},
"end": {
- "line": 144,
+ "line": 190,
"column": 68
}
}
}
],
"range": [
- 5122,
- 5167
+ 6649,
+ 6694
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 24
},
"end": {
- "line": 144,
+ "line": 190,
"column": 69
}
}
},
"prefix": true,
"range": [
- 5121,
- 5167
+ 6648,
+ 6694
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 23
},
"end": {
- "line": 144,
+ "line": 190,
"column": 69
}
}
@@ -11858,16 +16022,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5194,
- 5198
+ 6721,
+ 6725
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 24
},
"end": {
- "line": 145,
+ "line": 191,
"column": 28
}
}
@@ -11876,31 +16040,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 5199,
- 5203
+ 6726,
+ 6730
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 29
},
"end": {
- "line": 145,
+ "line": 191,
"column": 33
}
}
},
"range": [
- 5194,
- 5203
+ 6721,
+ 6730
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 24
},
"end": {
- "line": 145,
+ "line": 191,
"column": 33
}
}
@@ -11909,31 +16073,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 5204,
- 5208
+ 6731,
+ 6735
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 34
},
"end": {
- "line": 145,
+ "line": 191,
"column": 38
}
}
},
"range": [
- 5194,
- 5208
+ 6721,
+ 6735
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 24
},
"end": {
- "line": 145,
+ "line": 191,
"column": 38
}
}
@@ -11943,79 +16107,79 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5209,
- 5218
+ 6736,
+ 6745
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 39
},
"end": {
- "line": 145,
+ "line": 191,
"column": 48
}
}
}
],
"range": [
- 5194,
- 5219
+ 6721,
+ 6746
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 24
},
"end": {
- "line": 145,
+ "line": 191,
"column": 49
}
}
},
"range": [
- 5194,
- 5220
+ 6721,
+ 6747
],
"loc": {
"start": {
- "line": 145,
+ "line": 191,
"column": 24
},
"end": {
- "line": 145,
+ "line": 191,
"column": 50
}
}
}
],
"range": [
- 5168,
- 5242
+ 6695,
+ 6769
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 70
},
"end": {
- "line": 146,
+ "line": 192,
"column": 21
}
}
},
"alternate": null,
"range": [
- 5118,
- 5242
+ 6645,
+ 6769
],
"loc": {
"start": {
- "line": 144,
+ "line": 190,
"column": 20
},
"end": {
- "line": 146,
+ "line": 192,
"column": 21
}
},
@@ -12024,16 +16188,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5056,
- 5097
+ 6583,
+ 6624
],
"loc": {
"start": {
- "line": 143,
+ "line": 189,
"column": 20
},
"end": {
- "line": 143,
+ "line": 189,
"column": 61
}
}
@@ -12049,16 +16213,16 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5267,
- 5278
+ 6794,
+ 6805
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 24
},
"end": {
- "line": 147,
+ "line": 193,
"column": 35
}
}
@@ -12070,16 +16234,16 @@
"type": "Identifier",
"name": "filteredDataCol",
"range": [
- 5281,
- 5296
+ 6808,
+ 6823
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 38
},
"end": {
- "line": 147,
+ "line": 193,
"column": 53
}
}
@@ -12088,63 +16252,63 @@
"type": "Identifier",
"name": "j",
"range": [
- 5297,
- 5298
+ 6824,
+ 6825
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 54
},
"end": {
- "line": 147,
+ "line": 193,
"column": 55
}
}
},
"range": [
- 5281,
- 5299
+ 6808,
+ 6826
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 38
},
"end": {
- "line": 147,
+ "line": 193,
"column": 56
}
}
},
"range": [
- 5267,
- 5299
+ 6794,
+ 6826
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 24
},
"end": {
- "line": 147,
+ "line": 193,
"column": 56
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5263,
- 5300
+ 6790,
+ 6827
],
"loc": {
"start": {
- "line": 147,
+ "line": 193,
"column": 20
},
"end": {
- "line": 147,
+ "line": 193,
"column": 57
}
}
@@ -12161,16 +16325,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5324,
- 5326
+ 6851,
+ 6853
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 23
},
"end": {
- "line": 148,
+ "line": 194,
"column": 25
}
}
@@ -12179,31 +16343,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 5327,
- 5340
+ 6854,
+ 6867
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 26
},
"end": {
- "line": 148,
+ "line": 194,
"column": 39
}
}
},
"range": [
- 5324,
- 5340
+ 6851,
+ 6867
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 23
},
"end": {
- "line": 148,
+ "line": 194,
"column": 39
}
}
@@ -12215,16 +16379,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5344,
- 5346
+ 6871,
+ 6873
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 43
},
"end": {
- "line": 148,
+ "line": 194,
"column": 45
}
}
@@ -12233,46 +16397,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 5347,
- 5369
+ 6874,
+ 6896
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 46
},
"end": {
- "line": 148,
+ "line": 194,
"column": 68
}
}
},
"range": [
- 5344,
- 5369
+ 6871,
+ 6896
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 43
},
"end": {
- "line": 148,
+ "line": 194,
"column": 68
}
}
},
"range": [
- 5324,
- 5369
+ 6851,
+ 6896
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 23
},
"end": {
- "line": 148,
+ "line": 194,
"column": 68
}
}
@@ -12289,32 +16453,32 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5400,
- 5411
+ 6927,
+ 6938
],
"loc": {
"start": {
- "line": 149,
+ "line": 195,
"column": 28
},
"end": {
- "line": 149,
+ "line": 195,
"column": 39
}
}
},
"prefix": true,
"range": [
- 5399,
- 5411
+ 6926,
+ 6938
],
"loc": {
"start": {
- "line": 149,
+ "line": 195,
"column": 27
},
"end": {
- "line": 149,
+ "line": 195,
"column": 39
}
}
@@ -12331,16 +16495,16 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5442,
- 5453
+ 6969,
+ 6980
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 28
},
"end": {
- "line": 150,
+ "line": 196,
"column": 39
}
}
@@ -12354,16 +16518,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5456,
- 5458
+ 6983,
+ 6985
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 42
},
"end": {
- "line": 150,
+ "line": 196,
"column": 44
}
}
@@ -12372,31 +16536,31 @@
"type": "Identifier",
"name": "getFilteredDataCol",
"range": [
- 5459,
- 5477
+ 6986,
+ 7004
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 45
},
"end": {
- "line": 150,
+ "line": 196,
"column": 63
}
}
},
"range": [
- 5456,
- 5477
+ 6983,
+ 7004
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 42
},
"end": {
- "line": 150,
+ "line": 196,
"column": 63
}
}
@@ -12406,94 +16570,94 @@
"type": "Identifier",
"name": "j",
"range": [
- 5478,
- 5479
+ 7005,
+ 7006
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 64
},
"end": {
- "line": 150,
+ "line": 196,
"column": 65
}
}
}
],
"range": [
- 5456,
- 5480
+ 6983,
+ 7007
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 42
},
"end": {
- "line": 150,
+ "line": 196,
"column": 66
}
}
},
"range": [
- 5442,
- 5480
+ 6969,
+ 7007
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 28
},
"end": {
- "line": 150,
+ "line": 196,
"column": 66
}
}
},
"range": [
- 5442,
- 5481
+ 6969,
+ 7008
],
"loc": {
"start": {
- "line": 150,
+ "line": 196,
"column": 28
},
"end": {
- "line": 150,
+ "line": 196,
"column": 67
}
}
}
],
"range": [
- 5412,
- 5507
+ 6939,
+ 7034
],
"loc": {
"start": {
- "line": 149,
+ "line": 195,
"column": 40
},
"end": {
- "line": 151,
+ "line": 197,
"column": 25
}
}
},
"alternate": null,
"range": [
- 5396,
- 5507
+ 6923,
+ 7034
],
"loc": {
"start": {
- "line": 149,
+ "line": 195,
"column": 24
},
"end": {
- "line": 151,
+ "line": 197,
"column": 25
}
}
@@ -12504,419 +16668,184 @@
"type": "LogicalExpression",
"operator": "&&",
"left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 5536,
- 5539
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 28
- },
- "end": {
- "line": 152,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 5540,
- 5543
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 32
- },
- "end": {
- "line": 152,
- "column": 35
- }
- }
- },
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
"range": [
- 5536,
- 5543
+ 7063,
+ 7066
],
"loc": {
"start": {
- "line": 152,
+ "line": 198,
"column": 28
},
"end": {
- "line": 152,
+ "line": 198,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 7067,
+ 7070
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 32
+ },
+ "end": {
+ "line": 198,
"column": 35
}
}
},
- "arguments": [
- {
- "type": "Identifier",
- "name": "filteredCol",
- "range": [
- 5544,
- 5555
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 36
- },
- "end": {
- "line": 152,
- "column": 47
- }
- }
- },
- {
- "type": "Identifier",
- "name": "cell_string",
- "range": [
- 5557,
- 5568
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 49
- },
- "end": {
- "line": 152,
- "column": 60
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 5570,
- 5572
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 62
- },
- "end": {
- "line": 152,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 5573,
- 5582
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 65
- },
- "end": {
- "line": 152,
- "column": 74
- }
- }
- },
- "range": [
- 5570,
- 5582
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 62
- },
- "end": {
- "line": 152,
- "column": 74
- }
- }
- }
- ],
"range": [
- 5536,
- 5583
+ 7063,
+ 7070
],
"loc": {
"start": {
- "line": 152,
+ "line": 198,
"column": 28
},
"end": {
- "line": 152,
- "column": 75
+ "line": 198,
+ "column": 35
}
}
},
- "prefix": true,
- "range": [
- 5535,
- 5583
- ],
- "loc": {
- "start": {
- "line": 152,
- "column": 27
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "filteredCol",
+ "range": [
+ 7071,
+ 7082
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 36
+ },
+ "end": {
+ "line": 198,
+ "column": 47
+ }
+ }
},
- "end": {
- "line": 152,
- "column": 75
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
+ {
+ "type": "Identifier",
+ "name": "cell_string",
+ "range": [
+ 7084,
+ 7095
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 49
+ },
+ "end": {
+ "line": 198,
+ "column": 60
+ }
+ }
+ },
+ {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "Identifier",
- "name": "Arr",
+ "name": "tf",
"range": [
- 5616,
- 5619
+ 7097,
+ 7099
],
"loc": {
"start": {
- "line": 153,
- "column": 29
+ "line": 198,
+ "column": 62
},
"end": {
- "line": 153,
- "column": 32
+ "line": 198,
+ "column": 64
}
}
},
"property": {
"type": "Identifier",
- "name": "has",
+ "name": "matchCase",
"range": [
- 5620,
- 5623
+ 7100,
+ 7109
],
"loc": {
"start": {
- "line": 153,
- "column": 33
+ "line": 198,
+ "column": 65
},
"end": {
- "line": 153,
- "column": 36
+ "line": 198,
+ "column": 74
}
}
},
"range": [
- 5616,
- 5623
+ 7097,
+ 7109
],
"loc": {
"start": {
- "line": 153,
- "column": 29
+ "line": 198,
+ "column": 62
},
"end": {
- "line": 153,
- "column": 36
+ "line": 198,
+ "column": 74
}
}
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 5624,
- 5628
- ],
- "loc": {
- "start": {
- "line": 153,
- "column": 37
- },
- "end": {
- "line": 153,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "excludedOpts",
- "range": [
- 5629,
- 5641
- ],
- "loc": {
- "start": {
- "line": 153,
- "column": 42
- },
- "end": {
- "line": 153,
- "column": 54
- }
- }
- },
- "range": [
- 5624,
- 5641
- ],
- "loc": {
- "start": {
- "line": 153,
- "column": 37
- },
- "end": {
- "line": 153,
- "column": 54
- }
- }
- },
- {
- "type": "Identifier",
- "name": "cell_string",
- "range": [
- 5675,
- 5686
- ],
- "loc": {
- "start": {
- "line": 154,
- "column": 32
- },
- "end": {
- "line": 154,
- "column": 43
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 5688,
- 5690
- ],
- "loc": {
- "start": {
- "line": 154,
- "column": 45
- },
- "end": {
- "line": 154,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 5691,
- 5700
- ],
- "loc": {
- "start": {
- "line": 154,
- "column": 48
- },
- "end": {
- "line": 154,
- "column": 57
- }
- }
- },
- "range": [
- 5688,
- 5700
- ],
- "loc": {
- "start": {
- "line": 154,
- "column": 45
- },
- "end": {
- "line": 154,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 5616,
- 5701
- ],
- "loc": {
- "start": {
- "line": 153,
- "column": 29
- },
- "end": {
- "line": 154,
- "column": 58
- }
}
- },
- "prefix": true,
+ ],
"range": [
- 5615,
- 5701
+ 7063,
+ 7110
],
"loc": {
"start": {
- "line": 153,
+ "line": 198,
"column": 28
},
"end": {
- "line": 154,
- "column": 58
+ "line": 198,
+ "column": 75
}
}
},
+ "prefix": true,
"range": [
- 5535,
- 5701
+ 7062,
+ 7110
],
"loc": {
"start": {
- "line": 152,
+ "line": 198,
"column": 27
},
"end": {
- "line": 154,
- "column": 58
+ "line": 198,
+ "column": 75
}
}
},
@@ -12924,87 +16853,231 @@
"type": "UnaryExpression",
"operator": "!",
"argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
+ "range": [
+ 7143,
+ 7146
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 29
+ },
+ "end": {
+ "line": 199,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 7147,
+ 7150
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 33
+ },
+ "end": {
+ "line": 199,
+ "column": 36
+ }
+ }
+ },
"range": [
- 5734,
- 5736
+ 7143,
+ 7150
],
"loc": {
"start": {
- "line": 155,
+ "line": 199,
"column": 29
},
"end": {
- "line": 155,
- "column": 31
+ "line": 199,
+ "column": 36
}
}
},
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 5737,
- 5748
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 32
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7151,
+ 7155
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 37
+ },
+ "end": {
+ "line": 199,
+ "column": 41
+ }
+ }
},
- "end": {
- "line": 155,
- "column": 43
+ "property": {
+ "type": "Identifier",
+ "name": "excludedOpts",
+ "range": [
+ 7156,
+ 7168
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 42
+ },
+ "end": {
+ "line": 199,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 7151,
+ 7168
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 37
+ },
+ "end": {
+ "line": 199,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell_string",
+ "range": [
+ 7202,
+ 7213
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 32
+ },
+ "end": {
+ "line": 200,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 7215,
+ 7217
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 45
+ },
+ "end": {
+ "line": 200,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "matchCase",
+ "range": [
+ 7218,
+ 7227
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 48
+ },
+ "end": {
+ "line": 200,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 7215,
+ 7227
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 45
+ },
+ "end": {
+ "line": 200,
+ "column": 57
+ }
}
}
- },
+ ],
"range": [
- 5734,
- 5748
+ 7143,
+ 7228
],
"loc": {
"start": {
- "line": 155,
+ "line": 199,
"column": 29
},
"end": {
- "line": 155,
- "column": 43
+ "line": 200,
+ "column": 58
}
}
},
"prefix": true,
"range": [
- 5733,
- 5748
+ 7142,
+ 7228
],
"loc": {
"start": {
- "line": 155,
+ "line": 199,
"column": 28
},
"end": {
- "line": 155,
- "column": 43
+ "line": 200,
+ "column": 58
}
}
},
"range": [
- 5535,
- 5748
+ 7062,
+ 7228
],
"loc": {
"start": {
- "line": 152,
+ "line": 198,
"column": 27
},
"end": {
- "line": 155,
- "column": 43
+ "line": 200,
+ "column": 58
}
}
},
@@ -13024,16 +17097,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5779,
- 5783
+ 7259,
+ 7263
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 28
},
"end": {
- "line": 156,
+ "line": 201,
"column": 32
}
}
@@ -13042,31 +17115,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 5784,
- 5796
+ 7264,
+ 7276
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 33
},
"end": {
- "line": 156,
+ "line": 201,
"column": 45
}
}
},
"range": [
- 5779,
- 5796
+ 7259,
+ 7276
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 28
},
"end": {
- "line": 156,
+ "line": 201,
"column": 45
}
}
@@ -13075,31 +17148,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 5797,
- 5801
+ 7277,
+ 7281
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 46
},
"end": {
- "line": 156,
+ "line": 201,
"column": 50
}
}
},
"range": [
- 5779,
- 5801
+ 7259,
+ 7281
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 28
},
"end": {
- "line": 156,
+ "line": 201,
"column": 50
}
}
@@ -13109,143 +17182,143 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5802,
- 5811
+ 7282,
+ 7291
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 51
},
"end": {
- "line": 156,
+ "line": 201,
"column": 60
}
}
}
],
"range": [
- 5779,
- 5812
+ 7259,
+ 7292
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 28
},
"end": {
- "line": 156,
+ "line": 201,
"column": 61
}
}
},
"range": [
- 5779,
- 5813
+ 7259,
+ 7293
],
"loc": {
"start": {
- "line": 156,
+ "line": 201,
"column": 28
},
"end": {
- "line": 156,
+ "line": 201,
"column": 62
}
}
}
],
"range": [
- 5749,
- 5839
+ 7229,
+ 7319
],
"loc": {
"start": {
- "line": 155,
- "column": 44
+ "line": 200,
+ "column": 59
},
"end": {
- "line": 157,
+ "line": 202,
"column": 25
}
}
},
"alternate": null,
"range": [
- 5532,
- 5839
+ 7059,
+ 7319
],
"loc": {
"start": {
- "line": 152,
+ "line": 198,
"column": 24
},
"end": {
- "line": 157,
+ "line": 202,
"column": 25
}
}
}
],
"range": [
- 5370,
- 5861
+ 6897,
+ 7341
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 69
},
"end": {
- "line": 158,
+ "line": 203,
"column": 21
}
}
},
"alternate": null,
"range": [
- 5321,
- 5861
+ 6848,
+ 7341
],
"loc": {
"start": {
- "line": 148,
+ "line": 194,
"column": 20
},
"end": {
- "line": 158,
+ "line": 203,
"column": 21
}
}
}
],
"range": [
- 4853,
- 5879
+ 6380,
+ 7359
],
"loc": {
"start": {
- "line": 139,
+ "line": 185,
"column": 65
},
"end": {
- "line": 159,
+ "line": 204,
"column": 17
}
}
},
"alternate": null,
"range": [
- 4429,
- 5879
+ 5956,
+ 7359
],
"loc": {
"start": {
- "line": 133,
+ "line": 179,
"column": 16
},
"end": {
- "line": 159,
+ "line": 204,
"column": 17
}
},
@@ -13254,16 +17327,16 @@
"type": "Line",
"value": " WTF: cyclomatic complexity hell :)",
"range": [
- 4375,
- 4412
+ 5902,
+ 5939
],
"loc": {
"start": {
- "line": 132,
+ "line": 178,
"column": 16
},
"end": {
- "line": 132,
+ "line": 178,
"column": 53
}
}
@@ -13272,31 +17345,31 @@
}
],
"range": [
- 4357,
- 5893
+ 5884,
+ 7373
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 39
},
"end": {
- "line": 160,
+ "line": 205,
"column": 13
}
}
},
"range": [
- 4330,
- 5893
+ 5857,
+ 7373
],
"loc": {
"start": {
- "line": 131,
+ "line": 177,
"column": 12
},
"end": {
- "line": 160,
+ "line": 205,
"column": 13
}
},
@@ -13305,16 +17378,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4285,
- 4317
+ 5812,
+ 5844
],
"loc": {
"start": {
- "line": 130,
+ "line": 176,
"column": 12
},
"end": {
- "line": 130,
+ "line": 176,
"column": 44
}
}
@@ -13323,31 +17396,31 @@
}
],
"range": [
- 3839,
- 5903
+ 5366,
+ 7383
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 46
},
"end": {
- "line": 161,
+ "line": 206,
"column": 9
}
}
},
"range": [
- 3801,
- 5903
+ 5328,
+ 7383
],
"loc": {
"start": {
- "line": 115,
+ "line": 161,
"column": 8
},
"end": {
- "line": 161,
+ "line": 206,
"column": 9
}
},
@@ -13356,16 +17429,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5913,
- 5938
+ 7393,
+ 7418
],
"loc": {
"start": {
- "line": 163,
+ "line": 208,
"column": 8
},
"end": {
- "line": 163,
+ "line": 208,
"column": 33
}
}
@@ -13380,16 +17453,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5950,
- 5954
+ 7430,
+ 7434
],
"loc": {
"start": {
- "line": 164,
+ "line": 209,
"column": 11
},
"end": {
- "line": 164,
+ "line": 209,
"column": 15
}
}
@@ -13398,31 +17471,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 5955,
- 5963
+ 7435,
+ 7443
],
"loc": {
"start": {
- "line": 164,
+ "line": 209,
"column": 16
},
"end": {
- "line": 164,
+ "line": 209,
"column": 24
}
}
},
"range": [
- 5950,
- 5963
+ 7430,
+ 7443
],
"loc": {
"start": {
- "line": 164,
+ "line": 209,
"column": 11
},
"end": {
- "line": 164,
+ "line": 209,
"column": 24
}
}
@@ -13439,16 +17512,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 5982,
- 5994
+ 7462,
+ 7474
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 16
},
"end": {
- "line": 165,
+ "line": 210,
"column": 28
}
}
@@ -13462,16 +17535,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5997,
- 5999
+ 7477,
+ 7479
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 31
},
"end": {
- "line": 165,
+ "line": 210,
"column": 33
}
}
@@ -13480,31 +17553,31 @@
"type": "Identifier",
"name": "getCustomOptions",
"range": [
- 6000,
- 6016
+ 7480,
+ 7496
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 34
},
"end": {
- "line": 165,
+ "line": 210,
"column": 50
}
}
},
"range": [
- 5997,
- 6016
+ 7477,
+ 7496
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 31
},
"end": {
- "line": 165,
+ "line": 210,
"column": 50
}
}
@@ -13514,64 +17587,64 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6017,
- 6025
+ 7497,
+ 7505
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 51
},
"end": {
- "line": 165,
+ "line": 210,
"column": 59
}
}
}
],
"range": [
- 5997,
- 6026
+ 7477,
+ 7506
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 31
},
"end": {
- "line": 165,
+ "line": 210,
"column": 60
}
}
},
"range": [
- 5982,
- 6026
+ 7462,
+ 7506
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 16
},
"end": {
- "line": 165,
+ "line": 210,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5978,
- 6027
+ 7458,
+ 7507
],
"loc": {
"start": {
- "line": 165,
+ "line": 210,
"column": 12
},
"end": {
- "line": 165,
+ "line": 210,
"column": 61
}
}
@@ -13587,16 +17660,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6040,
- 6044
+ 7520,
+ 7524
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 12
},
"end": {
- "line": 166,
+ "line": 211,
"column": 16
}
}
@@ -13605,31 +17678,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6045,
- 6049
+ 7525,
+ 7529
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 17
},
"end": {
- "line": 166,
+ "line": 211,
"column": 21
}
}
},
"range": [
- 6040,
- 6049
+ 7520,
+ 7529
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 12
},
"end": {
- "line": 166,
+ "line": 211,
"column": 21
}
}
@@ -13641,16 +17714,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 6052,
- 6064
+ 7532,
+ 7544
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 24
},
"end": {
- "line": 166,
+ "line": 211,
"column": 36
}
}
@@ -13660,61 +17733,61 @@
"value": 0,
"raw": "0",
"range": [
- 6065,
- 6066
+ 7545,
+ 7546
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 37
},
"end": {
- "line": 166,
+ "line": 211,
"column": 38
}
}
},
"range": [
- 6052,
- 6067
+ 7532,
+ 7547
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 24
},
"end": {
- "line": 166,
+ "line": 211,
"column": 39
}
}
},
"range": [
- 6040,
- 6067
+ 7520,
+ 7547
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 12
},
"end": {
- "line": 166,
+ "line": 211,
"column": 39
}
}
},
"range": [
- 6040,
- 6068
+ 7520,
+ 7548
],
"loc": {
"start": {
- "line": 166,
+ "line": 211,
"column": 12
},
"end": {
- "line": 166,
+ "line": 211,
"column": 40
}
}
@@ -13730,16 +17803,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6081,
- 6085
+ 7561,
+ 7565
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 12
},
"end": {
- "line": 167,
+ "line": 212,
"column": 16
}
}
@@ -13748,31 +17821,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 6086,
- 6093
+ 7566,
+ 7573
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 17
},
"end": {
- "line": 167,
+ "line": 212,
"column": 24
}
}
},
"range": [
- 6081,
- 6093
+ 7561,
+ 7573
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 12
},
"end": {
- "line": 167,
+ "line": 212,
"column": 24
}
}
@@ -13784,16 +17857,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 6096,
- 6108
+ 7576,
+ 7588
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 27
},
"end": {
- "line": 167,
+ "line": 212,
"column": 39
}
}
@@ -13803,93 +17876,93 @@
"value": 1,
"raw": "1",
"range": [
- 6109,
- 6110
+ 7589,
+ 7590
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 40
},
"end": {
- "line": 167,
+ "line": 212,
"column": 41
}
}
},
"range": [
- 6096,
- 6111
+ 7576,
+ 7591
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 27
},
"end": {
- "line": 167,
+ "line": 212,
"column": 42
}
}
},
"range": [
- 6081,
- 6111
+ 7561,
+ 7591
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 12
},
"end": {
- "line": 167,
+ "line": 212,
"column": 42
}
}
},
"range": [
- 6081,
- 6112
+ 7561,
+ 7592
],
"loc": {
"start": {
- "line": 167,
+ "line": 212,
"column": 12
},
"end": {
- "line": 167,
+ "line": 212,
"column": 43
}
}
}
],
"range": [
- 5964,
- 6122
+ 7444,
+ 7602
],
"loc": {
"start": {
- "line": 164,
+ "line": 209,
"column": 25
},
"end": {
- "line": 168,
+ "line": 213,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5947,
- 6122
+ 7427,
+ 7602
],
"loc": {
"start": {
- "line": 164,
+ "line": 209,
"column": 8
},
"end": {
- "line": 168,
+ "line": 213,
"column": 9
}
},
@@ -13898,16 +17971,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5913,
- 5938
+ 7393,
+ 7418
],
"loc": {
"start": {
- "line": 163,
+ "line": 208,
"column": 8
},
"end": {
- "line": 163,
+ "line": 208,
"column": 33
}
}
@@ -13926,16 +17999,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6135,
- 6137
+ 7615,
+ 7617
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 11
},
"end": {
- "line": 170,
+ "line": 215,
"column": 13
}
}
@@ -13944,31 +18017,31 @@
"type": "Identifier",
"name": "sortSlc",
"range": [
- 6138,
- 6145
+ 7618,
+ 7625
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 14
},
"end": {
- "line": 170,
+ "line": 215,
"column": 21
}
}
},
"range": [
- 6135,
- 6145
+ 7615,
+ 7625
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 11
},
"end": {
- "line": 170,
+ "line": 215,
"column": 21
}
}
@@ -13982,16 +18055,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6150,
- 6154
+ 7630,
+ 7634
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 26
},
"end": {
- "line": 170,
+ "line": 215,
"column": 30
}
}
@@ -14000,62 +18073,62 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 6155,
- 6163
+ 7635,
+ 7643
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 31
},
"end": {
- "line": 170,
+ "line": 215,
"column": 39
}
}
},
"range": [
- 6150,
- 6163
+ 7630,
+ 7643
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 26
},
"end": {
- "line": 170,
+ "line": 215,
"column": 39
}
}
},
"prefix": true,
"range": [
- 6149,
- 6163
+ 7629,
+ 7643
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 25
},
"end": {
- "line": 170,
+ "line": 215,
"column": 39
}
}
},
"range": [
- 6135,
- 6163
+ 7615,
+ 7643
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 11
},
"end": {
- "line": 170,
+ "line": 215,
"column": 39
}
}
@@ -14075,16 +18148,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6183,
- 6185
+ 7663,
+ 7665
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 17
},
"end": {
- "line": 171,
+ "line": 216,
"column": 19
}
}
@@ -14093,47 +18166,47 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 6186,
- 6195
+ 7666,
+ 7675
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 20
},
"end": {
- "line": 171,
+ "line": 216,
"column": 29
}
}
},
"range": [
- 6183,
- 6195
+ 7663,
+ 7675
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 17
},
"end": {
- "line": 171,
+ "line": 216,
"column": 29
}
}
},
"prefix": true,
"range": [
- 6182,
- 6195
+ 7662,
+ 7675
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 16
},
"end": {
- "line": 171,
+ "line": 216,
"column": 29
}
}
@@ -14154,16 +18227,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6214,
- 6218
+ 7694,
+ 7698
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 16
},
"end": {
- "line": 172,
+ "line": 217,
"column": 20
}
}
@@ -14172,31 +18245,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6219,
- 6223
+ 7699,
+ 7703
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 21
},
"end": {
- "line": 172,
+ "line": 217,
"column": 25
}
}
},
"range": [
- 6214,
- 6223
+ 7694,
+ 7703
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 16
},
"end": {
- "line": 172,
+ "line": 217,
"column": 25
}
}
@@ -14205,31 +18278,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6224,
- 6228
+ 7704,
+ 7708
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 26
},
"end": {
- "line": 172,
+ "line": 217,
"column": 30
}
}
},
"range": [
- 6214,
- 6228
+ 7694,
+ 7708
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 16
},
"end": {
- "line": 172,
+ "line": 217,
"column": 30
}
}
@@ -14242,16 +18315,16 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 6229,
- 6233
+ 7709,
+ 7713
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 31
},
"end": {
- "line": 172,
+ "line": 217,
"column": 35
}
}
@@ -14260,62 +18333,62 @@
"type": "Identifier",
"name": "ignoreCase",
"range": [
- 6234,
- 6244
+ 7714,
+ 7724
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 36
},
"end": {
- "line": 172,
+ "line": 217,
"column": 46
}
}
},
"range": [
- 6229,
- 6244
+ 7709,
+ 7724
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 31
},
"end": {
- "line": 172,
+ "line": 217,
"column": 46
}
}
}
],
"range": [
- 6214,
- 6245
+ 7694,
+ 7725
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 16
},
"end": {
- "line": 172,
+ "line": 217,
"column": 47
}
}
},
"range": [
- 6214,
- 6246
+ 7694,
+ 7726
],
"loc": {
"start": {
- "line": 172,
+ "line": 217,
"column": 16
},
"end": {
- "line": 172,
+ "line": 217,
"column": 48
}
}
@@ -14328,16 +18401,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6266,
- 6270
+ 7746,
+ 7750
],
"loc": {
"start": {
- "line": 173,
+ "line": 218,
"column": 19
},
"end": {
- "line": 173,
+ "line": 218,
"column": 23
}
}
@@ -14346,31 +18419,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6271,
- 6283
+ 7751,
+ 7763
],
"loc": {
"start": {
- "line": 173,
+ "line": 218,
"column": 24
},
"end": {
- "line": 173,
+ "line": 218,
"column": 36
}
}
},
"range": [
- 6266,
- 6283
+ 7746,
+ 7763
],
"loc": {
"start": {
- "line": 173,
+ "line": 218,
"column": 19
},
"end": {
- "line": 173,
+ "line": 218,
"column": 36
}
}
@@ -14391,16 +18464,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6306,
- 6310
+ 7786,
+ 7790
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 20
},
"end": {
- "line": 174,
+ "line": 219,
"column": 24
}
}
@@ -14409,31 +18482,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6311,
- 6323
+ 7791,
+ 7803
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 25
},
"end": {
- "line": 174,
+ "line": 219,
"column": 37
}
}
},
"range": [
- 6306,
- 6323
+ 7786,
+ 7803
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 20
},
"end": {
- "line": 174,
+ "line": 219,
"column": 37
}
}
@@ -14442,31 +18515,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6324,
- 6328
+ 7804,
+ 7808
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 38
},
"end": {
- "line": 174,
+ "line": 219,
"column": 42
}
}
},
"range": [
- 6306,
- 6328
+ 7786,
+ 7808
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 20
},
"end": {
- "line": 174,
+ "line": 219,
"column": 42
}
}
@@ -14479,16 +18552,16 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 6329,
- 6333
+ 7809,
+ 7813
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 43
},
"end": {
- "line": 174,
+ "line": 219,
"column": 47
}
}
@@ -14497,110 +18570,110 @@
"type": "Identifier",
"name": "ignoreCase",
"range": [
- 6334,
- 6344
+ 7814,
+ 7824
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 48
},
"end": {
- "line": 174,
+ "line": 219,
"column": 58
}
}
},
"range": [
- 6329,
- 6344
+ 7809,
+ 7824
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 43
},
"end": {
- "line": 174,
+ "line": 219,
"column": 58
}
}
}
],
"range": [
- 6306,
- 6345
+ 7786,
+ 7825
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 20
},
"end": {
- "line": 174,
+ "line": 219,
"column": 59
}
}
},
"range": [
- 6306,
- 6346
+ 7786,
+ 7826
],
"loc": {
"start": {
- "line": 174,
+ "line": 219,
"column": 20
},
"end": {
- "line": 174,
+ "line": 219,
"column": 60
}
}
}
],
"range": [
- 6284,
- 6364
+ 7764,
+ 7844
],
"loc": {
"start": {
- "line": 173,
+ "line": 218,
"column": 37
},
"end": {
- "line": 175,
+ "line": 220,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6263,
- 6364
+ 7743,
+ 7844
],
"loc": {
"start": {
- "line": 173,
+ "line": 218,
"column": 16
},
"end": {
- "line": 175,
+ "line": 220,
"column": 17
}
}
}
],
"range": [
- 6196,
- 6378
+ 7676,
+ 7858
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 30
},
"end": {
- "line": 176,
+ "line": 221,
"column": 13
}
}
@@ -14621,16 +18694,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6402,
- 6406
+ 7882,
+ 7886
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 16
},
"end": {
- "line": 177,
+ "line": 222,
"column": 20
}
}
@@ -14639,31 +18712,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6407,
- 6411
+ 7887,
+ 7891
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 21
},
"end": {
- "line": 177,
+ "line": 222,
"column": 25
}
}
},
"range": [
- 6402,
- 6411
+ 7882,
+ 7891
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 16
},
"end": {
- "line": 177,
+ "line": 222,
"column": 25
}
}
@@ -14672,62 +18745,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6412,
- 6416
+ 7892,
+ 7896
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 26
},
"end": {
- "line": 177,
+ "line": 222,
"column": 30
}
}
},
"range": [
- 6402,
- 6416
+ 7882,
+ 7896
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 16
},
"end": {
- "line": 177,
+ "line": 222,
"column": 30
}
}
},
"arguments": [],
"range": [
- 6402,
- 6418
+ 7882,
+ 7898
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 16
},
"end": {
- "line": 177,
+ "line": 222,
"column": 32
}
}
},
"range": [
- 6402,
- 6419
+ 7882,
+ 7899
],
"loc": {
"start": {
- "line": 177,
+ "line": 222,
"column": 16
},
"end": {
- "line": 177,
+ "line": 222,
"column": 33
}
}
@@ -14740,16 +18813,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6439,
- 6443
+ 7919,
+ 7923
],
"loc": {
"start": {
- "line": 178,
+ "line": 223,
"column": 19
},
"end": {
- "line": 178,
+ "line": 223,
"column": 23
}
}
@@ -14758,31 +18831,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6444,
- 6456
+ 7924,
+ 7936
],
"loc": {
"start": {
- "line": 178,
+ "line": 223,
"column": 24
},
"end": {
- "line": 178,
+ "line": 223,
"column": 36
}
}
},
"range": [
- 6439,
- 6456
+ 7919,
+ 7936
],
"loc": {
"start": {
- "line": 178,
+ "line": 223,
"column": 19
},
"end": {
- "line": 178,
+ "line": 223,
"column": 36
}
}
@@ -14803,16 +18876,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6479,
- 6483
+ 7959,
+ 7963
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 20
},
"end": {
- "line": 179,
+ "line": 224,
"column": 24
}
}
@@ -14821,31 +18894,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6484,
- 6496
+ 7964,
+ 7976
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 25
},
"end": {
- "line": 179,
+ "line": 224,
"column": 37
}
}
},
"range": [
- 6479,
- 6496
+ 7959,
+ 7976
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 20
},
"end": {
- "line": 179,
+ "line": 224,
"column": 37
}
}
@@ -14854,157 +18927,157 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6497,
- 6501
+ 7977,
+ 7981
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 38
},
"end": {
- "line": 179,
+ "line": 224,
"column": 42
}
}
},
"range": [
- 6479,
- 6501
+ 7959,
+ 7981
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 20
},
"end": {
- "line": 179,
+ "line": 224,
"column": 42
}
}
},
"arguments": [],
"range": [
- 6479,
- 6503
+ 7959,
+ 7983
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 20
},
"end": {
- "line": 179,
+ "line": 224,
"column": 44
}
}
},
"range": [
- 6479,
- 6504
+ 7959,
+ 7984
],
"loc": {
"start": {
- "line": 179,
+ "line": 224,
"column": 20
},
"end": {
- "line": 179,
+ "line": 224,
"column": 45
}
}
}
],
"range": [
- 6457,
- 6522
+ 7937,
+ 8002
],
"loc": {
"start": {
- "line": 178,
+ "line": 223,
"column": 37
},
"end": {
- "line": 180,
+ "line": 225,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6436,
- 6522
+ 7916,
+ 8002
],
"loc": {
"start": {
- "line": 178,
+ "line": 223,
"column": 16
},
"end": {
- "line": 180,
+ "line": 225,
"column": 17
}
}
}
],
"range": [
- 6384,
- 6536
+ 7864,
+ 8016
],
"loc": {
"start": {
- "line": 176,
+ "line": 221,
"column": 19
},
"end": {
- "line": 181,
+ "line": 226,
"column": 13
}
}
},
"range": [
- 6178,
- 6536
+ 7658,
+ 8016
],
"loc": {
"start": {
- "line": 171,
+ "line": 216,
"column": 12
},
"end": {
- "line": 181,
+ "line": 226,
"column": 13
}
}
}
],
"range": [
- 6164,
- 6546
+ 7644,
+ 8026
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 40
},
"end": {
- "line": 182,
+ "line": 227,
"column": 9
}
}
},
"alternate": null,
"range": [
- 6132,
- 6546
+ 7612,
+ 8026
],
"loc": {
"start": {
- "line": 170,
+ "line": 215,
"column": 8
},
"end": {
- "line": 182,
+ "line": 227,
"column": 9
}
},
@@ -15013,16 +19086,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6555,
- 6565
+ 8035,
+ 8045
],
"loc": {
"start": {
- "line": 183,
+ "line": 228,
"column": 8
},
"end": {
- "line": 183,
+ "line": 228,
"column": 18
}
}
@@ -15041,16 +19114,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6577,
- 6579
+ 8057,
+ 8059
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 11
},
"end": {
- "line": 184,
+ "line": 229,
"column": 13
}
}
@@ -15059,31 +19132,31 @@
"type": "Identifier",
"name": "sortNumAsc",
"range": [
- 6580,
- 6590
+ 8060,
+ 8070
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 14
},
"end": {
- "line": 184,
+ "line": 229,
"column": 24
}
}
},
"range": [
- 6577,
- 6590
+ 8057,
+ 8070
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 11
},
"end": {
- "line": 184,
+ "line": 229,
"column": 24
}
}
@@ -15103,16 +19176,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6594,
- 6596
+ 8074,
+ 8076
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 28
},
"end": {
- "line": 184,
+ "line": 229,
"column": 30
}
}
@@ -15121,31 +19194,31 @@
"type": "Identifier",
"name": "sortNumAsc",
"range": [
- 6597,
- 6607
+ 8077,
+ 8087
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 31
},
"end": {
- "line": 184,
+ "line": 229,
"column": 41
}
}
},
"range": [
- 6594,
- 6607
+ 8074,
+ 8087
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 28
},
"end": {
- "line": 184,
+ "line": 229,
"column": 41
}
}
@@ -15154,31 +19227,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 6608,
- 6615
+ 8088,
+ 8095
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 42
},
"end": {
- "line": 184,
+ "line": 229,
"column": 49
}
}
},
"range": [
- 6594,
- 6615
+ 8074,
+ 8095
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 28
},
"end": {
- "line": 184,
+ "line": 229,
"column": 49
}
}
@@ -15188,32 +19261,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6616,
- 6624
+ 8096,
+ 8104
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 50
},
"end": {
- "line": 184,
+ "line": 229,
"column": 58
}
}
}
],
"range": [
- 6594,
- 6625
+ 8074,
+ 8105
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 28
},
"end": {
- "line": 184,
+ "line": 229,
"column": 59
}
}
@@ -15226,62 +19299,62 @@
"value": 1,
"raw": "1",
"range": [
- 6630,
- 6631
+ 8110,
+ 8111
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 64
},
"end": {
- "line": 184,
+ "line": 229,
"column": 65
}
}
},
"prefix": true,
"range": [
- 6629,
- 6631
+ 8109,
+ 8111
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 63
},
"end": {
- "line": 184,
+ "line": 229,
"column": 65
}
}
},
"range": [
- 6594,
- 6631
+ 8074,
+ 8111
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 28
},
"end": {
- "line": 184,
+ "line": 229,
"column": 65
}
}
},
"range": [
- 6577,
- 6631
+ 8057,
+ 8111
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 11
},
"end": {
- "line": 184,
+ "line": 229,
"column": 65
}
}
@@ -15307,16 +19380,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6667,
- 6671
+ 8147,
+ 8151
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 16
},
"end": {
- "line": 186,
+ "line": 231,
"column": 20
}
}
@@ -15325,31 +19398,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6672,
- 6676
+ 8152,
+ 8156
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 21
},
"end": {
- "line": 186,
+ "line": 231,
"column": 25
}
}
},
"range": [
- 6667,
- 6676
+ 8147,
+ 8156
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 16
},
"end": {
- "line": 186,
+ "line": 231,
"column": 25
}
}
@@ -15358,31 +19431,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6677,
- 6681
+ 8157,
+ 8161
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 26
},
"end": {
- "line": 186,
+ "line": 231,
"column": 30
}
}
},
"range": [
- 6667,
- 6681
+ 8147,
+ 8161
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 16
},
"end": {
- "line": 186,
+ "line": 231,
"column": 30
}
}
@@ -15392,47 +19465,47 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6682,
- 6692
+ 8162,
+ 8172
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 31
},
"end": {
- "line": 186,
+ "line": 231,
"column": 41
}
}
}
],
"range": [
- 6667,
- 6693
+ 8147,
+ 8173
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 16
},
"end": {
- "line": 186,
+ "line": 231,
"column": 42
}
}
},
"range": [
- 6667,
- 6694
+ 8147,
+ 8174
],
"loc": {
"start": {
- "line": 186,
+ "line": 231,
"column": 16
},
"end": {
- "line": 186,
+ "line": 231,
"column": 43
}
}
@@ -15445,16 +19518,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6714,
- 6718
+ 8194,
+ 8198
],
"loc": {
"start": {
- "line": 187,
+ "line": 232,
"column": 19
},
"end": {
- "line": 187,
+ "line": 232,
"column": 23
}
}
@@ -15463,31 +19536,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6719,
- 6731
+ 8199,
+ 8211
],
"loc": {
"start": {
- "line": 187,
+ "line": 232,
"column": 24
},
"end": {
- "line": 187,
+ "line": 232,
"column": 36
}
}
},
"range": [
- 6714,
- 6731
+ 8194,
+ 8211
],
"loc": {
"start": {
- "line": 187,
+ "line": 232,
"column": 19
},
"end": {
- "line": 187,
+ "line": 232,
"column": 36
}
}
@@ -15508,16 +19581,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6754,
- 6758
+ 8234,
+ 8238
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 20
},
"end": {
- "line": 188,
+ "line": 233,
"column": 24
}
}
@@ -15526,31 +19599,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6759,
- 6771
+ 8239,
+ 8251
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 25
},
"end": {
- "line": 188,
+ "line": 233,
"column": 37
}
}
},
"range": [
- 6754,
- 6771
+ 8234,
+ 8251
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 20
},
"end": {
- "line": 188,
+ "line": 233,
"column": 37
}
}
@@ -15559,31 +19632,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6772,
- 6776
+ 8252,
+ 8256
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 38
},
"end": {
- "line": 188,
+ "line": 233,
"column": 42
}
}
},
"range": [
- 6754,
- 6776
+ 8234,
+ 8256
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 20
},
"end": {
- "line": 188,
+ "line": 233,
"column": 42
}
}
@@ -15593,79 +19666,79 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6777,
- 6787
+ 8257,
+ 8267
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 43
},
"end": {
- "line": 188,
+ "line": 233,
"column": 53
}
}
}
],
"range": [
- 6754,
- 6788
+ 8234,
+ 8268
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 20
},
"end": {
- "line": 188,
+ "line": 233,
"column": 54
}
}
},
"range": [
- 6754,
- 6789
+ 8234,
+ 8269
],
"loc": {
"start": {
- "line": 188,
+ "line": 233,
"column": 20
},
"end": {
- "line": 188,
+ "line": 233,
"column": 55
}
}
}
],
"range": [
- 6732,
- 6807
+ 8212,
+ 8287
],
"loc": {
"start": {
- "line": 187,
+ "line": 232,
"column": 37
},
"end": {
- "line": 189,
+ "line": 234,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6711,
- 6807
+ 8191,
+ 8287
],
"loc": {
"start": {
- "line": 187,
+ "line": 232,
"column": 16
},
"end": {
- "line": 189,
+ "line": 234,
"column": 17
}
}
@@ -15678,16 +19751,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6827,
- 6831
+ 8307,
+ 8311
],
"loc": {
"start": {
- "line": 190,
+ "line": 235,
"column": 19
},
"end": {
- "line": 190,
+ "line": 235,
"column": 23
}
}
@@ -15696,31 +19769,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 6832,
- 6840
+ 8312,
+ 8320
],
"loc": {
"start": {
- "line": 190,
+ "line": 235,
"column": 24
},
"end": {
- "line": 190,
+ "line": 235,
"column": 32
}
}
},
"range": [
- 6827,
- 6840
+ 8307,
+ 8320
],
"loc": {
"start": {
- "line": 190,
+ "line": 235,
"column": 19
},
"end": {
- "line": 190,
+ "line": 235,
"column": 32
}
}
@@ -15741,16 +19814,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6863,
- 6867
+ 8343,
+ 8347
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 20
},
"end": {
- "line": 191,
+ "line": 236,
"column": 24
}
}
@@ -15759,31 +19832,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 6868,
- 6875
+ 8348,
+ 8355
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 25
},
"end": {
- "line": 191,
+ "line": 236,
"column": 32
}
}
},
"range": [
- 6863,
- 6875
+ 8343,
+ 8355
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 20
},
"end": {
- "line": 191,
+ "line": 236,
"column": 32
}
}
@@ -15792,31 +19865,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6876,
- 6880
+ 8356,
+ 8360
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 33
},
"end": {
- "line": 191,
+ "line": 236,
"column": 37
}
}
},
"range": [
- 6863,
- 6880
+ 8343,
+ 8360
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 20
},
"end": {
- "line": 191,
+ "line": 236,
"column": 37
}
}
@@ -15826,95 +19899,95 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6881,
- 6891
+ 8361,
+ 8371
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 38
},
"end": {
- "line": 191,
+ "line": 236,
"column": 48
}
}
}
],
"range": [
- 6863,
- 6892
+ 8343,
+ 8372
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 20
},
"end": {
- "line": 191,
+ "line": 236,
"column": 49
}
}
},
"range": [
- 6863,
- 6893
+ 8343,
+ 8373
],
"loc": {
"start": {
- "line": 191,
+ "line": 236,
"column": 20
},
"end": {
- "line": 191,
+ "line": 236,
"column": 50
}
}
}
],
"range": [
- 6841,
- 6911
+ 8321,
+ 8391
],
"loc": {
"start": {
- "line": 190,
+ "line": 235,
"column": 33
},
"end": {
- "line": 192,
+ "line": 237,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6824,
- 6911
+ 8304,
+ 8391
],
"loc": {
"start": {
- "line": 190,
+ "line": 235,
"column": 16
},
"end": {
- "line": 192,
+ "line": 237,
"column": 17
}
}
}
],
"range": [
- 6649,
- 6925
+ 8129,
+ 8405
],
"loc": {
"start": {
- "line": 185,
+ "line": 230,
"column": 15
},
"end": {
- "line": 193,
+ "line": 238,
"column": 13
}
}
@@ -15925,16 +19998,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 6932,
- 6933
+ 8412,
+ 8413
],
"loc": {
"start": {
- "line": 193,
+ "line": 238,
"column": 20
},
"end": {
- "line": 193,
+ "line": 238,
"column": 21
}
}
@@ -15955,16 +20028,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6953,
- 6957
+ 8433,
+ 8437
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 16
},
"end": {
- "line": 194,
+ "line": 239,
"column": 20
}
}
@@ -15973,31 +20046,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6958,
- 6962
+ 8438,
+ 8442
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 21
},
"end": {
- "line": 194,
+ "line": 239,
"column": 25
}
}
},
"range": [
- 6953,
- 6962
+ 8433,
+ 8442
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 16
},
"end": {
- "line": 194,
+ "line": 239,
"column": 25
}
}
@@ -16006,62 +20079,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6963,
- 6967
+ 8443,
+ 8447
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 26
},
"end": {
- "line": 194,
+ "line": 239,
"column": 30
}
}
},
"range": [
- 6953,
- 6967
+ 8433,
+ 8447
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 16
},
"end": {
- "line": 194,
+ "line": 239,
"column": 30
}
}
},
"arguments": [],
"range": [
- 6953,
- 6969
+ 8433,
+ 8449
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 16
},
"end": {
- "line": 194,
+ "line": 239,
"column": 32
}
}
},
"range": [
- 6953,
- 6970
+ 8433,
+ 8450
],
"loc": {
"start": {
- "line": 194,
+ "line": 239,
"column": 16
},
"end": {
- "line": 194,
+ "line": 239,
"column": 33
}
}
@@ -16074,16 +20147,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6990,
- 6994
+ 8470,
+ 8474
],
"loc": {
"start": {
- "line": 195,
+ "line": 240,
"column": 19
},
"end": {
- "line": 195,
+ "line": 240,
"column": 23
}
}
@@ -16092,31 +20165,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6995,
- 7007
+ 8475,
+ 8487
],
"loc": {
"start": {
- "line": 195,
+ "line": 240,
"column": 24
},
"end": {
- "line": 195,
+ "line": 240,
"column": 36
}
}
},
"range": [
- 6990,
- 7007
+ 8470,
+ 8487
],
"loc": {
"start": {
- "line": 195,
+ "line": 240,
"column": 19
},
"end": {
- "line": 195,
+ "line": 240,
"column": 36
}
}
@@ -16137,16 +20210,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7030,
- 7034
+ 8510,
+ 8514
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 20
},
"end": {
- "line": 196,
+ "line": 241,
"column": 24
}
}
@@ -16155,31 +20228,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7035,
- 7047
+ 8515,
+ 8527
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 25
},
"end": {
- "line": 196,
+ "line": 241,
"column": 37
}
}
},
"range": [
- 7030,
- 7047
+ 8510,
+ 8527
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 20
},
"end": {
- "line": 196,
+ "line": 241,
"column": 37
}
}
@@ -16188,94 +20261,94 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7048,
- 7052
+ 8528,
+ 8532
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 38
},
"end": {
- "line": 196,
+ "line": 241,
"column": 42
}
}
},
"range": [
- 7030,
- 7052
+ 8510,
+ 8532
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 20
},
"end": {
- "line": 196,
+ "line": 241,
"column": 42
}
}
},
"arguments": [],
"range": [
- 7030,
- 7054
+ 8510,
+ 8534
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 20
},
"end": {
- "line": 196,
+ "line": 241,
"column": 44
}
}
},
"range": [
- 7030,
- 7055
+ 8510,
+ 8535
],
"loc": {
"start": {
- "line": 196,
+ "line": 241,
"column": 20
},
"end": {
- "line": 196,
+ "line": 241,
"column": 45
}
}
}
],
"range": [
- 7008,
- 7073
+ 8488,
+ 8553
],
"loc": {
"start": {
- "line": 195,
+ "line": 240,
"column": 37
},
"end": {
- "line": 197,
+ "line": 242,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6987,
- 7073
+ 8467,
+ 8553
],
"loc": {
"start": {
- "line": 195,
+ "line": 240,
"column": 16
},
"end": {
- "line": 197,
+ "line": 242,
"column": 17
}
}
@@ -16288,16 +20361,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7093,
- 7097
+ 8573,
+ 8577
],
"loc": {
"start": {
- "line": 198,
+ "line": 243,
"column": 19
},
"end": {
- "line": 198,
+ "line": 243,
"column": 23
}
}
@@ -16306,31 +20379,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7098,
- 7106
+ 8578,
+ 8586
],
"loc": {
"start": {
- "line": 198,
+ "line": 243,
"column": 24
},
"end": {
- "line": 198,
+ "line": 243,
"column": 32
}
}
},
"range": [
- 7093,
- 7106
+ 8573,
+ 8586
],
"loc": {
"start": {
- "line": 198,
+ "line": 243,
"column": 19
},
"end": {
- "line": 198,
+ "line": 243,
"column": 32
}
}
@@ -16351,16 +20424,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7129,
- 7133
+ 8609,
+ 8613
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 20
},
"end": {
- "line": 199,
+ "line": 244,
"column": 24
}
}
@@ -16369,31 +20442,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7134,
- 7141
+ 8614,
+ 8621
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 25
},
"end": {
- "line": 199,
+ "line": 244,
"column": 32
}
}
},
"range": [
- 7129,
- 7141
+ 8609,
+ 8621
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 20
},
"end": {
- "line": 199,
+ "line": 244,
"column": 32
}
}
@@ -16402,141 +20475,141 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7142,
- 7146
+ 8622,
+ 8626
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 33
},
"end": {
- "line": 199,
+ "line": 244,
"column": 37
}
}
},
"range": [
- 7129,
- 7146
+ 8609,
+ 8626
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 20
},
"end": {
- "line": 199,
+ "line": 244,
"column": 37
}
}
},
"arguments": [],
"range": [
- 7129,
- 7148
+ 8609,
+ 8628
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 20
},
"end": {
- "line": 199,
+ "line": 244,
"column": 39
}
}
},
"range": [
- 7129,
- 7149
+ 8609,
+ 8629
],
"loc": {
"start": {
- "line": 199,
+ "line": 244,
"column": 20
},
"end": {
- "line": 199,
+ "line": 244,
"column": 40
}
}
}
],
"range": [
- 7107,
- 7167
+ 8587,
+ 8647
],
"loc": {
"start": {
- "line": 198,
+ "line": 243,
"column": 33
},
"end": {
- "line": 200,
+ "line": 245,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7090,
- 7167
+ 8570,
+ 8647
],
"loc": {
"start": {
- "line": 198,
+ "line": 243,
"column": 16
},
"end": {
- "line": 200,
+ "line": 245,
"column": 17
}
}
}
],
"range": [
- 6935,
- 7181
+ 8415,
+ 8661
],
"loc": {
"start": {
- "line": 193,
+ "line": 238,
"column": 23
},
"end": {
- "line": 201,
+ "line": 246,
"column": 13
}
}
},
"range": [
- 6926,
- 7181
+ 8406,
+ 8661
],
"loc": {
"start": {
- "line": 193,
+ "line": 238,
"column": 14
},
"end": {
- "line": 201,
+ "line": 246,
"column": 13
}
}
},
"finalizer": null,
"range": [
- 6646,
- 7181
+ 8126,
+ 8661
],
"loc": {
"start": {
- "line": 185,
+ "line": 230,
"column": 12
},
"end": {
- "line": 201,
+ "line": 246,
"column": 13
}
},
@@ -16545,16 +20618,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7181,
- 7220
+ 8661,
+ 8700
],
"loc": {
"start": {
- "line": 201,
+ "line": 246,
"column": 13
},
"end": {
- "line": 201,
+ "line": 246,
"column": 52
}
}
@@ -16563,32 +20636,32 @@
}
],
"range": [
- 6632,
- 7230
+ 8112,
+ 8710
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 66
},
"end": {
- "line": 202,
+ "line": 247,
"column": 9
}
}
},
"alternate": null,
"range": [
- 6574,
- 7230
+ 8054,
+ 8710
],
"loc": {
"start": {
- "line": 184,
+ "line": 229,
"column": 8
},
"end": {
- "line": 202,
+ "line": 247,
"column": 9
}
},
@@ -16597,16 +20670,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6555,
- 6565
+ 8035,
+ 8045
],
"loc": {
"start": {
- "line": 183,
+ "line": 228,
"column": 8
},
"end": {
- "line": 183,
+ "line": 228,
"column": 18
}
}
@@ -16617,16 +20690,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7239,
- 7250
+ 8719,
+ 8730
],
"loc": {
"start": {
- "line": 203,
+ "line": 248,
"column": 8
},
"end": {
- "line": 203,
+ "line": 248,
"column": 19
}
}
@@ -16645,16 +20718,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7262,
- 7264
+ 8742,
+ 8744
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 11
},
"end": {
- "line": 204,
+ "line": 249,
"column": 13
}
}
@@ -16663,31 +20736,31 @@
"type": "Identifier",
"name": "sortNumDesc",
"range": [
- 7265,
- 7276
+ 8745,
+ 8756
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 14
},
"end": {
- "line": 204,
+ "line": 249,
"column": 25
}
}
},
"range": [
- 7262,
- 7276
+ 8742,
+ 8756
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 11
},
"end": {
- "line": 204,
+ "line": 249,
"column": 25
}
}
@@ -16707,16 +20780,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7280,
- 7282
+ 8760,
+ 8762
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 29
},
"end": {
- "line": 204,
+ "line": 249,
"column": 31
}
}
@@ -16725,31 +20798,31 @@
"type": "Identifier",
"name": "sortNumDesc",
"range": [
- 7283,
- 7294
+ 8763,
+ 8774
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 32
},
"end": {
- "line": 204,
+ "line": 249,
"column": 43
}
}
},
"range": [
- 7280,
- 7294
+ 8760,
+ 8774
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 29
},
"end": {
- "line": 204,
+ "line": 249,
"column": 43
}
}
@@ -16758,31 +20831,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 7295,
- 7302
+ 8775,
+ 8782
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 44
},
"end": {
- "line": 204,
+ "line": 249,
"column": 51
}
}
},
"range": [
- 7280,
- 7302
+ 8760,
+ 8782
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 29
},
"end": {
- "line": 204,
+ "line": 249,
"column": 51
}
}
@@ -16792,32 +20865,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 7303,
- 7311
+ 8783,
+ 8791
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 52
},
"end": {
- "line": 204,
+ "line": 249,
"column": 60
}
}
}
],
"range": [
- 7280,
- 7312
+ 8760,
+ 8792
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 29
},
"end": {
- "line": 204,
+ "line": 249,
"column": 61
}
}
@@ -16830,62 +20903,62 @@
"value": 1,
"raw": "1",
"range": [
- 7317,
- 7318
+ 8797,
+ 8798
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 66
},
"end": {
- "line": 204,
+ "line": 249,
"column": 67
}
}
},
"prefix": true,
"range": [
- 7316,
- 7318
+ 8796,
+ 8798
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 65
},
"end": {
- "line": 204,
+ "line": 249,
"column": 67
}
}
},
"range": [
- 7280,
- 7318
+ 8760,
+ 8798
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 29
},
"end": {
- "line": 204,
+ "line": 249,
"column": 67
}
}
},
"range": [
- 7262,
- 7318
+ 8742,
+ 8798
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 11
},
"end": {
- "line": 204,
+ "line": 249,
"column": 67
}
}
@@ -16911,16 +20984,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7354,
- 7358
+ 8834,
+ 8838
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 16
},
"end": {
- "line": 206,
+ "line": 251,
"column": 20
}
}
@@ -16929,31 +21002,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 7359,
- 7363
+ 8839,
+ 8843
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 21
},
"end": {
- "line": 206,
+ "line": 251,
"column": 25
}
}
},
"range": [
- 7354,
- 7363
+ 8834,
+ 8843
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 16
},
"end": {
- "line": 206,
+ "line": 251,
"column": 25
}
}
@@ -16962,31 +21035,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7364,
- 7368
+ 8844,
+ 8848
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 26
},
"end": {
- "line": 206,
+ "line": 251,
"column": 30
}
}
},
"range": [
- 7354,
- 7368
+ 8834,
+ 8848
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 16
},
"end": {
- "line": 206,
+ "line": 251,
"column": 30
}
}
@@ -16996,47 +21069,47 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7369,
- 7380
+ 8849,
+ 8860
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 31
},
"end": {
- "line": 206,
+ "line": 251,
"column": 42
}
}
}
],
"range": [
- 7354,
- 7381
+ 8834,
+ 8861
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 16
},
"end": {
- "line": 206,
+ "line": 251,
"column": 43
}
}
},
"range": [
- 7354,
- 7382
+ 8834,
+ 8862
],
"loc": {
"start": {
- "line": 206,
+ "line": 251,
"column": 16
},
"end": {
- "line": 206,
+ "line": 251,
"column": 44
}
}
@@ -17049,16 +21122,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7402,
- 7406
+ 8882,
+ 8886
],
"loc": {
"start": {
- "line": 207,
+ "line": 252,
"column": 19
},
"end": {
- "line": 207,
+ "line": 252,
"column": 23
}
}
@@ -17067,31 +21140,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7407,
- 7419
+ 8887,
+ 8899
],
"loc": {
"start": {
- "line": 207,
+ "line": 252,
"column": 24
},
"end": {
- "line": 207,
+ "line": 252,
"column": 36
}
}
},
"range": [
- 7402,
- 7419
+ 8882,
+ 8899
],
"loc": {
"start": {
- "line": 207,
+ "line": 252,
"column": 19
},
"end": {
- "line": 207,
+ "line": 252,
"column": 36
}
}
@@ -17112,16 +21185,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7442,
- 7446
+ 8922,
+ 8926
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 20
},
"end": {
- "line": 208,
+ "line": 253,
"column": 24
}
}
@@ -17130,31 +21203,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7447,
- 7459
+ 8927,
+ 8939
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 25
},
"end": {
- "line": 208,
+ "line": 253,
"column": 37
}
}
},
"range": [
- 7442,
- 7459
+ 8922,
+ 8939
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 20
},
"end": {
- "line": 208,
+ "line": 253,
"column": 37
}
}
@@ -17163,31 +21236,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7460,
- 7464
+ 8940,
+ 8944
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 38
},
"end": {
- "line": 208,
+ "line": 253,
"column": 42
}
}
},
"range": [
- 7442,
- 7464
+ 8922,
+ 8944
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 20
},
"end": {
- "line": 208,
+ "line": 253,
"column": 42
}
}
@@ -17197,79 +21270,79 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7465,
- 7476
+ 8945,
+ 8956
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 43
},
"end": {
- "line": 208,
+ "line": 253,
"column": 54
}
}
}
],
"range": [
- 7442,
- 7477
+ 8922,
+ 8957
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 20
},
"end": {
- "line": 208,
+ "line": 253,
"column": 55
}
}
},
"range": [
- 7442,
- 7478
+ 8922,
+ 8958
],
"loc": {
"start": {
- "line": 208,
+ "line": 253,
"column": 20
},
"end": {
- "line": 208,
+ "line": 253,
"column": 56
}
}
}
],
"range": [
- 7420,
- 7496
+ 8900,
+ 8976
],
"loc": {
"start": {
- "line": 207,
+ "line": 252,
"column": 37
},
"end": {
- "line": 209,
+ "line": 254,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7399,
- 7496
+ 8879,
+ 8976
],
"loc": {
"start": {
- "line": 207,
+ "line": 252,
"column": 16
},
"end": {
- "line": 209,
+ "line": 254,
"column": 17
}
}
@@ -17282,16 +21355,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7516,
- 7520
+ 8996,
+ 9000
],
"loc": {
"start": {
- "line": 210,
+ "line": 255,
"column": 19
},
"end": {
- "line": 210,
+ "line": 255,
"column": 23
}
}
@@ -17300,31 +21373,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7521,
- 7529
+ 9001,
+ 9009
],
"loc": {
"start": {
- "line": 210,
+ "line": 255,
"column": 24
},
"end": {
- "line": 210,
+ "line": 255,
"column": 32
}
}
},
"range": [
- 7516,
- 7529
+ 8996,
+ 9009
],
"loc": {
"start": {
- "line": 210,
+ "line": 255,
"column": 19
},
"end": {
- "line": 210,
+ "line": 255,
"column": 32
}
}
@@ -17345,16 +21418,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7552,
- 7556
+ 9032,
+ 9036
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 20
},
"end": {
- "line": 211,
+ "line": 256,
"column": 24
}
}
@@ -17363,31 +21436,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7557,
- 7564
+ 9037,
+ 9044
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 25
},
"end": {
- "line": 211,
+ "line": 256,
"column": 32
}
}
},
"range": [
- 7552,
- 7564
+ 9032,
+ 9044
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 20
},
"end": {
- "line": 211,
+ "line": 256,
"column": 32
}
}
@@ -17396,31 +21469,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7565,
- 7569
+ 9045,
+ 9049
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 33
},
"end": {
- "line": 211,
+ "line": 256,
"column": 37
}
}
},
"range": [
- 7552,
- 7569
+ 9032,
+ 9049
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 20
},
"end": {
- "line": 211,
+ "line": 256,
"column": 37
}
}
@@ -17430,95 +21503,95 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7570,
- 7581
+ 9050,
+ 9061
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 38
},
"end": {
- "line": 211,
+ "line": 256,
"column": 49
}
}
}
],
"range": [
- 7552,
- 7582
+ 9032,
+ 9062
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 20
},
"end": {
- "line": 211,
+ "line": 256,
"column": 50
}
}
},
"range": [
- 7552,
- 7583
+ 9032,
+ 9063
],
"loc": {
"start": {
- "line": 211,
+ "line": 256,
"column": 20
},
"end": {
- "line": 211,
+ "line": 256,
"column": 51
}
}
}
],
"range": [
- 7530,
- 7601
+ 9010,
+ 9081
],
"loc": {
"start": {
- "line": 210,
+ "line": 255,
"column": 33
},
"end": {
- "line": 212,
+ "line": 257,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7513,
- 7601
+ 8993,
+ 9081
],
"loc": {
"start": {
- "line": 210,
+ "line": 255,
"column": 16
},
"end": {
- "line": 212,
+ "line": 257,
"column": 17
}
}
}
],
"range": [
- 7336,
- 7615
+ 8816,
+ 9095
],
"loc": {
"start": {
- "line": 205,
+ "line": 250,
"column": 15
},
"end": {
- "line": 213,
+ "line": 258,
"column": 13
}
}
@@ -17529,16 +21602,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 7622,
- 7623
+ 9102,
+ 9103
],
"loc": {
"start": {
- "line": 213,
+ "line": 258,
"column": 20
},
"end": {
- "line": 213,
+ "line": 258,
"column": 21
}
}
@@ -17559,16 +21632,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7643,
- 7647
+ 9123,
+ 9127
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 16
},
"end": {
- "line": 214,
+ "line": 259,
"column": 20
}
}
@@ -17577,31 +21650,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 7648,
- 7652
+ 9128,
+ 9132
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 21
},
"end": {
- "line": 214,
+ "line": 259,
"column": 25
}
}
},
"range": [
- 7643,
- 7652
+ 9123,
+ 9132
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 16
},
"end": {
- "line": 214,
+ "line": 259,
"column": 25
}
}
@@ -17610,62 +21683,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7653,
- 7657
+ 9133,
+ 9137
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 26
},
"end": {
- "line": 214,
+ "line": 259,
"column": 30
}
}
},
"range": [
- 7643,
- 7657
+ 9123,
+ 9137
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 16
},
"end": {
- "line": 214,
+ "line": 259,
"column": 30
}
}
},
"arguments": [],
"range": [
- 7643,
- 7659
+ 9123,
+ 9139
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 16
},
"end": {
- "line": 214,
+ "line": 259,
"column": 32
}
}
},
"range": [
- 7643,
- 7660
+ 9123,
+ 9140
],
"loc": {
"start": {
- "line": 214,
+ "line": 259,
"column": 16
},
"end": {
- "line": 214,
+ "line": 259,
"column": 33
}
}
@@ -17678,16 +21751,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7680,
- 7684
+ 9160,
+ 9164
],
"loc": {
"start": {
- "line": 215,
+ "line": 260,
"column": 19
},
"end": {
- "line": 215,
+ "line": 260,
"column": 23
}
}
@@ -17696,31 +21769,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7685,
- 7697
+ 9165,
+ 9177
],
"loc": {
"start": {
- "line": 215,
+ "line": 260,
"column": 24
},
"end": {
- "line": 215,
+ "line": 260,
"column": 36
}
}
},
"range": [
- 7680,
- 7697
+ 9160,
+ 9177
],
"loc": {
"start": {
- "line": 215,
+ "line": 260,
"column": 19
},
"end": {
- "line": 215,
+ "line": 260,
"column": 36
}
}
@@ -17741,16 +21814,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7720,
- 7724
+ 9200,
+ 9204
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 20
},
"end": {
- "line": 216,
+ "line": 261,
"column": 24
}
}
@@ -17759,31 +21832,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7725,
- 7737
+ 9205,
+ 9217
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 25
},
"end": {
- "line": 216,
+ "line": 261,
"column": 37
}
}
},
"range": [
- 7720,
- 7737
+ 9200,
+ 9217
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 20
},
"end": {
- "line": 216,
+ "line": 261,
"column": 37
}
}
@@ -17792,94 +21865,94 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7738,
- 7742
+ 9218,
+ 9222
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 38
},
"end": {
- "line": 216,
+ "line": 261,
"column": 42
}
}
},
"range": [
- 7720,
- 7742
+ 9200,
+ 9222
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 20
},
"end": {
- "line": 216,
+ "line": 261,
"column": 42
}
}
},
"arguments": [],
"range": [
- 7720,
- 7744
+ 9200,
+ 9224
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 20
},
"end": {
- "line": 216,
+ "line": 261,
"column": 44
}
}
},
"range": [
- 7720,
- 7745
+ 9200,
+ 9225
],
"loc": {
"start": {
- "line": 216,
+ "line": 261,
"column": 20
},
"end": {
- "line": 216,
+ "line": 261,
"column": 45
}
}
}
],
"range": [
- 7698,
- 7747
+ 9178,
+ 9227
],
"loc": {
"start": {
- "line": 215,
+ "line": 260,
"column": 37
},
"end": {
- "line": 216,
+ "line": 261,
"column": 47
}
}
},
"alternate": null,
"range": [
- 7677,
- 7747
+ 9157,
+ 9227
],
"loc": {
"start": {
- "line": 215,
+ "line": 260,
"column": 16
},
"end": {
- "line": 216,
+ "line": 261,
"column": 47
}
}
@@ -17892,16 +21965,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7767,
- 7771
+ 9247,
+ 9251
],
"loc": {
"start": {
- "line": 217,
+ "line": 262,
"column": 19
},
"end": {
- "line": 217,
+ "line": 262,
"column": 23
}
}
@@ -17910,31 +21983,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7772,
- 7780
+ 9252,
+ 9260
],
"loc": {
"start": {
- "line": 217,
+ "line": 262,
"column": 24
},
"end": {
- "line": 217,
+ "line": 262,
"column": 32
}
}
},
"range": [
- 7767,
- 7780
+ 9247,
+ 9260
],
"loc": {
"start": {
- "line": 217,
+ "line": 262,
"column": 19
},
"end": {
- "line": 217,
+ "line": 262,
"column": 32
}
}
@@ -17955,16 +22028,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7803,
- 7807
+ 9283,
+ 9287
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 20
},
"end": {
- "line": 218,
+ "line": 263,
"column": 24
}
}
@@ -17973,31 +22046,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7808,
- 7815
+ 9288,
+ 9295
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 25
},
"end": {
- "line": 218,
+ "line": 263,
"column": 32
}
}
},
"range": [
- 7803,
- 7815
+ 9283,
+ 9295
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 20
},
"end": {
- "line": 218,
+ "line": 263,
"column": 32
}
}
@@ -18006,141 +22079,141 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7816,
- 7820
+ 9296,
+ 9300
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 33
},
"end": {
- "line": 218,
+ "line": 263,
"column": 37
}
}
},
"range": [
- 7803,
- 7820
+ 9283,
+ 9300
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 20
},
"end": {
- "line": 218,
+ "line": 263,
"column": 37
}
}
},
"arguments": [],
"range": [
- 7803,
- 7822
+ 9283,
+ 9302
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 20
},
"end": {
- "line": 218,
+ "line": 263,
"column": 39
}
}
},
"range": [
- 7803,
- 7823
+ 9283,
+ 9303
],
"loc": {
"start": {
- "line": 218,
+ "line": 263,
"column": 20
},
"end": {
- "line": 218,
+ "line": 263,
"column": 40
}
}
}
],
"range": [
- 7781,
- 7841
+ 9261,
+ 9321
],
"loc": {
"start": {
- "line": 217,
+ "line": 262,
"column": 33
},
"end": {
- "line": 219,
+ "line": 264,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7764,
- 7841
+ 9244,
+ 9321
],
"loc": {
"start": {
- "line": 217,
+ "line": 262,
"column": 16
},
"end": {
- "line": 219,
+ "line": 264,
"column": 17
}
}
}
],
"range": [
- 7625,
- 7855
+ 9105,
+ 9335
],
"loc": {
"start": {
- "line": 213,
+ "line": 258,
"column": 23
},
"end": {
- "line": 220,
+ "line": 265,
"column": 13
}
}
},
"range": [
- 7616,
- 7855
+ 9096,
+ 9335
],
"loc": {
"start": {
- "line": 213,
+ "line": 258,
"column": 14
},
"end": {
- "line": 220,
+ "line": 265,
"column": 13
}
}
},
"finalizer": null,
"range": [
- 7333,
- 7855
+ 8813,
+ 9335
],
"loc": {
"start": {
- "line": 205,
+ "line": 250,
"column": 12
},
"end": {
- "line": 220,
+ "line": 265,
"column": 13
}
},
@@ -18149,16 +22222,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7855,
- 7894
+ 9335,
+ 9374
],
"loc": {
"start": {
- "line": 220,
+ "line": 265,
"column": 13
},
"end": {
- "line": 220,
+ "line": 265,
"column": 52
}
}
@@ -18167,32 +22240,32 @@
}
],
"range": [
- 7319,
- 7904
+ 8799,
+ 9384
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 68
},
"end": {
- "line": 221,
+ "line": 266,
"column": 9
}
}
},
"alternate": null,
"range": [
- 7259,
- 7904
+ 8739,
+ 9384
],
"loc": {
"start": {
- "line": 204,
+ "line": 249,
"column": 8
},
"end": {
- "line": 221,
+ "line": 266,
"column": 9
}
},
@@ -18201,16 +22274,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7181,
- 7220
+ 8661,
+ 8700
],
"loc": {
"start": {
- "line": 201,
+ "line": 246,
"column": 13
},
"end": {
- "line": 201,
+ "line": 246,
"column": 52
}
}
@@ -18219,16 +22292,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7239,
- 7250
+ 8719,
+ 8730
],
"loc": {
"start": {
- "line": 203,
+ "line": 248,
"column": 8
},
"end": {
- "line": 203,
+ "line": 248,
"column": 19
}
}
@@ -18245,16 +22318,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7914,
- 7918
+ 9394,
+ 9398
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 8
},
"end": {
- "line": 223,
+ "line": 268,
"column": 12
}
}
@@ -18263,31 +22336,31 @@
"type": "Identifier",
"name": "addChecks",
"range": [
- 7919,
- 7928
+ 9399,
+ 9408
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 13
},
"end": {
- "line": 223,
+ "line": 268,
"column": 22
}
}
},
"range": [
- 7914,
- 7928
+ 9394,
+ 9408
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 8
},
"end": {
- "line": 223,
+ "line": 268,
"column": 22
}
}
@@ -18297,16 +22370,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 7929,
- 7937
+ 9409,
+ 9417
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 23
},
"end": {
- "line": 223,
+ "line": 268,
"column": 31
}
}
@@ -18315,102 +22388,48 @@
"type": "Identifier",
"name": "ul",
"range": [
- 7939,
- 7941
+ 9419,
+ 9421
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 33
},
"end": {
- "line": 223,
+ "line": 268,
"column": 35
}
}
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 7943,
- 7945
- ],
- "loc": {
- "start": {
- "line": 223,
- "column": 37
- },
- "end": {
- "line": 223,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "separator",
- "range": [
- 7946,
- 7955
- ],
- "loc": {
- "start": {
- "line": 223,
- "column": 40
- },
- "end": {
- "line": 223,
- "column": 49
- }
- }
- },
- "range": [
- 7943,
- 7955
- ],
- "loc": {
- "start": {
- "line": 223,
- "column": 37
- },
- "end": {
- "line": 223,
- "column": 49
- }
- }
}
],
"range": [
- 7914,
- 7956
+ 9394,
+ 9422
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 8
},
"end": {
- "line": 223,
- "column": 50
+ "line": 268,
+ "column": 36
}
}
},
"range": [
- 7914,
- 7957
+ 9394,
+ 9423
],
"loc": {
"start": {
- "line": 223,
+ "line": 268,
"column": 8
},
"end": {
- "line": 223,
- "column": 51
+ "line": 268,
+ "column": 37
}
},
"leadingComments": [
@@ -18418,16 +22437,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7855,
- 7894
+ 9335,
+ 9374
],
"loc": {
"start": {
- "line": 220,
+ "line": 265,
"column": 13
},
"end": {
- "line": 220,
+ "line": 265,
"column": 52
}
}
@@ -18443,16 +22462,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7970,
- 7972
+ 9436,
+ 9438
],
"loc": {
"start": {
- "line": 225,
+ "line": 270,
"column": 11
},
"end": {
- "line": 225,
+ "line": 270,
"column": 13
}
}
@@ -18461,31 +22480,31 @@
"type": "Identifier",
"name": "loadFltOnDemand",
"range": [
- 7973,
- 7988
+ 9439,
+ 9454
],
"loc": {
"start": {
- "line": 225,
+ "line": 270,
"column": 14
},
"end": {
- "line": 225,
+ "line": 270,
"column": 29
}
}
},
"range": [
- 7970,
- 7988
+ 9436,
+ 9454
],
"loc": {
"start": {
- "line": 225,
+ "line": 270,
"column": 11
},
"end": {
- "line": 225,
+ "line": 270,
"column": 29
}
}
@@ -18505,16 +22524,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 8003,
- 8006
+ 9469,
+ 9472
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 12
},
"end": {
- "line": 226,
+ "line": 271,
"column": 15
}
}
@@ -18523,31 +22542,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 8007,
- 8016
+ 9473,
+ 9482
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 16
},
"end": {
- "line": 226,
+ "line": 271,
"column": 25
}
}
},
"range": [
- 8003,
- 8016
+ 9469,
+ 9482
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 12
},
"end": {
- "line": 226,
+ "line": 271,
"column": 25
}
}
@@ -18557,78 +22576,78 @@
"value": "",
"raw": "''",
"range": [
- 8019,
- 8021
+ 9485,
+ 9487
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 28
},
"end": {
- "line": 226,
+ "line": 271,
"column": 30
}
}
},
"range": [
- 8003,
- 8021
+ 9469,
+ 9487
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 12
},
"end": {
- "line": 226,
+ "line": 271,
"column": 30
}
}
},
"range": [
- 8003,
- 8022
+ 9469,
+ 9488
],
"loc": {
"start": {
- "line": 226,
+ "line": 271,
"column": 12
},
"end": {
- "line": 226,
+ "line": 271,
"column": 31
}
}
}
],
"range": [
- 7989,
- 8032
+ 9455,
+ 9498
],
"loc": {
"start": {
- "line": 225,
+ "line": 270,
"column": 30
},
"end": {
- "line": 227,
+ "line": 272,
"column": 9
}
}
},
"alternate": null,
"range": [
- 7967,
- 8032
+ 9433,
+ 9498
],
"loc": {
"start": {
- "line": 225,
+ "line": 270,
"column": 8
},
"end": {
- "line": 227,
+ "line": 272,
"column": 9
}
}
@@ -18644,16 +22663,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 8041,
- 8044
+ 9507,
+ 9510
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
+ "line": 273,
"column": 11
}
}
@@ -18662,31 +22681,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 8045,
- 8056
+ 9511,
+ 9522
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 12
},
"end": {
- "line": 228,
+ "line": 273,
"column": 23
}
}
},
"range": [
- 8041,
- 8056
+ 9507,
+ 9522
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
+ "line": 273,
"column": 23
}
}
@@ -18696,47 +22715,47 @@
"type": "Identifier",
"name": "ul",
"range": [
- 8057,
- 8059
+ 9523,
+ 9525
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 24
},
"end": {
- "line": 228,
+ "line": 273,
"column": 26
}
}
}
],
"range": [
- 8041,
- 8060
+ 9507,
+ 9526
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
+ "line": 273,
"column": 27
}
}
},
"range": [
- 8041,
- 8061
+ 9507,
+ 9527
],
"loc": {
"start": {
- "line": 228,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
+ "line": 273,
"column": 28
}
}
@@ -18752,16 +22771,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 8070,
- 8073
+ 9536,
+ 9539
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 8
},
"end": {
- "line": 229,
+ "line": 274,
"column": 11
}
}
@@ -18770,31 +22789,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 8074,
- 8086
+ 9540,
+ 9552
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 12
},
"end": {
- "line": 229,
+ "line": 274,
"column": 24
}
}
},
"range": [
- 8070,
- 8086
+ 9536,
+ 9552
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 8
},
"end": {
- "line": 229,
+ "line": 274,
"column": 24
}
}
@@ -18805,16 +22824,16 @@
"value": "filled",
"raw": "'filled'",
"range": [
- 8087,
- 8095
+ 9553,
+ 9561
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 25
},
"end": {
- "line": 229,
+ "line": 274,
"column": 33
}
}
@@ -18824,63 +22843,261 @@
"value": "1",
"raw": "'1'",
"range": [
- 8097,
- 8100
+ 9563,
+ 9566
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 35
},
"end": {
- "line": 229,
+ "line": 274,
"column": 38
}
}
}
],
"range": [
- 8070,
- 8101
+ 9536,
+ 9567
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 8
},
"end": {
- "line": 229,
+ "line": 274,
"column": 39
}
}
},
"range": [
- 8070,
- 8102
+ 9536,
+ 9568
],
"loc": {
"start": {
- "line": 229,
+ "line": 274,
"column": 8
},
"end": {
- "line": 229,
+ "line": 274,
"column": 40
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 9578,
+ 9582
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 8
+ },
+ "end": {
+ "line": 276,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 9583,
+ 9590
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 13
+ },
+ "end": {
+ "line": 276,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 9578,
+ 9590
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 8
+ },
+ "end": {
+ "line": 276,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 9591,
+ 9595
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 21
+ },
+ "end": {
+ "line": 276,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 9578,
+ 9595
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 8
+ },
+ "end": {
+ "line": 276,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 9596,
+ 9621
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 26
+ },
+ "end": {
+ "line": 276,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 9623,
+ 9625
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 53
+ },
+ "end": {
+ "line": 276,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 9627,
+ 9635
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 57
+ },
+ "end": {
+ "line": 276,
+ "column": 65
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 9637,
+ 9640
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 67
+ },
+ "end": {
+ "line": 276,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 9578,
+ 9641
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 8
+ },
+ "end": {
+ "line": 276,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 9578,
+ 9642
+ ],
+ "loc": {
+ "start": {
+ "line": 276,
+ "column": 8
+ },
+ "end": {
+ "line": 276,
+ "column": 72
+ }
+ }
}
],
"range": [
- 2755,
- 8108
+ 4218,
+ 9648
],
"loc": {
"start": {
- "line": 82,
- "column": 53
+ "line": 126,
+ "column": 52
},
"end": {
- "line": 230,
+ "line": 277,
"column": 5
}
}
@@ -18888,16 +23105,16 @@
"generator": false,
"expression": false,
"range": [
- 2712,
- 8108
+ 4175,
+ 9648
],
"loc": {
"start": {
- "line": 82,
- "column": 10
+ "line": 126,
+ "column": 9
},
"end": {
- "line": 230,
+ "line": 277,
"column": 5
}
}
@@ -18905,16 +23122,16 @@
"kind": "method",
"computed": false,
"range": [
- 2706,
- 8108
+ 4170,
+ 9648
],
"loc": {
"start": {
- "line": 82,
+ "line": 126,
"column": 4
},
"end": {
- "line": 230,
+ "line": 277,
"column": 5
}
},
@@ -18923,16 +23140,16 @@
"type": "Block",
"value": "*\n * Build checklist UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
"range": [
- 2492,
- 2701
+ 3956,
+ 4165
],
"loc": {
"start": {
- "line": 76,
+ "line": 120,
"column": 4
},
"end": {
- "line": 81,
+ "line": 125,
"column": 7
}
}
@@ -18943,16 +23160,16 @@
"type": "Block",
"value": "*\n * Add checklist options\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 8114,
- 8244
+ 9654,
+ 9784
],
"loc": {
"start": {
- "line": 232,
+ "line": 279,
"column": 4
},
"end": {
- "line": 236,
+ "line": 283,
"column": 7
}
}
@@ -18966,16 +23183,16 @@
"type": "Identifier",
"name": "addChecks",
"range": [
- 8249,
- 8258
+ 9789,
+ 9798
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 4
},
"end": {
- "line": 237,
+ "line": 284,
"column": 13
}
}
@@ -18988,16 +23205,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 8259,
- 8267
+ 9799,
+ 9807
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 14
},
"end": {
- "line": 237,
+ "line": 284,
"column": 22
}
}
@@ -19006,16 +23223,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 8269,
- 8271
+ 9809,
+ 9811
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 24
},
"end": {
- "line": 237,
+ "line": 284,
"column": 26
}
}
@@ -19033,16 +23250,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8286,
- 8288
+ 9826,
+ 9828
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 12
},
"end": {
- "line": 238,
+ "line": 285,
"column": 14
}
}
@@ -19053,16 +23270,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8291,
- 8295
+ 9831,
+ 9835
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 17
},
"end": {
- "line": 238,
+ "line": 285,
"column": 21
}
}
@@ -19071,63 +23288,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8296,
- 8298
+ 9836,
+ 9838
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 22
},
"end": {
- "line": 238,
+ "line": 285,
"column": 24
}
}
},
"range": [
- 8291,
- 8298
+ 9831,
+ 9838
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 17
},
"end": {
- "line": 238,
+ "line": 285,
"column": 24
}
}
},
"range": [
- 8286,
- 8298
+ 9826,
+ 9838
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 12
},
"end": {
- "line": 238,
+ "line": 285,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8282,
- 8299
+ 9822,
+ 9839
],
"loc": {
"start": {
- "line": 238,
+ "line": 285,
"column": 8
},
"end": {
- "line": 238,
+ "line": 285,
"column": 25
}
}
@@ -19141,16 +23358,16 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 8312,
- 8317
+ 9852,
+ 9857
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 12
},
"end": {
- "line": 239,
+ "line": 286,
"column": 17
}
}
@@ -19163,16 +23380,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8320,
- 8324
+ 9860,
+ 9864
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 20
},
"end": {
- "line": 239,
+ "line": 286,
"column": 24
}
}
@@ -19181,31 +23398,31 @@
"type": "Identifier",
"name": "addTChecks",
"range": [
- 8325,
- 8335
+ 9865,
+ 9875
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 25
},
"end": {
- "line": 239,
+ "line": 286,
"column": 35
}
}
},
"range": [
- 8320,
- 8335
+ 9860,
+ 9875
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 20
},
"end": {
- "line": 239,
+ "line": 286,
"column": 35
}
}
@@ -19215,16 +23432,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 8336,
- 8344
+ 9876,
+ 9884
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 36
},
"end": {
- "line": 239,
+ "line": 286,
"column": 44
}
}
@@ -19233,1545 +23450,68 @@
"type": "Identifier",
"name": "ul",
"range": [
- 8346,
- 8348
+ 9886,
+ 9888
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 46
},
"end": {
- "line": 239,
+ "line": 286,
"column": 48
}
}
}
],
"range": [
- 8320,
- 8349
+ 9860,
+ 9889
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 20
},
"end": {
- "line": 239,
+ "line": 286,
"column": 49
}
}
},
"range": [
- 8312,
- 8349
+ 9852,
+ 9889
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 12
},
"end": {
- "line": 239,
+ "line": 286,
"column": 49
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8308,
- 8350
+ 9848,
+ 9890
],
"loc": {
"start": {
- "line": 239,
+ "line": 286,
"column": 8
},
"end": {
- "line": 239,
+ "line": 286,
"column": 50
}
}
},
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 8363,
- 8369
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 12
- },
- "end": {
- "line": 240,
- "column": 18
- }
- }
- },
- "init": {
- "type": "ArrayExpression",
- "elements": [],
- "range": [
- 8372,
- 8374
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 21
- },
- "end": {
- "line": 240,
- "column": 23
- }
- }
- },
- "range": [
- 8363,
- 8374
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 12
- },
- "end": {
- "line": 240,
- "column": 23
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 8359,
- 8375
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 8
- },
- "end": {
- "line": 240,
- "column": 24
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "remember grid values",
- "range": [
- 8376,
- 8398
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 25
- },
- "end": {
- "line": 240,
- "column": 47
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "store",
- "range": [
- 8411,
- 8416
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 12
- },
- "end": {
- "line": 241,
- "column": 17
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 8419,
- 8421
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 20
- },
- "end": {
- "line": 241,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 8422,
- 8429
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 23
- },
- "end": {
- "line": 241,
- "column": 30
- }
- }
- },
- "range": [
- 8419,
- 8429
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 20
- },
- "end": {
- "line": 241,
- "column": 30
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "store",
- "raw": "'store'",
- "range": [
- 8430,
- 8437
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 31
- },
- "end": {
- "line": 241,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 8419,
- 8438
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 20
- },
- "end": {
- "line": 241,
- "column": 39
- }
- }
- },
- "range": [
- 8411,
- 8438
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 12
- },
- "end": {
- "line": 241,
- "column": 39
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 8407,
- 8439
- ],
- "loc": {
- "start": {
- "line": 241,
- "column": 8
- },
- "end": {
- "line": 241,
- "column": 40
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "remember grid values",
- "range": [
- 8376,
- 8398
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 25
- },
- "end": {
- "line": 240,
- "column": 47
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tmpVal",
- "range": [
- 8452,
- 8458
- ],
- "loc": {
- "start": {
- "line": 242,
- "column": 12
- },
- "end": {
- "line": 242,
- "column": 18
- }
- }
- },
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "Identifier",
- "name": "store",
- "range": [
- 8461,
- 8466
- ],
- "loc": {
- "start": {
- "line": 242,
- "column": 21
- },
- "end": {
- "line": 242,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "store",
- "range": [
- 8485,
- 8490
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 16
- },
- "end": {
- "line": 243,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterValues",
- "range": [
- 8491,
- 8506
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 22
- },
- "end": {
- "line": 243,
- "column": 37
- }
- }
- },
- "range": [
- 8485,
- 8506
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 16
- },
- "end": {
- "line": 243,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 8507,
- 8509
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 38
- },
- "end": {
- "line": 243,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 8510,
- 8526
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 41
- },
- "end": {
- "line": 243,
- "column": 57
- }
- }
- },
- "range": [
- 8507,
- 8526
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 38
- },
- "end": {
- "line": 243,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 8485,
- 8527
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 16
- },
- "end": {
- "line": 243,
- "column": 58
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 8528,
- 8536
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 59
- },
- "end": {
- "line": 243,
- "column": 67
- }
- }
- },
- "range": [
- 8485,
- 8537
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 16
- },
- "end": {
- "line": 243,
- "column": 68
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 8540,
- 8544
- ],
- "loc": {
- "start": {
- "line": 243,
- "column": 71
- },
- "end": {
- "line": 243,
- "column": 75
- }
- }
- },
- "range": [
- 8461,
- 8544
- ],
- "loc": {
- "start": {
- "line": 242,
- "column": 21
- },
- "end": {
- "line": 243,
- "column": 75
- }
- }
- },
- "range": [
- 8452,
- 8544
- ],
- "loc": {
- "start": {
- "line": 242,
- "column": 12
- },
- "end": {
- "line": 243,
- "column": 75
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 8448,
- 8545
- ],
- "loc": {
- "start": {
- "line": 242,
- "column": 8
- },
- "end": {
- "line": 243,
- "column": 76
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "Identifier",
- "name": "tmpVal",
- "range": [
- 8557,
- 8563
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 11
- },
- "end": {
- "line": 244,
- "column": 17
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 8567,
- 8570
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 21
- },
- "end": {
- "line": 244,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "trim",
- "range": [
- 8571,
- 8575
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 25
- },
- "end": {
- "line": 244,
- "column": 29
- }
- }
- },
- "range": [
- 8567,
- 8575
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 21
- },
- "end": {
- "line": 244,
- "column": 29
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "tmpVal",
- "range": [
- 8576,
- 8582
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 30
- },
- "end": {
- "line": 244,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 8567,
- 8583
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 21
- },
- "end": {
- "line": 244,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 8584,
- 8590
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 38
- },
- "end": {
- "line": 244,
- "column": 44
- }
- }
- },
- "range": [
- 8567,
- 8590
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 21
- },
- "end": {
- "line": 244,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 8593,
- 8594
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 47
- },
- "end": {
- "line": 244,
- "column": 48
- }
- }
- },
- "range": [
- 8567,
- 8594
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 21
- },
- "end": {
- "line": 244,
- "column": 48
- }
- }
- },
- "range": [
- 8557,
- 8594
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 11
- },
- "end": {
- "line": 244,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 8612,
- 8614
- ],
- "loc": {
- "start": {
- "line": 245,
- "column": 15
- },
- "end": {
- "line": 245,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasCustomSlcOptions",
- "range": [
- 8615,
- 8634
- ],
- "loc": {
- "start": {
- "line": 245,
- "column": 18
- },
- "end": {
- "line": 245,
- "column": 37
- }
- }
- },
- "range": [
- 8612,
- 8634
- ],
- "loc": {
- "start": {
- "line": 245,
- "column": 15
- },
- "end": {
- "line": 245,
- "column": 37
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 8654,
- 8656
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "customSlcOptions",
- "range": [
- 8657,
- 8673
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 19
- },
- "end": {
- "line": 246,
- "column": 35
- }
- }
- },
- "range": [
- 8654,
- 8673
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cols",
- "range": [
- 8674,
- 8678
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 36
- },
- "end": {
- "line": 246,
- "column": 40
- }
- }
- },
- "range": [
- 8654,
- 8678
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 8679,
- 8686
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 41
- },
- "end": {
- "line": 246,
- "column": 48
- }
- }
- },
- "range": [
- 8654,
- 8686
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 8687,
- 8695
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 49
- },
- "end": {
- "line": 246,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 8654,
- 8696
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 58
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 8701,
- 8702
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 63
- },
- "end": {
- "line": 246,
- "column": 64
- }
- }
- },
- "prefix": true,
- "range": [
- 8700,
- 8702
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 62
- },
- "end": {
- "line": 246,
- "column": 64
- }
- }
- },
- "range": [
- 8654,
- 8702
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 16
- },
- "end": {
- "line": 246,
- "column": 64
- }
- }
- },
- "range": [
- 8612,
- 8702
- ],
- "loc": {
- "start": {
- "line": 245,
- "column": 15
- },
- "end": {
- "line": 246,
- "column": 64
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 8721,
- 8727
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 16
- },
- "end": {
- "line": 247,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 8728,
- 8732
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 23
- },
- "end": {
- "line": 247,
- "column": 27
- }
- }
- },
- "range": [
- 8721,
- 8732
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 16
- },
- "end": {
- "line": 247,
- "column": 27
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "tmpVal",
- "range": [
- 8733,
- 8739
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 28
- },
- "end": {
- "line": 247,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 8721,
- 8740
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 16
- },
- "end": {
- "line": 247,
- "column": 35
- }
- }
- },
- "range": [
- 8721,
- 8741
- ],
- "loc": {
- "start": {
- "line": 247,
- "column": 16
- },
- "end": {
- "line": 247,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 8703,
- 8755
- ],
- "loc": {
- "start": {
- "line": 246,
- "column": 65
- },
- "end": {
- "line": 248,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 8779,
- 8785
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 16
- },
- "end": {
- "line": 249,
- "column": 22
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tmpVal",
- "range": [
- 8788,
- 8794
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 25
- },
- "end": {
- "line": 249,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "split",
- "range": [
- 8795,
- 8800
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 32
- },
- "end": {
- "line": 249,
- "column": 37
- }
- }
- },
- "range": [
- 8788,
- 8800
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 25
- },
- "end": {
- "line": 249,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 8801,
- 8804
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 38
- },
- "end": {
- "line": 249,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 8805,
- 8807
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 42
- },
- "end": {
- "line": 249,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 8808,
- 8818
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 45
- },
- "end": {
- "line": 249,
- "column": 55
- }
- }
- },
- "range": [
- 8805,
- 8818
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 42
- },
- "end": {
- "line": 249,
- "column": 55
- }
- }
- },
- "range": [
- 8801,
- 8818
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 38
- },
- "end": {
- "line": 249,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 8819,
- 8822
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 56
- },
- "end": {
- "line": 249,
- "column": 59
- }
- }
- },
- "range": [
- 8801,
- 8822
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 38
- },
- "end": {
- "line": 249,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 8788,
- 8823
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 25
- },
- "end": {
- "line": 249,
- "column": 60
- }
- }
- },
- "range": [
- 8779,
- 8823
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 16
- },
- "end": {
- "line": 249,
- "column": 60
- }
- }
- },
- "range": [
- 8779,
- 8824
- ],
- "loc": {
- "start": {
- "line": 249,
- "column": 16
- },
- "end": {
- "line": 249,
- "column": 61
- }
- }
- }
- ],
- "range": [
- 8761,
- 8838
- ],
- "loc": {
- "start": {
- "line": 248,
- "column": 19
- },
- "end": {
- "line": 250,
- "column": 13
- }
- }
- },
- "range": [
- 8609,
- 8838
- ],
- "loc": {
- "start": {
- "line": 245,
- "column": 12
- },
- "end": {
- "line": 250,
- "column": 13
- }
- }
- }
- ],
- "range": [
- 8595,
- 8848
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 49
- },
- "end": {
- "line": 251,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 8554,
- 8848
- ],
- "loc": {
- "start": {
- "line": 244,
- "column": 8
- },
- "end": {
- "line": 251,
- "column": 9
- }
- }
- },
{
"type": "ForStatement",
"init": {
@@ -20783,16 +23523,16 @@
"type": "Identifier",
"name": "y",
"range": [
- 8866,
- 8867
+ 9908,
+ 9909
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 16
},
"end": {
- "line": 253,
+ "line": 288,
"column": 17
}
}
@@ -20802,48 +23542,48 @@
"value": 0,
"raw": "0",
"range": [
- 8868,
- 8869
+ 9910,
+ 9911
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 18
},
"end": {
- "line": 253,
+ "line": 288,
"column": 19
}
}
},
"range": [
- 8866,
- 8869
+ 9908,
+ 9911
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 16
},
"end": {
- "line": 253,
+ "line": 288,
"column": 19
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8862,
- 8869
+ 9904,
+ 9911
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 12
},
"end": {
- "line": 253,
+ "line": 288,
"column": 19
}
}
@@ -20855,16 +23595,16 @@
"type": "Identifier",
"name": "y",
"range": [
- 8871,
- 8872
+ 9913,
+ 9914
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 21
},
"end": {
- "line": 253,
+ "line": 288,
"column": 22
}
}
@@ -20878,16 +23618,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8873,
- 8877
+ 9915,
+ 9919
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 23
},
"end": {
- "line": 253,
+ "line": 288,
"column": 27
}
}
@@ -20896,31 +23636,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 8878,
- 8882
+ 9920,
+ 9924
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 28
},
"end": {
- "line": 253,
+ "line": 288,
"column": 32
}
}
},
"range": [
- 8873,
- 8882
+ 9915,
+ 9924
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 23
},
"end": {
- "line": 253,
+ "line": 288,
"column": 32
}
}
@@ -20929,46 +23669,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 8883,
- 8889
+ 9925,
+ 9931
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 33
},
"end": {
- "line": 253,
+ "line": 288,
"column": 39
}
}
},
"range": [
- 8873,
- 8889
+ 9915,
+ 9931
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 23
},
"end": {
- "line": 253,
+ "line": 288,
"column": 39
}
}
},
"range": [
- 8871,
- 8889
+ 9913,
+ 9931
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 21
},
"end": {
- "line": 253,
+ "line": 288,
"column": 39
}
}
@@ -20980,32 +23720,32 @@
"type": "Identifier",
"name": "y",
"range": [
- 8891,
- 8892
+ 9933,
+ 9934
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 41
},
"end": {
- "line": 253,
+ "line": 288,
"column": 42
}
}
},
"prefix": false,
"range": [
- 8891,
- 8894
+ 9933,
+ 9936
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 41
},
"end": {
- "line": 253,
+ "line": 288,
"column": 44
}
}
@@ -21022,16 +23762,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 8913,
- 8916
+ 9955,
+ 9958
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 16
},
"end": {
- "line": 254,
+ "line": 289,
"column": 19
}
}
@@ -21045,16 +23785,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8919,
- 8923
+ 9961,
+ 9965
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 22
},
"end": {
- "line": 254,
+ "line": 289,
"column": 26
}
}
@@ -21063,31 +23803,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 8924,
- 8928
+ 9966,
+ 9970
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 27
},
"end": {
- "line": 254,
+ "line": 289,
"column": 31
}
}
},
"range": [
- 8919,
- 8928
+ 9961,
+ 9970
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 22
},
"end": {
- "line": 254,
+ "line": 289,
"column": 31
}
}
@@ -21096,63 +23836,63 @@
"type": "Identifier",
"name": "y",
"range": [
- 8929,
- 8930
+ 9971,
+ 9972
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 32
},
"end": {
- "line": 254,
+ "line": 289,
"column": 33
}
}
},
"range": [
- 8919,
- 8931
+ 9961,
+ 9973
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 22
},
"end": {
- "line": 254,
+ "line": 289,
"column": 34
}
}
},
"range": [
- 8913,
- 8931
+ 9955,
+ 9973
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 16
},
"end": {
- "line": 254,
+ "line": 289,
"column": 34
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8909,
- 8932
+ 9951,
+ 9974
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 12
},
"end": {
- "line": 254,
+ "line": 289,
"column": 35
}
},
@@ -21161,16 +23901,16 @@
"type": "Line",
"value": "item value",
"range": [
- 8933,
- 8945
+ 9975,
+ 9987
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 36
},
"end": {
- "line": 254,
+ "line": 289,
"column": 48
}
}
@@ -21186,16 +23926,16 @@
"type": "Identifier",
"name": "lbl",
"range": [
- 8962,
- 8965
+ 10004,
+ 10007
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 16
},
"end": {
- "line": 255,
+ "line": 290,
"column": 19
}
}
@@ -21208,16 +23948,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8968,
- 8972
+ 10010,
+ 10014
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 22
},
"end": {
- "line": 255,
+ "line": 290,
"column": 26
}
}
@@ -21226,31 +23966,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 8973,
- 8981
+ 10015,
+ 10023
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 27
},
"end": {
- "line": 255,
+ "line": 290,
"column": 35
}
}
},
"range": [
- 8968,
- 8981
+ 10010,
+ 10023
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 22
},
"end": {
- "line": 255,
+ "line": 290,
"column": 35
}
}
@@ -21264,16 +24004,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8984,
- 8988
+ 10026,
+ 10030
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 38
},
"end": {
- "line": 255,
+ "line": 290,
"column": 42
}
}
@@ -21282,31 +24022,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 8989,
- 8996
+ 10031,
+ 10038
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 43
},
"end": {
- "line": 255,
+ "line": 290,
"column": 50
}
}
},
"range": [
- 8984,
- 8996
+ 10026,
+ 10038
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 38
},
"end": {
- "line": 255,
+ "line": 290,
"column": 50
}
}
@@ -21315,31 +24055,31 @@
"type": "Identifier",
"name": "y",
"range": [
- 8997,
- 8998
+ 10039,
+ 10040
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 51
},
"end": {
- "line": 255,
+ "line": 290,
"column": 52
}
}
},
"range": [
- 8984,
- 8999
+ 10026,
+ 10041
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 38
},
"end": {
- "line": 255,
+ "line": 290,
"column": 53
}
}
@@ -21348,63 +24088,63 @@
"type": "Identifier",
"name": "val",
"range": [
- 9002,
- 9005
+ 10044,
+ 10047
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 56
},
"end": {
- "line": 255,
+ "line": 290,
"column": 59
}
}
},
"range": [
- 8968,
- 9005
+ 10010,
+ 10047
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 22
},
"end": {
- "line": 255,
+ "line": 290,
"column": 59
}
}
},
"range": [
- 8962,
- 9005
+ 10004,
+ 10047
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 16
},
"end": {
- "line": 255,
+ "line": 290,
"column": 59
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8958,
- 9006
+ 10000,
+ 10048
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 12
},
"end": {
- "line": 255,
+ "line": 290,
"column": 60
}
},
@@ -21413,16 +24153,16 @@
"type": "Line",
"value": "item value",
"range": [
- 8933,
- 8945
+ 9975,
+ 9987
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 36
},
"end": {
- "line": 254,
+ "line": 289,
"column": 48
}
}
@@ -21433,16 +24173,16 @@
"type": "Line",
"value": "item text",
"range": [
- 9007,
- 9018
+ 10049,
+ 10060
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 61
},
"end": {
- "line": 255,
+ "line": 290,
"column": 72
}
}
@@ -21458,16 +24198,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 9035,
- 9037
+ 10077,
+ 10079
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 16
},
"end": {
- "line": 256,
+ "line": 291,
"column": 18
}
}
@@ -21481,16 +24221,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9040,
- 9043
+ 10082,
+ 10085
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 21
},
"end": {
- "line": 256,
+ "line": 291,
"column": 24
}
}
@@ -21499,31 +24239,31 @@
"type": "Identifier",
"name": "createCheckItem",
"range": [
- 9044,
- 9059
+ 10086,
+ 10101
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 25
},
"end": {
- "line": 256,
+ "line": 291,
"column": 40
}
}
},
"range": [
- 9040,
- 9059
+ 10082,
+ 10101
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 21
},
"end": {
- "line": 256,
+ "line": 291,
"column": 40
}
}
@@ -21545,16 +24285,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9085,
- 9087
+ 10127,
+ 10129
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 24
},
"end": {
- "line": 257,
+ "line": 292,
"column": 26
}
}
@@ -21563,31 +24303,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 9088,
- 9094
+ 10130,
+ 10136
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 27
},
"end": {
- "line": 257,
+ "line": 292,
"column": 33
}
}
},
"range": [
- 9085,
- 9094
+ 10127,
+ 10136
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 24
},
"end": {
- "line": 257,
+ "line": 292,
"column": 33
}
}
@@ -21596,31 +24336,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 9095,
- 9103
+ 10137,
+ 10145
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 34
},
"end": {
- "line": 257,
+ "line": 292,
"column": 42
}
}
},
"range": [
- 9085,
- 9104
+ 10127,
+ 10146
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 24
},
"end": {
- "line": 257,
+ "line": 292,
"column": 43
}
}
@@ -21630,31 +24370,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 9105,
- 9108
+ 10147,
+ 10150
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 44
},
"end": {
- "line": 257,
+ "line": 292,
"column": 47
}
}
},
"range": [
- 9085,
- 9108
+ 10127,
+ 10150
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 24
},
"end": {
- "line": 257,
+ "line": 292,
"column": 47
}
}
@@ -21666,16 +24406,16 @@
"type": "Identifier",
"name": "y",
"range": [
- 9110,
- 9111
+ 10152,
+ 10153
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 49
},
"end": {
- "line": 257,
+ "line": 292,
"column": 50
}
}
@@ -21684,46 +24424,46 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 9112,
- 9117
+ 10154,
+ 10159
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 51
},
"end": {
- "line": 257,
+ "line": 292,
"column": 56
}
}
},
"range": [
- 9110,
- 9117
+ 10152,
+ 10159
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 49
},
"end": {
- "line": 257,
+ "line": 292,
"column": 56
}
}
},
"range": [
- 9085,
- 9118
+ 10127,
+ 10160
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 24
},
"end": {
- "line": 257,
+ "line": 292,
"column": 57
}
}
@@ -21732,16 +24472,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 9120,
- 9123
+ 10162,
+ 10165
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 59
},
"end": {
- "line": 257,
+ "line": 292,
"column": 62
}
}
@@ -21750,64 +24490,64 @@
"type": "Identifier",
"name": "lbl",
"range": [
- 9125,
- 9128
+ 10167,
+ 10170
],
"loc": {
"start": {
- "line": 257,
+ "line": 292,
"column": 64
},
"end": {
- "line": 257,
+ "line": 292,
"column": 67
}
}
}
],
"range": [
- 9040,
- 9129
+ 10082,
+ 10171
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 21
},
"end": {
- "line": 257,
+ "line": 292,
"column": 68
}
}
},
"range": [
- 9035,
- 9129
+ 10077,
+ 10171
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 16
},
"end": {
- "line": 257,
+ "line": 292,
"column": 68
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9031,
- 9130
+ 10073,
+ 10172
],
"loc": {
"start": {
- "line": 256,
+ "line": 291,
"column": 12
},
"end": {
- "line": 257,
+ "line": 292,
"column": 69
}
},
@@ -21816,16 +24556,16 @@
"type": "Line",
"value": "item text",
"range": [
- 9007,
- 9018
+ 10049,
+ 10060
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 61
},
"end": {
- "line": 255,
+ "line": 290,
"column": 72
}
}
@@ -21844,16 +24584,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 9143,
- 9145
+ 10185,
+ 10187
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 12
},
"end": {
- "line": 258,
+ "line": 293,
"column": 14
}
}
@@ -21862,31 +24602,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 9146,
- 9155
+ 10188,
+ 10197
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 15
},
"end": {
- "line": 258,
+ "line": 293,
"column": 24
}
}
},
"range": [
- 9143,
- 9155
+ 10185,
+ 10197
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 12
},
"end": {
- "line": 258,
+ "line": 293,
"column": 24
}
}
@@ -21897,16 +24637,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9158,
- 9162
+ 10200,
+ 10204
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 27
},
"end": {
- "line": 258,
+ "line": 293,
"column": 31
}
}
@@ -21915,61 +24655,61 @@
"type": "Identifier",
"name": "checkListItemCssClass",
"range": [
- 9163,
- 9184
+ 10205,
+ 10226
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 32
},
"end": {
- "line": 258,
+ "line": 293,
"column": 53
}
}
},
"range": [
- 9158,
- 9184
+ 10200,
+ 10226
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 27
},
"end": {
- "line": 258,
+ "line": 293,
"column": 53
}
}
},
"range": [
- 9143,
- 9184
+ 10185,
+ 10226
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 12
},
"end": {
- "line": 258,
+ "line": 293,
"column": 53
}
}
},
"range": [
- 9143,
- 9185
+ 10185,
+ 10227
],
"loc": {
"start": {
- "line": 258,
+ "line": 293,
"column": 12
},
"end": {
- "line": 258,
+ "line": 293,
"column": 54
}
}
@@ -21989,16 +24729,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9201,
- 9203
+ 10243,
+ 10245
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 15
},
"end": {
- "line": 259,
+ "line": 294,
"column": 17
}
}
@@ -22007,31 +24747,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 9204,
- 9217
+ 10246,
+ 10259
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 18
},
"end": {
- "line": 259,
+ "line": 294,
"column": 31
}
}
},
"range": [
- 9201,
- 9217
+ 10243,
+ 10259
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 15
},
"end": {
- "line": 259,
+ "line": 294,
"column": 31
}
}
@@ -22043,16 +24783,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9221,
- 9223
+ 10263,
+ 10265
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 35
},
"end": {
- "line": 259,
+ "line": 294,
"column": 37
}
}
@@ -22061,46 +24801,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 9224,
- 9246
+ 10266,
+ 10288
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 38
},
"end": {
- "line": 259,
+ "line": 294,
"column": 60
}
}
},
"range": [
- 9221,
- 9246
+ 10263,
+ 10288
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 35
},
"end": {
- "line": 259,
+ "line": 294,
"column": 60
}
}
},
"range": [
- 9201,
- 9246
+ 10243,
+ 10288
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 15
},
"end": {
- "line": 259,
+ "line": 294,
"column": 60
}
}
@@ -22114,16 +24854,16 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 9266,
- 9269
+ 10308,
+ 10311
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 16
},
"end": {
- "line": 260,
+ "line": 295,
"column": 19
}
}
@@ -22132,31 +24872,31 @@
"type": "Identifier",
"name": "has",
"range": [
- 9270,
- 9273
+ 10312,
+ 10315
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 20
},
"end": {
- "line": 260,
+ "line": 295,
"column": 23
}
}
},
"range": [
- 9266,
- 9273
+ 10308,
+ 10315
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 16
},
"end": {
- "line": 260,
+ "line": 295,
"column": 23
}
}
@@ -22168,16 +24908,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9274,
- 9278
+ 10316,
+ 10320
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 24
},
"end": {
- "line": 260,
+ "line": 295,
"column": 28
}
}
@@ -22186,31 +24926,31 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 9279,
- 9291
+ 10321,
+ 10333
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 29
},
"end": {
- "line": 260,
+ "line": 295,
"column": 41
}
}
},
"range": [
- 9274,
- 9291
+ 10316,
+ 10333
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 24
},
"end": {
- "line": 260,
+ "line": 295,
"column": 41
}
}
@@ -22224,17 +24964,17 @@
"type": "Identifier",
"name": "Str",
"range": [
- 9317,
- 9320
+ 10355,
+ 10358
],
"loc": {
"start": {
- "line": 261,
- "column": 24
+ "line": 296,
+ "column": 20
},
"end": {
- "line": 261,
- "column": 27
+ "line": 296,
+ "column": 23
}
}
},
@@ -22242,32 +24982,32 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9321,
- 9330
+ 10359,
+ 10368
],
"loc": {
"start": {
- "line": 261,
- "column": 28
+ "line": 296,
+ "column": 24
},
"end": {
- "line": 261,
- "column": 37
+ "line": 296,
+ "column": 33
}
}
},
"range": [
- 9317,
- 9330
+ 10355,
+ 10368
],
"loc": {
"start": {
- "line": 261,
- "column": 24
+ "line": 296,
+ "column": 20
},
"end": {
- "line": 261,
- "column": 37
+ "line": 296,
+ "column": 33
}
}
},
@@ -22276,17 +25016,17 @@
"type": "Identifier",
"name": "val",
"range": [
- 9331,
- 9334
+ 10369,
+ 10372
],
"loc": {
"start": {
- "line": 261,
- "column": 38
+ "line": 296,
+ "column": 34
},
"end": {
- "line": 261,
- "column": 41
+ "line": 296,
+ "column": 37
}
}
},
@@ -22297,17 +25037,17 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9336,
- 9338
+ 10374,
+ 10376
],
"loc": {
"start": {
- "line": 261,
- "column": 43
+ "line": 296,
+ "column": 39
},
"end": {
- "line": 261,
- "column": 45
+ "line": 296,
+ "column": 41
}
}
},
@@ -22315,48 +25055,48 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9339,
- 9348
+ 10377,
+ 10386
],
"loc": {
"start": {
- "line": 261,
- "column": 46
+ "line": 296,
+ "column": 42
},
"end": {
- "line": 261,
- "column": 55
+ "line": 296,
+ "column": 51
}
}
},
"range": [
- 9336,
- 9348
+ 10374,
+ 10386
],
"loc": {
"start": {
- "line": 261,
- "column": 43
+ "line": 296,
+ "column": 39
},
"end": {
- "line": 261,
- "column": 55
+ "line": 296,
+ "column": 51
}
}
}
],
"range": [
- 9317,
- 9349
+ 10355,
+ 10387
],
"loc": {
"start": {
- "line": 261,
- "column": 24
+ "line": 296,
+ "column": 20
},
"end": {
- "line": 261,
- "column": 56
+ "line": 296,
+ "column": 52
}
}
},
@@ -22367,17 +25107,17 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9351,
- 9353
+ 10389,
+ 10391
],
"loc": {
"start": {
- "line": 261,
- "column": 58
+ "line": 296,
+ "column": 54
},
"end": {
- "line": 261,
- "column": 60
+ "line": 296,
+ "column": 56
}
}
},
@@ -22385,63 +25125,63 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9354,
- 9363
+ 10392,
+ 10401
],
"loc": {
"start": {
- "line": 261,
- "column": 61
+ "line": 296,
+ "column": 57
},
"end": {
- "line": 261,
- "column": 70
+ "line": 296,
+ "column": 66
}
}
},
"range": [
- 9351,
- 9363
+ 10389,
+ 10401
],
"loc": {
"start": {
- "line": 261,
- "column": 58
+ "line": 296,
+ "column": 54
},
"end": {
- "line": 261,
- "column": 70
+ "line": 296,
+ "column": 66
}
}
}
],
"range": [
- 9266,
- 9364
+ 10308,
+ 10402
],
"loc": {
"start": {
- "line": 260,
+ "line": 295,
"column": 16
},
"end": {
- "line": 261,
- "column": 71
+ "line": 296,
+ "column": 67
}
}
},
"range": [
- 9201,
- 9364
+ 10243,
+ 10402
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 15
},
"end": {
- "line": 261,
- "column": 71
+ "line": 296,
+ "column": 67
}
}
},
@@ -22459,17 +25199,17 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9387,
- 9390
+ 10421,
+ 10424
],
"loc": {
"start": {
- "line": 262,
- "column": 20
+ "line": 297,
+ "column": 16
},
"end": {
- "line": 262,
- "column": 23
+ "line": 297,
+ "column": 19
}
}
},
@@ -22477,32 +25217,32 @@
"type": "Identifier",
"name": "addClass",
"range": [
- 9391,
- 9399
+ 10425,
+ 10433
],
"loc": {
"start": {
- "line": 262,
- "column": 24
+ "line": 297,
+ "column": 20
},
"end": {
- "line": 262,
- "column": 32
+ "line": 297,
+ "column": 28
}
}
},
"range": [
- 9387,
- 9399
+ 10421,
+ 10433
],
"loc": {
"start": {
- "line": 262,
- "column": 20
+ "line": 297,
+ "column": 16
},
"end": {
- "line": 262,
- "column": 32
+ "line": 297,
+ "column": 28
}
}
},
@@ -22511,17 +25251,17 @@
"type": "Identifier",
"name": "li",
"range": [
- 9400,
- 9402
+ 10434,
+ 10436
],
"loc": {
"start": {
- "line": 262,
- "column": 33
+ "line": 297,
+ "column": 29
},
"end": {
- "line": 262,
- "column": 35
+ "line": 297,
+ "column": 31
}
}
},
@@ -22531,17 +25271,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 9404,
- 9408
+ 10438,
+ 10442
],
"loc": {
"start": {
- "line": 262,
- "column": 37
+ "line": 297,
+ "column": 33
},
"end": {
- "line": 262,
- "column": 41
+ "line": 297,
+ "column": 37
}
}
},
@@ -22549,63 +25289,63 @@
"type": "Identifier",
"name": "checkListItemDisabledCssClass",
"range": [
- 9409,
- 9438
+ 10443,
+ 10472
],
"loc": {
"start": {
- "line": 262,
- "column": 42
+ "line": 297,
+ "column": 38
},
"end": {
- "line": 262,
- "column": 71
+ "line": 297,
+ "column": 67
}
}
},
"range": [
- 9404,
- 9438
+ 10438,
+ 10472
],
"loc": {
"start": {
- "line": 262,
- "column": 37
+ "line": 297,
+ "column": 33
},
"end": {
- "line": 262,
- "column": 71
+ "line": 297,
+ "column": 67
}
}
}
],
"range": [
- 9387,
- 9439
+ 10421,
+ 10473
],
"loc": {
"start": {
- "line": 262,
- "column": 20
+ "line": 297,
+ "column": 16
},
"end": {
- "line": 262,
- "column": 72
+ "line": 297,
+ "column": 68
}
}
},
"range": [
- 9387,
- 9440
+ 10421,
+ 10474
],
"loc": {
"start": {
- "line": 262,
- "column": 20
+ "line": 297,
+ "column": 16
},
"end": {
- "line": 262,
- "column": 73
+ "line": 297,
+ "column": 69
}
}
},
@@ -22624,17 +25364,17 @@
"type": "Identifier",
"name": "li",
"range": [
- 9461,
- 9463
+ 10491,
+ 10493
],
"loc": {
"start": {
- "line": 263,
- "column": 20
+ "line": 298,
+ "column": 16
},
"end": {
- "line": 263,
- "column": 22
+ "line": 298,
+ "column": 18
}
}
},
@@ -22642,32 +25382,32 @@
"type": "Identifier",
"name": "check",
"range": [
- 9464,
- 9469
+ 10494,
+ 10499
],
"loc": {
"start": {
- "line": 263,
- "column": 23
+ "line": 298,
+ "column": 19
},
"end": {
- "line": 263,
- "column": 28
+ "line": 298,
+ "column": 24
}
}
},
"range": [
- 9461,
- 9469
+ 10491,
+ 10499
],
"loc": {
"start": {
- "line": 263,
- "column": 20
+ "line": 298,
+ "column": 16
},
"end": {
- "line": 263,
- "column": 28
+ "line": 298,
+ "column": 24
}
}
},
@@ -22675,32 +25415,32 @@
"type": "Identifier",
"name": "disabled",
"range": [
- 9470,
- 9478
+ 10500,
+ 10508
],
"loc": {
"start": {
- "line": 263,
- "column": 29
+ "line": 298,
+ "column": 25
},
"end": {
- "line": 263,
- "column": 37
+ "line": 298,
+ "column": 33
}
}
},
"range": [
- 9461,
- 9478
+ 10491,
+ 10508
],
"loc": {
"start": {
- "line": 263,
- "column": 20
+ "line": 298,
+ "column": 16
},
"end": {
- "line": 263,
- "column": 37
+ "line": 298,
+ "column": 33
}
}
},
@@ -22709,47 +25449,47 @@
"value": true,
"raw": "true",
"range": [
- 9481,
- 9485
+ 10511,
+ 10515
],
"loc": {
"start": {
- "line": 263,
- "column": 40
+ "line": 298,
+ "column": 36
},
"end": {
- "line": 263,
- "column": 44
+ "line": 298,
+ "column": 40
}
}
},
"range": [
- 9461,
- 9485
+ 10491,
+ 10515
],
"loc": {
"start": {
- "line": 263,
- "column": 20
+ "line": 298,
+ "column": 16
},
"end": {
- "line": 263,
- "column": 44
+ "line": 298,
+ "column": 40
}
}
},
"range": [
- 9461,
- 9486
+ 10491,
+ 10516
],
"loc": {
"start": {
- "line": 263,
- "column": 20
+ "line": 298,
+ "column": 16
},
"end": {
- "line": 263,
- "column": 45
+ "line": 298,
+ "column": 41
}
}
},
@@ -22765,17 +25505,17 @@
"type": "Identifier",
"name": "li",
"range": [
- 9507,
- 9509
+ 10533,
+ 10535
],
"loc": {
"start": {
- "line": 264,
- "column": 20
+ "line": 299,
+ "column": 16
},
"end": {
- "line": 264,
- "column": 22
+ "line": 299,
+ "column": 18
}
}
},
@@ -22783,32 +25523,32 @@
"type": "Identifier",
"name": "disabled",
"range": [
- 9510,
- 9518
+ 10536,
+ 10544
],
"loc": {
"start": {
- "line": 264,
- "column": 23
+ "line": 299,
+ "column": 19
},
"end": {
- "line": 264,
- "column": 31
+ "line": 299,
+ "column": 27
}
}
},
"range": [
- 9507,
- 9518
+ 10533,
+ 10544
],
"loc": {
"start": {
- "line": 264,
- "column": 20
+ "line": 299,
+ "column": 16
},
"end": {
- "line": 264,
- "column": 31
+ "line": 299,
+ "column": 27
}
}
},
@@ -22817,62 +25557,62 @@
"value": true,
"raw": "true",
"range": [
- 9521,
- 9525
+ 10547,
+ 10551
],
"loc": {
"start": {
- "line": 264,
- "column": 34
+ "line": 299,
+ "column": 30
},
"end": {
- "line": 264,
- "column": 38
+ "line": 299,
+ "column": 34
}
}
},
"range": [
- 9507,
- 9525
+ 10533,
+ 10551
],
"loc": {
"start": {
- "line": 264,
- "column": 20
+ "line": 299,
+ "column": 16
},
"end": {
- "line": 264,
- "column": 38
+ "line": 299,
+ "column": 34
}
}
},
"range": [
- 9507,
- 9526
+ 10533,
+ 10552
],
"loc": {
"start": {
- "line": 264,
- "column": 20
+ "line": 299,
+ "column": 16
},
"end": {
- "line": 264,
- "column": 39
+ "line": 299,
+ "column": 35
}
}
}
],
"range": [
- 9365,
- 9540
+ 10403,
+ 10566
],
"loc": {
"start": {
- "line": 261,
- "column": 72
+ "line": 296,
+ "column": 68
},
"end": {
- "line": 265,
+ "line": 300,
"column": 13
}
}
@@ -22891,16 +25631,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 9564,
- 9569
+ 10590,
+ 10595
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 16
},
"end": {
- "line": 266,
+ "line": 301,
"column": 21
}
}
@@ -22909,31 +25649,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 9570,
- 9573
+ 10596,
+ 10599
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 22
},
"end": {
- "line": 266,
+ "line": 301,
"column": 25
}
}
},
"range": [
- 9564,
- 9573
+ 10590,
+ 10599
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 16
},
"end": {
- "line": 266,
+ "line": 301,
"column": 25
}
}
@@ -22946,16 +25686,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 9574,
- 9576
+ 10600,
+ 10602
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 26
},
"end": {
- "line": 266,
+ "line": 301,
"column": 28
}
}
@@ -22964,31 +25704,31 @@
"type": "Identifier",
"name": "check",
"range": [
- 9577,
- 9582
+ 10603,
+ 10608
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 29
},
"end": {
- "line": 266,
+ "line": 301,
"column": 34
}
}
},
"range": [
- 9574,
- 9582
+ 10600,
+ 10608
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 26
},
"end": {
- "line": 266,
+ "line": 301,
"column": 34
}
}
@@ -22998,16 +25738,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 9584,
- 9591
+ 10610,
+ 10617
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 36
},
"end": {
- "line": 266,
+ "line": 301,
"column": 43
}
}
@@ -23020,222 +25760,186 @@
"type": "Identifier",
"name": "evt",
"range": [
- 9614,
- 9617
+ 10620,
+ 10623
],
"loc": {
"start": {
- "line": 267,
- "column": 21
+ "line": 301,
+ "column": 46
},
"end": {
- "line": 267,
- "column": 24
+ "line": 301,
+ "column": 49
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 9624,
- 9628
- ],
- "loc": {
- "start": {
- "line": 267,
- "column": 31
- },
- "end": {
- "line": 267,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "optionClick",
- "range": [
- 9629,
- 9640
- ],
- "loc": {
- "start": {
- "line": 267,
- "column": 36
- },
- "end": {
- "line": 267,
- "column": 47
- }
- }
- },
- "range": [
- 9624,
- 9640
- ],
- "loc": {
- "start": {
- "line": 267,
- "column": 31
- },
- "end": {
- "line": 267,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 9641,
- 9644
- ],
- "loc": {
- "start": {
- "line": 267,
- "column": 48
- },
- "end": {
- "line": 267,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 9624,
- 9645
- ],
- "loc": {
- "start": {
- "line": 267,
- "column": 31
- },
- "end": {
- "line": 267,
- "column": 52
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 9624,
- 9646
+ 10627,
+ 10631
],
"loc": {
"start": {
- "line": 267,
- "column": 31
+ "line": 301,
+ "column": 53
},
"end": {
- "line": 267,
- "column": 53
+ "line": 301,
+ "column": 57
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "optionClick",
+ "range": [
+ 10632,
+ 10643
+ ],
+ "loc": {
+ "start": {
+ "line": 301,
+ "column": 58
+ },
+ "end": {
+ "line": 301,
+ "column": 69
+ }
+ }
+ },
+ "range": [
+ 10627,
+ 10643
+ ],
+ "loc": {
+ "start": {
+ "line": 301,
+ "column": 53
+ },
+ "end": {
+ "line": 301,
+ "column": 69
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 10644,
+ 10647
+ ],
+ "loc": {
+ "start": {
+ "line": 301,
+ "column": 70
+ },
+ "end": {
+ "line": 301,
+ "column": 73
}
}
}
],
"range": [
- 9622,
- 9648
+ 10627,
+ 10648
],
"loc": {
"start": {
- "line": 267,
- "column": 29
+ "line": 301,
+ "column": 53
},
"end": {
- "line": 267,
- "column": 55
+ "line": 301,
+ "column": 74
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 9613,
- 9648
+ 10619,
+ 10648
],
"loc": {
"start": {
- "line": 267,
- "column": 20
+ "line": 301,
+ "column": 45
},
"end": {
- "line": 267,
- "column": 55
+ "line": 301,
+ "column": 74
}
}
}
],
"range": [
- 9564,
- 9649
+ 10590,
+ 10649
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 16
},
"end": {
- "line": 267,
- "column": 56
+ "line": 301,
+ "column": 75
}
}
},
"range": [
- 9564,
- 9650
+ 10590,
+ 10650
],
"loc": {
"start": {
- "line": 266,
+ "line": 301,
"column": 16
},
"end": {
- "line": 267,
- "column": 57
+ "line": 301,
+ "column": 76
}
}
}
],
"range": [
- 9546,
- 9664
+ 10572,
+ 10664
],
"loc": {
"start": {
- "line": 265,
+ "line": 300,
"column": 19
},
"end": {
- "line": 268,
+ "line": 302,
"column": 13
}
}
},
"range": [
- 9198,
- 9664
+ 10240,
+ 10664
],
"loc": {
"start": {
- "line": 259,
+ "line": 294,
"column": 12
},
"end": {
- "line": 268,
+ "line": 302,
"column": 13
}
}
@@ -23251,16 +25955,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 9677,
- 9679
+ 10677,
+ 10679
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 12
},
"end": {
- "line": 269,
+ "line": 303,
"column": 14
}
}
@@ -23269,31 +25973,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 9680,
- 9691
+ 10680,
+ 10691
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 15
},
"end": {
- "line": 269,
+ "line": 303,
"column": 26
}
}
},
"range": [
- 9677,
- 9691
+ 10677,
+ 10691
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 12
},
"end": {
- "line": 269,
+ "line": 303,
"column": 26
}
}
@@ -23303,47 +26007,47 @@
"type": "Identifier",
"name": "li",
"range": [
- 9692,
- 9694
+ 10692,
+ 10694
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 27
},
"end": {
- "line": 269,
+ "line": 303,
"column": 29
}
}
}
],
"range": [
- 9677,
- 9695
+ 10677,
+ 10695
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 12
},
"end": {
- "line": 269,
+ "line": 303,
"column": 30
}
}
},
"range": [
- 9677,
- 9696
+ 10677,
+ 10696
],
"loc": {
"start": {
- "line": 269,
+ "line": 303,
"column": 12
},
"end": {
- "line": 269,
+ "line": 303,
"column": 31
}
}
@@ -23357,16 +26061,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 9713,
- 9716
+ 10713,
+ 10716
],
"loc": {
"start": {
- "line": 271,
+ "line": 305,
"column": 15
},
"end": {
- "line": 271,
+ "line": 305,
"column": 18
}
}
@@ -23376,32 +26080,32 @@
"value": "",
"raw": "''",
"range": [
- 9719,
- 9721
+ 10721,
+ 10723
],
"loc": {
"start": {
- "line": 271,
- "column": 21
+ "line": 305,
+ "column": 23
},
"end": {
- "line": 271,
- "column": 23
+ "line": 305,
+ "column": 25
}
}
},
"range": [
- 9713,
- 9721
+ 10713,
+ 10723
],
"loc": {
"start": {
- "line": 271,
+ "line": 305,
"column": 15
},
"end": {
- "line": 271,
- "column": 23
+ "line": 305,
+ "column": 25
}
}
},
@@ -23423,16 +26127,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 9773,
- 9775
+ 10775,
+ 10777
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 16
},
"end": {
- "line": 273,
+ "line": 307,
"column": 18
}
}
@@ -23441,31 +26145,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 9776,
- 9781
+ 10778,
+ 10783
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 19
},
"end": {
- "line": 273,
+ "line": 307,
"column": 24
}
}
},
"range": [
- 9773,
- 9781
+ 10775,
+ 10783
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 16
},
"end": {
- "line": 273,
+ "line": 307,
"column": 24
}
}
@@ -23474,31 +26178,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 9782,
- 9789
+ 10784,
+ 10791
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 25
},
"end": {
- "line": 273,
+ "line": 307,
"column": 32
}
}
},
"range": [
- 9773,
- 9789
+ 10775,
+ 10791
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 16
},
"end": {
- "line": 273,
+ "line": 307,
"column": 32
}
}
@@ -23508,46 +26212,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 9792,
- 9798
+ 10794,
+ 10800
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 35
},
"end": {
- "line": 273,
+ "line": 307,
"column": 41
}
}
},
"range": [
- 9773,
- 9798
+ 10775,
+ 10800
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 16
},
"end": {
- "line": 273,
+ "line": 307,
"column": 41
}
}
},
"range": [
- 9773,
- 9799
+ 10775,
+ 10801
],
"loc": {
"start": {
- "line": 273,
+ "line": 307,
"column": 16
},
"end": {
- "line": 273,
+ "line": 307,
"column": 42
}
},
@@ -23556,16 +26260,16 @@
"type": "Line",
"value": "item is hidden",
"range": [
- 9740,
- 9756
+ 10742,
+ 10758
],
"loc": {
"start": {
- "line": 272,
+ "line": 306,
"column": 16
},
"end": {
- "line": 272,
+ "line": 306,
"column": 32
}
}
@@ -23574,1352 +26278,79 @@
}
],
"range": [
- 9722,
- 9813
+ 10724,
+ 10815
],
"loc": {
"start": {
- "line": 271,
- "column": 24
+ "line": 305,
+ "column": 26
},
"end": {
- "line": 274,
+ "line": 308,
"column": 13
}
}
},
"alternate": null,
"range": [
- 9710,
- 9813
+ 10710,
+ 10815
],
"loc": {
"start": {
- "line": 271,
+ "line": 305,
"column": 12
},
"end": {
- "line": 274,
+ "line": 308,
"column": 13
}
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 9827,
- 9857
- ],
- "loc": {
- "start": {
- "line": 276,
- "column": 12
- },
- "end": {
- "line": 276,
- "column": 42
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 9873,
- 9875
- ],
- "loc": {
- "start": {
- "line": 277,
- "column": 15
- },
- "end": {
- "line": 277,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 9876,
- 9894
- ],
- "loc": {
- "start": {
- "line": 277,
- "column": 18
- },
- "end": {
- "line": 277,
- "column": 36
- }
- }
- },
- "range": [
- 9873,
- 9894
- ],
- "loc": {
- "start": {
- "line": 277,
- "column": 15
- },
- "end": {
- "line": 277,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 9917,
- 9919
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 20
- },
- "end": {
- "line": 278,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasCustomSlcOptions",
- "range": [
- 9920,
- 9939
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 23
- },
- "end": {
- "line": 278,
- "column": 42
- }
- }
- },
- "range": [
- 9917,
- 9939
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 20
- },
- "end": {
- "line": 278,
- "column": 42
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 9963,
- 9965
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "customSlcOptions",
- "range": [
- 9966,
- 9982
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 23
- },
- "end": {
- "line": 279,
- "column": 39
- }
- }
- },
- "range": [
- 9963,
- 9982
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cols",
- "range": [
- 9983,
- 9987
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 40
- },
- "end": {
- "line": 279,
- "column": 44
- }
- }
- },
- "range": [
- 9963,
- 9987
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 9988,
- 9995
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 45
- },
- "end": {
- "line": 279,
- "column": 52
- }
- }
- },
- "range": [
- 9963,
- 9995
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 9996,
- 10004
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 53
- },
- "end": {
- "line": 279,
- "column": 61
- }
- }
- }
- ],
- "range": [
- 9963,
- 10005
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 62
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 10010,
- 10011
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 67
- },
- "end": {
- "line": 279,
- "column": 68
- }
- }
- },
- "prefix": true,
- "range": [
- 10009,
- 10011
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 66
- },
- "end": {
- "line": 279,
- "column": 68
- }
- }
- },
- "range": [
- 9963,
- 10011
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 68
- }
- }
- },
- "range": [
- 9917,
- 10011
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 20
- },
- "end": {
- "line": 279,
- "column": 68
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 10035,
- 10041
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "toString",
- "range": [
- 10042,
- 10050
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 27
- },
- "end": {
- "line": 280,
- "column": 35
- }
- }
- },
- "range": [
- 10035,
- 10050
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 35
- }
- }
- },
- "arguments": [],
- "range": [
- 10035,
- 10052
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 10053,
- 10060
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 38
- },
- "end": {
- "line": 280,
- "column": 45
- }
- }
- },
- "range": [
- 10035,
- 10060
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10061,
- 10064
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 46
- },
- "end": {
- "line": 280,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 10035,
- 10065
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 50
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 10070,
- 10071
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 55
- },
- "end": {
- "line": 280,
- "column": 56
- }
- }
- },
- "prefix": true,
- "range": [
- 10069,
- 10071
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 54
- },
- "end": {
- "line": 280,
- "column": 56
- }
- }
- },
- "range": [
- 10035,
- 10071
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 56
- }
- }
- },
- "range": [
- 9917,
- 10071
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 20
- },
- "end": {
- "line": 280,
- "column": 56
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 10096,
- 10099
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 20
- },
- "end": {
- "line": 281,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 10100,
- 10103
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 24
- },
- "end": {
- "line": 281,
- "column": 27
- }
- }
- },
- "range": [
- 10096,
- 10103
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 20
- },
- "end": {
- "line": 281,
- "column": 27
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 10104,
- 10110
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 28
- },
- "end": {
- "line": 281,
- "column": 34
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 10136,
- 10139
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 24
- },
- "end": {
- "line": 282,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10140,
- 10149
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 28
- },
- "end": {
- "line": 282,
- "column": 37
- }
- }
- },
- "range": [
- 10136,
- 10149
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 24
- },
- "end": {
- "line": 282,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10150,
- 10153
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 38
- },
- "end": {
- "line": 282,
- "column": 41
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 10155,
- 10157
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 43
- },
- "end": {
- "line": 282,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10158,
- 10167
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 46
- },
- "end": {
- "line": 282,
- "column": 55
- }
- }
- },
- "range": [
- 10155,
- 10167
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 43
- },
- "end": {
- "line": 282,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 10136,
- 10168
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 24
- },
- "end": {
- "line": 282,
- "column": 56
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 10170,
- 10172
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 58
- },
- "end": {
- "line": 282,
- "column": 60
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10173,
- 10182
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 61
- },
- "end": {
- "line": 282,
- "column": 70
- }
- }
- },
- "range": [
- 10170,
- 10182
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 58
- },
- "end": {
- "line": 282,
- "column": 70
- }
- }
- }
- ],
- "range": [
- 10096,
- 10183
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 20
- },
- "end": {
- "line": 282,
- "column": 71
- }
- }
- },
- "range": [
- 9916,
- 10183
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 19
- },
- "end": {
- "line": 282,
- "column": 71
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 10206,
- 10208
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 20
- },
- "end": {
- "line": 283,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "check",
- "range": [
- 10209,
- 10214
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 23
- },
- "end": {
- "line": 283,
- "column": 28
- }
- }
- },
- "range": [
- 10206,
- 10214
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 20
- },
- "end": {
- "line": 283,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checked",
- "range": [
- 10215,
- 10222
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 29
- },
- "end": {
- "line": 283,
- "column": 36
- }
- }
- },
- "range": [
- 10206,
- 10222
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 20
- },
- "end": {
- "line": 283,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 10225,
- 10229
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 39
- },
- "end": {
- "line": 283,
- "column": 43
- }
- }
- },
- "range": [
- 10206,
- 10229
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 20
- },
- "end": {
- "line": 283,
- "column": 43
- }
- }
- },
- "range": [
- 10206,
- 10230
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 20
- },
- "end": {
- "line": 283,
- "column": 44
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 10251,
- 10255
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 20
- },
- "end": {
- "line": 284,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setCheckListValues",
- "range": [
- 10256,
- 10274
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 25
- },
- "end": {
- "line": 284,
- "column": 43
- }
- }
- },
- "range": [
- 10251,
- 10274
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 20
- },
- "end": {
- "line": 284,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 10275,
- 10277
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 44
- },
- "end": {
- "line": 284,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "check",
- "range": [
- 10278,
- 10283
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 47
- },
- "end": {
- "line": 284,
- "column": 52
- }
- }
- },
- "range": [
- 10275,
- 10283
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 44
- },
- "end": {
- "line": 284,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 10251,
- 10284
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 20
- },
- "end": {
- "line": 284,
- "column": 53
- }
- }
- },
- "range": [
- 10251,
- 10285
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 20
- },
- "end": {
- "line": 284,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 10184,
- 10303
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 72
- },
- "end": {
- "line": 285,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 9913,
- 10303
- ],
- "loc": {
- "start": {
- "line": 278,
- "column": 16
- },
- "end": {
- "line": 285,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 9895,
- 10317
- ],
- "loc": {
- "start": {
- "line": 277,
- "column": 37
- },
- "end": {
- "line": 286,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 9870,
- 10317
- ],
- "loc": {
- "start": {
- "line": 277,
- "column": 12
- },
- "end": {
- "line": 286,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 9827,
- 9857
- ],
- "loc": {
- "start": {
- "line": 276,
- "column": 12
- },
- "end": {
- "line": 276,
- "column": 42
- }
- }
- }
- ]
+ }
}
],
"range": [
- 8895,
- 10327
+ 9937,
+ 10825
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 45
},
"end": {
- "line": 287,
+ "line": 309,
"column": 9
}
}
},
"range": [
- 8858,
- 10327
+ 9900,
+ 10825
],
"loc": {
"start": {
- "line": 253,
+ "line": 288,
"column": 8
},
"end": {
- "line": 287,
+ "line": 309,
"column": 9
}
}
}
],
"range": [
- 8272,
- 10333
+ 9812,
+ 10831
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 27
},
"end": {
- "line": 288,
+ "line": 310,
"column": 5
}
}
@@ -24927,16 +26358,16 @@
"generator": false,
"expression": false,
"range": [
- 8258,
- 10333
+ 9798,
+ 10831
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 13
},
"end": {
- "line": 288,
+ "line": 310,
"column": 5
}
}
@@ -24944,16 +26375,16 @@
"kind": "method",
"computed": false,
"range": [
- 8249,
- 10333
+ 9789,
+ 10831
],
"loc": {
"start": {
- "line": 237,
+ "line": 284,
"column": 4
},
"end": {
- "line": 288,
+ "line": 310,
"column": 5
}
},
@@ -24962,16 +26393,16 @@
"type": "Block",
"value": "*\n * Add checklist options\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 8114,
- 8244
+ 9654,
+ 9784
],
"loc": {
"start": {
- "line": 232,
+ "line": 279,
"column": 4
},
"end": {
- "line": 236,
+ "line": 283,
"column": 7
}
}
@@ -24982,16 +26413,16 @@
"type": "Block",
"value": "*\n * Add checklist header option\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 10339,
- 10473
+ 10837,
+ 10971
],
"loc": {
"start": {
- "line": 290,
+ "line": 312,
"column": 4
},
"end": {
- "line": 294,
+ "line": 316,
"column": 7
}
}
@@ -25005,16 +26436,16 @@
"type": "Identifier",
"name": "addTChecks",
"range": [
- 10478,
- 10488
+ 10976,
+ 10986
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 4
},
"end": {
- "line": 295,
+ "line": 317,
"column": 14
}
}
@@ -25027,16 +26458,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10489,
- 10497
+ 10987,
+ 10995
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 15
},
"end": {
- "line": 295,
+ "line": 317,
"column": 23
}
}
@@ -25045,16 +26476,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 10499,
- 10501
+ 10997,
+ 10999
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 25
},
"end": {
- "line": 295,
+ "line": 317,
"column": 27
}
}
@@ -25072,16 +26503,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10516,
- 10518
+ 11014,
+ 11016
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 12
},
"end": {
- "line": 296,
+ "line": 318,
"column": 14
}
}
@@ -25092,16 +26523,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10521,
- 10525
+ 11019,
+ 11023
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 17
},
"end": {
- "line": 296,
+ "line": 318,
"column": 21
}
}
@@ -25110,63 +26541,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10526,
- 10528
+ 11024,
+ 11026
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 22
},
"end": {
- "line": 296,
+ "line": 318,
"column": 24
}
}
},
"range": [
- 10521,
- 10528
+ 11019,
+ 11026
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 17
},
"end": {
- "line": 296,
+ "line": 318,
"column": 24
}
}
},
"range": [
- 10516,
- 10528
+ 11014,
+ 11026
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 12
},
"end": {
- "line": 296,
+ "line": 318,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10512,
- 10529
+ 11010,
+ 11027
],
"loc": {
"start": {
- "line": 296,
+ "line": 318,
"column": 8
},
"end": {
- "line": 296,
+ "line": 318,
"column": 25
}
}
@@ -25180,16 +26611,16 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 10542,
- 10547
+ 11040,
+ 11045
],
"loc": {
"start": {
- "line": 297,
+ "line": 319,
"column": 12
},
"end": {
- "line": 297,
+ "line": 319,
"column": 17
}
}
@@ -25199,48 +26630,48 @@
"value": 1,
"raw": "1",
"range": [
- 10550,
- 10551
+ 11048,
+ 11049
],
"loc": {
"start": {
- "line": 297,
+ "line": 319,
"column": 20
},
"end": {
- "line": 297,
+ "line": 319,
"column": 21
}
}
},
"range": [
- 10542,
- 10551
+ 11040,
+ 11049
],
"loc": {
"start": {
- "line": 297,
+ "line": 319,
"column": 12
},
"end": {
- "line": 297,
+ "line": 319,
"column": 21
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10538,
- 10552
+ 11036,
+ 11050
],
"loc": {
"start": {
- "line": 297,
+ "line": 319,
"column": 8
},
"end": {
- "line": 297,
+ "line": 319,
"column": 22
}
}
@@ -25254,16 +26685,16 @@
"type": "Identifier",
"name": "li0",
"range": [
- 10565,
- 10568
+ 11063,
+ 11066
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 12
},
"end": {
- "line": 298,
+ "line": 320,
"column": 15
}
}
@@ -25277,16 +26708,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10571,
- 10574
+ 11069,
+ 11072
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 18
},
"end": {
- "line": 298,
+ "line": 320,
"column": 21
}
}
@@ -25295,31 +26726,31 @@
"type": "Identifier",
"name": "createCheckItem",
"range": [
- 10575,
- 10590
+ 11073,
+ 11088
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 22
},
"end": {
- "line": 298,
+ "line": 320,
"column": 37
}
}
},
"range": [
- 10571,
- 10590
+ 11069,
+ 11088
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 18
},
"end": {
- "line": 298,
+ "line": 320,
"column": 37
}
}
@@ -25338,16 +26769,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10612,
- 10614
+ 11110,
+ 11112
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 20
},
"end": {
- "line": 299,
+ "line": 321,
"column": 22
}
}
@@ -25356,31 +26787,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 10615,
- 10621
+ 11113,
+ 11119
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 23
},
"end": {
- "line": 299,
+ "line": 321,
"column": 29
}
}
},
"range": [
- 10612,
- 10621
+ 11110,
+ 11119
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 20
},
"end": {
- "line": 299,
+ "line": 321,
"column": 29
}
}
@@ -25389,31 +26820,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10622,
- 10630
+ 11120,
+ 11128
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 30
},
"end": {
- "line": 299,
+ "line": 321,
"column": 38
}
}
},
"range": [
- 10612,
- 10631
+ 11110,
+ 11129
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 20
},
"end": {
- "line": 299,
+ "line": 321,
"column": 39
}
}
@@ -25423,31 +26854,31 @@
"value": "_0",
"raw": "'_0'",
"range": [
- 10632,
- 10636
+ 11130,
+ 11134
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 40
},
"end": {
- "line": 299,
+ "line": 321,
"column": 44
}
}
},
"range": [
- 10612,
- 10636
+ 11110,
+ 11134
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 20
},
"end": {
- "line": 299,
+ "line": 321,
"column": 44
}
}
@@ -25457,16 +26888,16 @@
"value": "",
"raw": "''",
"range": [
- 10638,
- 10640
+ 11136,
+ 11138
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 46
},
"end": {
- "line": 299,
+ "line": 321,
"column": 48
}
}
@@ -25478,16 +26909,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10642,
- 10644
+ 11140,
+ 11142
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 50
},
"end": {
- "line": 299,
+ "line": 321,
"column": 52
}
}
@@ -25496,79 +26927,79 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 10645,
- 10659
+ 11143,
+ 11157
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 53
},
"end": {
- "line": 299,
+ "line": 321,
"column": 67
}
}
},
"range": [
- 10642,
- 10659
+ 11140,
+ 11157
],
"loc": {
"start": {
- "line": 299,
+ "line": 321,
"column": 50
},
"end": {
- "line": 299,
+ "line": 321,
"column": 67
}
}
}
],
"range": [
- 10571,
- 10660
+ 11069,
+ 11158
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 18
},
"end": {
- "line": 299,
+ "line": 321,
"column": 68
}
}
},
"range": [
- 10565,
- 10660
+ 11063,
+ 11158
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 12
},
"end": {
- "line": 299,
+ "line": 321,
"column": 68
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10561,
- 10661
+ 11059,
+ 11159
],
"loc": {
"start": {
- "line": 298,
+ "line": 320,
"column": 8
},
"end": {
- "line": 299,
+ "line": 321,
"column": 69
}
}
@@ -25585,16 +27016,16 @@
"type": "Identifier",
"name": "li0",
"range": [
- 10670,
- 10673
+ 11168,
+ 11171
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 8
},
"end": {
- "line": 300,
+ "line": 322,
"column": 11
}
}
@@ -25603,31 +27034,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 10674,
- 10683
+ 11172,
+ 11181
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 12
},
"end": {
- "line": 300,
+ "line": 322,
"column": 21
}
}
},
"range": [
- 10670,
- 10683
+ 11168,
+ 11181
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 8
},
"end": {
- "line": 300,
+ "line": 322,
"column": 21
}
}
@@ -25638,16 +27069,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10686,
- 10690
+ 11184,
+ 11188
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 24
},
"end": {
- "line": 300,
+ "line": 322,
"column": 28
}
}
@@ -25656,61 +27087,61 @@
"type": "Identifier",
"name": "checkListItemCssClass",
"range": [
- 10691,
- 10712
+ 11189,
+ 11210
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 29
},
"end": {
- "line": 300,
+ "line": 322,
"column": 50
}
}
},
"range": [
- 10686,
- 10712
+ 11184,
+ 11210
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 24
},
"end": {
- "line": 300,
+ "line": 322,
"column": 50
}
}
},
"range": [
- 10670,
- 10712
+ 11168,
+ 11210
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 8
},
"end": {
- "line": 300,
+ "line": 322,
"column": 50
}
}
},
"range": [
- 10670,
- 10713
+ 11168,
+ 11211
],
"loc": {
"start": {
- "line": 300,
+ "line": 322,
"column": 8
},
"end": {
- "line": 300,
+ "line": 322,
"column": 51
}
}
@@ -25726,16 +27157,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 10722,
- 10724
+ 11220,
+ 11222
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 8
},
"end": {
- "line": 301,
+ "line": 323,
"column": 10
}
}
@@ -25744,31 +27175,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 10725,
- 10736
+ 11223,
+ 11234
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 11
},
"end": {
- "line": 301,
+ "line": 323,
"column": 22
}
}
},
"range": [
- 10722,
- 10736
+ 11220,
+ 11234
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 8
},
"end": {
- "line": 301,
+ "line": 323,
"column": 22
}
}
@@ -25778,47 +27209,47 @@
"type": "Identifier",
"name": "li0",
"range": [
- 10737,
- 10740
+ 11235,
+ 11238
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 23
},
"end": {
- "line": 301,
+ "line": 323,
"column": 26
}
}
}
],
"range": [
- 10722,
- 10741
+ 11220,
+ 11239
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 8
},
"end": {
- "line": 301,
+ "line": 323,
"column": 27
}
}
},
"range": [
- 10722,
- 10742
+ 11220,
+ 11240
],
"loc": {
"start": {
- "line": 301,
+ "line": 323,
"column": 8
},
"end": {
- "line": 301,
+ "line": 323,
"column": 28
}
}
@@ -25834,16 +27265,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 10752,
- 10757
+ 11250,
+ 11255
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 8
},
"end": {
- "line": 303,
+ "line": 325,
"column": 13
}
}
@@ -25852,31 +27283,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 10758,
- 10761
+ 11256,
+ 11259
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 14
},
"end": {
- "line": 303,
+ "line": 325,
"column": 17
}
}
},
"range": [
- 10752,
- 10761
+ 11250,
+ 11259
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 8
},
"end": {
- "line": 303,
+ "line": 325,
"column": 17
}
}
@@ -25889,16 +27320,16 @@
"type": "Identifier",
"name": "li0",
"range": [
- 10762,
- 10765
+ 11260,
+ 11263
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 18
},
"end": {
- "line": 303,
+ "line": 325,
"column": 21
}
}
@@ -25907,31 +27338,31 @@
"type": "Identifier",
"name": "check",
"range": [
- 10766,
- 10771
+ 11264,
+ 11269
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 22
},
"end": {
- "line": 303,
+ "line": 325,
"column": 27
}
}
},
"range": [
- 10762,
- 10771
+ 11260,
+ 11269
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 18
},
"end": {
- "line": 303,
+ "line": 325,
"column": 27
}
}
@@ -25941,16 +27372,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 10773,
- 10780
+ 11271,
+ 11278
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 29
},
"end": {
- "line": 303,
+ "line": 325,
"column": 36
}
}
@@ -25963,192 +27394,156 @@
"type": "Identifier",
"name": "evt",
"range": [
- 10783,
- 10786
+ 11281,
+ 11284
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 39
},
"end": {
- "line": 303,
+ "line": 325,
"column": 42
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 10805,
- 10809
- ],
- "loc": {
- "start": {
- "line": 304,
- "column": 12
- },
- "end": {
- "line": 304,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "optionClick",
- "range": [
- 10810,
- 10821
- ],
- "loc": {
- "start": {
- "line": 304,
- "column": 17
- },
- "end": {
- "line": 304,
- "column": 28
- }
- }
- },
- "range": [
- 10805,
- 10821
- ],
- "loc": {
- "start": {
- "line": 304,
- "column": 12
- },
- "end": {
- "line": 304,
- "column": 28
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 10822,
- 10825
- ],
- "loc": {
- "start": {
- "line": 304,
- "column": 29
- },
- "end": {
- "line": 304,
- "column": 32
- }
- }
- }
- ],
- "range": [
- 10805,
- 10826
- ],
- "loc": {
- "start": {
- "line": 304,
- "column": 12
- },
- "end": {
- "line": 304,
- "column": 33
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 10805,
- 10827
+ 11288,
+ 11292
],
"loc": {
"start": {
- "line": 304,
- "column": 12
+ "line": 325,
+ "column": 46
},
"end": {
- "line": 304,
- "column": 34
+ "line": 325,
+ "column": 50
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "optionClick",
+ "range": [
+ 11293,
+ 11304
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 51
+ },
+ "end": {
+ "line": 325,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 11288,
+ 11304
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 46
+ },
+ "end": {
+ "line": 325,
+ "column": 62
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 11305,
+ 11308
+ ],
+ "loc": {
+ "start": {
+ "line": 325,
+ "column": 63
+ },
+ "end": {
+ "line": 325,
+ "column": 66
}
}
}
],
"range": [
- 10791,
- 10837
+ 11288,
+ 11309
],
"loc": {
"start": {
- "line": 303,
- "column": 47
+ "line": 325,
+ "column": 46
},
"end": {
- "line": 305,
- "column": 9
+ "line": 325,
+ "column": 67
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 10782,
- 10837
+ 11280,
+ 11309
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 38
},
"end": {
- "line": 305,
- "column": 9
+ "line": 325,
+ "column": 67
}
}
}
],
"range": [
- 10752,
- 10838
+ 11250,
+ 11310
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 8
},
"end": {
- "line": 305,
- "column": 10
+ "line": 325,
+ "column": 68
}
}
},
"range": [
- 10752,
- 10839
+ 11250,
+ 11311
],
"loc": {
"start": {
- "line": 303,
+ "line": 325,
"column": 8
},
"end": {
- "line": 305,
- "column": 11
+ "line": 325,
+ "column": 69
}
}
},
@@ -26163,16 +27558,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10853,
- 10857
+ 11325,
+ 11329
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 12
},
"end": {
- "line": 307,
+ "line": 327,
"column": 16
}
}
@@ -26181,47 +27576,47 @@
"type": "Identifier",
"name": "enableCheckListResetFilter",
"range": [
- 10858,
- 10884
+ 11330,
+ 11356
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 17
},
"end": {
- "line": 307,
+ "line": 327,
"column": 43
}
}
},
"range": [
- 10853,
- 10884
+ 11325,
+ 11356
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 12
},
"end": {
- "line": 307,
+ "line": 327,
"column": 43
}
}
},
"prefix": true,
"range": [
- 10852,
- 10884
+ 11324,
+ 11356
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 11
},
"end": {
- "line": 307,
+ "line": 327,
"column": 43
}
}
@@ -26244,16 +27639,16 @@
"type": "Identifier",
"name": "li0",
"range": [
- 10899,
- 10902
+ 11371,
+ 11374
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 12
},
"end": {
- "line": 308,
+ "line": 328,
"column": 15
}
}
@@ -26262,31 +27657,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10903,
- 10908
+ 11375,
+ 11380
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 16
},
"end": {
- "line": 308,
+ "line": 328,
"column": 21
}
}
},
"range": [
- 10899,
- 10908
+ 11371,
+ 11380
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 12
},
"end": {
- "line": 308,
+ "line": 328,
"column": 21
}
}
@@ -26295,31 +27690,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 10909,
- 10916
+ 11381,
+ 11388
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 22
},
"end": {
- "line": 308,
+ "line": 328,
"column": 29
}
}
},
"range": [
- 10899,
- 10916
+ 11371,
+ 11388
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 12
},
"end": {
- "line": 308,
+ "line": 328,
"column": 29
}
}
@@ -26329,78 +27724,78 @@
"value": "none",
"raw": "'none'",
"range": [
- 10919,
- 10925
+ 11391,
+ 11397
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 32
},
"end": {
- "line": 308,
+ "line": 328,
"column": 38
}
}
},
"range": [
- 10899,
- 10925
+ 11371,
+ 11397
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 12
},
"end": {
- "line": 308,
+ "line": 328,
"column": 38
}
}
},
"range": [
- 10899,
- 10926
+ 11371,
+ 11398
],
"loc": {
"start": {
- "line": 308,
+ "line": 328,
"column": 12
},
"end": {
- "line": 308,
+ "line": 328,
"column": 39
}
}
}
],
"range": [
- 10885,
- 10936
+ 11357,
+ 11408
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 44
},
"end": {
- "line": 309,
+ "line": 329,
"column": 9
}
}
},
"alternate": null,
"range": [
- 10849,
- 10936
+ 11321,
+ 11408
],
"loc": {
"start": {
- "line": 307,
+ "line": 327,
"column": 8
},
"end": {
- "line": 309,
+ "line": 329,
"column": 9
}
}
@@ -26414,16 +27809,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10949,
- 10951
+ 11421,
+ 11423
],
"loc": {
"start": {
- "line": 311,
+ "line": 331,
"column": 11
},
"end": {
- "line": 311,
+ "line": 331,
"column": 13
}
}
@@ -26432,31 +27827,31 @@
"type": "Identifier",
"name": "enableEmptyOption",
"range": [
- 10952,
- 10969
+ 11424,
+ 11441
],
"loc": {
"start": {
- "line": 311,
+ "line": 331,
"column": 14
},
"end": {
- "line": 311,
+ "line": 331,
"column": 31
}
}
},
"range": [
- 10949,
- 10969
+ 11421,
+ 11441
],
"loc": {
"start": {
- "line": 311,
+ "line": 331,
"column": 11
},
"end": {
- "line": 311,
+ "line": 331,
"column": 31
}
}
@@ -26473,16 +27868,16 @@
"type": "Identifier",
"name": "li1",
"range": [
- 10988,
- 10991
+ 11460,
+ 11463
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 16
},
"end": {
- "line": 312,
+ "line": 332,
"column": 19
}
}
@@ -26496,16 +27891,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10994,
- 10997
+ 11466,
+ 11469
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 22
},
"end": {
- "line": 312,
+ "line": 332,
"column": 25
}
}
@@ -26514,31 +27909,31 @@
"type": "Identifier",
"name": "createCheckItem",
"range": [
- 10998,
- 11013
+ 11470,
+ 11485
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 26
},
"end": {
- "line": 312,
+ "line": 332,
"column": 41
}
}
},
"range": [
- 10994,
- 11013
+ 11466,
+ 11485
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 22
},
"end": {
- "line": 312,
+ "line": 332,
"column": 41
}
}
@@ -26557,16 +27952,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11035,
- 11037
+ 11507,
+ 11509
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 20
},
"end": {
- "line": 313,
+ "line": 333,
"column": 22
}
}
@@ -26575,31 +27970,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 11038,
- 11044
+ 11510,
+ 11516
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 23
},
"end": {
- "line": 313,
+ "line": 333,
"column": 29
}
}
},
"range": [
- 11035,
- 11044
+ 11507,
+ 11516
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 20
},
"end": {
- "line": 313,
+ "line": 333,
"column": 29
}
}
@@ -26608,31 +28003,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 11045,
- 11053
+ 11517,
+ 11525
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 30
},
"end": {
- "line": 313,
+ "line": 333,
"column": 38
}
}
},
"range": [
- 11035,
- 11054
+ 11507,
+ 11526
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 20
},
"end": {
- "line": 313,
+ "line": 333,
"column": 39
}
}
@@ -26642,31 +28037,31 @@
"value": "_1",
"raw": "'_1'",
"range": [
- 11055,
- 11059
+ 11527,
+ 11531
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 40
},
"end": {
- "line": 313,
+ "line": 333,
"column": 44
}
}
},
"range": [
- 11035,
- 11059
+ 11507,
+ 11531
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 20
},
"end": {
- "line": 313,
+ "line": 333,
"column": 44
}
}
@@ -26678,16 +28073,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11061,
- 11063
+ 11533,
+ 11535
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 46
},
"end": {
- "line": 313,
+ "line": 333,
"column": 48
}
}
@@ -26696,31 +28091,31 @@
"type": "Identifier",
"name": "emOperator",
"range": [
- 11064,
- 11074
+ 11536,
+ 11546
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 49
},
"end": {
- "line": 313,
+ "line": 333,
"column": 59
}
}
},
"range": [
- 11061,
- 11074
+ 11533,
+ 11546
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 46
},
"end": {
- "line": 313,
+ "line": 333,
"column": 59
}
}
@@ -26732,16 +28127,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11076,
- 11078
+ 11548,
+ 11550
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 61
},
"end": {
- "line": 313,
+ "line": 333,
"column": 63
}
}
@@ -26750,79 +28145,79 @@
"type": "Identifier",
"name": "emptyText",
"range": [
- 11079,
- 11088
+ 11551,
+ 11560
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 64
},
"end": {
- "line": 313,
+ "line": 333,
"column": 73
}
}
},
"range": [
- 11076,
- 11088
+ 11548,
+ 11560
],
"loc": {
"start": {
- "line": 313,
+ "line": 333,
"column": 61
},
"end": {
- "line": 313,
+ "line": 333,
"column": 73
}
}
}
],
"range": [
- 10994,
- 11089
+ 11466,
+ 11561
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 22
},
"end": {
- "line": 313,
+ "line": 333,
"column": 74
}
}
},
"range": [
- 10988,
- 11089
+ 11460,
+ 11561
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 16
},
"end": {
- "line": 313,
+ "line": 333,
"column": 74
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10984,
- 11090
+ 11456,
+ 11562
],
"loc": {
"start": {
- "line": 312,
+ "line": 332,
"column": 12
},
"end": {
- "line": 313,
+ "line": 333,
"column": 75
}
}
@@ -26839,16 +28234,16 @@
"type": "Identifier",
"name": "li1",
"range": [
- 11103,
- 11106
+ 11575,
+ 11578
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 12
},
"end": {
- "line": 314,
+ "line": 334,
"column": 15
}
}
@@ -26857,31 +28252,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 11107,
- 11116
+ 11579,
+ 11588
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 16
},
"end": {
- "line": 314,
+ "line": 334,
"column": 25
}
}
},
"range": [
- 11103,
- 11116
+ 11575,
+ 11588
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 12
},
"end": {
- "line": 314,
+ "line": 334,
"column": 25
}
}
@@ -26892,16 +28287,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11119,
- 11123
+ 11591,
+ 11595
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 28
},
"end": {
- "line": 314,
+ "line": 334,
"column": 32
}
}
@@ -26910,61 +28305,61 @@
"type": "Identifier",
"name": "checkListItemCssClass",
"range": [
- 11124,
- 11145
+ 11596,
+ 11617
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 33
},
"end": {
- "line": 314,
+ "line": 334,
"column": 54
}
}
},
"range": [
- 11119,
- 11145
+ 11591,
+ 11617
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 28
},
"end": {
- "line": 314,
+ "line": 334,
"column": 54
}
}
},
"range": [
- 11103,
- 11145
+ 11575,
+ 11617
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 12
},
"end": {
- "line": 314,
+ "line": 334,
"column": 54
}
}
},
"range": [
- 11103,
- 11146
+ 11575,
+ 11618
],
"loc": {
"start": {
- "line": 314,
+ "line": 334,
"column": 12
},
"end": {
- "line": 314,
+ "line": 334,
"column": 55
}
}
@@ -26980,16 +28375,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 11159,
- 11161
+ 11631,
+ 11633
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 12
},
"end": {
- "line": 315,
+ "line": 335,
"column": 14
}
}
@@ -26998,31 +28393,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11162,
- 11173
+ 11634,
+ 11645
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 15
},
"end": {
- "line": 315,
+ "line": 335,
"column": 26
}
}
},
"range": [
- 11159,
- 11173
+ 11631,
+ 11645
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 12
},
"end": {
- "line": 315,
+ "line": 335,
"column": 26
}
}
@@ -27032,47 +28427,47 @@
"type": "Identifier",
"name": "li1",
"range": [
- 11174,
- 11177
+ 11646,
+ 11649
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 27
},
"end": {
- "line": 315,
+ "line": 335,
"column": 30
}
}
}
],
"range": [
- 11159,
- 11178
+ 11631,
+ 11650
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 12
},
"end": {
- "line": 315,
+ "line": 335,
"column": 31
}
}
},
"range": [
- 11159,
- 11179
+ 11631,
+ 11651
],
"loc": {
"start": {
- "line": 315,
+ "line": 335,
"column": 12
},
"end": {
- "line": 315,
+ "line": 335,
"column": 32
}
}
@@ -27088,16 +28483,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 11192,
- 11197
+ 11664,
+ 11669
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 12
},
"end": {
- "line": 316,
+ "line": 336,
"column": 17
}
}
@@ -27106,31 +28501,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 11198,
- 11201
+ 11670,
+ 11673
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 18
},
"end": {
- "line": 316,
+ "line": 336,
"column": 21
}
}
},
"range": [
- 11192,
- 11201
+ 11664,
+ 11673
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 12
},
"end": {
- "line": 316,
+ "line": 336,
"column": 21
}
}
@@ -27143,16 +28538,16 @@
"type": "Identifier",
"name": "li1",
"range": [
- 11202,
- 11205
+ 11674,
+ 11677
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 22
},
"end": {
- "line": 316,
+ "line": 336,
"column": 25
}
}
@@ -27161,31 +28556,31 @@
"type": "Identifier",
"name": "check",
"range": [
- 11206,
- 11211
+ 11678,
+ 11683
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 26
},
"end": {
- "line": 316,
+ "line": 336,
"column": 31
}
}
},
"range": [
- 11202,
- 11211
+ 11674,
+ 11683
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 22
},
"end": {
- "line": 316,
+ "line": 336,
"column": 31
}
}
@@ -27195,16 +28590,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 11213,
- 11220
+ 11685,
+ 11692
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 33
},
"end": {
- "line": 316,
+ "line": 336,
"column": 40
}
}
@@ -27217,192 +28612,156 @@
"type": "Identifier",
"name": "evt",
"range": [
- 11223,
- 11226
+ 11695,
+ 11698
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 43
},
"end": {
- "line": 316,
+ "line": 336,
"column": 46
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 11249,
- 11253
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 16
- },
- "end": {
- "line": 317,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "optionClick",
- "range": [
- 11254,
- 11265
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 21
- },
- "end": {
- "line": 317,
- "column": 32
- }
- }
- },
- "range": [
- 11249,
- 11265
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 16
- },
- "end": {
- "line": 317,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 11266,
- 11269
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 33
- },
- "end": {
- "line": 317,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 11249,
- 11270
- ],
- "loc": {
- "start": {
- "line": 317,
- "column": 16
- },
- "end": {
- "line": 317,
- "column": 37
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 11249,
- 11271
+ 11702,
+ 11706
],
"loc": {
"start": {
- "line": 317,
- "column": 16
+ "line": 336,
+ "column": 50
},
"end": {
- "line": 317,
- "column": 38
+ "line": 336,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "optionClick",
+ "range": [
+ 11707,
+ 11718
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 55
+ },
+ "end": {
+ "line": 336,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 11702,
+ 11718
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 50
+ },
+ "end": {
+ "line": 336,
+ "column": 66
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 11719,
+ 11722
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 67
+ },
+ "end": {
+ "line": 336,
+ "column": 70
}
}
}
],
"range": [
- 11231,
- 11285
+ 11702,
+ 11723
],
"loc": {
"start": {
- "line": 316,
- "column": 51
+ "line": 336,
+ "column": 50
},
"end": {
- "line": 318,
- "column": 13
+ "line": 336,
+ "column": 71
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 11222,
- 11285
+ 11694,
+ 11723
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 42
},
"end": {
- "line": 318,
- "column": 13
+ "line": 336,
+ "column": 71
}
}
}
],
"range": [
- 11192,
- 11286
+ 11664,
+ 11724
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 12
},
"end": {
- "line": 318,
- "column": 14
+ "line": 336,
+ "column": 72
}
}
},
"range": [
- 11192,
- 11287
+ 11664,
+ 11725
],
"loc": {
"start": {
- "line": 316,
+ "line": 336,
"column": 12
},
"end": {
- "line": 318,
- "column": 15
+ "line": 336,
+ "column": 73
}
}
},
@@ -27415,79 +28774,79 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 11300,
- 11305
+ 11738,
+ 11743
],
"loc": {
"start": {
- "line": 319,
+ "line": 337,
"column": 12
},
"end": {
- "line": 319,
+ "line": 337,
"column": 17
}
}
},
"prefix": false,
"range": [
- 11300,
- 11307
+ 11738,
+ 11745
],
"loc": {
"start": {
- "line": 319,
+ "line": 337,
"column": 12
},
"end": {
- "line": 319,
+ "line": 337,
"column": 19
}
}
},
"range": [
- 11300,
- 11308
+ 11738,
+ 11746
],
"loc": {
"start": {
- "line": 319,
+ "line": 337,
"column": 12
},
"end": {
- "line": 319,
+ "line": 337,
"column": 20
}
}
}
],
"range": [
- 10970,
- 11318
+ 11442,
+ 11756
],
"loc": {
"start": {
- "line": 311,
+ "line": 331,
"column": 32
},
"end": {
- "line": 320,
+ "line": 338,
"column": 9
}
}
},
"alternate": null,
"range": [
- 10946,
- 11318
+ 11418,
+ 11756
],
"loc": {
"start": {
- "line": 311,
+ "line": 331,
"column": 8
},
"end": {
- "line": 320,
+ "line": 338,
"column": 9
}
}
@@ -27501,16 +28860,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11331,
- 11333
+ 11769,
+ 11771
],
"loc": {
"start": {
- "line": 322,
+ "line": 340,
"column": 11
},
"end": {
- "line": 322,
+ "line": 340,
"column": 13
}
}
@@ -27519,31 +28878,31 @@
"type": "Identifier",
"name": "enableNonEmptyOption",
"range": [
- 11334,
- 11354
+ 11772,
+ 11792
],
"loc": {
"start": {
- "line": 322,
+ "line": 340,
"column": 14
},
"end": {
- "line": 322,
+ "line": 340,
"column": 34
}
}
},
"range": [
- 11331,
- 11354
+ 11769,
+ 11792
],
"loc": {
"start": {
- "line": 322,
+ "line": 340,
"column": 11
},
"end": {
- "line": 322,
+ "line": 340,
"column": 34
}
}
@@ -27560,16 +28919,16 @@
"type": "Identifier",
"name": "li2",
"range": [
- 11373,
- 11376
+ 11811,
+ 11814
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 16
},
"end": {
- "line": 323,
+ "line": 341,
"column": 19
}
}
@@ -27583,16 +28942,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11379,
- 11382
+ 11817,
+ 11820
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 22
},
"end": {
- "line": 323,
+ "line": 341,
"column": 25
}
}
@@ -27601,31 +28960,31 @@
"type": "Identifier",
"name": "createCheckItem",
"range": [
- 11383,
- 11398
+ 11821,
+ 11836
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 26
},
"end": {
- "line": 323,
+ "line": 341,
"column": 41
}
}
},
"range": [
- 11379,
- 11398
+ 11817,
+ 11836
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 22
},
"end": {
- "line": 323,
+ "line": 341,
"column": 41
}
}
@@ -27644,16 +29003,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11416,
- 11418
+ 11854,
+ 11856
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 16
},
"end": {
- "line": 324,
+ "line": 342,
"column": 18
}
}
@@ -27662,31 +29021,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 11419,
- 11425
+ 11857,
+ 11863
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 19
},
"end": {
- "line": 324,
+ "line": 342,
"column": 25
}
}
},
"range": [
- 11416,
- 11425
+ 11854,
+ 11863
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 16
},
"end": {
- "line": 324,
+ "line": 342,
"column": 25
}
}
@@ -27695,31 +29054,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 11426,
- 11434
+ 11864,
+ 11872
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 26
},
"end": {
- "line": 324,
+ "line": 342,
"column": 34
}
}
},
"range": [
- 11416,
- 11435
+ 11854,
+ 11873
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 16
},
"end": {
- "line": 324,
+ "line": 342,
"column": 35
}
}
@@ -27729,31 +29088,31 @@
"value": "_2",
"raw": "'_2'",
"range": [
- 11436,
- 11440
+ 11874,
+ 11878
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 36
},
"end": {
- "line": 324,
+ "line": 342,
"column": 40
}
}
},
"range": [
- 11416,
- 11440
+ 11854,
+ 11878
],
"loc": {
"start": {
- "line": 324,
+ "line": 342,
"column": 16
},
"end": {
- "line": 324,
+ "line": 342,
"column": 40
}
}
@@ -27765,16 +29124,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11458,
- 11460
+ 11896,
+ 11898
],
"loc": {
"start": {
- "line": 325,
+ "line": 343,
"column": 16
},
"end": {
- "line": 325,
+ "line": 343,
"column": 18
}
}
@@ -27783,31 +29142,31 @@
"type": "Identifier",
"name": "nmOperator",
"range": [
- 11461,
- 11471
+ 11899,
+ 11909
],
"loc": {
"start": {
- "line": 325,
+ "line": 343,
"column": 19
},
"end": {
- "line": 325,
+ "line": 343,
"column": 29
}
}
},
"range": [
- 11458,
- 11471
+ 11896,
+ 11909
],
"loc": {
"start": {
- "line": 325,
+ "line": 343,
"column": 16
},
"end": {
- "line": 325,
+ "line": 343,
"column": 29
}
}
@@ -27819,16 +29178,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11489,
- 11491
+ 11927,
+ 11929
],
"loc": {
"start": {
- "line": 326,
+ "line": 344,
"column": 16
},
"end": {
- "line": 326,
+ "line": 344,
"column": 18
}
}
@@ -27837,79 +29196,79 @@
"type": "Identifier",
"name": "nonEmptyText",
"range": [
- 11492,
- 11504
+ 11930,
+ 11942
],
"loc": {
"start": {
- "line": 326,
+ "line": 344,
"column": 19
},
"end": {
- "line": 326,
+ "line": 344,
"column": 31
}
}
},
"range": [
- 11489,
- 11504
+ 11927,
+ 11942
],
"loc": {
"start": {
- "line": 326,
+ "line": 344,
"column": 16
},
"end": {
- "line": 326,
+ "line": 344,
"column": 31
}
}
}
],
"range": [
- 11379,
- 11518
+ 11817,
+ 11956
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 22
},
"end": {
- "line": 327,
+ "line": 345,
"column": 13
}
}
},
"range": [
- 11373,
- 11518
+ 11811,
+ 11956
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 16
},
"end": {
- "line": 327,
+ "line": 345,
"column": 13
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11369,
- 11519
+ 11807,
+ 11957
],
"loc": {
"start": {
- "line": 323,
+ "line": 341,
"column": 12
},
"end": {
- "line": 327,
+ "line": 345,
"column": 14
}
}
@@ -27926,16 +29285,16 @@
"type": "Identifier",
"name": "li2",
"range": [
- 11532,
- 11535
+ 11970,
+ 11973
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 12
},
"end": {
- "line": 328,
+ "line": 346,
"column": 15
}
}
@@ -27944,31 +29303,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 11536,
- 11545
+ 11974,
+ 11983
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 16
},
"end": {
- "line": 328,
+ "line": 346,
"column": 25
}
}
},
"range": [
- 11532,
- 11545
+ 11970,
+ 11983
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 12
},
"end": {
- "line": 328,
+ "line": 346,
"column": 25
}
}
@@ -27979,16 +29338,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11548,
- 11552
+ 11986,
+ 11990
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 28
},
"end": {
- "line": 328,
+ "line": 346,
"column": 32
}
}
@@ -27997,61 +29356,61 @@
"type": "Identifier",
"name": "checkListItemCssClass",
"range": [
- 11553,
- 11574
+ 11991,
+ 12012
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 33
},
"end": {
- "line": 328,
+ "line": 346,
"column": 54
}
}
},
"range": [
- 11548,
- 11574
+ 11986,
+ 12012
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 28
},
"end": {
- "line": 328,
+ "line": 346,
"column": 54
}
}
},
"range": [
- 11532,
- 11574
+ 11970,
+ 12012
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 12
},
"end": {
- "line": 328,
+ "line": 346,
"column": 54
}
}
},
"range": [
- 11532,
- 11575
+ 11970,
+ 12013
],
"loc": {
"start": {
- "line": 328,
+ "line": 346,
"column": 12
},
"end": {
- "line": 328,
+ "line": 346,
"column": 55
}
}
@@ -28067,16 +29426,16 @@
"type": "Identifier",
"name": "ul",
"range": [
- 11588,
- 11590
+ 12026,
+ 12028
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 12
},
"end": {
- "line": 329,
+ "line": 347,
"column": 14
}
}
@@ -28085,31 +29444,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11591,
- 11602
+ 12029,
+ 12040
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 15
},
"end": {
- "line": 329,
+ "line": 347,
"column": 26
}
}
},
"range": [
- 11588,
- 11602
+ 12026,
+ 12040
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 12
},
"end": {
- "line": 329,
+ "line": 347,
"column": 26
}
}
@@ -28119,47 +29478,47 @@
"type": "Identifier",
"name": "li2",
"range": [
- 11603,
- 11606
+ 12041,
+ 12044
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 27
},
"end": {
- "line": 329,
+ "line": 347,
"column": 30
}
}
}
],
"range": [
- 11588,
- 11607
+ 12026,
+ 12045
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 12
},
"end": {
- "line": 329,
+ "line": 347,
"column": 31
}
}
},
"range": [
- 11588,
- 11608
+ 12026,
+ 12046
],
"loc": {
"start": {
- "line": 329,
+ "line": 347,
"column": 12
},
"end": {
- "line": 329,
+ "line": 347,
"column": 32
}
}
@@ -28175,16 +29534,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 11621,
- 11626
+ 12059,
+ 12064
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 12
},
"end": {
- "line": 330,
+ "line": 348,
"column": 17
}
}
@@ -28193,31 +29552,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 11627,
- 11630
+ 12065,
+ 12068
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 18
},
"end": {
- "line": 330,
+ "line": 348,
"column": 21
}
}
},
"range": [
- 11621,
- 11630
+ 12059,
+ 12068
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 12
},
"end": {
- "line": 330,
+ "line": 348,
"column": 21
}
}
@@ -28230,16 +29589,16 @@
"type": "Identifier",
"name": "li2",
"range": [
- 11631,
- 11634
+ 12069,
+ 12072
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 22
},
"end": {
- "line": 330,
+ "line": 348,
"column": 25
}
}
@@ -28248,31 +29607,31 @@
"type": "Identifier",
"name": "check",
"range": [
- 11635,
- 11640
+ 12073,
+ 12078
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 26
},
"end": {
- "line": 330,
+ "line": 348,
"column": 31
}
}
},
"range": [
- 11631,
- 11640
+ 12069,
+ 12078
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 22
},
"end": {
- "line": 330,
+ "line": 348,
"column": 31
}
}
@@ -28282,16 +29641,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 11642,
- 11649
+ 12080,
+ 12087
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 33
},
"end": {
- "line": 330,
+ "line": 348,
"column": 40
}
}
@@ -28304,192 +29663,156 @@
"type": "Identifier",
"name": "evt",
"range": [
- 11652,
- 11655
+ 12090,
+ 12093
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 43
},
"end": {
- "line": 330,
+ "line": 348,
"column": 46
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 11678,
- 11682
- ],
- "loc": {
- "start": {
- "line": 331,
- "column": 16
- },
- "end": {
- "line": 331,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "optionClick",
- "range": [
- 11683,
- 11694
- ],
- "loc": {
- "start": {
- "line": 331,
- "column": 21
- },
- "end": {
- "line": 331,
- "column": 32
- }
- }
- },
- "range": [
- 11678,
- 11694
- ],
- "loc": {
- "start": {
- "line": 331,
- "column": 16
- },
- "end": {
- "line": 331,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 11695,
- 11698
- ],
- "loc": {
- "start": {
- "line": 331,
- "column": 33
- },
- "end": {
- "line": 331,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 11678,
- 11699
- ],
- "loc": {
- "start": {
- "line": 331,
- "column": 16
- },
- "end": {
- "line": 331,
- "column": 37
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 11678,
- 11700
+ 12097,
+ 12101
],
"loc": {
"start": {
- "line": 331,
- "column": 16
+ "line": 348,
+ "column": 50
},
"end": {
- "line": 331,
- "column": 38
+ "line": 348,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "optionClick",
+ "range": [
+ 12102,
+ 12113
+ ],
+ "loc": {
+ "start": {
+ "line": 348,
+ "column": 55
+ },
+ "end": {
+ "line": 348,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 12097,
+ 12113
+ ],
+ "loc": {
+ "start": {
+ "line": 348,
+ "column": 50
+ },
+ "end": {
+ "line": 348,
+ "column": 66
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "evt",
+ "range": [
+ 12114,
+ 12117
+ ],
+ "loc": {
+ "start": {
+ "line": 348,
+ "column": 67
+ },
+ "end": {
+ "line": 348,
+ "column": 70
}
}
}
],
"range": [
- 11660,
- 11714
+ 12097,
+ 12118
],
"loc": {
"start": {
- "line": 330,
- "column": 51
+ "line": 348,
+ "column": 50
},
"end": {
- "line": 332,
- "column": 13
+ "line": 348,
+ "column": 71
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 11651,
- 11714
+ 12089,
+ 12118
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 42
},
"end": {
- "line": 332,
- "column": 13
+ "line": 348,
+ "column": 71
}
}
}
],
"range": [
- 11621,
- 11715
+ 12059,
+ 12119
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 12
},
"end": {
- "line": 332,
- "column": 14
+ "line": 348,
+ "column": 72
}
}
},
"range": [
- 11621,
- 11716
+ 12059,
+ 12120
],
"loc": {
"start": {
- "line": 330,
+ "line": 348,
"column": 12
},
"end": {
- "line": 332,
- "column": 15
+ "line": 348,
+ "column": 73
}
}
},
@@ -28502,79 +29825,79 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 11729,
- 11734
+ 12133,
+ 12138
],
"loc": {
"start": {
- "line": 333,
+ "line": 349,
"column": 12
},
"end": {
- "line": 333,
+ "line": 349,
"column": 17
}
}
},
"prefix": false,
"range": [
- 11729,
- 11736
+ 12133,
+ 12140
],
"loc": {
"start": {
- "line": 333,
+ "line": 349,
"column": 12
},
"end": {
- "line": 333,
+ "line": 349,
"column": 19
}
}
},
"range": [
- 11729,
- 11737
+ 12133,
+ 12141
],
"loc": {
"start": {
- "line": 333,
+ "line": 349,
"column": 12
},
"end": {
- "line": 333,
+ "line": 349,
"column": 20
}
}
}
],
"range": [
- 11355,
- 11747
+ 11793,
+ 12151
],
"loc": {
"start": {
- "line": 322,
+ "line": 340,
"column": 35
},
"end": {
- "line": 334,
+ "line": 350,
"column": 9
}
}
},
"alternate": null,
"range": [
- 11328,
- 11747
+ 11766,
+ 12151
],
"loc": {
"start": {
- "line": 322,
+ "line": 340,
"column": 8
},
"end": {
- "line": 334,
+ "line": 350,
"column": 9
}
}
@@ -28585,47 +29908,47 @@
"type": "Identifier",
"name": "chkCt",
"range": [
- 11763,
- 11768
+ 12167,
+ 12172
],
"loc": {
"start": {
- "line": 335,
+ "line": 351,
"column": 15
},
"end": {
- "line": 335,
+ "line": 351,
"column": 20
}
}
},
"range": [
- 11756,
- 11769
+ 12160,
+ 12173
],
"loc": {
"start": {
- "line": 335,
+ "line": 351,
"column": 8
},
"end": {
- "line": 335,
+ "line": 351,
"column": 21
}
}
}
],
"range": [
- 10502,
- 11775
+ 11000,
+ 12179
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 28
},
"end": {
- "line": 336,
+ "line": 352,
"column": 5
}
}
@@ -28633,16 +29956,16 @@
"generator": false,
"expression": false,
"range": [
- 10488,
- 11775
+ 10986,
+ 12179
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 14
},
"end": {
- "line": 336,
+ "line": 352,
"column": 5
}
}
@@ -28650,16 +29973,16 @@
"kind": "method",
"computed": false,
"range": [
- 10478,
- 11775
+ 10976,
+ 12179
],
"loc": {
"start": {
- "line": 295,
+ "line": 317,
"column": 4
},
"end": {
- "line": 336,
+ "line": 352,
"column": 5
}
},
@@ -28668,16 +29991,16 @@
"type": "Block",
"value": "*\n * Add checklist header option\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 10339,
- 10473
+ 10837,
+ 10971
],
"loc": {
"start": {
- "line": 290,
+ "line": 312,
"column": 4
},
"end": {
- "line": 294,
+ "line": 316,
"column": 7
}
}
@@ -28688,16 +30011,16 @@
"type": "Block",
"value": "*\n * Store checked options in DOM element attribute\n * @param {Object} o checklist option DOM element\n ",
"range": [
- 11781,
- 11900
+ 12185,
+ 12304
],
"loc": {
"start": {
- "line": 338,
+ "line": 354,
"column": 4
},
"end": {
- "line": 341,
+ "line": 357,
"column": 7
}
}
@@ -28711,16 +30034,16 @@
"type": "Identifier",
"name": "setCheckListValues",
"range": [
- 11905,
- 11923
+ 12309,
+ 12327
],
"loc": {
"start": {
- "line": 342,
+ "line": 358,
"column": 4
},
"end": {
- "line": 342,
+ "line": 358,
"column": 22
}
}
@@ -28733,16 +30056,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 11924,
- 11925
+ 12328,
+ 12329
],
"loc": {
"start": {
- "line": 342,
+ "line": 358,
"column": 23
},
"end": {
- "line": 342,
+ "line": 358,
"column": 24
}
}
@@ -28760,32 +30083,32 @@
"type": "Identifier",
"name": "o",
"range": [
- 11940,
- 11941
+ 12344,
+ 12345
],
"loc": {
"start": {
- "line": 343,
+ "line": 359,
"column": 12
},
"end": {
- "line": 343,
+ "line": 359,
"column": 13
}
}
},
"prefix": true,
"range": [
- 11939,
- 11941
+ 12343,
+ 12345
],
"loc": {
"start": {
- "line": 343,
+ "line": 359,
"column": 11
},
"end": {
- "line": 343,
+ "line": 359,
"column": 13
}
}
@@ -28797,48 +30120,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 11956,
- 11963
+ 12360,
+ 12367
],
"loc": {
"start": {
- "line": 344,
+ "line": 360,
"column": 12
},
"end": {
- "line": 344,
+ "line": 360,
"column": 19
}
}
}
],
"range": [
- 11942,
- 11973
+ 12346,
+ 12377
],
"loc": {
"start": {
- "line": 343,
+ "line": 359,
"column": 14
},
"end": {
- "line": 345,
+ "line": 361,
"column": 9
}
}
},
"alternate": null,
"range": [
- 11936,
- 11973
+ 12340,
+ 12377
],
"loc": {
"start": {
- "line": 343,
+ "line": 359,
"column": 8
},
"end": {
- "line": 345,
+ "line": 361,
"column": 9
}
}
@@ -28852,16 +30175,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11986,
- 11988
+ 12390,
+ 12392
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 12
},
"end": {
- "line": 346,
+ "line": 362,
"column": 14
}
}
@@ -28872,16 +30195,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11991,
- 11995
+ 12395,
+ 12399
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 17
},
"end": {
- "line": 346,
+ "line": 362,
"column": 21
}
}
@@ -28890,63 +30213,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11996,
- 11998
+ 12400,
+ 12402
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 22
},
"end": {
- "line": 346,
+ "line": 362,
"column": 24
}
}
},
"range": [
- 11991,
- 11998
+ 12395,
+ 12402
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 17
},
"end": {
- "line": 346,
+ "line": 362,
"column": 24
}
}
},
"range": [
- 11986,
- 11998
+ 12390,
+ 12402
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 12
},
"end": {
- "line": 346,
+ "line": 362,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11982,
- 11999
+ 12386,
+ 12403
],
"loc": {
"start": {
- "line": 346,
+ "line": 362,
"column": 8
},
"end": {
- "line": 346,
+ "line": 362,
"column": 25
}
}
@@ -28960,16 +30283,16 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 12012,
- 12020
+ 12416,
+ 12424
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 12
},
"end": {
- "line": 347,
+ "line": 363,
"column": 20
}
}
@@ -28981,16 +30304,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 12023,
- 12024
+ 12427,
+ 12428
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 23
},
"end": {
- "line": 347,
+ "line": 363,
"column": 24
}
}
@@ -28999,63 +30322,63 @@
"type": "Identifier",
"name": "value",
"range": [
- 12025,
- 12030
+ 12429,
+ 12434
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 25
},
"end": {
- "line": 347,
+ "line": 363,
"column": 30
}
}
},
"range": [
- 12023,
- 12030
+ 12427,
+ 12434
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 23
},
"end": {
- "line": 347,
+ "line": 363,
"column": 30
}
}
},
"range": [
- 12012,
- 12030
+ 12416,
+ 12434
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 12
},
"end": {
- "line": 347,
+ "line": 363,
"column": 30
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12008,
- 12031
+ 12412,
+ 12435
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 8
},
"end": {
- "line": 347,
+ "line": 363,
"column": 31
}
},
@@ -29064,16 +30387,16 @@
"type": "Line",
"value": "checked item value",
"range": [
- 12032,
- 12052
+ 12436,
+ 12456
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 32
},
"end": {
- "line": 347,
+ "line": 363,
"column": 52
}
}
@@ -29089,16 +30412,16 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 12065,
- 12073
+ 12469,
+ 12477
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 12
},
"end": {
- "line": 348,
+ "line": 364,
"column": 20
}
}
@@ -29109,16 +30432,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 12076,
- 12084
+ 12480,
+ 12488
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 23
},
"end": {
- "line": 348,
+ "line": 364,
"column": 31
}
}
@@ -29139,16 +30462,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 12085,
- 12086
+ 12489,
+ 12490
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 32
},
"end": {
- "line": 348,
+ "line": 364,
"column": 33
}
}
@@ -29157,31 +30480,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 12087,
- 12089
+ 12491,
+ 12493
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 34
},
"end": {
- "line": 348,
+ "line": 364,
"column": 36
}
}
},
"range": [
- 12085,
- 12089
+ 12489,
+ 12493
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 32
},
"end": {
- "line": 348,
+ "line": 364,
"column": 36
}
}
@@ -29190,31 +30513,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 12090,
- 12095
+ 12494,
+ 12499
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 37
},
"end": {
- "line": 348,
+ "line": 364,
"column": 42
}
}
},
"range": [
- 12085,
- 12095
+ 12489,
+ 12499
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 32
},
"end": {
- "line": 348,
+ "line": 364,
"column": 42
}
}
@@ -29225,32 +30548,32 @@
"value": "_",
"raw": "'_'",
"range": [
- 12096,
- 12099
+ 12500,
+ 12503
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 43
},
"end": {
- "line": 348,
+ "line": 364,
"column": 46
}
}
}
],
"range": [
- 12085,
- 12100
+ 12489,
+ 12504
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 32
},
"end": {
- "line": 348,
+ "line": 364,
"column": 47
}
}
@@ -29260,31 +30583,31 @@
"value": 2,
"raw": "2",
"range": [
- 12101,
- 12102
+ 12505,
+ 12506
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 48
},
"end": {
- "line": 348,
+ "line": 364,
"column": 49
}
}
},
"range": [
- 12085,
- 12103
+ 12489,
+ 12507
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 32
},
"end": {
- "line": 348,
+ "line": 364,
"column": 50
}
}
@@ -29294,64 +30617,64 @@
"value": 10,
"raw": "10",
"range": [
- 12105,
- 12107
+ 12509,
+ 12511
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 52
},
"end": {
- "line": 348,
+ "line": 364,
"column": 54
}
}
}
],
"range": [
- 12076,
- 12108
+ 12480,
+ 12512
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 23
},
"end": {
- "line": 348,
+ "line": 364,
"column": 55
}
}
},
"range": [
- 12065,
- 12108
+ 12469,
+ 12512
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 12
},
"end": {
- "line": 348,
+ "line": 364,
"column": 55
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12061,
- 12109
+ 12465,
+ 12513
],
"loc": {
"start": {
- "line": 348,
+ "line": 364,
"column": 8
},
"end": {
- "line": 348,
+ "line": 364,
"column": 56
}
},
@@ -29360,16 +30683,16 @@
"type": "Line",
"value": "checked item value",
"range": [
- 12032,
- 12052
+ 12436,
+ 12456
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 32
},
"end": {
- "line": 347,
+ "line": 363,
"column": 52
}
}
@@ -29385,16 +30708,16 @@
"type": "Identifier",
"name": "filterTag",
"range": [
- 12122,
- 12131
+ 12526,
+ 12535
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 12
},
"end": {
- "line": 349,
+ "line": 365,
"column": 21
}
}
@@ -29404,31 +30727,31 @@
"value": "ul",
"raw": "'ul'",
"range": [
- 12134,
- 12138
+ 12538,
+ 12542
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 24
},
"end": {
- "line": 349,
+ "line": 365,
"column": 28
}
}
},
"range": [
- 12122,
- 12138
+ 12526,
+ 12542
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 12
},
"end": {
- "line": 349,
+ "line": 365,
"column": 28
}
}
@@ -29439,16 +30762,16 @@
"type": "Identifier",
"name": "itemTag",
"range": [
- 12140,
- 12147
+ 12544,
+ 12551
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 30
},
"end": {
- "line": 349,
+ "line": 365,
"column": 37
}
}
@@ -29458,48 +30781,48 @@
"value": "li",
"raw": "'li'",
"range": [
- 12150,
- 12154
+ 12554,
+ 12558
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 40
},
"end": {
- "line": 349,
+ "line": 365,
"column": 44
}
}
},
"range": [
- 12140,
- 12154
+ 12544,
+ 12558
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 30
},
"end": {
- "line": 349,
+ "line": 365,
"column": 44
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12118,
- 12155
+ 12522,
+ 12559
],
"loc": {
"start": {
- "line": 349,
+ "line": 365,
"column": 8
},
"end": {
- "line": 349,
+ "line": 365,
"column": 45
}
}
@@ -29513,16 +30836,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12168,
- 12169
+ 12572,
+ 12573
],
"loc": {
"start": {
- "line": 350,
+ "line": 366,
"column": 12
},
"end": {
- "line": 350,
+ "line": 366,
"column": 13
}
}
@@ -29531,48 +30854,48 @@
"type": "Identifier",
"name": "o",
"range": [
- 12172,
- 12173
+ 12576,
+ 12577
],
"loc": {
"start": {
- "line": 350,
+ "line": 366,
"column": 16
},
"end": {
- "line": 350,
+ "line": 366,
"column": 17
}
}
},
"range": [
- 12168,
- 12173
+ 12572,
+ 12577
],
"loc": {
"start": {
- "line": 350,
+ "line": 366,
"column": 12
},
"end": {
- "line": 350,
+ "line": 366,
"column": 17
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12164,
- 12174
+ 12568,
+ 12578
],
"loc": {
"start": {
- "line": 350,
+ "line": 366,
"column": 8
},
"end": {
- "line": 350,
+ "line": 366,
"column": 18
}
},
@@ -29581,16 +30904,16 @@
"type": "Line",
"value": "ul tag search",
"range": [
- 12184,
- 12199
+ 12588,
+ 12603
],
"loc": {
"start": {
- "line": 352,
+ "line": 368,
"column": 8
},
"end": {
- "line": 352,
+ "line": 368,
"column": 23
}
}
@@ -29611,16 +30934,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 12214,
- 12217
+ 12618,
+ 12621
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 14
},
"end": {
- "line": 353,
+ "line": 369,
"column": 17
}
}
@@ -29629,31 +30952,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 12218,
- 12223
+ 12622,
+ 12627
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 18
},
"end": {
- "line": 353,
+ "line": 369,
"column": 23
}
}
},
"range": [
- 12214,
- 12223
+ 12618,
+ 12627
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 14
},
"end": {
- "line": 353,
+ "line": 369,
"column": 23
}
}
@@ -29666,16 +30989,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12224,
- 12225
+ 12628,
+ 12629
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 24
},
"end": {
- "line": 353,
+ "line": 369,
"column": 25
}
}
@@ -29684,47 +31007,47 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 12226,
- 12234
+ 12630,
+ 12638
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 26
},
"end": {
- "line": 353,
+ "line": 369,
"column": 34
}
}
},
"range": [
- 12224,
- 12234
+ 12628,
+ 12638
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 24
},
"end": {
- "line": 353,
+ "line": 369,
"column": 34
}
}
}
],
"range": [
- 12214,
- 12235
+ 12618,
+ 12639
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 14
},
"end": {
- "line": 353,
+ "line": 369,
"column": 35
}
}
@@ -29733,31 +31056,31 @@
"type": "Identifier",
"name": "filterTag",
"range": [
- 12238,
- 12247
+ 12642,
+ 12651
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 38
},
"end": {
- "line": 353,
+ "line": 369,
"column": 47
}
}
},
"range": [
- 12214,
- 12247
+ 12618,
+ 12651
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 14
},
"end": {
- "line": 353,
+ "line": 369,
"column": 47
}
}
@@ -29774,16 +31097,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12262,
- 12263
+ 12666,
+ 12667
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 12
},
"end": {
- "line": 354,
+ "line": 370,
"column": 13
}
}
@@ -29795,16 +31118,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12266,
- 12267
+ 12670,
+ 12671
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 16
},
"end": {
- "line": 354,
+ "line": 370,
"column": 17
}
}
@@ -29813,92 +31136,92 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 12268,
- 12278
+ 12672,
+ 12682
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 18
},
"end": {
- "line": 354,
+ "line": 370,
"column": 28
}
}
},
"range": [
- 12266,
- 12278
+ 12670,
+ 12682
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 16
},
"end": {
- "line": 354,
+ "line": 370,
"column": 28
}
}
},
"range": [
- 12262,
- 12278
+ 12666,
+ 12682
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 12
},
"end": {
- "line": 354,
+ "line": 370,
"column": 28
}
}
},
"range": [
- 12262,
- 12279
+ 12666,
+ 12683
],
"loc": {
"start": {
- "line": 354,
+ "line": 370,
"column": 12
},
"end": {
- "line": 354,
+ "line": 370,
"column": 29
}
}
}
],
"range": [
- 12248,
- 12289
+ 12652,
+ 12693
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 48
},
"end": {
- "line": 355,
+ "line": 371,
"column": 9
}
}
},
"range": [
- 12208,
- 12289
+ 12612,
+ 12693
],
"loc": {
"start": {
- "line": 353,
+ "line": 369,
"column": 8
},
"end": {
- "line": 355,
+ "line": 371,
"column": 9
}
},
@@ -29907,16 +31230,16 @@
"type": "Line",
"value": "ul tag search",
"range": [
- 12184,
- 12199
+ 12588,
+ 12603
],
"loc": {
"start": {
- "line": 352,
+ "line": 368,
"column": 8
},
"end": {
- "line": 352,
+ "line": 368,
"column": 23
}
}
@@ -29932,16 +31255,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 12303,
- 12305
+ 12707,
+ 12709
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 12
},
"end": {
- "line": 357,
+ "line": 373,
"column": 14
}
}
@@ -29956,16 +31279,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12308,
- 12309
+ 12712,
+ 12713
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 17
},
"end": {
- "line": 357,
+ "line": 373,
"column": 18
}
}
@@ -29974,31 +31297,31 @@
"type": "Identifier",
"name": "childNodes",
"range": [
- 12310,
- 12320
+ 12714,
+ 12724
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 19
},
"end": {
- "line": 357,
+ "line": 373,
"column": 29
}
}
},
"range": [
- 12308,
- 12320
+ 12712,
+ 12724
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 17
},
"end": {
- "line": 357,
+ "line": 373,
"column": 29
}
}
@@ -30007,63 +31330,63 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 12321,
- 12329
+ 12725,
+ 12733
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 30
},
"end": {
- "line": 357,
+ "line": 373,
"column": 38
}
}
},
"range": [
- 12308,
- 12330
+ 12712,
+ 12734
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 17
},
"end": {
- "line": 357,
+ "line": 373,
"column": 39
}
}
},
"range": [
- 12303,
- 12330
+ 12707,
+ 12734
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 12
},
"end": {
- "line": 357,
+ "line": 373,
"column": 39
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12299,
- 12331
+ 12703,
+ 12735
],
"loc": {
"start": {
- "line": 357,
+ "line": 373,
"column": 8
},
"end": {
- "line": 357,
+ "line": 373,
"column": 40
}
}
@@ -30077,16 +31400,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 12344,
- 12352
+ 12748,
+ 12756
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 12
},
"end": {
- "line": 358,
+ "line": 374,
"column": 20
}
}
@@ -30100,16 +31423,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12355,
- 12356
+ 12759,
+ 12760
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 23
},
"end": {
- "line": 358,
+ "line": 374,
"column": 24
}
}
@@ -30118,31 +31441,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 12357,
- 12369
+ 12761,
+ 12773
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 25
},
"end": {
- "line": 358,
+ "line": 374,
"column": 37
}
}
},
"range": [
- 12355,
- 12369
+ 12759,
+ 12773
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 23
},
"end": {
- "line": 358,
+ "line": 374,
"column": 37
}
}
@@ -30153,64 +31476,64 @@
"value": "colIndex",
"raw": "'colIndex'",
"range": [
- 12370,
- 12380
+ 12774,
+ 12784
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 38
},
"end": {
- "line": 358,
+ "line": 374,
"column": 48
}
}
}
],
"range": [
- 12355,
- 12381
+ 12759,
+ 12785
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 23
},
"end": {
- "line": 358,
+ "line": 374,
"column": 49
}
}
},
"range": [
- 12344,
- 12381
+ 12748,
+ 12785
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 12
},
"end": {
- "line": 358,
+ "line": 374,
"column": 49
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12340,
- 12382
+ 12744,
+ 12786
],
"loc": {
"start": {
- "line": 358,
+ "line": 374,
"column": 8
},
"end": {
- "line": 358,
+ "line": 374,
"column": 50
}
}
@@ -30224,16 +31547,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 12395,
- 12403
+ 12799,
+ 12807
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 12
},
"end": {
- "line": 359,
+ "line": 375,
"column": 20
}
}
@@ -30247,16 +31570,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12406,
- 12407
+ 12810,
+ 12811
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 23
},
"end": {
- "line": 359,
+ "line": 375,
"column": 24
}
}
@@ -30265,31 +31588,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 12408,
- 12420
+ 12812,
+ 12824
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 25
},
"end": {
- "line": 359,
+ "line": 375,
"column": 37
}
}
},
"range": [
- 12406,
- 12420
+ 12810,
+ 12824
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 23
},
"end": {
- "line": 359,
+ "line": 375,
"column": 37
}
}
@@ -30300,64 +31623,64 @@
"value": "value",
"raw": "'value'",
"range": [
- 12421,
- 12428
+ 12825,
+ 12832
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 38
},
"end": {
- "line": 359,
+ "line": 375,
"column": 45
}
}
}
],
"range": [
- 12406,
- 12429
+ 12810,
+ 12833
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 23
},
"end": {
- "line": 359,
+ "line": 375,
"column": 46
}
}
},
"range": [
- 12395,
- 12429
+ 12799,
+ 12833
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 12
},
"end": {
- "line": 359,
+ "line": 375,
"column": 46
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12391,
- 12430
+ 12795,
+ 12834
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 8
},
"end": {
- "line": 359,
+ "line": 375,
"column": 47
}
},
@@ -30366,16 +31689,16 @@
"type": "Line",
"value": "filter value (ul tag)",
"range": [
- 12431,
- 12454
+ 12835,
+ 12858
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 48
},
"end": {
- "line": 359,
+ "line": 375,
"column": 71
}
}
@@ -30391,16 +31714,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 12467,
- 12477
+ 12871,
+ 12881
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 12
},
"end": {
- "line": 360,
+ "line": 376,
"column": 22
}
}
@@ -30414,16 +31737,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 12480,
- 12481
+ 12884,
+ 12885
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 25
},
"end": {
- "line": 360,
+ "line": 376,
"column": 26
}
}
@@ -30432,31 +31755,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 12482,
- 12494
+ 12886,
+ 12898
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 27
},
"end": {
- "line": 360,
+ "line": 376,
"column": 39
}
}
},
"range": [
- 12480,
- 12494
+ 12884,
+ 12898
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 25
},
"end": {
- "line": 360,
+ "line": 376,
"column": 39
}
}
@@ -30467,64 +31790,64 @@
"value": "indexes",
"raw": "'indexes'",
"range": [
- 12495,
- 12504
+ 12899,
+ 12908
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 40
},
"end": {
- "line": 360,
+ "line": 376,
"column": 49
}
}
}
],
"range": [
- 12480,
- 12505
+ 12884,
+ 12909
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 25
},
"end": {
- "line": 360,
+ "line": 376,
"column": 50
}
}
},
"range": [
- 12467,
- 12505
+ 12871,
+ 12909
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 12
},
"end": {
- "line": 360,
+ "line": 376,
"column": 50
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12463,
- 12506
+ 12867,
+ 12910
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 8
},
"end": {
- "line": 360,
+ "line": 376,
"column": 51
}
},
@@ -30533,16 +31856,16 @@
"type": "Line",
"value": "filter value (ul tag)",
"range": [
- 12431,
- 12454
+ 12835,
+ 12858
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 48
},
"end": {
- "line": 359,
+ "line": 375,
"column": 71
}
}
@@ -30553,16 +31876,16 @@
"type": "Line",
"value": "selected items (ul tag)",
"range": [
- 12507,
- 12532
+ 12911,
+ 12936
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 52
},
"end": {
- "line": 360,
+ "line": 376,
"column": 77
}
}
@@ -30578,16 +31901,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 12545,
- 12546
+ 12949,
+ 12950
],
"loc": {
"start": {
- "line": 362,
+ "line": 378,
"column": 11
},
"end": {
- "line": 362,
+ "line": 378,
"column": 12
}
}
@@ -30596,31 +31919,31 @@
"type": "Identifier",
"name": "checked",
"range": [
- 12547,
- 12554
+ 12951,
+ 12958
],
"loc": {
"start": {
- "line": 362,
+ "line": 378,
"column": 13
},
"end": {
- "line": 362,
+ "line": 378,
"column": 20
}
}
},
"range": [
- 12545,
- 12554
+ 12949,
+ 12958
],
"loc": {
"start": {
- "line": 362,
+ "line": 378,
"column": 11
},
"end": {
- "line": 362,
+ "line": 378,
"column": 20
}
}
@@ -30637,16 +31960,16 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 12600,
- 12608
+ 13004,
+ 13012
],
"loc": {
"start": {
- "line": 364,
+ "line": 380,
"column": 15
},
"end": {
- "line": 364,
+ "line": 380,
"column": 23
}
}
@@ -30656,31 +31979,31 @@
"value": "",
"raw": "''",
"range": [
- 12611,
- 12613
+ 13015,
+ 13017
],
"loc": {
"start": {
- "line": 364,
+ "line": 380,
"column": 26
},
"end": {
- "line": 364,
+ "line": 380,
"column": 28
}
}
},
"range": [
- 12600,
- 12613
+ 13004,
+ 13017
],
"loc": {
"start": {
- "line": 364,
+ "line": 380,
"column": 15
},
"end": {
- "line": 364,
+ "line": 380,
"column": 28
}
}
@@ -30697,16 +32020,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 12636,
- 12646
+ 13040,
+ 13050
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 20
},
"end": {
- "line": 365,
+ "line": 381,
"column": 30
}
}
@@ -30718,16 +32041,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 12650,
- 12660
+ 13054,
+ 13064
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 34
},
"end": {
- "line": 365,
+ "line": 381,
"column": 44
}
}
@@ -30737,46 +32060,46 @@
"value": "",
"raw": "''",
"range": [
- 12663,
- 12665
+ 13067,
+ 13069
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 47
},
"end": {
- "line": 365,
+ "line": 381,
"column": 49
}
}
},
"range": [
- 12650,
- 12665
+ 13054,
+ 13069
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 34
},
"end": {
- "line": 365,
+ "line": 381,
"column": 49
}
}
},
"range": [
- 12636,
- 12665
+ 13040,
+ 13069
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 20
},
"end": {
- "line": 365,
+ "line": 381,
"column": 49
}
}
@@ -30793,16 +32116,16 @@
"type": "Identifier",
"name": "indSplit",
"range": [
- 12729,
- 12737
+ 13133,
+ 13141
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 24
},
"end": {
- "line": 367,
+ "line": 383,
"column": 32
}
}
@@ -30816,16 +32139,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 12740,
- 12750
+ 13144,
+ 13154
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 35
},
"end": {
- "line": 367,
+ "line": 383,
"column": 45
}
}
@@ -30834,31 +32157,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 12751,
- 12756
+ 13155,
+ 13160
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 46
},
"end": {
- "line": 367,
+ "line": 383,
"column": 51
}
}
},
"range": [
- 12740,
- 12756
+ 13144,
+ 13160
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 35
},
"end": {
- "line": 367,
+ "line": 383,
"column": 51
}
}
@@ -30871,16 +32194,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12757,
- 12759
+ 13161,
+ 13163
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 52
},
"end": {
- "line": 367,
+ "line": 383,
"column": 54
}
}
@@ -30889,79 +32212,79 @@
"type": "Identifier",
"name": "separator",
"range": [
- 12760,
- 12769
+ 13164,
+ 13173
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 55
},
"end": {
- "line": 367,
+ "line": 383,
"column": 64
}
}
},
"range": [
- 12757,
- 12769
+ 13161,
+ 13173
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 52
},
"end": {
- "line": 367,
+ "line": 383,
"column": 64
}
}
}
],
"range": [
- 12740,
- 12770
+ 13144,
+ 13174
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 35
},
"end": {
- "line": 367,
+ "line": 383,
"column": 65
}
}
},
"range": [
- 12729,
- 12770
+ 13133,
+ 13174
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 24
},
"end": {
- "line": 367,
+ "line": 383,
"column": 65
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12725,
- 12771
+ 13129,
+ 13175
],
"loc": {
"start": {
- "line": 367,
+ "line": 383,
"column": 20
},
"end": {
- "line": 367,
+ "line": 383,
"column": 66
}
},
@@ -30970,16 +32293,16 @@
"type": "Line",
"value": "items indexes",
"range": [
- 12689,
- 12704
+ 13093,
+ 13108
],
"loc": {
"start": {
- "line": 366,
+ "line": 382,
"column": 20
},
"end": {
- "line": 366,
+ "line": 382,
"column": 35
}
}
@@ -30990,16 +32313,16 @@
"type": "Line",
"value": "checked items loop",
"range": [
- 12792,
- 12812
+ 13196,
+ 13216
],
"loc": {
"start": {
- "line": 368,
+ "line": 384,
"column": 20
},
"end": {
- "line": 368,
+ "line": 384,
"column": 40
}
}
@@ -31017,16 +32340,16 @@
"type": "Identifier",
"name": "u",
"range": [
- 12841,
- 12842
+ 13245,
+ 13246
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 28
},
"end": {
- "line": 369,
+ "line": 385,
"column": 29
}
}
@@ -31036,48 +32359,48 @@
"value": 0,
"raw": "0",
"range": [
- 12843,
- 12844
+ 13247,
+ 13248
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 30
},
"end": {
- "line": 369,
+ "line": 385,
"column": 31
}
}
},
"range": [
- 12841,
- 12844
+ 13245,
+ 13248
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 28
},
"end": {
- "line": 369,
+ "line": 385,
"column": 31
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12837,
- 12844
+ 13241,
+ 13248
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 24
},
"end": {
- "line": 369,
+ "line": 385,
"column": 31
}
}
@@ -31089,16 +32412,16 @@
"type": "Identifier",
"name": "u",
"range": [
- 12846,
- 12847
+ 13250,
+ 13251
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 33
},
"end": {
- "line": 369,
+ "line": 385,
"column": 34
}
}
@@ -31110,16 +32433,16 @@
"type": "Identifier",
"name": "indSplit",
"range": [
- 12848,
- 12856
+ 13252,
+ 13260
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 35
},
"end": {
- "line": 369,
+ "line": 385,
"column": 43
}
}
@@ -31128,46 +32451,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 12857,
- 12863
+ 13261,
+ 13267
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 44
},
"end": {
- "line": 369,
+ "line": 385,
"column": 50
}
}
},
"range": [
- 12848,
- 12863
+ 13252,
+ 13267
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 35
},
"end": {
- "line": 369,
+ "line": 385,
"column": 50
}
}
},
"range": [
- 12846,
- 12863
+ 13250,
+ 13267
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 33
},
"end": {
- "line": 369,
+ "line": 385,
"column": 50
}
}
@@ -31179,32 +32502,32 @@
"type": "Identifier",
"name": "u",
"range": [
- 12865,
- 12866
+ 13269,
+ 13270
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 52
},
"end": {
- "line": 369,
+ "line": 385,
"column": 53
}
}
},
"prefix": false,
"range": [
- 12865,
- 12868
+ 13269,
+ 13272
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 52
},
"end": {
- "line": 369,
+ "line": 385,
"column": 55
}
}
@@ -31221,16 +32544,16 @@
"type": "Identifier",
"name": "cChk",
"range": [
- 12938,
- 12942
+ 13342,
+ 13346
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 28
},
"end": {
- "line": 371,
+ "line": 387,
"column": 32
}
}
@@ -31244,16 +32567,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12945,
- 12948
+ 13349,
+ 13352
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 35
},
"end": {
- "line": 371,
+ "line": 387,
"column": 38
}
}
@@ -31262,31 +32585,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 12949,
- 12951
+ 13353,
+ 13355
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 39
},
"end": {
- "line": 371,
+ "line": 387,
"column": 41
}
}
},
"range": [
- 12945,
- 12951
+ 13349,
+ 13355
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 35
},
"end": {
- "line": 371,
+ "line": 387,
"column": 41
}
}
@@ -31308,16 +32631,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12952,
- 12954
+ 13356,
+ 13358
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 42
},
"end": {
- "line": 371,
+ "line": 387,
"column": 44
}
}
@@ -31326,31 +32649,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 12955,
- 12961
+ 13359,
+ 13365
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 45
},
"end": {
- "line": 371,
+ "line": 387,
"column": 51
}
}
},
"range": [
- 12952,
- 12961
+ 13356,
+ 13365
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 42
},
"end": {
- "line": 371,
+ "line": 387,
"column": 51
}
}
@@ -31359,31 +32682,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 12962,
- 12970
+ 13366,
+ 13374
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 52
},
"end": {
- "line": 371,
+ "line": 387,
"column": 60
}
}
},
"range": [
- 12952,
- 12971
+ 13356,
+ 13375
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 42
},
"end": {
- "line": 371,
+ "line": 387,
"column": 61
}
}
@@ -31393,31 +32716,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 12972,
- 12975
+ 13376,
+ 13379
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 62
},
"end": {
- "line": 371,
+ "line": 387,
"column": 65
}
}
},
"range": [
- 12952,
- 12975
+ 13356,
+ 13379
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 42
},
"end": {
- "line": 371,
+ "line": 387,
"column": 65
}
}
@@ -31429,16 +32752,16 @@
"type": "Identifier",
"name": "indSplit",
"range": [
- 12976,
- 12984
+ 13380,
+ 13388
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 66
},
"end": {
- "line": 371,
+ "line": 387,
"column": 74
}
}
@@ -31447,94 +32770,94 @@
"type": "Identifier",
"name": "u",
"range": [
- 12985,
- 12986
+ 13389,
+ 13390
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 75
},
"end": {
- "line": 371,
+ "line": 387,
"column": 76
}
}
},
"range": [
- 12976,
- 12987
+ 13380,
+ 13391
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 66
},
"end": {
- "line": 371,
+ "line": 387,
"column": 77
}
}
},
"range": [
- 12952,
- 12987
+ 13356,
+ 13391
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 42
},
"end": {
- "line": 371,
+ "line": 387,
"column": 77
}
}
}
],
"range": [
- 12945,
- 12988
+ 13349,
+ 13392
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 35
},
"end": {
- "line": 371,
+ "line": 387,
"column": 78
}
}
},
"range": [
- 12938,
- 12988
+ 13342,
+ 13392
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 28
},
"end": {
- "line": 371,
+ "line": 387,
"column": 78
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 12934,
- 12989
+ 13338,
+ 13393
],
"loc": {
"start": {
- "line": 371,
+ "line": 387,
"column": 24
},
"end": {
- "line": 371,
+ "line": 387,
"column": 79
}
},
@@ -31543,16 +32866,16 @@
"type": "Line",
"value": "checked item",
"range": [
- 12895,
- 12909
+ 13299,
+ 13313
],
"loc": {
"start": {
- "line": 370,
+ "line": 386,
"column": 24
},
"end": {
- "line": 370,
+ "line": 386,
"column": 38
}
}
@@ -31565,16 +32888,16 @@
"type": "Identifier",
"name": "cChk",
"range": [
- 13017,
- 13021
+ 13421,
+ 13425
],
"loc": {
"start": {
- "line": 372,
+ "line": 388,
"column": 27
},
"end": {
- "line": 372,
+ "line": 388,
"column": 31
}
}
@@ -31594,16 +32917,16 @@
"type": "Identifier",
"name": "cChk",
"range": [
- 13052,
- 13056
+ 13456,
+ 13460
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 28
},
"end": {
- "line": 373,
+ "line": 389,
"column": 32
}
}
@@ -31612,31 +32935,31 @@
"type": "Identifier",
"name": "checked",
"range": [
- 13057,
- 13064
+ 13461,
+ 13468
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 33
},
"end": {
- "line": 373,
+ "line": 389,
"column": 40
}
}
},
"range": [
- 13052,
- 13064
+ 13456,
+ 13468
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 28
},
"end": {
- "line": 373,
+ "line": 389,
"column": 40
}
}
@@ -31646,46 +32969,46 @@
"value": false,
"raw": "false",
"range": [
- 13067,
- 13072
+ 13471,
+ 13476
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 43
},
"end": {
- "line": 373,
+ "line": 389,
"column": 48
}
}
},
"range": [
- 13052,
- 13072
+ 13456,
+ 13476
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 28
},
"end": {
- "line": 373,
+ "line": 389,
"column": 48
}
}
},
"range": [
- 13052,
- 13073
+ 13456,
+ 13477
],
"loc": {
"start": {
- "line": 373,
+ "line": 389,
"column": 28
},
"end": {
- "line": 373,
+ "line": 389,
"column": 49
}
}
@@ -31701,16 +33024,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13102,
- 13105
+ 13506,
+ 13509
],
"loc": {
"start": {
- "line": 374,
+ "line": 390,
"column": 28
},
"end": {
- "line": 374,
+ "line": 390,
"column": 31
}
}
@@ -31719,31 +33042,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 13106,
- 13117
+ 13510,
+ 13521
],
"loc": {
"start": {
- "line": 374,
+ "line": 390,
"column": 32
},
"end": {
- "line": 374,
+ "line": 390,
"column": 43
}
}
},
"range": [
- 13102,
- 13117
+ 13506,
+ 13521
],
"loc": {
"start": {
- "line": 374,
+ "line": 390,
"column": 28
},
"end": {
- "line": 374,
+ "line": 390,
"column": 43
}
}
@@ -31759,16 +33082,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 13151,
- 13152
+ 13555,
+ 13556
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 32
},
"end": {
- "line": 375,
+ "line": 391,
"column": 33
}
}
@@ -31777,31 +33100,31 @@
"type": "Identifier",
"name": "childNodes",
"range": [
- 13153,
- 13163
+ 13557,
+ 13567
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 34
},
"end": {
- "line": 375,
+ "line": 391,
"column": 44
}
}
},
"range": [
- 13151,
- 13163
+ 13555,
+ 13567
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 32
},
"end": {
- "line": 375,
+ "line": 391,
"column": 44
}
}
@@ -31813,16 +33136,16 @@
"type": "Identifier",
"name": "indSplit",
"range": [
- 13164,
- 13172
+ 13568,
+ 13576
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 45
},
"end": {
- "line": 375,
+ "line": 391,
"column": 53
}
}
@@ -31831,46 +33154,46 @@
"type": "Identifier",
"name": "u",
"range": [
- 13173,
- 13174
+ 13577,
+ 13578
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 54
},
"end": {
- "line": 375,
+ "line": 391,
"column": 55
}
}
},
"range": [
- 13164,
- 13175
+ 13568,
+ 13579
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 45
},
"end": {
- "line": 375,
+ "line": 391,
"column": 56
}
}
},
"range": [
- 13151,
- 13176
+ 13555,
+ 13580
],
"loc": {
"start": {
- "line": 375,
+ "line": 391,
"column": 32
},
"end": {
- "line": 375,
+ "line": 391,
"column": 57
}
}
@@ -31881,16 +33204,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13210,
- 13214
+ 13614,
+ 13618
],
"loc": {
"start": {
- "line": 376,
+ "line": 392,
"column": 32
},
"end": {
- "line": 376,
+ "line": 392,
"column": 36
}
}
@@ -31899,125 +33222,125 @@
"type": "Identifier",
"name": "checkListSlcItemCssClass",
"range": [
- 13215,
- 13239
+ 13619,
+ 13643
],
"loc": {
"start": {
- "line": 376,
+ "line": 392,
"column": 37
},
"end": {
- "line": 376,
+ "line": 392,
"column": 61
}
}
},
"range": [
- 13210,
- 13239
+ 13614,
+ 13643
],
"loc": {
"start": {
- "line": 376,
+ "line": 392,
"column": 32
},
"end": {
- "line": 376,
+ "line": 392,
"column": 61
}
}
}
],
"range": [
- 13102,
- 13269
+ 13506,
+ 13673
],
"loc": {
"start": {
- "line": 374,
+ "line": 390,
"column": 28
},
"end": {
- "line": 377,
+ "line": 393,
"column": 29
}
}
},
"range": [
- 13102,
- 13270
+ 13506,
+ 13674
],
"loc": {
"start": {
- "line": 374,
+ "line": 390,
"column": 28
},
"end": {
- "line": 377,
+ "line": 393,
"column": 30
}
}
}
],
"range": [
- 13022,
- 13296
+ 13426,
+ 13700
],
"loc": {
"start": {
- "line": 372,
+ "line": 388,
"column": 32
},
"end": {
- "line": 378,
+ "line": 394,
"column": 25
}
}
},
"alternate": null,
"range": [
- 13014,
- 13296
+ 13418,
+ 13700
],
"loc": {
"start": {
- "line": 372,
+ "line": 388,
"column": 24
},
"end": {
- "line": 378,
+ "line": 394,
"column": 25
}
}
}
],
"range": [
- 12869,
- 13318
+ 13273,
+ 13722
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 56
},
"end": {
- "line": 379,
+ "line": 395,
"column": 21
}
}
},
"range": [
- 12833,
- 13318
+ 13237,
+ 13722
],
"loc": {
"start": {
- "line": 369,
+ "line": 385,
"column": 20
},
"end": {
- "line": 379,
+ "line": 395,
"column": 21
}
},
@@ -32026,16 +33349,16 @@
"type": "Line",
"value": "checked items loop",
"range": [
- 12792,
- 12812
+ 13196,
+ 13216
],
"loc": {
"start": {
- "line": 368,
+ "line": 384,
"column": 20
},
"end": {
- "line": 368,
+ "line": 384,
"column": 40
}
}
@@ -32044,32 +33367,32 @@
}
],
"range": [
- 12667,
- 13336
+ 13071,
+ 13740
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 51
},
"end": {
- "line": 380,
+ "line": 396,
"column": 17
}
}
},
"alternate": null,
"range": [
- 12632,
- 13336
+ 13036,
+ 13740
],
"loc": {
"start": {
- "line": 365,
+ "line": 381,
"column": 16
},
"end": {
- "line": 380,
+ "line": 396,
"column": 17
}
}
@@ -32085,16 +33408,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 13353,
- 13354
+ 13757,
+ 13758
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 16
},
"end": {
- "line": 381,
+ "line": 397,
"column": 17
}
}
@@ -32103,31 +33426,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 13355,
- 13367
+ 13759,
+ 13771
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 18
},
"end": {
- "line": 381,
+ "line": 397,
"column": 30
}
}
},
"range": [
- 13353,
- 13367
+ 13757,
+ 13771
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 16
},
"end": {
- "line": 381,
+ "line": 397,
"column": 30
}
}
@@ -32138,16 +33461,16 @@
"value": "value",
"raw": "'value'",
"range": [
- 13368,
- 13375
+ 13772,
+ 13779
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 31
},
"end": {
- "line": 381,
+ "line": 397,
"column": 38
}
}
@@ -32157,47 +33480,47 @@
"value": "",
"raw": "''",
"range": [
- 13377,
- 13379
+ 13781,
+ 13783
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 40
},
"end": {
- "line": 381,
+ "line": 397,
"column": 42
}
}
}
],
"range": [
- 13353,
- 13380
+ 13757,
+ 13784
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 16
},
"end": {
- "line": 381,
+ "line": 397,
"column": 43
}
}
},
"range": [
- 13353,
- 13381
+ 13757,
+ 13785
],
"loc": {
"start": {
- "line": 381,
+ "line": 397,
"column": 16
},
"end": {
- "line": 381,
+ "line": 397,
"column": 44
}
}
@@ -32213,16 +33536,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 13398,
- 13399
+ 13802,
+ 13803
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 16
},
"end": {
- "line": 382,
+ "line": 398,
"column": 17
}
}
@@ -32231,31 +33554,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 13400,
- 13412
+ 13804,
+ 13816
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 18
},
"end": {
- "line": 382,
+ "line": 398,
"column": 30
}
}
},
"range": [
- 13398,
- 13412
+ 13802,
+ 13816
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 16
},
"end": {
- "line": 382,
+ "line": 398,
"column": 30
}
}
@@ -32266,16 +33589,16 @@
"value": "indexes",
"raw": "'indexes'",
"range": [
- 13413,
- 13422
+ 13817,
+ 13826
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 31
},
"end": {
- "line": 382,
+ "line": 398,
"column": 40
}
}
@@ -32285,63 +33608,63 @@
"value": "",
"raw": "''",
"range": [
- 13424,
- 13426
+ 13828,
+ 13830
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 42
},
"end": {
- "line": 382,
+ "line": 398,
"column": 44
}
}
}
],
"range": [
- 13398,
- 13427
+ 13802,
+ 13831
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 16
},
"end": {
- "line": 382,
+ "line": 398,
"column": 45
}
}
},
"range": [
- 13398,
- 13428
+ 13802,
+ 13832
],
"loc": {
"start": {
- "line": 382,
+ "line": 398,
"column": 16
},
"end": {
- "line": 382,
+ "line": 398,
"column": 46
}
}
}
],
"range": [
- 12614,
- 13443
+ 13018,
+ 13847
],
"loc": {
"start": {
- "line": 364,
+ "line": 380,
"column": 29
},
"end": {
- "line": 384,
+ "line": 400,
"column": 13
}
}
@@ -32358,16 +33681,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 13467,
- 13475
+ 13871,
+ 13879
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 16
},
"end": {
- "line": 385,
+ "line": 401,
"column": 24
}
}
@@ -32378,16 +33701,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 13479,
- 13487
+ 13883,
+ 13891
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 28
},
"end": {
- "line": 385,
+ "line": 401,
"column": 36
}
}
@@ -32396,16 +33719,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 13491,
- 13499
+ 13895,
+ 13903
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 40
},
"end": {
- "line": 385,
+ "line": 401,
"column": 48
}
}
@@ -32415,61 +33738,61 @@
"value": "",
"raw": "''",
"range": [
- 13502,
- 13504
+ 13906,
+ 13908
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 51
},
"end": {
- "line": 385,
+ "line": 401,
"column": 53
}
}
},
"range": [
- 13478,
- 13504
+ 13882,
+ 13908
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 27
},
"end": {
- "line": 385,
+ "line": 401,
"column": 53
}
}
},
"range": [
- 13467,
- 13504
+ 13871,
+ 13908
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 16
},
"end": {
- "line": 385,
+ "line": 401,
"column": 53
}
}
},
"range": [
- 13467,
- 13505
+ 13871,
+ 13909
],
"loc": {
"start": {
- "line": 385,
+ "line": 401,
"column": 16
},
"end": {
- "line": 385,
+ "line": 401,
"column": 54
}
}
@@ -32483,16 +33806,16 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 13522,
- 13530
+ 13926,
+ 13934
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 16
},
"end": {
- "line": 386,
+ "line": 402,
"column": 24
}
}
@@ -32506,16 +33829,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 13533,
- 13536
+ 13937,
+ 13940
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 27
},
"end": {
- "line": 386,
+ "line": 402,
"column": 30
}
}
@@ -32524,31 +33847,31 @@
"type": "Identifier",
"name": "trim",
"range": [
- 13537,
- 13541
+ 13941,
+ 13945
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 31
},
"end": {
- "line": 386,
+ "line": 402,
"column": 35
}
}
},
"range": [
- 13533,
- 13541
+ 13937,
+ 13945
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 27
},
"end": {
- "line": 386,
+ "line": 402,
"column": 35
}
}
@@ -32570,16 +33893,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 13563,
- 13571
+ 13967,
+ 13975
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 20
},
"end": {
- "line": 387,
+ "line": 403,
"column": 28
}
}
@@ -32589,31 +33912,31 @@
"value": " ",
"raw": "' '",
"range": [
- 13572,
- 13575
+ 13976,
+ 13979
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 29
},
"end": {
- "line": 387,
+ "line": 403,
"column": 32
}
}
},
"range": [
- 13563,
- 13575
+ 13967,
+ 13979
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 20
},
"end": {
- "line": 387,
+ "line": 403,
"column": 32
}
}
@@ -32622,31 +33945,31 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 13576,
- 13584
+ 13980,
+ 13988
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 33
},
"end": {
- "line": 387,
+ "line": 403,
"column": 41
}
}
},
"range": [
- 13563,
- 13584
+ 13967,
+ 13988
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 20
},
"end": {
- "line": 387,
+ "line": 403,
"column": 41
}
}
@@ -32656,31 +33979,31 @@
"value": " ",
"raw": "' '",
"range": [
- 13585,
- 13588
+ 13989,
+ 13992
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 42
},
"end": {
- "line": 387,
+ "line": 403,
"column": 45
}
}
},
"range": [
- 13563,
- 13588
+ 13967,
+ 13992
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 20
},
"end": {
- "line": 387,
+ "line": 403,
"column": 45
}
}
@@ -32692,16 +34015,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13589,
- 13591
+ 13993,
+ 13995
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 46
},
"end": {
- "line": 387,
+ "line": 403,
"column": 48
}
}
@@ -32710,92 +34033,92 @@
"type": "Identifier",
"name": "orOperator",
"range": [
- 13592,
- 13602
+ 13996,
+ 14006
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 49
},
"end": {
- "line": 387,
+ "line": 403,
"column": 59
}
}
},
"range": [
- 13589,
- 13602
+ 13993,
+ 14006
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 46
},
"end": {
- "line": 387,
+ "line": 403,
"column": 59
}
}
},
"range": [
- 13563,
- 13602
+ 13967,
+ 14006
],
"loc": {
"start": {
- "line": 387,
+ "line": 403,
"column": 20
},
"end": {
- "line": 387,
+ "line": 403,
"column": 59
}
}
}
],
"range": [
- 13533,
- 13603
+ 13937,
+ 14007
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 27
},
"end": {
- "line": 387,
+ "line": 403,
"column": 60
}
}
},
"range": [
- 13522,
- 13603
+ 13926,
+ 14007
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 16
},
"end": {
- "line": 387,
+ "line": 403,
"column": 60
}
}
},
"range": [
- 13522,
- 13604
+ 13926,
+ 14008
],
"loc": {
"start": {
- "line": 386,
+ "line": 402,
"column": 16
},
"end": {
- "line": 387,
+ "line": 403,
"column": 61
}
}
@@ -32809,16 +34132,16 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 13621,
- 13629
+ 14025,
+ 14033
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 16
},
"end": {
- "line": 388,
+ "line": 404,
"column": 24
}
}
@@ -32833,16 +34156,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 13632,
- 13642
+ 14036,
+ 14046
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 27
},
"end": {
- "line": 388,
+ "line": 404,
"column": 37
}
}
@@ -32851,31 +34174,31 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 13645,
- 13653
+ 14049,
+ 14057
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 40
},
"end": {
- "line": 388,
+ "line": 404,
"column": 48
}
}
},
"range": [
- 13632,
- 13653
+ 14036,
+ 14057
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 27
},
"end": {
- "line": 388,
+ "line": 404,
"column": 48
}
}
@@ -32887,16 +34210,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13656,
- 13658
+ 14060,
+ 14062
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 51
},
"end": {
- "line": 388,
+ "line": 404,
"column": 53
}
}
@@ -32905,76 +34228,76 @@
"type": "Identifier",
"name": "separator",
"range": [
- 13659,
- 13668
+ 14063,
+ 14072
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 54
},
"end": {
- "line": 388,
+ "line": 404,
"column": 63
}
}
},
"range": [
- 13656,
- 13668
+ 14060,
+ 14072
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 51
},
"end": {
- "line": 388,
+ "line": 404,
"column": 63
}
}
},
"range": [
- 13632,
- 13668
+ 14036,
+ 14072
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 27
},
"end": {
- "line": 388,
+ "line": 404,
"column": 63
}
}
},
"range": [
- 13621,
- 13668
+ 14025,
+ 14072
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 16
},
"end": {
- "line": 388,
+ "line": 404,
"column": 63
}
}
},
"range": [
- 13621,
- 13669
+ 14025,
+ 14073
],
"loc": {
"start": {
- "line": 388,
+ "line": 404,
"column": 16
},
"end": {
- "line": 388,
+ "line": 404,
"column": 64
}
}
@@ -32990,16 +34313,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 13686,
- 13687
+ 14090,
+ 14091
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 16
},
"end": {
- "line": 389,
+ "line": 405,
"column": 17
}
}
@@ -33008,31 +34331,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 13688,
- 13700
+ 14092,
+ 14104
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 18
},
"end": {
- "line": 389,
+ "line": 405,
"column": 30
}
}
},
"range": [
- 13686,
- 13700
+ 14090,
+ 14104
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 16
},
"end": {
- "line": 389,
+ "line": 405,
"column": 30
}
}
@@ -33043,16 +34366,16 @@
"value": "value",
"raw": "'value'",
"range": [
- 13701,
- 13708
+ 14105,
+ 14112
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 31
},
"end": {
- "line": 389,
+ "line": 405,
"column": 38
}
}
@@ -33061,48 +34384,48 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 13710,
- 13718
+ 14114,
+ 14122
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 40
},
"end": {
- "line": 389,
+ "line": 405,
"column": 48
}
}
}
],
"range": [
- 13686,
- 13720
+ 14090,
+ 14123
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 16
},
"end": {
- "line": 389,
- "column": 50
+ "line": 405,
+ "column": 49
}
}
},
"range": [
- 13686,
- 13721
+ 14090,
+ 14124
],
"loc": {
"start": {
- "line": 389,
+ "line": 405,
"column": 16
},
"end": {
- "line": 389,
- "column": 51
+ "line": 405,
+ "column": 50
}
}
},
@@ -33117,16 +34440,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 13738,
- 13739
+ 14141,
+ 14142
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 16
},
"end": {
- "line": 390,
+ "line": 406,
"column": 17
}
}
@@ -33135,31 +34458,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 13740,
- 13752
+ 14143,
+ 14155
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 18
},
"end": {
- "line": 390,
+ "line": 406,
"column": 30
}
}
},
"range": [
- 13738,
- 13752
+ 14141,
+ 14155
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 16
},
"end": {
- "line": 390,
+ "line": 406,
"column": 30
}
}
@@ -33170,16 +34493,16 @@
"value": "indexes",
"raw": "'indexes'",
"range": [
- 13753,
- 13762
+ 14156,
+ 14165
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 31
},
"end": {
- "line": 390,
+ "line": 406,
"column": 40
}
}
@@ -33188,47 +34511,47 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 13764,
- 13772
+ 14167,
+ 14175
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 42
},
"end": {
- "line": 390,
+ "line": 406,
"column": 50
}
}
}
],
"range": [
- 13738,
- 13773
+ 14141,
+ 14176
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 16
},
"end": {
- "line": 390,
+ "line": 406,
"column": 51
}
}
},
"range": [
- 13738,
- 13774
+ 14141,
+ 14177
],
"loc": {
"start": {
- "line": 390,
+ "line": 406,
"column": 16
},
"end": {
- "line": 390,
+ "line": 406,
"column": 52
}
},
@@ -33237,16 +34560,16 @@
"type": "Line",
"value": "1st option unchecked",
"range": [
- 13791,
- 13813
+ 14194,
+ 14216
],
"loc": {
"start": {
- "line": 391,
+ "line": 407,
"column": 16
},
"end": {
- "line": 391,
+ "line": 407,
"column": 38
}
}
@@ -33264,16 +34587,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13833,
- 13836
+ 14236,
+ 14239
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 19
},
"end": {
- "line": 392,
+ "line": 408,
"column": 22
}
}
@@ -33282,31 +34605,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 13837,
- 13839
+ 14240,
+ 14242
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 23
},
"end": {
- "line": 392,
+ "line": 408,
"column": 25
}
}
},
"range": [
- 13833,
- 13839
+ 14236,
+ 14242
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 19
},
"end": {
- "line": 392,
+ "line": 408,
"column": 25
}
}
@@ -33325,16 +34648,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13840,
- 13842
+ 14243,
+ 14245
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 26
},
"end": {
- "line": 392,
+ "line": 408,
"column": 28
}
}
@@ -33343,31 +34666,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 13843,
- 13849
+ 14246,
+ 14252
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 29
},
"end": {
- "line": 392,
+ "line": 408,
"column": 35
}
}
},
"range": [
- 13840,
- 13849
+ 14243,
+ 14252
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 26
},
"end": {
- "line": 392,
+ "line": 408,
"column": 35
}
}
@@ -33376,31 +34699,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 13850,
- 13858
+ 14253,
+ 14261
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 36
},
"end": {
- "line": 392,
+ "line": 408,
"column": 44
}
}
},
"range": [
- 13840,
- 13859
+ 14243,
+ 14262
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 26
},
"end": {
- "line": 392,
+ "line": 408,
"column": 45
}
}
@@ -33410,47 +34733,47 @@
"value": "_0",
"raw": "'_0'",
"range": [
- 13860,
- 13864
+ 14263,
+ 14267
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 46
},
"end": {
- "line": 392,
+ "line": 408,
"column": 50
}
}
},
"range": [
- 13840,
- 13864
+ 14243,
+ 14267
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 26
},
"end": {
- "line": 392,
+ "line": 408,
"column": 50
}
}
}
],
"range": [
- 13833,
- 13865
+ 14236,
+ 14268
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 19
},
"end": {
- "line": 392,
+ "line": 408,
"column": 51
}
}
@@ -33475,16 +34798,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13888,
- 13891
+ 14291,
+ 14294
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 23
}
}
@@ -33493,31 +34816,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 13892,
- 13894
+ 14295,
+ 14297
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 24
},
"end": {
- "line": 393,
+ "line": 409,
"column": 26
}
}
},
"range": [
- 13888,
- 13894
+ 14291,
+ 14297
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 26
}
}
@@ -33536,16 +34859,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13895,
- 13897
+ 14298,
+ 14300
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 27
},
"end": {
- "line": 393,
+ "line": 409,
"column": 29
}
}
@@ -33554,31 +34877,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 13898,
- 13904
+ 14301,
+ 14307
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 30
},
"end": {
- "line": 393,
+ "line": 409,
"column": 36
}
}
},
"range": [
- 13895,
- 13904
+ 14298,
+ 14307
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 27
},
"end": {
- "line": 393,
+ "line": 409,
"column": 36
}
}
@@ -33587,31 +34910,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 13905,
- 13913
+ 14308,
+ 14316
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 37
},
"end": {
- "line": 393,
+ "line": 409,
"column": 45
}
}
},
"range": [
- 13895,
- 13914
+ 14298,
+ 14317
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 27
},
"end": {
- "line": 393,
+ "line": 409,
"column": 46
}
}
@@ -33621,47 +34944,47 @@
"value": "_0",
"raw": "'_0'",
"range": [
- 13915,
- 13919
+ 14318,
+ 14322
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 47
},
"end": {
- "line": 393,
+ "line": 409,
"column": 51
}
}
},
"range": [
- 13895,
- 13919
+ 14298,
+ 14322
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 27
},
"end": {
- "line": 393,
+ "line": 409,
"column": 51
}
}
}
],
"range": [
- 13888,
- 13920
+ 14291,
+ 14323
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 52
}
}
@@ -33670,31 +34993,31 @@
"type": "Identifier",
"name": "checked",
"range": [
- 13921,
- 13928
+ 14324,
+ 14331
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 53
},
"end": {
- "line": 393,
+ "line": 409,
"column": 60
}
}
},
"range": [
- 13888,
- 13928
+ 14291,
+ 14331
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 60
}
}
@@ -33704,78 +35027,78 @@
"value": false,
"raw": "false",
"range": [
- 13931,
- 13936
+ 14334,
+ 14339
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 63
},
"end": {
- "line": 393,
+ "line": 409,
"column": 68
}
}
},
"range": [
- 13888,
- 13936
+ 14291,
+ 14339
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 68
}
}
},
"range": [
- 13888,
- 13937
+ 14291,
+ 14340
],
"loc": {
"start": {
- "line": 393,
+ "line": 409,
"column": 20
},
"end": {
- "line": 393,
+ "line": 409,
"column": 69
}
}
}
],
"range": [
- 13866,
- 13955
+ 14269,
+ 14358
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 52
},
"end": {
- "line": 394,
+ "line": 410,
"column": 17
}
}
},
"alternate": null,
"range": [
- 13830,
- 13955
+ 14233,
+ 14358
],
"loc": {
"start": {
- "line": 392,
+ "line": 408,
"column": 16
},
"end": {
- "line": 394,
+ "line": 410,
"column": 17
}
},
@@ -33784,16 +35107,16 @@
"type": "Line",
"value": "1st option unchecked",
"range": [
- 13791,
- 13813
+ 14194,
+ 14216
],
"loc": {
"start": {
- "line": 391,
+ "line": 407,
"column": 16
},
"end": {
- "line": 391,
+ "line": 407,
"column": 38
}
}
@@ -33802,31 +35125,31 @@
}
],
"range": [
- 13449,
- 13969
+ 13853,
+ 14372
],
"loc": {
"start": {
- "line": 384,
+ "line": 400,
"column": 19
},
"end": {
- "line": 395,
+ "line": 411,
"column": 13
}
}
},
"range": [
- 12597,
- 13969
+ 13001,
+ 14372
],
"loc": {
"start": {
- "line": 364,
+ "line": 380,
"column": 12
},
"end": {
- "line": 395,
+ "line": 411,
"column": 13
}
},
@@ -33835,16 +35158,16 @@
"type": "Line",
"value": "show all item",
"range": [
- 12569,
- 12584
+ 12973,
+ 12988
],
"loc": {
"start": {
- "line": 363,
+ "line": 379,
"column": 12
},
"end": {
- "line": 363,
+ "line": 379,
"column": 27
}
}
@@ -33865,16 +35188,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 13986,
- 13989
+ 14389,
+ 14392
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 15
},
"end": {
- "line": 397,
+ "line": 413,
"column": 18
}
}
@@ -33883,31 +35206,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 13990,
- 13995
+ 14393,
+ 14398
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 19
},
"end": {
- "line": 397,
+ "line": 413,
"column": 24
}
}
},
"range": [
- 13986,
- 13995
+ 14389,
+ 14398
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 15
},
"end": {
- "line": 397,
+ "line": 413,
"column": 24
}
}
@@ -33920,16 +35243,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 13996,
- 13998
+ 14399,
+ 14401
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 25
},
"end": {
- "line": 397,
+ "line": 413,
"column": 27
}
}
@@ -33938,47 +35261,47 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 13999,
- 14007
+ 14402,
+ 14410
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 28
},
"end": {
- "line": 397,
+ "line": 413,
"column": 36
}
}
},
"range": [
- 13996,
- 14007
+ 14399,
+ 14410
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 25
},
"end": {
- "line": 397,
+ "line": 413,
"column": 36
}
}
}
],
"range": [
- 13986,
- 14008
+ 14389,
+ 14411
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 15
},
"end": {
- "line": 397,
+ "line": 413,
"column": 37
}
}
@@ -33987,31 +35310,31 @@
"type": "Identifier",
"name": "itemTag",
"range": [
- 14013,
- 14020
+ 14416,
+ 14423
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 42
},
"end": {
- "line": 397,
+ "line": 413,
"column": 49
}
}
},
"range": [
- 13986,
- 14020
+ 14389,
+ 14423
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 15
},
"end": {
- "line": 397,
+ "line": 413,
"column": 49
}
}
@@ -34030,16 +35353,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 14039,
- 14042
+ 14442,
+ 14445
],
"loc": {
"start": {
- "line": 398,
+ "line": 414,
"column": 16
},
"end": {
- "line": 398,
+ "line": 414,
"column": 19
}
}
@@ -34048,31 +35371,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 14043,
- 14054
+ 14446,
+ 14457
],
"loc": {
"start": {
- "line": 398,
+ "line": 414,
"column": 20
},
"end": {
- "line": 398,
+ "line": 414,
"column": 31
}
}
},
"range": [
- 14039,
- 14054
+ 14442,
+ 14457
],
"loc": {
"start": {
- "line": 398,
+ "line": 414,
"column": 16
},
"end": {
- "line": 398,
+ "line": 414,
"column": 31
}
}
@@ -34088,16 +35411,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 14076,
- 14077
+ 14479,
+ 14480
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 20
},
"end": {
- "line": 399,
+ "line": 415,
"column": 21
}
}
@@ -34106,31 +35429,31 @@
"type": "Identifier",
"name": "childNodes",
"range": [
- 14078,
- 14088
+ 14481,
+ 14491
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 22
},
"end": {
- "line": 399,
+ "line": 415,
"column": 32
}
}
},
"range": [
- 14076,
- 14088
+ 14479,
+ 14491
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 20
},
"end": {
- "line": 399,
+ "line": 415,
"column": 32
}
}
@@ -34140,31 +35463,31 @@
"value": 0,
"raw": "0",
"range": [
- 14089,
- 14090
+ 14492,
+ 14493
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 33
},
"end": {
- "line": 399,
+ "line": 415,
"column": 34
}
}
},
"range": [
- 14076,
- 14091
+ 14479,
+ 14494
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 20
},
"end": {
- "line": 399,
+ "line": 415,
"column": 35
}
}
@@ -34175,16 +35498,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14093,
- 14097
+ 14496,
+ 14500
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 37
},
"end": {
- "line": 399,
+ "line": 415,
"column": 41
}
}
@@ -34193,62 +35516,62 @@
"type": "Identifier",
"name": "checkListSlcItemCssClass",
"range": [
- 14098,
- 14122
+ 14501,
+ 14525
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 42
},
"end": {
- "line": 399,
+ "line": 415,
"column": 66
}
}
},
"range": [
- 14093,
- 14122
+ 14496,
+ 14525
],
"loc": {
"start": {
- "line": 399,
+ "line": 415,
"column": 37
},
"end": {
- "line": 399,
+ "line": 415,
"column": 66
}
}
}
],
"range": [
- 14039,
- 14123
+ 14442,
+ 14526
],
"loc": {
"start": {
- "line": 398,
+ "line": 414,
"column": 16
},
"end": {
- "line": 399,
+ "line": 415,
"column": 67
}
}
},
"range": [
- 14039,
- 14124
+ 14442,
+ 14527
],
"loc": {
"start": {
- "line": 398,
+ "line": 414,
"column": 16
},
"end": {
- "line": 399,
+ "line": 415,
"column": 68
}
}
@@ -34264,16 +35587,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 14141,
- 14144
+ 14544,
+ 14547
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 16
},
"end": {
- "line": 400,
+ "line": 416,
"column": 19
}
}
@@ -34282,31 +35605,31 @@
"type": "Identifier",
"name": "addClass",
"range": [
- 14145,
- 14153
+ 14548,
+ 14556
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 20
},
"end": {
- "line": 400,
+ "line": 416,
"column": 28
}
}
},
"range": [
- 14141,
- 14153
+ 14544,
+ 14556
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 16
},
"end": {
- "line": 400,
+ "line": 416,
"column": 28
}
}
@@ -34316,16 +35639,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 14154,
- 14156
+ 14557,
+ 14559
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 29
},
"end": {
- "line": 400,
+ "line": 416,
"column": 31
}
}
@@ -34336,16 +35659,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14158,
- 14162
+ 14561,
+ 14565
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 33
},
"end": {
- "line": 400,
+ "line": 416,
"column": 37
}
}
@@ -34354,110 +35677,110 @@
"type": "Identifier",
"name": "checkListSlcItemCssClass",
"range": [
- 14163,
- 14187
+ 14566,
+ 14590
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 38
},
"end": {
- "line": 400,
+ "line": 416,
"column": 62
}
}
},
"range": [
- 14158,
- 14187
+ 14561,
+ 14590
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 33
},
"end": {
- "line": 400,
+ "line": 416,
"column": 62
}
}
}
],
"range": [
- 14141,
- 14188
+ 14544,
+ 14591
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 16
},
"end": {
- "line": 400,
+ "line": 416,
"column": 63
}
}
},
"range": [
- 14141,
- 14189
+ 14544,
+ 14592
],
"loc": {
"start": {
- "line": 400,
+ "line": 416,
"column": 16
},
"end": {
- "line": 400,
+ "line": 416,
"column": 64
}
}
}
],
"range": [
- 14021,
- 14203
+ 14424,
+ 14606
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 50
},
"end": {
- "line": 401,
+ "line": 417,
"column": 13
}
}
},
"alternate": null,
"range": [
- 13983,
- 14203
+ 14386,
+ 14606
],
"loc": {
"start": {
- "line": 397,
+ "line": 413,
"column": 12
},
"end": {
- "line": 401,
+ "line": 417,
"column": 13
}
}
}
],
"range": [
- 12555,
- 14213
+ 12959,
+ 14616
],
"loc": {
"start": {
- "line": 362,
+ "line": 378,
"column": 21
},
"end": {
- "line": 402,
+ "line": 418,
"column": 9
}
}
@@ -34474,16 +35797,16 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 14265,
- 14273
+ 14668,
+ 14676
],
"loc": {
"start": {
- "line": 403,
+ "line": 419,
"column": 15
},
"end": {
- "line": 403,
+ "line": 419,
"column": 23
}
}
@@ -34493,31 +35816,31 @@
"value": "",
"raw": "''",
"range": [
- 14276,
- 14278
+ 14679,
+ 14681
],
"loc": {
"start": {
- "line": 403,
+ "line": 419,
"column": 26
},
"end": {
- "line": 403,
+ "line": 419,
"column": 28
}
}
},
"range": [
- 14265,
- 14278
+ 14668,
+ 14681
],
"loc": {
"start": {
- "line": 403,
+ "line": 419,
"column": 15
},
"end": {
- "line": 403,
+ "line": 419,
"column": 28
}
}
@@ -34534,16 +35857,16 @@
"type": "Identifier",
"name": "replaceValue",
"range": [
- 14301,
- 14313
+ 14704,
+ 14716
],
"loc": {
"start": {
- "line": 404,
+ "line": 420,
"column": 20
},
"end": {
- "line": 404,
+ "line": 420,
"column": 32
}
}
@@ -34554,16 +35877,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 14320,
- 14326
+ 14723,
+ 14729
],
"loc": {
"start": {
- "line": 404,
+ "line": 420,
"column": 39
},
"end": {
- "line": 404,
+ "line": 420,
"column": 45
}
}
@@ -34578,16 +35901,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 14352,
- 14355
+ 14755,
+ 14758
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 24
},
"end": {
- "line": 405,
+ "line": 421,
"column": 27
}
}
@@ -34596,31 +35919,31 @@
"type": "Identifier",
"name": "rgxEsc",
"range": [
- 14356,
- 14362
+ 14759,
+ 14765
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 28
},
"end": {
- "line": 405,
+ "line": 421,
"column": 34
}
}
},
"range": [
- 14352,
- 14362
+ 14755,
+ 14765
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 24
},
"end": {
- "line": 405,
+ "line": 421,
"column": 34
}
}
@@ -34636,16 +35959,16 @@
"type": "Identifier",
"name": "chkValue",
"range": [
- 14363,
- 14371
+ 14766,
+ 14774
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 35
},
"end": {
- "line": 405,
+ "line": 421,
"column": 43
}
}
@@ -34655,31 +35978,31 @@
"value": " ",
"raw": "' '",
"range": [
- 14372,
- 14375
+ 14775,
+ 14778
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 44
},
"end": {
- "line": 405,
+ "line": 421,
"column": 47
}
}
},
"range": [
- 14363,
- 14375
+ 14766,
+ 14778
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 35
},
"end": {
- "line": 405,
+ "line": 421,
"column": 47
}
}
@@ -34691,16 +36014,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14376,
- 14378
+ 14779,
+ 14781
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 48
},
"end": {
- "line": 405,
+ "line": 421,
"column": 50
}
}
@@ -34709,110 +36032,110 @@
"type": "Identifier",
"name": "orOperator",
"range": [
- 14379,
- 14389
+ 14782,
+ 14792
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 51
},
"end": {
- "line": 405,
+ "line": 421,
"column": 61
}
}
},
"range": [
- 14376,
- 14389
+ 14779,
+ 14792
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 48
},
"end": {
- "line": 405,
+ "line": 421,
"column": 61
}
}
},
"range": [
- 14363,
- 14389
+ 14766,
+ 14792
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 35
},
"end": {
- "line": 405,
+ "line": 421,
"column": 61
}
}
}
],
"range": [
- 14352,
- 14390
+ 14755,
+ 14793
],
"loc": {
"start": {
- "line": 405,
+ "line": 421,
"column": 24
},
"end": {
- "line": 405,
+ "line": 421,
"column": 62
}
}
}
],
"range": [
- 14316,
- 14391
+ 14719,
+ 14794
],
"loc": {
"start": {
- "line": 404,
+ "line": 420,
"column": 35
},
"end": {
- "line": 405,
+ "line": 421,
"column": 63
}
}
},
"range": [
- 14301,
- 14391
+ 14704,
+ 14794
],
"loc": {
"start": {
- "line": 404,
+ "line": 420,
"column": 20
},
"end": {
- "line": 405,
+ "line": 421,
"column": 63
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 14297,
- 14392
+ 14700,
+ 14795
],
"loc": {
"start": {
- "line": 404,
+ "line": 420,
"column": 16
},
"end": {
- "line": 405,
+ "line": 421,
"column": 64
}
}
@@ -34826,16 +36149,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 14409,
- 14417
+ 14812,
+ 14820
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 16
},
"end": {
- "line": 406,
+ "line": 422,
"column": 24
}
}
@@ -34849,16 +36172,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 14420,
- 14428
+ 14823,
+ 14831
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 27
},
"end": {
- "line": 406,
+ "line": 422,
"column": 35
}
}
@@ -34867,31 +36190,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 14429,
- 14436
+ 14832,
+ 14839
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 36
},
"end": {
- "line": 406,
+ "line": 422,
"column": 43
}
}
},
"range": [
- 14420,
- 14436
+ 14823,
+ 14839
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 27
},
"end": {
- "line": 406,
+ "line": 422,
"column": 43
}
}
@@ -34901,16 +36224,16 @@
"type": "Identifier",
"name": "replaceValue",
"range": [
- 14437,
- 14449
+ 14840,
+ 14852
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 44
},
"end": {
- "line": 406,
+ "line": 422,
"column": 56
}
}
@@ -34920,62 +36243,62 @@
"value": "",
"raw": "''",
"range": [
- 14450,
- 14452
+ 14853,
+ 14855
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 57
},
"end": {
- "line": 406,
+ "line": 422,
"column": 59
}
}
}
],
"range": [
- 14420,
- 14453
+ 14823,
+ 14856
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 27
},
"end": {
- "line": 406,
+ "line": 422,
"column": 60
}
}
},
"range": [
- 14409,
- 14453
+ 14812,
+ 14856
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 16
},
"end": {
- "line": 406,
+ "line": 422,
"column": 60
}
}
},
"range": [
- 14409,
- 14454
+ 14812,
+ 14857
],
"loc": {
"start": {
- "line": 406,
+ "line": 422,
"column": 16
},
"end": {
- "line": 406,
+ "line": 422,
"column": 61
}
}
@@ -34991,16 +36314,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 14471,
- 14472
+ 14874,
+ 14875
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 16
},
"end": {
- "line": 407,
+ "line": 423,
"column": 17
}
}
@@ -35009,31 +36332,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 14473,
- 14485
+ 14876,
+ 14888
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 18
},
"end": {
- "line": 407,
+ "line": 423,
"column": 30
}
}
},
"range": [
- 14471,
- 14485
+ 14874,
+ 14888
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 16
},
"end": {
- "line": 407,
+ "line": 423,
"column": 30
}
}
@@ -35044,16 +36367,16 @@
"value": "value",
"raw": "'value'",
"range": [
- 14486,
- 14493
+ 14889,
+ 14896
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 31
},
"end": {
- "line": 407,
+ "line": 423,
"column": 38
}
}
@@ -35067,16 +36390,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 14495,
- 14498
+ 14898,
+ 14901
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 40
},
"end": {
- "line": 407,
+ "line": 423,
"column": 43
}
}
@@ -35085,31 +36408,31 @@
"type": "Identifier",
"name": "trim",
"range": [
- 14499,
- 14503
+ 14902,
+ 14906
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 44
},
"end": {
- "line": 407,
+ "line": 423,
"column": 48
}
}
},
"range": [
- 14495,
- 14503
+ 14898,
+ 14906
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 40
},
"end": {
- "line": 407,
+ "line": 423,
"column": 48
}
}
@@ -35119,63 +36442,63 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 14504,
- 14512
+ 14907,
+ 14915
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 49
},
"end": {
- "line": 407,
+ "line": 423,
"column": 57
}
}
}
],
"range": [
- 14495,
- 14513
+ 14898,
+ 14916
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 40
},
"end": {
- "line": 407,
+ "line": 423,
"column": 58
}
}
}
],
"range": [
- 14471,
- 14514
+ 14874,
+ 14917
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 16
},
"end": {
- "line": 407,
+ "line": 423,
"column": 59
}
}
},
"range": [
- 14471,
- 14515
+ 14874,
+ 14918
],
"loc": {
"start": {
- "line": 407,
+ "line": 423,
"column": 16
},
"end": {
- "line": 407,
+ "line": 423,
"column": 60
}
}
@@ -35189,16 +36512,16 @@
"type": "Identifier",
"name": "replaceIndex",
"range": [
- 14537,
- 14549
+ 14940,
+ 14952
],
"loc": {
"start": {
- "line": 409,
+ "line": 425,
"column": 20
},
"end": {
- "line": 409,
+ "line": 425,
"column": 32
}
}
@@ -35209,16 +36532,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 14556,
- 14562
+ 14959,
+ 14965
],
"loc": {
"start": {
- "line": 409,
+ "line": 425,
"column": 39
},
"end": {
- "line": 409,
+ "line": 425,
"column": 45
}
}
@@ -35233,16 +36556,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 14588,
- 14591
+ 14991,
+ 14994
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 24
},
"end": {
- "line": 410,
+ "line": 426,
"column": 27
}
}
@@ -35251,31 +36574,31 @@
"type": "Identifier",
"name": "rgxEsc",
"range": [
- 14592,
- 14598
+ 14995,
+ 15001
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 28
},
"end": {
- "line": 410,
+ "line": 426,
"column": 34
}
}
},
"range": [
- 14588,
- 14598
+ 14991,
+ 15001
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 24
},
"end": {
- "line": 410,
+ "line": 426,
"column": 34
}
}
@@ -35288,16 +36611,16 @@
"type": "Identifier",
"name": "chkIndex",
"range": [
- 14599,
- 14607
+ 15002,
+ 15010
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 35
},
"end": {
- "line": 410,
+ "line": 426,
"column": 43
}
}
@@ -35309,16 +36632,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14610,
- 14612
+ 15013,
+ 15015
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 46
},
"end": {
- "line": 410,
+ "line": 426,
"column": 48
}
}
@@ -35327,110 +36650,110 @@
"type": "Identifier",
"name": "separator",
"range": [
- 14613,
- 14622
+ 15016,
+ 15025
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 49
},
"end": {
- "line": 410,
+ "line": 426,
"column": 58
}
}
},
"range": [
- 14610,
- 14622
+ 15013,
+ 15025
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 46
},
"end": {
- "line": 410,
+ "line": 426,
"column": 58
}
}
},
"range": [
- 14599,
- 14622
+ 15002,
+ 15025
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 35
},
"end": {
- "line": 410,
+ "line": 426,
"column": 58
}
}
}
],
"range": [
- 14588,
- 14623
+ 14991,
+ 15026
],
"loc": {
"start": {
- "line": 410,
+ "line": 426,
"column": 24
},
"end": {
- "line": 410,
+ "line": 426,
"column": 59
}
}
}
],
"range": [
- 14552,
- 14624
+ 14955,
+ 15027
],
"loc": {
"start": {
- "line": 409,
+ "line": 425,
"column": 35
},
"end": {
- "line": 410,
+ "line": 426,
"column": 60
}
}
},
"range": [
- 14537,
- 14624
+ 14940,
+ 15027
],
"loc": {
"start": {
- "line": 409,
+ "line": 425,
"column": 20
},
"end": {
- "line": 410,
+ "line": 426,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 14533,
- 14625
+ 14936,
+ 15028
],
"loc": {
"start": {
- "line": 409,
+ "line": 425,
"column": 16
},
"end": {
- "line": 410,
+ "line": 426,
"column": 61
}
}
@@ -35444,16 +36767,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 14642,
- 14652
+ 15045,
+ 15055
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 16
},
"end": {
- "line": 411,
+ "line": 427,
"column": 26
}
}
@@ -35467,16 +36790,16 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 14655,
- 14665
+ 15058,
+ 15068
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 29
},
"end": {
- "line": 411,
+ "line": 427,
"column": 39
}
}
@@ -35485,31 +36808,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 14666,
- 14673
+ 15069,
+ 15076
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 40
},
"end": {
- "line": 411,
+ "line": 427,
"column": 47
}
}
},
"range": [
- 14655,
- 14673
+ 15058,
+ 15076
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 29
},
"end": {
- "line": 411,
+ "line": 427,
"column": 47
}
}
@@ -35519,16 +36842,16 @@
"type": "Identifier",
"name": "replaceIndex",
"range": [
- 14674,
- 14686
+ 15077,
+ 15089
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 48
},
"end": {
- "line": 411,
+ "line": 427,
"column": 60
}
}
@@ -35538,62 +36861,62 @@
"value": "",
"raw": "''",
"range": [
- 14688,
- 14690
+ 15091,
+ 15093
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 62
},
"end": {
- "line": 411,
+ "line": 427,
"column": 64
}
}
}
],
"range": [
- 14655,
- 14691
+ 15058,
+ 15094
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 29
},
"end": {
- "line": 411,
+ "line": 427,
"column": 65
}
}
},
"range": [
- 14642,
- 14691
+ 15045,
+ 15094
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 16
},
"end": {
- "line": 411,
+ "line": 427,
"column": 65
}
}
},
"range": [
- 14642,
- 14692
+ 15045,
+ 15095
],
"loc": {
"start": {
- "line": 411,
+ "line": 427,
"column": 16
},
"end": {
- "line": 411,
+ "line": 427,
"column": 66
}
}
@@ -35609,16 +36932,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 14709,
- 14710
+ 15112,
+ 15113
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 16
},
"end": {
- "line": 412,
+ "line": 428,
"column": 17
}
}
@@ -35627,31 +36950,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 14711,
- 14723
+ 15114,
+ 15126
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 18
},
"end": {
- "line": 412,
+ "line": 428,
"column": 30
}
}
},
"range": [
- 14709,
- 14723
+ 15112,
+ 15126
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 16
},
"end": {
- "line": 412,
+ "line": 428,
"column": 30
}
}
@@ -35662,16 +36985,16 @@
"value": "indexes",
"raw": "'indexes'",
"range": [
- 14724,
- 14733
+ 15127,
+ 15136
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 31
},
"end": {
- "line": 412,
+ "line": 428,
"column": 40
}
}
@@ -35680,79 +37003,79 @@
"type": "Identifier",
"name": "fltIndexes",
"range": [
- 14735,
- 14745
+ 15138,
+ 15148
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 42
},
"end": {
- "line": 412,
+ "line": 428,
"column": 52
}
}
}
],
"range": [
- 14709,
- 14746
+ 15112,
+ 15149
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 16
},
"end": {
- "line": 412,
+ "line": 428,
"column": 53
}
}
},
"range": [
- 14709,
- 14747
+ 15112,
+ 15150
],
"loc": {
"start": {
- "line": 412,
+ "line": 428,
"column": 16
},
"end": {
- "line": 412,
+ "line": 428,
"column": 54
}
}
}
],
"range": [
- 14279,
- 14761
+ 14682,
+ 15164
],
"loc": {
"start": {
- "line": 403,
+ "line": 419,
"column": 29
},
"end": {
- "line": 413,
+ "line": 429,
"column": 13
}
}
},
"alternate": null,
"range": [
- 14262,
- 14761
+ 14665,
+ 15164
],
"loc": {
"start": {
- "line": 403,
+ "line": 419,
"column": 12
},
"end": {
- "line": 413,
+ "line": 429,
"column": 13
}
},
@@ -35761,16 +37084,16 @@
"type": "Line",
"value": "removes values and indexes",
"range": [
- 14221,
- 14249
+ 14624,
+ 14652
],
"loc": {
"start": {
- "line": 402,
+ "line": 418,
"column": 17
},
"end": {
- "line": 402,
+ "line": 418,
"column": 45
}
}
@@ -35791,16 +37114,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 14777,
- 14780
+ 15180,
+ 15183
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 15
},
"end": {
- "line": 414,
+ "line": 430,
"column": 18
}
}
@@ -35809,31 +37132,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 14781,
- 14786
+ 15184,
+ 15189
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 19
},
"end": {
- "line": 414,
+ "line": 430,
"column": 24
}
}
},
"range": [
- 14777,
- 14786
+ 15180,
+ 15189
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 15
},
"end": {
- "line": 414,
+ "line": 430,
"column": 24
}
}
@@ -35846,16 +37169,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 14787,
- 14789
+ 15190,
+ 15192
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 25
},
"end": {
- "line": 414,
+ "line": 430,
"column": 27
}
}
@@ -35864,47 +37187,47 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 14790,
- 14798
+ 15193,
+ 15201
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 28
},
"end": {
- "line": 414,
+ "line": 430,
"column": 36
}
}
},
"range": [
- 14787,
- 14798
+ 15190,
+ 15201
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 25
},
"end": {
- "line": 414,
+ "line": 430,
"column": 36
}
}
}
],
"range": [
- 14777,
- 14799
+ 15180,
+ 15202
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 15
},
"end": {
- "line": 414,
+ "line": 430,
"column": 37
}
}
@@ -35913,31 +37236,31 @@
"type": "Identifier",
"name": "itemTag",
"range": [
- 14802,
- 14809
+ 15205,
+ 15212
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 40
},
"end": {
- "line": 414,
+ "line": 430,
"column": 47
}
}
},
"range": [
- 14777,
- 14809
+ 15180,
+ 15212
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 15
},
"end": {
- "line": 414,
+ "line": 430,
"column": 47
}
}
@@ -35956,16 +37279,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 14828,
- 14831
+ 15231,
+ 15234
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 16
},
"end": {
- "line": 415,
+ "line": 431,
"column": 19
}
}
@@ -35974,31 +37297,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 14832,
- 14843
+ 15235,
+ 15246
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 20
},
"end": {
- "line": 415,
+ "line": 431,
"column": 31
}
}
},
"range": [
- 14828,
- 14843
+ 15231,
+ 15246
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 16
},
"end": {
- "line": 415,
+ "line": 431,
"column": 31
}
}
@@ -36008,16 +37331,16 @@
"type": "Identifier",
"name": "li",
"range": [
- 14844,
- 14846
+ 15247,
+ 15249
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 32
},
"end": {
- "line": 415,
+ "line": 431,
"column": 34
}
}
@@ -36028,16 +37351,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14848,
- 14852
+ 15251,
+ 15255
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 36
},
"end": {
- "line": 415,
+ "line": 431,
"column": 40
}
}
@@ -36046,125 +37369,125 @@
"type": "Identifier",
"name": "checkListSlcItemCssClass",
"range": [
- 14853,
- 14877
+ 15256,
+ 15280
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 41
},
"end": {
- "line": 415,
+ "line": 431,
"column": 65
}
}
},
"range": [
- 14848,
- 14877
+ 15251,
+ 15280
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 36
},
"end": {
- "line": 415,
+ "line": 431,
"column": 65
}
}
}
],
"range": [
- 14828,
- 14878
+ 15231,
+ 15281
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 16
},
"end": {
- "line": 415,
+ "line": 431,
"column": 66
}
}
},
"range": [
- 14828,
- 14879
+ 15231,
+ 15282
],
"loc": {
"start": {
- "line": 415,
+ "line": 431,
"column": 16
},
"end": {
- "line": 415,
+ "line": 431,
"column": 67
}
}
}
],
"range": [
- 14810,
- 14893
+ 15213,
+ 15296
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 48
},
"end": {
- "line": 416,
+ "line": 432,
"column": 13
}
}
},
"alternate": null,
"range": [
- 14774,
- 14893
+ 15177,
+ 15296
],
"loc": {
"start": {
- "line": 414,
+ "line": 430,
"column": 12
},
"end": {
- "line": 416,
+ "line": 432,
"column": 13
}
}
}
],
"range": [
- 14219,
- 14903
+ 14622,
+ 15306
],
"loc": {
"start": {
- "line": 402,
+ "line": 418,
"column": 15
},
"end": {
- "line": 417,
+ "line": 433,
"column": 9
}
}
},
"range": [
- 12542,
- 14903
+ 12946,
+ 15306
],
"loc": {
"start": {
- "line": 362,
+ "line": 378,
"column": 8
},
"end": {
- "line": 417,
+ "line": 433,
"column": 9
}
},
@@ -36173,16 +37496,16 @@
"type": "Line",
"value": "selected items (ul tag)",
"range": [
- 12507,
- 12532
+ 12911,
+ 12936
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 52
},
"end": {
- "line": 360,
+ "line": 376,
"column": 77
}
}
@@ -36191,16 +37514,16 @@
}
],
"range": [
- 11926,
- 14909
+ 12330,
+ 15312
],
"loc": {
"start": {
- "line": 342,
+ "line": 358,
"column": 25
},
"end": {
- "line": 418,
+ "line": 434,
"column": 5
}
}
@@ -36208,16 +37531,16 @@
"generator": false,
"expression": false,
"range": [
- 11923,
- 14909
+ 12327,
+ 15312
],
"loc": {
"start": {
- "line": 342,
+ "line": 358,
"column": 22
},
"end": {
- "line": 418,
+ "line": 434,
"column": 5
}
}
@@ -36225,16 +37548,16 @@
"kind": "method",
"computed": false,
"range": [
- 11905,
- 14909
+ 12309,
+ 15312
],
"loc": {
"start": {
- "line": 342,
+ "line": 358,
"column": 4
},
"end": {
- "line": 418,
+ "line": 434,
"column": 5
}
},
@@ -36243,50 +37566,3790 @@
"type": "Block",
"value": "*\n * Store checked options in DOM element attribute\n * @param {Object} o checklist option DOM element\n ",
"range": [
- 11781,
- 11900
+ 12185,
+ 12304
],
"loc": {
"start": {
- "line": 338,
+ "line": 354,
"column": 4
},
"end": {
- "line": 341,
+ "line": 357,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 15318,
+ 15487
+ ],
+ "loc": {
+ "start": {
+ "line": 436,
+ "column": 4
+ },
+ "end": {
+ "line": 440,
"column": 7
}
}
}
],
"static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 15492,
+ 15505
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 4
+ },
+ "end": {
+ "line": 441,
+ "column": 17
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 15506,
+ 15514
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 18
+ },
+ "end": {
+ "line": 441,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 15516,
+ 15522
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 28
+ },
+ "end": {
+ "line": 441,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 15523,
+ 15525
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 35
+ },
+ "end": {
+ "line": 441,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 15516,
+ 15525
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 28
+ },
+ "end": {
+ "line": 441,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15540,
+ 15542
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 12
+ },
+ "end": {
+ "line": 442,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15545,
+ 15549
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 17
+ },
+ "end": {
+ "line": 442,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15550,
+ 15552
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 22
+ },
+ "end": {
+ "line": 442,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15545,
+ 15552
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 17
+ },
+ "end": {
+ "line": 442,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15540,
+ 15552
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 12
+ },
+ "end": {
+ "line": 442,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 15536,
+ 15553
+ ],
+ "loc": {
+ "start": {
+ "line": 442,
+ "column": 8
+ },
+ "end": {
+ "line": 442,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "!==",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15565,
+ 15567
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 11
+ },
+ "end": {
+ "line": 443,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 15568,
+ 15581
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 14
+ },
+ "end": {
+ "line": 443,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 15565,
+ 15581
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 11
+ },
+ "end": {
+ "line": 443,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 15582,
+ 15590
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 28
+ },
+ "end": {
+ "line": 443,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 15565,
+ 15591
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 11
+ },
+ "end": {
+ "line": 443,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15596,
+ 15598
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 42
+ },
+ "end": {
+ "line": 443,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeCheckList",
+ "range": [
+ 15599,
+ 15615
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 45
+ },
+ "end": {
+ "line": 443,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 15596,
+ 15615
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 42
+ },
+ "end": {
+ "line": 443,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 15565,
+ 15615
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 11
+ },
+ "end": {
+ "line": 443,
+ "column": 61
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 15631,
+ 15637
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 12
+ },
+ "end": {
+ "line": 444,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 15638,
+ 15644
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 19
+ },
+ "end": {
+ "line": 444,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 15631,
+ 15644
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 12
+ },
+ "end": {
+ "line": 444,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 15649,
+ 15650
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 30
+ },
+ "end": {
+ "line": 444,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15631,
+ 15650
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 12
+ },
+ "end": {
+ "line": 444,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15565,
+ 15650
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 11
+ },
+ "end": {
+ "line": 444,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 15665,
+ 15672
+ ],
+ "loc": {
+ "start": {
+ "line": 445,
+ "column": 12
+ },
+ "end": {
+ "line": 445,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 15651,
+ 15682
+ ],
+ "loc": {
+ "start": {
+ "line": 444,
+ "column": 32
+ },
+ "end": {
+ "line": 446,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 15562,
+ 15682
+ ],
+ "loc": {
+ "start": {
+ "line": 443,
+ "column": 8
+ },
+ "end": {
+ "line": 446,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 15695,
+ 15698
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 12
+ },
+ "end": {
+ "line": 447,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 15701,
+ 15703
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 18
+ },
+ "end": {
+ "line": 447,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterElement",
+ "range": [
+ 15704,
+ 15720
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 21
+ },
+ "end": {
+ "line": 447,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 15701,
+ 15720
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 18
+ },
+ "end": {
+ "line": 447,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 15721,
+ 15729
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 38
+ },
+ "end": {
+ "line": 447,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 15701,
+ 15730
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 18
+ },
+ "end": {
+ "line": 447,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 15695,
+ 15730
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 12
+ },
+ "end": {
+ "line": 447,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 15691,
+ 15731
+ ],
+ "loc": {
+ "start": {
+ "line": 447,
+ "column": 8
+ },
+ "end": {
+ "line": 447,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "lisNb",
+ "range": [
+ 15745,
+ 15750
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 12
+ },
+ "end": {
+ "line": 449,
+ "column": 17
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 15753,
+ 15756
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 20
+ },
+ "end": {
+ "line": 449,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tag",
+ "range": [
+ 15757,
+ 15760
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 24
+ },
+ "end": {
+ "line": 449,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 15753,
+ 15760
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 20
+ },
+ "end": {
+ "line": 449,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 15761,
+ 15764
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 28
+ },
+ "end": {
+ "line": 449,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "li",
+ "raw": "'li'",
+ "range": [
+ 15766,
+ 15770
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 33
+ },
+ "end": {
+ "line": 449,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 15753,
+ 15771
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 20
+ },
+ "end": {
+ "line": 449,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 15772,
+ 15778
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 39
+ },
+ "end": {
+ "line": 449,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 15753,
+ 15778
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 20
+ },
+ "end": {
+ "line": 449,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 15745,
+ 15778
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 12
+ },
+ "end": {
+ "line": 449,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 15741,
+ 15779
+ ],
+ "loc": {
+ "start": {
+ "line": 449,
+ "column": 8
+ },
+ "end": {
+ "line": 449,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 15789,
+ 15792
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 8
+ },
+ "end": {
+ "line": 451,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setAttribute",
+ "range": [
+ 15793,
+ 15805
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 12
+ },
+ "end": {
+ "line": 451,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15789,
+ 15805
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 8
+ },
+ "end": {
+ "line": 451,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "value",
+ "raw": "'value'",
+ "range": [
+ 15806,
+ 15813
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 25
+ },
+ "end": {
+ "line": 451,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 15815,
+ 15817
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 34
+ },
+ "end": {
+ "line": 451,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 15789,
+ 15818
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 8
+ },
+ "end": {
+ "line": 451,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 15789,
+ 15819
+ ],
+ "loc": {
+ "start": {
+ "line": 451,
+ "column": 8
+ },
+ "end": {
+ "line": 451,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 15828,
+ 15831
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 8
+ },
+ "end": {
+ "line": 452,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setAttribute",
+ "range": [
+ 15832,
+ 15844
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 12
+ },
+ "end": {
+ "line": 452,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 15828,
+ 15844
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 8
+ },
+ "end": {
+ "line": 452,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "indexes",
+ "raw": "'indexes'",
+ "range": [
+ 15845,
+ 15854
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 25
+ },
+ "end": {
+ "line": 452,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 15856,
+ 15858
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 36
+ },
+ "end": {
+ "line": 452,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 15828,
+ 15859
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 8
+ },
+ "end": {
+ "line": 452,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 15828,
+ 15860
+ ],
+ "loc": {
+ "start": {
+ "line": 452,
+ "column": 8
+ },
+ "end": {
+ "line": 452,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ForStatement",
+ "init": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "k",
+ "range": [
+ 15878,
+ 15879
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 16
+ },
+ "end": {
+ "line": 454,
+ "column": 17
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 15880,
+ 15881
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 18
+ },
+ "end": {
+ "line": 454,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 15878,
+ 15881
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 16
+ },
+ "end": {
+ "line": 454,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 15874,
+ 15881
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 12
+ },
+ "end": {
+ "line": 454,
+ "column": 19
+ }
+ }
+ },
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "<",
+ "left": {
+ "type": "Identifier",
+ "name": "k",
+ "range": [
+ 15883,
+ 15884
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 21
+ },
+ "end": {
+ "line": 454,
+ "column": 22
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "lisNb",
+ "range": [
+ 15885,
+ 15890
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 23
+ },
+ "end": {
+ "line": 454,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 15883,
+ 15890
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 21
+ },
+ "end": {
+ "line": 454,
+ "column": 28
+ }
+ }
+ },
+ "update": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "Identifier",
+ "name": "k",
+ "range": [
+ 15892,
+ 15893
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 30
+ },
+ "end": {
+ "line": 454,
+ "column": 31
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 15892,
+ 15895
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 30
+ },
+ "end": {
+ "line": 454,
+ "column": 33
+ }
+ }
+ },
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "li",
+ "range": [
+ 15914,
+ 15916
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 16
+ },
+ "end": {
+ "line": 455,
+ "column": 18
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 15919,
+ 15922
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 21
+ },
+ "end": {
+ "line": 455,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tag",
+ "range": [
+ 15923,
+ 15926
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 25
+ },
+ "end": {
+ "line": 455,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 15919,
+ 15926
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 21
+ },
+ "end": {
+ "line": 455,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 15927,
+ 15930
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 29
+ },
+ "end": {
+ "line": 455,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "li",
+ "raw": "'li'",
+ "range": [
+ 15932,
+ 15936
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 34
+ },
+ "end": {
+ "line": 455,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 15919,
+ 15937
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 21
+ },
+ "end": {
+ "line": 455,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "k",
+ "range": [
+ 15938,
+ 15939
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 40
+ },
+ "end": {
+ "line": 455,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 15919,
+ 15940
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 21
+ },
+ "end": {
+ "line": 455,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 15914,
+ 15940
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 16
+ },
+ "end": {
+ "line": 455,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "lbl",
+ "range": [
+ 15958,
+ 15961
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 16
+ },
+ "end": {
+ "line": 456,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 15964,
+ 15967
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 22
+ },
+ "end": {
+ "line": 456,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tag",
+ "range": [
+ 15968,
+ 15971
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 26
+ },
+ "end": {
+ "line": 456,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 15964,
+ 15971
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 22
+ },
+ "end": {
+ "line": 456,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "li",
+ "range": [
+ 15972,
+ 15974
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 30
+ },
+ "end": {
+ "line": 456,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "label",
+ "raw": "'label'",
+ "range": [
+ 15976,
+ 15983
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 34
+ },
+ "end": {
+ "line": 456,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 15964,
+ 15984
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 22
+ },
+ "end": {
+ "line": 456,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 15985,
+ 15986
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 43
+ },
+ "end": {
+ "line": 456,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 15964,
+ 15987
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 22
+ },
+ "end": {
+ "line": 456,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 15958,
+ 15987
+ ],
+ "loc": {
+ "start": {
+ "line": 456,
+ "column": 16
+ },
+ "end": {
+ "line": 456,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "chk",
+ "range": [
+ 16005,
+ 16008
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 16
+ },
+ "end": {
+ "line": 457,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 16011,
+ 16014
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 22
+ },
+ "end": {
+ "line": 457,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tag",
+ "range": [
+ 16015,
+ 16018
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 26
+ },
+ "end": {
+ "line": 457,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 16011,
+ 16018
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 22
+ },
+ "end": {
+ "line": 457,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "li",
+ "range": [
+ 16019,
+ 16021
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 30
+ },
+ "end": {
+ "line": 457,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "input",
+ "raw": "'input'",
+ "range": [
+ 16023,
+ 16030
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 34
+ },
+ "end": {
+ "line": 457,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 16011,
+ 16031
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 22
+ },
+ "end": {
+ "line": 457,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 16032,
+ 16033
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 43
+ },
+ "end": {
+ "line": 457,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 16011,
+ 16034
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 22
+ },
+ "end": {
+ "line": 457,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 16005,
+ 16034
+ ],
+ "loc": {
+ "start": {
+ "line": 457,
+ "column": 16
+ },
+ "end": {
+ "line": 457,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "lblTxt",
+ "range": [
+ 16052,
+ 16058
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 16
+ },
+ "end": {
+ "line": 458,
+ "column": 22
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Str",
+ "range": [
+ 16061,
+ 16064
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 25
+ },
+ "end": {
+ "line": 458,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "matchCase",
+ "range": [
+ 16065,
+ 16074
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 29
+ },
+ "end": {
+ "line": 458,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 16061,
+ 16074
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 25
+ },
+ "end": {
+ "line": 458,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 16075,
+ 16078
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 39
+ },
+ "end": {
+ "line": 458,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getText",
+ "range": [
+ 16079,
+ 16086
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 43
+ },
+ "end": {
+ "line": 458,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 16075,
+ 16086
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 39
+ },
+ "end": {
+ "line": 458,
+ "column": 50
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "lbl",
+ "range": [
+ 16087,
+ 16090
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 51
+ },
+ "end": {
+ "line": 458,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 16075,
+ 16091
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 39
+ },
+ "end": {
+ "line": 458,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16093,
+ 16095
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 57
+ },
+ "end": {
+ "line": 458,
+ "column": 59
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "caseSensitive",
+ "range": [
+ 16096,
+ 16109
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 60
+ },
+ "end": {
+ "line": 458,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 16093,
+ 16109
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 57
+ },
+ "end": {
+ "line": 458,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 16061,
+ 16110
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 25
+ },
+ "end": {
+ "line": 458,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 16052,
+ 16110
+ ],
+ "loc": {
+ "start": {
+ "line": 458,
+ "column": 16
+ },
+ "end": {
+ "line": 458,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 15910,
+ 16111
+ ],
+ "loc": {
+ "start": {
+ "line": 455,
+ "column": 12
+ },
+ "end": {
+ "line": 458,
+ "column": 75
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "!==",
+ "left": {
+ "type": "Identifier",
+ "name": "lblTxt",
+ "range": [
+ 16127,
+ 16133
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 15
+ },
+ "end": {
+ "line": 459,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 16138,
+ 16140
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 26
+ },
+ "end": {
+ "line": 459,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 16127,
+ 16140
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 15
+ },
+ "end": {
+ "line": 459,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
+ "range": [
+ 16144,
+ 16147
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 32
+ },
+ "end": {
+ "line": 459,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 16148,
+ 16151
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 36
+ },
+ "end": {
+ "line": 459,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 16144,
+ 16151
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 32
+ },
+ "end": {
+ "line": 459,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 16152,
+ 16158
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 40
+ },
+ "end": {
+ "line": 459,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "lblTxt",
+ "range": [
+ 16160,
+ 16166
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 48
+ },
+ "end": {
+ "line": 459,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16168,
+ 16170
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 56
+ },
+ "end": {
+ "line": 459,
+ "column": 58
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "caseSensitive",
+ "range": [
+ 16171,
+ 16184
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 59
+ },
+ "end": {
+ "line": 459,
+ "column": 72
+ }
+ }
+ },
+ "range": [
+ 16168,
+ 16184
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 56
+ },
+ "end": {
+ "line": 459,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 16144,
+ 16185
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 32
+ },
+ "end": {
+ "line": 459,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 16127,
+ 16185
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 15
+ },
+ "end": {
+ "line": 459,
+ "column": 73
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "chk",
+ "range": [
+ 16204,
+ 16207
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 16
+ },
+ "end": {
+ "line": 460,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checked",
+ "range": [
+ 16208,
+ 16215
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 20
+ },
+ "end": {
+ "line": 460,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 16204,
+ 16215
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 16
+ },
+ "end": {
+ "line": 460,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 16218,
+ 16222
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 30
+ },
+ "end": {
+ "line": 460,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 16204,
+ 16222
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 16
+ },
+ "end": {
+ "line": 460,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 16204,
+ 16223
+ ],
+ "loc": {
+ "start": {
+ "line": 460,
+ "column": 16
+ },
+ "end": {
+ "line": 460,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16240,
+ 16244
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 16
+ },
+ "end": {
+ "line": 461,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setCheckListValues",
+ "range": [
+ 16245,
+ 16263
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 21
+ },
+ "end": {
+ "line": 461,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 16240,
+ 16263
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 16
+ },
+ "end": {
+ "line": 461,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "chk",
+ "range": [
+ 16264,
+ 16267
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 40
+ },
+ "end": {
+ "line": 461,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 16240,
+ 16268
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 16
+ },
+ "end": {
+ "line": 461,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 16240,
+ 16269
+ ],
+ "loc": {
+ "start": {
+ "line": 461,
+ "column": 16
+ },
+ "end": {
+ "line": 461,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 16186,
+ 16283
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 74
+ },
+ "end": {
+ "line": 462,
+ "column": 13
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "chk",
+ "range": [
+ 16318,
+ 16321
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 16
+ },
+ "end": {
+ "line": 464,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checked",
+ "range": [
+ 16322,
+ 16329
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 20
+ },
+ "end": {
+ "line": 464,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 16318,
+ 16329
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 16
+ },
+ "end": {
+ "line": 464,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 16332,
+ 16337
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 30
+ },
+ "end": {
+ "line": 464,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 16318,
+ 16337
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 16
+ },
+ "end": {
+ "line": 464,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 16318,
+ 16338
+ ],
+ "loc": {
+ "start": {
+ "line": 464,
+ "column": 16
+ },
+ "end": {
+ "line": 464,
+ "column": 36
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16355,
+ 16359
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 16
+ },
+ "end": {
+ "line": 465,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setCheckListValues",
+ "range": [
+ 16360,
+ 16378
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 21
+ },
+ "end": {
+ "line": 465,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 16355,
+ 16378
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 16
+ },
+ "end": {
+ "line": 465,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "chk",
+ "range": [
+ 16379,
+ 16382
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 40
+ },
+ "end": {
+ "line": 465,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 16355,
+ 16383
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 16
+ },
+ "end": {
+ "line": 465,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 16355,
+ 16384
+ ],
+ "loc": {
+ "start": {
+ "line": 465,
+ "column": 16
+ },
+ "end": {
+ "line": 465,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 16300,
+ 16398
+ ],
+ "loc": {
+ "start": {
+ "line": 463,
+ "column": 16
+ },
+ "end": {
+ "line": 466,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 16124,
+ 16398
+ ],
+ "loc": {
+ "start": {
+ "line": 459,
+ "column": 12
+ },
+ "end": {
+ "line": 466,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "range": [
+ 15896,
+ 16408
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 34
+ },
+ "end": {
+ "line": 467,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 15870,
+ 16408
+ ],
+ "loc": {
+ "start": {
+ "line": 454,
+ "column": 8
+ },
+ "end": {
+ "line": 467,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 15526,
+ 16414
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 38
+ },
+ "end": {
+ "line": 468,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 15505,
+ 16414
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 17
+ },
+ "end": {
+ "line": 468,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 15492,
+ 16414
+ ],
+ "loc": {
+ "start": {
+ "line": 441,
+ "column": 4
+ },
+ "end": {
+ "line": 468,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 15318,
+ 15487
+ ],
+ "loc": {
+ "start": {
+ "line": 436,
+ "column": 4
+ },
+ "end": {
+ "line": 440,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "destroy",
+ "range": [
+ 16420,
+ 16427
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 4
+ },
+ "end": {
+ "line": 470,
+ "column": 11
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16439,
+ 16443
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 8
+ },
+ "end": {
+ "line": 471,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 16444,
+ 16451
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 13
+ },
+ "end": {
+ "line": 471,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 16439,
+ 16451
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 8
+ },
+ "end": {
+ "line": 471,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 16452,
+ 16455
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 21
+ },
+ "end": {
+ "line": 471,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 16439,
+ 16455
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 8
+ },
+ "end": {
+ "line": 471,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "build-checklist-filter",
+ "raw": "'build-checklist-filter'",
+ "range": [
+ 16470,
+ 16494
+ ],
+ "loc": {
+ "start": {
+ "line": 472,
+ "column": 13
+ },
+ "end": {
+ "line": 472,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 16469,
+ 16495
+ ],
+ "loc": {
+ "start": {
+ "line": 472,
+ "column": 12
+ },
+ "end": {
+ "line": 472,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16510,
+ 16512
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 13
+ },
+ "end": {
+ "line": 473,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 16514,
+ 16522
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 17
+ },
+ "end": {
+ "line": 473,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 16524,
+ 16534
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 27
+ },
+ "end": {
+ "line": 473,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16538,
+ 16542
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 41
+ },
+ "end": {
+ "line": 473,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 16543,
+ 16548
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 46
+ },
+ "end": {
+ "line": 473,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 16538,
+ 16548
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 41
+ },
+ "end": {
+ "line": 473,
+ "column": 51
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 16549,
+ 16557
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 52
+ },
+ "end": {
+ "line": 473,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 16559,
+ 16569
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 62
+ },
+ "end": {
+ "line": 473,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 16538,
+ 16570
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 41
+ },
+ "end": {
+ "line": 473,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 16509,
+ 16570
+ ],
+ "loc": {
+ "start": {
+ "line": 473,
+ "column": 12
+ },
+ "end": {
+ "line": 473,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 16439,
+ 16580
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 8
+ },
+ "end": {
+ "line": 474,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 16439,
+ 16581
+ ],
+ "loc": {
+ "start": {
+ "line": 471,
+ "column": 8
+ },
+ "end": {
+ "line": 474,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16590,
+ 16594
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 8
+ },
+ "end": {
+ "line": 475,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 16595,
+ 16602
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 13
+ },
+ "end": {
+ "line": 475,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 16590,
+ 16602
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 8
+ },
+ "end": {
+ "line": 475,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 16603,
+ 16606
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 21
+ },
+ "end": {
+ "line": 475,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 16590,
+ 16606
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 8
+ },
+ "end": {
+ "line": 475,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "select-checklist-options",
+ "raw": "'select-checklist-options'",
+ "range": [
+ 16621,
+ 16647
+ ],
+ "loc": {
+ "start": {
+ "line": 476,
+ "column": 13
+ },
+ "end": {
+ "line": 476,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 16620,
+ 16648
+ ],
+ "loc": {
+ "start": {
+ "line": 476,
+ "column": 12
+ },
+ "end": {
+ "line": 476,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16663,
+ 16665
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 13
+ },
+ "end": {
+ "line": 477,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 16667,
+ 16675
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 17
+ },
+ "end": {
+ "line": 477,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 16677,
+ 16683
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 27
+ },
+ "end": {
+ "line": 477,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16687,
+ 16691
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 37
+ },
+ "end": {
+ "line": 477,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 16692,
+ 16705
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 42
+ },
+ "end": {
+ "line": 477,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 16687,
+ 16705
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 37
+ },
+ "end": {
+ "line": 477,
+ "column": 55
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 16706,
+ 16714
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 56
+ },
+ "end": {
+ "line": 477,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 16716,
+ 16722
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 66
+ },
+ "end": {
+ "line": 477,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 16687,
+ 16723
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 37
+ },
+ "end": {
+ "line": 477,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 16662,
+ 16723
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 12
+ },
+ "end": {
+ "line": 477,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 16590,
+ 16733
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 8
+ },
+ "end": {
+ "line": 478,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 16590,
+ 16734
+ ],
+ "loc": {
+ "start": {
+ "line": 475,
+ "column": 8
+ },
+ "end": {
+ "line": 478,
+ "column": 10
+ }
+ }
+ }
+ ],
+ "range": [
+ 16429,
+ 16740
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 13
+ },
+ "end": {
+ "line": 479,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 16427,
+ 16740
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 11
+ },
+ "end": {
+ "line": 479,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 16420,
+ 16740
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 4
+ },
+ "end": {
+ "line": 479,
+ "column": 5
+ }
+ },
+ "static": false
}
],
"range": [
- 164,
- 14911
+ 215,
+ 16742
],
"loc": {
"start": {
- "line": 7,
- "column": 22
+ "line": 8,
+ "column": 38
},
"end": {
- "line": 419,
+ "line": 480,
"column": 1
}
}
},
"range": [
- 149,
- 14911
+ 184,
+ 16742
],
"loc": {
"start": {
- "line": 7,
+ "line": 8,
"column": 7
},
"end": {
- "line": 419,
+ "line": 480,
"column": 1
}
},
@@ -36296,16 +41359,16 @@
"specifiers": [],
"source": null,
"range": [
- 142,
- 14911
+ 177,
+ 16742
],
"loc": {
"start": {
- "line": 7,
+ "line": 8,
"column": 0
},
"end": {
- "line": 419,
+ "line": 480,
"column": 1
}
}
@@ -36314,7 +41377,7 @@
"sourceType": "module",
"range": [
0,
- 14911
+ 16742
],
"loc": {
"start": {
@@ -36322,7 +41385,7 @@
"column": 0
},
"end": {
- "line": 419,
+ "line": 480,
"column": 1
}
},
@@ -36331,16 +41394,16 @@
"type": "Block",
"value": "*\n * Checklist UI component\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 171,
- 259
+ 222,
+ 310
],
"loc": {
"start": {
- "line": 9,
+ "line": 10,
"column": 4
},
"end": {
- "line": 12,
+ "line": 13,
"column": 7
}
}
@@ -36349,16 +41412,16 @@
"type": "Line",
"value": " Configuration object",
"range": [
- 289,
- 312
+ 373,
+ 396
],
"loc": {
"start": {
- "line": 14,
+ "line": 17,
"column": 8
},
"end": {
- "line": 14,
+ "line": 17,
"column": 31
}
}
@@ -36367,16 +41430,16 @@
"type": "Line",
"value": "checklist container div",
"range": [
- 375,
- 400
+ 459,
+ 484
],
"loc": {
"start": {
- "line": 17,
+ "line": 20,
"column": 32
},
"end": {
- "line": 17,
+ "line": 20,
"column": 57
}
}
@@ -36385,16 +41448,16 @@
"type": "Line",
"value": "defines css class for div containing checklist filter",
"range": [
- 409,
- 464
+ 493,
+ 548
],
"loc": {
"start": {
- "line": 18,
+ "line": 21,
"column": 8
},
"end": {
- "line": 18,
+ "line": 21,
"column": 63
}
}
@@ -36403,16 +41466,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 567,
- 608
+ 651,
+ 692
],
"loc": {
"start": {
- "line": 21,
+ "line": 24,
"column": 8
},
"end": {
- "line": 21,
+ "line": 24,
"column": 49
}
}
@@ -36421,16 +41484,16 @@
"type": "Line",
"value": "defines css class for checklist item (li)",
"range": [
- 692,
- 735
+ 776,
+ 819
],
"loc": {
"start": {
- "line": 23,
+ "line": 26,
"column": 8
},
"end": {
- "line": 23,
+ "line": 26,
"column": 51
}
}
@@ -36439,16 +41502,16 @@
"type": "Line",
"value": "defines css class for selected checklist item (li)",
"range": [
- 845,
- 897
+ 929,
+ 981
],
"loc": {
"start": {
- "line": 26,
+ "line": 29,
"column": 8
},
"end": {
- "line": 26,
+ "line": 29,
"column": 60
}
}
@@ -36457,16 +41520,16 @@
"type": "Line",
"value": "Load on demand text",
"range": [
- 1023,
- 1044
+ 1107,
+ 1128
],
"loc": {
"start": {
- "line": 29,
+ "line": 32,
"column": 8
},
"end": {
- "line": 29,
+ "line": 32,
"column": 29
}
}
@@ -36475,16 +41538,16 @@
"type": "Line",
"value": "defines css class for checklist filters",
"range": [
- 1159,
- 1200
+ 1243,
+ 1284
],
"loc": {
"start": {
- "line": 32,
+ "line": 35,
"column": 8
},
"end": {
- "line": 32,
+ "line": 35,
"column": 49
}
}
@@ -36493,53 +41556,53 @@
"type": "Line",
"value": "checklist filter container div",
"range": [
- 1458,
- 1490
+ 1542,
+ 1574
],
"loc": {
"start": {
- "line": 38,
+ "line": 41,
"column": 8
},
"end": {
- "line": 38,
+ "line": 41,
"column": 40
}
}
},
{
- "type": "Line",
- "value": " TODO: move event here",
+ "type": "Block",
+ "value": "*\n * Initialize checklist filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
"range": [
- 1688,
- 1712
+ 2406,
+ 2637
],
"loc": {
"start": {
- "line": 49,
+ "line": 73,
"column": 4
},
"end": {
- "line": 49,
- "column": 28
+ "line": 78,
+ "column": 7
}
}
},
{
- "type": "Block",
- "value": "*\n * Build checklist UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
+ "type": "Line",
+ "value": "filter is appended in desired element",
"range": [
- 2044,
- 2268
+ 3017,
+ 3056
],
"loc": {
"start": {
- "line": 62,
- "column": 4
+ "line": 89,
+ "column": 8
},
"end": {
- "line": 67,
- "column": 7
+ "line": 89,
+ "column": 47
}
}
},
@@ -36547,16 +41610,16 @@
"type": "Block",
"value": "*\n * Build checklist UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n ",
"range": [
- 2492,
- 2701
+ 3956,
+ 4165
],
"loc": {
"start": {
- "line": 76,
+ "line": 120,
"column": 4
},
"end": {
- "line": 81,
+ "line": 125,
"column": 7
}
}
@@ -36565,16 +41628,16 @@
"type": "Line",
"value": " always visible rows don't need to appear on selects as always",
"range": [
- 3853,
- 3917
+ 5380,
+ 5444
],
"loc": {
"start": {
- "line": 116,
+ "line": 162,
"column": 12
},
"end": {
- "line": 116,
+ "line": 162,
"column": 76
}
}
@@ -36583,16 +41646,16 @@
"type": "Line",
"value": " valid",
"range": [
- 3930,
- 3938
+ 5457,
+ 5465
],
"loc": {
"start": {
- "line": 117,
+ "line": 163,
"column": 12
},
"end": {
- "line": 117,
+ "line": 163,
"column": 20
}
}
@@ -36601,16 +41664,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 4142,
- 4175
+ 5669,
+ 5702
],
"loc": {
"start": {
- "line": 125,
+ "line": 171,
"column": 12
},
"end": {
- "line": 125,
+ "line": 171,
"column": 45
}
}
@@ -36619,16 +41682,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4285,
- 4317
+ 5812,
+ 5844
],
"loc": {
"start": {
- "line": 130,
+ "line": 176,
"column": 12
},
"end": {
- "line": 130,
+ "line": 176,
"column": 44
}
}
@@ -36637,16 +41700,16 @@
"type": "Line",
"value": " WTF: cyclomatic complexity hell :)",
"range": [
- 4375,
- 4412
+ 5902,
+ 5939
],
"loc": {
"start": {
- "line": 132,
+ "line": 178,
"column": 16
},
"end": {
- "line": 132,
+ "line": 178,
"column": 53
}
}
@@ -36655,16 +41718,16 @@
"type": "Line",
"value": "Vary Peter's patch",
"range": [
- 4937,
- 4957
+ 6464,
+ 6484
],
"loc": {
"start": {
- "line": 141,
+ "line": 187,
"column": 20
},
"end": {
- "line": 141,
+ "line": 187,
"column": 40
}
}
@@ -36673,16 +41736,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5056,
- 5097
+ 6583,
+ 6624
],
"loc": {
"start": {
- "line": 143,
+ "line": 189,
"column": 20
},
"end": {
- "line": 143,
+ "line": 189,
"column": 61
}
}
@@ -36691,16 +41754,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5913,
- 5938
+ 7393,
+ 7418
],
"loc": {
"start": {
- "line": 163,
+ "line": 208,
"column": 8
},
"end": {
- "line": 163,
+ "line": 208,
"column": 33
}
}
@@ -36709,16 +41772,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6555,
- 6565
+ 8035,
+ 8045
],
"loc": {
"start": {
- "line": 183,
+ "line": 228,
"column": 8
},
"end": {
- "line": 183,
+ "line": 228,
"column": 18
}
}
@@ -36727,16 +41790,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7181,
- 7220
+ 8661,
+ 8700
],
"loc": {
"start": {
- "line": 201,
+ "line": 246,
"column": 13
},
"end": {
- "line": 201,
+ "line": 246,
"column": 52
}
}
@@ -36745,16 +41808,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7239,
- 7250
+ 8719,
+ 8730
],
"loc": {
"start": {
- "line": 203,
+ "line": 248,
"column": 8
},
"end": {
- "line": 203,
+ "line": 248,
"column": 19
}
}
@@ -36763,16 +41826,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7855,
- 7894
+ 9335,
+ 9374
],
"loc": {
"start": {
- "line": 220,
+ "line": 265,
"column": 13
},
"end": {
- "line": 220,
+ "line": 265,
"column": 52
}
}
@@ -36781,52 +41844,34 @@
"type": "Block",
"value": "*\n * Add checklist options\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 8114,
- 8244
+ 9654,
+ 9784
],
"loc": {
"start": {
- "line": 232,
+ "line": 279,
"column": 4
},
"end": {
- "line": 236,
+ "line": 283,
"column": 7
}
}
},
- {
- "type": "Line",
- "value": "remember grid values",
- "range": [
- 8376,
- 8398
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 25
- },
- "end": {
- "line": 240,
- "column": 47
- }
- }
- },
{
"type": "Line",
"value": "item value",
"range": [
- 8933,
- 8945
+ 9975,
+ 9987
],
"loc": {
"start": {
- "line": 254,
+ "line": 289,
"column": 36
},
"end": {
- "line": 254,
+ "line": 289,
"column": 48
}
}
@@ -36835,16 +41880,16 @@
"type": "Line",
"value": "item text",
"range": [
- 9007,
- 9018
+ 10049,
+ 10060
],
"loc": {
"start": {
- "line": 255,
+ "line": 290,
"column": 61
},
"end": {
- "line": 255,
+ "line": 290,
"column": 72
}
}
@@ -36853,52 +41898,34 @@
"type": "Line",
"value": "item is hidden",
"range": [
- 9740,
- 9756
+ 10742,
+ 10758
],
"loc": {
"start": {
- "line": 272,
+ "line": 306,
"column": 16
},
"end": {
- "line": 272,
+ "line": 306,
"column": 32
}
}
},
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 9827,
- 9857
- ],
- "loc": {
- "start": {
- "line": 276,
- "column": 12
- },
- "end": {
- "line": 276,
- "column": 42
- }
- }
- },
{
"type": "Block",
"value": "*\n * Add checklist header option\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n ",
"range": [
- 10339,
- 10473
+ 10837,
+ 10971
],
"loc": {
"start": {
- "line": 290,
+ "line": 312,
"column": 4
},
"end": {
- "line": 294,
+ "line": 316,
"column": 7
}
}
@@ -36907,16 +41934,16 @@
"type": "Block",
"value": "*\n * Store checked options in DOM element attribute\n * @param {Object} o checklist option DOM element\n ",
"range": [
- 11781,
- 11900
+ 12185,
+ 12304
],
"loc": {
"start": {
- "line": 338,
+ "line": 354,
"column": 4
},
"end": {
- "line": 341,
+ "line": 357,
"column": 7
}
}
@@ -36925,16 +41952,16 @@
"type": "Line",
"value": "checked item value",
"range": [
- 12032,
- 12052
+ 12436,
+ 12456
],
"loc": {
"start": {
- "line": 347,
+ "line": 363,
"column": 32
},
"end": {
- "line": 347,
+ "line": 363,
"column": 52
}
}
@@ -36943,16 +41970,16 @@
"type": "Line",
"value": "ul tag search",
"range": [
- 12184,
- 12199
+ 12588,
+ 12603
],
"loc": {
"start": {
- "line": 352,
+ "line": 368,
"column": 8
},
"end": {
- "line": 352,
+ "line": 368,
"column": 23
}
}
@@ -36961,16 +41988,16 @@
"type": "Line",
"value": "filter value (ul tag)",
"range": [
- 12431,
- 12454
+ 12835,
+ 12858
],
"loc": {
"start": {
- "line": 359,
+ "line": 375,
"column": 48
},
"end": {
- "line": 359,
+ "line": 375,
"column": 71
}
}
@@ -36979,16 +42006,16 @@
"type": "Line",
"value": "selected items (ul tag)",
"range": [
- 12507,
- 12532
+ 12911,
+ 12936
],
"loc": {
"start": {
- "line": 360,
+ "line": 376,
"column": 52
},
"end": {
- "line": 360,
+ "line": 376,
"column": 77
}
}
@@ -36997,16 +42024,16 @@
"type": "Line",
"value": "show all item",
"range": [
- 12569,
- 12584
+ 12973,
+ 12988
],
"loc": {
"start": {
- "line": 363,
+ "line": 379,
"column": 12
},
"end": {
- "line": 363,
+ "line": 379,
"column": 27
}
}
@@ -37015,16 +42042,16 @@
"type": "Line",
"value": "items indexes",
"range": [
- 12689,
- 12704
+ 13093,
+ 13108
],
"loc": {
"start": {
- "line": 366,
+ "line": 382,
"column": 20
},
"end": {
- "line": 366,
+ "line": 382,
"column": 35
}
}
@@ -37033,16 +42060,16 @@
"type": "Line",
"value": "checked items loop",
"range": [
- 12792,
- 12812
+ 13196,
+ 13216
],
"loc": {
"start": {
- "line": 368,
+ "line": 384,
"column": 20
},
"end": {
- "line": 368,
+ "line": 384,
"column": 40
}
}
@@ -37051,16 +42078,16 @@
"type": "Line",
"value": "checked item",
"range": [
- 12895,
- 12909
+ 13299,
+ 13313
],
"loc": {
"start": {
- "line": 370,
+ "line": 386,
"column": 24
},
"end": {
- "line": 370,
+ "line": 386,
"column": 38
}
}
@@ -37069,16 +42096,16 @@
"type": "Line",
"value": "1st option unchecked",
"range": [
- 13791,
- 13813
+ 14194,
+ 14216
],
"loc": {
"start": {
- "line": 391,
+ "line": 407,
"column": 16
},
"end": {
- "line": 391,
+ "line": 407,
"column": 38
}
}
@@ -37087,19 +42114,37 @@
"type": "Line",
"value": "removes values and indexes",
"range": [
- 14221,
- 14249
+ 14624,
+ 14652
],
"loc": {
"start": {
- "line": 402,
+ "line": 418,
"column": 17
},
"end": {
- "line": 402,
+ "line": 418,
"column": 45
}
}
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 15318,
+ 15487
+ ],
+ "loc": {
+ "start": {
+ "line": 436,
+ "column": 4
+ },
+ "end": {
+ "line": 440,
+ "column": 7
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/dropdown.js.json b/docs/ast/source/src/modules/dropdown.js.json
index 396bf8d4..71511a9f 100644
--- a/docs/ast/source/src/modules/dropdown.js.json
+++ b/docs/ast/source/src/modules/dropdown.js.json
@@ -1,6 +1,97 @@
{
"type": "Program",
"body": [
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ },
+ "imported": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ },
+ "range": [
+ 8,
+ 15
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "./feature",
+ "raw": "'./feature'",
+ "range": [
+ 22,
+ 33
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 22
+ },
+ "end": {
+ "line": 1,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 0,
+ 34
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 34
+ }
+ }
+ },
{
"type": "ImportDeclaration",
"specifiers": [
@@ -10,31 +101,31 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7,
- 10
+ 42,
+ 45
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 7
},
"end": {
- "line": 1,
+ "line": 2,
"column": 10
}
}
},
"range": [
- 7,
- 10
+ 42,
+ 45
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 7
},
"end": {
- "line": 1,
+ "line": 2,
"column": 10
}
}
@@ -45,31 +136,31 @@
"value": "../dom",
"raw": "'../dom'",
"range": [
- 16,
- 24
+ 51,
+ 59
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 16
},
"end": {
- "line": 1,
+ "line": 2,
"column": 24
}
}
},
"range": [
- 0,
- 25
+ 35,
+ 60
],
"loc": {
"start": {
- "line": 1,
+ "line": 2,
"column": 0
},
"end": {
- "line": 1,
+ "line": 2,
"column": 25
}
}
@@ -83,31 +174,31 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 33,
- 36
+ 68,
+ 71
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 7
},
"end": {
- "line": 2,
+ "line": 3,
"column": 10
}
}
},
"range": [
- 33,
- 36
+ 68,
+ 71
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 7
},
"end": {
- "line": 2,
+ "line": 3,
"column": 10
}
}
@@ -118,31 +209,31 @@
"value": "../array",
"raw": "'../array'",
"range": [
- 42,
- 52
+ 77,
+ 87
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 16
},
"end": {
- "line": 2,
+ "line": 3,
"column": 26
}
}
},
"range": [
- 26,
- 53
+ 61,
+ 88
],
"loc": {
"start": {
- "line": 2,
+ "line": 3,
"column": 0
},
"end": {
- "line": 2,
+ "line": 3,
"column": 27
}
}
@@ -156,31 +247,31 @@
"type": "Identifier",
"name": "Str",
"range": [
- 61,
- 64
+ 96,
+ 99
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 7
},
"end": {
- "line": 3,
+ "line": 4,
"column": 10
}
}
},
"range": [
- 61,
- 64
+ 96,
+ 99
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 7
},
"end": {
- "line": 3,
+ "line": 4,
"column": 10
}
}
@@ -191,31 +282,31 @@
"value": "../string",
"raw": "'../string'",
"range": [
- 70,
- 81
+ 105,
+ 116
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 16
},
"end": {
- "line": 3,
+ "line": 4,
"column": 27
}
}
},
"range": [
- 54,
- 82
+ 89,
+ 117
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 0
},
"end": {
- "line": 3,
+ "line": 4,
"column": 28
}
}
@@ -229,31 +320,31 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 90,
- 94
+ 125,
+ 129
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 7
},
"end": {
- "line": 4,
+ "line": 5,
"column": 11
}
}
},
"range": [
- 90,
- 94
+ 125,
+ 129
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 7
},
"end": {
- "line": 4,
+ "line": 5,
"column": 11
}
}
@@ -264,35 +355,108 @@
"value": "../sort",
"raw": "'../sort'",
"range": [
- 100,
- 109
+ 135,
+ 144
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 17
},
"end": {
- "line": 4,
+ "line": 5,
"column": 26
}
}
},
"range": [
- 83,
- 110
+ 118,
+ 145
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 0
},
"end": {
- "line": 4,
+ "line": 5,
"column": 27
}
}
},
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 153,
+ 158
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 7
+ },
+ "end": {
+ "line": 6,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 153,
+ 158
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 7
+ },
+ "end": {
+ "line": 6,
+ "column": 12
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "../event",
+ "raw": "'../event'",
+ "range": [
+ 164,
+ 174
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 18
+ },
+ "end": {
+ "line": 6,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 146,
+ 175
+ ],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 29
+ }
+ }
+ },
{
"type": "ExportNamedDeclaration",
"declaration": {
@@ -301,21 +465,38 @@
"type": "Identifier",
"name": "Dropdown",
"range": [
- 125,
- 133
+ 190,
+ 198
],
"loc": {
"start": {
- "line": 6,
+ "line": 8,
"column": 13
},
"end": {
- "line": 6,
+ "line": 8,
"column": 21
}
}
},
- "superClass": null,
+ "superClass": {
+ "type": "Identifier",
+ "name": "Feature",
+ "range": [
+ 207,
+ 214
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 30
+ },
+ "end": {
+ "line": 8,
+ "column": 37
+ }
+ }
+ },
"body": {
"type": "ClassBody",
"body": [
@@ -325,16 +506,16 @@
"type": "Identifier",
"name": "constructor",
"range": [
- 232,
- 243
+ 313,
+ 324
],
"loc": {
"start": {
- "line": 12,
+ "line": 14,
"column": 4
},
"end": {
- "line": 12,
+ "line": 14,
"column": 15
}
}
@@ -347,16 +528,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 244,
- 246
+ 325,
+ 327
],
"loc": {
"start": {
- "line": 12,
+ "line": 14,
"column": 16
},
"end": {
- "line": 12,
+ "line": 14,
"column": 18
}
}
@@ -365,6 +546,116 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Super",
+ "range": [
+ 338,
+ 343
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 13
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 344,
+ 346
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 14
+ },
+ "end": {
+ "line": 15,
+ "column": 16
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "dropdown",
+ "raw": "'dropdown'",
+ "range": [
+ 348,
+ 358
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 18
+ },
+ "end": {
+ "line": 15,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "range": [
+ 338,
+ 359
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 338,
+ 360
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 8
+ },
+ "end": {
+ "line": 15,
+ "column": 30
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Configuration object",
+ "range": [
+ 370,
+ 393
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 8
+ },
+ "end": {
+ "line": 17,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -374,16 +665,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 293,
- 294
+ 406,
+ 407
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 12
},
"end": {
- "line": 14,
+ "line": 18,
"column": 13
}
}
@@ -397,16 +688,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 297,
- 299
+ 410,
+ 412
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 16
},
"end": {
- "line": 14,
+ "line": 18,
"column": 18
}
}
@@ -415,79 +706,79 @@
"type": "Identifier",
"name": "config",
"range": [
- 300,
- 306
+ 413,
+ 419
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 19
},
"end": {
- "line": 14,
+ "line": 18,
"column": 25
}
}
},
"range": [
- 297,
- 306
+ 410,
+ 419
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 16
},
"end": {
- "line": 14,
+ "line": 18,
"column": 25
}
}
},
"arguments": [],
"range": [
- 297,
- 308
+ 410,
+ 421
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 16
},
"end": {
- "line": 14,
+ "line": 18,
"column": 27
}
}
},
"range": [
- 293,
- 308
+ 406,
+ 421
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 12
},
"end": {
- "line": 14,
+ "line": 18,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 289,
- 309
+ 402,
+ 422
],
"loc": {
"start": {
- "line": 14,
+ "line": 18,
"column": 8
},
"end": {
- "line": 14,
+ "line": 18,
"column": 28
}
},
@@ -496,16 +787,16 @@
"type": "Line",
"value": " Configuration object",
"range": [
- 257,
- 280
+ 370,
+ 393
],
"loc": {
"start": {
- "line": 13,
+ "line": 17,
"column": 8
},
"end": {
- "line": 13,
+ "line": 17,
"column": 31
}
}
@@ -523,16 +814,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 319,
- 323
+ 432,
+ 436
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 8
},
"end": {
- "line": 16,
+ "line": 20,
"column": 12
}
}
@@ -541,31 +832,31 @@
"type": "Identifier",
"name": "enableSlcResetFilter",
"range": [
- 324,
- 344
+ 437,
+ 457
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 13
},
"end": {
- "line": 16,
+ "line": 20,
"column": 33
}
}
},
"range": [
- 319,
- 344
+ 432,
+ 457
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 8
},
"end": {
- "line": 16,
+ "line": 20,
"column": 33
}
}
@@ -582,16 +873,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 347,
- 348
+ 460,
+ 461
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 36
},
"end": {
- "line": 16,
+ "line": 20,
"column": 37
}
}
@@ -600,31 +891,31 @@
"type": "Identifier",
"name": "enable_slc_reset_filter",
"range": [
- 349,
- 372
+ 462,
+ 485
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 38
},
"end": {
- "line": 16,
+ "line": 20,
"column": 61
}
}
},
"range": [
- 347,
- 372
+ 460,
+ 485
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 36
},
"end": {
- "line": 16,
+ "line": 20,
"column": 61
}
}
@@ -634,31 +925,31 @@
"value": false,
"raw": "false",
"range": [
- 375,
- 380
+ 488,
+ 493
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 64
},
"end": {
- "line": 16,
+ "line": 20,
"column": 69
}
}
},
"range": [
- 347,
- 380
+ 460,
+ 493
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 36
},
"end": {
- "line": 16,
+ "line": 20,
"column": 69
}
}
@@ -668,16 +959,16 @@
"value": false,
"raw": "false",
"range": [
- 395,
- 400
+ 508,
+ 513
],
"loc": {
"start": {
- "line": 17,
+ "line": 21,
"column": 12
},
"end": {
- "line": 17,
+ "line": 21,
"column": 17
}
}
@@ -687,61 +978,61 @@
"value": true,
"raw": "true",
"range": [
- 403,
- 407
+ 516,
+ 520
],
"loc": {
"start": {
- "line": 17,
+ "line": 21,
"column": 20
},
"end": {
- "line": 17,
+ "line": 21,
"column": 24
}
}
},
"range": [
- 347,
- 407
+ 460,
+ 520
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 36
},
"end": {
- "line": 17,
+ "line": 21,
"column": 24
}
}
},
"range": [
- 319,
- 407
+ 432,
+ 520
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 21,
"column": 24
}
}
},
"range": [
- 319,
- 408
+ 432,
+ 521
],
"loc": {
"start": {
- "line": 16,
+ "line": 20,
"column": 8
},
"end": {
- "line": 17,
+ "line": 21,
"column": 25
}
},
@@ -750,16 +1041,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 417,
- 444
+ 530,
+ 557
],
"loc": {
"start": {
- "line": 18,
+ "line": 22,
"column": 8
},
"end": {
- "line": 18,
+ "line": 22,
"column": 35
}
}
@@ -777,16 +1068,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 453,
- 457
+ 566,
+ 570
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 8
},
"end": {
- "line": 19,
+ "line": 23,
"column": 12
}
}
@@ -795,31 +1086,31 @@
"type": "Identifier",
"name": "nonEmptyText",
"range": [
- 458,
- 470
+ 571,
+ 583
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 13
},
"end": {
- "line": 19,
+ "line": 23,
"column": 25
}
}
},
"range": [
- 453,
- 470
+ 566,
+ 583
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 8
},
"end": {
- "line": 19,
+ "line": 23,
"column": 25
}
}
@@ -834,16 +1125,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 473,
- 474
+ 586,
+ 587
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 28
},
"end": {
- "line": 19,
+ "line": 23,
"column": 29
}
}
@@ -852,31 +1143,31 @@
"type": "Identifier",
"name": "non_empty_text",
"range": [
- 475,
- 489
+ 588,
+ 602
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 30
},
"end": {
- "line": 19,
+ "line": 23,
"column": 44
}
}
},
"range": [
- 473,
- 489
+ 586,
+ 602
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 28
},
"end": {
- "line": 19,
+ "line": 23,
"column": 44
}
}
@@ -886,61 +1177,61 @@
"value": "(Non empty)",
"raw": "'(Non empty)'",
"range": [
- 493,
- 506
+ 606,
+ 619
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 48
},
"end": {
- "line": 19,
+ "line": 23,
"column": 61
}
}
},
"range": [
- 473,
- 506
+ 586,
+ 619
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 28
},
"end": {
- "line": 19,
+ "line": 23,
"column": 61
}
}
},
"range": [
- 453,
- 506
+ 566,
+ 619
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 8
},
"end": {
- "line": 19,
+ "line": 23,
"column": 61
}
}
},
"range": [
- 453,
- 507
+ 566,
+ 620
],
"loc": {
"start": {
- "line": 19,
+ "line": 23,
"column": 8
},
"end": {
- "line": 19,
+ "line": 23,
"column": 62
}
},
@@ -949,16 +1240,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 417,
- 444
+ 530,
+ 557
],
"loc": {
"start": {
- "line": 18,
+ "line": 22,
"column": 8
},
"end": {
- "line": 18,
+ "line": 22,
"column": 35
}
}
@@ -969,16 +1260,16 @@
"type": "Line",
"value": "sets select filling method: 'innerHTML' or 'createElement'",
"range": [
- 516,
- 576
+ 629,
+ 689
],
"loc": {
"start": {
- "line": 20,
+ "line": 24,
"column": 8
},
"end": {
- "line": 20,
+ "line": 24,
"column": 68
}
}
@@ -996,16 +1287,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 585,
- 589
+ 698,
+ 702
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 8
},
"end": {
- "line": 21,
+ "line": 25,
"column": 12
}
}
@@ -1014,31 +1305,31 @@
"type": "Identifier",
"name": "slcFillingMethod",
"range": [
- 590,
- 606
+ 703,
+ 719
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 13
},
"end": {
- "line": 21,
+ "line": 25,
"column": 29
}
}
},
"range": [
- 585,
- 606
+ 698,
+ 719
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 8
},
"end": {
- "line": 21,
+ "line": 25,
"column": 29
}
}
@@ -1053,16 +1344,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 609,
- 610
+ 722,
+ 723
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 32
},
"end": {
- "line": 21,
+ "line": 25,
"column": 33
}
}
@@ -1071,31 +1362,31 @@
"type": "Identifier",
"name": "slc_filling_method",
"range": [
- 611,
- 629
+ 724,
+ 742
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 34
},
"end": {
- "line": 21,
+ "line": 25,
"column": 52
}
}
},
"range": [
- 609,
- 629
+ 722,
+ 742
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 32
},
"end": {
- "line": 21,
+ "line": 25,
"column": 52
}
}
@@ -1105,61 +1396,61 @@
"value": "createElement",
"raw": "'createElement'",
"range": [
- 633,
- 648
+ 746,
+ 761
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 56
},
"end": {
- "line": 21,
+ "line": 25,
"column": 71
}
}
},
"range": [
- 609,
- 648
+ 722,
+ 761
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 32
},
"end": {
- "line": 21,
+ "line": 25,
"column": 71
}
}
},
"range": [
- 585,
- 648
+ 698,
+ 761
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 8
},
"end": {
- "line": 21,
+ "line": 25,
"column": 71
}
}
},
"range": [
- 585,
- 649
+ 698,
+ 762
],
"loc": {
"start": {
- "line": 21,
+ "line": 25,
"column": 8
},
"end": {
- "line": 21,
+ "line": 25,
"column": 72
}
},
@@ -1168,16 +1459,16 @@
"type": "Line",
"value": "sets select filling method: 'innerHTML' or 'createElement'",
"range": [
- 516,
- 576
+ 629,
+ 689
],
"loc": {
"start": {
- "line": 20,
+ "line": 24,
"column": 8
},
"end": {
- "line": 20,
+ "line": 24,
"column": 68
}
}
@@ -1188,16 +1479,16 @@
"type": "Line",
"value": "IE only, tooltip text appearing on select before it is populated",
"range": [
- 658,
- 724
+ 771,
+ 837
],
"loc": {
"start": {
- "line": 22,
+ "line": 26,
"column": 8
},
"end": {
- "line": 22,
+ "line": 26,
"column": 74
}
}
@@ -1215,16 +1506,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 733,
- 737
+ 846,
+ 850
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 8
},
"end": {
- "line": 23,
+ "line": 27,
"column": 12
}
}
@@ -1233,31 +1524,31 @@
"type": "Identifier",
"name": "activateSlcTooltip",
"range": [
- 738,
- 756
+ 851,
+ 869
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 13
},
"end": {
- "line": 23,
+ "line": 27,
"column": 31
}
}
},
"range": [
- 733,
- 756
+ 846,
+ 869
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 8
},
"end": {
- "line": 23,
+ "line": 27,
"column": 31
}
}
@@ -1272,16 +1563,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 760,
- 761
+ 873,
+ 874
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 35
},
"end": {
- "line": 23,
+ "line": 27,
"column": 36
}
}
@@ -1290,31 +1581,31 @@
"type": "Identifier",
"name": "activate_slc_tooltip",
"range": [
- 762,
- 782
+ 875,
+ 895
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 37
},
"end": {
- "line": 23,
+ "line": 27,
"column": 57
}
}
},
"range": [
- 760,
- 782
+ 873,
+ 895
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 35
},
"end": {
- "line": 23,
+ "line": 27,
"column": 57
}
}
@@ -1324,61 +1615,61 @@
"value": "Click to activate",
"raw": "'Click to activate'",
"range": [
- 798,
- 817
+ 911,
+ 930
],
"loc": {
"start": {
- "line": 24,
+ "line": 28,
"column": 12
},
"end": {
- "line": 24,
+ "line": 28,
"column": 31
}
}
},
"range": [
- 760,
- 817
+ 873,
+ 930
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 35
},
"end": {
- "line": 24,
+ "line": 28,
"column": 31
}
}
},
"range": [
- 733,
- 817
+ 846,
+ 930
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 8
},
"end": {
- "line": 24,
+ "line": 28,
"column": 31
}
}
},
"range": [
- 733,
- 818
+ 846,
+ 931
],
"loc": {
"start": {
- "line": 23,
+ "line": 27,
"column": 8
},
"end": {
- "line": 24,
+ "line": 28,
"column": 32
}
},
@@ -1387,16 +1678,16 @@
"type": "Line",
"value": "IE only, tooltip text appearing on select before it is populated",
"range": [
- 658,
- 724
+ 771,
+ 837
],
"loc": {
"start": {
- "line": 22,
+ "line": 26,
"column": 8
},
"end": {
- "line": 22,
+ "line": 26,
"column": 74
}
}
@@ -1407,215 +1698,16 @@
"type": "Line",
"value": "tooltip text appearing on multiple select",
"range": [
- 827,
- 870
+ 940,
+ 983
],
"loc": {
"start": {
- "line": 25,
+ "line": 29,
"column": 8
},
"end": {
- "line": 25,
- "column": 51
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 879,
- 883
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 8
- },
- "end": {
- "line": 26,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "multipleSlcTooltip",
- "range": [
- 884,
- 902
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 13
- },
- "end": {
- "line": 26,
- "column": 31
- }
- }
- },
- "range": [
- 879,
- 902
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 8
- },
- "end": {
- "line": 26,
- "column": 31
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 905,
- 906
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 34
- },
- "end": {
- "line": 26,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "multiple_slc_tooltip",
- "range": [
- 907,
- 927
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 36
- },
- "end": {
- "line": 26,
- "column": 56
- }
- }
- },
- "range": [
- 905,
- 927
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 34
- },
- "end": {
- "line": 26,
- "column": 56
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Use Ctrl key for multiple selections",
- "raw": "'Use Ctrl key for multiple selections'",
- "range": [
- 943,
- 981
- ],
- "loc": {
- "start": {
- "line": 27,
- "column": 12
- },
- "end": {
- "line": 27,
- "column": 50
- }
- }
- },
- "range": [
- 905,
- 981
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 34
- },
- "end": {
- "line": 27,
- "column": 50
- }
- }
- },
- "range": [
- 879,
- 981
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 8
- },
- "end": {
- "line": 27,
- "column": 50
- }
- }
- },
- "range": [
- 879,
- 982
- ],
- "loc": {
- "start": {
- "line": 26,
- "column": 8
- },
- "end": {
- "line": 27,
- "column": 51
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "tooltip text appearing on multiple select",
- "range": [
- 827,
- 870
- ],
- "loc": {
- "start": {
- "line": 25,
- "column": 8
- },
- "end": {
- "line": 25,
+ "line": 29,
"column": 51
}
}
@@ -1638,36 +1730,175 @@
],
"loc": {
"start": {
- "line": 29,
+ "line": 30,
"column": 8
},
"end": {
- "line": 29,
+ "line": 30,
"column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "isCustom",
+ "name": "multipleSlcTooltip",
"range": [
997,
- 1005
+ 1015
],
"loc": {
"start": {
- "line": 29,
+ "line": 30,
"column": 13
},
"end": {
- "line": 29,
- "column": 21
+ "line": 30,
+ "column": 31
}
}
},
"range": [
992,
- 1005
+ 1015
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 30,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1018,
+ 1019
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 34
+ },
+ "end": {
+ "line": 30,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "multiple_slc_tooltip",
+ "range": [
+ 1020,
+ 1040
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 36
+ },
+ "end": {
+ "line": 30,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 1018,
+ 1040
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 34
+ },
+ "end": {
+ "line": 30,
+ "column": 56
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Use Ctrl key for multiple selections",
+ "raw": "'Use Ctrl key for multiple selections'",
+ "range": [
+ 1056,
+ 1094
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 12
+ },
+ "end": {
+ "line": 31,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 1018,
+ 1094
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 34
+ },
+ "end": {
+ "line": 31,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 992,
+ 1094
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 31,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 992,
+ 1095
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 31,
+ "column": 51
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "tooltip text appearing on multiple select",
+ "range": [
+ 940,
+ 983
],
"loc": {
"start": {
@@ -1676,6 +1907,66 @@
},
"end": {
"line": 29,
+ "column": 51
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1105,
+ 1109
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 8
+ },
+ "end": {
+ "line": 33,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isCustom",
+ "range": [
+ 1110,
+ 1118
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 13
+ },
+ "end": {
+ "line": 33,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 1105,
+ 1118
+ ],
+ "loc": {
+ "start": {
+ "line": 33,
+ "column": 8
+ },
+ "end": {
+ "line": 33,
"column": 21
}
}
@@ -1685,46 +1976,46 @@
"value": null,
"raw": "null",
"range": [
- 1008,
- 1012
+ 1121,
+ 1125
],
"loc": {
"start": {
- "line": 29,
+ "line": 33,
"column": 24
},
"end": {
- "line": 29,
+ "line": 33,
"column": 28
}
}
},
"range": [
- 992,
- 1012
+ 1105,
+ 1125
],
"loc": {
"start": {
- "line": 29,
+ "line": 33,
"column": 8
},
"end": {
- "line": 29,
+ "line": 33,
"column": 28
}
}
},
"range": [
- 992,
- 1013
+ 1105,
+ 1126
],
"loc": {
"start": {
- "line": 29,
+ "line": 33,
"column": 8
},
"end": {
- "line": 29,
+ "line": 33,
"column": 29
}
}
@@ -1740,16 +2031,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1022,
- 1026
+ 1135,
+ 1139
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 8
},
"end": {
- "line": 30,
+ "line": 34,
"column": 12
}
}
@@ -1758,31 +2049,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 1027,
- 1031
+ 1140,
+ 1144
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 13
},
"end": {
- "line": 30,
+ "line": 34,
"column": 17
}
}
},
"range": [
- 1022,
- 1031
+ 1135,
+ 1144
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 8
},
"end": {
- "line": 30,
+ "line": 34,
"column": 17
}
}
@@ -1792,46 +2083,46 @@
"value": null,
"raw": "null",
"range": [
- 1034,
- 1038
+ 1147,
+ 1151
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 20
},
"end": {
- "line": 30,
+ "line": 34,
"column": 24
}
}
},
"range": [
- 1022,
- 1038
+ 1135,
+ 1151
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 8
},
"end": {
- "line": 30,
+ "line": 34,
"column": 24
}
}
},
"range": [
- 1022,
- 1039
+ 1135,
+ 1152
],
"loc": {
"start": {
- "line": 30,
+ "line": 34,
"column": 8
},
"end": {
- "line": 30,
+ "line": 34,
"column": 25
}
}
@@ -1847,16 +2138,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1048,
- 1052
+ 1161,
+ 1165
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 8
},
"end": {
- "line": 31,
+ "line": 35,
"column": 12
}
}
@@ -1865,31 +2156,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 1053,
- 1060
+ 1166,
+ 1173
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 13
},
"end": {
- "line": 31,
+ "line": 35,
"column": 20
}
}
},
"range": [
- 1048,
- 1060
+ 1161,
+ 1173
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 8
},
"end": {
- "line": 31,
+ "line": 35,
"column": 20
}
}
@@ -1899,46 +2190,46 @@
"value": null,
"raw": "null",
"range": [
- 1063,
- 1067
+ 1176,
+ 1180
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 23
},
"end": {
- "line": 31,
+ "line": 35,
"column": 27
}
}
},
"range": [
- 1048,
- 1067
+ 1161,
+ 1180
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 8
},
"end": {
- "line": 31,
+ "line": 35,
"column": 27
}
}
},
"range": [
- 1048,
- 1068
+ 1161,
+ 1181
],
"loc": {
"start": {
- "line": 31,
+ "line": 35,
"column": 8
},
"end": {
- "line": 31,
+ "line": 35,
"column": 28
}
}
@@ -1954,16 +2245,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1077,
- 1081
+ 1190,
+ 1194
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 8
},
"end": {
- "line": 32,
+ "line": 36,
"column": 12
}
}
@@ -1972,31 +2263,31 @@
"type": "Identifier",
"name": "slcInnerHtml",
"range": [
- 1082,
- 1094
+ 1195,
+ 1207
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 13
},
"end": {
- "line": 32,
+ "line": 36,
"column": 25
}
}
},
"range": [
- 1077,
- 1094
+ 1190,
+ 1207
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 8
},
"end": {
- "line": 32,
+ "line": 36,
"column": 25
}
}
@@ -2006,168 +2297,62 @@
"value": null,
"raw": "null",
"range": [
- 1097,
- 1101
+ 1210,
+ 1214
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 28
},
"end": {
- "line": 32,
+ "line": 36,
"column": 32
}
}
},
"range": [
- 1077,
- 1101
+ 1190,
+ 1214
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 8
},
"end": {
- "line": 32,
+ "line": 36,
"column": 32
}
}
},
"range": [
- 1077,
- 1102
+ 1190,
+ 1215
],
"loc": {
"start": {
- "line": 32,
+ "line": 36,
"column": 8
},
"end": {
- "line": 32,
+ "line": 36,
"column": 33
}
}
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 1112,
- 1116
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 8
- },
- "end": {
- "line": 34,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1117,
- 1119
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 13
- },
- "end": {
- "line": 34,
- "column": 15
- }
- }
- },
- "range": [
- 1112,
- 1119
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 8
- },
- "end": {
- "line": 34,
- "column": 15
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1122,
- 1124
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 18
- },
- "end": {
- "line": 34,
- "column": 20
- }
- }
- },
- "range": [
- 1112,
- 1124
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 8
- },
- "end": {
- "line": 34,
- "column": 20
- }
- }
- },
- "range": [
- 1112,
- 1125
- ],
- "loc": {
- "start": {
- "line": 34,
- "column": 8
- },
- "end": {
- "line": 34,
- "column": 21
- }
- }
}
],
"range": [
- 247,
- 1131
+ 328,
+ 1221
],
"loc": {
"start": {
- "line": 12,
+ "line": 14,
"column": 19
},
"end": {
- "line": 35,
+ "line": 37,
"column": 5
}
}
@@ -2175,16 +2360,16 @@
"generator": false,
"expression": false,
"range": [
- 243,
- 1131
+ 324,
+ 1221
],
"loc": {
"start": {
- "line": 12,
+ "line": 14,
"column": 15
},
"end": {
- "line": 35,
+ "line": 37,
"column": 5
}
}
@@ -2192,16 +2377,16 @@
"kind": "constructor",
"computed": false,
"range": [
- 232,
- 1131
+ 313,
+ 1221
],
"loc": {
"start": {
- "line": 12,
+ "line": 14,
"column": 4
},
"end": {
- "line": 35,
+ "line": 37,
"column": 5
}
},
@@ -2210,36 +2395,16 @@
"type": "Block",
"value": "*\n * Dropdown UI component\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 140,
- 227
+ 221,
+ 308
],
"loc": {
"start": {
- "line": 8,
+ "line": 10,
"column": 4
},
"end": {
- "line": 11,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Build drop-down filter UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
- "range": [
- 1137,
- 1434
- ],
- "loc": {
- "start": {
- "line": 37,
- "column": 4
- },
- "end": {
- "line": 43,
+ "line": 13,
"column": 7
}
}
@@ -2251,19 +2416,19 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "build",
+ "name": "onSlcFocus",
"range": [
- 1439,
- 1444
+ 1227,
+ 1237
],
"loc": {
"start": {
- "line": 44,
+ "line": 39,
"column": 4
},
"end": {
- "line": 44,
- "column": 9
+ "line": 39,
+ "column": 14
}
}
},
@@ -2273,73 +2438,19 @@
"params": [
{
"type": "Identifier",
- "name": "colIndex",
+ "name": "e",
"range": [
- 1445,
- 1453
+ 1238,
+ 1239
],
"loc": {
"start": {
- "line": 44,
- "column": 10
+ "line": 39,
+ "column": 15
},
"end": {
- "line": 44,
- "column": 18
- }
- }
- },
- {
- "type": "Identifier",
- "name": "isLinked",
- "range": [
- 1455,
- 1463
- ],
- "loc": {
- "start": {
- "line": 44,
- "column": 20
- },
- "end": {
- "line": 44,
- "column": 28
- }
- }
- },
- {
- "type": "Identifier",
- "name": "isExternal",
- "range": [
- 1465,
- 1475
- ],
- "loc": {
- "start": {
- "line": 44,
- "column": 30
- },
- "end": {
- "line": 44,
- "column": 40
- }
- }
- },
- {
- "type": "Identifier",
- "name": "extSlcId",
- "range": [
- 1477,
- 1485
- ],
- "loc": {
- "start": {
- "line": 44,
- "column": 42
- },
- "end": {
- "line": 44,
- "column": 50
+ "line": 39,
+ "column": 16
}
}
}
@@ -2354,18 +2465,164 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "tf",
+ "name": "elm",
"range": [
- 1500,
- 1502
+ 1255,
+ 1258
],
"loc": {
"start": {
- "line": 45,
+ "line": 40,
"column": 12
},
"end": {
- "line": 45,
+ "line": 40,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 1261,
+ 1266
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 18
+ },
+ "end": {
+ "line": 40,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "target",
+ "range": [
+ 1267,
+ 1273
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 1261,
+ 1273
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 18
+ },
+ "end": {
+ "line": 40,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "e",
+ "range": [
+ 1274,
+ 1275
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 31
+ },
+ "end": {
+ "line": 40,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 1261,
+ 1276
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 18
+ },
+ "end": {
+ "line": 40,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1255,
+ 1276
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 12
+ },
+ "end": {
+ "line": 40,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1251,
+ 1277
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 40,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1290,
+ 1292
+ ],
+ "loc": {
+ "start": {
+ "line": 41,
+ "column": 12
+ },
+ "end": {
+ "line": 41,
"column": 14
}
}
@@ -2376,16 +2633,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1505,
- 1509
+ 1295,
+ 1299
],
"loc": {
"start": {
- "line": 45,
+ "line": 41,
"column": 17
},
"end": {
- "line": 45,
+ "line": 41,
"column": 21
}
}
@@ -2394,55 +2651,964 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1510,
- 1512
+ 1300,
+ 1302
],
"loc": {
"start": {
- "line": 45,
+ "line": 41,
"column": 22
},
"end": {
- "line": 45,
+ "line": 41,
"column": 24
}
}
},
"range": [
- 1505,
- 1512
+ 1295,
+ 1302
],
"loc": {
"start": {
- "line": 45,
+ "line": 41,
"column": 17
},
"end": {
- "line": 45,
+ "line": 41,
"column": 24
}
}
},
"range": [
- 1500,
- 1512
+ 1290,
+ 1302
],
"loc": {
"start": {
- "line": 45,
+ "line": 41,
"column": 12
},
"end": {
- "line": 45,
+ "line": 41,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1496,
- 1513
+ 1286,
+ 1303
+ ],
+ "loc": {
+ "start": {
+ "line": 41,
+ "column": 8
+ },
+ "end": {
+ "line": 41,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1312,
+ 1314
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 8
+ },
+ "end": {
+ "line": 42,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFilterId",
+ "range": [
+ 1315,
+ 1329
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 11
+ },
+ "end": {
+ "line": 42,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1312,
+ 1329
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 8
+ },
+ "end": {
+ "line": 42,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 1332,
+ 1335
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 28
+ },
+ "end": {
+ "line": 42,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 1336,
+ 1348
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 32
+ },
+ "end": {
+ "line": 42,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 1332,
+ 1348
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 28
+ },
+ "end": {
+ "line": 42,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
+ "range": [
+ 1349,
+ 1353
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 45
+ },
+ "end": {
+ "line": 42,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 1332,
+ 1354
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 28
+ },
+ "end": {
+ "line": 42,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 1312,
+ 1354
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 8
+ },
+ "end": {
+ "line": 42,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 1312,
+ 1355
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 8
+ },
+ "end": {
+ "line": 42,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1364,
+ 1366
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFlt",
+ "range": [
+ 1367,
+ 1376
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 11
+ },
+ "end": {
+ "line": 43,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 1364,
+ 1376
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 1379,
+ 1382
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 23
+ },
+ "end": {
+ "line": 43,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 1383,
+ 1385
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 27
+ },
+ "end": {
+ "line": 43,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1379,
+ 1385
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 23
+ },
+ "end": {
+ "line": 43,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1386,
+ 1388
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 30
+ },
+ "end": {
+ "line": 43,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFilterId",
+ "range": [
+ 1389,
+ 1403
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 33
+ },
+ "end": {
+ "line": 43,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 1386,
+ 1403
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 30
+ },
+ "end": {
+ "line": 43,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 1379,
+ 1404
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 23
+ },
+ "end": {
+ "line": 43,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 1364,
+ 1404
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 1364,
+ 1405
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 49
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " select is populated when element has focus",
+ "range": [
+ 1414,
+ 1459
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 53
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1471,
+ 1473
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 11
+ },
+ "end": {
+ "line": 45,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 1474,
+ 1489
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 14
+ },
+ "end": {
+ "line": 45,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1471,
+ 1489
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 11
+ },
+ "end": {
+ "line": 45,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 1493,
+ 1496
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 33
+ },
+ "end": {
+ "line": 45,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 1497,
+ 1509
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 37
+ },
+ "end": {
+ "line": 45,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 1493,
+ 1509
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 33
+ },
+ "end": {
+ "line": 45,
+ "column": 49
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "filled",
+ "raw": "'filled'",
+ "range": [
+ 1510,
+ 1518
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 50
+ },
+ "end": {
+ "line": 45,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 1493,
+ 1519
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 33
+ },
+ "end": {
+ "line": 45,
+ "column": 59
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "0",
+ "raw": "'0'",
+ "range": [
+ 1524,
+ 1527
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 64
+ },
+ "end": {
+ "line": 45,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1493,
+ 1527
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 33
+ },
+ "end": {
+ "line": 45,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1471,
+ 1527
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 11
+ },
+ "end": {
+ "line": 45,
+ "column": 67
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "ct",
+ "range": [
+ 1546,
+ 1548
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 18
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 1551,
+ 1554
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 21
+ },
+ "end": {
+ "line": 46,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getAttribute",
+ "range": [
+ 1555,
+ 1567
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 25
+ },
+ "end": {
+ "line": 46,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1551,
+ 1567
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 21
+ },
+ "end": {
+ "line": 46,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
+ "range": [
+ 1568,
+ 1572
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 38
+ },
+ "end": {
+ "line": 46,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 1551,
+ 1573
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 21
+ },
+ "end": {
+ "line": 46,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 1546,
+ 1573
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1542,
+ 1574
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 12
+ },
+ "end": {
+ "line": 46,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1587,
+ 1591
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 1592,
+ 1597
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 17
+ },
+ "end": {
+ "line": 47,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 1587,
+ 1597
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "ct",
+ "range": [
+ 1598,
+ 1600
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 23
+ },
+ "end": {
+ "line": 47,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "range": [
+ 1587,
+ 1601
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 1587,
+ 1602
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "range": [
+ 1528,
+ 1612
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 68
+ },
+ "end": {
+ "line": 48,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 1468,
+ 1612
],
"loc": {
"start": {
@@ -2450,10 +3616,30 @@
"column": 8
},
"end": {
- "line": 45,
- "column": 25
+ "line": 48,
+ "column": 9
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " select is populated when element has focus",
+ "range": [
+ 1414,
+ 1459
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 53
+ }
+ }
+ }
+ ]
},
{
"type": "ExpressionStatement",
@@ -2463,473 +3649,189 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1522,
- 1524
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 1525,
- 1535
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 11
- },
- "end": {
- "line": 46,
- "column": 21
- }
- }
- },
- "range": [
- 1522,
- 1535
- ],
- "loc": {
- "start": {
- "line": 46,
- "column": 8
- },
- "end": {
- "line": 46,
- "column": 21
- }
- }
- },
- "arguments": [
- {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 1549,
- 1551
- ],
- "loc": {
- "start": {
- "line": 47,
- "column": 12
- },
- "end": {
- "line": 47,
- "column": 14
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 1552,
- 1555
- ],
- "loc": {
- "start": {
- "line": 47,
- "column": 15
- },
- "end": {
- "line": 47,
- "column": 18
- }
- }
- },
- "range": [
- 1549,
- 1555
- ],
- "loc": {
- "start": {
- "line": 47,
- "column": 12
- },
- "end": {
- "line": 47,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 1556,
- 1560
- ],
- "loc": {
- "start": {
- "line": 47,
- "column": 19
- },
- "end": {
- "line": 47,
- "column": 23
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 1549,
- 1560
+ 1621,
+ 1625
],
"loc": {
"start": {
- "line": 47,
- "column": 12
+ "line": 49,
+ "column": 8
},
"end": {
- "line": 47,
- "column": 23
+ "line": 49,
+ "column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "dropdown",
+ "name": "emitter",
"range": [
- 1561,
- 1569
+ 1626,
+ 1633
],
"loc": {
"start": {
- "line": 47,
- "column": 24
+ "line": 49,
+ "column": 13
},
"end": {
- "line": 47,
- "column": 32
+ "line": 49,
+ "column": 20
}
}
},
"range": [
- 1549,
- 1569
+ 1621,
+ 1633
],
"loc": {
"start": {
- "line": 47,
- "column": 12
+ "line": 49,
+ "column": 8
},
"end": {
- "line": 47,
- "column": 32
+ "line": 49,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 1634,
+ 1638
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 21
+ },
+ "end": {
+ "line": 49,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1621,
+ 1638
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "filter-focus",
+ "raw": "'filter-focus'",
+ "range": [
+ 1639,
+ 1653
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 26
+ },
+ "end": {
+ "line": 49,
+ "column": 40
}
}
},
{
- "type": "ObjectExpression",
- "properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 1601,
- 1609
- ],
- "loc": {
- "start": {
- "line": 49,
- "column": 16
- },
- "end": {
- "line": 49,
- "column": 24
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 1611,
- 1619
- ],
- "loc": {
- "start": {
- "line": 49,
- "column": 26
- },
- "end": {
- "line": 49,
- "column": 34
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 1601,
- 1619
- ],
- "loc": {
- "start": {
- "line": 49,
- "column": 16
- },
- "end": {
- "line": 49,
- "column": 34
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcRefreshed",
- "range": [
- 1637,
- 1649
- ],
- "loc": {
- "start": {
- "line": 50,
- "column": 16
- },
- "end": {
- "line": 50,
- "column": 28
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "isLinked",
- "range": [
- 1651,
- 1659
- ],
- "loc": {
- "start": {
- "line": 50,
- "column": 30
- },
- "end": {
- "line": 50,
- "column": 38
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 1637,
- 1659
- ],
- "loc": {
- "start": {
- "line": 50,
- "column": 16
- },
- "end": {
- "line": 50,
- "column": 38
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 1677,
- 1688
- ],
- "loc": {
- "start": {
- "line": 51,
- "column": 16
- },
- "end": {
- "line": 51,
- "column": 27
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "isExternal",
- "range": [
- 1690,
- 1700
- ],
- "loc": {
- "start": {
- "line": 51,
- "column": 29
- },
- "end": {
- "line": 51,
- "column": 39
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 1677,
- 1700
- ],
- "loc": {
- "start": {
- "line": 51,
- "column": 16
- },
- "end": {
- "line": 51,
- "column": 39
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 1718,
- 1723
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 16
- },
- "end": {
- "line": 52,
- "column": 21
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "extSlcId",
- "range": [
- 1725,
- 1733
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 23
- },
- "end": {
- "line": 52,
- "column": 31
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 1718,
- 1733
- ],
- "loc": {
- "start": {
- "line": 52,
- "column": 16
- },
- "end": {
- "line": 52,
- "column": 31
- }
- }
- }
- ],
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 1583,
- 1747
+ 1655,
+ 1657
],
"loc": {
"start": {
- "line": 48,
- "column": 12
+ "line": 49,
+ "column": 42
},
"end": {
- "line": 53,
- "column": 13
+ "line": 49,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 1659,
+ 1663
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 46
+ },
+ "end": {
+ "line": 49,
+ "column": 50
}
}
}
],
"range": [
- 1522,
- 1757
+ 1621,
+ 1664
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 8
},
"end": {
- "line": 54,
- "column": 9
+ "line": 49,
+ "column": 51
}
}
},
"range": [
- 1522,
- 1758
+ 1621,
+ 1665
],
"loc": {
"start": {
- "line": 46,
+ "line": 49,
"column": 8
},
"end": {
- "line": 54,
- "column": 10
+ "line": 49,
+ "column": 52
}
}
}
],
"range": [
- 1486,
- 1764
+ 1241,
+ 1671
],
"loc": {
"start": {
- "line": 44,
- "column": 51
+ "line": 39,
+ "column": 18
},
"end": {
- "line": 55,
+ "line": 50,
"column": 5
}
}
@@ -2937,16 +3839,16 @@
"generator": false,
"expression": false,
"range": [
- 1444,
- 1764
+ 1237,
+ 1671
],
"loc": {
"start": {
- "line": 44,
- "column": 9
+ "line": 39,
+ "column": 14
},
"end": {
- "line": 55,
+ "line": 50,
"column": 5
}
}
@@ -2954,50 +3856,358 @@
"kind": "method",
"computed": false,
"range": [
- 1439,
- 1764
+ 1227,
+ 1671
],
"loc": {
"start": {
- "line": 44,
+ "line": 39,
"column": 4
},
"end": {
- "line": 55,
+ "line": 50,
"column": 5
}
},
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Build drop-down filter UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "onSlcChange",
+ "range": [
+ 1677,
+ 1688
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 4
+ },
+ "end": {
+ "line": 52,
+ "column": 15
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1704,
+ 1708
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 11
+ },
+ "end": {
+ "line": 53,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1709,
+ 1711
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 16
+ },
+ "end": {
+ "line": 53,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 1704,
+ 1711
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 11
+ },
+ "end": {
+ "line": 53,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onSlcChange",
+ "range": [
+ 1712,
+ 1723
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 19
+ },
+ "end": {
+ "line": 53,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 1704,
+ 1723
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 11
+ },
+ "end": {
+ "line": 53,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1738,
+ 1742
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1743,
+ 1745
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 17
+ },
+ "end": {
+ "line": 54,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 1738,
+ 1745
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filter",
+ "range": [
+ 1746,
+ 1752
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 20
+ },
+ "end": {
+ "line": 54,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 1738,
+ 1752
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 1738,
+ 1754
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1738,
+ 1755
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 1724,
+ 1765
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 31
+ },
+ "end": {
+ "line": 55,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 1701,
+ 1765
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 8
+ },
+ "end": {
+ "line": 55,
+ "column": 9
+ }
+ }
+ }
+ ],
"range": [
- 1137,
- 1434
+ 1691,
+ 1771
],
"loc": {
"start": {
- "line": 37,
- "column": 4
+ "line": 52,
+ "column": 18
},
"end": {
- "line": 43,
- "column": 7
+ "line": 56,
+ "column": 5
}
}
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 1688,
+ 1771
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 15
+ },
+ "end": {
+ "line": 56,
+ "column": 5
+ }
}
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 1677,
+ 1771
],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 4
+ },
+ "end": {
+ "line": 56,
+ "column": 5
+ }
+ },
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "value": "*\n * Initialize drop-down filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
"range": [
- 1770,
- 2055
+ 1777,
+ 2008
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 4
},
"end": {
@@ -3013,10 +4223,10 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "_build",
+ "name": "init",
"range": [
- 2060,
- 2066
+ 2013,
+ 2017
],
"loc": {
"start": {
@@ -3025,7 +4235,7 @@
},
"end": {
"line": 64,
- "column": 10
+ "column": 8
}
}
},
@@ -3037,179 +4247,53 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2067,
- 2075
+ 2018,
+ 2026
],
"loc": {
"start": {
"line": 64,
- "column": 11
+ "column": 9
},
"end": {
+ "line": 64,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 2028,
+ 2038
+ ],
+ "loc": {
+ "start": {
"line": 64,
"column": 19
+ },
+ "end": {
+ "line": 64,
+ "column": 29
}
}
},
{
- "type": "AssignmentPattern",
- "left": {
- "type": "Identifier",
- "name": "isLinked",
- "range": [
- 2077,
- 2085
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 21
- },
- "end": {
- "line": 64,
- "column": 29
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 2086,
- 2091
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 30
- },
- "end": {
- "line": 64,
- "column": 35
- }
- }
- },
+ "type": "Identifier",
+ "name": "container",
"range": [
- 2077,
- 2091
+ 2040,
+ 2049
],
"loc": {
"start": {
"line": 64,
- "column": 21
+ "column": 31
},
"end": {
"line": 64,
- "column": 35
- }
- }
- },
- {
- "type": "AssignmentPattern",
- "left": {
- "type": "Identifier",
- "name": "isExternal",
- "range": [
- 2093,
- 2103
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 37
- },
- "end": {
- "line": 64,
- "column": 47
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 2104,
- 2109
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 48
- },
- "end": {
- "line": 64,
- "column": 53
- }
- }
- },
- "range": [
- 2093,
- 2109
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 37
- },
- "end": {
- "line": 64,
- "column": 53
- }
- }
- },
- {
- "type": "AssignmentPattern",
- "left": {
- "type": "Identifier",
- "name": "extSlcId",
- "range": [
- 2111,
- 2119
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 55
- },
- "end": {
- "line": 64,
- "column": 63
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 2120,
- 2124
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 64
- },
- "end": {
- "line": 64,
- "column": 68
- }
- }
- },
- "range": [
- 2111,
- 2124
- ],
- "loc": {
- "start": {
- "line": 64,
- "column": 55
- },
- "end": {
- "line": 64,
- "column": 68
+ "column": 40
}
}
}
@@ -3226,8 +4310,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2139,
- 2141
+ 2064,
+ 2066
],
"loc": {
"start": {
@@ -3246,8 +4330,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2144,
- 2148
+ 2069,
+ 2073
],
"loc": {
"start": {
@@ -3264,8 +4348,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2149,
- 2151
+ 2074,
+ 2076
],
"loc": {
"start": {
@@ -3279,8 +4363,8 @@
}
},
"range": [
- 2144,
- 2151
+ 2069,
+ 2076
],
"loc": {
"start": {
@@ -3294,8 +4378,8 @@
}
},
"range": [
- 2139,
- 2151
+ 2064,
+ 2076
],
"loc": {
"start": {
@@ -3309,10 +4393,10 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2135,
- 2152
+ 2060,
+ 2077
],
"loc": {
"start": {
@@ -3326,120 +4410,139 @@
}
},
{
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 2161,
- 2169
- ],
- "loc": {
- "start": {
- "line": 66,
- "column": 8
- },
- "end": {
- "line": 66,
- "column": 16
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
"type": "Identifier",
- "name": "parseInt",
+ "name": "col",
"range": [
- 2172,
- 2180
+ 2090,
+ 2093
],
"loc": {
"start": {
"line": 66,
- "column": 19
+ "column": 12
},
"end": {
"line": 66,
- "column": 27
+ "column": 15
}
}
},
- "arguments": [
- {
- "type": "Identifier",
- "name": "colIndex",
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2096,
+ 2098
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 18
+ },
+ "end": {
+ "line": 66,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 2099,
+ 2112
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 21
+ },
+ "end": {
+ "line": 66,
+ "column": 34
+ }
+ }
+ },
"range": [
- 2181,
- 2189
+ 2096,
+ 2112
],
"loc": {
"start": {
"line": 66,
- "column": 28
+ "column": 18
},
"end": {
"line": 66,
- "column": 36
+ "column": 34
}
}
},
- {
- "type": "Literal",
- "value": 10,
- "raw": "10",
- "range": [
- 2191,
- 2193
- ],
- "loc": {
- "start": {
- "line": 66,
- "column": 38
- },
- "end": {
- "line": 66,
- "column": 40
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2113,
+ 2121
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 35
+ },
+ "end": {
+ "line": 66,
+ "column": 43
+ }
}
}
+ ],
+ "range": [
+ 2096,
+ 2122
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 18
+ },
+ "end": {
+ "line": 66,
+ "column": 44
+ }
}
- ],
+ },
"range": [
- 2172,
- 2194
+ 2090,
+ 2122
],
"loc": {
"start": {
"line": 66,
- "column": 19
+ "column": 12
},
"end": {
"line": 66,
- "column": 41
+ "column": 44
}
}
- },
- "range": [
- 2161,
- 2194
- ],
- "loc": {
- "start": {
- "line": 66,
- "column": 8
- },
- "end": {
- "line": 66,
- "column": 41
- }
}
- },
+ ],
+ "kind": "let",
"range": [
- 2161,
- 2195
+ 2086,
+ 2123
],
"loc": {
"start": {
@@ -3448,7 +4551,4023 @@
},
"end": {
"line": 66,
- "column": 42
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 2136,
+ 2152
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 12
+ },
+ "end": {
+ "line": 67,
+ "column": 28
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 2155,
+ 2165
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 31
+ },
+ "end": {
+ "line": 67,
+ "column": 41
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2180,
+ 2182
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltTgtIds",
+ "range": [
+ 2183,
+ 2200
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 15
+ },
+ "end": {
+ "line": 68,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2180,
+ 2200
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2201,
+ 2209
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 33
+ },
+ "end": {
+ "line": 68,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 2180,
+ 2210
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 42
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 2213,
+ 2217
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 45
+ },
+ "end": {
+ "line": 68,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 2155,
+ 2217
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 31
+ },
+ "end": {
+ "line": 68,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 2136,
+ 2217
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 12
+ },
+ "end": {
+ "line": 68,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2132,
+ 2218
+ ],
+ "loc": {
+ "start": {
+ "line": 67,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2232,
+ 2235
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 12
+ },
+ "end": {
+ "line": 70,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 2238,
+ 2241
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 18
+ },
+ "end": {
+ "line": 70,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "create",
+ "range": [
+ 2242,
+ 2248
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 22
+ },
+ "end": {
+ "line": 70,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 2238,
+ 2248
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 18
+ },
+ "end": {
+ "line": 70,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2249,
+ 2251
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 29
+ },
+ "end": {
+ "line": 70,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeSlc",
+ "range": [
+ 2252,
+ 2262
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 32
+ },
+ "end": {
+ "line": 70,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2249,
+ 2262
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 29
+ },
+ "end": {
+ "line": 70,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
+ "range": [
+ 2277,
+ 2281
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 13
+ },
+ "end": {
+ "line": 71,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2283,
+ 2285
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxFlt",
+ "range": [
+ 2286,
+ 2293
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 22
+ },
+ "end": {
+ "line": 71,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 2283,
+ 2293
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2294,
+ 2302
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 30
+ },
+ "end": {
+ "line": 71,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 2283,
+ 2302
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 38
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "_",
+ "raw": "'_'",
+ "range": [
+ 2303,
+ 2306
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 39
+ },
+ "end": {
+ "line": 71,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2283,
+ 2306
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 42
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2307,
+ 2309
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 43
+ },
+ "end": {
+ "line": 71,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 2310,
+ 2312
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 46
+ },
+ "end": {
+ "line": 71,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2307,
+ 2312
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 43
+ },
+ "end": {
+ "line": 71,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2283,
+ 2312
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 2276,
+ 2313
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 12
+ },
+ "end": {
+ "line": 71,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
+ "range": [
+ 2328,
+ 2332
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 13
+ },
+ "end": {
+ "line": 72,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2334,
+ 2342
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 19
+ },
+ "end": {
+ "line": 72,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "range": [
+ 2327,
+ 2343
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 12
+ },
+ "end": {
+ "line": 72,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filled",
+ "raw": "'filled'",
+ "range": [
+ 2346,
+ 2354
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 31
+ },
+ "end": {
+ "line": 72,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "0",
+ "raw": "'0'",
+ "range": [
+ 2356,
+ 2359
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 41
+ },
+ "end": {
+ "line": 72,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 2345,
+ 2360
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 30
+ },
+ "end": {
+ "line": 72,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 2238,
+ 2370
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 18
+ },
+ "end": {
+ "line": 73,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2232,
+ 2370
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 12
+ },
+ "end": {
+ "line": 73,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2228,
+ 2371
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 8
+ },
+ "end": {
+ "line": 73,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 2384,
+ 2387
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 11
+ },
+ "end": {
+ "line": 75,
+ "column": 14
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2392,
+ 2394
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 19
+ },
+ "end": {
+ "line": 75,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeMulti",
+ "range": [
+ 2395,
+ 2407
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 22
+ },
+ "end": {
+ "line": 75,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2392,
+ 2407
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 19
+ },
+ "end": {
+ "line": 75,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2384,
+ 2407
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 11
+ },
+ "end": {
+ "line": 75,
+ "column": 34
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2422,
+ 2425
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 12
+ },
+ "end": {
+ "line": 76,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "multiple",
+ "range": [
+ 2426,
+ 2434
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 16
+ },
+ "end": {
+ "line": 76,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 2422,
+ 2434
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 12
+ },
+ "end": {
+ "line": 76,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2437,
+ 2439
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 27
+ },
+ "end": {
+ "line": 76,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeMulti",
+ "range": [
+ 2440,
+ 2452
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 30
+ },
+ "end": {
+ "line": 76,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2437,
+ 2452
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 27
+ },
+ "end": {
+ "line": 76,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2422,
+ 2452
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 12
+ },
+ "end": {
+ "line": 76,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 2422,
+ 2453
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 12
+ },
+ "end": {
+ "line": 76,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2466,
+ 2469
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 12
+ },
+ "end": {
+ "line": 77,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "title",
+ "range": [
+ 2470,
+ 2475
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 16
+ },
+ "end": {
+ "line": 77,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2466,
+ 2475
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 12
+ },
+ "end": {
+ "line": 77,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2478,
+ 2482
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 24
+ },
+ "end": {
+ "line": 77,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "multipleSlcTooltip",
+ "range": [
+ 2483,
+ 2501
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 29
+ },
+ "end": {
+ "line": 77,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 2478,
+ 2501
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 24
+ },
+ "end": {
+ "line": 77,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 2466,
+ 2501
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 12
+ },
+ "end": {
+ "line": 77,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 2466,
+ 2502
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 12
+ },
+ "end": {
+ "line": 77,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 2408,
+ 2512
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 35
+ },
+ "end": {
+ "line": 78,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 2381,
+ 2512
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 8
+ },
+ "end": {
+ "line": 78,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2521,
+ 2524
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "className",
+ "range": [
+ 2525,
+ 2534
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 12
+ },
+ "end": {
+ "line": 79,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2521,
+ 2534
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Str",
+ "range": [
+ 2537,
+ 2540
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 24
+ },
+ "end": {
+ "line": 79,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "lower",
+ "range": [
+ 2541,
+ 2546
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 28
+ },
+ "end": {
+ "line": 79,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 2537,
+ 2546
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 24
+ },
+ "end": {
+ "line": 79,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 2547,
+ 2550
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 34
+ },
+ "end": {
+ "line": 79,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 2537,
+ 2551
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 24
+ },
+ "end": {
+ "line": 79,
+ "column": 38
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2556,
+ 2558
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 43
+ },
+ "end": {
+ "line": 79,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeSlc",
+ "range": [
+ 2559,
+ 2569
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 46
+ },
+ "end": {
+ "line": 79,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 2556,
+ 2569
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 43
+ },
+ "end": {
+ "line": 79,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 2537,
+ 2569
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 24
+ },
+ "end": {
+ "line": 79,
+ "column": 56
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2584,
+ 2586
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltCssClass",
+ "range": [
+ 2587,
+ 2598
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 15
+ },
+ "end": {
+ "line": 80,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2584,
+ 2598
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 26
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2601,
+ 2603
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 29
+ },
+ "end": {
+ "line": 80,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltMultiCssClass",
+ "range": [
+ 2604,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 32
+ },
+ "end": {
+ "line": 80,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2601,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 29
+ },
+ "end": {
+ "line": 80,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2537,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 24
+ },
+ "end": {
+ "line": 80,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2521,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2521,
+ 2621
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 49
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in container element",
+ "range": [
+ 2631,
+ 2672
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 49
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 2684,
+ 2700
+ ],
+ "loc": {
+ "start": {
+ "line": 83,
+ "column": 11
+ },
+ "end": {
+ "line": 83,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 2715,
+ 2718
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 2719,
+ 2721
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 16
+ },
+ "end": {
+ "line": 84,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2715,
+ 2721
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 2722,
+ 2738
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 19
+ },
+ "end": {
+ "line": 84,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 2715,
+ 2739
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 2740,
+ 2751
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 37
+ },
+ "end": {
+ "line": 84,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2715,
+ 2751
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2752,
+ 2755
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 49
+ },
+ "end": {
+ "line": 84,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 2715,
+ 2756
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2715,
+ 2757
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 12
+ },
+ "end": {
+ "line": 84,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2770,
+ 2772
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltEls",
+ "range": [
+ 2773,
+ 2787
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 15
+ },
+ "end": {
+ "line": 85,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 2770,
+ 2787
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 2788,
+ 2792
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 30
+ },
+ "end": {
+ "line": 85,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2770,
+ 2792
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 34
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2793,
+ 2796
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 35
+ },
+ "end": {
+ "line": 85,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 2770,
+ 2797
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 2770,
+ 2798
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 12
+ },
+ "end": {
+ "line": 85,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 2701,
+ 2808
+ ],
+ "loc": {
+ "start": {
+ "line": 83,
+ "column": 28
+ },
+ "end": {
+ "line": 86,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 2828,
+ 2837
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 12
+ },
+ "end": {
+ "line": 87,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 2838,
+ 2849
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 22
+ },
+ "end": {
+ "line": 87,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 2828,
+ 2849
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 12
+ },
+ "end": {
+ "line": 87,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2850,
+ 2853
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 34
+ },
+ "end": {
+ "line": 87,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 2828,
+ 2854
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 12
+ },
+ "end": {
+ "line": 87,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 2828,
+ 2855
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 12
+ },
+ "end": {
+ "line": 87,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 2814,
+ 2865
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 15
+ },
+ "end": {
+ "line": 88,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2681,
+ 2865
+ ],
+ "loc": {
+ "start": {
+ "line": 83,
+ "column": 8
+ },
+ "end": {
+ "line": 88,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in container element",
+ "range": [
+ 2631,
+ 2672
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 49
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2875,
+ 2877
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 90,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltIds",
+ "range": [
+ 2878,
+ 2884
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 11
+ },
+ "end": {
+ "line": 90,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 2875,
+ 2884
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 90,
+ "column": 17
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 2885,
+ 2889
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 18
+ },
+ "end": {
+ "line": 90,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 2875,
+ 2889
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 90,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 2890,
+ 2893
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 23
+ },
+ "end": {
+ "line": 90,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 2894,
+ 2896
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 27
+ },
+ "end": {
+ "line": 90,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 2890,
+ 2896
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 23
+ },
+ "end": {
+ "line": 90,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 2875,
+ 2897
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 90,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2875,
+ 2898
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 8
+ },
+ "end": {
+ "line": 90,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2912,
+ 2914
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 2915,
+ 2930
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 15
+ },
+ "end": {
+ "line": 92,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2912,
+ 2930
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 12
+ },
+ "end": {
+ "line": 92,
+ "column": 30
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 2911,
+ 2930
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 11
+ },
+ "end": {
+ "line": 92,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2945,
+ 2949
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 12
+ },
+ "end": {
+ "line": 93,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 2950,
+ 2955
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 17
+ },
+ "end": {
+ "line": 93,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 2945,
+ 2955
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 12
+ },
+ "end": {
+ "line": 93,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 2956,
+ 2964
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 23
+ },
+ "end": {
+ "line": 93,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "range": [
+ 2945,
+ 2965
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 12
+ },
+ "end": {
+ "line": 93,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2945,
+ 2966
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 12
+ },
+ "end": {
+ "line": 93,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 2931,
+ 2976
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 31
+ },
+ "end": {
+ "line": 94,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "opt0",
+ "range": [
+ 3067,
+ 3071
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 16
+ },
+ "end": {
+ "line": 96,
+ "column": 20
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 3074,
+ 3077
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 23
+ },
+ "end": {
+ "line": 96,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "createOpt",
+ "range": [
+ 3078,
+ 3087
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 27
+ },
+ "end": {
+ "line": 96,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 3074,
+ 3087
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 23
+ },
+ "end": {
+ "line": 96,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3088,
+ 3090
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 37
+ },
+ "end": {
+ "line": 96,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "displayAllText",
+ "range": [
+ 3091,
+ 3105
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 40
+ },
+ "end": {
+ "line": 96,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 3088,
+ 3105
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 37
+ },
+ "end": {
+ "line": 96,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 3107,
+ 3109
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 56
+ },
+ "end": {
+ "line": 96,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 3074,
+ 3110
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 23
+ },
+ "end": {
+ "line": 96,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 3067,
+ 3110
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 16
+ },
+ "end": {
+ "line": 96,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 3063,
+ 3111
+ ],
+ "loc": {
+ "start": {
+ "line": 96,
+ "column": 12
+ },
+ "end": {
+ "line": 96,
+ "column": 60
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "1st option is created here since build isn't invoked",
+ "range": [
+ 2996,
+ 3050
+ ],
+ "loc": {
+ "start": {
+ "line": 95,
+ "column": 12
+ },
+ "end": {
+ "line": 95,
+ "column": 66
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 3124,
+ 3127
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 12
+ },
+ "end": {
+ "line": 97,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 3128,
+ 3139
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 16
+ },
+ "end": {
+ "line": 97,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 3124,
+ 3139
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 12
+ },
+ "end": {
+ "line": 97,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "opt0",
+ "range": [
+ 3140,
+ 3144
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 28
+ },
+ "end": {
+ "line": 97,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 3124,
+ 3145
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 12
+ },
+ "end": {
+ "line": 97,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 3124,
+ 3146
+ ],
+ "loc": {
+ "start": {
+ "line": 97,
+ "column": 12
+ },
+ "end": {
+ "line": 97,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 2982,
+ 3156
+ ],
+ "loc": {
+ "start": {
+ "line": 94,
+ "column": 15
+ },
+ "end": {
+ "line": 98,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2908,
+ 3156
+ ],
+ "loc": {
+ "start": {
+ "line": 92,
+ "column": 8
+ },
+ "end": {
+ "line": 98,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 3166,
+ 3171
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 8
+ },
+ "end": {
+ "line": 100,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 3172,
+ 3175
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 14
+ },
+ "end": {
+ "line": 100,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 3166,
+ 3175
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 8
+ },
+ "end": {
+ "line": 100,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 3176,
+ 3179
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 18
+ },
+ "end": {
+ "line": 100,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "change",
+ "raw": "'change'",
+ "range": [
+ 3181,
+ 3189
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 23
+ },
+ "end": {
+ "line": 100,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3196,
+ 3200
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 38
+ },
+ "end": {
+ "line": 100,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onSlcChange",
+ "range": [
+ 3201,
+ 3212
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 43
+ },
+ "end": {
+ "line": 100,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 3196,
+ 3212
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 38
+ },
+ "end": {
+ "line": 100,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3196,
+ 3214
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 38
+ },
+ "end": {
+ "line": 100,
+ "column": 56
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3191,
+ 3214
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 33
+ },
+ "end": {
+ "line": 100,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 3166,
+ 3215
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 8
+ },
+ "end": {
+ "line": 100,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 3166,
+ 3216
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 8
+ },
+ "end": {
+ "line": 100,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 3225,
+ 3230
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 8
+ },
+ "end": {
+ "line": 101,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 3231,
+ 3234
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 14
+ },
+ "end": {
+ "line": 101,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 3225,
+ 3234
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 8
+ },
+ "end": {
+ "line": 101,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 3235,
+ 3238
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 18
+ },
+ "end": {
+ "line": 101,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "focus",
+ "raw": "'focus'",
+ "range": [
+ 3240,
+ 3247
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 23
+ },
+ "end": {
+ "line": 101,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "e",
+ "range": [
+ 3250,
+ 3251
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 33
+ },
+ "end": {
+ "line": 101,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3255,
+ 3259
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 38
+ },
+ "end": {
+ "line": 101,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onSlcFocus",
+ "range": [
+ 3260,
+ 3270
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 43
+ },
+ "end": {
+ "line": 101,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 3255,
+ 3270
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 38
+ },
+ "end": {
+ "line": 101,
+ "column": 53
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "e",
+ "range": [
+ 3271,
+ 3272
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 54
+ },
+ "end": {
+ "line": 101,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 3255,
+ 3273
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 38
+ },
+ "end": {
+ "line": 101,
+ "column": 56
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3249,
+ 3273
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 32
+ },
+ "end": {
+ "line": 101,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 3225,
+ 3274
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 8
+ },
+ "end": {
+ "line": 101,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 3225,
+ 3275
+ ],
+ "loc": {
+ "start": {
+ "line": 101,
+ "column": 8
+ },
+ "end": {
+ "line": 101,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3285,
+ 3289
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 8
+ },
+ "end": {
+ "line": 103,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3290,
+ 3297
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 13
+ },
+ "end": {
+ "line": 103,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3285,
+ 3297
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 8
+ },
+ "end": {
+ "line": 103,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3298,
+ 3300
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 21
+ },
+ "end": {
+ "line": 103,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3285,
+ 3300
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 8
+ },
+ "end": {
+ "line": 103,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "build-select-filter",
+ "raw": "'build-select-filter'",
+ "range": [
+ 3315,
+ 3336
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 13
+ },
+ "end": {
+ "line": 104,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 3314,
+ 3337
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3352,
+ 3354
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 13
+ },
+ "end": {
+ "line": 105,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3356,
+ 3364
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 17
+ },
+ "end": {
+ "line": 105,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isLinked",
+ "range": [
+ 3366,
+ 3374
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 27
+ },
+ "end": {
+ "line": 105,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 3376,
+ 3386
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 37
+ },
+ "end": {
+ "line": 105,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3406,
+ 3410
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 16
+ },
+ "end": {
+ "line": 106,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 3411,
+ 3416
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 21
+ },
+ "end": {
+ "line": 106,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 3406,
+ 3416
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 16
+ },
+ "end": {
+ "line": 106,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3417,
+ 3425
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 27
+ },
+ "end": {
+ "line": 106,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isLinked",
+ "range": [
+ 3427,
+ 3435
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 37
+ },
+ "end": {
+ "line": 106,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 3437,
+ 3447
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 47
+ },
+ "end": {
+ "line": 106,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "range": [
+ 3406,
+ 3448
+ ],
+ "loc": {
+ "start": {
+ "line": 106,
+ "column": 16
+ },
+ "end": {
+ "line": 106,
+ "column": 58
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3351,
+ 3448
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 12
+ },
+ "end": {
+ "line": 106,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 3285,
+ 3458
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 8
+ },
+ "end": {
+ "line": 107,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3285,
+ 3459
+ ],
+ "loc": {
+ "start": {
+ "line": 103,
+ "column": 8
+ },
+ "end": {
+ "line": 107,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3468,
+ 3472
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 8
+ },
+ "end": {
+ "line": 108,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3473,
+ 3480
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 13
+ },
+ "end": {
+ "line": 108,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3468,
+ 3480
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 8
+ },
+ "end": {
+ "line": 108,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3481,
+ 3483
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 21
+ },
+ "end": {
+ "line": 108,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3468,
+ 3483
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 8
+ },
+ "end": {
+ "line": 108,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "select-options",
+ "raw": "'select-options'",
+ "range": [
+ 3498,
+ 3514
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 13
+ },
+ "end": {
+ "line": 109,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 3497,
+ 3515
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
+ "column": 12
+ },
+ "end": {
+ "line": 109,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3530,
+ 3532
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 13
+ },
+ "end": {
+ "line": 110,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3534,
+ 3542
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 17
+ },
+ "end": {
+ "line": 110,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 3544,
+ 3550
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 27
+ },
+ "end": {
+ "line": 110,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3554,
+ 3558
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 37
+ },
+ "end": {
+ "line": 110,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 3559,
+ 3572
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 42
+ },
+ "end": {
+ "line": 110,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 3554,
+ 3572
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 37
+ },
+ "end": {
+ "line": 110,
+ "column": 55
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3573,
+ 3581
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 56
+ },
+ "end": {
+ "line": 110,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 3583,
+ 3589
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 66
+ },
+ "end": {
+ "line": 110,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 3554,
+ 3590
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 37
+ },
+ "end": {
+ "line": 110,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3529,
+ 3590
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 12
+ },
+ "end": {
+ "line": 110,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 3468,
+ 3600
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3468,
+ 3601
+ ],
+ "loc": {
+ "start": {
+ "line": 108,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 10
}
}
},
@@ -3463,16 +8582,837 @@
"object": {
"type": "ThisExpression",
"range": [
- 2205,
- 2209
+ 3611,
+ 3615
],
"loc": {
"start": {
- "line": 68,
+ "line": 113,
"column": 8
},
"end": {
- "line": 68,
+ "line": 113,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 3616,
+ 3627
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 13
+ },
+ "end": {
+ "line": 113,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3611,
+ 3627
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 3630,
+ 3634
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 27
+ },
+ "end": {
+ "line": 113,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3611,
+ 3634
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3611,
+ 3635
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 2050,
+ 3641
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 41
+ },
+ "end": {
+ "line": 114,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 2017,
+ 3641
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 114,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 2013,
+ 3641
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 4
+ },
+ "end": {
+ "line": 114,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Initialize drop-down filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
+ "range": [
+ 1777,
+ 2008
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 4
+ },
+ "end": {
+ "line": 63,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "range": [
+ 3647,
+ 3935
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 4
+ },
+ "end": {
+ "line": 122,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 3940,
+ 3945
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 4
+ },
+ "end": {
+ "line": 123,
+ "column": 9
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 3946,
+ 3954
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 10
+ },
+ "end": {
+ "line": 123,
+ "column": 18
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "isLinked",
+ "range": [
+ 3956,
+ 3964
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 20
+ },
+ "end": {
+ "line": 123,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 3965,
+ 3970
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 29
+ },
+ "end": {
+ "line": 123,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 3956,
+ 3970
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 20
+ },
+ "end": {
+ "line": 123,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 3972,
+ 3982
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 36
+ },
+ "end": {
+ "line": 123,
+ "column": 46
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 3983,
+ 3988
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 47
+ },
+ "end": {
+ "line": 123,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 3972,
+ 3988
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 36
+ },
+ "end": {
+ "line": 123,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "extSlcId",
+ "range": [
+ 3990,
+ 3998
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 54
+ },
+ "end": {
+ "line": 123,
+ "column": 62
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 3999,
+ 4003
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 63
+ },
+ "end": {
+ "line": 123,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 3990,
+ 4003
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 54
+ },
+ "end": {
+ "line": 123,
+ "column": 67
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4018,
+ 4020
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 12
+ },
+ "end": {
+ "line": 124,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4023,
+ 4027
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 17
+ },
+ "end": {
+ "line": 124,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4028,
+ 4030
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 22
+ },
+ "end": {
+ "line": 124,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4023,
+ 4030
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 17
+ },
+ "end": {
+ "line": 124,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4018,
+ 4030
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 12
+ },
+ "end": {
+ "line": 124,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 4014,
+ 4031
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 8
+ },
+ "end": {
+ "line": 124,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4040,
+ 4048
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 125,
+ "column": 16
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "parseInt",
+ "range": [
+ 4051,
+ 4059
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 19
+ },
+ "end": {
+ "line": 125,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4060,
+ 4068
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 28
+ },
+ "end": {
+ "line": 125,
+ "column": 36
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": 10,
+ "raw": "10",
+ "range": [
+ 4070,
+ 4072
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 38
+ },
+ "end": {
+ "line": 125,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 4051,
+ 4073
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 19
+ },
+ "end": {
+ "line": 125,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 4040,
+ 4073
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 125,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 4040,
+ 4074
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 125,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4084,
+ 4088
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4089,
+ 4096
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 13
+ },
+ "end": {
+ "line": 127,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4084,
+ 4096
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 4097,
+ 4101
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 21
+ },
+ "end": {
+ "line": 127,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 4084,
+ 4101
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 4102,
+ 4128
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 26
+ },
+ "end": {
+ "line": 127,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4130,
+ 4132
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 54
+ },
+ "end": {
+ "line": 127,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4134,
+ 4142
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 58
+ },
+ "end": {
+ "line": 127,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 4084,
+ 4143
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 4084,
+ 4144
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4154,
+ 4158
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
"column": 12
}
}
@@ -3481,31 +9421,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 2210,
- 2214
+ 4159,
+ 4163
],
"loc": {
"start": {
- "line": 68,
+ "line": 129,
"column": 13
},
"end": {
- "line": 68,
+ "line": 129,
"column": 17
}
}
},
"range": [
- 2205,
- 2214
+ 4154,
+ 4163
],
"loc": {
"start": {
- "line": 68,
+ "line": 129,
"column": 8
},
"end": {
- "line": 68,
+ "line": 129,
"column": 17
}
}
@@ -3514,46 +9454,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2217,
- 2219
+ 4166,
+ 4168
],
"loc": {
"start": {
- "line": 68,
+ "line": 129,
"column": 20
},
"end": {
- "line": 68,
+ "line": 129,
"column": 22
}
}
},
"range": [
- 2205,
- 2219
+ 4154,
+ 4168
],
"loc": {
"start": {
- "line": 68,
+ "line": 129,
"column": 8
},
"end": {
- "line": 68,
+ "line": 129,
"column": 22
}
}
},
"range": [
- 2205,
- 2220
+ 4154,
+ 4169
],
"loc": {
"start": {
- "line": 68,
+ "line": 129,
"column": 8
},
"end": {
- "line": 68,
+ "line": 129,
"column": 23
}
}
@@ -3569,16 +9509,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2229,
- 2233
+ 4178,
+ 4182
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 8
},
"end": {
- "line": 69,
+ "line": 130,
"column": 12
}
}
@@ -3587,31 +9527,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 2234,
- 2241
+ 4183,
+ 4190
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 13
},
"end": {
- "line": 69,
+ "line": 130,
"column": 20
}
}
},
"range": [
- 2229,
- 2241
+ 4178,
+ 4190
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 8
},
"end": {
- "line": 69,
+ "line": 130,
"column": 20
}
}
@@ -3620,46 +9560,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2244,
- 2246
+ 4193,
+ 4195
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 23
},
"end": {
- "line": 69,
+ "line": 130,
"column": 25
}
}
},
"range": [
- 2229,
- 2246
+ 4178,
+ 4195
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 8
},
"end": {
- "line": 69,
+ "line": 130,
"column": 25
}
}
},
"range": [
- 2229,
- 2247
+ 4178,
+ 4196
],
"loc": {
"start": {
- "line": 69,
+ "line": 130,
"column": 8
},
"end": {
- "line": 69,
+ "line": 130,
"column": 26
}
}
@@ -3675,16 +9615,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2256,
- 2260
+ 4205,
+ 4209
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 8
},
"end": {
- "line": 70,
+ "line": 131,
"column": 12
}
}
@@ -3693,31 +9633,31 @@
"type": "Identifier",
"name": "slcInnerHtml",
"range": [
- 2261,
- 2273
+ 4210,
+ 4222
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 13
},
"end": {
- "line": 70,
+ "line": 131,
"column": 25
}
}
},
"range": [
- 2256,
- 2273
+ 4205,
+ 4222
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 8
},
"end": {
- "line": 70,
+ "line": 131,
"column": 25
}
}
@@ -3727,46 +9667,46 @@
"value": "",
"raw": "''",
"range": [
- 2276,
- 2278
+ 4225,
+ 4227
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 28
},
"end": {
- "line": 70,
+ "line": 131,
"column": 30
}
}
},
"range": [
- 2256,
- 2278
+ 4205,
+ 4227
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 8
},
"end": {
- "line": 70,
+ "line": 131,
"column": 30
}
}
},
"range": [
- 2256,
- 2279
+ 4205,
+ 4228
],
"loc": {
"start": {
- "line": 70,
+ "line": 131,
"column": 8
},
"end": {
- "line": 70,
+ "line": 131,
"column": 31
}
}
@@ -3780,16 +9720,16 @@
"type": "Identifier",
"name": "slcId",
"range": [
- 2293,
- 2298
+ 4242,
+ 4247
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 12
},
"end": {
- "line": 72,
+ "line": 133,
"column": 17
}
}
@@ -3804,16 +9744,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2301,
- 2303
+ 4250,
+ 4252
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 20
},
"end": {
- "line": 72,
+ "line": 133,
"column": 22
}
}
@@ -3822,31 +9762,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 2304,
- 2310
+ 4253,
+ 4259
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 23
},
"end": {
- "line": 72,
+ "line": 133,
"column": 29
}
}
},
"range": [
- 2301,
- 2310
+ 4250,
+ 4259
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 20
},
"end": {
- "line": 72,
+ "line": 133,
"column": 29
}
}
@@ -3855,63 +9795,63 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2311,
- 2319
+ 4260,
+ 4268
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 30
},
"end": {
- "line": 72,
+ "line": 133,
"column": 38
}
}
},
"range": [
- 2301,
- 2320
+ 4250,
+ 4269
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 20
},
"end": {
- "line": 72,
+ "line": 133,
"column": 39
}
}
},
"range": [
- 2293,
- 2320
+ 4242,
+ 4269
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 12
},
"end": {
- "line": 72,
+ "line": 133,
"column": 39
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2289,
- 2321
+ 4238,
+ 4270
],
"loc": {
"start": {
- "line": 72,
+ "line": 133,
"column": 8
},
"end": {
- "line": 72,
+ "line": 133,
"column": 40
}
}
@@ -3936,16 +9876,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2335,
- 2338
+ 4284,
+ 4287
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 13
},
"end": {
- "line": 73,
+ "line": 134,
"column": 16
}
}
@@ -3954,31 +9894,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2339,
- 2341
+ 4288,
+ 4290
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 17
},
"end": {
- "line": 73,
+ "line": 134,
"column": 19
}
}
},
"range": [
- 2335,
- 2341
+ 4284,
+ 4290
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 13
},
"end": {
- "line": 73,
+ "line": 134,
"column": 19
}
}
@@ -3988,48 +9928,48 @@
"type": "Identifier",
"name": "slcId",
"range": [
- 2342,
- 2347
+ 4291,
+ 4296
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 20
},
"end": {
- "line": 73,
+ "line": 134,
"column": 25
}
}
}
],
"range": [
- 2335,
- 2348
+ 4284,
+ 4297
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 13
},
"end": {
- "line": 73,
+ "line": 134,
"column": 26
}
}
},
"prefix": true,
"range": [
- 2334,
- 2348
+ 4283,
+ 4297
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 12
},
"end": {
- "line": 73,
+ "line": 134,
"column": 26
}
}
@@ -4041,47 +9981,47 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2353,
- 2363
+ 4302,
+ 4312
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 31
},
"end": {
- "line": 73,
+ "line": 134,
"column": 41
}
}
},
"prefix": true,
"range": [
- 2352,
- 2363
+ 4301,
+ 4312
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 30
},
"end": {
- "line": 73,
+ "line": 134,
"column": 41
}
}
},
"range": [
- 2334,
- 2363
+ 4283,
+ 4312
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 12
},
"end": {
- "line": 73,
+ "line": 134,
"column": 41
}
}
@@ -4101,16 +10041,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2382,
- 2385
+ 4331,
+ 4334
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 14
},
"end": {
- "line": 74,
+ "line": 135,
"column": 17
}
}
@@ -4119,31 +10059,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2386,
- 2388
+ 4335,
+ 4337
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 18
},
"end": {
- "line": 74,
+ "line": 135,
"column": 20
}
}
},
"range": [
- 2382,
- 2388
+ 4331,
+ 4337
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 14
},
"end": {
- "line": 74,
+ "line": 135,
"column": 20
}
}
@@ -4153,48 +10093,48 @@
"type": "Identifier",
"name": "extSlcId",
"range": [
- 2389,
- 2397
+ 4338,
+ 4346
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 21
},
"end": {
- "line": 74,
+ "line": 135,
"column": 29
}
}
}
],
"range": [
- 2382,
- 2398
+ 4331,
+ 4347
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 14
},
"end": {
- "line": 74,
+ "line": 135,
"column": 30
}
}
},
"prefix": true,
"range": [
- 2381,
- 2398
+ 4330,
+ 4347
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 13
},
"end": {
- "line": 74,
+ "line": 135,
"column": 30
}
}
@@ -4203,46 +10143,46 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2402,
- 2412
+ 4351,
+ 4361
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 34
},
"end": {
- "line": 74,
+ "line": 135,
"column": 44
}
}
},
"range": [
- 2381,
- 2412
+ 4330,
+ 4361
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 13
},
"end": {
- "line": 74,
+ "line": 135,
"column": 44
}
}
},
"range": [
- 2333,
- 2413
+ 4282,
+ 4362
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 11
},
"end": {
- "line": 74,
+ "line": 135,
"column": 45
}
}
@@ -4254,48 +10194,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2428,
- 2435
+ 4377,
+ 4384
],
"loc": {
"start": {
- "line": 75,
+ "line": 136,
"column": 12
},
"end": {
- "line": 75,
+ "line": 136,
"column": 19
}
}
}
],
"range": [
- 2414,
- 2445
+ 4363,
+ 4394
],
"loc": {
"start": {
- "line": 74,
+ "line": 135,
"column": 46
},
"end": {
- "line": 76,
+ "line": 137,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2330,
- 2445
+ 4279,
+ 4394
],
"loc": {
"start": {
- "line": 73,
+ "line": 134,
"column": 8
},
"end": {
- "line": 76,
+ "line": 137,
"column": 9
}
}
@@ -4309,16 +10249,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 2458,
- 2461
+ 4407,
+ 4410
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 12
},
"end": {
- "line": 77,
+ "line": 138,
"column": 15
}
}
@@ -4332,32 +10272,32 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2465,
- 2475
+ 4414,
+ 4424
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 19
},
"end": {
- "line": 77,
+ "line": 138,
"column": 29
}
}
},
"prefix": true,
"range": [
- 2464,
- 2475
+ 4413,
+ 4424
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 18
},
"end": {
- "line": 77,
+ "line": 138,
"column": 29
}
}
@@ -4371,16 +10311,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2478,
- 2481
+ 4427,
+ 4430
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 32
},
"end": {
- "line": 77,
+ "line": 138,
"column": 35
}
}
@@ -4389,31 +10329,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2482,
- 2484
+ 4431,
+ 4433
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 36
},
"end": {
- "line": 77,
+ "line": 138,
"column": 38
}
}
},
"range": [
- 2478,
- 2484
+ 4427,
+ 4433
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 32
},
"end": {
- "line": 77,
+ "line": 138,
"column": 38
}
}
@@ -4423,32 +10363,32 @@
"type": "Identifier",
"name": "slcId",
"range": [
- 2485,
- 2490
+ 4434,
+ 4439
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 39
},
"end": {
- "line": 77,
+ "line": 138,
"column": 44
}
}
}
],
"range": [
- 2478,
- 2491
+ 4427,
+ 4440
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 32
},
"end": {
- "line": 77,
+ "line": 138,
"column": 45
}
}
@@ -4462,16 +10402,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2494,
- 2497
+ 4443,
+ 4446
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 48
},
"end": {
- "line": 77,
+ "line": 138,
"column": 51
}
}
@@ -4480,31 +10420,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2498,
- 2500
+ 4447,
+ 4449
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 52
},
"end": {
- "line": 77,
+ "line": 138,
"column": 54
}
}
},
"range": [
- 2494,
- 2500
+ 4443,
+ 4449
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 48
},
"end": {
- "line": 77,
+ "line": 138,
"column": 54
}
}
@@ -4514,62 +10454,62 @@
"type": "Identifier",
"name": "extSlcId",
"range": [
- 2501,
- 2509
+ 4450,
+ 4458
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 55
},
"end": {
- "line": 77,
+ "line": 138,
"column": 63
}
}
}
],
"range": [
- 2494,
- 2510
+ 4443,
+ 4459
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 48
},
"end": {
- "line": 77,
+ "line": 138,
"column": 64
}
}
},
"range": [
- 2464,
- 2510
+ 4413,
+ 4459
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 18
},
"end": {
- "line": 77,
+ "line": 138,
"column": 64
}
}
},
"range": [
- 2458,
- 2510
+ 4407,
+ 4459
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 12
},
"end": {
- "line": 77,
+ "line": 138,
"column": 64
}
}
@@ -4580,16 +10520,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2524,
- 2528
+ 4473,
+ 4477
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 12
},
"end": {
- "line": 78,
+ "line": 139,
"column": 16
}
}
@@ -4604,16 +10544,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2531,
- 2533
+ 4480,
+ 4482
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 19
},
"end": {
- "line": 78,
+ "line": 139,
"column": 21
}
}
@@ -4622,31 +10562,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2534,
- 2537
+ 4483,
+ 4486
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 22
},
"end": {
- "line": 78,
+ "line": 139,
"column": 25
}
}
},
"range": [
- 2531,
- 2537
+ 4480,
+ 4486
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 19
},
"end": {
- "line": 78,
+ "line": 139,
"column": 25
}
}
@@ -4655,46 +10595,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2538,
- 2542
+ 4487,
+ 4491
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 26
},
"end": {
- "line": 78,
+ "line": 139,
"column": 30
}
}
},
"range": [
- 2531,
- 2542
+ 4480,
+ 4491
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 19
},
"end": {
- "line": 78,
+ "line": 139,
"column": 30
}
}
},
"range": [
- 2524,
- 2542
+ 4473,
+ 4491
],
"loc": {
"start": {
- "line": 78,
+ "line": 139,
"column": 12
},
"end": {
- "line": 78,
+ "line": 139,
"column": 30
}
}
@@ -4705,16 +10645,16 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 2556,
- 2565
+ 4505,
+ 4514
],
"loc": {
"start": {
- "line": 79,
+ "line": 140,
"column": 12
},
"end": {
- "line": 79,
+ "line": 140,
"column": 21
}
}
@@ -4726,16 +10666,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2568,
- 2570
+ 4517,
+ 4519
],
"loc": {
"start": {
- "line": 79,
+ "line": 140,
"column": 24
},
"end": {
- "line": 79,
+ "line": 140,
"column": 26
}
}
@@ -4744,63 +10684,63 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 2571,
- 2580
+ 4520,
+ 4529
],
"loc": {
"start": {
- "line": 79,
+ "line": 140,
"column": 27
},
"end": {
- "line": 79,
+ "line": 140,
"column": 36
}
}
},
"range": [
- 2568,
- 2580
+ 4517,
+ 4529
],
"loc": {
"start": {
- "line": 79,
+ "line": 140,
"column": 24
},
"end": {
- "line": 79,
+ "line": 140,
"column": 36
}
}
},
"range": [
- 2556,
- 2580
+ 4505,
+ 4529
],
"loc": {
"start": {
- "line": 79,
+ "line": 140,
"column": 12
},
"end": {
- "line": 79,
+ "line": 140,
"column": 36
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2454,
- 2581
+ 4403,
+ 4530
],
"loc": {
"start": {
- "line": 77,
+ "line": 138,
"column": 8
},
"end": {
- "line": 79,
+ "line": 140,
"column": 37
}
},
@@ -4809,16 +10749,16 @@
"type": "Line",
"value": "custom select test",
"range": [
- 2591,
- 2611
+ 4540,
+ 4560
],
"loc": {
"start": {
- "line": 81,
+ "line": 142,
"column": 8
},
"end": {
- "line": 81,
+ "line": 142,
"column": 28
}
}
@@ -4836,16 +10776,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2620,
- 2624
+ 4569,
+ 4573
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 8
},
"end": {
- "line": 82,
+ "line": 143,
"column": 12
}
}
@@ -4854,31 +10794,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 2625,
- 2633
+ 4574,
+ 4582
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 13
},
"end": {
- "line": 82,
+ "line": 143,
"column": 21
}
}
},
"range": [
- 2620,
- 2633
+ 4569,
+ 4582
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 8
},
"end": {
- "line": 82,
+ "line": 143,
"column": 21
}
}
@@ -4892,16 +10832,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2636,
- 2638
+ 4585,
+ 4587
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 24
},
"end": {
- "line": 82,
+ "line": 143,
"column": 26
}
}
@@ -4910,31 +10850,31 @@
"type": "Identifier",
"name": "isCustomOptions",
"range": [
- 2639,
- 2654
+ 4588,
+ 4603
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 27
},
"end": {
- "line": 82,
+ "line": 143,
"column": 42
}
}
},
"range": [
- 2636,
- 2654
+ 4585,
+ 4603
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 24
},
"end": {
- "line": 82,
+ "line": 143,
"column": 42
}
}
@@ -4944,62 +10884,62 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2655,
- 2663
+ 4604,
+ 4612
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 43
},
"end": {
- "line": 82,
+ "line": 143,
"column": 51
}
}
}
],
"range": [
- 2636,
- 2664
+ 4585,
+ 4613
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 24
},
"end": {
- "line": 82,
+ "line": 143,
"column": 52
}
}
},
"range": [
- 2620,
- 2664
+ 4569,
+ 4613
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 8
},
"end": {
- "line": 82,
+ "line": 143,
"column": 52
}
}
},
"range": [
- 2620,
- 2665
+ 4569,
+ 4614
],
"loc": {
"start": {
- "line": 82,
+ "line": 143,
"column": 8
},
"end": {
- "line": 82,
+ "line": 143,
"column": 53
}
},
@@ -5008,16 +10948,16 @@
"type": "Line",
"value": "custom select test",
"range": [
- 2591,
- 2611
+ 4540,
+ 4560
],
"loc": {
"start": {
- "line": 81,
+ "line": 142,
"column": 8
},
"end": {
- "line": 81,
+ "line": 142,
"column": 28
}
}
@@ -5028,16 +10968,16 @@
"type": "Line",
"value": "custom selects text",
"range": [
- 2675,
- 2696
+ 4624,
+ 4645
],
"loc": {
"start": {
- "line": 84,
+ "line": 145,
"column": 8
},
"end": {
- "line": 84,
+ "line": 145,
"column": 29
}
}
@@ -5053,49 +10993,49 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 2709,
- 2718
+ 4658,
+ 4667
],
"loc": {
"start": {
- "line": 85,
+ "line": 146,
"column": 12
},
"end": {
- "line": 85,
+ "line": 146,
"column": 21
}
}
},
"init": null,
"range": [
- 2709,
- 2718
+ 4658,
+ 4667
],
"loc": {
"start": {
- "line": 85,
+ "line": 146,
"column": 12
},
"end": {
- "line": 85,
+ "line": 146,
"column": 21
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2705,
- 2719
+ 4654,
+ 4668
],
"loc": {
"start": {
- "line": 85,
+ "line": 146,
"column": 8
},
"end": {
- "line": 85,
+ "line": 146,
"column": 22
}
},
@@ -5104,16 +11044,16 @@
"type": "Line",
"value": "custom selects text",
"range": [
- 2675,
- 2696
+ 4624,
+ 4645
],
"loc": {
"start": {
- "line": 84,
+ "line": 145,
"column": 8
},
"end": {
- "line": 84,
+ "line": 145,
"column": 29
}
}
@@ -5129,16 +11069,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 2731,
- 2739
+ 4680,
+ 4688
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 11
},
"end": {
- "line": 86,
+ "line": 147,
"column": 19
}
}
@@ -5150,16 +11090,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2743,
- 2745
+ 4692,
+ 4694
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 23
},
"end": {
- "line": 86,
+ "line": 147,
"column": 25
}
}
@@ -5168,46 +11108,46 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 2746,
- 2760
+ 4695,
+ 4709
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 26
},
"end": {
- "line": 86,
+ "line": 147,
"column": 40
}
}
},
"range": [
- 2743,
- 2760
+ 4692,
+ 4709
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 23
},
"end": {
- "line": 86,
+ "line": 147,
"column": 40
}
}
},
"range": [
- 2731,
- 2760
+ 4680,
+ 4709
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 11
},
"end": {
- "line": 86,
+ "line": 147,
"column": 40
}
}
@@ -5224,16 +11164,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 2775,
- 2784
+ 4724,
+ 4733
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 12
},
"end": {
- "line": 87,
+ "line": 148,
"column": 21
}
}
@@ -5253,16 +11193,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2787,
- 2789
+ 4736,
+ 4738
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 24
},
"end": {
- "line": 87,
+ "line": 148,
"column": 26
}
}
@@ -5271,31 +11211,31 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 2790,
- 2804
+ 4739,
+ 4753
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 27
},
"end": {
- "line": 87,
+ "line": 148,
"column": 41
}
}
},
"range": [
- 2787,
- 2804
+ 4736,
+ 4753
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 24
},
"end": {
- "line": 87,
+ "line": 148,
"column": 41
}
}
@@ -5304,31 +11244,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 2805,
- 2810
+ 4754,
+ 4759
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 42
},
"end": {
- "line": 87,
+ "line": 148,
"column": 47
}
}
},
"range": [
- 2787,
- 2810
+ 4736,
+ 4759
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 24
},
"end": {
- "line": 87,
+ "line": 148,
"column": 47
}
}
@@ -5339,32 +11279,32 @@
"value": "_",
"raw": "'_'",
"range": [
- 2811,
- 2814
+ 4760,
+ 4763
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 48
},
"end": {
- "line": 87,
+ "line": 148,
"column": 51
}
}
}
],
"range": [
- 2787,
- 2815
+ 4736,
+ 4764
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 24
},
"end": {
- "line": 87,
+ "line": 148,
"column": 52
}
}
@@ -5374,61 +11314,61 @@
"value": 0,
"raw": "0",
"range": [
- 2816,
- 2817
+ 4765,
+ 4766
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 53
},
"end": {
- "line": 87,
+ "line": 148,
"column": 54
}
}
},
"range": [
- 2787,
- 2818
+ 4736,
+ 4767
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 24
},
"end": {
- "line": 87,
+ "line": 148,
"column": 55
}
}
},
"range": [
- 2775,
- 2818
+ 4724,
+ 4767
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 12
},
"end": {
- "line": 87,
+ "line": 148,
"column": 55
}
}
},
"range": [
- 2775,
- 2819
+ 4724,
+ 4768
],
"loc": {
"start": {
- "line": 87,
+ "line": 148,
"column": 12
},
"end": {
- "line": 87,
+ "line": 148,
"column": 56
}
}
@@ -5442,16 +11382,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 2832,
- 2841
+ 4781,
+ 4790
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 12
},
"end": {
- "line": 88,
+ "line": 149,
"column": 21
}
}
@@ -5468,16 +11408,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 2844,
- 2853
+ 4793,
+ 4802
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 24
},
"end": {
- "line": 88,
+ "line": 149,
"column": 33
}
}
@@ -5486,31 +11426,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 2854,
- 2859
+ 4803,
+ 4808
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 34
},
"end": {
- "line": 88,
+ "line": 149,
"column": 39
}
}
},
"range": [
- 2844,
- 2859
+ 4793,
+ 4808
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 24
},
"end": {
- "line": 88,
+ "line": 149,
"column": 39
}
}
@@ -5523,16 +11463,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2860,
- 2862
+ 4809,
+ 4811
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 40
},
"end": {
- "line": 88,
+ "line": 149,
"column": 42
}
}
@@ -5541,47 +11481,47 @@
"type": "Identifier",
"name": "prfxFlt",
"range": [
- 2863,
- 2870
+ 4812,
+ 4819
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 43
},
"end": {
- "line": 88,
+ "line": 149,
"column": 50
}
}
},
"range": [
- 2860,
- 2870
+ 4809,
+ 4819
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 40
},
"end": {
- "line": 88,
+ "line": 149,
"column": 50
}
}
}
],
"range": [
- 2844,
- 2871
+ 4793,
+ 4820
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 24
},
"end": {
- "line": 88,
+ "line": 149,
"column": 51
}
}
@@ -5591,1383 +11531,93 @@
"value": 1,
"raw": "1",
"range": [
- 2872,
- 2873
+ 4821,
+ 4822
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 52
},
"end": {
- "line": 88,
+ "line": 149,
"column": 53
}
}
},
"range": [
- 2844,
- 2874
+ 4793,
+ 4823
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 24
},
"end": {
- "line": 88,
+ "line": 149,
"column": 54
}
}
},
"range": [
- 2832,
- 2874
+ 4781,
+ 4823
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 12
},
"end": {
- "line": 88,
+ "line": 149,
"column": 54
}
}
},
"range": [
- 2832,
- 2875
+ 4781,
+ 4824
],
"loc": {
"start": {
- "line": 88,
+ "line": 149,
"column": 12
},
"end": {
- "line": 88,
+ "line": 149,
"column": 55
}
}
}
],
"range": [
- 2761,
- 2885
+ 4710,
+ 4834
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 41
},
"end": {
- "line": 89,
+ "line": 150,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2728,
- 2885
+ 4677,
+ 4834
],
"loc": {
"start": {
- "line": 86,
+ "line": 147,
"column": 8
},
"end": {
- "line": 89,
- "column": 9
- }
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 2895,
- 2925
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 8
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 2938,
- 2948
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 12
- },
- "end": {
- "line": 92,
- "column": 22
- }
- }
- },
- "init": {
- "type": "ArrayExpression",
- "elements": [],
- "range": [
- 2951,
- 2953
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 25
- },
- "end": {
- "line": 92,
- "column": 27
- }
- }
- },
- "range": [
- 2938,
- 2953
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 12
- },
- "end": {
- "line": 92,
- "column": 27
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 2955,
- 2961
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 29
- },
- "end": {
- "line": 92,
- "column": 35
- }
- }
- },
- "init": {
- "type": "ArrayExpression",
- "elements": [],
- "range": [
- 2964,
- 2966
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 38
- },
- "end": {
- "line": 92,
- "column": 40
- }
- }
- },
- "range": [
- 2955,
- 2966
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 29
- },
- "end": {
- "line": 92,
- "column": 40
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 2934,
- 2967
- ],
- "loc": {
- "start": {
- "line": 92,
- "column": 8
- },
- "end": {
- "line": 92,
- "column": 41
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 2895,
- 2925
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 8
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 2979,
- 2981
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 11
- },
- "end": {
- "line": 93,
- "column": 13
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 2982,
- 3000
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 14
- },
- "end": {
- "line": 93,
- "column": 32
- }
- }
- },
- "range": [
- 2979,
- 3000
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 11
- },
- "end": {
- "line": 93,
- "column": 32
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 3015,
- 3025
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 12
- },
- "end": {
- "line": 94,
- "column": 22
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3044,
- 3046
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 16
- },
- "end": {
- "line": 95,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 3047,
- 3054
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 19
- },
- "end": {
- "line": 95,
- "column": 26
- }
- }
- },
- "range": [
- 3044,
- 3054
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 16
- },
- "end": {
- "line": 95,
- "column": 26
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "store",
- "raw": "'store'",
- "range": [
- 3055,
- 3062
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 27
- },
- "end": {
- "line": 95,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 3044,
- 3063
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 16
- },
- "end": {
- "line": 95,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterValues",
- "range": [
- 3064,
- 3079
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 36
- },
- "end": {
- "line": 95,
- "column": 51
- }
- }
- },
- "range": [
- 3044,
- 3079
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 16
- },
- "end": {
- "line": 95,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3080,
- 3082
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 52
- },
- "end": {
- "line": 95,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 3083,
- 3099
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 55
- },
- "end": {
- "line": 95,
- "column": 71
- }
- }
- },
- "range": [
- 3080,
- 3099
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 52
- },
- "end": {
- "line": 95,
- "column": 71
- }
- }
- }
- ],
- "range": [
- 3044,
- 3100
- ],
- "loc": {
- "start": {
- "line": 95,
- "column": 16
- },
- "end": {
- "line": 95,
- "column": 72
- }
- }
- },
- "range": [
- 3015,
- 3100
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 12
- },
- "end": {
- "line": 95,
- "column": 72
- }
- }
- },
- "range": [
- 3015,
- 3101
- ],
- "loc": {
- "start": {
- "line": 94,
- "column": 12
- },
- "end": {
- "line": 95,
- "column": 73
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 3117,
- 3127
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 15
- },
- "end": {
- "line": 96,
- "column": 25
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 3132,
- 3135
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 30
- },
- "end": {
- "line": 96,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isEmpty",
- "range": [
- 3136,
- 3143
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 34
- },
- "end": {
- "line": 96,
- "column": 41
- }
- }
- },
- "range": [
- 3132,
- 3143
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 30
- },
- "end": {
- "line": 96,
- "column": 41
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 3144,
- 3154
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 42
- },
- "end": {
- "line": 96,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "toString",
- "range": [
- 3155,
- 3163
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 53
- },
- "end": {
- "line": 96,
- "column": 61
- }
- }
- },
- "range": [
- 3144,
- 3163
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 42
- },
- "end": {
- "line": 96,
- "column": 61
- }
- }
- },
- "arguments": [],
- "range": [
- 3144,
- 3165
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 42
- },
- "end": {
- "line": 96,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 3132,
- 3166
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 30
- },
- "end": {
- "line": 96,
- "column": 64
- }
- }
- },
- "prefix": true,
- "range": [
- 3131,
- 3166
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 29
- },
- "end": {
- "line": 96,
- "column": 64
- }
- }
- },
- "range": [
- 3117,
- 3166
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 15
- },
- "end": {
- "line": 96,
- "column": 64
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3188,
- 3192
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 19
- },
- "end": {
- "line": 97,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isCustom",
- "range": [
- 3193,
- 3201
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 24
- },
- "end": {
- "line": 97,
- "column": 32
- }
- }
- },
- "range": [
- 3188,
- 3201
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 19
- },
- "end": {
- "line": 97,
- "column": 32
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 3224,
- 3230
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 20
- },
- "end": {
- "line": 98,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 3231,
- 3235
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 27
- },
- "end": {
- "line": 98,
- "column": 31
- }
- }
- },
- "range": [
- 3224,
- 3235
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 20
- },
- "end": {
- "line": 98,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 3236,
- 3246
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 32
- },
- "end": {
- "line": 98,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 3247,
- 3255
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 43
- },
- "end": {
- "line": 98,
- "column": 51
- }
- }
- },
- "range": [
- 3236,
- 3256
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 32
- },
- "end": {
- "line": 98,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 3224,
- 3257
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 20
- },
- "end": {
- "line": 98,
- "column": 53
- }
- }
- },
- "range": [
- 3224,
- 3258
- ],
- "loc": {
- "start": {
- "line": 98,
- "column": 20
- },
- "end": {
- "line": 98,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 3202,
- 3276
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 33
- },
- "end": {
- "line": 99,
- "column": 17
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 3304,
- 3310
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 26
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 3313,
- 3323
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 29
- },
- "end": {
- "line": 100,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 3324,
- 3332
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 40
- },
- "end": {
- "line": 100,
- "column": 48
- }
- }
- },
- "range": [
- 3313,
- 3333
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 29
- },
- "end": {
- "line": 100,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "split",
- "range": [
- 3334,
- 3339
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 50
- },
- "end": {
- "line": 100,
- "column": 55
- }
- }
- },
- "range": [
- 3313,
- 3339
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 29
- },
- "end": {
- "line": 100,
- "column": 55
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 3340,
- 3343
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 56
- },
- "end": {
- "line": 100,
- "column": 59
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3344,
- 3346
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 60
- },
- "end": {
- "line": 100,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 3347,
- 3357
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 63
- },
- "end": {
- "line": 100,
- "column": 73
- }
- }
- },
- "range": [
- 3344,
- 3357
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 60
- },
- "end": {
- "line": 100,
- "column": 73
- }
- }
- },
- "range": [
- 3340,
- 3357
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 56
- },
- "end": {
- "line": 100,
- "column": 73
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 3358,
- 3361
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 74
- },
- "end": {
- "line": 100,
- "column": 77
- }
- }
- },
- "range": [
- 3340,
- 3361
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 56
- },
- "end": {
- "line": 100,
- "column": 77
- }
- }
- }
- ],
- "range": [
- 3313,
- 3362
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 29
- },
- "end": {
- "line": 100,
- "column": 78
- }
- }
- },
- "range": [
- 3304,
- 3362
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 78
- }
- }
- },
- "range": [
- 3304,
- 3363
- ],
- "loc": {
- "start": {
- "line": 100,
- "column": 20
- },
- "end": {
- "line": 100,
- "column": 79
- }
- }
- }
- ],
- "range": [
- 3282,
- 3381
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 23
- },
- "end": {
- "line": 101,
- "column": 17
- }
- }
- },
- "range": [
- 3185,
- 3381
- ],
- "loc": {
- "start": {
- "line": 97,
- "column": 16
- },
- "end": {
- "line": 101,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 3167,
- 3395
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 65
- },
- "end": {
- "line": 102,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 3114,
- 3395
- ],
- "loc": {
- "start": {
- "line": 96,
- "column": 12
- },
- "end": {
- "line": 102,
- "column": 13
- }
- }
- }
- ],
- "range": [
- 3001,
- 3405
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 33
- },
- "end": {
- "line": 103,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 2976,
- 3405
- ],
- "loc": {
- "start": {
- "line": 93,
- "column": 8
- },
- "end": {
- "line": 103,
+ "line": 150,
"column": 9
}
}
@@ -6981,16 +11631,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 3419,
- 3431
+ 4848,
+ 4860
],
"loc": {
"start": {
- "line": 105,
+ "line": 152,
"column": 12
},
"end": {
- "line": 105,
+ "line": 152,
"column": 24
}
}
@@ -7000,31 +11650,31 @@
"value": null,
"raw": "null",
"range": [
- 3434,
- 3438
+ 4863,
+ 4867
],
"loc": {
"start": {
- "line": 105,
+ "line": 152,
"column": 27
},
"end": {
- "line": 105,
+ "line": 152,
"column": 31
}
}
},
"range": [
- 3419,
- 3438
+ 4848,
+ 4867
],
"loc": {
"start": {
- "line": 105,
+ "line": 152,
"column": 12
},
"end": {
- "line": 105,
+ "line": 152,
"column": 31
}
}
@@ -7035,16 +11685,16 @@
"type": "Identifier",
"name": "filteredDataCol",
"range": [
- 3452,
- 3467
+ 4881,
+ 4896
],
"loc": {
"start": {
- "line": 106,
+ "line": 153,
"column": 12
},
"end": {
- "line": 106,
+ "line": 153,
"column": 27
}
}
@@ -7054,48 +11704,48 @@
"value": null,
"raw": "null",
"range": [
- 3470,
- 3474
+ 4899,
+ 4903
],
"loc": {
"start": {
- "line": 106,
+ "line": 153,
"column": 30
},
"end": {
- "line": 106,
+ "line": 153,
"column": 34
}
}
},
"range": [
- 3452,
- 3474
+ 4881,
+ 4903
],
"loc": {
"start": {
- "line": 106,
+ "line": 153,
"column": 12
},
"end": {
- "line": 106,
+ "line": 153,
"column": 34
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3415,
- 3475
+ 4844,
+ 4904
],
"loc": {
"start": {
- "line": 105,
+ "line": 152,
"column": 8
},
"end": {
- "line": 106,
+ "line": 153,
"column": 35
}
}
@@ -7109,16 +11759,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 3487,
- 3495
+ 4916,
+ 4924
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 11
},
"end": {
- "line": 107,
+ "line": 154,
"column": 19
}
}
@@ -7130,16 +11780,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3499,
- 3501
+ 4928,
+ 4930
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 23
},
"end": {
- "line": 107,
+ "line": 154,
"column": 25
}
}
@@ -7148,46 +11798,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 3502,
- 3524
+ 4931,
+ 4953
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 26
},
"end": {
- "line": 107,
+ "line": 154,
"column": 48
}
}
},
"range": [
- 3499,
- 3524
+ 4928,
+ 4953
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 23
},
"end": {
- "line": 107,
+ "line": 154,
"column": 48
}
}
},
"range": [
- 3487,
- 3524
+ 4916,
+ 4953
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 11
},
"end": {
- "line": 107,
+ "line": 154,
"column": 48
}
}
@@ -7204,16 +11854,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 3539,
- 3551
+ 4968,
+ 4980
],
"loc": {
"start": {
- "line": 108,
+ "line": 155,
"column": 12
},
"end": {
- "line": 108,
+ "line": 155,
"column": 24
}
}
@@ -7222,46 +11872,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3554,
- 3556
+ 4983,
+ 4985
],
"loc": {
"start": {
- "line": 108,
+ "line": 155,
"column": 27
},
"end": {
- "line": 108,
+ "line": 155,
"column": 29
}
}
},
"range": [
- 3539,
- 3556
+ 4968,
+ 4985
],
"loc": {
"start": {
- "line": 108,
+ "line": 155,
"column": 12
},
"end": {
- "line": 108,
+ "line": 155,
"column": 29
}
}
},
"range": [
- 3539,
- 3557
+ 4968,
+ 4986
],
"loc": {
"start": {
- "line": 108,
+ "line": 155,
"column": 12
},
"end": {
- "line": 108,
+ "line": 155,
"column": 30
}
}
@@ -7275,16 +11925,16 @@
"type": "Identifier",
"name": "filteredDataCol",
"range": [
- 3570,
- 3585
+ 4999,
+ 5014
],
"loc": {
"start": {
- "line": 109,
+ "line": 156,
"column": 12
},
"end": {
- "line": 109,
+ "line": 156,
"column": 27
}
}
@@ -7293,78 +11943,78 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3588,
- 3590
+ 5017,
+ 5019
],
"loc": {
"start": {
- "line": 109,
+ "line": 156,
"column": 30
},
"end": {
- "line": 109,
+ "line": 156,
"column": 32
}
}
},
"range": [
- 3570,
- 3590
+ 4999,
+ 5019
],
"loc": {
"start": {
- "line": 109,
+ "line": 156,
"column": 12
},
"end": {
- "line": 109,
+ "line": 156,
"column": 32
}
}
},
"range": [
- 3570,
- 3591
+ 4999,
+ 5020
],
"loc": {
"start": {
- "line": 109,
+ "line": 156,
"column": 12
},
"end": {
- "line": 109,
+ "line": 156,
"column": 33
}
}
}
],
"range": [
- 3525,
- 3601
+ 4954,
+ 5030
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 49
},
"end": {
- "line": 110,
+ "line": 157,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3484,
- 3601
+ 4913,
+ 5030
],
"loc": {
"start": {
- "line": 107,
+ "line": 154,
"column": 8
},
"end": {
- "line": 110,
+ "line": 157,
"column": 9
}
}
@@ -7380,16 +12030,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3619,
- 3620
+ 5048,
+ 5049
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 16
},
"end": {
- "line": 112,
+ "line": 159,
"column": 17
}
}
@@ -7401,16 +12051,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3621,
- 3623
+ 5050,
+ 5052
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 18
},
"end": {
- "line": 112,
+ "line": 159,
"column": 20
}
}
@@ -7419,63 +12069,63 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 3624,
- 3630
+ 5053,
+ 5059
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 21
},
"end": {
- "line": 112,
+ "line": 159,
"column": 27
}
}
},
"range": [
- 3621,
- 3630
+ 5050,
+ 5059
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 18
},
"end": {
- "line": 112,
+ "line": 159,
"column": 27
}
}
},
"range": [
- 3619,
- 3630
+ 5048,
+ 5059
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 16
},
"end": {
- "line": 112,
+ "line": 159,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3615,
- 3630
+ 5044,
+ 5059
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 12
},
"end": {
- "line": 112,
+ "line": 159,
"column": 27
}
}
@@ -7487,16 +12137,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3632,
- 3633
+ 5061,
+ 5062
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 29
},
"end": {
- "line": 112,
+ "line": 159,
"column": 30
}
}
@@ -7508,16 +12158,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3634,
- 3636
+ 5063,
+ 5065
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 31
},
"end": {
- "line": 112,
+ "line": 159,
"column": 33
}
}
@@ -7526,46 +12176,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 3637,
- 3643
+ 5066,
+ 5072
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 34
},
"end": {
- "line": 112,
+ "line": 159,
"column": 40
}
}
},
"range": [
- 3634,
- 3643
+ 5063,
+ 5072
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 31
},
"end": {
- "line": 112,
+ "line": 159,
"column": 40
}
}
},
"range": [
- 3632,
- 3643
+ 5061,
+ 5072
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 29
},
"end": {
- "line": 112,
+ "line": 159,
"column": 40
}
}
@@ -7577,32 +12227,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 3645,
- 3646
+ 5074,
+ 5075
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 42
},
"end": {
- "line": 112,
+ "line": 159,
"column": 43
}
}
},
"prefix": false,
"range": [
- 3645,
- 3648
+ 5074,
+ 5077
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 42
},
"end": {
- "line": 112,
+ "line": 159,
"column": 45
}
}
@@ -7622,16 +12272,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3764,
- 3766
+ 5193,
+ 5195
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 15
},
"end": {
- "line": 115,
+ "line": 162,
"column": 17
}
}
@@ -7640,31 +12290,31 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 3767,
- 3781
+ 5196,
+ 5210
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 18
},
"end": {
- "line": 115,
+ "line": 162,
"column": 32
}
}
},
"range": [
- 3764,
- 3781
+ 5193,
+ 5210
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 15
},
"end": {
- "line": 115,
+ "line": 162,
"column": 32
}
}
@@ -7684,16 +12334,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3785,
- 3787
+ 5214,
+ 5216
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 36
},
"end": {
- "line": 115,
+ "line": 162,
"column": 38
}
}
@@ -7702,31 +12352,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 3788,
- 3799
+ 5217,
+ 5228
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 39
},
"end": {
- "line": 115,
+ "line": 162,
"column": 50
}
}
},
"range": [
- 3785,
- 3799
+ 5214,
+ 5228
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 36
},
"end": {
- "line": 115,
+ "line": 162,
"column": 50
}
}
@@ -7735,31 +12385,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 3800,
- 3807
+ 5229,
+ 5236
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 51
},
"end": {
- "line": 115,
+ "line": 162,
"column": 58
}
}
},
"range": [
- 3785,
- 3807
+ 5214,
+ 5236
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 36
},
"end": {
- "line": 115,
+ "line": 162,
"column": 58
}
}
@@ -7769,32 +12419,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 3808,
- 3809
+ 5237,
+ 5238
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 59
},
"end": {
- "line": 115,
+ "line": 162,
"column": 60
}
}
}
],
"range": [
- 3785,
- 3810
+ 5214,
+ 5239
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 36
},
"end": {
- "line": 115,
+ "line": 162,
"column": 61
}
}
@@ -7807,62 +12457,62 @@
"value": 1,
"raw": "1",
"range": [
- 3816,
- 3817
+ 5245,
+ 5246
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 67
},
"end": {
- "line": 115,
+ "line": 162,
"column": 68
}
}
},
"prefix": true,
"range": [
- 3815,
- 3817
+ 5244,
+ 5246
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 66
},
"end": {
- "line": 115,
+ "line": 162,
"column": 68
}
}
},
"range": [
- 3785,
- 3817
+ 5214,
+ 5246
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 36
},
"end": {
- "line": 115,
+ "line": 162,
"column": 68
}
}
},
"range": [
- 3764,
- 3817
+ 5193,
+ 5246
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 15
},
"end": {
- "line": 115,
+ "line": 162,
"column": 68
}
}
@@ -7874,48 +12524,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 3836,
- 3845
+ 5265,
+ 5274
],
"loc": {
"start": {
- "line": 116,
+ "line": 163,
"column": 16
},
"end": {
- "line": 116,
+ "line": 163,
"column": 25
}
}
}
],
"range": [
- 3818,
- 3859
+ 5247,
+ 5288
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 69
},
"end": {
- "line": 117,
+ "line": 164,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3761,
- 3859
+ 5190,
+ 5288
],
"loc": {
"start": {
- "line": 115,
+ "line": 162,
"column": 12
},
"end": {
- "line": 117,
+ "line": 164,
"column": 13
}
},
@@ -7924,16 +12574,16 @@
"type": "Line",
"value": " always visible rows don't need to appear on selects as always",
"range": [
- 3663,
- 3727
+ 5092,
+ 5156
],
"loc": {
"start": {
- "line": 113,
+ "line": 160,
"column": 12
},
"end": {
- "line": 113,
+ "line": 160,
"column": 76
}
}
@@ -7942,16 +12592,16 @@
"type": "Line",
"value": " valid",
"range": [
- 3740,
- 3748
+ 5169,
+ 5177
],
"loc": {
"start": {
- "line": 114,
+ "line": 161,
"column": 12
},
"end": {
- "line": 114,
+ "line": 161,
"column": 20
}
}
@@ -7967,16 +12617,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 3877,
- 3881
+ 5306,
+ 5310
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 16
},
"end": {
- "line": 119,
+ "line": 166,
"column": 20
}
}
@@ -7991,16 +12641,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 3884,
- 3888
+ 5313,
+ 5317
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 23
},
"end": {
- "line": 119,
+ "line": 166,
"column": 27
}
}
@@ -8009,31 +12659,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 3889,
- 3890
+ 5318,
+ 5319
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 28
},
"end": {
- "line": 119,
+ "line": 166,
"column": 29
}
}
},
"range": [
- 3884,
- 3891
+ 5313,
+ 5320
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 23
},
"end": {
- "line": 119,
+ "line": 166,
"column": 30
}
}
@@ -8042,46 +12692,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 3892,
- 3897
+ 5321,
+ 5326
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 31
},
"end": {
- "line": 119,
+ "line": 166,
"column": 36
}
}
},
"range": [
- 3884,
- 3897
+ 5313,
+ 5326
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 23
},
"end": {
- "line": 119,
+ "line": 166,
"column": 36
}
}
},
"range": [
- 3877,
- 3897
+ 5306,
+ 5326
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 16
},
"end": {
- "line": 119,
+ "line": 166,
"column": 36
}
}
@@ -8092,16 +12742,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 3915,
- 3922
+ 5344,
+ 5351
],
"loc": {
"start": {
- "line": 120,
+ "line": 167,
"column": 16
},
"end": {
- "line": 120,
+ "line": 167,
"column": 23
}
}
@@ -8113,16 +12763,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 3925,
- 3929
+ 5354,
+ 5358
],
"loc": {
"start": {
- "line": 120,
+ "line": 167,
"column": 26
},
"end": {
- "line": 120,
+ "line": 167,
"column": 30
}
}
@@ -8131,63 +12781,63 @@
"type": "Identifier",
"name": "length",
"range": [
- 3930,
- 3936
+ 5359,
+ 5365
],
"loc": {
"start": {
- "line": 120,
+ "line": 167,
"column": 31
},
"end": {
- "line": 120,
+ "line": 167,
"column": 37
}
}
},
"range": [
- 3925,
- 3936
+ 5354,
+ 5365
],
"loc": {
"start": {
- "line": 120,
+ "line": 167,
"column": 26
},
"end": {
- "line": 120,
+ "line": 167,
"column": 37
}
}
},
"range": [
- 3915,
- 3936
+ 5344,
+ 5365
],
"loc": {
"start": {
- "line": 120,
+ "line": 167,
"column": 16
},
"end": {
- "line": 120,
+ "line": 167,
"column": 37
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3873,
- 3937
+ 5302,
+ 5366
],
"loc": {
"start": {
- "line": 119,
+ "line": 166,
"column": 12
},
"end": {
- "line": 120,
+ "line": 167,
"column": 38
}
},
@@ -8196,16 +12846,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 3951,
- 3984
+ 5380,
+ 5413
],
"loc": {
"start": {
- "line": 122,
+ "line": 169,
"column": 12
},
"end": {
- "line": 122,
+ "line": 169,
"column": 45
}
}
@@ -8224,16 +12874,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 4000,
- 4007
+ 5429,
+ 5436
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 15
},
"end": {
- "line": 123,
+ "line": 170,
"column": 22
}
}
@@ -8245,16 +12895,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4012,
- 4014
+ 5441,
+ 5443
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 27
},
"end": {
- "line": 123,
+ "line": 170,
"column": 29
}
}
@@ -8263,46 +12913,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 4015,
- 4022
+ 5444,
+ 5451
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 30
},
"end": {
- "line": 123,
+ "line": 170,
"column": 37
}
}
},
"range": [
- 4012,
- 4022
+ 5441,
+ 5451
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 27
},
"end": {
- "line": 123,
+ "line": 170,
"column": 37
}
}
},
"range": [
- 4000,
- 4022
+ 5429,
+ 5451
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 15
},
"end": {
- "line": 123,
+ "line": 170,
"column": 37
}
}
@@ -8313,16 +12963,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4026,
- 4030
+ 5455,
+ 5459
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 41
},
"end": {
- "line": 123,
+ "line": 170,
"column": 45
}
}
@@ -8331,46 +12981,46 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 4031,
- 4039
+ 5460,
+ 5468
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 46
},
"end": {
- "line": 123,
+ "line": 170,
"column": 54
}
}
},
"range": [
- 4026,
- 4039
+ 5455,
+ 5468
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 41
},
"end": {
- "line": 123,
+ "line": 170,
"column": 54
}
}
},
"range": [
- 4000,
- 4039
+ 5429,
+ 5468
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 15
},
"end": {
- "line": 123,
+ "line": 170,
"column": 54
}
}
@@ -8382,48 +13032,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 4058,
- 4067
+ 5487,
+ 5496
],
"loc": {
"start": {
- "line": 124,
+ "line": 171,
"column": 16
},
"end": {
- "line": 124,
+ "line": 171,
"column": 25
}
}
}
],
"range": [
- 4040,
- 4081
+ 5469,
+ 5510
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 55
},
"end": {
- "line": 125,
+ "line": 172,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3997,
- 4081
+ 5426,
+ 5510
],
"loc": {
"start": {
- "line": 123,
+ "line": 170,
"column": 12
},
"end": {
- "line": 125,
+ "line": 172,
"column": 13
}
},
@@ -8432,16 +13082,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 3951,
- 3984
+ 5380,
+ 5413
],
"loc": {
"start": {
- "line": 122,
+ "line": 169,
"column": 12
},
"end": {
- "line": 122,
+ "line": 169,
"column": 45
}
}
@@ -8452,16 +13102,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4095,
- 4127
+ 5524,
+ 5556
],
"loc": {
"start": {
- "line": 127,
+ "line": 174,
"column": 12
},
"end": {
- "line": 127,
+ "line": 174,
"column": 44
}
}
@@ -8479,16 +13129,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 4148,
- 4149
+ 5577,
+ 5578
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 20
},
"end": {
- "line": 128,
+ "line": 175,
"column": 21
}
}
@@ -8498,48 +13148,48 @@
"value": 0,
"raw": "0",
"range": [
- 4150,
- 4151
+ 5579,
+ 5580
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 22
},
"end": {
- "line": 128,
+ "line": 175,
"column": 23
}
}
},
"range": [
- 4148,
- 4151
+ 5577,
+ 5580
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 20
},
"end": {
- "line": 128,
+ "line": 175,
"column": 23
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4144,
- 4151
+ 5573,
+ 5580
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 16
},
"end": {
- "line": 128,
+ "line": 175,
"column": 23
}
}
@@ -8551,16 +13201,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 4153,
- 4154
+ 5582,
+ 5583
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 25
},
"end": {
- "line": 128,
+ "line": 175,
"column": 26
}
}
@@ -8569,31 +13219,31 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 4155,
- 4162
+ 5584,
+ 5591
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 27
},
"end": {
- "line": 128,
+ "line": 175,
"column": 34
}
}
},
"range": [
- 4153,
- 4162
+ 5582,
+ 5591
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 25
},
"end": {
- "line": 128,
+ "line": 175,
"column": 34
}
}
@@ -8605,32 +13255,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 4164,
- 4165
+ 5593,
+ 5594
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 36
},
"end": {
- "line": 128,
+ "line": 175,
"column": 37
}
}
},
"prefix": false,
"range": [
- 4164,
- 4167
+ 5593,
+ 5596
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 36
},
"end": {
- "line": 128,
+ "line": 175,
"column": 39
}
}
@@ -8653,16 +13303,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4241,
- 4249
+ 5670,
+ 5678
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 20
},
"end": {
- "line": 130,
+ "line": 177,
"column": 28
}
}
@@ -8671,31 +13321,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 4252,
- 4253
+ 5681,
+ 5682
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 31
},
"end": {
- "line": 130,
+ "line": 177,
"column": 32
}
}
},
"range": [
- 4241,
- 4253
+ 5670,
+ 5682
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 20
},
"end": {
- "line": 130,
+ "line": 177,
"column": 32
}
}
@@ -8710,32 +13360,32 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 4279,
- 4287
+ 5708,
+ 5716
],
"loc": {
"start": {
- "line": 131,
+ "line": 178,
"column": 22
},
"end": {
- "line": 131,
+ "line": 178,
"column": 30
}
}
},
"prefix": true,
"range": [
- 4278,
- 4287
+ 5707,
+ 5716
],
"loc": {
"start": {
- "line": 131,
+ "line": 178,
"column": 21
},
"end": {
- "line": 131,
+ "line": 178,
"column": 30
}
}
@@ -8747,16 +13397,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 4316,
- 4324
+ 5745,
+ 5753
],
"loc": {
"start": {
- "line": 132,
+ "line": 179,
"column": 25
},
"end": {
- "line": 132,
+ "line": 179,
"column": 33
}
}
@@ -8768,16 +13418,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4328,
- 4330
+ 5757,
+ 5759
],
"loc": {
"start": {
- "line": 132,
+ "line": 179,
"column": 37
},
"end": {
- "line": 132,
+ "line": 179,
"column": 39
}
}
@@ -8786,76 +13436,76 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 4331,
- 4353
+ 5760,
+ 5782
],
"loc": {
"start": {
- "line": 132,
+ "line": 179,
"column": 40
},
"end": {
- "line": 132,
+ "line": 179,
"column": 62
}
}
},
"range": [
- 4328,
- 4353
+ 5757,
+ 5782
],
"loc": {
"start": {
- "line": 132,
+ "line": 179,
"column": 37
},
"end": {
- "line": 132,
+ "line": 179,
"column": 62
}
}
},
"range": [
- 4316,
- 4353
+ 5745,
+ 5782
],
"loc": {
"start": {
- "line": 132,
+ "line": 179,
"column": 25
},
"end": {
- "line": 132,
+ "line": 179,
"column": 62
}
}
},
"range": [
- 4278,
- 4354
+ 5707,
+ 5783
],
"loc": {
"start": {
- "line": 131,
+ "line": 178,
"column": 21
},
"end": {
- "line": 132,
+ "line": 179,
"column": 63
}
}
},
"range": [
- 4241,
- 4355
+ 5670,
+ 5784
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 20
},
"end": {
- "line": 132,
+ "line": 179,
"column": 64
}
}
@@ -8873,16 +13523,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4381,
- 4389
+ 5810,
+ 5818
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 21
},
"end": {
- "line": 133,
+ "line": 180,
"column": 29
}
}
@@ -8891,31 +13541,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 4391,
- 4392
+ 5820,
+ 5821
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 31
},
"end": {
- "line": 133,
+ "line": 180,
"column": 32
}
}
},
"range": [
- 4381,
- 4392
+ 5810,
+ 5821
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 21
},
"end": {
- "line": 133,
+ "line": 180,
"column": 32
}
}
@@ -8924,31 +13574,31 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 4396,
- 4404
+ 5825,
+ 5833
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 36
},
"end": {
- "line": 133,
+ "line": 180,
"column": 44
}
}
},
"range": [
- 4381,
- 4404
+ 5810,
+ 5833
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 21
},
"end": {
- "line": 133,
+ "line": 180,
"column": 44
}
}
@@ -8975,16 +13625,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 4434,
- 4438
+ 5863,
+ 5867
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 30
}
}
@@ -8993,31 +13643,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 4439,
- 4440
+ 5868,
+ 5869
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 31
},
"end": {
- "line": 134,
+ "line": 181,
"column": 32
}
}
},
"range": [
- 4434,
- 4441
+ 5863,
+ 5870
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 33
}
}
@@ -9026,31 +13676,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4442,
- 4447
+ 5871,
+ 5876
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 34
},
"end": {
- "line": 134,
+ "line": 181,
"column": 39
}
}
},
"range": [
- 4434,
- 4447
+ 5863,
+ 5876
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 39
}
}
@@ -9059,31 +13709,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4448,
- 4455
+ 5877,
+ 5884
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 40
},
"end": {
- "line": 134,
+ "line": 181,
"column": 47
}
}
},
"range": [
- 4434,
- 4455
+ 5863,
+ 5884
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 47
}
}
@@ -9093,31 +13743,31 @@
"value": "",
"raw": "''",
"range": [
- 4460,
- 4462
+ 5889,
+ 5891
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 52
},
"end": {
- "line": 134,
+ "line": 181,
"column": 54
}
}
},
"range": [
- 4434,
- 4462
+ 5863,
+ 5891
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 54
}
}
@@ -9132,16 +13782,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4467,
- 4469
+ 5896,
+ 5898
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 59
},
"end": {
- "line": 134,
+ "line": 181,
"column": 61
}
}
@@ -9150,62 +13800,62 @@
"type": "Identifier",
"name": "paging",
"range": [
- 4470,
- 4476
+ 5899,
+ 5905
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 62
},
"end": {
- "line": 134,
+ "line": 181,
"column": 68
}
}
},
"range": [
- 4467,
- 4476
+ 5896,
+ 5905
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 59
},
"end": {
- "line": 134,
+ "line": 181,
"column": 68
}
}
},
"prefix": true,
"range": [
- 4466,
- 4476
+ 5895,
+ 5905
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 58
},
"end": {
- "line": 134,
+ "line": 181,
"column": 68
}
}
},
"range": [
- 4434,
- 4476
+ 5863,
+ 5905
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 26
},
"end": {
- "line": 134,
+ "line": 181,
"column": 68
}
}
@@ -9223,16 +13873,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4502,
- 4504
+ 5931,
+ 5933
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 21
},
"end": {
- "line": 135,
+ "line": 182,
"column": 23
}
}
@@ -9241,31 +13891,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 4505,
- 4511
+ 5934,
+ 5940
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 24
},
"end": {
- "line": 135,
+ "line": 182,
"column": 30
}
}
},
"range": [
- 4502,
- 4511
+ 5931,
+ 5940
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 21
},
"end": {
- "line": 135,
+ "line": 182,
"column": 30
}
}
@@ -9283,16 +13933,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4517,
- 4519
+ 5946,
+ 5948
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 36
},
"end": {
- "line": 135,
+ "line": 182,
"column": 38
}
}
@@ -9301,47 +13951,47 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4520,
- 4534
+ 5949,
+ 5963
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 39
},
"end": {
- "line": 135,
+ "line": 182,
"column": 53
}
}
},
"range": [
- 4517,
- 4534
+ 5946,
+ 5963
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 36
},
"end": {
- "line": 135,
+ "line": 182,
"column": 53
}
}
},
"prefix": true,
"range": [
- 4516,
- 4534
+ 5945,
+ 5963
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 35
},
"end": {
- "line": 135,
+ "line": 182,
"column": 53
}
}
@@ -9356,16 +14006,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4563,
- 4565
+ 5992,
+ 5994
],
"loc": {
"start": {
- "line": 136,
+ "line": 183,
"column": 25
},
"end": {
- "line": 136,
+ "line": 183,
"column": 27
}
}
@@ -9374,31 +14024,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4566,
- 4580
+ 5995,
+ 6009
],
"loc": {
"start": {
- "line": 136,
+ "line": 183,
"column": 28
},
"end": {
- "line": 136,
+ "line": 183,
"column": 42
}
}
},
"range": [
- 4563,
- 4580
+ 5992,
+ 6009
],
"loc": {
"start": {
- "line": 136,
+ "line": 183,
"column": 25
},
"end": {
- "line": 136,
+ "line": 183,
"column": 42
}
}
@@ -9418,16 +14068,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4612,
- 4614
+ 6041,
+ 6043
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 28
},
"end": {
- "line": 137,
+ "line": 184,
"column": 30
}
}
@@ -9436,31 +14086,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4615,
- 4629
+ 6044,
+ 6058
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 31
},
"end": {
- "line": 137,
+ "line": 184,
"column": 45
}
}
},
"range": [
- 4612,
- 4629
+ 6041,
+ 6058
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 28
},
"end": {
- "line": 137,
+ "line": 184,
"column": 45
}
}
@@ -9469,31 +14119,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 4630,
- 4637
+ 6059,
+ 6066
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 46
},
"end": {
- "line": 137,
+ "line": 184,
"column": 53
}
}
},
"range": [
- 4612,
- 4637
+ 6041,
+ 6066
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 28
},
"end": {
- "line": 137,
+ "line": 184,
"column": 53
}
}
@@ -9503,32 +14153,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 4638,
- 4639
+ 6067,
+ 6068
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 54
},
"end": {
- "line": 137,
+ "line": 184,
"column": 55
}
}
}
],
"range": [
- 4612,
- 4640
+ 6041,
+ 6069
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 28
},
"end": {
- "line": 137,
+ "line": 184,
"column": 56
}
}
@@ -9541,92 +14191,92 @@
"value": 1,
"raw": "1",
"range": [
- 4645,
- 4646
+ 6074,
+ 6075
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 61
},
"end": {
- "line": 137,
+ "line": 184,
"column": 62
}
}
},
"prefix": true,
"range": [
- 4644,
- 4646
+ 6073,
+ 6075
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 60
},
"end": {
- "line": 137,
+ "line": 184,
"column": 62
}
}
},
"range": [
- 4612,
- 4646
+ 6041,
+ 6075
],
"loc": {
"start": {
- "line": 137,
+ "line": 184,
"column": 28
},
"end": {
- "line": 137,
+ "line": 184,
"column": 62
}
}
},
"range": [
- 4563,
- 4646
+ 5992,
+ 6075
],
"loc": {
"start": {
- "line": 136,
+ "line": 183,
"column": 25
},
"end": {
- "line": 137,
+ "line": 184,
"column": 62
}
}
},
"range": [
- 4516,
- 4647
+ 5945,
+ 6076
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 35
},
"end": {
- "line": 137,
+ "line": 184,
"column": 63
}
}
},
"range": [
- 4502,
- 4648
+ 5931,
+ 6077
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 21
},
"end": {
- "line": 137,
+ "line": 184,
"column": 64
}
}
@@ -9644,16 +14294,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4678,
- 4687
+ 6107,
+ 6116
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 26
},
"end": {
- "line": 138,
+ "line": 185,
"column": 35
}
}
@@ -9662,31 +14312,31 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 4690,
- 4699
+ 6119,
+ 6128
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 38
},
"end": {
- "line": 138,
+ "line": 185,
"column": 47
}
}
},
"range": [
- 4678,
- 4699
+ 6107,
+ 6128
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 26
},
"end": {
- "line": 138,
+ "line": 185,
"column": 47
}
}
@@ -9698,16 +14348,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4703,
- 4712
+ 6132,
+ 6141
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 51
},
"end": {
- "line": 138,
+ "line": 185,
"column": 60
}
}
@@ -9716,46 +14366,46 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4714,
- 4722
+ 6143,
+ 6151
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 62
},
"end": {
- "line": 138,
+ "line": 185,
"column": 70
}
}
},
"range": [
- 4703,
- 4722
+ 6132,
+ 6151
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 51
},
"end": {
- "line": 138,
+ "line": 185,
"column": 70
}
}
},
"range": [
- 4678,
- 4722
+ 6107,
+ 6151
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 26
},
"end": {
- "line": 138,
+ "line": 185,
"column": 70
}
}
@@ -9770,16 +14420,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 4757,
- 4766
+ 6186,
+ 6195
],
"loc": {
"start": {
- "line": 139,
+ "line": 186,
"column": 29
},
"end": {
- "line": 139,
+ "line": 186,
"column": 38
}
}
@@ -9788,31 +14438,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4768,
- 4776
+ 6197,
+ 6205
],
"loc": {
"start": {
- "line": 139,
+ "line": 186,
"column": 40
},
"end": {
- "line": 139,
+ "line": 186,
"column": 48
}
}
},
"range": [
- 4757,
- 4776
+ 6186,
+ 6205
],
"loc": {
"start": {
- "line": 139,
+ "line": 186,
"column": 29
},
"end": {
- "line": 139,
+ "line": 186,
"column": 48
}
}
@@ -9832,16 +14482,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4812,
- 4814
+ 6241,
+ 6243
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 32
},
"end": {
- "line": 140,
+ "line": 187,
"column": 34
}
}
@@ -9850,31 +14500,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4815,
- 4829
+ 6244,
+ 6258
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 35
},
"end": {
- "line": 140,
+ "line": 187,
"column": 49
}
}
},
"range": [
- 4812,
- 4829
+ 6241,
+ 6258
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 32
},
"end": {
- "line": 140,
+ "line": 187,
"column": 49
}
}
@@ -9883,31 +14533,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 4830,
- 4837
+ 6259,
+ 6266
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 50
},
"end": {
- "line": 140,
+ "line": 187,
"column": 57
}
}
},
"range": [
- 4812,
- 4837
+ 6241,
+ 6266
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 32
},
"end": {
- "line": 140,
+ "line": 187,
"column": 57
}
}
@@ -9917,32 +14567,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 4838,
- 4839
+ 6267,
+ 6268
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 58
},
"end": {
- "line": 140,
+ "line": 187,
"column": 59
}
}
}
],
"range": [
- 4812,
- 4840
+ 6241,
+ 6269
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 32
},
"end": {
- "line": 140,
+ "line": 187,
"column": 60
}
}
@@ -9955,137 +14605,137 @@
"value": 1,
"raw": "1",
"range": [
- 4845,
- 4846
+ 6274,
+ 6275
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 65
},
"end": {
- "line": 140,
+ "line": 187,
"column": 66
}
}
},
"prefix": true,
"range": [
- 4844,
- 4846
+ 6273,
+ 6275
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 64
},
"end": {
- "line": 140,
+ "line": 187,
"column": 66
}
}
},
"range": [
- 4812,
- 4846
+ 6241,
+ 6275
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 32
},
"end": {
- "line": 140,
+ "line": 187,
"column": 66
}
}
},
"range": [
- 4757,
- 4846
+ 6186,
+ 6275
],
"loc": {
"start": {
- "line": 139,
+ "line": 186,
"column": 29
},
"end": {
- "line": 140,
+ "line": 187,
"column": 66
}
}
},
"range": [
- 4677,
- 4848
+ 6106,
+ 6277
],
"loc": {
"start": {
- "line": 138,
+ "line": 185,
"column": 25
},
"end": {
- "line": 140,
+ "line": 187,
"column": 68
}
}
},
"range": [
- 4502,
- 4849
+ 5931,
+ 6278
],
"loc": {
"start": {
- "line": 135,
+ "line": 182,
"column": 21
},
"end": {
- "line": 140,
+ "line": 187,
"column": 69
}
}
},
"range": [
- 4433,
- 4850
+ 5862,
+ 6279
],
"loc": {
"start": {
- "line": 134,
+ "line": 181,
"column": 25
},
"end": {
- "line": 140,
+ "line": 187,
"column": 70
}
}
},
"range": [
- 4381,
- 4852
+ 5810,
+ 6281
],
"loc": {
"start": {
- "line": 133,
+ "line": 180,
"column": 21
},
"end": {
- "line": 140,
+ "line": 187,
"column": 72
}
}
},
"range": [
- 4240,
- 4853
+ 5669,
+ 6282
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 19
},
"end": {
- "line": 140,
+ "line": 187,
"column": 73
}
}
@@ -10102,16 +14752,16 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 4880,
- 4889
+ 6309,
+ 6318
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 24
},
"end": {
- "line": 141,
+ "line": 188,
"column": 33
}
}
@@ -10125,16 +14775,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4892,
- 4894
+ 6321,
+ 6323
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 36
},
"end": {
- "line": 141,
+ "line": 188,
"column": 38
}
}
@@ -10143,31 +14793,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 4895,
- 4906
+ 6324,
+ 6335
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 39
},
"end": {
- "line": 141,
+ "line": 188,
"column": 50
}
}
},
"range": [
- 4892,
- 4906
+ 6321,
+ 6335
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 36
},
"end": {
- "line": 141,
+ "line": 188,
"column": 50
}
}
@@ -10180,16 +14830,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 4907,
- 4911
+ 6336,
+ 6340
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 51
},
"end": {
- "line": 141,
+ "line": 188,
"column": 55
}
}
@@ -10198,62 +14848,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 4912,
- 4913
+ 6341,
+ 6342
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 56
},
"end": {
- "line": 141,
+ "line": 188,
"column": 57
}
}
},
"range": [
- 4907,
- 4914
+ 6336,
+ 6343
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 51
},
"end": {
- "line": 141,
+ "line": 188,
"column": 58
}
}
}
],
"range": [
- 4892,
- 4915
+ 6321,
+ 6344
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 36
},
"end": {
- "line": 141,
+ "line": 188,
"column": 59
}
}
},
"range": [
- 4880,
- 4915
+ 6309,
+ 6344
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 24
},
"end": {
- "line": 141,
+ "line": 188,
"column": 59
}
}
@@ -10264,16 +14914,16 @@
"type": "Identifier",
"name": "cell_string",
"range": [
- 4986,
- 4997
+ 6415,
+ 6426
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 24
},
"end": {
- "line": 143,
+ "line": 190,
"column": 35
}
}
@@ -10287,16 +14937,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 5000,
- 5003
+ 6429,
+ 6432
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 38
},
"end": {
- "line": 143,
+ "line": 190,
"column": 41
}
}
@@ -10305,31 +14955,31 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5004,
- 5013
+ 6433,
+ 6442
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 42
},
"end": {
- "line": 143,
+ "line": 190,
"column": 51
}
}
},
"range": [
- 5000,
- 5013
+ 6429,
+ 6442
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 38
},
"end": {
- "line": 143,
+ "line": 190,
"column": 51
}
}
@@ -10339,16 +14989,16 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5014,
- 5023
+ 6443,
+ 6452
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 52
},
"end": {
- "line": 143,
+ "line": 190,
"column": 61
}
}
@@ -10357,47 +15007,47 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5025,
- 5034
+ 6454,
+ 6463
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 63
},
"end": {
- "line": 143,
+ "line": 190,
"column": 72
}
}
}
],
"range": [
- 5000,
- 5035
+ 6429,
+ 6464
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 38
},
"end": {
- "line": 143,
+ "line": 190,
"column": 73
}
}
},
"range": [
- 4986,
- 5035
+ 6415,
+ 6464
],
"loc": {
"start": {
- "line": 143,
+ "line": 190,
"column": 24
},
"end": {
- "line": 143,
+ "line": 190,
"column": 73
}
},
@@ -10406,16 +15056,16 @@
"type": "Line",
"value": "Vary Peter's patch",
"range": [
- 4941,
- 4961
+ 6370,
+ 6390
],
"loc": {
"start": {
- "line": 142,
+ "line": 189,
"column": 24
},
"end": {
- "line": 142,
+ "line": 189,
"column": 44
}
}
@@ -10423,18 +15073,18 @@
]
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4876,
- 5036
+ 6305,
+ 6465
],
"loc": {
"start": {
- "line": 141,
+ "line": 188,
"column": 20
},
"end": {
- "line": 143,
+ "line": 190,
"column": 74
}
},
@@ -10443,16 +15093,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5058,
- 5099
+ 6487,
+ 6528
],
"loc": {
"start": {
- "line": 145,
+ "line": 192,
"column": 20
},
"end": {
- "line": 145,
+ "line": 192,
"column": 61
}
}
@@ -10473,16 +15123,16 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 5124,
- 5127
+ 6553,
+ 6556
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 24
},
"end": {
- "line": 146,
+ "line": 193,
"column": 27
}
}
@@ -10491,31 +15141,31 @@
"type": "Identifier",
"name": "has",
"range": [
- 5128,
- 5131
+ 6557,
+ 6560
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 28
},
"end": {
- "line": 146,
+ "line": 193,
"column": 31
}
}
},
"range": [
- 5124,
- 5131
+ 6553,
+ 6560
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 24
},
"end": {
- "line": 146,
+ "line": 193,
"column": 31
}
}
@@ -10527,16 +15177,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5132,
- 5136
+ 6561,
+ 6565
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 32
},
"end": {
- "line": 146,
+ "line": 193,
"column": 36
}
}
@@ -10545,31 +15195,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 5137,
- 5141
+ 6566,
+ 6570
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 37
},
"end": {
- "line": 146,
+ "line": 193,
"column": 41
}
}
},
"range": [
- 5132,
- 5141
+ 6561,
+ 6570
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 32
},
"end": {
- "line": 146,
+ "line": 193,
"column": 41
}
}
@@ -10578,16 +15228,16 @@
"type": "Identifier",
"name": "cell_string",
"range": [
- 5143,
- 5154
+ 6572,
+ 6583
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 43
},
"end": {
- "line": 146,
+ "line": 193,
"column": 54
}
}
@@ -10596,48 +15246,48 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 5156,
- 5165
+ 6585,
+ 6594
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 56
},
"end": {
- "line": 146,
+ "line": 193,
"column": 65
}
}
}
],
"range": [
- 5124,
- 5166
+ 6553,
+ 6595
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 24
},
"end": {
- "line": 146,
+ "line": 193,
"column": 66
}
}
},
"prefix": true,
"range": [
- 5123,
- 5166
+ 6552,
+ 6595
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 23
},
"end": {
- "line": 146,
+ "line": 193,
"column": 66
}
}
@@ -10658,16 +15308,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5193,
- 5197
+ 6622,
+ 6626
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 24
},
"end": {
- "line": 147,
+ "line": 194,
"column": 28
}
}
@@ -10676,31 +15326,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 5198,
- 5202
+ 6627,
+ 6631
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 29
},
"end": {
- "line": 147,
+ "line": 194,
"column": 33
}
}
},
"range": [
- 5193,
- 5202
+ 6622,
+ 6631
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 24
},
"end": {
- "line": 147,
+ "line": 194,
"column": 33
}
}
@@ -10709,31 +15359,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 5203,
- 5207
+ 6632,
+ 6636
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 34
},
"end": {
- "line": 147,
+ "line": 194,
"column": 38
}
}
},
"range": [
- 5193,
- 5207
+ 6622,
+ 6636
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 24
},
"end": {
- "line": 147,
+ "line": 194,
"column": 38
}
}
@@ -10743,79 +15393,79 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5208,
- 5217
+ 6637,
+ 6646
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 39
},
"end": {
- "line": 147,
+ "line": 194,
"column": 48
}
}
}
],
"range": [
- 5193,
- 5218
+ 6622,
+ 6647
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 24
},
"end": {
- "line": 147,
+ "line": 194,
"column": 49
}
}
},
"range": [
- 5193,
- 5219
+ 6622,
+ 6648
],
"loc": {
"start": {
- "line": 147,
+ "line": 194,
"column": 24
},
"end": {
- "line": 147,
+ "line": 194,
"column": 50
}
}
}
],
"range": [
- 5167,
- 5241
+ 6596,
+ 6670
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 67
},
"end": {
- "line": 148,
+ "line": 195,
"column": 21
}
}
},
"alternate": null,
"range": [
- 5120,
- 5241
+ 6549,
+ 6670
],
"loc": {
"start": {
- "line": 146,
+ "line": 193,
"column": 20
},
"end": {
- "line": 148,
+ "line": 195,
"column": 21
}
},
@@ -10824,16 +15474,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5058,
- 5099
+ 6487,
+ 6528
],
"loc": {
"start": {
- "line": 145,
+ "line": 192,
"column": 20
},
"end": {
- "line": 145,
+ "line": 192,
"column": 61
}
}
@@ -10849,16 +15499,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 5266,
- 5274
+ 6695,
+ 6703
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 23
},
"end": {
- "line": 150,
+ "line": 197,
"column": 31
}
}
@@ -10870,16 +15520,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5278,
- 5280
+ 6707,
+ 6709
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 35
},
"end": {
- "line": 150,
+ "line": 197,
"column": 37
}
}
@@ -10888,46 +15538,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 5281,
- 5303
+ 6710,
+ 6732
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 38
},
"end": {
- "line": 150,
+ "line": 197,
"column": 60
}
}
},
"range": [
- 5278,
- 5303
+ 6707,
+ 6732
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 35
},
"end": {
- "line": 150,
+ "line": 197,
"column": 60
}
}
},
"range": [
- 5266,
- 5303
+ 6695,
+ 6732
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 23
},
"end": {
- "line": 150,
+ "line": 197,
"column": 60
}
}
@@ -10944,16 +15594,16 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5334,
- 5345
+ 6763,
+ 6774
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 28
},
"end": {
- "line": 151,
+ "line": 198,
"column": 39
}
}
@@ -10965,16 +15615,16 @@
"type": "Identifier",
"name": "filteredDataCol",
"range": [
- 5348,
- 5363
+ 6777,
+ 6792
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 42
},
"end": {
- "line": 151,
+ "line": 198,
"column": 57
}
}
@@ -10983,63 +15633,63 @@
"type": "Identifier",
"name": "j",
"range": [
- 5364,
- 5365
+ 6793,
+ 6794
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 58
},
"end": {
- "line": 151,
+ "line": 198,
"column": 59
}
}
},
"range": [
- 5348,
- 5366
+ 6777,
+ 6795
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 42
},
"end": {
- "line": 151,
+ "line": 198,
"column": 60
}
}
},
"range": [
- 5334,
- 5366
+ 6763,
+ 6795
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 28
},
"end": {
- "line": 151,
+ "line": 198,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5330,
- 5367
+ 6759,
+ 6796
],
"loc": {
"start": {
- "line": 151,
+ "line": 198,
"column": 24
},
"end": {
- "line": 151,
+ "line": 198,
"column": 61
}
}
@@ -11053,32 +15703,32 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5396,
- 5407
+ 6825,
+ 6836
],
"loc": {
"start": {
- "line": 152,
+ "line": 199,
"column": 28
},
"end": {
- "line": 152,
+ "line": 199,
"column": 39
}
}
},
"prefix": true,
"range": [
- 5395,
- 5407
+ 6824,
+ 6836
],
"loc": {
"start": {
- "line": 152,
+ "line": 199,
"column": 27
},
"end": {
- "line": 152,
+ "line": 199,
"column": 39
}
}
@@ -11095,16 +15745,16 @@
"type": "Identifier",
"name": "filteredCol",
"range": [
- 5438,
- 5449
+ 6867,
+ 6878
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 28
},
"end": {
- "line": 153,
+ "line": 200,
"column": 39
}
}
@@ -11118,16 +15768,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5452,
- 5454
+ 6881,
+ 6883
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 42
},
"end": {
- "line": 153,
+ "line": 200,
"column": 44
}
}
@@ -11136,31 +15786,31 @@
"type": "Identifier",
"name": "getFilteredDataCol",
"range": [
- 5455,
- 5473
+ 6884,
+ 6902
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 45
},
"end": {
- "line": 153,
+ "line": 200,
"column": 63
}
}
},
"range": [
- 5452,
- 5473
+ 6881,
+ 6902
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 42
},
"end": {
- "line": 153,
+ "line": 200,
"column": 63
}
}
@@ -11170,94 +15820,94 @@
"type": "Identifier",
"name": "j",
"range": [
- 5474,
- 5475
+ 6903,
+ 6904
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 64
},
"end": {
- "line": 153,
+ "line": 200,
"column": 65
}
}
}
],
"range": [
- 5452,
- 5476
+ 6881,
+ 6905
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 42
},
"end": {
- "line": 153,
+ "line": 200,
"column": 66
}
}
},
"range": [
- 5438,
- 5476
+ 6867,
+ 6905
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 28
},
"end": {
- "line": 153,
+ "line": 200,
"column": 66
}
}
},
"range": [
- 5438,
- 5477
+ 6867,
+ 6906
],
"loc": {
"start": {
- "line": 153,
+ "line": 200,
"column": 28
},
"end": {
- "line": 153,
+ "line": 200,
"column": 67
}
}
}
],
"range": [
- 5408,
- 5503
+ 6837,
+ 6932
],
"loc": {
"start": {
- "line": 152,
+ "line": 199,
"column": 40
},
"end": {
- "line": 154,
+ "line": 201,
"column": 25
}
}
},
"alternate": null,
"range": [
- 5392,
- 5503
+ 6821,
+ 6932
],
"loc": {
"start": {
- "line": 152,
+ "line": 199,
"column": 24
},
"end": {
- "line": 154,
+ "line": 201,
"column": 25
}
}
@@ -11268,312 +15918,148 @@
"type": "LogicalExpression",
"operator": "&&",
"left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 5532,
- 5535
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 28
- },
- "end": {
- "line": 155,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 5536,
- 5539
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 32
- },
- "end": {
- "line": 155,
- "column": 35
- }
- }
- },
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
"range": [
- 5532,
- 5539
+ 6961,
+ 6964
],
"loc": {
"start": {
- "line": 155,
+ "line": 202,
"column": 28
},
"end": {
- "line": 155,
+ "line": 202,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 6965,
+ 6968
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 32
+ },
+ "end": {
+ "line": 202,
"column": 35
}
}
},
- "arguments": [
- {
- "type": "Identifier",
- "name": "filteredCol",
- "range": [
- 5540,
- 5551
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 36
- },
- "end": {
- "line": 155,
- "column": 47
- }
- }
- },
- {
- "type": "Identifier",
- "name": "cell_string",
- "range": [
- 5553,
- 5564
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 49
- },
- "end": {
- "line": 155,
- "column": 60
- }
- }
- },
- {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 5566,
- 5575
- ],
- "loc": {
- "start": {
- "line": 155,
- "column": 62
- },
- "end": {
- "line": 155,
- "column": 71
- }
- }
- }
- ],
"range": [
- 5532,
- 5576
+ 6961,
+ 6968
],
"loc": {
"start": {
- "line": 155,
+ "line": 202,
"column": 28
},
"end": {
- "line": 155,
- "column": 72
+ "line": 202,
+ "column": 35
}
}
},
- "prefix": true,
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "filteredCol",
+ "range": [
+ 6969,
+ 6980
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 36
+ },
+ "end": {
+ "line": 202,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell_string",
+ "range": [
+ 6982,
+ 6993
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 49
+ },
+ "end": {
+ "line": 202,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "matchCase",
+ "range": [
+ 6995,
+ 7004
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 62
+ },
+ "end": {
+ "line": 202,
+ "column": 71
+ }
+ }
+ }
+ ],
"range": [
- 5531,
- 5576
+ 6961,
+ 7005
],
"loc": {
"start": {
- "line": 155,
- "column": 27
+ "line": 202,
+ "column": 28
},
"end": {
- "line": 155,
+ "line": 202,
"column": 72
}
}
},
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 5609,
- 5612
- ],
- "loc": {
- "start": {
- "line": 156,
- "column": 29
- },
- "end": {
- "line": 156,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 5613,
- 5616
- ],
- "loc": {
- "start": {
- "line": 156,
- "column": 33
- },
- "end": {
- "line": 156,
- "column": 36
- }
- }
- },
- "range": [
- 5609,
- 5616
- ],
- "loc": {
- "start": {
- "line": 156,
- "column": 29
- },
- "end": {
- "line": 156,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "excludedOpts",
- "range": [
- 5650,
- 5662
- ],
- "loc": {
- "start": {
- "line": 157,
- "column": 32
- },
- "end": {
- "line": 157,
- "column": 44
- }
- }
- },
- {
- "type": "Identifier",
- "name": "cell_string",
- "range": [
- 5664,
- 5675
- ],
- "loc": {
- "start": {
- "line": 157,
- "column": 46
- },
- "end": {
- "line": 157,
- "column": 57
- }
- }
- },
- {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 5677,
- 5686
- ],
- "loc": {
- "start": {
- "line": 157,
- "column": 59
- },
- "end": {
- "line": 157,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 5609,
- 5687
- ],
- "loc": {
- "start": {
- "line": 156,
- "column": 29
- },
- "end": {
- "line": 157,
- "column": 69
- }
- }
- },
- "prefix": true,
- "range": [
- 5608,
- 5687
- ],
- "loc": {
- "start": {
- "line": 156,
- "column": 28
- },
- "end": {
- "line": 157,
- "column": 69
- }
- }
- },
+ "prefix": true,
"range": [
- 5531,
- 5687
+ 6960,
+ 7005
],
"loc": {
"start": {
- "line": 155,
+ "line": 202,
"column": 27
},
"end": {
- "line": 157,
- "column": 69
+ "line": 202,
+ "column": 72
}
}
},
@@ -11581,86 +16067,160 @@
"type": "UnaryExpression",
"operator": "!",
"argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
+ "range": [
+ 7038,
+ 7041
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 29
+ },
+ "end": {
+ "line": 203,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 7042,
+ 7045
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 33
+ },
+ "end": {
+ "line": 203,
+ "column": 36
+ }
+ }
+ },
"range": [
- 5720,
- 5724
+ 7038,
+ 7045
],
"loc": {
"start": {
- "line": 158,
+ "line": 203,
"column": 29
},
"end": {
- "line": 158,
- "column": 33
+ "line": 203,
+ "column": 36
}
}
},
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 5725,
- 5736
- ],
- "loc": {
- "start": {
- "line": 158,
- "column": 34
- },
- "end": {
- "line": 158,
- "column": 45
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "excludedOpts",
+ "range": [
+ 7079,
+ 7091
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 32
+ },
+ "end": {
+ "line": 204,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell_string",
+ "range": [
+ 7093,
+ 7104
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 46
+ },
+ "end": {
+ "line": 204,
+ "column": 57
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "matchCase",
+ "range": [
+ 7106,
+ 7115
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 59
+ },
+ "end": {
+ "line": 204,
+ "column": 68
+ }
}
}
- },
+ ],
"range": [
- 5720,
- 5736
+ 7038,
+ 7116
],
"loc": {
"start": {
- "line": 158,
+ "line": 203,
"column": 29
},
"end": {
- "line": 158,
- "column": 45
+ "line": 204,
+ "column": 69
}
}
},
"prefix": true,
"range": [
- 5719,
- 5736
+ 7037,
+ 7116
],
"loc": {
"start": {
- "line": 158,
+ "line": 203,
"column": 28
},
"end": {
- "line": 158,
- "column": 45
+ "line": 204,
+ "column": 69
}
}
},
"range": [
- 5531,
- 5736
+ 6960,
+ 7116
],
"loc": {
"start": {
- "line": 155,
+ "line": 202,
"column": 27
},
"end": {
- "line": 158,
- "column": 45
+ "line": 204,
+ "column": 69
}
}
},
@@ -11678,16 +16238,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 5767,
- 5779
+ 7147,
+ 7159
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 28
},
"end": {
- "line": 159,
+ "line": 205,
"column": 40
}
}
@@ -11696,31 +16256,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 5780,
- 5784
+ 7160,
+ 7164
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 41
},
"end": {
- "line": 159,
+ "line": 205,
"column": 45
}
}
},
"range": [
- 5767,
- 5784
+ 7147,
+ 7164
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 28
},
"end": {
- "line": 159,
+ "line": 205,
"column": 45
}
}
@@ -11730,143 +16290,143 @@
"type": "Identifier",
"name": "cell_data",
"range": [
- 5785,
- 5794
+ 7165,
+ 7174
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 46
},
"end": {
- "line": 159,
+ "line": 205,
"column": 55
}
}
}
],
"range": [
- 5767,
- 5795
+ 7147,
+ 7175
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 28
},
"end": {
- "line": 159,
+ "line": 205,
"column": 56
}
}
},
"range": [
- 5767,
- 5796
+ 7147,
+ 7176
],
"loc": {
"start": {
- "line": 159,
+ "line": 205,
"column": 28
},
"end": {
- "line": 159,
+ "line": 205,
"column": 57
}
}
}
],
"range": [
- 5737,
- 5822
+ 7117,
+ 7202
],
"loc": {
"start": {
- "line": 158,
- "column": 46
+ "line": 204,
+ "column": 70
},
"end": {
- "line": 160,
+ "line": 206,
"column": 25
}
}
},
"alternate": null,
"range": [
- 5528,
- 5822
+ 6957,
+ 7202
],
"loc": {
"start": {
- "line": 155,
+ "line": 202,
"column": 24
},
"end": {
- "line": 160,
+ "line": 206,
"column": 25
}
}
}
],
"range": [
- 5304,
- 5844
+ 6733,
+ 7224
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 61
},
"end": {
- "line": 161,
+ "line": 207,
"column": 21
}
}
},
"alternate": null,
"range": [
- 5263,
- 5844
+ 6692,
+ 7224
],
"loc": {
"start": {
- "line": 150,
+ "line": 197,
"column": 20
},
"end": {
- "line": 161,
+ "line": 207,
"column": 21
}
}
}
],
"range": [
- 4854,
- 5862
+ 6283,
+ 7242
],
"loc": {
"start": {
- "line": 140,
+ "line": 187,
"column": 74
},
"end": {
- "line": 162,
+ "line": 208,
"column": 17
}
}
},
"alternate": null,
"range": [
- 4237,
- 5862
+ 5666,
+ 7242
],
"loc": {
"start": {
- "line": 130,
+ "line": 177,
"column": 16
},
"end": {
- "line": 162,
+ "line": 208,
"column": 17
}
},
@@ -11875,16 +16435,16 @@
"type": "Line",
"value": " WTF: cyclomatic complexity hell",
"range": [
- 4186,
- 4220
+ 5615,
+ 5649
],
"loc": {
"start": {
- "line": 129,
+ "line": 176,
"column": 16
},
"end": {
- "line": 129,
+ "line": 176,
"column": 50
}
}
@@ -11895,16 +16455,16 @@
"type": "Line",
"value": "if colIndex==j",
"range": [
- 5862,
- 5878
+ 7242,
+ 7258
],
"loc": {
"start": {
- "line": 162,
+ "line": 208,
"column": 17
},
"end": {
- "line": 162,
+ "line": 208,
"column": 33
}
}
@@ -11913,31 +16473,31 @@
}
],
"range": [
- 4168,
- 5892
+ 5597,
+ 7272
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 40
},
"end": {
- "line": 163,
+ "line": 209,
"column": 13
}
}
},
"range": [
- 4140,
- 5892
+ 5569,
+ 7272
],
"loc": {
"start": {
- "line": 128,
+ "line": 175,
"column": 12
},
"end": {
- "line": 163,
+ "line": 209,
"column": 13
}
},
@@ -11946,16 +16506,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4095,
- 4127
+ 5524,
+ 5556
],
"loc": {
"start": {
- "line": 127,
+ "line": 174,
"column": 12
},
"end": {
- "line": 127,
+ "line": 174,
"column": 44
}
}
@@ -11966,16 +16526,16 @@
"type": "Line",
"value": "for j",
"range": [
- 5892,
- 5899
+ 7272,
+ 7279
],
"loc": {
"start": {
- "line": 163,
+ "line": 209,
"column": 13
},
"end": {
- "line": 163,
+ "line": 209,
"column": 20
}
}
@@ -11984,31 +16544,31 @@
}
],
"range": [
- 3649,
- 5909
+ 5078,
+ 7289
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 46
},
"end": {
- "line": 164,
+ "line": 210,
"column": 9
}
}
},
"range": [
- 3611,
- 5909
+ 5040,
+ 7289
],
"loc": {
"start": {
- "line": 112,
+ "line": 159,
"column": 8
},
"end": {
- "line": 164,
+ "line": 210,
"column": 9
}
},
@@ -12017,16 +16577,16 @@
"type": "Line",
"value": "for k",
"range": [
- 5909,
- 5916
+ 7289,
+ 7296
],
"loc": {
"start": {
- "line": 164,
+ "line": 210,
"column": 9
},
"end": {
- "line": 164,
+ "line": 210,
"column": 16
}
}
@@ -12035,16 +16595,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5926,
- 5951
+ 7306,
+ 7331
],
"loc": {
"start": {
- "line": 166,
+ "line": 212,
"column": 8
},
"end": {
- "line": 166,
+ "line": 212,
"column": 33
}
}
@@ -12059,16 +16619,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5963,
- 5967
+ 7343,
+ 7347
],
"loc": {
"start": {
- "line": 167,
+ "line": 213,
"column": 11
},
"end": {
- "line": 167,
+ "line": 213,
"column": 15
}
}
@@ -12077,31 +16637,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 5968,
- 5976
+ 7348,
+ 7356
],
"loc": {
"start": {
- "line": 167,
+ "line": 213,
"column": 16
},
"end": {
- "line": 167,
+ "line": 213,
"column": 24
}
}
},
"range": [
- 5963,
- 5976
+ 7343,
+ 7356
],
"loc": {
"start": {
- "line": 167,
+ "line": 213,
"column": 11
},
"end": {
- "line": 167,
+ "line": 213,
"column": 24
}
}
@@ -12118,16 +16678,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 5995,
- 6007
+ 7375,
+ 7387
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 16
},
"end": {
- "line": 168,
+ "line": 214,
"column": 28
}
}
@@ -12141,16 +16701,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6010,
- 6012
+ 7390,
+ 7392
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 31
},
"end": {
- "line": 168,
+ "line": 214,
"column": 33
}
}
@@ -12159,31 +16719,31 @@
"type": "Identifier",
"name": "getCustomOptions",
"range": [
- 6013,
- 6029
+ 7393,
+ 7409
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 34
},
"end": {
- "line": 168,
+ "line": 214,
"column": 50
}
}
},
"range": [
- 6010,
- 6029
+ 7390,
+ 7409
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 31
},
"end": {
- "line": 168,
+ "line": 214,
"column": 50
}
}
@@ -12193,64 +16753,64 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6030,
- 6038
+ 7410,
+ 7418
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 51
},
"end": {
- "line": 168,
+ "line": 214,
"column": 59
}
}
}
],
"range": [
- 6010,
- 6039
+ 7390,
+ 7419
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 31
},
"end": {
- "line": 168,
+ "line": 214,
"column": 60
}
}
},
"range": [
- 5995,
- 6039
+ 7375,
+ 7419
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 16
},
"end": {
- "line": 168,
+ "line": 214,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5991,
- 6040
+ 7371,
+ 7420
],
"loc": {
"start": {
- "line": 168,
+ "line": 214,
"column": 12
},
"end": {
- "line": 168,
+ "line": 214,
"column": 61
}
}
@@ -12266,16 +16826,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6053,
- 6057
+ 7433,
+ 7437
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 12
},
"end": {
- "line": 169,
+ "line": 215,
"column": 16
}
}
@@ -12284,31 +16844,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6058,
- 6062
+ 7438,
+ 7442
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 17
},
"end": {
- "line": 169,
+ "line": 215,
"column": 21
}
}
},
"range": [
- 6053,
- 6062
+ 7433,
+ 7442
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 12
},
"end": {
- "line": 169,
+ "line": 215,
"column": 21
}
}
@@ -12320,16 +16880,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 6065,
- 6077
+ 7445,
+ 7457
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 24
},
"end": {
- "line": 169,
+ "line": 215,
"column": 36
}
}
@@ -12339,61 +16899,61 @@
"value": 0,
"raw": "0",
"range": [
- 6078,
- 6079
+ 7458,
+ 7459
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 37
},
"end": {
- "line": 169,
+ "line": 215,
"column": 38
}
}
},
"range": [
- 6065,
- 6080
+ 7445,
+ 7460
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 24
},
"end": {
- "line": 169,
+ "line": 215,
"column": 39
}
}
},
"range": [
- 6053,
- 6080
+ 7433,
+ 7460
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 12
},
"end": {
- "line": 169,
+ "line": 215,
"column": 39
}
}
},
"range": [
- 6053,
- 6081
+ 7433,
+ 7461
],
"loc": {
"start": {
- "line": 169,
+ "line": 215,
"column": 12
},
"end": {
- "line": 169,
+ "line": 215,
"column": 40
}
}
@@ -12409,16 +16969,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6094,
- 6098
+ 7474,
+ 7478
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 12
},
"end": {
- "line": 170,
+ "line": 216,
"column": 16
}
}
@@ -12427,31 +16987,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 6099,
- 6106
+ 7479,
+ 7486
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 17
},
"end": {
- "line": 170,
+ "line": 216,
"column": 24
}
}
},
"range": [
- 6094,
- 6106
+ 7474,
+ 7486
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 12
},
"end": {
- "line": 170,
+ "line": 216,
"column": 24
}
}
@@ -12463,16 +17023,16 @@
"type": "Identifier",
"name": "customValues",
"range": [
- 6109,
- 6121
+ 7489,
+ 7501
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 27
},
"end": {
- "line": 170,
+ "line": 216,
"column": 39
}
}
@@ -12482,93 +17042,93 @@
"value": 1,
"raw": "1",
"range": [
- 6122,
- 6123
+ 7502,
+ 7503
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 40
},
"end": {
- "line": 170,
+ "line": 216,
"column": 41
}
}
},
"range": [
- 6109,
- 6124
+ 7489,
+ 7504
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 27
},
"end": {
- "line": 170,
+ "line": 216,
"column": 42
}
}
},
"range": [
- 6094,
- 6124
+ 7474,
+ 7504
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 12
},
"end": {
- "line": 170,
+ "line": 216,
"column": 42
}
}
},
"range": [
- 6094,
- 6125
+ 7474,
+ 7505
],
"loc": {
"start": {
- "line": 170,
+ "line": 216,
"column": 12
},
"end": {
- "line": 170,
+ "line": 216,
"column": 43
}
}
}
],
"range": [
- 5977,
- 6135
+ 7357,
+ 7515
],
"loc": {
"start": {
- "line": 167,
+ "line": 213,
"column": 25
},
"end": {
- "line": 171,
+ "line": 217,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5960,
- 6135
+ 7340,
+ 7515
],
"loc": {
"start": {
- "line": 167,
+ "line": 213,
"column": 8
},
"end": {
- "line": 171,
+ "line": 217,
"column": 9
}
},
@@ -12577,16 +17137,16 @@
"type": "Line",
"value": "if colIndex==j",
"range": [
- 5862,
- 5878
+ 7242,
+ 7258
],
"loc": {
"start": {
- "line": 162,
+ "line": 208,
"column": 17
},
"end": {
- "line": 162,
+ "line": 208,
"column": 33
}
}
@@ -12595,16 +17155,16 @@
"type": "Line",
"value": "for j",
"range": [
- 5892,
- 5899
+ 7272,
+ 7279
],
"loc": {
"start": {
- "line": 163,
+ "line": 209,
"column": 13
},
"end": {
- "line": 163,
+ "line": 209,
"column": 20
}
}
@@ -12613,16 +17173,16 @@
"type": "Line",
"value": "for k",
"range": [
- 5909,
- 5916
+ 7289,
+ 7296
],
"loc": {
"start": {
- "line": 164,
+ "line": 210,
"column": 9
},
"end": {
- "line": 164,
+ "line": 210,
"column": 16
}
}
@@ -12631,16 +17191,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5926,
- 5951
+ 7306,
+ 7331
],
"loc": {
"start": {
- "line": 166,
+ "line": 212,
"column": 8
},
"end": {
- "line": 166,
+ "line": 212,
"column": 33
}
}
@@ -12659,16 +17219,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6148,
- 6150
+ 7528,
+ 7530
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 11
},
"end": {
- "line": 173,
+ "line": 219,
"column": 13
}
}
@@ -12677,31 +17237,31 @@
"type": "Identifier",
"name": "sortSlc",
"range": [
- 6151,
- 6158
+ 7531,
+ 7538
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 14
},
"end": {
- "line": 173,
+ "line": 219,
"column": 21
}
}
},
"range": [
- 6148,
- 6158
+ 7528,
+ 7538
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 11
},
"end": {
- "line": 173,
+ "line": 219,
"column": 21
}
}
@@ -12715,16 +17275,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6163,
- 6167
+ 7543,
+ 7547
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 26
},
"end": {
- "line": 173,
+ "line": 219,
"column": 30
}
}
@@ -12733,62 +17293,62 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 6168,
- 6176
+ 7548,
+ 7556
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 31
},
"end": {
- "line": 173,
+ "line": 219,
"column": 39
}
}
},
"range": [
- 6163,
- 6176
+ 7543,
+ 7556
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 26
},
"end": {
- "line": 173,
+ "line": 219,
"column": 39
}
}
},
"prefix": true,
"range": [
- 6162,
- 6176
+ 7542,
+ 7556
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 25
},
"end": {
- "line": 173,
+ "line": 219,
"column": 39
}
}
},
"range": [
- 6148,
- 6176
+ 7528,
+ 7556
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 11
},
"end": {
- "line": 173,
+ "line": 219,
"column": 39
}
}
@@ -12805,32 +17365,32 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 6196,
- 6205
+ 7576,
+ 7585
],
"loc": {
"start": {
- "line": 174,
+ "line": 220,
"column": 17
},
"end": {
- "line": 174,
+ "line": 220,
"column": 26
}
}
},
"prefix": true,
"range": [
- 6195,
- 6205
+ 7575,
+ 7585
],
"loc": {
"start": {
- "line": 174,
+ "line": 220,
"column": 16
},
"end": {
- "line": 174,
+ "line": 220,
"column": 26
}
}
@@ -12851,16 +17411,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6224,
- 6228
+ 7604,
+ 7608
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 16
},
"end": {
- "line": 175,
+ "line": 221,
"column": 20
}
}
@@ -12869,31 +17429,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6229,
- 6233
+ 7609,
+ 7613
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 21
},
"end": {
- "line": 175,
+ "line": 221,
"column": 25
}
}
},
"range": [
- 6224,
- 6233
+ 7604,
+ 7613
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 16
},
"end": {
- "line": 175,
+ "line": 221,
"column": 25
}
}
@@ -12902,31 +17462,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6234,
- 6238
+ 7614,
+ 7618
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 26
},
"end": {
- "line": 175,
+ "line": 221,
"column": 30
}
}
},
"range": [
- 6224,
- 6238
+ 7604,
+ 7618
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 16
},
"end": {
- "line": 175,
+ "line": 221,
"column": 30
}
}
@@ -12939,16 +17499,16 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 6239,
- 6243
+ 7619,
+ 7623
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 31
},
"end": {
- "line": 175,
+ "line": 221,
"column": 35
}
}
@@ -12957,62 +17517,62 @@
"type": "Identifier",
"name": "ignoreCase",
"range": [
- 6244,
- 6254
+ 7624,
+ 7634
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 36
},
"end": {
- "line": 175,
+ "line": 221,
"column": 46
}
}
},
"range": [
- 6239,
- 6254
+ 7619,
+ 7634
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 31
},
"end": {
- "line": 175,
+ "line": 221,
"column": 46
}
}
}
],
"range": [
- 6224,
- 6255
+ 7604,
+ 7635
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 16
},
"end": {
- "line": 175,
+ "line": 221,
"column": 47
}
}
},
"range": [
- 6224,
- 6256
+ 7604,
+ 7636
],
"loc": {
"start": {
- "line": 175,
+ "line": 221,
"column": 16
},
"end": {
- "line": 175,
+ "line": 221,
"column": 48
}
}
@@ -13023,16 +17583,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6276,
- 6288
+ 7656,
+ 7668
],
"loc": {
"start": {
- "line": 176,
+ "line": 222,
"column": 19
},
"end": {
- "line": 176,
+ "line": 222,
"column": 31
}
}
@@ -13051,16 +17611,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6311,
- 6323
+ 7691,
+ 7703
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 20
},
"end": {
- "line": 177,
+ "line": 223,
"column": 32
}
}
@@ -13069,31 +17629,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6324,
- 6328
+ 7704,
+ 7708
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 33
},
"end": {
- "line": 177,
+ "line": 223,
"column": 37
}
}
},
"range": [
- 6311,
- 6328
+ 7691,
+ 7708
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 20
},
"end": {
- "line": 177,
+ "line": 223,
"column": 37
}
}
@@ -13106,16 +17666,16 @@
"type": "Identifier",
"name": "Sort",
"range": [
- 6329,
- 6333
+ 7709,
+ 7713
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 38
},
"end": {
- "line": 177,
+ "line": 223,
"column": 42
}
}
@@ -13124,110 +17684,110 @@
"type": "Identifier",
"name": "ignoreCase",
"range": [
- 6334,
- 6344
+ 7714,
+ 7724
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 43
},
"end": {
- "line": 177,
+ "line": 223,
"column": 53
}
}
},
"range": [
- 6329,
- 6344
+ 7709,
+ 7724
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 38
},
"end": {
- "line": 177,
+ "line": 223,
"column": 53
}
}
}
],
"range": [
- 6311,
- 6345
+ 7691,
+ 7725
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 20
},
"end": {
- "line": 177,
+ "line": 223,
"column": 54
}
}
},
"range": [
- 6311,
- 6346
+ 7691,
+ 7726
],
"loc": {
"start": {
- "line": 177,
+ "line": 223,
"column": 20
},
"end": {
- "line": 177,
+ "line": 223,
"column": 55
}
}
}
],
"range": [
- 6289,
- 6364
+ 7669,
+ 7744
],
"loc": {
"start": {
- "line": 176,
+ "line": 222,
"column": 32
},
"end": {
- "line": 178,
+ "line": 224,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6273,
- 6364
+ 7653,
+ 7744
],
"loc": {
"start": {
- "line": 176,
+ "line": 222,
"column": 16
},
"end": {
- "line": 178,
+ "line": 224,
"column": 17
}
}
}
],
"range": [
- 6206,
- 6378
+ 7586,
+ 7758
],
"loc": {
"start": {
- "line": 174,
+ "line": 220,
"column": 27
},
"end": {
- "line": 179,
+ "line": 225,
"column": 13
}
}
@@ -13248,16 +17808,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6402,
- 6406
+ 7782,
+ 7786
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 16
},
"end": {
- "line": 180,
+ "line": 226,
"column": 20
}
}
@@ -13266,31 +17826,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6407,
- 6411
+ 7787,
+ 7791
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 21
},
"end": {
- "line": 180,
+ "line": 226,
"column": 25
}
}
},
"range": [
- 6402,
- 6411
+ 7782,
+ 7791
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 16
},
"end": {
- "line": 180,
+ "line": 226,
"column": 25
}
}
@@ -13299,62 +17859,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6412,
- 6416
+ 7792,
+ 7796
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 26
},
"end": {
- "line": 180,
+ "line": 226,
"column": 30
}
}
},
"range": [
- 6402,
- 6416
+ 7782,
+ 7796
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 16
},
"end": {
- "line": 180,
+ "line": 226,
"column": 30
}
}
},
"arguments": [],
"range": [
- 6402,
- 6418
+ 7782,
+ 7798
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 16
},
"end": {
- "line": 180,
+ "line": 226,
"column": 32
}
}
},
"range": [
- 6402,
- 6419
+ 7782,
+ 7799
],
"loc": {
"start": {
- "line": 180,
+ "line": 226,
"column": 16
},
"end": {
- "line": 180,
+ "line": 226,
"column": 33
}
}
@@ -13365,16 +17925,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6439,
- 6451
+ 7819,
+ 7831
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 19
},
"end": {
- "line": 181,
+ "line": 227,
"column": 31
}
}
@@ -13393,16 +17953,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6454,
- 6466
+ 7834,
+ 7846
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 34
},
"end": {
- "line": 181,
+ "line": 227,
"column": 46
}
}
@@ -13411,157 +17971,157 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6467,
- 6471
+ 7847,
+ 7851
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 47
},
"end": {
- "line": 181,
+ "line": 227,
"column": 51
}
}
},
"range": [
- 6454,
- 6471
+ 7834,
+ 7851
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 34
},
"end": {
- "line": 181,
+ "line": 227,
"column": 51
}
}
},
"arguments": [],
"range": [
- 6454,
- 6473
+ 7834,
+ 7853
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 34
},
"end": {
- "line": 181,
+ "line": 227,
"column": 53
}
}
},
"range": [
- 6454,
- 6474
+ 7834,
+ 7854
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 34
},
"end": {
- "line": 181,
+ "line": 227,
"column": 54
}
}
}
],
"range": [
- 6452,
- 6476
+ 7832,
+ 7856
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 32
},
"end": {
- "line": 181,
+ "line": 227,
"column": 56
}
}
},
"alternate": null,
"range": [
- 6436,
- 6476
+ 7816,
+ 7856
],
"loc": {
"start": {
- "line": 181,
+ "line": 227,
"column": 16
},
"end": {
- "line": 181,
+ "line": 227,
"column": 56
}
}
}
],
"range": [
- 6384,
- 6490
+ 7764,
+ 7870
],
"loc": {
"start": {
- "line": 179,
+ "line": 225,
"column": 19
},
"end": {
- "line": 182,
+ "line": 228,
"column": 13
}
}
},
"range": [
- 6191,
- 6490
+ 7571,
+ 7870
],
"loc": {
"start": {
- "line": 174,
+ "line": 220,
"column": 12
},
"end": {
- "line": 182,
+ "line": 228,
"column": 13
}
}
}
],
"range": [
- 6177,
- 6500
+ 7557,
+ 7880
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 40
},
"end": {
- "line": 183,
+ "line": 229,
"column": 9
}
}
},
"alternate": null,
"range": [
- 6145,
- 6500
+ 7525,
+ 7880
],
"loc": {
"start": {
- "line": 173,
+ "line": 219,
"column": 8
},
"end": {
- "line": 183,
+ "line": 229,
"column": 9
}
},
@@ -13570,16 +18130,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6510,
- 6520
+ 7890,
+ 7900
],
"loc": {
"start": {
- "line": 185,
+ "line": 231,
"column": 8
},
"end": {
- "line": 185,
+ "line": 231,
"column": 18
}
}
@@ -13598,16 +18158,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6532,
- 6534
+ 7912,
+ 7914
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 11
},
"end": {
- "line": 186,
+ "line": 232,
"column": 13
}
}
@@ -13616,31 +18176,31 @@
"type": "Identifier",
"name": "sortNumAsc",
"range": [
- 6535,
- 6545
+ 7915,
+ 7925
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 14
},
"end": {
- "line": 186,
+ "line": 232,
"column": 24
}
}
},
"range": [
- 6532,
- 6545
+ 7912,
+ 7925
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 11
},
"end": {
- "line": 186,
+ "line": 232,
"column": 24
}
}
@@ -13660,16 +18220,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6549,
- 6551
+ 7929,
+ 7931
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 28
},
"end": {
- "line": 186,
+ "line": 232,
"column": 30
}
}
@@ -13678,31 +18238,31 @@
"type": "Identifier",
"name": "sortNumAsc",
"range": [
- 6552,
- 6562
+ 7932,
+ 7942
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 31
},
"end": {
- "line": 186,
+ "line": 232,
"column": 41
}
}
},
"range": [
- 6549,
- 6562
+ 7929,
+ 7942
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 28
},
"end": {
- "line": 186,
+ "line": 232,
"column": 41
}
}
@@ -13711,31 +18271,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 6563,
- 6570
+ 7943,
+ 7950
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 42
},
"end": {
- "line": 186,
+ "line": 232,
"column": 49
}
}
},
"range": [
- 6549,
- 6570
+ 7929,
+ 7950
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 28
},
"end": {
- "line": 186,
+ "line": 232,
"column": 49
}
}
@@ -13745,32 +18305,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6571,
- 6579
+ 7951,
+ 7959
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 50
},
"end": {
- "line": 186,
+ "line": 232,
"column": 58
}
}
}
],
"range": [
- 6549,
- 6580
+ 7929,
+ 7960
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 28
},
"end": {
- "line": 186,
+ "line": 232,
"column": 59
}
}
@@ -13783,62 +18343,62 @@
"value": 1,
"raw": "1",
"range": [
- 6585,
- 6586
+ 7965,
+ 7966
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 64
},
"end": {
- "line": 186,
+ "line": 232,
"column": 65
}
}
},
"prefix": true,
"range": [
- 6584,
- 6586
+ 7964,
+ 7966
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 63
},
"end": {
- "line": 186,
+ "line": 232,
"column": 65
}
}
},
"range": [
- 6549,
- 6586
+ 7929,
+ 7966
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 28
},
"end": {
- "line": 186,
+ "line": 232,
"column": 65
}
}
},
"range": [
- 6532,
- 6586
+ 7912,
+ 7966
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 11
},
"end": {
- "line": 186,
+ "line": 232,
"column": 65
}
}
@@ -13864,16 +18424,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6622,
- 6626
+ 8002,
+ 8006
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 16
},
"end": {
- "line": 188,
+ "line": 234,
"column": 20
}
}
@@ -13882,31 +18442,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6627,
- 6631
+ 8007,
+ 8011
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 21
},
"end": {
- "line": 188,
+ "line": 234,
"column": 25
}
}
},
"range": [
- 6622,
- 6631
+ 8002,
+ 8011
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 16
},
"end": {
- "line": 188,
+ "line": 234,
"column": 25
}
}
@@ -13915,31 +18475,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6632,
- 6636
+ 8012,
+ 8016
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 26
},
"end": {
- "line": 188,
+ "line": 234,
"column": 30
}
}
},
"range": [
- 6622,
- 6636
+ 8002,
+ 8016
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 16
},
"end": {
- "line": 188,
+ "line": 234,
"column": 30
}
}
@@ -13949,47 +18509,47 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6638,
- 6648
+ 8018,
+ 8028
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 32
},
"end": {
- "line": 188,
+ "line": 234,
"column": 42
}
}
}
],
"range": [
- 6622,
- 6650
+ 8002,
+ 8030
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 16
},
"end": {
- "line": 188,
+ "line": 234,
"column": 44
}
}
},
"range": [
- 6622,
- 6651
+ 8002,
+ 8031
],
"loc": {
"start": {
- "line": 188,
+ "line": 234,
"column": 16
},
"end": {
- "line": 188,
+ "line": 234,
"column": 45
}
}
@@ -14000,16 +18560,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6671,
- 6683
+ 8051,
+ 8063
],
"loc": {
"start": {
- "line": 189,
+ "line": 235,
"column": 19
},
"end": {
- "line": 189,
+ "line": 235,
"column": 31
}
}
@@ -14028,16 +18588,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6706,
- 6718
+ 8086,
+ 8098
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 20
},
"end": {
- "line": 190,
+ "line": 236,
"column": 32
}
}
@@ -14046,31 +18606,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6719,
- 6723
+ 8099,
+ 8103
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 33
},
"end": {
- "line": 190,
+ "line": 236,
"column": 37
}
}
},
"range": [
- 6706,
- 6723
+ 8086,
+ 8103
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 20
},
"end": {
- "line": 190,
+ "line": 236,
"column": 37
}
}
@@ -14080,79 +18640,79 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6724,
- 6734
+ 8104,
+ 8114
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 38
},
"end": {
- "line": 190,
+ "line": 236,
"column": 48
}
}
}
],
"range": [
- 6706,
- 6735
+ 8086,
+ 8115
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 20
},
"end": {
- "line": 190,
+ "line": 236,
"column": 49
}
}
},
"range": [
- 6706,
- 6736
+ 8086,
+ 8116
],
"loc": {
"start": {
- "line": 190,
+ "line": 236,
"column": 20
},
"end": {
- "line": 190,
+ "line": 236,
"column": 50
}
}
}
],
"range": [
- 6684,
- 6754
+ 8064,
+ 8134
],
"loc": {
"start": {
- "line": 189,
+ "line": 235,
"column": 32
},
"end": {
- "line": 191,
+ "line": 237,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6668,
- 6754
+ 8048,
+ 8134
],
"loc": {
"start": {
- "line": 189,
+ "line": 235,
"column": 16
},
"end": {
- "line": 191,
+ "line": 237,
"column": 17
}
}
@@ -14165,16 +18725,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6774,
- 6778
+ 8154,
+ 8158
],
"loc": {
"start": {
- "line": 192,
+ "line": 238,
"column": 19
},
"end": {
- "line": 192,
+ "line": 238,
"column": 23
}
}
@@ -14183,31 +18743,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 6779,
- 6787
+ 8159,
+ 8167
],
"loc": {
"start": {
- "line": 192,
+ "line": 238,
"column": 24
},
"end": {
- "line": 192,
+ "line": 238,
"column": 32
}
}
},
"range": [
- 6774,
- 6787
+ 8154,
+ 8167
],
"loc": {
"start": {
- "line": 192,
+ "line": 238,
"column": 19
},
"end": {
- "line": 192,
+ "line": 238,
"column": 32
}
}
@@ -14228,16 +18788,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6810,
- 6814
+ 8190,
+ 8194
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 20
},
"end": {
- "line": 193,
+ "line": 239,
"column": 24
}
}
@@ -14246,31 +18806,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 6815,
- 6822
+ 8195,
+ 8202
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 25
},
"end": {
- "line": 193,
+ "line": 239,
"column": 32
}
}
},
"range": [
- 6810,
- 6822
+ 8190,
+ 8202
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 20
},
"end": {
- "line": 193,
+ "line": 239,
"column": 32
}
}
@@ -14279,31 +18839,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6823,
- 6827
+ 8203,
+ 8207
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 33
},
"end": {
- "line": 193,
+ "line": 239,
"column": 37
}
}
},
"range": [
- 6810,
- 6827
+ 8190,
+ 8207
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 20
},
"end": {
- "line": 193,
+ "line": 239,
"column": 37
}
}
@@ -14313,95 +18873,95 @@
"type": "Identifier",
"name": "numSortAsc",
"range": [
- 6828,
- 6838
+ 8208,
+ 8218
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 38
},
"end": {
- "line": 193,
+ "line": 239,
"column": 48
}
}
}
],
"range": [
- 6810,
- 6839
+ 8190,
+ 8219
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 20
},
"end": {
- "line": 193,
+ "line": 239,
"column": 49
}
}
},
"range": [
- 6810,
- 6840
+ 8190,
+ 8220
],
"loc": {
"start": {
- "line": 193,
+ "line": 239,
"column": 20
},
"end": {
- "line": 193,
+ "line": 239,
"column": 50
}
}
}
],
"range": [
- 6788,
- 6858
+ 8168,
+ 8238
],
"loc": {
"start": {
- "line": 192,
+ "line": 238,
"column": 33
},
"end": {
- "line": 194,
+ "line": 240,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6771,
- 6858
+ 8151,
+ 8238
],
"loc": {
"start": {
- "line": 192,
+ "line": 238,
"column": 16
},
"end": {
- "line": 194,
+ "line": 240,
"column": 17
}
}
}
],
"range": [
- 6604,
- 6872
+ 7984,
+ 8252
],
"loc": {
"start": {
- "line": 187,
+ "line": 233,
"column": 15
},
"end": {
- "line": 195,
+ "line": 241,
"column": 13
}
}
@@ -14412,16 +18972,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 6879,
- 6880
+ 8259,
+ 8260
],
"loc": {
"start": {
- "line": 195,
+ "line": 241,
"column": 20
},
"end": {
- "line": 195,
+ "line": 241,
"column": 21
}
}
@@ -14442,16 +19002,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6900,
- 6904
+ 8280,
+ 8284
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 16
},
"end": {
- "line": 196,
+ "line": 242,
"column": 20
}
}
@@ -14460,31 +19020,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 6905,
- 6909
+ 8285,
+ 8289
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 21
},
"end": {
- "line": 196,
+ "line": 242,
"column": 25
}
}
},
"range": [
- 6900,
- 6909
+ 8280,
+ 8289
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 16
},
"end": {
- "line": 196,
+ "line": 242,
"column": 25
}
}
@@ -14493,62 +19053,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6910,
- 6914
+ 8290,
+ 8294
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 26
},
"end": {
- "line": 196,
+ "line": 242,
"column": 30
}
}
},
"range": [
- 6900,
- 6914
+ 8280,
+ 8294
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 16
},
"end": {
- "line": 196,
+ "line": 242,
"column": 30
}
}
},
"arguments": [],
"range": [
- 6900,
- 6916
+ 8280,
+ 8296
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 16
},
"end": {
- "line": 196,
+ "line": 242,
"column": 32
}
}
},
"range": [
- 6900,
- 6917
+ 8280,
+ 8297
],
"loc": {
"start": {
- "line": 196,
+ "line": 242,
"column": 16
},
"end": {
- "line": 196,
+ "line": 242,
"column": 33
}
}
@@ -14559,16 +19119,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6937,
- 6949
+ 8317,
+ 8329
],
"loc": {
"start": {
- "line": 197,
+ "line": 243,
"column": 19
},
"end": {
- "line": 197,
+ "line": 243,
"column": 31
}
}
@@ -14587,16 +19147,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 6972,
- 6984
+ 8352,
+ 8364
],
"loc": {
"start": {
- "line": 198,
+ "line": 244,
"column": 20
},
"end": {
- "line": 198,
+ "line": 244,
"column": 32
}
}
@@ -14605,94 +19165,94 @@
"type": "Identifier",
"name": "sort",
"range": [
- 6985,
- 6989
+ 8365,
+ 8369
],
"loc": {
"start": {
- "line": 198,
+ "line": 244,
"column": 33
},
"end": {
- "line": 198,
+ "line": 244,
"column": 37
}
}
},
"range": [
- 6972,
- 6989
+ 8352,
+ 8369
],
"loc": {
"start": {
- "line": 198,
+ "line": 244,
"column": 20
},
"end": {
- "line": 198,
+ "line": 244,
"column": 37
}
}
},
"arguments": [],
"range": [
- 6972,
- 6991
+ 8352,
+ 8371
],
"loc": {
"start": {
- "line": 198,
+ "line": 244,
"column": 20
},
"end": {
- "line": 198,
+ "line": 244,
"column": 39
}
}
},
"range": [
- 6972,
- 6992
+ 8352,
+ 8372
],
"loc": {
"start": {
- "line": 198,
+ "line": 244,
"column": 20
},
"end": {
- "line": 198,
+ "line": 244,
"column": 40
}
}
}
],
"range": [
- 6950,
- 7010
+ 8330,
+ 8390
],
"loc": {
"start": {
- "line": 197,
+ "line": 243,
"column": 32
},
"end": {
- "line": 199,
+ "line": 245,
"column": 17
}
}
},
"alternate": null,
"range": [
- 6934,
- 7010
+ 8314,
+ 8390
],
"loc": {
"start": {
- "line": 197,
+ "line": 243,
"column": 16
},
"end": {
- "line": 199,
+ "line": 245,
"column": 17
}
}
@@ -14705,16 +19265,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7030,
- 7034
+ 8410,
+ 8414
],
"loc": {
"start": {
- "line": 200,
+ "line": 246,
"column": 19
},
"end": {
- "line": 200,
+ "line": 246,
"column": 23
}
}
@@ -14723,31 +19283,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7035,
- 7043
+ 8415,
+ 8423
],
"loc": {
"start": {
- "line": 200,
+ "line": 246,
"column": 24
},
"end": {
- "line": 200,
+ "line": 246,
"column": 32
}
}
},
"range": [
- 7030,
- 7043
+ 8410,
+ 8423
],
"loc": {
"start": {
- "line": 200,
+ "line": 246,
"column": 19
},
"end": {
- "line": 200,
+ "line": 246,
"column": 32
}
}
@@ -14768,16 +19328,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7066,
- 7070
+ 8446,
+ 8450
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 20
},
"end": {
- "line": 201,
+ "line": 247,
"column": 24
}
}
@@ -14786,31 +19346,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7071,
- 7078
+ 8451,
+ 8458
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 25
},
"end": {
- "line": 201,
+ "line": 247,
"column": 32
}
}
},
"range": [
- 7066,
- 7078
+ 8446,
+ 8458
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 20
},
"end": {
- "line": 201,
+ "line": 247,
"column": 32
}
}
@@ -14819,141 +19379,141 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7079,
- 7083
+ 8459,
+ 8463
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 33
},
"end": {
- "line": 201,
+ "line": 247,
"column": 37
}
}
},
"range": [
- 7066,
- 7083
+ 8446,
+ 8463
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 20
},
"end": {
- "line": 201,
+ "line": 247,
"column": 37
}
}
},
"arguments": [],
"range": [
- 7066,
- 7085
+ 8446,
+ 8465
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 20
},
"end": {
- "line": 201,
+ "line": 247,
"column": 39
}
}
},
"range": [
- 7066,
- 7086
+ 8446,
+ 8466
],
"loc": {
"start": {
- "line": 201,
+ "line": 247,
"column": 20
},
"end": {
- "line": 201,
+ "line": 247,
"column": 40
}
}
}
],
"range": [
- 7044,
- 7104
+ 8424,
+ 8484
],
"loc": {
"start": {
- "line": 200,
+ "line": 246,
"column": 33
},
"end": {
- "line": 202,
+ "line": 248,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7027,
- 7104
+ 8407,
+ 8484
],
"loc": {
"start": {
- "line": 200,
+ "line": 246,
"column": 16
},
"end": {
- "line": 202,
+ "line": 248,
"column": 17
}
}
}
],
"range": [
- 6882,
- 7118
+ 8262,
+ 8498
],
"loc": {
"start": {
- "line": 195,
+ "line": 241,
"column": 23
},
"end": {
- "line": 203,
+ "line": 249,
"column": 13
}
}
},
"range": [
- 6873,
- 7118
+ 8253,
+ 8498
],
"loc": {
"start": {
- "line": 195,
+ "line": 241,
"column": 14
},
"end": {
- "line": 203,
+ "line": 249,
"column": 13
}
}
},
"finalizer": null,
"range": [
- 6601,
- 7118
+ 7981,
+ 8498
],
"loc": {
"start": {
- "line": 187,
+ "line": 233,
"column": 12
},
"end": {
- "line": 203,
+ "line": 249,
"column": 13
}
},
@@ -14962,16 +19522,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7118,
- 7157
+ 8498,
+ 8537
],
"loc": {
"start": {
- "line": 203,
+ "line": 249,
"column": 13
},
"end": {
- "line": 203,
+ "line": 249,
"column": 52
}
}
@@ -14980,32 +19540,32 @@
}
],
"range": [
- 6587,
- 7167
+ 7967,
+ 8547
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 66
},
"end": {
- "line": 204,
+ "line": 250,
"column": 9
}
}
},
"alternate": null,
"range": [
- 6529,
- 7167
+ 7909,
+ 8547
],
"loc": {
"start": {
- "line": 186,
+ "line": 232,
"column": 8
},
"end": {
- "line": 204,
+ "line": 250,
"column": 9
}
},
@@ -15014,16 +19574,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6510,
- 6520
+ 7890,
+ 7900
],
"loc": {
"start": {
- "line": 185,
+ "line": 231,
"column": 8
},
"end": {
- "line": 185,
+ "line": 231,
"column": 18
}
}
@@ -15034,16 +19594,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7176,
- 7187
+ 8556,
+ 8567
],
"loc": {
"start": {
- "line": 205,
+ "line": 251,
"column": 8
},
"end": {
- "line": 205,
+ "line": 251,
"column": 19
}
}
@@ -15062,16 +19622,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7199,
- 7201
+ 8579,
+ 8581
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 11
},
"end": {
- "line": 206,
+ "line": 252,
"column": 13
}
}
@@ -15080,31 +19640,31 @@
"type": "Identifier",
"name": "sortNumDesc",
"range": [
- 7202,
- 7213
+ 8582,
+ 8593
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 14
},
"end": {
- "line": 206,
+ "line": 252,
"column": 25
}
}
},
"range": [
- 7199,
- 7213
+ 8579,
+ 8593
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 11
},
"end": {
- "line": 206,
+ "line": 252,
"column": 25
}
}
@@ -15124,16 +19684,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7217,
- 7219
+ 8597,
+ 8599
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 29
},
"end": {
- "line": 206,
+ "line": 252,
"column": 31
}
}
@@ -15142,31 +19702,31 @@
"type": "Identifier",
"name": "sortNumDesc",
"range": [
- 7220,
- 7231
+ 8600,
+ 8611
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 32
},
"end": {
- "line": 206,
+ "line": 252,
"column": 43
}
}
},
"range": [
- 7217,
- 7231
+ 8597,
+ 8611
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 29
},
"end": {
- "line": 206,
+ "line": 252,
"column": 43
}
}
@@ -15175,31 +19735,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 7232,
- 7239
+ 8612,
+ 8619
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 44
},
"end": {
- "line": 206,
+ "line": 252,
"column": 51
}
}
},
"range": [
- 7217,
- 7239
+ 8597,
+ 8619
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 29
},
"end": {
- "line": 206,
+ "line": 252,
"column": 51
}
}
@@ -15209,32 +19769,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 7240,
- 7248
+ 8620,
+ 8628
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 52
},
"end": {
- "line": 206,
+ "line": 252,
"column": 60
}
}
}
],
"range": [
- 7217,
- 7249
+ 8597,
+ 8629
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 29
},
"end": {
- "line": 206,
+ "line": 252,
"column": 61
}
}
@@ -15247,62 +19807,62 @@
"value": 1,
"raw": "1",
"range": [
- 7254,
- 7255
+ 8634,
+ 8635
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 66
},
"end": {
- "line": 206,
+ "line": 252,
"column": 67
}
}
},
"prefix": true,
"range": [
- 7253,
- 7255
+ 8633,
+ 8635
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 65
},
"end": {
- "line": 206,
+ "line": 252,
"column": 67
}
}
},
"range": [
- 7217,
- 7255
+ 8597,
+ 8635
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 29
},
"end": {
- "line": 206,
+ "line": 252,
"column": 67
}
}
},
"range": [
- 7199,
- 7255
+ 8579,
+ 8635
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 11
},
"end": {
- "line": 206,
+ "line": 252,
"column": 67
}
}
@@ -15328,16 +19888,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7291,
- 7295
+ 8671,
+ 8675
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 16
},
"end": {
- "line": 208,
+ "line": 254,
"column": 20
}
}
@@ -15346,31 +19906,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 7296,
- 7300
+ 8676,
+ 8680
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 21
},
"end": {
- "line": 208,
+ "line": 254,
"column": 25
}
}
},
"range": [
- 7291,
- 7300
+ 8671,
+ 8680
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 16
},
"end": {
- "line": 208,
+ "line": 254,
"column": 25
}
}
@@ -15379,31 +19939,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7301,
- 7305
+ 8681,
+ 8685
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 26
},
"end": {
- "line": 208,
+ "line": 254,
"column": 30
}
}
},
"range": [
- 7291,
- 7305
+ 8671,
+ 8685
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 16
},
"end": {
- "line": 208,
+ "line": 254,
"column": 30
}
}
@@ -15413,47 +19973,47 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7306,
- 7317
+ 8686,
+ 8697
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 31
},
"end": {
- "line": 208,
+ "line": 254,
"column": 42
}
}
}
],
"range": [
- 7291,
- 7318
+ 8671,
+ 8698
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 16
},
"end": {
- "line": 208,
+ "line": 254,
"column": 43
}
}
},
"range": [
- 7291,
- 7319
+ 8671,
+ 8699
],
"loc": {
"start": {
- "line": 208,
+ "line": 254,
"column": 16
},
"end": {
- "line": 208,
+ "line": 254,
"column": 44
}
}
@@ -15464,16 +20024,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7339,
- 7351
+ 8719,
+ 8731
],
"loc": {
"start": {
- "line": 209,
+ "line": 255,
"column": 19
},
"end": {
- "line": 209,
+ "line": 255,
"column": 31
}
}
@@ -15492,16 +20052,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7374,
- 7386
+ 8754,
+ 8766
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 20
},
"end": {
- "line": 210,
+ "line": 256,
"column": 32
}
}
@@ -15510,31 +20070,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7387,
- 7391
+ 8767,
+ 8771
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 33
},
"end": {
- "line": 210,
+ "line": 256,
"column": 37
}
}
},
"range": [
- 7374,
- 7391
+ 8754,
+ 8771
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 20
},
"end": {
- "line": 210,
+ "line": 256,
"column": 37
}
}
@@ -15544,79 +20104,79 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7392,
- 7403
+ 8772,
+ 8783
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 38
},
"end": {
- "line": 210,
+ "line": 256,
"column": 49
}
}
}
],
"range": [
- 7374,
- 7404
+ 8754,
+ 8784
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 20
},
"end": {
- "line": 210,
+ "line": 256,
"column": 50
}
}
},
"range": [
- 7374,
- 7405
+ 8754,
+ 8785
],
"loc": {
"start": {
- "line": 210,
+ "line": 256,
"column": 20
},
"end": {
- "line": 210,
+ "line": 256,
"column": 51
}
}
}
],
"range": [
- 7352,
- 7423
+ 8732,
+ 8803
],
"loc": {
"start": {
- "line": 209,
+ "line": 255,
"column": 32
},
"end": {
- "line": 211,
+ "line": 257,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7336,
- 7423
+ 8716,
+ 8803
],
"loc": {
"start": {
- "line": 209,
+ "line": 255,
"column": 16
},
"end": {
- "line": 211,
+ "line": 257,
"column": 17
}
}
@@ -15629,16 +20189,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7443,
- 7447
+ 8823,
+ 8827
],
"loc": {
"start": {
- "line": 212,
+ "line": 258,
"column": 19
},
"end": {
- "line": 212,
+ "line": 258,
"column": 23
}
}
@@ -15647,31 +20207,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7448,
- 7456
+ 8828,
+ 8836
],
"loc": {
"start": {
- "line": 212,
+ "line": 258,
"column": 24
},
"end": {
- "line": 212,
+ "line": 258,
"column": 32
}
}
},
"range": [
- 7443,
- 7456
+ 8823,
+ 8836
],
"loc": {
"start": {
- "line": 212,
+ "line": 258,
"column": 19
},
"end": {
- "line": 212,
+ "line": 258,
"column": 32
}
}
@@ -15692,16 +20252,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7479,
- 7483
+ 8859,
+ 8863
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 20
},
"end": {
- "line": 213,
+ "line": 259,
"column": 24
}
}
@@ -15710,31 +20270,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7484,
- 7491
+ 8864,
+ 8871
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 25
},
"end": {
- "line": 213,
+ "line": 259,
"column": 32
}
}
},
"range": [
- 7479,
- 7491
+ 8859,
+ 8871
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 20
},
"end": {
- "line": 213,
+ "line": 259,
"column": 32
}
}
@@ -15743,31 +20303,31 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7492,
- 7496
+ 8872,
+ 8876
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 33
},
"end": {
- "line": 213,
+ "line": 259,
"column": 37
}
}
},
"range": [
- 7479,
- 7496
+ 8859,
+ 8876
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 20
},
"end": {
- "line": 213,
+ "line": 259,
"column": 37
}
}
@@ -15777,95 +20337,95 @@
"type": "Identifier",
"name": "numSortDesc",
"range": [
- 7497,
- 7508
+ 8877,
+ 8888
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 38
},
"end": {
- "line": 213,
+ "line": 259,
"column": 49
}
}
}
],
"range": [
- 7479,
- 7509
+ 8859,
+ 8889
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 20
},
"end": {
- "line": 213,
+ "line": 259,
"column": 50
}
}
},
"range": [
- 7479,
- 7510
+ 8859,
+ 8890
],
"loc": {
"start": {
- "line": 213,
+ "line": 259,
"column": 20
},
"end": {
- "line": 213,
+ "line": 259,
"column": 51
}
}
}
],
"range": [
- 7457,
- 7528
+ 8837,
+ 8908
],
"loc": {
"start": {
- "line": 212,
+ "line": 258,
"column": 33
},
"end": {
- "line": 214,
+ "line": 260,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7440,
- 7528
+ 8820,
+ 8908
],
"loc": {
"start": {
- "line": 212,
+ "line": 258,
"column": 16
},
"end": {
- "line": 214,
+ "line": 260,
"column": 17
}
}
}
],
"range": [
- 7273,
- 7542
+ 8653,
+ 8922
],
"loc": {
"start": {
- "line": 207,
+ "line": 253,
"column": 15
},
"end": {
- "line": 215,
+ "line": 261,
"column": 13
}
}
@@ -15876,16 +20436,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 7549,
- 7550
+ 8929,
+ 8930
],
"loc": {
"start": {
- "line": 215,
+ "line": 261,
"column": 20
},
"end": {
- "line": 215,
+ "line": 261,
"column": 21
}
}
@@ -15906,16 +20466,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7570,
- 7574
+ 8950,
+ 8954
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 16
},
"end": {
- "line": 216,
+ "line": 262,
"column": 20
}
}
@@ -15924,31 +20484,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 7575,
- 7579
+ 8955,
+ 8959
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 21
},
"end": {
- "line": 216,
+ "line": 262,
"column": 25
}
}
},
"range": [
- 7570,
- 7579
+ 8950,
+ 8959
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 16
},
"end": {
- "line": 216,
+ "line": 262,
"column": 25
}
}
@@ -15957,62 +20517,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7580,
- 7584
+ 8960,
+ 8964
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 26
},
"end": {
- "line": 216,
+ "line": 262,
"column": 30
}
}
},
"range": [
- 7570,
- 7584
+ 8950,
+ 8964
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 16
},
"end": {
- "line": 216,
+ "line": 262,
"column": 30
}
}
},
"arguments": [],
"range": [
- 7570,
- 7586
+ 8950,
+ 8966
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 16
},
"end": {
- "line": 216,
+ "line": 262,
"column": 32
}
}
},
"range": [
- 7570,
- 7587
+ 8950,
+ 8967
],
"loc": {
"start": {
- "line": 216,
+ "line": 262,
"column": 16
},
"end": {
- "line": 216,
+ "line": 262,
"column": 33
}
}
@@ -16023,16 +20583,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7607,
- 7619
+ 8987,
+ 8999
],
"loc": {
"start": {
- "line": 217,
+ "line": 263,
"column": 19
},
"end": {
- "line": 217,
+ "line": 263,
"column": 31
}
}
@@ -16051,16 +20611,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7642,
- 7654
+ 9022,
+ 9034
],
"loc": {
"start": {
- "line": 218,
+ "line": 264,
"column": 20
},
"end": {
- "line": 218,
+ "line": 264,
"column": 32
}
}
@@ -16069,94 +20629,94 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7655,
- 7659
+ 9035,
+ 9039
],
"loc": {
"start": {
- "line": 218,
+ "line": 264,
"column": 33
},
"end": {
- "line": 218,
+ "line": 264,
"column": 37
}
}
},
"range": [
- 7642,
- 7659
+ 9022,
+ 9039
],
"loc": {
"start": {
- "line": 218,
+ "line": 264,
"column": 20
},
"end": {
- "line": 218,
+ "line": 264,
"column": 37
}
}
},
"arguments": [],
"range": [
- 7642,
- 7661
+ 9022,
+ 9041
],
"loc": {
"start": {
- "line": 218,
+ "line": 264,
"column": 20
},
"end": {
- "line": 218,
+ "line": 264,
"column": 39
}
}
},
"range": [
- 7642,
- 7662
+ 9022,
+ 9042
],
"loc": {
"start": {
- "line": 218,
+ "line": 264,
"column": 20
},
"end": {
- "line": 218,
+ "line": 264,
"column": 40
}
}
}
],
"range": [
- 7620,
- 7680
+ 9000,
+ 9060
],
"loc": {
"start": {
- "line": 217,
+ "line": 263,
"column": 32
},
"end": {
- "line": 219,
+ "line": 265,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7604,
- 7680
+ 8984,
+ 9060
],
"loc": {
"start": {
- "line": 217,
+ "line": 263,
"column": 16
},
"end": {
- "line": 219,
+ "line": 265,
"column": 17
}
}
@@ -16169,16 +20729,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7700,
- 7704
+ 9080,
+ 9084
],
"loc": {
"start": {
- "line": 220,
+ "line": 266,
"column": 19
},
"end": {
- "line": 220,
+ "line": 266,
"column": 23
}
}
@@ -16187,31 +20747,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 7705,
- 7713
+ 9085,
+ 9093
],
"loc": {
"start": {
- "line": 220,
+ "line": 266,
"column": 24
},
"end": {
- "line": 220,
+ "line": 266,
"column": 32
}
}
},
"range": [
- 7700,
- 7713
+ 9080,
+ 9093
],
"loc": {
"start": {
- "line": 220,
+ "line": 266,
"column": 19
},
"end": {
- "line": 220,
+ "line": 266,
"column": 32
}
}
@@ -16232,16 +20792,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7736,
- 7740
+ 9116,
+ 9120
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 20
},
"end": {
- "line": 221,
+ "line": 267,
"column": 24
}
}
@@ -16250,31 +20810,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 7741,
- 7748
+ 9121,
+ 9128
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 25
},
"end": {
- "line": 221,
+ "line": 267,
"column": 32
}
}
},
"range": [
- 7736,
- 7748
+ 9116,
+ 9128
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 20
},
"end": {
- "line": 221,
+ "line": 267,
"column": 32
}
}
@@ -16283,141 +20843,141 @@
"type": "Identifier",
"name": "sort",
"range": [
- 7749,
- 7753
+ 9129,
+ 9133
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 33
},
"end": {
- "line": 221,
+ "line": 267,
"column": 37
}
}
},
"range": [
- 7736,
- 7753
+ 9116,
+ 9133
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 20
},
"end": {
- "line": 221,
+ "line": 267,
"column": 37
}
}
},
"arguments": [],
"range": [
- 7736,
- 7755
+ 9116,
+ 9135
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 20
},
"end": {
- "line": 221,
+ "line": 267,
"column": 39
}
}
},
"range": [
- 7736,
- 7756
+ 9116,
+ 9136
],
"loc": {
"start": {
- "line": 221,
+ "line": 267,
"column": 20
},
"end": {
- "line": 221,
+ "line": 267,
"column": 40
}
}
}
],
"range": [
- 7714,
- 7774
+ 9094,
+ 9154
],
"loc": {
"start": {
- "line": 220,
+ "line": 266,
"column": 33
},
"end": {
- "line": 222,
+ "line": 268,
"column": 17
}
}
},
"alternate": null,
"range": [
- 7697,
- 7774
+ 9077,
+ 9154
],
"loc": {
"start": {
- "line": 220,
+ "line": 266,
"column": 16
},
"end": {
- "line": 222,
+ "line": 268,
"column": 17
}
}
}
],
"range": [
- 7552,
- 7788
+ 8932,
+ 9168
],
"loc": {
"start": {
- "line": 215,
+ "line": 261,
"column": 23
},
"end": {
- "line": 223,
+ "line": 269,
"column": 13
}
}
},
"range": [
- 7543,
- 7788
+ 8923,
+ 9168
],
"loc": {
"start": {
- "line": 215,
+ "line": 261,
"column": 14
},
"end": {
- "line": 223,
+ "line": 269,
"column": 13
}
}
},
"finalizer": null,
"range": [
- 7270,
- 7788
+ 8650,
+ 9168
],
"loc": {
"start": {
- "line": 207,
+ "line": 253,
"column": 12
},
"end": {
- "line": 223,
+ "line": 269,
"column": 13
}
},
@@ -16426,16 +20986,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7788,
- 7827
+ 9168,
+ 9207
],
"loc": {
"start": {
- "line": 223,
+ "line": 269,
"column": 13
},
"end": {
- "line": 223,
+ "line": 269,
"column": 52
}
}
@@ -16444,32 +21004,32 @@
}
],
"range": [
- 7256,
- 7837
+ 8636,
+ 9217
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 68
},
"end": {
- "line": 224,
+ "line": 270,
"column": 9
}
}
},
"alternate": null,
"range": [
- 7196,
- 7837
+ 8576,
+ 9217
],
"loc": {
"start": {
- "line": 206,
+ "line": 252,
"column": 8
},
"end": {
- "line": 224,
+ "line": 270,
"column": 9
}
},
@@ -16478,16 +21038,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7118,
- 7157
+ 8498,
+ 8537
],
"loc": {
"start": {
- "line": 203,
+ "line": 249,
"column": 13
},
"end": {
- "line": 203,
+ "line": 249,
"column": 52
}
}
@@ -16496,16 +21056,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7176,
- 7187
+ 8556,
+ 8567
],
"loc": {
"start": {
- "line": 205,
+ "line": 251,
"column": 8
},
"end": {
- "line": 205,
+ "line": 251,
"column": 19
}
}
@@ -16516,16 +21076,16 @@
"type": "Line",
"value": "populates drop-down",
"range": [
- 7847,
- 7868
+ 9227,
+ 9248
],
"loc": {
"start": {
- "line": 226,
+ "line": 272,
"column": 8
},
"end": {
- "line": 226,
+ "line": 272,
"column": 29
}
}
@@ -16542,16 +21102,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7877,
- 7881
+ 9257,
+ 9261
],
"loc": {
"start": {
- "line": 227,
+ "line": 273,
"column": 8
},
"end": {
- "line": 227,
+ "line": 273,
"column": 12
}
}
@@ -16560,31 +21120,31 @@
"type": "Identifier",
"name": "addOptions",
"range": [
- 7882,
- 7892
+ 9262,
+ 9272
],
"loc": {
"start": {
- "line": 227,
+ "line": 273,
"column": 13
},
"end": {
- "line": 227,
+ "line": 273,
"column": 23
}
}
},
"range": [
- 7877,
- 7892
+ 9257,
+ 9272
],
"loc": {
"start": {
- "line": 227,
+ "line": 273,
"column": 8
},
"end": {
- "line": 227,
+ "line": 273,
"column": 23
}
}
@@ -16594,17 +21154,17 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 7906,
- 7914
+ 9273,
+ 9281
],
"loc": {
"start": {
- "line": 228,
- "column": 12
+ "line": 273,
+ "column": 24
},
"end": {
- "line": 228,
- "column": 20
+ "line": 273,
+ "column": 32
}
}
},
@@ -16612,17 +21172,17 @@
"type": "Identifier",
"name": "slc",
"range": [
- 7916,
- 7919
+ 9283,
+ 9286
],
"loc": {
"start": {
- "line": 228,
- "column": 22
+ "line": 273,
+ "column": 34
},
"end": {
- "line": 228,
- "column": 25
+ "line": 273,
+ "column": 37
}
}
},
@@ -16630,17 +21190,17 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 7921,
- 7929
+ 9288,
+ 9296
],
"loc": {
"start": {
- "line": 228,
- "column": 27
+ "line": 273,
+ "column": 39
},
"end": {
- "line": 228,
- "column": 35
+ "line": 273,
+ "column": 47
}
}
},
@@ -16648,84 +21208,48 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 7931,
- 7943
+ 9298,
+ 9310
],
"loc": {
"start": {
- "line": 228,
- "column": 37
- },
- "end": {
- "line": 228,
+ "line": 273,
"column": 49
- }
- }
- },
- {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 7945,
- 7955
- ],
- "loc": {
- "start": {
- "line": 228,
- "column": 51
},
"end": {
- "line": 228,
+ "line": 273,
"column": 61
}
}
- },
- {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 7957,
- 7963
- ],
- "loc": {
- "start": {
- "line": 228,
- "column": 63
- },
- "end": {
- "line": 228,
- "column": 69
- }
- }
}
],
"range": [
- 7877,
- 7964
+ 9257,
+ 9311
],
"loc": {
"start": {
- "line": 227,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
- "column": 70
+ "line": 273,
+ "column": 62
}
}
},
"range": [
- 7877,
- 7965
+ 9257,
+ 9312
],
"loc": {
"start": {
- "line": 227,
+ "line": 273,
"column": 8
},
"end": {
- "line": 228,
- "column": 71
+ "line": 273,
+ "column": 63
}
},
"leadingComments": [
@@ -16733,16 +21257,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7788,
- 7827
+ 9168,
+ 9207
],
"loc": {
"start": {
- "line": 223,
+ "line": 269,
"column": 13
},
"end": {
- "line": 223,
+ "line": 269,
"column": 52
}
}
@@ -16751,34 +21275,232 @@
"type": "Line",
"value": "populates drop-down",
"range": [
- 7847,
- 7868
+ 9227,
+ 9248
],
"loc": {
"start": {
- "line": 226,
+ "line": 272,
"column": 8
},
"end": {
- "line": 226,
+ "line": 272,
"column": 29
}
}
}
]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 9322,
+ 9326
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 8
+ },
+ "end": {
+ "line": 275,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 9327,
+ 9334
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 13
+ },
+ "end": {
+ "line": 275,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 9322,
+ 9334
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 8
+ },
+ "end": {
+ "line": 275,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 9335,
+ 9339
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 21
+ },
+ "end": {
+ "line": 275,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 9322,
+ 9339
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 8
+ },
+ "end": {
+ "line": 275,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 9340,
+ 9365
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 26
+ },
+ "end": {
+ "line": 275,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 9367,
+ 9369
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 53
+ },
+ "end": {
+ "line": 275,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 9371,
+ 9379
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 57
+ },
+ "end": {
+ "line": 275,
+ "column": 65
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 9381,
+ 9384
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 67
+ },
+ "end": {
+ "line": 275,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 9322,
+ 9385
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 8
+ },
+ "end": {
+ "line": 275,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 9322,
+ 9386
+ ],
+ "loc": {
+ "start": {
+ "line": 275,
+ "column": 8
+ },
+ "end": {
+ "line": 275,
+ "column": 72
+ }
+ }
}
],
"range": [
- 2125,
- 7971
+ 4004,
+ 9392
],
"loc": {
"start": {
- "line": 64,
- "column": 69
+ "line": 123,
+ "column": 68
},
"end": {
- "line": 229,
+ "line": 276,
"column": 5
}
}
@@ -16786,16 +21508,16 @@
"generator": false,
"expression": false,
"range": [
- 2066,
- 7971
+ 3945,
+ 9392
],
"loc": {
"start": {
- "line": 64,
- "column": 10
+ "line": 123,
+ "column": 9
},
"end": {
- "line": 229,
+ "line": 276,
"column": 5
}
}
@@ -16803,34 +21525,34 @@
"kind": "method",
"computed": false,
"range": [
- 2060,
- 7971
+ 3940,
+ 9392
],
"loc": {
"start": {
- "line": 64,
+ "line": 123,
"column": 4
},
"end": {
- "line": 229,
+ "line": 276,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
"range": [
- 1770,
- 2055
+ 3647,
+ 3935
],
"loc": {
"start": {
- "line": 57,
+ "line": 116,
"column": 4
},
"end": {
- "line": 63,
+ "line": 122,
"column": 7
}
}
@@ -16839,18 +21561,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n * @param {Array} fltsValues Collection of persisted filter values\n * @param {Array} fltArr Collection of persisted filter values\n ",
+ "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n ",
"range": [
- 7977,
- 8399
+ 9398,
+ 9672
],
"loc": {
"start": {
- "line": 231,
+ "line": 278,
"column": 4
},
"end": {
- "line": 239,
+ "line": 284,
"column": 7
}
}
@@ -16864,16 +21586,16 @@
"type": "Identifier",
"name": "addOptions",
"range": [
- 8404,
- 8414
+ 9677,
+ 9687
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 4
},
"end": {
- "line": 240,
+ "line": 285,
"column": 14
}
}
@@ -16886,16 +21608,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 8415,
- 8423
+ 9688,
+ 9696
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 15
},
"end": {
- "line": 240,
+ "line": 285,
"column": 23
}
}
@@ -16904,16 +21626,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 8425,
- 8428
+ 9698,
+ 9701
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 25
},
"end": {
- "line": 240,
+ "line": 285,
"column": 28
}
}
@@ -16922,16 +21644,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 8430,
- 8438
+ 9703,
+ 9711
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 30
},
"end": {
- "line": 240,
+ "line": 285,
"column": 38
}
}
@@ -16940,55 +21662,19 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 8440,
- 8452
+ 9713,
+ 9725
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 40
},
"end": {
- "line": 240,
+ "line": 285,
"column": 52
}
}
- },
- {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 8454,
- 8464
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 54
- },
- "end": {
- "line": 240,
- "column": 64
- }
- }
- },
- {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 8466,
- 8472
- ],
- "loc": {
- "start": {
- "line": 240,
- "column": 66
- },
- "end": {
- "line": 240,
- "column": 72
- }
- }
}
],
"body": {
@@ -17003,16 +21689,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8487,
- 8489
+ 9740,
+ 9742
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 12
},
"end": {
- "line": 241,
+ "line": 286,
"column": 14
}
}
@@ -17023,16 +21709,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8492,
- 8496
+ 9745,
+ 9749
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 17
},
"end": {
- "line": 241,
+ "line": 286,
"column": 21
}
}
@@ -17041,46 +21727,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8497,
- 8499
+ 9750,
+ 9752
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 22
},
"end": {
- "line": 241,
+ "line": 286,
"column": 24
}
}
},
"range": [
- 8492,
- 8499
+ 9745,
+ 9752
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 17
},
"end": {
- "line": 241,
+ "line": 286,
"column": 24
}
}
},
"range": [
- 8487,
- 8499
+ 9740,
+ 9752
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 12
},
"end": {
- "line": 241,
+ "line": 286,
"column": 24
}
}
@@ -17091,16 +21777,16 @@
"type": "Identifier",
"name": "fillMethod",
"range": [
- 8513,
- 8523
+ 9766,
+ 9776
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 12
},
"end": {
- "line": 242,
+ "line": 287,
"column": 22
}
}
@@ -17114,16 +21800,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 8526,
- 8529
+ 9779,
+ 9782
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 25
},
"end": {
- "line": 242,
+ "line": 287,
"column": 28
}
}
@@ -17132,31 +21818,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 8530,
- 8535
+ 9783,
+ 9788
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 29
},
"end": {
- "line": 242,
+ "line": 287,
"column": 34
}
}
},
"range": [
- 8526,
- 8535
+ 9779,
+ 9788
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 25
},
"end": {
- "line": 242,
+ "line": 287,
"column": 34
}
}
@@ -17168,16 +21854,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8536,
- 8540
+ 9789,
+ 9793
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 35
},
"end": {
- "line": 242,
+ "line": 287,
"column": 39
}
}
@@ -17186,62 +21872,62 @@
"type": "Identifier",
"name": "slcFillingMethod",
"range": [
- 8541,
- 8557
+ 9794,
+ 9810
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 40
},
"end": {
- "line": 242,
+ "line": 287,
"column": 56
}
}
},
"range": [
- 8536,
- 8557
+ 9789,
+ 9810
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 35
},
"end": {
- "line": 242,
+ "line": 287,
"column": 56
}
}
}
],
"range": [
- 8526,
- 8558
+ 9779,
+ 9811
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 25
},
"end": {
- "line": 242,
+ "line": 287,
"column": 57
}
}
},
"range": [
- 8513,
- 8558
+ 9766,
+ 9811
],
"loc": {
"start": {
- "line": 242,
+ "line": 287,
"column": 12
},
"end": {
- "line": 242,
+ "line": 287,
"column": 57
}
}
@@ -17252,16 +21938,16 @@
"type": "Identifier",
"name": "slcValue",
"range": [
- 8572,
- 8580
+ 9825,
+ 9833
],
"loc": {
"start": {
- "line": 243,
+ "line": 288,
"column": 12
},
"end": {
- "line": 243,
+ "line": 288,
"column": 20
}
}
@@ -17273,16 +21959,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 8583,
- 8586
+ 9836,
+ 9839
],
"loc": {
"start": {
- "line": 243,
+ "line": 288,
"column": 23
},
"end": {
- "line": 243,
+ "line": 288,
"column": 26
}
}
@@ -17291,63 +21977,63 @@
"type": "Identifier",
"name": "value",
"range": [
- 8587,
- 8592
+ 9840,
+ 9845
],
"loc": {
"start": {
- "line": 243,
+ "line": 288,
"column": 27
},
"end": {
- "line": 243,
+ "line": 288,
"column": 32
}
}
},
"range": [
- 8583,
- 8592
+ 9836,
+ 9845
],
"loc": {
"start": {
- "line": 243,
+ "line": 288,
"column": 23
},
"end": {
- "line": 243,
+ "line": 288,
"column": 32
}
}
},
"range": [
- 8572,
- 8592
+ 9825,
+ 9845
],
"loc": {
"start": {
- "line": 243,
+ "line": 288,
"column": 12
},
"end": {
- "line": 243,
+ "line": 288,
"column": 32
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8483,
- 8593
+ 9736,
+ 9846
],
"loc": {
"start": {
- "line": 241,
+ "line": 286,
"column": 8
},
"end": {
- "line": 243,
+ "line": 288,
"column": 33
}
}
@@ -17364,16 +22050,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 8603,
- 8606
+ 9856,
+ 9859
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 8
},
"end": {
- "line": 245,
+ "line": 290,
"column": 11
}
}
@@ -17382,31 +22068,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 8607,
- 8616
+ 9860,
+ 9869
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 12
},
"end": {
- "line": 245,
+ "line": 290,
"column": 21
}
}
},
"range": [
- 8603,
- 8616
+ 9856,
+ 9869
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 8
},
"end": {
- "line": 245,
+ "line": 290,
"column": 21
}
}
@@ -17416,46 +22102,46 @@
"value": "",
"raw": "''",
"range": [
- 8619,
- 8621
+ 9872,
+ 9874
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 24
},
"end": {
- "line": 245,
+ "line": 290,
"column": 26
}
}
},
"range": [
- 8603,
- 8621
+ 9856,
+ 9874
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 8
},
"end": {
- "line": 245,
+ "line": 290,
"column": 26
}
}
},
"range": [
- 8603,
- 8622
+ 9856,
+ 9875
],
"loc": {
"start": {
- "line": 245,
+ "line": 290,
"column": 8
},
"end": {
- "line": 245,
+ "line": 290,
"column": 27
}
}
@@ -17469,16 +22155,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 8631,
- 8634
+ 9884,
+ 9887
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 8
},
"end": {
- "line": 246,
+ "line": 291,
"column": 11
}
}
@@ -17491,16 +22177,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8637,
- 8641
+ 9890,
+ 9894
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 14
},
"end": {
- "line": 246,
+ "line": 291,
"column": 18
}
}
@@ -17509,31 +22195,31 @@
"type": "Identifier",
"name": "addFirstOption",
"range": [
- 8642,
- 8656
+ 9895,
+ 9909
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 19
},
"end": {
- "line": 246,
+ "line": 291,
"column": 33
}
}
},
"range": [
- 8637,
- 8656
+ 9890,
+ 9909
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 14
},
"end": {
- "line": 246,
+ "line": 291,
"column": 33
}
}
@@ -17543,62 +22229,62 @@
"type": "Identifier",
"name": "slc",
"range": [
- 8657,
- 8660
+ 9910,
+ 9913
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 34
},
"end": {
- "line": 246,
+ "line": 291,
"column": 37
}
}
}
],
"range": [
- 8637,
- 8661
+ 9890,
+ 9914
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 14
},
"end": {
- "line": 246,
+ "line": 291,
"column": 38
}
}
},
"range": [
- 8631,
- 8661
+ 9884,
+ 9914
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 8
},
"end": {
- "line": 246,
+ "line": 291,
"column": 38
}
}
},
"range": [
- 8631,
- 8662
+ 9884,
+ 9915
],
"loc": {
"start": {
- "line": 246,
+ "line": 291,
"column": 8
},
"end": {
- "line": 246,
+ "line": 291,
"column": 39
}
}
@@ -17614,16 +22300,16 @@
"type": "Identifier",
"name": "y",
"range": [
- 8680,
- 8681
+ 9933,
+ 9934
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 16
},
"end": {
- "line": 248,
+ "line": 293,
"column": 17
}
}
@@ -17633,48 +22319,48 @@
"value": 0,
"raw": "0",
"range": [
- 8682,
- 8683
+ 9935,
+ 9936
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 18
},
"end": {
- "line": 248,
+ "line": 293,
"column": 19
}
}
},
"range": [
- 8680,
- 8683
+ 9933,
+ 9936
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 16
},
"end": {
- "line": 248,
+ "line": 293,
"column": 19
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8676,
- 8683
+ 9929,
+ 9936
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 12
},
"end": {
- "line": 248,
+ "line": 293,
"column": 19
}
}
@@ -17686,16 +22372,16 @@
"type": "Identifier",
"name": "y",
"range": [
- 8685,
- 8686
+ 9938,
+ 9939
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 21
},
"end": {
- "line": 248,
+ "line": 293,
"column": 22
}
}
@@ -17709,16 +22395,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8687,
- 8691
+ 9940,
+ 9944
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 23
},
"end": {
- "line": 248,
+ "line": 293,
"column": 27
}
}
@@ -17727,31 +22413,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 8692,
- 8696
+ 9945,
+ 9949
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 28
},
"end": {
- "line": 248,
+ "line": 293,
"column": 32
}
}
},
"range": [
- 8687,
- 8696
+ 9940,
+ 9949
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 23
},
"end": {
- "line": 248,
+ "line": 293,
"column": 32
}
}
@@ -17760,46 +22446,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 8697,
- 8703
+ 9950,
+ 9956
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 33
},
"end": {
- "line": 248,
+ "line": 293,
"column": 39
}
}
},
"range": [
- 8687,
- 8703
+ 9940,
+ 9956
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 23
},
"end": {
- "line": 248,
+ "line": 293,
"column": 39
}
}
},
"range": [
- 8685,
- 8703
+ 9938,
+ 9956
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 21
},
"end": {
- "line": 248,
+ "line": 293,
"column": 39
}
}
@@ -17811,32 +22497,32 @@
"type": "Identifier",
"name": "y",
"range": [
- 8705,
- 8706
+ 9958,
+ 9959
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 41
},
"end": {
- "line": 248,
+ "line": 293,
"column": 42
}
}
},
"prefix": false,
"range": [
- 8705,
- 8708
+ 9958,
+ 9961
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 41
},
"end": {
- "line": 248,
+ "line": 293,
"column": 44
}
}
@@ -17858,16 +22544,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8726,
- 8730
+ 9979,
+ 9983
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 15
},
"end": {
- "line": 249,
+ "line": 294,
"column": 19
}
}
@@ -17876,31 +22562,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 8731,
- 8735
+ 9984,
+ 9988
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 20
},
"end": {
- "line": 249,
+ "line": 294,
"column": 24
}
}
},
"range": [
- 8726,
- 8735
+ 9979,
+ 9988
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 15
},
"end": {
- "line": 249,
+ "line": 294,
"column": 24
}
}
@@ -17909,31 +22595,31 @@
"type": "Identifier",
"name": "y",
"range": [
- 8736,
- 8737
+ 9989,
+ 9990
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 25
},
"end": {
- "line": 249,
+ "line": 294,
"column": 26
}
}
},
"range": [
- 8726,
- 8738
+ 9979,
+ 9991
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 15
},
"end": {
- "line": 249,
+ "line": 294,
"column": 27
}
}
@@ -17943,31 +22629,31 @@
"value": "",
"raw": "''",
"range": [
- 8741,
- 8743
+ 9994,
+ 9996
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 30
},
"end": {
- "line": 249,
+ "line": 294,
"column": 32
}
}
},
"range": [
- 8726,
- 8743
+ 9979,
+ 9996
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 15
},
"end": {
- "line": 249,
+ "line": 294,
"column": 32
}
}
@@ -17979,48 +22665,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 8762,
- 8771
+ 10015,
+ 10024
],
"loc": {
"start": {
- "line": 250,
+ "line": 295,
"column": 16
},
"end": {
- "line": 250,
+ "line": 295,
"column": 25
}
}
}
],
"range": [
- 8744,
- 8785
+ 9997,
+ 10038
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 33
},
"end": {
- "line": 251,
+ "line": 296,
"column": 13
}
}
},
"alternate": null,
"range": [
- 8723,
- 8785
+ 9976,
+ 10038
],
"loc": {
"start": {
- "line": 249,
+ "line": 294,
"column": 12
},
"end": {
- "line": 251,
+ "line": 296,
"column": 13
}
}
@@ -18034,16 +22720,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 8802,
- 8805
+ 10055,
+ 10058
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 16
},
"end": {
- "line": 252,
+ "line": 297,
"column": 19
}
}
@@ -18057,16 +22743,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8808,
- 8812
+ 10061,
+ 10065
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 22
},
"end": {
- "line": 252,
+ "line": 297,
"column": 26
}
}
@@ -18075,31 +22761,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 8813,
- 8817
+ 10066,
+ 10070
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 27
},
"end": {
- "line": 252,
+ "line": 297,
"column": 31
}
}
},
"range": [
- 8808,
- 8817
+ 10061,
+ 10070
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 22
},
"end": {
- "line": 252,
+ "line": 297,
"column": 31
}
}
@@ -18108,63 +22794,63 @@
"type": "Identifier",
"name": "y",
"range": [
- 8818,
- 8819
+ 10071,
+ 10072
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 32
},
"end": {
- "line": 252,
+ "line": 297,
"column": 33
}
}
},
"range": [
- 8808,
- 8820
+ 10061,
+ 10073
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 22
},
"end": {
- "line": 252,
+ "line": 297,
"column": 34
}
}
},
"range": [
- 8802,
- 8820
+ 10055,
+ 10073
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 16
},
"end": {
- "line": 252,
+ "line": 297,
"column": 34
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8798,
- 8821
+ 10051,
+ 10074
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 12
},
"end": {
- "line": 252,
+ "line": 297,
"column": 35
}
},
@@ -18173,16 +22859,16 @@
"type": "Line",
"value": "option value",
"range": [
- 8822,
- 8836
+ 10075,
+ 10089
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 36
},
"end": {
- "line": 252,
+ "line": 297,
"column": 50
}
}
@@ -18198,16 +22884,16 @@
"type": "Identifier",
"name": "lbl",
"range": [
- 8853,
- 8856
+ 10106,
+ 10109
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 16
},
"end": {
- "line": 253,
+ "line": 298,
"column": 19
}
}
@@ -18220,16 +22906,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8859,
- 8863
+ 10112,
+ 10116
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 22
},
"end": {
- "line": 253,
+ "line": 298,
"column": 26
}
}
@@ -18238,31 +22924,31 @@
"type": "Identifier",
"name": "isCustom",
"range": [
- 8864,
- 8872
+ 10117,
+ 10125
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 27
},
"end": {
- "line": 253,
+ "line": 298,
"column": 35
}
}
},
"range": [
- 8859,
- 8872
+ 10112,
+ 10125
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 22
},
"end": {
- "line": 253,
+ "line": 298,
"column": 35
}
}
@@ -18276,16 +22962,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8875,
- 8879
+ 10128,
+ 10132
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 38
},
"end": {
- "line": 253,
+ "line": 298,
"column": 42
}
}
@@ -18294,31 +22980,31 @@
"type": "Identifier",
"name": "optsTxt",
"range": [
- 8880,
- 8887
+ 10133,
+ 10140
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 43
},
"end": {
- "line": 253,
+ "line": 298,
"column": 50
}
}
},
"range": [
- 8875,
- 8887
+ 10128,
+ 10140
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 38
},
"end": {
- "line": 253,
+ "line": 298,
"column": 50
}
}
@@ -18327,31 +23013,31 @@
"type": "Identifier",
"name": "y",
"range": [
- 8888,
- 8889
+ 10141,
+ 10142
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 51
},
"end": {
- "line": 253,
+ "line": 298,
"column": 52
}
}
},
"range": [
- 8875,
- 8890
+ 10128,
+ 10143
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 38
},
"end": {
- "line": 253,
+ "line": 298,
"column": 53
}
}
@@ -18360,63 +23046,63 @@
"type": "Identifier",
"name": "val",
"range": [
- 8893,
- 8896
+ 10146,
+ 10149
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 56
},
"end": {
- "line": 253,
+ "line": 298,
"column": 59
}
}
},
"range": [
- 8859,
- 8896
+ 10112,
+ 10149
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 22
},
"end": {
- "line": 253,
+ "line": 298,
"column": 59
}
}
},
"range": [
- 8853,
- 8896
+ 10106,
+ 10149
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 16
},
"end": {
- "line": 253,
+ "line": 298,
"column": 59
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8849,
- 8897
+ 10102,
+ 10150
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 12
},
"end": {
- "line": 253,
+ "line": 298,
"column": 60
}
},
@@ -18425,16 +23111,16 @@
"type": "Line",
"value": "option value",
"range": [
- 8822,
- 8836
+ 10075,
+ 10089
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 36
},
"end": {
- "line": 252,
+ "line": 297,
"column": 50
}
}
@@ -18445,16 +23131,16 @@
"type": "Line",
"value": "option text",
"range": [
- 8898,
- 8911
+ 10151,
+ 10164
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 61
},
"end": {
- "line": 253,
+ "line": 298,
"column": 74
}
}
@@ -18470,16 +23156,16 @@
"type": "Identifier",
"name": "isDisabled",
"range": [
- 8928,
- 8938
+ 10181,
+ 10191
],
"loc": {
"start": {
- "line": 254,
+ "line": 299,
"column": 16
},
"end": {
- "line": 254,
+ "line": 299,
"column": 26
}
}
@@ -18489,48 +23175,48 @@
"value": false,
"raw": "false",
"range": [
- 8941,
- 8946
+ 10194,
+ 10199
],
"loc": {
"start": {
- "line": 254,
+ "line": 299,
"column": 29
},
"end": {
- "line": 254,
+ "line": 299,
"column": 34
}
}
},
"range": [
- 8928,
- 8946
+ 10181,
+ 10199
],
"loc": {
"start": {
- "line": 254,
+ "line": 299,
"column": 16
},
"end": {
- "line": 254,
+ "line": 299,
"column": 34
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8924,
- 8947
+ 10177,
+ 10200
],
"loc": {
"start": {
- "line": 254,
+ "line": 299,
"column": 12
},
"end": {
- "line": 254,
+ "line": 299,
"column": 35
}
},
@@ -18539,16 +23225,16 @@
"type": "Line",
"value": "option text",
"range": [
- 8898,
- 8911
+ 10151,
+ 10164
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 61
},
"end": {
- "line": 253,
+ "line": 298,
"column": 74
}
}
@@ -18567,16 +23253,16 @@
"type": "Identifier",
"name": "isLinked",
"range": [
- 8963,
- 8971
+ 10216,
+ 10224
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 15
},
"end": {
- "line": 255,
+ "line": 300,
"column": 23
}
}
@@ -18588,16 +23274,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8975,
- 8977
+ 10228,
+ 10230
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 27
},
"end": {
- "line": 255,
+ "line": 300,
"column": 29
}
}
@@ -18606,46 +23292,46 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 8978,
- 9000
+ 10231,
+ 10253
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 30
},
"end": {
- "line": 255,
+ "line": 300,
"column": 52
}
}
},
"range": [
- 8975,
- 9000
+ 10228,
+ 10253
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 27
},
"end": {
- "line": 255,
+ "line": 300,
"column": 52
}
}
},
"range": [
- 8963,
- 9000
+ 10216,
+ 10253
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 15
},
"end": {
- "line": 255,
+ "line": 300,
"column": 52
}
}
@@ -18659,16 +23345,16 @@
"type": "Identifier",
"name": "Arr",
"range": [
- 9020,
- 9023
+ 10273,
+ 10276
],
"loc": {
"start": {
- "line": 256,
+ "line": 301,
"column": 16
},
"end": {
- "line": 256,
+ "line": 301,
"column": 19
}
}
@@ -18677,31 +23363,31 @@
"type": "Identifier",
"name": "has",
"range": [
- 9024,
- 9027
+ 10277,
+ 10280
],
"loc": {
"start": {
- "line": 256,
+ "line": 301,
"column": 20
},
"end": {
- "line": 256,
+ "line": 301,
"column": 23
}
}
},
"range": [
- 9020,
- 9027
+ 10273,
+ 10280
],
"loc": {
"start": {
- "line": 256,
+ "line": 301,
"column": 16
},
"end": {
- "line": 256,
+ "line": 301,
"column": 23
}
}
@@ -18711,16 +23397,16 @@
"type": "Identifier",
"name": "excludedOpts",
"range": [
- 9049,
- 9061
+ 10302,
+ 10314
],
"loc": {
"start": {
- "line": 257,
+ "line": 302,
"column": 20
},
"end": {
- "line": 257,
+ "line": 302,
"column": 32
}
}
@@ -18734,16 +23420,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 9083,
- 9086
+ 10336,
+ 10339
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 20
},
"end": {
- "line": 258,
+ "line": 303,
"column": 23
}
}
@@ -18752,31 +23438,31 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9087,
- 9096
+ 10340,
+ 10349
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 24
},
"end": {
- "line": 258,
+ "line": 303,
"column": 33
}
}
},
"range": [
- 9083,
- 9096
+ 10336,
+ 10349
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 20
},
"end": {
- "line": 258,
+ "line": 303,
"column": 33
}
}
@@ -18786,16 +23472,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 9097,
- 9100
+ 10350,
+ 10353
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 34
},
"end": {
- "line": 258,
+ "line": 303,
"column": 37
}
}
@@ -18807,16 +23493,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9102,
- 9104
+ 10355,
+ 10357
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 39
},
"end": {
- "line": 258,
+ "line": 303,
"column": 41
}
}
@@ -18825,47 +23511,47 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9105,
- 9114
+ 10358,
+ 10367
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 42
},
"end": {
- "line": 258,
+ "line": 303,
"column": 51
}
}
},
"range": [
- 9102,
- 9114
+ 10355,
+ 10367
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 39
},
"end": {
- "line": 258,
+ "line": 303,
"column": 51
}
}
}
],
"range": [
- 9083,
- 9115
+ 10336,
+ 10368
],
"loc": {
"start": {
- "line": 258,
+ "line": 303,
"column": 20
},
"end": {
- "line": 258,
+ "line": 303,
"column": 52
}
}
@@ -18877,16 +23563,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9137,
- 9139
+ 10390,
+ 10392
],
"loc": {
"start": {
- "line": 259,
+ "line": 304,
"column": 20
},
"end": {
- "line": 259,
+ "line": 304,
"column": 22
}
}
@@ -18895,62 +23581,62 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 9140,
- 9149
+ 10393,
+ 10402
],
"loc": {
"start": {
- "line": 259,
+ "line": 304,
"column": 23
},
"end": {
- "line": 259,
+ "line": 304,
"column": 32
}
}
},
"range": [
- 9137,
- 9149
+ 10390,
+ 10402
],
"loc": {
"start": {
- "line": 259,
+ "line": 304,
"column": 20
},
"end": {
- "line": 259,
+ "line": 304,
"column": 32
}
}
}
],
"range": [
- 9020,
- 9167
+ 10273,
+ 10420
],
"loc": {
"start": {
- "line": 256,
+ "line": 301,
"column": 16
},
"end": {
- "line": 260,
+ "line": 305,
"column": 17
}
}
},
"range": [
- 8963,
- 9167
+ 10216,
+ 10420
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 15
},
"end": {
- "line": 260,
+ "line": 305,
"column": 17
}
}
@@ -18967,16 +23653,16 @@
"type": "Identifier",
"name": "isDisabled",
"range": [
- 9186,
- 9196
+ 10439,
+ 10449
],
"loc": {
"start": {
- "line": 261,
+ "line": 306,
"column": 16
},
"end": {
- "line": 261,
+ "line": 306,
"column": 26
}
}
@@ -18986,78 +23672,78 @@
"value": true,
"raw": "true",
"range": [
- 9199,
- 9203
+ 10452,
+ 10456
],
"loc": {
"start": {
- "line": 261,
+ "line": 306,
"column": 29
},
"end": {
- "line": 261,
+ "line": 306,
"column": 33
}
}
},
"range": [
- 9186,
- 9203
+ 10439,
+ 10456
],
"loc": {
"start": {
- "line": 261,
+ "line": 306,
"column": 16
},
"end": {
- "line": 261,
+ "line": 306,
"column": 33
}
}
},
"range": [
- 9186,
- 9204
+ 10439,
+ 10457
],
"loc": {
"start": {
- "line": 261,
+ "line": 306,
"column": 16
},
"end": {
- "line": 261,
+ "line": 306,
"column": 34
}
}
}
],
"range": [
- 9168,
- 9218
+ 10421,
+ 10471
],
"loc": {
"start": {
- "line": 260,
+ "line": 305,
"column": 18
},
"end": {
- "line": 262,
+ "line": 307,
"column": 13
}
}
},
"alternate": null,
"range": [
- 8960,
- 9218
+ 10213,
+ 10471
],
"loc": {
"start": {
- "line": 255,
+ "line": 300,
"column": 12
},
"end": {
- "line": 262,
+ "line": 307,
"column": 13
}
}
@@ -19071,16 +23757,16 @@
"type": "Identifier",
"name": "fillMethod",
"range": [
- 9235,
- 9245
+ 10488,
+ 10498
],
"loc": {
"start": {
- "line": 264,
+ "line": 309,
"column": 15
},
"end": {
- "line": 264,
+ "line": 309,
"column": 25
}
}
@@ -19090,31 +23776,31 @@
"value": "innerhtml",
"raw": "'innerhtml'",
"range": [
- 9250,
- 9261
+ 10503,
+ 10514
],
"loc": {
"start": {
- "line": 264,
+ "line": 309,
"column": 30
},
"end": {
- "line": 264,
+ "line": 309,
"column": 41
}
}
},
"range": [
- 9235,
- 9261
+ 10488,
+ 10514
],
"loc": {
"start": {
- "line": 264,
+ "line": 309,
"column": 15
},
"end": {
- "line": 264,
+ "line": 309,
"column": 41
}
}
@@ -19131,16 +23817,16 @@
"type": "Identifier",
"name": "slcAttr",
"range": [
- 9284,
- 9291
+ 10537,
+ 10544
],
"loc": {
"start": {
- "line": 265,
+ "line": 310,
"column": 20
},
"end": {
- "line": 265,
+ "line": 310,
"column": 27
}
}
@@ -19150,48 +23836,48 @@
"value": "",
"raw": "''",
"range": [
- 9294,
- 9296
+ 10547,
+ 10549
],
"loc": {
"start": {
- "line": 265,
+ "line": 310,
"column": 30
},
"end": {
- "line": 265,
+ "line": 310,
"column": 32
}
}
},
"range": [
- 9284,
- 9296
+ 10537,
+ 10549
],
"loc": {
"start": {
- "line": 265,
+ "line": 310,
"column": 20
},
"end": {
- "line": 265,
+ "line": 310,
"column": 32
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9280,
- 9297
+ 10533,
+ 10550
],
"loc": {
"start": {
- "line": 265,
+ "line": 310,
"column": 16
},
"end": {
- "line": 265,
+ "line": 310,
"column": 33
}
}
@@ -19208,16 +23894,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9317,
- 9319
+ 10570,
+ 10572
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 19
},
"end": {
- "line": 266,
+ "line": 311,
"column": 21
}
}
@@ -19226,31 +23912,31 @@
"type": "Identifier",
"name": "loadFltOnDemand",
"range": [
- 9320,
- 9335
+ 10573,
+ 10588
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 22
},
"end": {
- "line": 266,
+ "line": 311,
"column": 37
}
}
},
"range": [
- 9317,
- 9335
+ 10570,
+ 10588
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 19
},
"end": {
- "line": 266,
+ "line": 311,
"column": 37
}
}
@@ -19262,16 +23948,16 @@
"type": "Identifier",
"name": "slcValue",
"range": [
- 9339,
- 9347
+ 10592,
+ 10600
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 41
},
"end": {
- "line": 266,
+ "line": 311,
"column": 49
}
}
@@ -19285,16 +23971,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9350,
- 9354
+ 10603,
+ 10607
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 52
},
"end": {
- "line": 266,
+ "line": 311,
"column": 56
}
}
@@ -19303,31 +23989,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 9355,
- 9359
+ 10608,
+ 10612
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 57
},
"end": {
- "line": 266,
+ "line": 311,
"column": 61
}
}
},
"range": [
- 9350,
- 9359
+ 10603,
+ 10612
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 52
},
"end": {
- "line": 266,
+ "line": 311,
"column": 61
}
}
@@ -19336,61 +24022,61 @@
"type": "Identifier",
"name": "y",
"range": [
- 9360,
- 9361
+ 10613,
+ 10614
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 62
},
"end": {
- "line": 266,
+ "line": 311,
"column": 63
}
}
},
"range": [
- 9350,
- 9362
+ 10603,
+ 10615
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 52
},
"end": {
- "line": 266,
+ "line": 311,
"column": 64
}
}
},
"range": [
- 9339,
- 9362
+ 10592,
+ 10615
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 41
},
"end": {
- "line": 266,
+ "line": 311,
"column": 64
}
}
},
"range": [
- 9317,
- 9362
+ 10570,
+ 10615
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 19
},
"end": {
- "line": 266,
+ "line": 311,
"column": 64
}
}
@@ -19407,16 +24093,16 @@
"type": "Identifier",
"name": "slcAttr",
"range": [
- 9385,
- 9392
+ 10638,
+ 10645
],
"loc": {
"start": {
- "line": 267,
+ "line": 312,
"column": 20
},
"end": {
- "line": 267,
+ "line": 312,
"column": 27
}
}
@@ -19426,78 +24112,78 @@
"value": "selected=\"selected\"",
"raw": "'selected=\"selected\"'",
"range": [
- 9395,
- 9416
+ 10648,
+ 10669
],
"loc": {
"start": {
- "line": 267,
+ "line": 312,
"column": 30
},
"end": {
- "line": 267,
+ "line": 312,
"column": 51
}
}
},
"range": [
- 9385,
- 9416
+ 10638,
+ 10669
],
"loc": {
"start": {
- "line": 267,
+ "line": 312,
"column": 20
},
"end": {
- "line": 267,
+ "line": 312,
"column": 51
}
}
},
"range": [
- 9385,
- 9417
+ 10638,
+ 10670
],
"loc": {
"start": {
- "line": 267,
+ "line": 312,
"column": 20
},
"end": {
- "line": 267,
+ "line": 312,
"column": 52
}
}
}
],
"range": [
- 9363,
- 9435
+ 10616,
+ 10688
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 65
},
"end": {
- "line": 268,
+ "line": 313,
"column": 17
}
}
},
"alternate": null,
"range": [
- 9314,
- 9435
+ 10567,
+ 10688
],
"loc": {
"start": {
- "line": 266,
+ "line": 311,
"column": 16
},
"end": {
- "line": 268,
+ "line": 313,
"column": 17
}
}
@@ -19513,16 +24199,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9452,
- 9456
+ 10705,
+ 10709
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 16
},
"end": {
- "line": 269,
+ "line": 314,
"column": 20
}
}
@@ -19531,31 +24217,31 @@
"type": "Identifier",
"name": "slcInnerHtml",
"range": [
- 9457,
- 9469
+ 10710,
+ 10722
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 21
},
"end": {
- "line": 269,
+ "line": 314,
"column": 33
}
}
},
"range": [
- 9452,
- 9469
+ 10705,
+ 10722
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 16
},
"end": {
- "line": 269,
+ "line": 314,
"column": 33
}
}
@@ -19586,16 +24272,16 @@
"value": "",
"raw": "'>'",
"range": [
- 9575,
- 9578
+ 10828,
+ 10831
],
"loc": {
"start": {
- "line": 270,
+ "line": 315,
"column": 63
},
"end": {
- "line": 270,
+ "line": 315,
"column": 66
}
}
},
"range": [
- 9473,
- 9578
+ 10726,
+ 10831
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 37
},
"end": {
- "line": 270,
+ "line": 315,
"column": 66
}
}
@@ -19826,31 +24512,31 @@
"type": "Identifier",
"name": "lbl",
"range": [
- 9601,
- 9604
+ 10854,
+ 10857
],
"loc": {
"start": {
- "line": 271,
+ "line": 316,
"column": 20
},
"end": {
- "line": 271,
+ "line": 316,
"column": 23
}
}
},
"range": [
- 9473,
- 9604
+ 10726,
+ 10857
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 37
},
"end": {
- "line": 271,
+ "line": 316,
"column": 23
}
}
@@ -19860,77 +24546,77 @@
"value": " ",
"raw": "''",
"range": [
- 9605,
- 9616
+ 10858,
+ 10869
],
"loc": {
"start": {
- "line": 271,
+ "line": 316,
"column": 24
},
"end": {
- "line": 271,
+ "line": 316,
"column": 35
}
}
},
"range": [
- 9473,
- 9616
+ 10726,
+ 10869
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 37
},
"end": {
- "line": 271,
+ "line": 316,
"column": 35
}
}
},
"range": [
- 9452,
- 9616
+ 10705,
+ 10869
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 16
},
"end": {
- "line": 271,
+ "line": 316,
"column": 35
}
}
},
"range": [
- 9452,
- 9617
+ 10705,
+ 10870
],
"loc": {
"start": {
- "line": 269,
+ "line": 314,
"column": 16
},
"end": {
- "line": 271,
+ "line": 316,
"column": 36
}
}
}
],
"range": [
- 9262,
- 9631
+ 10515,
+ 10884
],
"loc": {
"start": {
- "line": 264,
+ "line": 309,
"column": 42
},
"end": {
- "line": 272,
+ "line": 317,
"column": 13
}
}
@@ -19947,49 +24633,49 @@
"type": "Identifier",
"name": "opt",
"range": [
- 9659,
- 9662
+ 10912,
+ 10915
],
"loc": {
"start": {
- "line": 273,
+ "line": 318,
"column": 20
},
"end": {
- "line": 273,
+ "line": 318,
"column": 23
}
}
},
"init": null,
"range": [
- 9659,
- 9662
+ 10912,
+ 10915
],
"loc": {
"start": {
- "line": 273,
+ "line": 318,
"column": 20
},
"end": {
- "line": 273,
+ "line": 318,
"column": 23
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9655,
- 9663
+ 10908,
+ 10916
],
"loc": {
"start": {
- "line": 273,
+ "line": 318,
"column": 16
},
"end": {
- "line": 273,
+ "line": 318,
"column": 24
}
},
@@ -19998,16 +24684,16 @@
"type": "Line",
"value": "fill select on demand",
"range": [
- 9680,
- 9703
+ 10933,
+ 10956
],
"loc": {
"start": {
- "line": 274,
+ "line": 319,
"column": 16
},
"end": {
- "line": 274,
+ "line": 319,
"column": 39
}
}
@@ -20029,16 +24715,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9723,
- 9725
+ 10976,
+ 10978
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 19
},
"end": {
- "line": 275,
+ "line": 320,
"column": 21
}
}
@@ -20047,31 +24733,31 @@
"type": "Identifier",
"name": "loadFltOnDemand",
"range": [
- 9726,
- 9741
+ 10979,
+ 10994
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 22
},
"end": {
- "line": 275,
+ "line": 320,
"column": 37
}
}
},
"range": [
- 9723,
- 9741
+ 10976,
+ 10994
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 19
},
"end": {
- "line": 275,
+ "line": 320,
"column": 37
}
}
@@ -20083,16 +24769,16 @@
"type": "Identifier",
"name": "slcValue",
"range": [
- 9745,
- 9753
+ 10998,
+ 11006
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 41
},
"end": {
- "line": 275,
+ "line": 320,
"column": 49
}
}
@@ -20106,16 +24792,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9756,
- 9760
+ 11009,
+ 11013
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 52
},
"end": {
- "line": 275,
+ "line": 320,
"column": 56
}
}
@@ -20124,31 +24810,31 @@
"type": "Identifier",
"name": "opts",
"range": [
- 9761,
- 9765
+ 11014,
+ 11018
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 57
},
"end": {
- "line": 275,
+ "line": 320,
"column": 61
}
}
},
"range": [
- 9756,
- 9765
+ 11009,
+ 11018
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 52
},
"end": {
- "line": 275,
+ "line": 320,
"column": 61
}
}
@@ -20157,61 +24843,61 @@
"type": "Identifier",
"name": "y",
"range": [
- 9766,
- 9767
+ 11019,
+ 11020
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 62
},
"end": {
- "line": 275,
+ "line": 320,
"column": 63
}
}
},
"range": [
- 9756,
- 9768
+ 11009,
+ 11021
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 52
},
"end": {
- "line": 275,
+ "line": 320,
"column": 64
}
}
},
"range": [
- 9745,
- 9768
+ 10998,
+ 11021
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 41
},
"end": {
- "line": 275,
+ "line": 320,
"column": 64
}
}
},
"range": [
- 9723,
- 9768
+ 10976,
+ 11021
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 19
},
"end": {
- "line": 275,
+ "line": 320,
"column": 64
}
}
@@ -20228,16 +24914,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9792,
- 9794
+ 11045,
+ 11047
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 20
},
"end": {
- "line": 276,
+ "line": 321,
"column": 22
}
}
@@ -20246,31 +24932,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 9795,
- 9808
+ 11048,
+ 11061
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 23
},
"end": {
- "line": 276,
+ "line": 321,
"column": 36
}
}
},
"range": [
- 9792,
- 9808
+ 11045,
+ 11061
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 20
},
"end": {
- "line": 276,
+ "line": 321,
"column": 36
}
}
@@ -20280,32 +24966,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 9809,
- 9817
+ 11062,
+ 11070
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 37
},
"end": {
- "line": 276,
+ "line": 321,
"column": 45
}
}
}
],
"range": [
- 9792,
- 9818
+ 11045,
+ 11071
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 20
},
"end": {
- "line": 276,
+ "line": 321,
"column": 46
}
}
@@ -20317,16 +25003,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9823,
- 9825
+ 11076,
+ 11078
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 51
},
"end": {
- "line": 276,
+ "line": 321,
"column": 53
}
}
@@ -20335,61 +25021,61 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 9826,
- 9836
+ 11079,
+ 11089
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 54
},
"end": {
- "line": 276,
+ "line": 321,
"column": 64
}
}
},
"range": [
- 9823,
- 9836
+ 11076,
+ 11089
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 51
},
"end": {
- "line": 276,
+ "line": 321,
"column": 64
}
}
},
"range": [
- 9792,
- 9836
+ 11045,
+ 11089
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 20
},
"end": {
- "line": 276,
+ "line": 321,
"column": 64
}
}
},
"range": [
- 9723,
- 9836
+ 10976,
+ 11089
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 19
},
"end": {
- "line": 276,
+ "line": 321,
"column": 64
}
}
@@ -20406,16 +25092,16 @@
"type": "Identifier",
"name": "opt",
"range": [
- 9859,
- 9862
+ 11112,
+ 11115
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 20
},
"end": {
- "line": 277,
+ "line": 322,
"column": 23
}
}
@@ -20429,16 +25115,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9865,
- 9868
+ 11118,
+ 11121
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 26
},
"end": {
- "line": 277,
+ "line": 322,
"column": 29
}
}
@@ -20447,31 +25133,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 9869,
- 9878
+ 11122,
+ 11131
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 30
},
"end": {
- "line": 277,
+ "line": 322,
"column": 39
}
}
},
"range": [
- 9865,
- 9878
+ 11118,
+ 11131
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 26
},
"end": {
- "line": 277,
+ "line": 322,
"column": 39
}
}
@@ -20481,16 +25167,16 @@
"type": "Identifier",
"name": "lbl",
"range": [
- 9879,
- 9882
+ 11132,
+ 11135
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 40
},
"end": {
- "line": 277,
+ "line": 322,
"column": 43
}
}
@@ -20499,16 +25185,16 @@
"type": "Identifier",
"name": "val",
"range": [
- 9884,
- 9887
+ 11137,
+ 11140
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 45
},
"end": {
- "line": 277,
+ "line": 322,
"column": 48
}
}
@@ -20518,78 +25204,78 @@
"value": true,
"raw": "true",
"range": [
- 9889,
- 9893
+ 11142,
+ 11146
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 50
},
"end": {
- "line": 277,
+ "line": 322,
"column": 54
}
}
}
],
"range": [
- 9865,
- 9894
+ 11118,
+ 11147
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 26
},
"end": {
- "line": 277,
+ "line": 322,
"column": 55
}
}
},
"range": [
- 9859,
- 9894
+ 11112,
+ 11147
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 20
},
"end": {
- "line": 277,
+ "line": 322,
"column": 55
}
}
},
"range": [
- 9859,
- 9895
+ 11112,
+ 11148
],
"loc": {
"start": {
- "line": 277,
+ "line": 322,
"column": 20
},
"end": {
- "line": 277,
+ "line": 322,
"column": 56
}
}
}
],
"range": [
- 9837,
- 9913
+ 11090,
+ 11166
],
"loc": {
"start": {
- "line": 276,
+ "line": 321,
"column": 65
},
"end": {
- "line": 278,
+ "line": 323,
"column": 17
}
}
@@ -20598,62 +25284,80 @@
"type": "BlockStatement",
"body": [
{
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "!==",
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
"left": {
+ "type": "Identifier",
+ "name": "opt",
+ "range": [
+ 11194,
+ 11197
+ ],
+ "loc": {
+ "start": {
+ "line": 324,
+ "column": 20
+ },
+ "end": {
+ "line": 324,
+ "column": 23
+ }
+ }
+ },
+ "right": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "Identifier",
- "name": "tf",
+ "name": "Dom",
"range": [
- 9944,
- 9946
+ 11200,
+ 11203
],
"loc": {
"start": {
- "line": 279,
- "column": 23
+ "line": 324,
+ "column": 26
},
"end": {
- "line": 279,
- "column": 25
+ "line": 324,
+ "column": 29
}
}
},
"property": {
"type": "Identifier",
- "name": "getFilterType",
+ "name": "createOpt",
"range": [
- 9947,
- 9960
+ 11204,
+ 11213
],
"loc": {
"start": {
- "line": 279,
- "column": 26
+ "line": 324,
+ "column": 30
},
"end": {
- "line": 279,
+ "line": 324,
"column": 39
}
}
},
"range": [
- 9944,
- 9960
+ 11200,
+ 11213
],
"loc": {
"start": {
- "line": 279,
- "column": 23
+ "line": 324,
+ "column": 26
},
"end": {
- "line": 279,
+ "line": 324,
"column": 39
}
}
@@ -20661,1400 +25365,132 @@
"arguments": [
{
"type": "Identifier",
- "name": "colIndex",
+ "name": "lbl",
"range": [
- 9961,
- 9969
+ 11214,
+ 11217
],
"loc": {
"start": {
- "line": 279,
+ "line": 324,
"column": 40
},
"end": {
- "line": 279,
+ "line": 324,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 11219,
+ 11222
+ ],
+ "loc": {
+ "start": {
+ "line": 324,
+ "column": 45
+ },
+ "end": {
+ "line": 324,
"column": 48
}
}
+ },
+ {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 11224,
+ 11229
+ ],
+ "loc": {
+ "start": {
+ "line": 324,
+ "column": 50
+ },
+ "end": {
+ "line": 324,
+ "column": 55
+ }
+ }
}
],
"range": [
- 9944,
- 9970
+ 11200,
+ 11230
],
"loc": {
"start": {
- "line": 279,
- "column": 23
+ "line": 324,
+ "column": 26
},
"end": {
- "line": 279,
- "column": 49
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 9975,
- 9977
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 54
- },
- "end": {
- "line": 279,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 9978,
- 9990
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 57
- },
- "end": {
- "line": 279,
- "column": 69
- }
- }
- },
- "range": [
- 9975,
- 9990
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 54
- },
- "end": {
- "line": 279,
- "column": 69
+ "line": 324,
+ "column": 56
}
}
},
"range": [
- 9944,
- 9990
+ 11194,
+ 11230
],
"loc": {
"start": {
- "line": 279,
- "column": 23
+ "line": 324,
+ "column": 20
},
"end": {
- "line": 279,
- "column": 69
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 10017,
- 10020
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 24
- },
- "end": {
- "line": 280,
- "column": 27
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 10023,
- 10026
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 30
- },
- "end": {
- "line": 280,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createOpt",
- "range": [
- 10027,
- 10036
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 34
- },
- "end": {
- "line": 280,
- "column": 43
- }
- }
- },
- "range": [
- 10023,
- 10036
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 30
- },
- "end": {
- "line": 280,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "lbl",
- "range": [
- 10066,
- 10069
- ],
- "loc": {
- "start": {
- "line": 281,
- "column": 28
- },
- "end": {
- "line": 281,
- "column": 31
- }
- }
- },
- {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10099,
- 10102
- ],
- "loc": {
- "start": {
- "line": 282,
- "column": 28
- },
- "end": {
- "line": 282,
- "column": 31
- }
- }
- },
- {
- "type": "ConditionalExpression",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 10133,
- 10143
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 29
- },
- "end": {
- "line": 283,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 10144,
- 10152
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 40
- },
- "end": {
- "line": 283,
- "column": 48
- }
- }
- },
- "range": [
- 10133,
- 10153
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 29
- },
- "end": {
- "line": 283,
- "column": 49
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 10156,
- 10159
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 52
- },
- "end": {
- "line": 283,
- "column": 55
- }
- }
- },
- "range": [
- 10133,
- 10159
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 29
- },
- "end": {
- "line": 283,
- "column": 55
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10195,
- 10198
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 32
- },
- "end": {
- "line": 284,
- "column": 35
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 10201,
- 10211
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 38
- },
- "end": {
- "line": 284,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colIndex",
- "range": [
- 10212,
- 10220
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 49
- },
- "end": {
- "line": 284,
- "column": 57
- }
- }
- },
- "range": [
- 10201,
- 10221
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 38
- },
- "end": {
- "line": 284,
- "column": 58
- }
- }
- },
- "range": [
- 10195,
- 10221
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 32
- },
- "end": {
- "line": 284,
- "column": 58
- }
- }
- },
- "range": [
- 10133,
- 10221
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 29
- },
- "end": {
- "line": 284,
- "column": 58
- }
- }
- },
- "consequent": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 10225,
- 10229
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 62
- },
- "end": {
- "line": 284,
- "column": 66
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 10232,
- 10237
- ],
- "loc": {
- "start": {
- "line": 284,
- "column": 69
- },
- "end": {
- "line": 284,
- "column": 74
- }
- }
- },
- "range": [
- 10132,
- 10237
- ],
- "loc": {
- "start": {
- "line": 283,
- "column": 28
- },
- "end": {
- "line": 284,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 10023,
- 10263
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 30
- },
- "end": {
- "line": 285,
- "column": 25
- }
- }
- },
- "range": [
- 10017,
- 10263
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 24
- },
- "end": {
- "line": 285,
- "column": 25
- }
- }
- },
- "range": [
- 10017,
- 10264
- ],
- "loc": {
- "start": {
- "line": 280,
- "column": 24
- },
- "end": {
- "line": 285,
- "column": 26
- }
- }
- }
- ],
- "range": [
- 9991,
- 10286
- ],
- "loc": {
- "start": {
- "line": 279,
- "column": 70
- },
- "end": {
- "line": 286,
- "column": 21
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 10318,
- 10321
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 24
- },
- "end": {
- "line": 287,
- "column": 27
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 10324,
- 10327
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 30
- },
- "end": {
- "line": 287,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createOpt",
- "range": [
- 10328,
- 10337
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 34
- },
- "end": {
- "line": 287,
- "column": 43
- }
- }
- },
- "range": [
- 10324,
- 10337
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 30
- },
- "end": {
- "line": 287,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "lbl",
- "range": [
- 10367,
- 10370
- ],
- "loc": {
- "start": {
- "line": 288,
- "column": 28
- },
- "end": {
- "line": 288,
- "column": 31
- }
- }
- },
- {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10400,
- 10403
- ],
- "loc": {
- "start": {
- "line": 289,
- "column": 28
- },
- "end": {
- "line": 289,
- "column": 31
- }
- }
- },
- {
- "type": "ConditionalExpression",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 10434,
- 10437
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 29
- },
- "end": {
- "line": 290,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 10438,
- 10441
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 33
- },
- "end": {
- "line": 290,
- "column": 36
- }
- }
- },
- "range": [
- 10434,
- 10441
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 29
- },
- "end": {
- "line": 290,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 10442,
- 10448
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 37
- },
- "end": {
- "line": 290,
- "column": 43
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 10482,
- 10485
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 32
- },
- "end": {
- "line": 291,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10486,
- 10495
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 36
- },
- "end": {
- "line": 291,
- "column": 45
- }
- }
- },
- "range": [
- 10482,
- 10495
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 32
- },
- "end": {
- "line": 291,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 10496,
- 10500
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 46
- },
- "end": {
- "line": 291,
- "column": 50
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "opts",
- "range": [
- 10501,
- 10505
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 51
- },
- "end": {
- "line": 291,
- "column": 55
- }
- }
- },
- "range": [
- 10496,
- 10505
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 46
- },
- "end": {
- "line": 291,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "y",
- "range": [
- 10506,
- 10507
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 56
- },
- "end": {
- "line": 291,
- "column": 57
- }
- }
- },
- "range": [
- 10496,
- 10508
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 46
- },
- "end": {
- "line": 291,
- "column": 58
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 10510,
- 10512
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 60
- },
- "end": {
- "line": 291,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10513,
- 10522
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 63
- },
- "end": {
- "line": 291,
- "column": 72
- }
- }
- },
- "range": [
- 10510,
- 10522
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 60
- },
- "end": {
- "line": 291,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 10482,
- 10523
- ],
- "loc": {
- "start": {
- "line": 291,
- "column": 32
- },
- "end": {
- "line": 291,
- "column": 73
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 10557,
- 10559
- ],
- "loc": {
- "start": {
- "line": 292,
- "column": 32
- },
- "end": {
- "line": 292,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 10560,
- 10569
- ],
- "loc": {
- "start": {
- "line": 292,
- "column": 35
- },
- "end": {
- "line": 292,
- "column": 44
- }
- }
- },
- "range": [
- 10557,
- 10569
- ],
- "loc": {
- "start": {
- "line": 292,
- "column": 32
- },
- "end": {
- "line": 292,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 10434,
- 10570
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 29
- },
- "end": {
- "line": 292,
- "column": 45
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltArr",
- "range": [
- 10604,
- 10610
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "toString",
- "range": [
- 10611,
- 10619
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 37
- },
- "end": {
- "line": 293,
- "column": 45
- }
- }
- },
- "range": [
- 10604,
- 10619
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 45
- }
- }
- },
- "arguments": [],
- "range": [
- 10604,
- 10621
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 10622,
- 10629
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 48
- },
- "end": {
- "line": 293,
- "column": 55
- }
- }
- },
- "range": [
- 10604,
- 10629
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 55
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "val",
- "range": [
- 10630,
- 10633
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 56
- },
- "end": {
- "line": 293,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 10604,
- 10634
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 60
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 10639,
- 10640
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 65
- },
- "end": {
- "line": 293,
- "column": 66
- }
- }
- },
- "prefix": true,
- "range": [
- 10638,
- 10640
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 64
- },
- "end": {
- "line": 293,
- "column": 66
- }
- }
- },
- "range": [
- 10604,
- 10640
- ],
- "loc": {
- "start": {
- "line": 293,
- "column": 30
- },
- "end": {
- "line": 293,
- "column": 66
- }
- }
- },
- "range": [
- 10434,
- 10640
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 29
- },
- "end": {
- "line": 293,
- "column": 66
- }
- }
- },
- "consequent": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 10676,
- 10680
- ],
- "loc": {
- "start": {
- "line": 294,
- "column": 32
- },
- "end": {
- "line": 294,
- "column": 36
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 10683,
- 10688
- ],
- "loc": {
- "start": {
- "line": 294,
- "column": 39
- },
- "end": {
- "line": 294,
- "column": 44
- }
- }
- },
- "range": [
- 10433,
- 10688
- ],
- "loc": {
- "start": {
- "line": 290,
- "column": 28
- },
- "end": {
- "line": 294,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 10324,
- 10714
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 30
- },
- "end": {
- "line": 295,
- "column": 25
- }
- }
- },
- "range": [
- 10318,
- 10714
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 24
- },
- "end": {
- "line": 295,
- "column": 25
- }
- }
- },
- "range": [
- 10318,
- 10715
- ],
- "loc": {
- "start": {
- "line": 287,
- "column": 24
- },
- "end": {
- "line": 295,
- "column": 26
- }
- }
- }
- ],
- "range": [
- 10292,
- 10737
- ],
- "loc": {
- "start": {
- "line": 286,
- "column": 27
- },
- "end": {
- "line": 296,
- "column": 21
+ "line": 324,
+ "column": 56
}
}
},
"range": [
- 9941,
- 10737
+ 11194,
+ 11231
],
"loc": {
"start": {
- "line": 279,
+ "line": 324,
"column": 20
},
"end": {
- "line": 296,
- "column": 21
+ "line": 324,
+ "column": 57
}
}
}
],
"range": [
- 9919,
- 10755
+ 11172,
+ 11249
],
"loc": {
"start": {
- "line": 278,
+ "line": 323,
"column": 23
},
"end": {
- "line": 297,
+ "line": 325,
"column": 17
}
}
},
"range": [
- 9720,
- 10755
+ 10973,
+ 11249
],
"loc": {
"start": {
- "line": 275,
+ "line": 320,
"column": 16
},
"end": {
- "line": 297,
+ "line": 325,
"column": 17
}
},
@@ -22063,16 +25499,16 @@
"type": "Line",
"value": "fill select on demand",
"range": [
- 9680,
- 9703
+ 10933,
+ 10956
],
"loc": {
"start": {
- "line": 274,
+ "line": 319,
"column": 16
},
"end": {
- "line": 274,
+ "line": 319,
"column": 39
}
}
@@ -22085,16 +25521,16 @@
"type": "Identifier",
"name": "isDisabled",
"range": [
- 10775,
- 10785
+ 11269,
+ 11279
],
"loc": {
"start": {
- "line": 298,
+ "line": 326,
"column": 19
},
"end": {
- "line": 298,
+ "line": 326,
"column": 29
}
}
@@ -22114,16 +25550,16 @@
"type": "Identifier",
"name": "opt",
"range": [
- 10808,
- 10811
+ 11302,
+ 11305
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 20
},
"end": {
- "line": 299,
+ "line": 327,
"column": 23
}
}
@@ -22132,31 +25568,31 @@
"type": "Identifier",
"name": "disabled",
"range": [
- 10812,
- 10820
+ 11306,
+ 11314
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 24
},
"end": {
- "line": 299,
+ "line": 327,
"column": 32
}
}
},
"range": [
- 10808,
- 10820
+ 11302,
+ 11314
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 20
},
"end": {
- "line": 299,
+ "line": 327,
"column": 32
}
}
@@ -22166,78 +25602,78 @@
"value": true,
"raw": "true",
"range": [
- 10823,
- 10827
+ 11317,
+ 11321
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 35
},
"end": {
- "line": 299,
+ "line": 327,
"column": 39
}
}
},
"range": [
- 10808,
- 10827
+ 11302,
+ 11321
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 20
},
"end": {
- "line": 299,
+ "line": 327,
"column": 39
}
}
},
"range": [
- 10808,
- 10828
+ 11302,
+ 11322
],
"loc": {
"start": {
- "line": 299,
+ "line": 327,
"column": 20
},
"end": {
- "line": 299,
+ "line": 327,
"column": 40
}
}
}
],
"range": [
- 10786,
- 10846
+ 11280,
+ 11340
],
"loc": {
"start": {
- "line": 298,
+ "line": 326,
"column": 30
},
"end": {
- "line": 300,
+ "line": 328,
"column": 17
}
}
},
"alternate": null,
"range": [
- 10772,
- 10846
+ 11266,
+ 11340
],
"loc": {
"start": {
- "line": 298,
+ "line": 326,
"column": 16
},
"end": {
- "line": 300,
+ "line": 328,
"column": 17
}
}
@@ -22253,16 +25689,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 10863,
- 10866
+ 11357,
+ 11360
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 16
},
"end": {
- "line": 301,
+ "line": 329,
"column": 19
}
}
@@ -22271,31 +25707,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 10867,
- 10878
+ 11361,
+ 11372
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 20
},
"end": {
- "line": 301,
+ "line": 329,
"column": 31
}
}
},
"range": [
- 10863,
- 10878
+ 11357,
+ 11372
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 16
},
"end": {
- "line": 301,
+ "line": 329,
"column": 31
}
}
@@ -22305,109 +25741,109 @@
"type": "Identifier",
"name": "opt",
"range": [
- 10879,
- 10882
+ 11373,
+ 11376
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 32
},
"end": {
- "line": 301,
+ "line": 329,
"column": 35
}
}
}
],
"range": [
- 10863,
- 10883
+ 11357,
+ 11377
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 16
},
"end": {
- "line": 301,
+ "line": 329,
"column": 36
}
}
},
"range": [
- 10863,
- 10884
+ 11357,
+ 11378
],
"loc": {
"start": {
- "line": 301,
+ "line": 329,
"column": 16
},
"end": {
- "line": 301,
+ "line": 329,
"column": 37
}
}
}
],
"range": [
- 9637,
- 10898
+ 10890,
+ 11392
],
"loc": {
"start": {
- "line": 272,
+ "line": 317,
"column": 19
},
"end": {
- "line": 302,
+ "line": 330,
"column": 13
}
}
},
"range": [
- 9232,
- 10898
+ 10485,
+ 11392
],
"loc": {
"start": {
- "line": 264,
+ "line": 309,
"column": 12
},
"end": {
- "line": 302,
+ "line": 330,
"column": 13
}
}
}
],
"range": [
- 8709,
- 10908
+ 9962,
+ 11402
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 45
},
"end": {
- "line": 303,
+ "line": 331,
"column": 9
}
}
},
"range": [
- 8672,
- 10908
+ 9925,
+ 11402
],
"loc": {
"start": {
- "line": 248,
+ "line": 293,
"column": 8
},
"end": {
- "line": 303,
+ "line": 331,
"column": 9
}
},
@@ -22416,16 +25852,16 @@
"type": "Line",
"value": " for y",
"range": [
- 10908,
- 10916
+ 11402,
+ 11410
],
"loc": {
"start": {
- "line": 303,
+ "line": 331,
"column": 9
},
"end": {
- "line": 303,
+ "line": 331,
"column": 17
}
}
@@ -22441,16 +25877,16 @@
"type": "Identifier",
"name": "fillMethod",
"range": [
- 10929,
- 10939
+ 11423,
+ 11433
],
"loc": {
"start": {
- "line": 305,
+ "line": 333,
"column": 11
},
"end": {
- "line": 305,
+ "line": 333,
"column": 21
}
}
@@ -22460,31 +25896,31 @@
"value": "innerhtml",
"raw": "'innerhtml'",
"range": [
- 10944,
- 10955
+ 11438,
+ 11449
],
"loc": {
"start": {
- "line": 305,
+ "line": 333,
"column": 26
},
"end": {
- "line": 305,
+ "line": 333,
"column": 37
}
}
},
"range": [
- 10929,
- 10955
+ 11423,
+ 11449
],
"loc": {
"start": {
- "line": 305,
+ "line": 333,
"column": 11
},
"end": {
- "line": 305,
+ "line": 333,
"column": 37
}
}
@@ -22504,16 +25940,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 10970,
- 10973
+ 11464,
+ 11467
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 12
},
"end": {
- "line": 306,
+ "line": 334,
"column": 15
}
}
@@ -22522,31 +25958,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 10974,
- 10983
+ 11468,
+ 11477
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 16
},
"end": {
- "line": 306,
+ "line": 334,
"column": 25
}
}
},
"range": [
- 10970,
- 10983
+ 11464,
+ 11477
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 12
},
"end": {
- "line": 306,
+ "line": 334,
"column": 25
}
}
@@ -22557,16 +25993,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10987,
- 10991
+ 11481,
+ 11485
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 29
},
"end": {
- "line": 306,
+ "line": 334,
"column": 33
}
}
@@ -22575,93 +26011,93 @@
"type": "Identifier",
"name": "slcInnerHtml",
"range": [
- 10992,
- 11004
+ 11486,
+ 11498
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 34
},
"end": {
- "line": 306,
+ "line": 334,
"column": 46
}
}
},
"range": [
- 10987,
- 11004
+ 11481,
+ 11498
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 29
},
"end": {
- "line": 306,
+ "line": 334,
"column": 46
}
}
},
"range": [
- 10970,
- 11004
+ 11464,
+ 11498
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 12
},
"end": {
- "line": 306,
+ "line": 334,
"column": 46
}
}
},
"range": [
- 10970,
- 11005
+ 11464,
+ 11499
],
"loc": {
"start": {
- "line": 306,
+ "line": 334,
"column": 12
},
"end": {
- "line": 306,
+ "line": 334,
"column": 47
}
}
}
],
"range": [
- 10956,
- 11015
+ 11450,
+ 11509
],
"loc": {
"start": {
- "line": 305,
+ "line": 333,
"column": 38
},
"end": {
- "line": 307,
+ "line": 335,
"column": 9
}
}
},
"alternate": null,
"range": [
- 10926,
- 11015
+ 11420,
+ 11509
],
"loc": {
"start": {
- "line": 305,
+ "line": 333,
"column": 8
},
"end": {
- "line": 307,
+ "line": 335,
"column": 9
}
},
@@ -22670,16 +26106,16 @@
"type": "Line",
"value": " for y",
"range": [
- 10908,
- 10916
+ 11402,
+ 11410
],
"loc": {
"start": {
- "line": 303,
+ "line": 331,
"column": 9
},
"end": {
- "line": 303,
+ "line": 331,
"column": 17
}
}
@@ -22697,16 +26133,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 11024,
- 11027
+ 11518,
+ 11521
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 8
},
"end": {
- "line": 308,
+ "line": 336,
"column": 11
}
}
@@ -22715,31 +26151,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 11028,
- 11040
+ 11522,
+ 11534
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 12
},
"end": {
- "line": 308,
+ "line": 336,
"column": 24
}
}
},
"range": [
- 11024,
- 11040
+ 11518,
+ 11534
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 8
},
"end": {
- "line": 308,
+ "line": 336,
"column": 24
}
}
@@ -22750,16 +26186,16 @@
"value": "filled",
"raw": "'filled'",
"range": [
- 11041,
- 11049
+ 11535,
+ 11543
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 25
},
"end": {
- "line": 308,
+ "line": 336,
"column": 33
}
}
@@ -22769,63 +26205,63 @@
"value": "1",
"raw": "'1'",
"range": [
- 11051,
- 11054
+ 11545,
+ 11548
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 35
},
"end": {
- "line": 308,
+ "line": 336,
"column": 38
}
}
}
],
"range": [
- 11024,
- 11055
+ 11518,
+ 11549
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 8
},
"end": {
- "line": 308,
+ "line": 336,
"column": 39
}
}
},
"range": [
- 11024,
- 11056
+ 11518,
+ 11550
],
"loc": {
"start": {
- "line": 308,
+ "line": 336,
"column": 8
},
"end": {
- "line": 308,
+ "line": 336,
"column": 40
}
}
}
],
"range": [
- 8473,
- 11062
+ 9726,
+ 11556
],
"loc": {
"start": {
- "line": 240,
- "column": 73
+ "line": 285,
+ "column": 53
},
"end": {
- "line": 309,
+ "line": 337,
"column": 5
}
}
@@ -22833,16 +26269,16 @@
"generator": false,
"expression": false,
"range": [
- 8414,
- 11062
+ 9687,
+ 11556
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 14
},
"end": {
- "line": 309,
+ "line": 337,
"column": 5
}
}
@@ -22850,34 +26286,34 @@
"kind": "method",
"computed": false,
"range": [
- 8404,
- 11062
+ 9677,
+ 11556
],
"loc": {
"start": {
- "line": 240,
+ "line": 285,
"column": 4
},
"end": {
- "line": 309,
+ "line": 337,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n * @param {Array} fltsValues Collection of persisted filter values\n * @param {Array} fltArr Collection of persisted filter values\n ",
+ "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n ",
"range": [
- 7977,
- 8399
+ 9398,
+ 9672
],
"loc": {
"start": {
- "line": 231,
+ "line": 278,
"column": 4
},
"end": {
- "line": 239,
+ "line": 284,
"column": 7
}
}
@@ -22888,16 +26324,16 @@
"type": "Block",
"value": "*\n * Add drop-down header option\n * @param {Object} slc Select DOM element\n ",
"range": [
- 11068,
- 11160
+ 11562,
+ 11654
],
"loc": {
"start": {
- "line": 311,
+ "line": 339,
"column": 4
},
"end": {
- "line": 314,
+ "line": 342,
"column": 7
}
}
@@ -22911,16 +26347,16 @@
"type": "Identifier",
"name": "addFirstOption",
"range": [
- 11165,
- 11179
+ 11659,
+ 11673
],
"loc": {
"start": {
- "line": 315,
+ "line": 343,
"column": 4
},
"end": {
- "line": 315,
+ "line": 343,
"column": 18
}
}
@@ -22933,16 +26369,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 11180,
- 11183
+ 11674,
+ 11677
],
"loc": {
"start": {
- "line": 315,
+ "line": 343,
"column": 19
},
"end": {
- "line": 315,
+ "line": 343,
"column": 22
}
}
@@ -22960,16 +26396,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11198,
- 11200
+ 11692,
+ 11694
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 12
},
"end": {
- "line": 316,
+ "line": 344,
"column": 14
}
}
@@ -22980,16 +26416,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11203,
- 11207
+ 11697,
+ 11701
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 17
},
"end": {
- "line": 316,
+ "line": 344,
"column": 21
}
}
@@ -22998,46 +26434,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11208,
- 11210
+ 11702,
+ 11704
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 22
},
"end": {
- "line": 316,
+ "line": 344,
"column": 24
}
}
},
"range": [
- 11203,
- 11210
+ 11697,
+ 11704
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 17
},
"end": {
- "line": 316,
+ "line": 344,
"column": 24
}
}
},
"range": [
- 11198,
- 11210
+ 11692,
+ 11704
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 12
},
"end": {
- "line": 316,
+ "line": 344,
"column": 24
}
}
@@ -23048,16 +26484,16 @@
"type": "Identifier",
"name": "fillMethod",
"range": [
- 11224,
- 11234
+ 11718,
+ 11728
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 12
},
"end": {
- "line": 317,
+ "line": 345,
"column": 22
}
}
@@ -23071,16 +26507,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 11237,
- 11240
+ 11731,
+ 11734
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 25
},
"end": {
- "line": 317,
+ "line": 345,
"column": 28
}
}
@@ -23089,31 +26525,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 11241,
- 11246
+ 11735,
+ 11740
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 29
},
"end": {
- "line": 317,
+ "line": 345,
"column": 34
}
}
},
"range": [
- 11237,
- 11246
+ 11731,
+ 11740
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 25
},
"end": {
- "line": 317,
+ "line": 345,
"column": 34
}
}
@@ -23125,16 +26561,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11247,
- 11251
+ 11741,
+ 11745
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 35
},
"end": {
- "line": 317,
+ "line": 345,
"column": 39
}
}
@@ -23143,79 +26579,79 @@
"type": "Identifier",
"name": "slcFillingMethod",
"range": [
- 11252,
- 11268
+ 11746,
+ 11762
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 40
},
"end": {
- "line": 317,
+ "line": 345,
"column": 56
}
}
},
"range": [
- 11247,
- 11268
+ 11741,
+ 11762
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 35
},
"end": {
- "line": 317,
+ "line": 345,
"column": 56
}
}
}
],
"range": [
- 11237,
- 11269
+ 11731,
+ 11763
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 25
},
"end": {
- "line": 317,
+ "line": 345,
"column": 57
}
}
},
"range": [
- 11224,
- 11269
+ 11718,
+ 11763
],
"loc": {
"start": {
- "line": 317,
+ "line": 345,
"column": 12
},
"end": {
- "line": 317,
+ "line": 345,
"column": 57
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11194,
- 11270
+ 11688,
+ 11764
],
"loc": {
"start": {
- "line": 316,
+ "line": 344,
"column": 8
},
"end": {
- "line": 317,
+ "line": 345,
"column": 58
}
}
@@ -23229,16 +26665,16 @@
"type": "Identifier",
"name": "fillMethod",
"range": [
- 11283,
- 11293
+ 11777,
+ 11787
],
"loc": {
"start": {
- "line": 319,
+ "line": 347,
"column": 11
},
"end": {
- "line": 319,
+ "line": 347,
"column": 21
}
}
@@ -23248,31 +26684,31 @@
"value": "innerhtml",
"raw": "'innerhtml'",
"range": [
- 11298,
- 11309
+ 11792,
+ 11803
],
"loc": {
"start": {
- "line": 319,
+ "line": 347,
"column": 26
},
"end": {
- "line": 319,
+ "line": 347,
"column": 37
}
}
},
"range": [
- 11283,
- 11309
+ 11777,
+ 11803
],
"loc": {
"start": {
- "line": 319,
+ "line": 347,
"column": 11
},
"end": {
- "line": 319,
+ "line": 347,
"column": 37
}
}
@@ -23291,16 +26727,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11324,
- 11328
+ 11818,
+ 11822
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 12
},
"end": {
- "line": 320,
+ "line": 348,
"column": 16
}
}
@@ -23309,31 +26745,31 @@
"type": "Identifier",
"name": "slcInnerHtml",
"range": [
- 11329,
- 11341
+ 11823,
+ 11835
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 17
},
"end": {
- "line": 320,
+ "line": 348,
"column": 29
}
}
},
"range": [
- 11324,
- 11341
+ 11818,
+ 11835
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 12
},
"end": {
- "line": 320,
+ "line": 348,
"column": 29
}
}
@@ -23349,16 +26785,16 @@
"value": "",
"raw": "' '",
"range": [
- 11345,
- 11364
+ 11839,
+ 11858
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 33
},
"end": {
- "line": 320,
+ "line": 348,
"column": 52
}
}
@@ -23370,16 +26806,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11366,
- 11368
+ 11860,
+ 11862
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 54
},
"end": {
- "line": 320,
+ "line": 348,
"column": 56
}
}
@@ -23388,46 +26824,46 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 11369,
- 11383
+ 11863,
+ 11877
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 57
},
"end": {
- "line": 320,
+ "line": 348,
"column": 71
}
}
},
"range": [
- 11366,
- 11383
+ 11860,
+ 11877
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 54
},
"end": {
- "line": 320,
+ "line": 348,
"column": 71
}
}
},
"range": [
- 11345,
- 11383
+ 11839,
+ 11877
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 33
},
"end": {
- "line": 320,
+ "line": 348,
"column": 71
}
}
@@ -23437,77 +26873,77 @@
"value": " ",
"raw": "''",
"range": [
- 11402,
- 11413
+ 11896,
+ 11907
],
"loc": {
"start": {
- "line": 321,
+ "line": 349,
"column": 16
},
"end": {
- "line": 321,
+ "line": 349,
"column": 27
}
}
},
"range": [
- 11345,
- 11413
+ 11839,
+ 11907
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 33
},
"end": {
- "line": 321,
+ "line": 349,
"column": 27
}
}
},
"range": [
- 11324,
- 11413
+ 11818,
+ 11907
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 12
},
"end": {
- "line": 321,
+ "line": 349,
"column": 27
}
}
},
"range": [
- 11324,
- 11414
+ 11818,
+ 11908
],
"loc": {
"start": {
- "line": 320,
+ "line": 348,
"column": 12
},
"end": {
- "line": 321,
+ "line": 349,
"column": 28
}
}
}
],
"range": [
- 11310,
- 11424
+ 11804,
+ 11918
],
"loc": {
"start": {
- "line": 319,
+ "line": 347,
"column": 38
},
"end": {
- "line": 322,
+ "line": 350,
"column": 9
}
}
@@ -23524,16 +26960,16 @@
"type": "Identifier",
"name": "opt0",
"range": [
- 11456,
- 11460
+ 11950,
+ 11954
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 16
},
"end": {
- "line": 324,
+ "line": 352,
"column": 20
}
}
@@ -23547,16 +26983,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11463,
- 11466
+ 11957,
+ 11960
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 23
},
"end": {
- "line": 324,
+ "line": 352,
"column": 26
}
}
@@ -23565,31 +27001,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 11467,
- 11476
+ 11961,
+ 11970
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 27
},
"end": {
- "line": 324,
+ "line": 352,
"column": 36
}
}
},
"range": [
- 11463,
- 11476
+ 11957,
+ 11970
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 23
},
"end": {
- "line": 324,
+ "line": 352,
"column": 36
}
}
@@ -23606,16 +27042,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11496,
- 11500
+ 11990,
+ 11994
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 18
},
"end": {
- "line": 325,
+ "line": 353,
"column": 22
}
}
@@ -23624,47 +27060,47 @@
"type": "Identifier",
"name": "enableSlcResetFilter",
"range": [
- 11501,
- 11521
+ 11995,
+ 12015
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 23
},
"end": {
- "line": 325,
+ "line": 353,
"column": 43
}
}
},
"range": [
- 11496,
- 11521
+ 11990,
+ 12015
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 18
},
"end": {
- "line": 325,
+ "line": 353,
"column": 43
}
}
},
"prefix": true,
"range": [
- 11495,
- 11521
+ 11989,
+ 12015
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 17
},
"end": {
- "line": 325,
+ "line": 353,
"column": 43
}
}
@@ -23674,16 +27110,16 @@
"value": "",
"raw": "''",
"range": [
- 11524,
- 11526
+ 12018,
+ 12020
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 46
},
"end": {
- "line": 325,
+ "line": 353,
"column": 48
}
}
@@ -23695,16 +27131,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11529,
- 11531
+ 12023,
+ 12025
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 51
},
"end": {
- "line": 325,
+ "line": 353,
"column": 53
}
}
@@ -23713,46 +27149,46 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 11532,
- 11546
+ 12026,
+ 12040
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 54
},
"end": {
- "line": 325,
+ "line": 353,
"column": 68
}
}
},
"range": [
- 11529,
- 11546
+ 12023,
+ 12040
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 51
},
"end": {
- "line": 325,
+ "line": 353,
"column": 68
}
}
},
"range": [
- 11495,
- 11546
+ 11989,
+ 12040
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 17
},
"end": {
- "line": 325,
+ "line": 353,
"column": 68
}
}
@@ -23762,64 +27198,64 @@
"value": "",
"raw": "''",
"range": [
- 11548,
- 11550
+ 12042,
+ 12044
],
"loc": {
"start": {
- "line": 325,
+ "line": 353,
"column": 70
},
"end": {
- "line": 325,
+ "line": 353,
"column": 72
}
}
}
],
"range": [
- 11463,
- 11551
+ 11957,
+ 12045
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 23
},
"end": {
- "line": 325,
+ "line": 353,
"column": 73
}
}
},
"range": [
- 11456,
- 11551
+ 11950,
+ 12045
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 16
},
"end": {
- "line": 325,
+ "line": 353,
"column": 73
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11452,
- 11552
+ 11946,
+ 12046
],
"loc": {
"start": {
- "line": 324,
+ "line": 352,
"column": 12
},
"end": {
- "line": 325,
+ "line": 353,
"column": 74
}
}
@@ -23835,16 +27271,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11569,
- 11573
+ 12063,
+ 12067
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 16
},
"end": {
- "line": 326,
+ "line": 354,
"column": 20
}
}
@@ -23853,47 +27289,47 @@
"type": "Identifier",
"name": "enableSlcResetFilter",
"range": [
- 11574,
- 11594
+ 12068,
+ 12088
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 21
},
"end": {
- "line": 326,
+ "line": 354,
"column": 41
}
}
},
"range": [
- 11569,
- 11594
+ 12063,
+ 12088
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 16
},
"end": {
- "line": 326,
+ "line": 354,
"column": 41
}
}
},
"prefix": true,
"range": [
- 11568,
- 11594
+ 12062,
+ 12088
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 15
},
"end": {
- "line": 326,
+ "line": 354,
"column": 41
}
}
@@ -23916,16 +27352,16 @@
"type": "Identifier",
"name": "opt0",
"range": [
- 11613,
- 11617
+ 12107,
+ 12111
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 16
},
"end": {
- "line": 327,
+ "line": 355,
"column": 20
}
}
@@ -23934,31 +27370,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 11618,
- 11623
+ 12112,
+ 12117
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 21
},
"end": {
- "line": 327,
+ "line": 355,
"column": 26
}
}
},
"range": [
- 11613,
- 11623
+ 12107,
+ 12117
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 16
},
"end": {
- "line": 327,
+ "line": 355,
"column": 26
}
}
@@ -23967,31 +27403,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 11624,
- 11631
+ 12118,
+ 12125
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 27
},
"end": {
- "line": 327,
+ "line": 355,
"column": 34
}
}
},
"range": [
- 11613,
- 11631
+ 12107,
+ 12125
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 16
},
"end": {
- "line": 327,
+ "line": 355,
"column": 34
}
}
@@ -24001,78 +27437,78 @@
"value": "none",
"raw": "'none'",
"range": [
- 11634,
- 11640
+ 12128,
+ 12134
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 37
},
"end": {
- "line": 327,
+ "line": 355,
"column": 43
}
}
},
"range": [
- 11613,
- 11640
+ 12107,
+ 12134
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 16
},
"end": {
- "line": 327,
+ "line": 355,
"column": 43
}
}
},
"range": [
- 11613,
- 11641
+ 12107,
+ 12135
],
"loc": {
"start": {
- "line": 327,
+ "line": 355,
"column": 16
},
"end": {
- "line": 327,
+ "line": 355,
"column": 44
}
}
}
],
"range": [
- 11595,
- 11655
+ 12089,
+ 12149
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 42
},
"end": {
- "line": 328,
+ "line": 356,
"column": 13
}
}
},
"alternate": null,
"range": [
- 11565,
- 11655
+ 12059,
+ 12149
],
"loc": {
"start": {
- "line": 326,
+ "line": 354,
"column": 12
},
"end": {
- "line": 328,
+ "line": 356,
"column": 13
}
}
@@ -24088,16 +27524,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 11668,
- 11671
+ 12162,
+ 12165
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 12
},
"end": {
- "line": 329,
+ "line": 357,
"column": 15
}
}
@@ -24106,31 +27542,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11672,
- 11683
+ 12166,
+ 12177
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 16
},
"end": {
- "line": 329,
+ "line": 357,
"column": 27
}
}
},
"range": [
- 11668,
- 11683
+ 12162,
+ 12177
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 12
},
"end": {
- "line": 329,
+ "line": 357,
"column": 27
}
}
@@ -24140,47 +27576,47 @@
"type": "Identifier",
"name": "opt0",
"range": [
- 11684,
- 11688
+ 12178,
+ 12182
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 28
},
"end": {
- "line": 329,
+ "line": 357,
"column": 32
}
}
}
],
"range": [
- 11668,
- 11689
+ 12162,
+ 12183
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 12
},
"end": {
- "line": 329,
+ "line": 357,
"column": 33
}
}
},
"range": [
- 11668,
- 11690
+ 12162,
+ 12184
],
"loc": {
"start": {
- "line": 329,
+ "line": 357,
"column": 12
},
"end": {
- "line": 329,
+ "line": 357,
"column": 34
}
}
@@ -24194,16 +27630,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11706,
- 11708
+ 12200,
+ 12202
],
"loc": {
"start": {
- "line": 330,
+ "line": 358,
"column": 15
},
"end": {
- "line": 330,
+ "line": 358,
"column": 17
}
}
@@ -24212,31 +27648,31 @@
"type": "Identifier",
"name": "enableEmptyOption",
"range": [
- 11709,
- 11726
+ 12203,
+ 12220
],
"loc": {
"start": {
- "line": 330,
+ "line": 358,
"column": 18
},
"end": {
- "line": 330,
+ "line": 358,
"column": 35
}
}
},
"range": [
- 11706,
- 11726
+ 12200,
+ 12220
],
"loc": {
"start": {
- "line": 330,
+ "line": 358,
"column": 15
},
"end": {
- "line": 330,
+ "line": 358,
"column": 35
}
}
@@ -24253,16 +27689,16 @@
"type": "Identifier",
"name": "opt1",
"range": [
- 11749,
- 11753
+ 12243,
+ 12247
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 20
},
"end": {
- "line": 331,
+ "line": 359,
"column": 24
}
}
@@ -24276,16 +27712,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11756,
- 11759
+ 12250,
+ 12253
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 27
},
"end": {
- "line": 331,
+ "line": 359,
"column": 30
}
}
@@ -24294,31 +27730,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 11760,
- 11769
+ 12254,
+ 12263
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 31
},
"end": {
- "line": 331,
+ "line": 359,
"column": 40
}
}
},
"range": [
- 11756,
- 11769
+ 12250,
+ 12263
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 27
},
"end": {
- "line": 331,
+ "line": 359,
"column": 40
}
}
@@ -24331,16 +27767,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11770,
- 11772
+ 12264,
+ 12266
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 41
},
"end": {
- "line": 331,
+ "line": 359,
"column": 43
}
}
@@ -24349,31 +27785,31 @@
"type": "Identifier",
"name": "emptyText",
"range": [
- 11773,
- 11782
+ 12267,
+ 12276
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 44
},
"end": {
- "line": 331,
+ "line": 359,
"column": 53
}
}
},
"range": [
- 11770,
- 11782
+ 12264,
+ 12276
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 41
},
"end": {
- "line": 331,
+ "line": 359,
"column": 53
}
}
@@ -24385,16 +27821,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11784,
- 11786
+ 12278,
+ 12280
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 55
},
"end": {
- "line": 331,
+ "line": 359,
"column": 57
}
}
@@ -24403,79 +27839,79 @@
"type": "Identifier",
"name": "emOperator",
"range": [
- 11787,
- 11797
+ 12281,
+ 12291
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 58
},
"end": {
- "line": 331,
+ "line": 359,
"column": 68
}
}
},
"range": [
- 11784,
- 11797
+ 12278,
+ 12291
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 55
},
"end": {
- "line": 331,
+ "line": 359,
"column": 68
}
}
}
],
"range": [
- 11756,
- 11798
+ 12250,
+ 12292
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 27
},
"end": {
- "line": 331,
+ "line": 359,
"column": 69
}
}
},
"range": [
- 11749,
- 11798
+ 12243,
+ 12292
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 20
},
"end": {
- "line": 331,
+ "line": 359,
"column": 69
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11745,
- 11799
+ 12239,
+ 12293
],
"loc": {
"start": {
- "line": 331,
+ "line": 359,
"column": 16
},
"end": {
- "line": 331,
+ "line": 359,
"column": 70
}
}
@@ -24491,16 +27927,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 11816,
- 11819
+ 12310,
+ 12313
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 16
},
"end": {
- "line": 332,
+ "line": 360,
"column": 19
}
}
@@ -24509,31 +27945,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11820,
- 11831
+ 12314,
+ 12325
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 20
},
"end": {
- "line": 332,
+ "line": 360,
"column": 31
}
}
},
"range": [
- 11816,
- 11831
+ 12310,
+ 12325
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 16
},
"end": {
- "line": 332,
+ "line": 360,
"column": 31
}
}
@@ -24543,79 +27979,79 @@
"type": "Identifier",
"name": "opt1",
"range": [
- 11832,
- 11836
+ 12326,
+ 12330
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 32
},
"end": {
- "line": 332,
+ "line": 360,
"column": 36
}
}
}
],
"range": [
- 11816,
- 11837
+ 12310,
+ 12331
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 16
},
"end": {
- "line": 332,
+ "line": 360,
"column": 37
}
}
},
"range": [
- 11816,
- 11838
+ 12310,
+ 12332
],
"loc": {
"start": {
- "line": 332,
+ "line": 360,
"column": 16
},
"end": {
- "line": 332,
+ "line": 360,
"column": 38
}
}
}
],
"range": [
- 11727,
- 11852
+ 12221,
+ 12346
],
"loc": {
"start": {
- "line": 330,
+ "line": 358,
"column": 36
},
"end": {
- "line": 333,
+ "line": 361,
"column": 13
}
}
},
"alternate": null,
"range": [
- 11703,
- 11852
+ 12197,
+ 12346
],
"loc": {
"start": {
- "line": 330,
+ "line": 358,
"column": 12
},
"end": {
- "line": 333,
+ "line": 361,
"column": 13
}
}
@@ -24629,16 +28065,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11868,
- 11870
+ 12362,
+ 12364
],
"loc": {
"start": {
- "line": 334,
+ "line": 362,
"column": 15
},
"end": {
- "line": 334,
+ "line": 362,
"column": 17
}
}
@@ -24647,31 +28083,31 @@
"type": "Identifier",
"name": "enableNonEmptyOption",
"range": [
- 11871,
- 11891
+ 12365,
+ 12385
],
"loc": {
"start": {
- "line": 334,
+ "line": 362,
"column": 18
},
"end": {
- "line": 334,
+ "line": 362,
"column": 38
}
}
},
"range": [
- 11868,
- 11891
+ 12362,
+ 12385
],
"loc": {
"start": {
- "line": 334,
+ "line": 362,
"column": 15
},
"end": {
- "line": 334,
+ "line": 362,
"column": 38
}
}
@@ -24688,16 +28124,16 @@
"type": "Identifier",
"name": "opt2",
"range": [
- 11914,
- 11918
+ 12408,
+ 12412
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 20
},
"end": {
- "line": 335,
+ "line": 363,
"column": 24
}
}
@@ -24711,16 +28147,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11921,
- 11924
+ 12415,
+ 12418
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 27
},
"end": {
- "line": 335,
+ "line": 363,
"column": 30
}
}
@@ -24729,31 +28165,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 11925,
- 11934
+ 12419,
+ 12428
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 31
},
"end": {
- "line": 335,
+ "line": 363,
"column": 40
}
}
},
"range": [
- 11921,
- 11934
+ 12415,
+ 12428
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 27
},
"end": {
- "line": 335,
+ "line": 363,
"column": 40
}
}
@@ -24766,16 +28202,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11935,
- 11937
+ 12429,
+ 12431
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 41
},
"end": {
- "line": 335,
+ "line": 363,
"column": 43
}
}
@@ -24784,31 +28220,31 @@
"type": "Identifier",
"name": "nonEmptyText",
"range": [
- 11938,
- 11950
+ 12432,
+ 12444
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 44
},
"end": {
- "line": 335,
+ "line": 363,
"column": 56
}
}
},
"range": [
- 11935,
- 11950
+ 12429,
+ 12444
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 41
},
"end": {
- "line": 335,
+ "line": 363,
"column": 56
}
}
@@ -24820,16 +28256,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11952,
- 11954
+ 12446,
+ 12448
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 58
},
"end": {
- "line": 335,
+ "line": 363,
"column": 60
}
}
@@ -24838,79 +28274,79 @@
"type": "Identifier",
"name": "nmOperator",
"range": [
- 11955,
- 11965
+ 12449,
+ 12459
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 61
},
"end": {
- "line": 335,
+ "line": 363,
"column": 71
}
}
},
"range": [
- 11952,
- 11965
+ 12446,
+ 12459
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 58
},
"end": {
- "line": 335,
+ "line": 363,
"column": 71
}
}
}
],
"range": [
- 11921,
- 11966
+ 12415,
+ 12460
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 27
},
"end": {
- "line": 335,
+ "line": 363,
"column": 72
}
}
},
"range": [
- 11914,
- 11966
+ 12408,
+ 12460
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 20
},
"end": {
- "line": 335,
+ "line": 363,
"column": 72
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11910,
- 11967
+ 12404,
+ 12461
],
"loc": {
"start": {
- "line": 335,
+ "line": 363,
"column": 16
},
"end": {
- "line": 335,
+ "line": 363,
"column": 73
}
}
@@ -24926,16 +28362,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 11984,
- 11987
+ 12478,
+ 12481
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 16
},
"end": {
- "line": 336,
+ "line": 364,
"column": 19
}
}
@@ -24944,31 +28380,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11988,
- 11999
+ 12482,
+ 12493
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 20
},
"end": {
- "line": 336,
+ "line": 364,
"column": 31
}
}
},
"range": [
- 11984,
- 11999
+ 12478,
+ 12493
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 16
},
"end": {
- "line": 336,
+ "line": 364,
"column": 31
}
}
@@ -24978,110 +28414,110 @@
"type": "Identifier",
"name": "opt2",
"range": [
- 12000,
- 12004
+ 12494,
+ 12498
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 32
},
"end": {
- "line": 336,
+ "line": 364,
"column": 36
}
}
}
],
"range": [
- 11984,
- 12005
+ 12478,
+ 12499
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 16
},
"end": {
- "line": 336,
+ "line": 364,
"column": 37
}
}
},
"range": [
- 11984,
- 12006
+ 12478,
+ 12500
],
"loc": {
"start": {
- "line": 336,
+ "line": 364,
"column": 16
},
"end": {
- "line": 336,
+ "line": 364,
"column": 38
}
}
}
],
"range": [
- 11892,
- 12020
+ 12386,
+ 12514
],
"loc": {
"start": {
- "line": 334,
+ "line": 362,
"column": 39
},
"end": {
- "line": 337,
+ "line": 365,
"column": 13
}
}
},
"alternate": null,
"range": [
- 11865,
- 12020
+ 12359,
+ 12514
],
"loc": {
"start": {
- "line": 334,
+ "line": 362,
"column": 12
},
"end": {
- "line": 337,
+ "line": 365,
"column": 13
}
}
}
],
"range": [
- 11438,
- 12030
+ 11932,
+ 12524
],
"loc": {
"start": {
- "line": 323,
+ "line": 351,
"column": 13
},
"end": {
- "line": 338,
+ "line": 366,
"column": 9
}
}
},
"range": [
- 11280,
- 12030
+ 11774,
+ 12524
],
"loc": {
"start": {
- "line": 319,
+ "line": 347,
"column": 8
},
"end": {
- "line": 338,
+ "line": 366,
"column": 9
}
}
@@ -25092,47 +28528,47 @@
"type": "Identifier",
"name": "slc",
"range": [
- 12046,
- 12049
+ 12540,
+ 12543
],
"loc": {
"start": {
- "line": 339,
+ "line": 367,
"column": 15
},
"end": {
- "line": 339,
+ "line": 367,
"column": 18
}
}
},
"range": [
- 12039,
- 12050
+ 12533,
+ 12544
],
"loc": {
"start": {
- "line": 339,
+ "line": 367,
"column": 8
},
"end": {
- "line": 339,
+ "line": 367,
"column": 19
}
}
}
],
"range": [
- 11184,
- 12056
+ 11678,
+ 12550
],
"loc": {
"start": {
- "line": 315,
+ "line": 343,
"column": 23
},
"end": {
- "line": 340,
+ "line": 368,
"column": 5
}
}
@@ -25140,16 +28576,16 @@
"generator": false,
"expression": false,
"range": [
- 11179,
- 12056
+ 11673,
+ 12550
],
"loc": {
"start": {
- "line": 315,
+ "line": 343,
"column": 18
},
"end": {
- "line": 340,
+ "line": 368,
"column": 5
}
}
@@ -25157,16 +28593,16 @@
"kind": "method",
"computed": false,
"range": [
- 11165,
- 12056
+ 11659,
+ 12550
],
"loc": {
"start": {
- "line": 315,
+ "line": 343,
"column": 4
},
"end": {
- "line": 340,
+ "line": 368,
"column": 5
}
},
@@ -25175,50 +28611,2692 @@
"type": "Block",
"value": "*\n * Add drop-down header option\n * @param {Object} slc Select DOM element\n ",
"range": [
- 11068,
- 11160
+ 11562,
+ 11654
],
"loc": {
"start": {
- "line": 311,
+ "line": 339,
"column": 4
},
"end": {
- "line": 314,
+ "line": 342,
"column": 7
}
}
}
],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 12556,
+ 12725
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 4
+ },
+ "end": {
+ "line": 374,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 12730,
+ 12743
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 4
+ },
+ "end": {
+ "line": 375,
+ "column": 17
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 12744,
+ 12752
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 18
+ },
+ "end": {
+ "line": 375,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 12754,
+ 12760
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 28
+ },
+ "end": {
+ "line": 375,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 12761,
+ 12763
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 35
+ },
+ "end": {
+ "line": 375,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 12754,
+ 12763
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 28
+ },
+ "end": {
+ "line": 375,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12778,
+ 12780
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 12
+ },
+ "end": {
+ "line": 376,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 12783,
+ 12787
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 17
+ },
+ "end": {
+ "line": 376,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12788,
+ 12790
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 22
+ },
+ "end": {
+ "line": 376,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 12783,
+ 12790
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 17
+ },
+ "end": {
+ "line": 376,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 12778,
+ 12790
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 12
+ },
+ "end": {
+ "line": 376,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 12774,
+ 12791
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "!==",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12803,
+ 12805
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 12806,
+ 12819
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 14
+ },
+ "end": {
+ "line": 377,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 12803,
+ 12819
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 12820,
+ 12828
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 28
+ },
+ "end": {
+ "line": 377,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 12803,
+ 12829
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12834,
+ 12836
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 42
+ },
+ "end": {
+ "line": 377,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeMulti",
+ "range": [
+ 12837,
+ 12849
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 45
+ },
+ "end": {
+ "line": 377,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 12834,
+ 12849
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 42
+ },
+ "end": {
+ "line": 377,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 12803,
+ 12849
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 377,
+ "column": 57
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 12865,
+ 12871
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 12872,
+ 12878
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 19
+ },
+ "end": {
+ "line": 378,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 12865,
+ 12878
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 12883,
+ 12884
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 30
+ },
+ "end": {
+ "line": 378,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 12865,
+ 12884
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 12
+ },
+ "end": {
+ "line": 378,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 12803,
+ 12884
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 11
+ },
+ "end": {
+ "line": 378,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 12899,
+ 12906
+ ],
+ "loc": {
+ "start": {
+ "line": 379,
+ "column": 12
+ },
+ "end": {
+ "line": 379,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 12885,
+ 12916
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 32
+ },
+ "end": {
+ "line": 380,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 12800,
+ 12916
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 8
+ },
+ "end": {
+ "line": 380,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 12929,
+ 12932
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 12
+ },
+ "end": {
+ "line": 381,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 12935,
+ 12937
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 18
+ },
+ "end": {
+ "line": 381,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterElement",
+ "range": [
+ 12938,
+ 12954
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 21
+ },
+ "end": {
+ "line": 381,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 12935,
+ 12954
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 18
+ },
+ "end": {
+ "line": 381,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 12955,
+ 12963
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 38
+ },
+ "end": {
+ "line": 381,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 12935,
+ 12964
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 18
+ },
+ "end": {
+ "line": 381,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 12929,
+ 12964
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 12
+ },
+ "end": {
+ "line": 381,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 12925,
+ 12965
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 8
+ },
+ "end": {
+ "line": 381,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 12974,
+ 12976
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "forEach",
+ "range": [
+ 12977,
+ 12984
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 11
+ },
+ "end": {
+ "line": 382,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 12974,
+ 12984
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "call",
+ "range": [
+ 12985,
+ 12989
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 19
+ },
+ "end": {
+ "line": 382,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 12974,
+ 12989
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "slc",
+ "range": [
+ 12990,
+ 12993
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 24
+ },
+ "end": {
+ "line": 382,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "options",
+ "range": [
+ 12994,
+ 13001
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 28
+ },
+ "end": {
+ "line": 382,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 12990,
+ 13001
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 24
+ },
+ "end": {
+ "line": 382,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13004,
+ 13010
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 38
+ },
+ "end": {
+ "line": 382,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 13141,
+ 13147
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 15
+ },
+ "end": {
+ "line": 385,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 13148,
+ 13149
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 22
+ },
+ "end": {
+ "line": 385,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 13141,
+ 13150
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 15
+ },
+ "end": {
+ "line": 385,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 13155,
+ 13157
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 29
+ },
+ "end": {
+ "line": 385,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 13141,
+ 13157
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 15
+ },
+ "end": {
+ "line": 385,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13161,
+ 13167
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 35
+ },
+ "end": {
+ "line": 385,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 13168,
+ 13173
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 42
+ },
+ "end": {
+ "line": 385,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 13161,
+ 13173
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 35
+ },
+ "end": {
+ "line": 385,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 13178,
+ 13180
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 52
+ },
+ "end": {
+ "line": 385,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 13161,
+ 13180
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 35
+ },
+ "end": {
+ "line": 385,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 13141,
+ 13180
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 15
+ },
+ "end": {
+ "line": 385,
+ "column": 54
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13199,
+ 13205
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 16
+ },
+ "end": {
+ "line": 386,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selected",
+ "range": [
+ 13206,
+ 13214
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 23
+ },
+ "end": {
+ "line": 386,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 13199,
+ 13214
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 16
+ },
+ "end": {
+ "line": 386,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 13217,
+ 13222
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 34
+ },
+ "end": {
+ "line": 386,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 13199,
+ 13222
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 16
+ },
+ "end": {
+ "line": 386,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 13199,
+ 13223
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 16
+ },
+ "end": {
+ "line": 386,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 13181,
+ 13237
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 55
+ },
+ "end": {
+ "line": 387,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 13138,
+ 13237
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 12
+ },
+ "end": {
+ "line": 387,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Empty value means clear all selections and first option is the",
+ "range": [
+ 13028,
+ 13093
+ ],
+ "loc": {
+ "start": {
+ "line": 383,
+ "column": 12
+ },
+ "end": {
+ "line": 383,
+ "column": 77
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " clear all option",
+ "range": [
+ 13106,
+ 13125
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 12
+ },
+ "end": {
+ "line": 384,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "!==",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13254,
+ 13260
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 15
+ },
+ "end": {
+ "line": 389,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 13261,
+ 13266
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 22
+ },
+ "end": {
+ "line": 389,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 13254,
+ 13266
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 15
+ },
+ "end": {
+ "line": 389,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 13271,
+ 13273
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 32
+ },
+ "end": {
+ "line": 389,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 13254,
+ 13273
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 15
+ },
+ "end": {
+ "line": 389,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Arr",
+ "range": [
+ 13293,
+ 13296
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 16
+ },
+ "end": {
+ "line": 390,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "has",
+ "range": [
+ 13297,
+ 13300
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 20
+ },
+ "end": {
+ "line": 390,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 13293,
+ 13300
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 16
+ },
+ "end": {
+ "line": 390,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 13301,
+ 13307
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 24
+ },
+ "end": {
+ "line": 390,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13309,
+ 13315
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 32
+ },
+ "end": {
+ "line": 390,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 13316,
+ 13321
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 39
+ },
+ "end": {
+ "line": 390,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 13309,
+ 13321
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 32
+ },
+ "end": {
+ "line": 390,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 13323,
+ 13327
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 46
+ },
+ "end": {
+ "line": 390,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 13293,
+ 13328
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 16
+ },
+ "end": {
+ "line": 390,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 13254,
+ 13328
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 15
+ },
+ "end": {
+ "line": 390,
+ "column": 51
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "option",
+ "range": [
+ 13347,
+ 13353
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 16
+ },
+ "end": {
+ "line": 391,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selected",
+ "range": [
+ 13354,
+ 13362
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 23
+ },
+ "end": {
+ "line": 391,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 13347,
+ 13362
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 16
+ },
+ "end": {
+ "line": 391,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 13365,
+ 13369
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 34
+ },
+ "end": {
+ "line": 391,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 13347,
+ 13369
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 16
+ },
+ "end": {
+ "line": 391,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 13347,
+ 13370
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 16
+ },
+ "end": {
+ "line": 391,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 13329,
+ 13384
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 52
+ },
+ "end": {
+ "line": 392,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 13251,
+ 13384
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 12
+ },
+ "end": {
+ "line": 392,
+ "column": 13
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "if",
+ "range": [
+ 13384,
+ 13388
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 13
+ },
+ "end": {
+ "line": 392,
+ "column": 17
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "range": [
+ 13014,
+ 13398
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 48
+ },
+ "end": {
+ "line": 393,
+ "column": 9
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 13003,
+ 13398
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 37
+ },
+ "end": {
+ "line": 393,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 12974,
+ 13399
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 393,
+ "column": 10
+ }
+ }
+ },
+ "range": [
+ 12974,
+ 13400
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 393,
+ "column": 11
+ }
+ }
+ }
+ ],
+ "range": [
+ 12764,
+ 13406
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 38
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 12743,
+ 13406
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 17
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 12730,
+ 13406
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 4
+ },
+ "end": {
+ "line": 394,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 12556,
+ 12725
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 4
+ },
+ "end": {
+ "line": 374,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "destroy",
+ "range": [
+ 13412,
+ 13419
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 4
+ },
+ "end": {
+ "line": 396,
+ "column": 11
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13431,
+ 13435
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 13436,
+ 13443
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 13
+ },
+ "end": {
+ "line": 397,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 13431,
+ 13443
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 13444,
+ 13447
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 21
+ },
+ "end": {
+ "line": 397,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 13431,
+ 13447
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "build-select-filter",
+ "raw": "'build-select-filter'",
+ "range": [
+ 13462,
+ 13483
+ ],
+ "loc": {
+ "start": {
+ "line": 398,
+ "column": 13
+ },
+ "end": {
+ "line": 398,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 13461,
+ 13484
+ ],
+ "loc": {
+ "start": {
+ "line": 398,
+ "column": 12
+ },
+ "end": {
+ "line": 398,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 13499,
+ 13507
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 13
+ },
+ "end": {
+ "line": 399,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isLinked",
+ "range": [
+ 13509,
+ 13517
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 23
+ },
+ "end": {
+ "line": 399,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 13519,
+ 13529
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 33
+ },
+ "end": {
+ "line": 399,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13549,
+ 13553
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 16
+ },
+ "end": {
+ "line": 400,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 13554,
+ 13559
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 21
+ },
+ "end": {
+ "line": 400,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 13549,
+ 13559
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 16
+ },
+ "end": {
+ "line": 400,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 13560,
+ 13568
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 27
+ },
+ "end": {
+ "line": 400,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isLinked",
+ "range": [
+ 13570,
+ 13578
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 37
+ },
+ "end": {
+ "line": 400,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isExternal",
+ "range": [
+ 13580,
+ 13590
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 47
+ },
+ "end": {
+ "line": 400,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "range": [
+ 13549,
+ 13591
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 16
+ },
+ "end": {
+ "line": 400,
+ "column": 58
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 13498,
+ 13591
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 12
+ },
+ "end": {
+ "line": 400,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 13431,
+ 13601
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 401,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 13431,
+ 13602
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 401,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13611,
+ 13615
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 13616,
+ 13623
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 13
+ },
+ "end": {
+ "line": 402,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 13611,
+ 13623
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 13624,
+ 13627
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 21
+ },
+ "end": {
+ "line": 402,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 13611,
+ 13627
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "select-options",
+ "raw": "'select-options'",
+ "range": [
+ 13642,
+ 13658
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 13
+ },
+ "end": {
+ "line": 403,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 13641,
+ 13659
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 12
+ },
+ "end": {
+ "line": 403,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 13674,
+ 13676
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 13
+ },
+ "end": {
+ "line": 404,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 13678,
+ 13686
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 17
+ },
+ "end": {
+ "line": 404,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 13688,
+ 13694
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 27
+ },
+ "end": {
+ "line": 404,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13698,
+ 13702
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 37
+ },
+ "end": {
+ "line": 404,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "selectOptions",
+ "range": [
+ 13703,
+ 13716
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 42
+ },
+ "end": {
+ "line": 404,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 13698,
+ 13716
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 37
+ },
+ "end": {
+ "line": 404,
+ "column": 55
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 13717,
+ 13725
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 56
+ },
+ "end": {
+ "line": 404,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 13727,
+ 13733
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 66
+ },
+ "end": {
+ "line": 404,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 13698,
+ 13734
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 37
+ },
+ "end": {
+ "line": 404,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 13673,
+ 13734
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 12
+ },
+ "end": {
+ "line": 404,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 13611,
+ 13744
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 405,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 13611,
+ 13745
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 405,
+ "column": 10
+ }
+ }
+ }
+ ],
+ "range": [
+ 13421,
+ 13751
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 13
+ },
+ "end": {
+ "line": 406,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 13419,
+ 13751
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 11
+ },
+ "end": {
+ "line": 406,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 13412,
+ 13751
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 4
+ },
+ "end": {
+ "line": 406,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "if",
+ "range": [
+ 13384,
+ 13388
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 13
+ },
+ "end": {
+ "line": 392,
+ "column": 17
+ }
+ }
+ }
+ ],
"static": false
}
],
"range": [
- 133,
- 12059
+ 214,
+ 13753
],
"loc": {
"start": {
- "line": 6,
- "column": 21
+ "line": 8,
+ "column": 37
},
"end": {
- "line": 342,
+ "line": 407,
"column": 1
}
}
},
"range": [
- 119,
- 12059
+ 184,
+ 13753
],
"loc": {
"start": {
- "line": 6,
+ "line": 8,
"column": 7
},
"end": {
- "line": 342,
+ "line": 407,
"column": 1
}
},
@@ -25228,16 +31306,16 @@
"specifiers": [],
"source": null,
"range": [
- 112,
- 12059
+ 177,
+ 13753
],
"loc": {
"start": {
- "line": 6,
+ "line": 8,
"column": 0
},
"end": {
- "line": 342,
+ "line": 407,
"column": 1
}
}
@@ -25246,7 +31324,7 @@
"sourceType": "module",
"range": [
0,
- 12059
+ 13753
],
"loc": {
"start": {
@@ -25254,7 +31332,7 @@
"column": 0
},
"end": {
- "line": 342,
+ "line": 407,
"column": 1
}
},
@@ -25263,16 +31341,16 @@
"type": "Block",
"value": "*\n * Dropdown UI component\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 140,
- 227
+ 221,
+ 308
],
"loc": {
"start": {
- "line": 8,
+ "line": 10,
"column": 4
},
"end": {
- "line": 11,
+ "line": 13,
"column": 7
}
}
@@ -25281,16 +31359,16 @@
"type": "Line",
"value": " Configuration object",
"range": [
- 257,
- 280
+ 370,
+ 393
],
"loc": {
"start": {
- "line": 13,
+ "line": 17,
"column": 8
},
"end": {
- "line": 13,
+ "line": 17,
"column": 31
}
}
@@ -25299,16 +31377,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 417,
- 444
+ 530,
+ 557
],
"loc": {
"start": {
- "line": 18,
+ "line": 22,
"column": 8
},
"end": {
- "line": 18,
+ "line": 22,
"column": 35
}
}
@@ -25317,16 +31395,16 @@
"type": "Line",
"value": "sets select filling method: 'innerHTML' or 'createElement'",
"range": [
- 516,
- 576
+ 629,
+ 689
],
"loc": {
"start": {
- "line": 20,
+ "line": 24,
"column": 8
},
"end": {
- "line": 20,
+ "line": 24,
"column": 68
}
}
@@ -25335,16 +31413,16 @@
"type": "Line",
"value": "IE only, tooltip text appearing on select before it is populated",
"range": [
- 658,
- 724
+ 771,
+ 837
],
"loc": {
"start": {
- "line": 22,
+ "line": 26,
"column": 8
},
"end": {
- "line": 22,
+ "line": 26,
"column": 74
}
}
@@ -25353,48 +31431,48 @@
"type": "Line",
"value": "tooltip text appearing on multiple select",
"range": [
- 827,
- 870
+ 940,
+ 983
],
"loc": {
"start": {
- "line": 25,
+ "line": 29,
"column": 8
},
"end": {
- "line": 25,
+ "line": 29,
"column": 51
}
}
},
{
- "type": "Block",
- "value": "*\n * Build drop-down filter UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "type": "Line",
+ "value": " select is populated when element has focus",
"range": [
- 1137,
- 1434
+ 1414,
+ 1459
],
"loc": {
"start": {
- "line": 37,
- "column": 4
+ "line": 44,
+ "column": 8
},
"end": {
- "line": 43,
- "column": 7
+ "line": 44,
+ "column": 53
}
}
},
{
"type": "Block",
- "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "value": "*\n * Initialize drop-down filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n ",
"range": [
- 1770,
- 2055
+ 1777,
+ 2008
],
"loc": {
"start": {
- "line": 57,
+ "line": 58,
"column": 4
},
"end": {
@@ -25405,18 +31483,72 @@
},
{
"type": "Line",
- "value": "custom select test",
+ "value": "filter is appended in container element",
"range": [
- 2591,
- 2611
+ 2631,
+ 2672
],
"loc": {
"start": {
- "line": 81,
+ "line": 82,
"column": 8
},
"end": {
- "line": 81,
+ "line": 82,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "1st option is created here since build isn't invoked",
+ "range": [
+ 2996,
+ 3050
+ ],
+ "loc": {
+ "start": {
+ "line": 95,
+ "column": 12
+ },
+ "end": {
+ "line": 95,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n ",
+ "range": [
+ 3647,
+ 3935
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 4
+ },
+ "end": {
+ "line": 122,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "custom select test",
+ "range": [
+ 4540,
+ 4560
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 142,
"column": 28
}
}
@@ -25425,52 +31557,34 @@
"type": "Line",
"value": "custom selects text",
"range": [
- 2675,
- 2696
+ 4624,
+ 4645
],
"loc": {
"start": {
- "line": 84,
+ "line": 145,
"column": 8
},
"end": {
- "line": 84,
+ "line": 145,
"column": 29
}
}
},
- {
- "type": "Block",
- "value": "** remember grid values **",
- "range": [
- 2895,
- 2925
- ],
- "loc": {
- "start": {
- "line": 91,
- "column": 8
- },
- "end": {
- "line": 91,
- "column": 38
- }
- }
- },
{
"type": "Line",
"value": " always visible rows don't need to appear on selects as always",
"range": [
- 3663,
- 3727
+ 5092,
+ 5156
],
"loc": {
"start": {
- "line": 113,
+ "line": 160,
"column": 12
},
"end": {
- "line": 113,
+ "line": 160,
"column": 76
}
}
@@ -25479,16 +31593,16 @@
"type": "Line",
"value": " valid",
"range": [
- 3740,
- 3748
+ 5169,
+ 5177
],
"loc": {
"start": {
- "line": 114,
+ "line": 161,
"column": 12
},
"end": {
- "line": 114,
+ "line": 161,
"column": 20
}
}
@@ -25497,16 +31611,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 3951,
- 3984
+ 5380,
+ 5413
],
"loc": {
"start": {
- "line": 122,
+ "line": 169,
"column": 12
},
"end": {
- "line": 122,
+ "line": 169,
"column": 45
}
}
@@ -25515,16 +31629,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 4095,
- 4127
+ 5524,
+ 5556
],
"loc": {
"start": {
- "line": 127,
+ "line": 174,
"column": 12
},
"end": {
- "line": 127,
+ "line": 174,
"column": 44
}
}
@@ -25533,16 +31647,16 @@
"type": "Line",
"value": " WTF: cyclomatic complexity hell",
"range": [
- 4186,
- 4220
+ 5615,
+ 5649
],
"loc": {
"start": {
- "line": 129,
+ "line": 176,
"column": 16
},
"end": {
- "line": 129,
+ "line": 176,
"column": 50
}
}
@@ -25551,16 +31665,16 @@
"type": "Line",
"value": "Vary Peter's patch",
"range": [
- 4941,
- 4961
+ 6370,
+ 6390
],
"loc": {
"start": {
- "line": 142,
+ "line": 189,
"column": 24
},
"end": {
- "line": 142,
+ "line": 189,
"column": 44
}
}
@@ -25569,16 +31683,16 @@
"type": "Line",
"value": " checks if celldata is already in array",
"range": [
- 5058,
- 5099
+ 6487,
+ 6528
],
"loc": {
"start": {
- "line": 145,
+ "line": 192,
"column": 20
},
"end": {
- "line": 145,
+ "line": 192,
"column": 61
}
}
@@ -25587,16 +31701,16 @@
"type": "Line",
"value": "if colIndex==j",
"range": [
- 5862,
- 5878
+ 7242,
+ 7258
],
"loc": {
"start": {
- "line": 162,
+ "line": 208,
"column": 17
},
"end": {
- "line": 162,
+ "line": 208,
"column": 33
}
}
@@ -25605,16 +31719,16 @@
"type": "Line",
"value": "for j",
"range": [
- 5892,
- 5899
+ 7272,
+ 7279
],
"loc": {
"start": {
- "line": 163,
+ "line": 209,
"column": 13
},
"end": {
- "line": 163,
+ "line": 209,
"column": 20
}
}
@@ -25623,16 +31737,16 @@
"type": "Line",
"value": "for k",
"range": [
- 5909,
- 5916
+ 7289,
+ 7296
],
"loc": {
"start": {
- "line": 164,
+ "line": 210,
"column": 9
},
"end": {
- "line": 164,
+ "line": 210,
"column": 16
}
}
@@ -25641,16 +31755,16 @@
"type": "Line",
"value": "Retrieves custom values",
"range": [
- 5926,
- 5951
+ 7306,
+ 7331
],
"loc": {
"start": {
- "line": 166,
+ "line": 212,
"column": 8
},
"end": {
- "line": 166,
+ "line": 212,
"column": 33
}
}
@@ -25659,16 +31773,16 @@
"type": "Line",
"value": "asc sort",
"range": [
- 6510,
- 6520
+ 7890,
+ 7900
],
"loc": {
"start": {
- "line": 185,
+ "line": 231,
"column": 8
},
"end": {
- "line": 185,
+ "line": 231,
"column": 18
}
}
@@ -25677,16 +31791,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7118,
- 7157
+ 8498,
+ 8537
],
"loc": {
"start": {
- "line": 203,
+ "line": 249,
"column": 13
},
"end": {
- "line": 203,
+ "line": 249,
"column": 52
}
}
@@ -25695,16 +31809,16 @@
"type": "Line",
"value": "desc sort",
"range": [
- 7176,
- 7187
+ 8556,
+ 8567
],
"loc": {
"start": {
- "line": 205,
+ "line": 251,
"column": 8
},
"end": {
- "line": 205,
+ "line": 251,
"column": 19
}
}
@@ -25713,16 +31827,16 @@
"type": "Line",
"value": "in case there are alphanumeric values",
"range": [
- 7788,
- 7827
+ 9168,
+ 9207
],
"loc": {
"start": {
- "line": 223,
+ "line": 269,
"column": 13
},
"end": {
- "line": 223,
+ "line": 269,
"column": 52
}
}
@@ -25731,34 +31845,34 @@
"type": "Line",
"value": "populates drop-down",
"range": [
- 7847,
- 7868
+ 9227,
+ 9248
],
"loc": {
"start": {
- "line": 226,
+ "line": 272,
"column": 8
},
"end": {
- "line": 226,
+ "line": 272,
"column": 29
}
}
},
{
"type": "Block",
- "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n * @param {Array} fltsValues Collection of persisted filter values\n * @param {Array} fltArr Collection of persisted filter values\n ",
+ "value": "*\n * Add drop-down options\n * @param {Number} colIndex Column index\n * @param {Object} slc Select Dom element\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Array} excludedOpts Array of excluded options\n ",
"range": [
- 7977,
- 8399
+ 9398,
+ 9672
],
"loc": {
"start": {
- "line": 231,
+ "line": 278,
"column": 4
},
"end": {
- "line": 239,
+ "line": 284,
"column": 7
}
}
@@ -25767,16 +31881,16 @@
"type": "Line",
"value": "option value",
"range": [
- 8822,
- 8836
+ 10075,
+ 10089
],
"loc": {
"start": {
- "line": 252,
+ "line": 297,
"column": 36
},
"end": {
- "line": 252,
+ "line": 297,
"column": 50
}
}
@@ -25785,16 +31899,16 @@
"type": "Line",
"value": "option text",
"range": [
- 8898,
- 8911
+ 10151,
+ 10164
],
"loc": {
"start": {
- "line": 253,
+ "line": 298,
"column": 61
},
"end": {
- "line": 253,
+ "line": 298,
"column": 74
}
}
@@ -25803,16 +31917,16 @@
"type": "Line",
"value": "fill select on demand",
"range": [
- 9680,
- 9703
+ 10933,
+ 10956
],
"loc": {
"start": {
- "line": 274,
+ "line": 319,
"column": 16
},
"end": {
- "line": 274,
+ "line": 319,
"column": 39
}
}
@@ -25821,16 +31935,16 @@
"type": "Line",
"value": " for y",
"range": [
- 10908,
- 10916
+ 11402,
+ 11410
],
"loc": {
"start": {
- "line": 303,
+ "line": 331,
"column": 9
},
"end": {
- "line": 303,
+ "line": 331,
"column": 17
}
}
@@ -25839,19 +31953,91 @@
"type": "Block",
"value": "*\n * Add drop-down header option\n * @param {Object} slc Select DOM element\n ",
"range": [
- 11068,
- 11160
+ 11562,
+ 11654
],
"loc": {
"start": {
- "line": 311,
+ "line": 339,
"column": 4
},
"end": {
- "line": 314,
+ "line": 342,
"column": 7
}
}
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n ",
+ "range": [
+ 12556,
+ 12725
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 4
+ },
+ "end": {
+ "line": 374,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Empty value means clear all selections and first option is the",
+ "range": [
+ 13028,
+ 13093
+ ],
+ "loc": {
+ "start": {
+ "line": 383,
+ "column": 12
+ },
+ "end": {
+ "line": 383,
+ "column": 77
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " clear all option",
+ "range": [
+ 13106,
+ 13125
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 12
+ },
+ "end": {
+ "line": 384,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "if",
+ "range": [
+ 13384,
+ 13388
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 13
+ },
+ "end": {
+ "line": 392,
+ "column": 17
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/feature.js.json b/docs/ast/source/src/modules/feature.js.json
index 8f45c555..54f45a1f 100644
--- a/docs/ast/source/src/modules/feature.js.json
+++ b/docs/ast/source/src/modules/feature.js.json
@@ -706,10 +706,10 @@
},
"property": {
"type": "Identifier",
- "name": "initialized",
+ "name": "emitter",
"range": [
237,
- 248
+ 244
],
"loc": {
"start": {
@@ -718,13 +718,13 @@
},
"end": {
"line": 10,
- "column": 24
+ "column": 20
}
}
},
"range": [
232,
- 248
+ 244
],
"loc": {
"start": {
@@ -733,6 +733,148 @@
},
"end": {
"line": 10,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 247,
+ 249
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 23
+ },
+ "end": {
+ "line": 10,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 250,
+ 257
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 26
+ },
+ "end": {
+ "line": 10,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 247,
+ 257
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 23
+ },
+ "end": {
+ "line": 10,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 232,
+ 257
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 232,
+ 258
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 8
+ },
+ "end": {
+ "line": 10,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 267,
+ 271
+ ],
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 8
+ },
+ "end": {
+ "line": 11,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 272,
+ 283
+ ],
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 13
+ },
+ "end": {
+ "line": 11,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 267,
+ 283
+ ],
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 8
+ },
+ "end": {
+ "line": 11,
"column": 24
}
}
@@ -742,46 +884,46 @@
"value": false,
"raw": "false",
"range": [
- 251,
- 256
+ 286,
+ 291
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 27
},
"end": {
- "line": 10,
+ "line": 11,
"column": 32
}
}
},
"range": [
- 232,
- 256
+ 267,
+ 291
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 8
},
"end": {
- "line": 10,
+ "line": 11,
"column": 32
}
}
},
"range": [
- 232,
- 257
+ 267,
+ 292
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 8
},
"end": {
- "line": 10,
+ "line": 11,
"column": 33
}
}
@@ -789,7 +931,7 @@
],
"range": [
97,
- 263
+ 298
],
"loc": {
"start": {
@@ -797,7 +939,7 @@
"column": 29
},
"end": {
- "line": 11,
+ "line": 12,
"column": 5
}
}
@@ -806,7 +948,7 @@
"expression": false,
"range": [
83,
- 263
+ 298
],
"loc": {
"start": {
@@ -814,7 +956,7 @@
"column": 15
},
"end": {
- "line": 11,
+ "line": 12,
"column": 5
}
}
@@ -823,7 +965,7 @@
"computed": false,
"range": [
72,
- 263
+ 298
],
"loc": {
"start": {
@@ -831,7 +973,7 @@
"column": 4
},
"end": {
- "line": 11,
+ "line": 12,
"column": 5
}
},
@@ -843,16 +985,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 269,
- 273
+ 304,
+ 308
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 4
},
"end": {
- "line": 13,
+ "line": 14,
"column": 8
}
}
@@ -872,16 +1014,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 296,
- 301
+ 331,
+ 336
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 18
},
"end": {
- "line": 14,
+ "line": 15,
"column": 23
}
}
@@ -891,63 +1033,63 @@
"type": "Identifier",
"name": "NOTIMPLEMENTED",
"range": [
- 302,
- 316
+ 337,
+ 351
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 24
},
"end": {
- "line": 14,
+ "line": 15,
"column": 38
}
}
}
],
"range": [
- 292,
- 317
+ 327,
+ 352
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 14
},
"end": {
- "line": 14,
+ "line": 15,
"column": 39
}
}
},
"range": [
- 286,
- 318
+ 321,
+ 353
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 40
}
}
}
],
"range": [
- 276,
- 324
+ 311,
+ 359
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 11
},
"end": {
- "line": 15,
+ "line": 16,
"column": 5
}
}
@@ -955,16 +1097,16 @@
"generator": false,
"expression": false,
"range": [
- 273,
- 324
+ 308,
+ 359
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 8
},
"end": {
- "line": 15,
+ "line": 16,
"column": 5
}
}
@@ -972,16 +1114,16 @@
"kind": "method",
"computed": false,
"range": [
- 269,
- 324
+ 304,
+ 359
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 4
},
"end": {
- "line": 15,
+ "line": 16,
"column": 5
}
},
@@ -993,16 +1135,16 @@
"type": "Identifier",
"name": "reset",
"range": [
- 330,
- 335
+ 365,
+ 370
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 4
},
"end": {
- "line": 17,
+ "line": 18,
"column": 9
}
}
@@ -1024,16 +1166,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 348,
- 352
+ 383,
+ 387
],
"loc": {
"start": {
- "line": 18,
+ "line": 19,
"column": 8
},
"end": {
- "line": 18,
+ "line": 19,
"column": 12
}
}
@@ -1042,62 +1184,62 @@
"type": "Identifier",
"name": "enable",
"range": [
- 353,
- 359
+ 388,
+ 394
],
"loc": {
"start": {
- "line": 18,
+ "line": 19,
"column": 13
},
"end": {
- "line": 18,
+ "line": 19,
"column": 19
}
}
},
"range": [
- 348,
- 359
+ 383,
+ 394
],
"loc": {
"start": {
- "line": 18,
+ "line": 19,
"column": 8
},
"end": {
- "line": 18,
+ "line": 19,
"column": 19
}
}
},
"arguments": [],
"range": [
- 348,
- 361
+ 383,
+ 396
],
"loc": {
"start": {
- "line": 18,
+ "line": 19,
"column": 8
},
"end": {
- "line": 18,
+ "line": 19,
"column": 21
}
}
},
"range": [
- 348,
- 362
+ 383,
+ 397
],
"loc": {
"start": {
- "line": 18,
+ "line": 19,
"column": 8
},
"end": {
- "line": 18,
+ "line": 19,
"column": 22
}
}
@@ -1112,16 +1254,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 371,
- 375
+ 406,
+ 410
],
"loc": {
"start": {
- "line": 19,
+ "line": 20,
"column": 8
},
"end": {
- "line": 19,
+ "line": 20,
"column": 12
}
}
@@ -1130,78 +1272,78 @@
"type": "Identifier",
"name": "init",
"range": [
- 376,
- 380
+ 411,
+ 415
],
"loc": {
"start": {
- "line": 19,
+ "line": 20,
"column": 13
},
"end": {
- "line": 19,
+ "line": 20,
"column": 17
}
}
},
"range": [
- 371,
- 380
+ 406,
+ 415
],
"loc": {
"start": {
- "line": 19,
+ "line": 20,
"column": 8
},
"end": {
- "line": 19,
+ "line": 20,
"column": 17
}
}
},
"arguments": [],
"range": [
- 371,
- 382
+ 406,
+ 417
],
"loc": {
"start": {
- "line": 19,
+ "line": 20,
"column": 8
},
"end": {
- "line": 19,
+ "line": 20,
"column": 19
}
}
},
"range": [
- 371,
- 383
+ 406,
+ 418
],
"loc": {
"start": {
- "line": 19,
+ "line": 20,
"column": 8
},
"end": {
- "line": 19,
+ "line": 20,
"column": 20
}
}
}
],
"range": [
- 338,
- 389
+ 373,
+ 424
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 12
},
"end": {
- "line": 20,
+ "line": 21,
"column": 5
}
}
@@ -1209,16 +1351,16 @@
"generator": false,
"expression": false,
"range": [
- 335,
- 389
+ 370,
+ 424
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 9
},
"end": {
- "line": 20,
+ "line": 21,
"column": 5
}
}
@@ -1226,16 +1368,16 @@
"kind": "method",
"computed": false,
"range": [
- 330,
- 389
+ 365,
+ 424
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 4
},
"end": {
- "line": 20,
+ "line": 21,
"column": 5
}
},
@@ -1247,16 +1389,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 395,
- 402
+ 430,
+ 437
],
"loc": {
"start": {
- "line": 22,
+ "line": 23,
"column": 4
},
"end": {
- "line": 22,
+ "line": 23,
"column": 11
}
}
@@ -1276,16 +1418,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 425,
- 430
+ 460,
+ 465
],
"loc": {
"start": {
- "line": 23,
+ "line": 24,
"column": 18
},
"end": {
- "line": 23,
+ "line": 24,
"column": 23
}
}
@@ -1295,63 +1437,63 @@
"type": "Identifier",
"name": "NOTIMPLEMENTED",
"range": [
- 431,
- 445
+ 466,
+ 480
],
"loc": {
"start": {
- "line": 23,
+ "line": 24,
"column": 24
},
"end": {
- "line": 23,
+ "line": 24,
"column": 38
}
}
}
],
"range": [
- 421,
- 446
+ 456,
+ 481
],
"loc": {
"start": {
- "line": 23,
+ "line": 24,
"column": 14
},
"end": {
- "line": 23,
+ "line": 24,
"column": 39
}
}
},
"range": [
- 415,
- 447
+ 450,
+ 482
],
"loc": {
"start": {
- "line": 23,
+ "line": 24,
"column": 8
},
"end": {
- "line": 23,
+ "line": 24,
"column": 40
}
}
}
],
"range": [
- 405,
- 453
+ 440,
+ 488
],
"loc": {
"start": {
- "line": 22,
+ "line": 23,
"column": 14
},
"end": {
- "line": 24,
+ "line": 25,
"column": 5
}
}
@@ -1359,16 +1501,16 @@
"generator": false,
"expression": false,
"range": [
- 402,
- 453
+ 437,
+ 488
],
"loc": {
"start": {
- "line": 22,
+ "line": 23,
"column": 11
},
"end": {
- "line": 24,
+ "line": 25,
"column": 5
}
}
@@ -1376,16 +1518,16 @@
"kind": "method",
"computed": false,
"range": [
- 395,
- 453
+ 430,
+ 488
],
"loc": {
"start": {
- "line": 22,
+ "line": 23,
"column": 4
},
"end": {
- "line": 24,
+ "line": 25,
"column": 5
}
},
@@ -1397,16 +1539,16 @@
"type": "Identifier",
"name": "enable",
"range": [
- 459,
- 465
+ 494,
+ 500
],
"loc": {
"start": {
- "line": 26,
+ "line": 27,
"column": 4
},
"end": {
- "line": 26,
+ "line": 27,
"column": 10
}
}
@@ -1429,16 +1571,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 478,
- 482
+ 513,
+ 517
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 8
},
"end": {
- "line": 27,
+ "line": 28,
"column": 12
}
}
@@ -1447,31 +1589,31 @@
"type": "Identifier",
"name": "enabled",
"range": [
- 483,
- 490
+ 518,
+ 525
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 13
},
"end": {
- "line": 27,
+ "line": 28,
"column": 20
}
}
},
"range": [
- 478,
- 490
+ 513,
+ 525
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 8
},
"end": {
- "line": 27,
+ "line": 28,
"column": 20
}
}
@@ -1481,62 +1623,62 @@
"value": true,
"raw": "true",
"range": [
- 493,
- 497
+ 528,
+ 532
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 23
},
"end": {
- "line": 27,
+ "line": 28,
"column": 27
}
}
},
"range": [
- 478,
- 497
+ 513,
+ 532
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 8
},
"end": {
- "line": 27,
+ "line": 28,
"column": 27
}
}
},
"range": [
- 478,
- 498
+ 513,
+ 533
],
"loc": {
"start": {
- "line": 27,
+ "line": 28,
"column": 8
},
"end": {
- "line": 27,
+ "line": 28,
"column": 28
}
}
}
],
"range": [
- 468,
- 504
+ 503,
+ 539
],
"loc": {
"start": {
- "line": 26,
+ "line": 27,
"column": 13
},
"end": {
- "line": 28,
+ "line": 29,
"column": 5
}
}
@@ -1544,16 +1686,16 @@
"generator": false,
"expression": false,
"range": [
- 465,
- 504
+ 500,
+ 539
],
"loc": {
"start": {
- "line": 26,
+ "line": 27,
"column": 10
},
"end": {
- "line": 28,
+ "line": 29,
"column": 5
}
}
@@ -1561,16 +1703,16 @@
"kind": "method",
"computed": false,
"range": [
- 459,
- 504
+ 494,
+ 539
],
"loc": {
"start": {
- "line": 26,
+ "line": 27,
"column": 4
},
"end": {
- "line": 28,
+ "line": 29,
"column": 5
}
},
@@ -1582,16 +1724,16 @@
"type": "Identifier",
"name": "disable",
"range": [
- 510,
- 517
+ 545,
+ 552
],
"loc": {
"start": {
- "line": 30,
+ "line": 31,
"column": 4
},
"end": {
- "line": 30,
+ "line": 31,
"column": 11
}
}
@@ -1614,16 +1756,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 530,
- 534
+ 565,
+ 569
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 8
},
"end": {
- "line": 31,
+ "line": 32,
"column": 12
}
}
@@ -1632,31 +1774,31 @@
"type": "Identifier",
"name": "enabled",
"range": [
- 535,
- 542
+ 570,
+ 577
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 13
},
"end": {
- "line": 31,
+ "line": 32,
"column": 20
}
}
},
"range": [
- 530,
- 542
+ 565,
+ 577
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 8
},
"end": {
- "line": 31,
+ "line": 32,
"column": 20
}
}
@@ -1666,62 +1808,62 @@
"value": false,
"raw": "false",
"range": [
- 545,
- 550
+ 580,
+ 585
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 23
},
"end": {
- "line": 31,
+ "line": 32,
"column": 28
}
}
},
"range": [
- 530,
- 550
+ 565,
+ 585
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 8
},
"end": {
- "line": 31,
+ "line": 32,
"column": 28
}
}
},
"range": [
- 530,
- 551
+ 565,
+ 586
],
"loc": {
"start": {
- "line": 31,
+ "line": 32,
"column": 8
},
"end": {
- "line": 31,
+ "line": 32,
"column": 29
}
}
}
],
"range": [
- 520,
- 557
+ 555,
+ 592
],
"loc": {
"start": {
- "line": 30,
+ "line": 31,
"column": 14
},
"end": {
- "line": 32,
+ "line": 33,
"column": 5
}
}
@@ -1729,16 +1871,16 @@
"generator": false,
"expression": false,
"range": [
- 517,
- 557
+ 552,
+ 592
],
"loc": {
"start": {
- "line": 30,
+ "line": 31,
"column": 11
},
"end": {
- "line": 32,
+ "line": 33,
"column": 5
}
}
@@ -1746,16 +1888,16 @@
"kind": "method",
"computed": false,
"range": [
- 510,
- 557
+ 545,
+ 592
],
"loc": {
"start": {
- "line": 30,
+ "line": 31,
"column": 4
},
"end": {
- "line": 32,
+ "line": 33,
"column": 5
}
},
@@ -1767,16 +1909,16 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 563,
- 572
+ 598,
+ 607
],
"loc": {
"start": {
- "line": 34,
+ "line": 35,
"column": 4
},
"end": {
- "line": 34,
+ "line": 35,
"column": 13
}
}
@@ -1796,16 +1938,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 592,
- 596
+ 627,
+ 631
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 15
},
"end": {
- "line": 35,
+ "line": 36,
"column": 19
}
}
@@ -1814,62 +1956,62 @@
"type": "Identifier",
"name": "enabled",
"range": [
- 597,
- 604
+ 632,
+ 639
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 20
},
"end": {
- "line": 35,
+ "line": 36,
"column": 27
}
}
},
"range": [
- 592,
- 604
+ 627,
+ 639
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 15
},
"end": {
- "line": 35,
+ "line": 36,
"column": 27
}
}
},
"range": [
- 585,
- 605
+ 620,
+ 640
],
"loc": {
"start": {
- "line": 35,
+ "line": 36,
"column": 8
},
"end": {
- "line": 35,
+ "line": 36,
"column": 28
}
}
}
],
"range": [
- 575,
- 611
+ 610,
+ 646
],
"loc": {
"start": {
- "line": 34,
+ "line": 35,
"column": 16
},
"end": {
- "line": 36,
+ "line": 37,
"column": 5
}
}
@@ -1877,16 +2019,16 @@
"generator": false,
"expression": false,
"range": [
- 572,
- 611
+ 607,
+ 646
],
"loc": {
"start": {
- "line": 34,
+ "line": 35,
"column": 13
},
"end": {
- "line": 36,
+ "line": 37,
"column": 5
}
}
@@ -1894,16 +2036,16 @@
"kind": "method",
"computed": false,
"range": [
- 563,
- 611
+ 598,
+ 646
],
"loc": {
"start": {
- "line": 34,
+ "line": 35,
"column": 4
},
"end": {
- "line": 36,
+ "line": 37,
"column": 5
}
},
@@ -1912,7 +2054,7 @@
],
"range": [
66,
- 613
+ 648
],
"loc": {
"start": {
@@ -1920,14 +2062,14 @@
"column": 21
},
"end": {
- "line": 37,
+ "line": 38,
"column": 1
}
}
},
"range": [
52,
- 613
+ 648
],
"loc": {
"start": {
@@ -1935,7 +2077,7 @@
"column": 7
},
"end": {
- "line": 37,
+ "line": 38,
"column": 1
}
},
@@ -1946,7 +2088,7 @@
"source": null,
"range": [
45,
- 613
+ 648
],
"loc": {
"start": {
@@ -1954,7 +2096,7 @@
"column": 0
},
"end": {
- "line": 37,
+ "line": 38,
"column": 1
}
}
@@ -1963,7 +2105,7 @@
"sourceType": "module",
"range": [
1,
- 613
+ 648
],
"loc": {
"start": {
@@ -1971,7 +2113,7 @@
"column": 0
},
"end": {
- "line": 37,
+ "line": 38,
"column": 1
}
},
diff --git a/docs/ast/source/src/modules/gridLayout.js.json b/docs/ast/source/src/modules/gridLayout.js.json
index 79ebf3dc..3056858f 100644
--- a/docs/ast/source/src/modules/gridLayout.js.json
+++ b/docs/ast/source/src/modules/gridLayout.js.json
@@ -655,7 +655,7 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
364,
384
@@ -4133,12 +4133,194 @@
"line": 56,
"column": 46
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " filters flag at TF level",
+ "range": [
+ 2284,
+ 2311
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 58,
+ "column": 35
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2320,
+ 2322
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltGrid",
+ "range": [
+ 2323,
+ 2330
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 11
+ },
+ "end": {
+ "line": 59,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2320,
+ 2330
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 18
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2333,
+ 2337
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 21
+ },
+ "end": {
+ "line": 59,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridEnableFilters",
+ "range": [
+ 2338,
+ 2355
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 26
+ },
+ "end": {
+ "line": 59,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 2333,
+ 2355
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 21
+ },
+ "end": {
+ "line": 59,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 2320,
+ 2355
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 2320,
+ 2356
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 44
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " filters flag at TF level",
+ "range": [
+ 2284,
+ 2311
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 58,
+ "column": 35
+ }
+ }
+ }
+ ]
}
],
"range": [
320,
- 2280
+ 2362
],
"loc": {
"start": {
@@ -4146,7 +4328,7 @@
"column": 19
},
"end": {
- "line": 57,
+ "line": 60,
"column": 5
}
}
@@ -4155,7 +4337,7 @@
"expression": false,
"range": [
316,
- 2280
+ 2362
],
"loc": {
"start": {
@@ -4163,7 +4345,7 @@
"column": 15
},
"end": {
- "line": 57,
+ "line": 60,
"column": 5
}
}
@@ -4172,7 +4354,7 @@
"computed": false,
"range": [
305,
- 2280
+ 2362
],
"loc": {
"start": {
@@ -4180,7 +4362,7 @@
"column": 4
},
"end": {
- "line": 57,
+ "line": 60,
"column": 5
}
},
@@ -4209,16 +4391,16 @@
"type": "Block",
"value": "*\n * Generates a grid with fixed headers\n ",
"range": [
- 2286,
- 2340
+ 2368,
+ 2422
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 4
},
"end": {
- "line": 61,
+ "line": 64,
"column": 7
}
}
@@ -4232,16 +4414,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 2345,
- 2349
+ 2427,
+ 2431
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 4
},
"end": {
- "line": 62,
+ "line": 65,
"column": 8
}
}
@@ -4262,16 +4444,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2365,
- 2367
+ 2447,
+ 2449
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 12
},
"end": {
- "line": 63,
+ "line": 66,
"column": 14
}
}
@@ -4282,16 +4464,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2370,
- 2374
+ 2452,
+ 2456
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 17
},
"end": {
- "line": 63,
+ "line": 66,
"column": 21
}
}
@@ -4300,63 +4482,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2375,
- 2377
+ 2457,
+ 2459
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 22
},
"end": {
- "line": 63,
+ "line": 66,
"column": 24
}
}
},
"range": [
- 2370,
- 2377
+ 2452,
+ 2459
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 17
},
"end": {
- "line": 63,
+ "line": 66,
"column": 24
}
}
},
"range": [
- 2365,
- 2377
+ 2447,
+ 2459
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 12
},
"end": {
- "line": 63,
+ "line": 66,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2361,
- 2378
+ 2443,
+ 2460
],
"loc": {
"start": {
- "line": 63,
+ "line": 66,
"column": 8
},
"end": {
- "line": 63,
+ "line": 66,
"column": 25
}
}
@@ -4370,16 +4552,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 2391,
- 2392
+ 2473,
+ 2474
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 12
},
"end": {
- "line": 64,
+ "line": 67,
"column": 13
}
}
@@ -4390,16 +4572,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2395,
- 2399
+ 2477,
+ 2481
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 16
},
"end": {
- "line": 64,
+ "line": 67,
"column": 20
}
}
@@ -4408,63 +4590,63 @@
"type": "Identifier",
"name": "config",
"range": [
- 2400,
- 2406
+ 2482,
+ 2488
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 21
},
"end": {
- "line": 64,
+ "line": 67,
"column": 27
}
}
},
"range": [
- 2395,
- 2406
+ 2477,
+ 2488
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 16
},
"end": {
- "line": 64,
+ "line": 67,
"column": 27
}
}
},
"range": [
- 2391,
- 2406
+ 2473,
+ 2488
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 12
},
"end": {
- "line": 64,
+ "line": 67,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2387,
- 2407
+ 2469,
+ 2489
],
"loc": {
"start": {
- "line": 64,
+ "line": 67,
"column": 8
},
"end": {
- "line": 64,
+ "line": 67,
"column": 28
}
}
@@ -4478,16 +4660,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2420,
- 2423
+ 2502,
+ 2505
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 12
},
"end": {
- "line": 65,
+ "line": 68,
"column": 15
}
}
@@ -4499,16 +4681,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2426,
- 2428
+ 2508,
+ 2510
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 18
},
"end": {
- "line": 65,
+ "line": 68,
"column": 20
}
}
@@ -4517,63 +4699,63 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2429,
- 2432
+ 2511,
+ 2514
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 21
},
"end": {
- "line": 65,
+ "line": 68,
"column": 24
}
}
},
"range": [
- 2426,
- 2432
+ 2508,
+ 2514
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 18
},
"end": {
- "line": 65,
+ "line": 68,
"column": 24
}
}
},
"range": [
- 2420,
- 2432
+ 2502,
+ 2514
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 12
},
"end": {
- "line": 65,
+ "line": 68,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2416,
- 2433
+ 2498,
+ 2515
],
"loc": {
"start": {
- "line": 65,
+ "line": 68,
"column": 8
},
"end": {
- "line": 65,
+ "line": 68,
"column": 25
}
}
@@ -4586,16 +4768,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2446,
- 2450
+ 2528,
+ 2532
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 11
},
"end": {
- "line": 67,
+ "line": 70,
"column": 15
}
}
@@ -4604,31 +4786,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2451,
- 2462
+ 2533,
+ 2544
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 16
},
"end": {
- "line": 67,
+ "line": 70,
"column": 27
}
}
},
"range": [
- 2446,
- 2462
+ 2528,
+ 2544
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 11
},
"end": {
- "line": 67,
+ "line": 70,
"column": 27
}
}
@@ -4640,50 +4822,504 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2477,
- 2484
+ 2559,
+ 2566
],
"loc": {
"start": {
- "line": 68,
+ "line": 71,
"column": 12
},
"end": {
- "line": 68,
+ "line": 71,
"column": 19
}
}
}
],
"range": [
- 2463,
- 2494
+ 2545,
+ 2576
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 28
},
"end": {
- "line": 69,
+ "line": 72,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2443,
- 2494
+ 2525,
+ 2576
],
"loc": {
"start": {
- "line": 67,
+ "line": 70,
"column": 8
},
"end": {
- "line": 69,
+ "line": 72,
"column": 9
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Override reference rows indexes",
+ "range": [
+ 2586,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 8
+ },
+ "end": {
+ "line": 74,
+ "column": 42
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2629,
+ 2631
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 8
+ },
+ "end": {
+ "line": 75,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 2632,
+ 2638
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 11
+ },
+ "end": {
+ "line": 75,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 2629,
+ 2638
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 8
+ },
+ "end": {
+ "line": 75,
+ "column": 17
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 2641,
+ 2646
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 20
+ },
+ "end": {
+ "line": 75,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isNull",
+ "range": [
+ 2647,
+ 2653
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 26
+ },
+ "end": {
+ "line": 75,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2641,
+ 2653
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 20
+ },
+ "end": {
+ "line": 75,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2654,
+ 2656
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 33
+ },
+ "end": {
+ "line": 75,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "startRow",
+ "range": [
+ 2657,
+ 2665
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 36
+ },
+ "end": {
+ "line": 75,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 2654,
+ 2665
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 33
+ },
+ "end": {
+ "line": 75,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 2641,
+ 2666
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 20
+ },
+ "end": {
+ "line": 75,
+ "column": 45
+ }
+ }
+ },
+ "consequent": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 2669,
+ 2670
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 48
+ },
+ "end": {
+ "line": 75,
+ "column": 49
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2673,
+ 2675
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 52
+ },
+ "end": {
+ "line": 75,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "startRow",
+ "range": [
+ 2676,
+ 2684
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 55
+ },
+ "end": {
+ "line": 75,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 2673,
+ 2684
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 52
+ },
+ "end": {
+ "line": 75,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 2641,
+ 2684
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 20
+ },
+ "end": {
+ "line": 75,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 2629,
+ 2684
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 8
+ },
+ "end": {
+ "line": 75,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 2629,
+ 2685
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 8
+ },
+ "end": {
+ "line": 75,
+ "column": 64
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Override reference rows indexes",
+ "range": [
+ 2586,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 8
+ },
+ "end": {
+ "line": 74,
+ "column": 42
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2694,
+ 2696
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 8
+ },
+ "end": {
+ "line": 76,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 2697,
+ 2707
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 11
+ },
+ "end": {
+ "line": 76,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2694,
+ 2707
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 8
+ },
+ "end": {
+ "line": 76,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 2710,
+ 2711
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 24
+ },
+ "end": {
+ "line": 76,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 2694,
+ 2711
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 8
+ },
+ "end": {
+ "line": 76,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 2694,
+ 2712
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 8
+ },
+ "end": {
+ "line": 76,
+ "column": 26
+ }
}
},
{
@@ -4698,16 +5334,124 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2504,
- 2506
+ 2721,
+ 2723
],
"loc": {
"start": {
- "line": 71,
+ "line": 77,
"column": 8
},
"end": {
- "line": 71,
+ "line": 77,
+ "column": 10
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filtersRowIndex",
+ "range": [
+ 2724,
+ 2739
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 11
+ },
+ "end": {
+ "line": 77,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2721,
+ 2739
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 8
+ },
+ "end": {
+ "line": 77,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 2742,
+ 2743
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 29
+ },
+ "end": {
+ "line": 77,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2721,
+ 2743
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 8
+ },
+ "end": {
+ "line": 77,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2721,
+ 2744
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 8
+ },
+ "end": {
+ "line": 77,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2754,
+ 2756
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
"column": 10
}
}
@@ -4716,31 +5460,31 @@
"type": "Identifier",
"name": "isExternalFlt",
"range": [
- 2507,
- 2520
+ 2757,
+ 2770
],
"loc": {
"start": {
- "line": 71,
+ "line": 79,
"column": 11
},
"end": {
- "line": 71,
+ "line": 79,
"column": 24
}
}
},
"range": [
- 2504,
- 2520
+ 2754,
+ 2770
],
"loc": {
"start": {
- "line": 71,
+ "line": 79,
"column": 8
},
"end": {
- "line": 71,
+ "line": 79,
"column": 24
}
}
@@ -4750,46 +5494,46 @@
"value": true,
"raw": "true",
"range": [
- 2523,
- 2527
+ 2773,
+ 2777
],
"loc": {
"start": {
- "line": 71,
+ "line": 79,
"column": 27
},
"end": {
- "line": 71,
+ "line": 79,
"column": 31
}
}
},
"range": [
- 2504,
- 2527
+ 2754,
+ 2777
],
"loc": {
"start": {
- "line": 71,
+ "line": 79,
"column": 8
},
"end": {
- "line": 71,
+ "line": 79,
"column": 31
}
}
},
"range": [
- 2504,
- 2528
+ 2754,
+ 2778
],
"loc": {
"start": {
- "line": 71,
+ "line": 79,
"column": 8
},
"end": {
- "line": 71,
+ "line": 79,
"column": 32
}
},
@@ -4798,16 +5542,16 @@
"type": "Line",
"value": " default width of 100px if column widths not set",
"range": [
- 2538,
- 2588
+ 2788,
+ 2838
],
"loc": {
"start": {
- "line": 73,
+ "line": 81,
"column": 8
},
"end": {
- "line": 73,
+ "line": 81,
"column": 58
}
}
@@ -4826,16 +5570,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2601,
- 2603
+ 2851,
+ 2853
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 12
},
"end": {
- "line": 74,
+ "line": 82,
"column": 14
}
}
@@ -4844,47 +5588,47 @@
"type": "Identifier",
"name": "hasColWidths",
"range": [
- 2604,
- 2616
+ 2854,
+ 2866
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 15
},
"end": {
- "line": 74,
+ "line": 82,
"column": 27
}
}
},
"range": [
- 2601,
- 2616
+ 2851,
+ 2866
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 12
},
"end": {
- "line": 74,
+ "line": 82,
"column": 27
}
}
},
"prefix": true,
"range": [
- 2600,
- 2616
+ 2850,
+ 2866
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 11
},
"end": {
- "line": 74,
+ "line": 82,
"column": 27
}
}
@@ -4904,16 +5648,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2631,
- 2633
+ 2881,
+ 2883
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 12
},
"end": {
- "line": 75,
+ "line": 83,
"column": 14
}
}
@@ -4922,31 +5666,31 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 2634,
- 2643
+ 2884,
+ 2893
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 15
},
"end": {
- "line": 75,
+ "line": 83,
"column": 24
}
}
},
"range": [
- 2631,
- 2643
+ 2881,
+ 2893
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 12
},
"end": {
- "line": 75,
+ "line": 83,
"column": 24
}
}
@@ -4955,46 +5699,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2646,
- 2648
+ 2896,
+ 2898
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 27
},
"end": {
- "line": 75,
+ "line": 83,
"column": 29
}
}
},
"range": [
- 2631,
- 2648
+ 2881,
+ 2898
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 12
},
"end": {
- "line": 75,
+ "line": 83,
"column": 29
}
}
},
"range": [
- 2631,
- 2649
+ 2881,
+ 2899
],
"loc": {
"start": {
- "line": 75,
+ "line": 83,
"column": 12
},
"end": {
- "line": 75,
+ "line": 83,
"column": 30
}
}
@@ -5010,16 +5754,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 2670,
- 2671
+ 2920,
+ 2921
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 20
},
"end": {
- "line": 76,
+ "line": 84,
"column": 21
}
}
@@ -5029,48 +5773,48 @@
"value": 0,
"raw": "0",
"range": [
- 2672,
- 2673
+ 2922,
+ 2923
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 22
},
"end": {
- "line": 76,
+ "line": 84,
"column": 23
}
}
},
"range": [
- 2670,
- 2673
+ 2920,
+ 2923
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 20
},
"end": {
- "line": 76,
+ "line": 84,
"column": 23
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2666,
- 2673
+ 2916,
+ 2923
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 16
},
"end": {
- "line": 76,
+ "line": 84,
"column": 23
}
}
@@ -5082,16 +5826,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 2675,
- 2676
+ 2925,
+ 2926
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 25
},
"end": {
- "line": 76,
+ "line": 84,
"column": 26
}
}
@@ -5103,16 +5847,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2677,
- 2679
+ 2927,
+ 2929
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 27
},
"end": {
- "line": 76,
+ "line": 84,
"column": 29
}
}
@@ -5121,46 +5865,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 2680,
- 2687
+ 2930,
+ 2937
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 30
},
"end": {
- "line": 76,
+ "line": 84,
"column": 37
}
}
},
"range": [
- 2677,
- 2687
+ 2927,
+ 2937
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 27
},
"end": {
- "line": 76,
+ "line": 84,
"column": 37
}
}
},
"range": [
- 2675,
- 2687
+ 2925,
+ 2937
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 25
},
"end": {
- "line": 76,
+ "line": 84,
"column": 37
}
}
@@ -5172,32 +5916,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 2689,
- 2690
+ 2939,
+ 2940
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 39
},
"end": {
- "line": 76,
+ "line": 84,
"column": 40
}
}
},
"prefix": false,
"range": [
- 2689,
- 2692
+ 2939,
+ 2942
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 39
},
"end": {
- "line": 76,
+ "line": 84,
"column": 42
}
}
@@ -5214,32 +5958,32 @@
"type": "Identifier",
"name": "colW",
"range": [
- 2715,
- 2719
+ 2965,
+ 2969
],
"loc": {
"start": {
- "line": 77,
+ "line": 85,
"column": 20
},
"end": {
- "line": 77,
+ "line": 85,
"column": 24
}
}
},
"init": null,
"range": [
- 2715,
- 2719
+ 2965,
+ 2969
],
"loc": {
"start": {
- "line": 77,
+ "line": 85,
"column": 20
},
"end": {
- "line": 77,
+ "line": 85,
"column": 24
}
}
@@ -5250,16 +5994,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 2741,
- 2745
+ 2991,
+ 2995
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 20
},
"end": {
- "line": 78,
+ "line": 86,
"column": 24
}
}
@@ -5280,16 +6024,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2748,
- 2751
+ 2998,
+ 3001
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 27
},
"end": {
- "line": 78,
+ "line": 86,
"column": 30
}
}
@@ -5298,31 +6042,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 2752,
- 2756
+ 3002,
+ 3006
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 31
},
"end": {
- "line": 78,
+ "line": 86,
"column": 35
}
}
},
"range": [
- 2748,
- 2756
+ 2998,
+ 3006
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 27
},
"end": {
- "line": 78,
+ "line": 86,
"column": 35
}
}
@@ -5333,16 +6077,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2757,
- 2761
+ 3007,
+ 3011
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 36
},
"end": {
- "line": 78,
+ "line": 86,
"column": 40
}
}
@@ -5351,46 +6095,46 @@
"type": "Identifier",
"name": "gridHeadRowIndex",
"range": [
- 2762,
- 2778
+ 3012,
+ 3028
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 41
},
"end": {
- "line": 78,
+ "line": 86,
"column": 57
}
}
},
"range": [
- 2757,
- 2778
+ 3007,
+ 3028
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 36
},
"end": {
- "line": 78,
+ "line": 86,
"column": 57
}
}
},
"range": [
- 2748,
- 2779
+ 2998,
+ 3029
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 27
},
"end": {
- "line": 78,
+ "line": 86,
"column": 58
}
}
@@ -5399,31 +6143,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 2780,
- 2785
+ 3030,
+ 3035
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 59
},
"end": {
- "line": 78,
+ "line": 86,
"column": 64
}
}
},
"range": [
- 2748,
- 2785
+ 2998,
+ 3035
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 27
},
"end": {
- "line": 78,
+ "line": 86,
"column": 64
}
}
@@ -5432,63 +6176,63 @@
"type": "Identifier",
"name": "k",
"range": [
- 2786,
- 2787
+ 3036,
+ 3037
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 65
},
"end": {
- "line": 78,
+ "line": 86,
"column": 66
}
}
},
"range": [
- 2748,
- 2788
+ 2998,
+ 3038
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 27
},
"end": {
- "line": 78,
+ "line": 86,
"column": 67
}
}
},
"range": [
- 2741,
- 2788
+ 2991,
+ 3038
],
"loc": {
"start": {
- "line": 78,
+ "line": 86,
"column": 20
},
"end": {
- "line": 78,
+ "line": 86,
"column": 67
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2711,
- 2789
+ 2961,
+ 3039
],
"loc": {
"start": {
- "line": 77,
+ "line": 85,
"column": 16
},
"end": {
- "line": 78,
+ "line": 86,
"column": 68
}
}
@@ -5505,16 +6249,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 2809,
- 2813
+ 3059,
+ 3063
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 19
},
"end": {
- "line": 79,
+ "line": 87,
"column": 23
}
}
@@ -5523,31 +6267,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 2814,
- 2819
+ 3064,
+ 3069
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 24
},
"end": {
- "line": 79,
+ "line": 87,
"column": 29
}
}
},
"range": [
- 2809,
- 2819
+ 3059,
+ 3069
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 19
},
"end": {
- "line": 79,
+ "line": 87,
"column": 29
}
}
@@ -5557,31 +6301,31 @@
"value": "",
"raw": "''",
"range": [
- 2824,
- 2826
+ 3074,
+ 3076
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 34
},
"end": {
- "line": 79,
+ "line": 87,
"column": 36
}
}
},
"range": [
- 2809,
- 2826
+ 3059,
+ 3076
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 19
},
"end": {
- "line": 79,
+ "line": 87,
"column": 36
}
}
@@ -5598,16 +6342,16 @@
"type": "Identifier",
"name": "colW",
"range": [
- 2849,
- 2853
+ 3099,
+ 3103
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 20
},
"end": {
- "line": 80,
+ "line": 88,
"column": 24
}
}
@@ -5619,16 +6363,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 2856,
- 2860
+ 3106,
+ 3110
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 27
},
"end": {
- "line": 80,
+ "line": 88,
"column": 31
}
}
@@ -5637,77 +6381,77 @@
"type": "Identifier",
"name": "width",
"range": [
- 2861,
- 2866
+ 3111,
+ 3116
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 32
},
"end": {
- "line": 80,
+ "line": 88,
"column": 37
}
}
},
"range": [
- 2856,
- 2866
+ 3106,
+ 3116
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 27
},
"end": {
- "line": 80,
+ "line": 88,
"column": 37
}
}
},
"range": [
- 2849,
- 2866
+ 3099,
+ 3116
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 20
},
"end": {
- "line": 80,
+ "line": 88,
"column": 37
}
}
},
"range": [
- 2849,
- 2867
+ 3099,
+ 3117
],
"loc": {
"start": {
- "line": 80,
+ "line": 88,
"column": 20
},
"end": {
- "line": 80,
+ "line": 88,
"column": 38
}
}
}
],
"range": [
- 2827,
- 2885
+ 3077,
+ 3135
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 37
},
"end": {
- "line": 81,
+ "line": 89,
"column": 17
}
}
@@ -5727,16 +6471,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 2894,
- 2898
+ 3144,
+ 3148
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 26
},
"end": {
- "line": 81,
+ "line": 89,
"column": 30
}
}
@@ -5745,31 +6489,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2899,
- 2904
+ 3149,
+ 3154
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 31
},
"end": {
- "line": 81,
+ "line": 89,
"column": 36
}
}
},
"range": [
- 2894,
- 2904
+ 3144,
+ 3154
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 26
},
"end": {
- "line": 81,
+ "line": 89,
"column": 36
}
}
@@ -5778,31 +6522,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 2905,
- 2910
+ 3155,
+ 3160
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 37
},
"end": {
- "line": 81,
+ "line": 89,
"column": 42
}
}
},
"range": [
- 2894,
- 2910
+ 3144,
+ 3160
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 26
},
"end": {
- "line": 81,
+ "line": 89,
"column": 42
}
}
@@ -5812,31 +6556,31 @@
"value": "",
"raw": "''",
"range": [
- 2915,
- 2917
+ 3165,
+ 3167
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 47
},
"end": {
- "line": 81,
+ "line": 89,
"column": 49
}
}
},
"range": [
- 2894,
- 2917
+ 3144,
+ 3167
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 26
},
"end": {
- "line": 81,
+ "line": 89,
"column": 49
}
}
@@ -5853,16 +6597,16 @@
"type": "Identifier",
"name": "colW",
"range": [
- 2940,
- 2944
+ 3190,
+ 3194
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 20
},
"end": {
- "line": 82,
+ "line": 90,
"column": 24
}
}
@@ -5873,16 +6617,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 2947,
- 2955
+ 3197,
+ 3205
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 27
},
"end": {
- "line": 82,
+ "line": 90,
"column": 35
}
}
@@ -5898,16 +6642,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 2956,
- 2960
+ 3206,
+ 3210
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 36
},
"end": {
- "line": 82,
+ "line": 90,
"column": 40
}
}
@@ -5916,31 +6660,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2961,
- 2966
+ 3211,
+ 3216
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 41
},
"end": {
- "line": 82,
+ "line": 90,
"column": 46
}
}
},
"range": [
- 2956,
- 2966
+ 3206,
+ 3216
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 36
},
"end": {
- "line": 82,
+ "line": 90,
"column": 46
}
}
@@ -5949,31 +6693,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 2967,
- 2972
+ 3217,
+ 3222
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 47
},
"end": {
- "line": 82,
+ "line": 90,
"column": 52
}
}
},
"range": [
- 2956,
- 2972
+ 3206,
+ 3222
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 36
},
"end": {
- "line": 82,
+ "line": 90,
"column": 52
}
}
@@ -5983,78 +6727,78 @@
"value": 10,
"raw": "10",
"range": [
- 2974,
- 2976
+ 3224,
+ 3226
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 54
},
"end": {
- "line": 82,
+ "line": 90,
"column": 56
}
}
}
],
"range": [
- 2947,
- 2977
+ 3197,
+ 3227
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 27
},
"end": {
- "line": 82,
+ "line": 90,
"column": 57
}
}
},
"range": [
- 2940,
- 2977
+ 3190,
+ 3227
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 20
},
"end": {
- "line": 82,
+ "line": 90,
"column": 57
}
}
},
"range": [
- 2940,
- 2978
+ 3190,
+ 3228
],
"loc": {
"start": {
- "line": 82,
+ "line": 90,
"column": 20
},
"end": {
- "line": 82,
+ "line": 90,
"column": 58
}
}
}
],
"range": [
- 2918,
- 2996
+ 3168,
+ 3246
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 50
},
"end": {
- "line": 83,
+ "line": 91,
"column": 17
}
}
@@ -6071,16 +6815,16 @@
"type": "Identifier",
"name": "colW",
"range": [
- 3024,
- 3028
+ 3274,
+ 3278
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 20
},
"end": {
- "line": 84,
+ "line": 92,
"column": 24
}
}
@@ -6091,16 +6835,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3031,
- 3035
+ 3281,
+ 3285
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 27
},
"end": {
- "line": 84,
+ "line": 92,
"column": 31
}
}
@@ -6109,107 +6853,107 @@
"type": "Identifier",
"name": "gridDefaultColWidth",
"range": [
- 3036,
- 3055
+ 3286,
+ 3305
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 32
},
"end": {
- "line": 84,
+ "line": 92,
"column": 51
}
}
},
"range": [
- 3031,
- 3055
+ 3281,
+ 3305
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 27
},
"end": {
- "line": 84,
+ "line": 92,
"column": 51
}
}
},
"range": [
- 3024,
- 3055
+ 3274,
+ 3305
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 20
},
"end": {
- "line": 84,
+ "line": 92,
"column": 51
}
}
},
"range": [
- 3024,
- 3056
+ 3274,
+ 3306
],
"loc": {
"start": {
- "line": 84,
+ "line": 92,
"column": 20
},
"end": {
- "line": 84,
+ "line": 92,
"column": 52
}
}
}
],
"range": [
- 3002,
- 3074
+ 3252,
+ 3324
],
"loc": {
"start": {
- "line": 83,
+ "line": 91,
"column": 23
},
"end": {
- "line": 85,
+ "line": 93,
"column": 17
}
}
},
"range": [
- 2891,
- 3074
+ 3141,
+ 3324
],
"loc": {
"start": {
- "line": 81,
+ "line": 89,
"column": 23
},
"end": {
- "line": 85,
+ "line": 93,
"column": 17
}
}
},
"range": [
- 2806,
- 3074
+ 3056,
+ 3324
],
"loc": {
"start": {
- "line": 79,
+ "line": 87,
"column": 16
},
"end": {
- "line": 85,
+ "line": 93,
"column": 17
}
}
@@ -6229,16 +6973,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3091,
- 3093
+ 3341,
+ 3343
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 16
},
"end": {
- "line": 86,
+ "line": 94,
"column": 18
}
}
@@ -6247,31 +6991,31 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 3094,
- 3103
+ 3344,
+ 3353
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 19
},
"end": {
- "line": 86,
+ "line": 94,
"column": 28
}
}
},
"range": [
- 3091,
- 3103
+ 3341,
+ 3353
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 16
},
"end": {
- "line": 86,
+ "line": 94,
"column": 28
}
}
@@ -6280,31 +7024,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 3104,
- 3105
+ 3354,
+ 3355
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 29
},
"end": {
- "line": 86,
+ "line": 94,
"column": 30
}
}
},
"range": [
- 3091,
- 3106
+ 3341,
+ 3356
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 16
},
"end": {
- "line": 86,
+ "line": 94,
"column": 31
}
}
@@ -6313,77 +7057,77 @@
"type": "Identifier",
"name": "colW",
"range": [
- 3109,
- 3113
+ 3359,
+ 3363
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 34
},
"end": {
- "line": 86,
+ "line": 94,
"column": 38
}
}
},
"range": [
- 3091,
- 3113
+ 3341,
+ 3363
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 16
},
"end": {
- "line": 86,
+ "line": 94,
"column": 38
}
}
},
"range": [
- 3091,
- 3114
+ 3341,
+ 3364
],
"loc": {
"start": {
- "line": 86,
+ "line": 94,
"column": 16
},
"end": {
- "line": 86,
+ "line": 94,
"column": 39
}
}
}
],
"range": [
- 2693,
- 3128
+ 2943,
+ 3378
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 43
},
"end": {
- "line": 87,
+ "line": 95,
"column": 13
}
}
},
"range": [
- 2662,
- 3128
+ 2912,
+ 3378
],
"loc": {
"start": {
- "line": 76,
+ "line": 84,
"column": 12
},
"end": {
- "line": 87,
+ "line": 95,
"column": 13
}
}
@@ -6400,16 +7144,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3141,
- 3143
+ 3391,
+ 3393
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 12
},
"end": {
- "line": 88,
+ "line": 96,
"column": 14
}
}
@@ -6418,31 +7162,31 @@
"type": "Identifier",
"name": "hasColWidths",
"range": [
- 3144,
- 3156
+ 3394,
+ 3406
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 15
},
"end": {
- "line": 88,
+ "line": 96,
"column": 27
}
}
},
"range": [
- 3141,
- 3156
+ 3391,
+ 3406
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 12
},
"end": {
- "line": 88,
+ "line": 96,
"column": 27
}
}
@@ -6452,78 +7196,78 @@
"value": true,
"raw": "true",
"range": [
- 3159,
- 3163
+ 3409,
+ 3413
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 30
},
"end": {
- "line": 88,
+ "line": 96,
"column": 34
}
}
},
"range": [
- 3141,
- 3163
+ 3391,
+ 3413
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 12
},
"end": {
- "line": 88,
+ "line": 96,
"column": 34
}
}
},
"range": [
- 3141,
- 3164
+ 3391,
+ 3414
],
"loc": {
"start": {
- "line": 88,
+ "line": 96,
"column": 12
},
"end": {
- "line": 88,
+ "line": 96,
"column": 35
}
}
}
],
"range": [
- 2617,
- 3174
+ 2867,
+ 3424
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 28
},
"end": {
- "line": 89,
+ "line": 97,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2597,
- 3174
+ 2847,
+ 3424
],
"loc": {
"start": {
- "line": 74,
+ "line": 82,
"column": 8
},
"end": {
- "line": 89,
+ "line": 97,
"column": 9
}
},
@@ -6532,16 +7276,16 @@
"type": "Line",
"value": " default width of 100px if column widths not set",
"range": [
- 2538,
- 2588
+ 2788,
+ 2838
],
"loc": {
"start": {
- "line": 73,
+ "line": 81,
"column": 8
},
"end": {
- "line": 73,
+ "line": 81,
"column": 58
}
}
@@ -6559,16 +7303,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3183,
- 3185
+ 3433,
+ 3435
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 8
},
"end": {
- "line": 90,
+ "line": 98,
"column": 10
}
}
@@ -6577,31 +7321,31 @@
"type": "Identifier",
"name": "setColWidths",
"range": [
- 3186,
- 3198
+ 3436,
+ 3448
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 11
},
"end": {
- "line": 90,
+ "line": 98,
"column": 23
}
}
},
"range": [
- 3183,
- 3198
+ 3433,
+ 3448
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 8
},
"end": {
- "line": 90,
+ "line": 98,
"column": 23
}
}
@@ -6613,16 +7357,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3199,
- 3203
+ 3449,
+ 3453
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 24
},
"end": {
- "line": 90,
+ "line": 98,
"column": 28
}
}
@@ -6631,62 +7375,62 @@
"type": "Identifier",
"name": "gridHeadRowIndex",
"range": [
- 3204,
- 3220
+ 3454,
+ 3470
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 29
},
"end": {
- "line": 90,
+ "line": 98,
"column": 45
}
}
},
"range": [
- 3199,
- 3220
+ 3449,
+ 3470
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 24
},
"end": {
- "line": 90,
+ "line": 98,
"column": 45
}
}
}
],
"range": [
- 3183,
- 3221
+ 3433,
+ 3471
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 8
},
"end": {
- "line": 90,
+ "line": 98,
"column": 46
}
}
},
"range": [
- 3183,
- 3222
+ 3433,
+ 3472
],
"loc": {
"start": {
- "line": 90,
+ "line": 98,
"column": 8
},
"end": {
- "line": 90,
+ "line": 98,
"column": 47
}
}
@@ -6700,49 +7444,49 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 3236,
- 3240
+ 3486,
+ 3490
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 12
},
"end": {
- "line": 92,
+ "line": 100,
"column": 16
}
}
},
"init": null,
"range": [
- 3236,
- 3240
+ 3486,
+ 3490
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 12
},
"end": {
- "line": 92,
+ "line": 100,
"column": 16
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3232,
- 3241
+ 3482,
+ 3491
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 8
},
"end": {
- "line": 92,
+ "line": 100,
"column": 17
}
},
@@ -6751,16 +7495,16 @@
"type": "Line",
"value": "initial table width",
"range": [
- 3241,
- 3262
+ 3491,
+ 3512
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 17
},
"end": {
- "line": 92,
+ "line": 100,
"column": 38
}
}
@@ -6779,16 +7523,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3274,
- 3277
+ 3524,
+ 3527
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 11
},
"end": {
- "line": 93,
+ "line": 101,
"column": 14
}
}
@@ -6797,31 +7541,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 3278,
- 3283
+ 3528,
+ 3533
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 15
},
"end": {
- "line": 93,
+ "line": 101,
"column": 20
}
}
},
"range": [
- 3274,
- 3283
+ 3524,
+ 3533
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 11
},
"end": {
- "line": 93,
+ "line": 101,
"column": 20
}
}
@@ -6831,31 +7575,31 @@
"value": "",
"raw": "''",
"range": [
- 3288,
- 3290
+ 3538,
+ 3540
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 25
},
"end": {
- "line": 93,
+ "line": 101,
"column": 27
}
}
},
"range": [
- 3274,
- 3290
+ 3524,
+ 3540
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 11
},
"end": {
- "line": 93,
+ "line": 101,
"column": 27
}
}
@@ -6872,16 +7616,16 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 3305,
- 3309
+ 3555,
+ 3559
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 12
},
"end": {
- "line": 94,
+ "line": 102,
"column": 16
}
}
@@ -6893,16 +7637,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3312,
- 3315
+ 3562,
+ 3565
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 19
},
"end": {
- "line": 94,
+ "line": 102,
"column": 22
}
}
@@ -6911,77 +7655,77 @@
"type": "Identifier",
"name": "width",
"range": [
- 3316,
- 3321
+ 3566,
+ 3571
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 23
},
"end": {
- "line": 94,
+ "line": 102,
"column": 28
}
}
},
"range": [
- 3312,
- 3321
+ 3562,
+ 3571
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 19
},
"end": {
- "line": 94,
+ "line": 102,
"column": 28
}
}
},
"range": [
- 3305,
- 3321
+ 3555,
+ 3571
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 12
},
"end": {
- "line": 94,
+ "line": 102,
"column": 28
}
}
},
"range": [
- 3305,
- 3322
+ 3555,
+ 3572
],
"loc": {
"start": {
- "line": 94,
+ "line": 102,
"column": 12
},
"end": {
- "line": 94,
+ "line": 102,
"column": 29
}
}
}
],
"range": [
- 3291,
- 3332
+ 3541,
+ 3582
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 28
},
"end": {
- "line": 95,
+ "line": 103,
"column": 9
}
}
@@ -7001,16 +7745,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3349,
- 3352
+ 3599,
+ 3602
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 16
},
"end": {
- "line": 96,
+ "line": 104,
"column": 19
}
}
@@ -7019,31 +7763,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 3353,
- 3358
+ 3603,
+ 3608
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 20
},
"end": {
- "line": 96,
+ "line": 104,
"column": 25
}
}
},
"range": [
- 3349,
- 3358
+ 3599,
+ 3608
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 16
},
"end": {
- "line": 96,
+ "line": 104,
"column": 25
}
}
@@ -7052,31 +7796,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 3359,
- 3364
+ 3609,
+ 3614
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 26
},
"end": {
- "line": 96,
+ "line": 104,
"column": 31
}
}
},
"range": [
- 3349,
- 3364
+ 3599,
+ 3614
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 16
},
"end": {
- "line": 96,
+ "line": 104,
"column": 31
}
}
@@ -7086,31 +7830,31 @@
"value": "",
"raw": "''",
"range": [
- 3369,
- 3371
+ 3619,
+ 3621
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 36
},
"end": {
- "line": 96,
+ "line": 104,
"column": 38
}
}
},
"range": [
- 3349,
- 3371
+ 3599,
+ 3621
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 16
},
"end": {
- "line": 96,
+ "line": 104,
"column": 38
}
}
@@ -7127,16 +7871,16 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 3386,
- 3390
+ 3636,
+ 3640
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 12
},
"end": {
- "line": 97,
+ "line": 105,
"column": 16
}
}
@@ -7147,16 +7891,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 3393,
- 3401
+ 3643,
+ 3651
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 19
},
"end": {
- "line": 97,
+ "line": 105,
"column": 27
}
}
@@ -7172,16 +7916,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3402,
- 3405
+ 3652,
+ 3655
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 28
},
"end": {
- "line": 97,
+ "line": 105,
"column": 31
}
}
@@ -7190,31 +7934,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 3406,
- 3411
+ 3656,
+ 3661
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 32
},
"end": {
- "line": 97,
+ "line": 105,
"column": 37
}
}
},
"range": [
- 3402,
- 3411
+ 3652,
+ 3661
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 28
},
"end": {
- "line": 97,
+ "line": 105,
"column": 37
}
}
@@ -7223,31 +7967,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 3412,
- 3417
+ 3662,
+ 3667
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 38
},
"end": {
- "line": 97,
+ "line": 105,
"column": 43
}
}
},
"range": [
- 3402,
- 3417
+ 3652,
+ 3667
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 28
},
"end": {
- "line": 97,
+ "line": 105,
"column": 43
}
}
@@ -7257,78 +8001,78 @@
"value": 10,
"raw": "10",
"range": [
- 3419,
- 3421
+ 3669,
+ 3671
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 45
},
"end": {
- "line": 97,
+ "line": 105,
"column": 47
}
}
}
],
"range": [
- 3393,
- 3422
+ 3643,
+ 3672
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 19
},
"end": {
- "line": 97,
+ "line": 105,
"column": 48
}
}
},
"range": [
- 3386,
- 3422
+ 3636,
+ 3672
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 12
},
"end": {
- "line": 97,
+ "line": 105,
"column": 48
}
}
},
"range": [
- 3386,
- 3423
+ 3636,
+ 3673
],
"loc": {
"start": {
- "line": 97,
+ "line": 105,
"column": 12
},
"end": {
- "line": 97,
+ "line": 105,
"column": 49
}
}
}
],
"range": [
- 3372,
- 3433
+ 3622,
+ 3683
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 39
},
"end": {
- "line": 98,
+ "line": 106,
"column": 9
}
}
@@ -7345,16 +8089,16 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 3453,
- 3457
+ 3703,
+ 3707
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 12
},
"end": {
- "line": 99,
+ "line": 107,
"column": 16
}
}
@@ -7366,16 +8110,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3460,
- 3463
+ 3710,
+ 3713
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 19
},
"end": {
- "line": 99,
+ "line": 107,
"column": 22
}
}
@@ -7384,107 +8128,107 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 3464,
- 3475
+ 3714,
+ 3725
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 23
},
"end": {
- "line": 99,
+ "line": 107,
"column": 34
}
}
},
"range": [
- 3460,
- 3475
+ 3710,
+ 3725
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 19
},
"end": {
- "line": 99,
+ "line": 107,
"column": 34
}
}
},
"range": [
- 3453,
- 3475
+ 3703,
+ 3725
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 12
},
"end": {
- "line": 99,
+ "line": 107,
"column": 34
}
}
},
"range": [
- 3453,
- 3476
+ 3703,
+ 3726
],
"loc": {
"start": {
- "line": 99,
+ "line": 107,
"column": 12
},
"end": {
- "line": 99,
+ "line": 107,
"column": 35
}
}
}
],
"range": [
- 3439,
- 3486
+ 3689,
+ 3736
],
"loc": {
"start": {
- "line": 98,
+ "line": 106,
"column": 15
},
"end": {
- "line": 100,
+ "line": 108,
"column": 9
}
}
},
"range": [
- 3346,
- 3486
+ 3596,
+ 3736
],
"loc": {
"start": {
- "line": 96,
+ "line": 104,
"column": 13
},
"end": {
- "line": 100,
+ "line": 108,
"column": 9
}
}
},
"range": [
- 3271,
- 3486
+ 3521,
+ 3736
],
"loc": {
"start": {
- "line": 93,
+ "line": 101,
"column": 8
},
"end": {
- "line": 100,
+ "line": 108,
"column": 9
}
},
@@ -7493,16 +8237,16 @@
"type": "Line",
"value": "initial table width",
"range": [
- 3241,
- 3262
+ 3491,
+ 3512
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 17
},
"end": {
- "line": 92,
+ "line": 100,
"column": 38
}
}
@@ -7513,16 +8257,16 @@
"type": "Line",
"value": "Main container: it will contain all the elements",
"range": [
- 3496,
- 3546
+ 3746,
+ 3796
],
"loc": {
"start": {
- "line": 102,
+ "line": 110,
"column": 8
},
"end": {
- "line": 102,
+ "line": 110,
"column": 58
}
}
@@ -7540,16 +8284,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3555,
- 3559
+ 3805,
+ 3809
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 8
},
"end": {
- "line": 103,
+ "line": 111,
"column": 12
}
}
@@ -7558,31 +8302,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 3560,
- 3571
+ 3810,
+ 3821
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 13
},
"end": {
- "line": 103,
+ "line": 111,
"column": 24
}
}
},
"range": [
- 3555,
- 3571
+ 3805,
+ 3821
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 8
},
"end": {
- "line": 103,
+ "line": 111,
"column": 24
}
}
@@ -7596,16 +8340,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3574,
- 3577
+ 3824,
+ 3827
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 27
},
"end": {
- "line": 103,
+ "line": 111,
"column": 30
}
}
@@ -7614,31 +8358,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 3578,
- 3584
+ 3828,
+ 3834
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 31
},
"end": {
- "line": 103,
+ "line": 111,
"column": 37
}
}
},
"range": [
- 3574,
- 3584
+ 3824,
+ 3834
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 27
},
"end": {
- "line": 103,
+ "line": 111,
"column": 37
}
}
@@ -7649,16 +8393,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 3585,
- 3590
+ 3835,
+ 3840
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 38
},
"end": {
- "line": 103,
+ "line": 111,
"column": 43
}
}
@@ -7671,16 +8415,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 3605,
- 3609
+ 3855,
+ 3859
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 13
},
"end": {
- "line": 104,
+ "line": 112,
"column": 17
}
}
@@ -7694,16 +8438,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3611,
- 3615
+ 3861,
+ 3865
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 19
},
"end": {
- "line": 104,
+ "line": 112,
"column": 23
}
}
@@ -7712,31 +8456,31 @@
"type": "Identifier",
"name": "prfxMainTblCont",
"range": [
- 3616,
- 3631
+ 3866,
+ 3881
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 24
},
"end": {
- "line": 104,
+ "line": 112,
"column": 39
}
}
},
"range": [
- 3611,
- 3631
+ 3861,
+ 3881
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 19
},
"end": {
- "line": 104,
+ "line": 112,
"column": 39
}
}
@@ -7748,16 +8492,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3634,
- 3636
+ 3884,
+ 3886
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 42
},
"end": {
- "line": 104,
+ "line": 112,
"column": 44
}
}
@@ -7766,108 +8510,108 @@
"type": "Identifier",
"name": "id",
"range": [
- 3637,
- 3639
+ 3887,
+ 3889
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 45
},
"end": {
- "line": 104,
+ "line": 112,
"column": 47
}
}
},
"range": [
- 3634,
- 3639
+ 3884,
+ 3889
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 42
},
"end": {
- "line": 104,
+ "line": 112,
"column": 47
}
}
},
"range": [
- 3611,
- 3639
+ 3861,
+ 3889
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 19
},
"end": {
- "line": 104,
+ "line": 112,
"column": 47
}
}
}
],
"range": [
- 3604,
- 3640
+ 3854,
+ 3890
],
"loc": {
"start": {
- "line": 104,
+ "line": 112,
"column": 12
},
"end": {
- "line": 104,
+ "line": 112,
"column": 48
}
}
}
],
"range": [
- 3574,
- 3641
+ 3824,
+ 3891
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 27
},
"end": {
- "line": 104,
+ "line": 112,
"column": 49
}
}
},
"range": [
- 3555,
- 3641
+ 3805,
+ 3891
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 8
},
"end": {
- "line": 104,
+ "line": 112,
"column": 49
}
}
},
"range": [
- 3555,
- 3642
+ 3805,
+ 3892
],
"loc": {
"start": {
- "line": 103,
+ "line": 111,
"column": 8
},
"end": {
- "line": 104,
+ "line": 112,
"column": 50
}
},
@@ -7876,16 +8620,16 @@
"type": "Line",
"value": "Main container: it will contain all the elements",
"range": [
- 3496,
- 3546
+ 3746,
+ 3796
],
"loc": {
"start": {
- "line": 102,
+ "line": 110,
"column": 8
},
"end": {
- "line": 102,
+ "line": 110,
"column": 58
}
}
@@ -7906,16 +8650,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3651,
- 3655
+ 3901,
+ 3905
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 8
},
"end": {
- "line": 105,
+ "line": 113,
"column": 12
}
}
@@ -7924,31 +8668,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 3656,
- 3667
+ 3906,
+ 3917
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 13
},
"end": {
- "line": 105,
+ "line": 113,
"column": 24
}
}
},
"range": [
- 3651,
- 3667
+ 3901,
+ 3917
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 8
},
"end": {
- "line": 105,
+ "line": 113,
"column": 24
}
}
@@ -7957,31 +8701,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 3668,
- 3677
+ 3918,
+ 3927
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 25
},
"end": {
- "line": 105,
+ "line": 113,
"column": 34
}
}
},
"range": [
- 3651,
- 3677
+ 3901,
+ 3927
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 8
},
"end": {
- "line": 105,
+ "line": 113,
"column": 34
}
}
@@ -7992,16 +8736,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3680,
- 3684
+ 3930,
+ 3934
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 37
},
"end": {
- "line": 105,
+ "line": 113,
"column": 41
}
}
@@ -8010,61 +8754,61 @@
"type": "Identifier",
"name": "gridMainContCssClass",
"range": [
- 3685,
- 3705
+ 3935,
+ 3955
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 42
},
"end": {
- "line": 105,
+ "line": 113,
"column": 62
}
}
},
"range": [
- 3680,
- 3705
+ 3930,
+ 3955
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 37
},
"end": {
- "line": 105,
+ "line": 113,
"column": 62
}
}
},
"range": [
- 3651,
- 3705
+ 3901,
+ 3955
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 8
},
"end": {
- "line": 105,
+ "line": 113,
"column": 62
}
}
},
"range": [
- 3651,
- 3706
+ 3901,
+ 3956
],
"loc": {
"start": {
- "line": 105,
+ "line": 113,
"column": 8
},
"end": {
- "line": 105,
+ "line": 113,
"column": 63
}
}
@@ -8077,16 +8821,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3718,
- 3722
+ 3968,
+ 3972
],
"loc": {
"start": {
- "line": 106,
+ "line": 114,
"column": 11
},
"end": {
- "line": 106,
+ "line": 114,
"column": 15
}
}
@@ -8095,31 +8839,31 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 3723,
- 3732
+ 3973,
+ 3982
],
"loc": {
"start": {
- "line": 106,
+ "line": 114,
"column": 16
},
"end": {
- "line": 106,
+ "line": 114,
"column": 25
}
}
},
"range": [
- 3718,
- 3732
+ 3968,
+ 3982
],
"loc": {
"start": {
- "line": 106,
+ "line": 114,
"column": 11
},
"end": {
- "line": 106,
+ "line": 114,
"column": 25
}
}
@@ -8144,16 +8888,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3747,
- 3751
+ 3997,
+ 4001
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 16
}
}
@@ -8162,31 +8906,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 3752,
- 3763
+ 4002,
+ 4013
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 17
},
"end": {
- "line": 107,
+ "line": 115,
"column": 28
}
}
},
"range": [
- 3747,
- 3763
+ 3997,
+ 4013
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 28
}
}
@@ -8195,31 +8939,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 3764,
- 3769
+ 4014,
+ 4019
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 29
},
"end": {
- "line": 107,
+ "line": 115,
"column": 34
}
}
},
"range": [
- 3747,
- 3769
+ 3997,
+ 4019
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 34
}
}
@@ -8228,31 +8972,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 3770,
- 3775
+ 4020,
+ 4025
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 35
},
"end": {
- "line": 107,
+ "line": 115,
"column": 40
}
}
},
"range": [
- 3747,
- 3775
+ 3997,
+ 4025
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 40
}
}
@@ -8263,16 +9007,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3778,
- 3782
+ 4028,
+ 4032
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 43
},
"end": {
- "line": 107,
+ "line": 115,
"column": 47
}
}
@@ -8281,93 +9025,93 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 3783,
- 3792
+ 4033,
+ 4042
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 48
},
"end": {
- "line": 107,
+ "line": 115,
"column": 57
}
}
},
"range": [
- 3778,
- 3792
+ 4028,
+ 4042
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 43
},
"end": {
- "line": 107,
+ "line": 115,
"column": 57
}
}
},
"range": [
- 3747,
- 3792
+ 3997,
+ 4042
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 57
}
}
},
"range": [
- 3747,
- 3793
+ 3997,
+ 4043
],
"loc": {
"start": {
- "line": 107,
+ "line": 115,
"column": 12
},
"end": {
- "line": 107,
+ "line": 115,
"column": 58
}
}
}
],
"range": [
- 3733,
- 3803
+ 3983,
+ 4053
],
"loc": {
"start": {
- "line": 106,
+ "line": 114,
"column": 26
},
"end": {
- "line": 108,
+ "line": 116,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3715,
- 3803
+ 3965,
+ 4053
],
"loc": {
"start": {
- "line": 106,
+ "line": 114,
"column": 8
},
"end": {
- "line": 108,
+ "line": 116,
"column": 9
}
}
@@ -8386,16 +9130,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3812,
- 3815
+ 4062,
+ 4065
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 8
},
"end": {
- "line": 109,
+ "line": 117,
"column": 11
}
}
@@ -8404,31 +9148,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 3816,
- 3826
+ 4066,
+ 4076
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 12
},
"end": {
- "line": 109,
+ "line": 117,
"column": 22
}
}
},
"range": [
- 3812,
- 3826
+ 4062,
+ 4076
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 8
},
"end": {
- "line": 109,
+ "line": 117,
"column": 22
}
}
@@ -8437,31 +9181,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 3827,
- 3839
+ 4077,
+ 4089
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 23
},
"end": {
- "line": 109,
+ "line": 117,
"column": 35
}
}
},
"range": [
- 3812,
- 3839
+ 4062,
+ 4089
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 8
},
"end": {
- "line": 109,
+ "line": 117,
"column": 35
}
}
@@ -8473,16 +9217,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3840,
- 3844
+ 4090,
+ 4094
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 36
},
"end": {
- "line": 109,
+ "line": 117,
"column": 40
}
}
@@ -8491,31 +9235,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 3845,
- 3856
+ 4095,
+ 4106
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 41
},
"end": {
- "line": 109,
+ "line": 117,
"column": 52
}
}
},
"range": [
- 3840,
- 3856
+ 4090,
+ 4106
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 36
},
"end": {
- "line": 109,
+ "line": 117,
"column": 52
}
}
@@ -8524,47 +9268,47 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3858,
- 3861
+ 4108,
+ 4111
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 54
},
"end": {
- "line": 109,
+ "line": 117,
"column": 57
}
}
}
],
"range": [
- 3812,
- 3862
+ 4062,
+ 4112
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 8
},
"end": {
- "line": 109,
+ "line": 117,
"column": 58
}
}
},
"range": [
- 3812,
- 3863
+ 4062,
+ 4113
],
"loc": {
"start": {
- "line": 109,
+ "line": 117,
"column": 8
},
"end": {
- "line": 109,
+ "line": 117,
"column": 59
}
},
@@ -8573,16 +9317,16 @@
"type": "Line",
"value": "Table container: div wrapping content table",
"range": [
- 3873,
- 3918
+ 4123,
+ 4168
],
"loc": {
"start": {
- "line": 111,
+ "line": 119,
"column": 8
},
"end": {
- "line": 111,
+ "line": 119,
"column": 53
}
}
@@ -8600,16 +9344,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3927,
- 3931
+ 4177,
+ 4181
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 8
},
"end": {
- "line": 112,
+ "line": 120,
"column": 12
}
}
@@ -8618,31 +9362,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 3932,
- 3939
+ 4182,
+ 4189
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 13
},
"end": {
- "line": 112,
+ "line": 120,
"column": 20
}
}
},
"range": [
- 3927,
- 3939
+ 4177,
+ 4189
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 8
},
"end": {
- "line": 112,
+ "line": 120,
"column": 20
}
}
@@ -8656,16 +9400,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3942,
- 3945
+ 4192,
+ 4195
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 23
},
"end": {
- "line": 112,
+ "line": 120,
"column": 26
}
}
@@ -8674,31 +9418,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 3946,
- 3952
+ 4196,
+ 4202
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 27
},
"end": {
- "line": 112,
+ "line": 120,
"column": 33
}
}
},
"range": [
- 3942,
- 3952
+ 4192,
+ 4202
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 23
},
"end": {
- "line": 112,
+ "line": 120,
"column": 33
}
}
@@ -8709,16 +9453,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 3953,
- 3958
+ 4203,
+ 4208
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 34
},
"end": {
- "line": 112,
+ "line": 120,
"column": 39
}
}
@@ -8731,16 +9475,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 3960,
- 3964
+ 4210,
+ 4214
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 41
},
"end": {
- "line": 112,
+ "line": 120,
"column": 45
}
}
@@ -8754,16 +9498,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3966,
- 3970
+ 4216,
+ 4220
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 47
},
"end": {
- "line": 112,
+ "line": 120,
"column": 51
}
}
@@ -8772,31 +9516,31 @@
"type": "Identifier",
"name": "prfxTblCont",
"range": [
- 3971,
- 3982
+ 4221,
+ 4232
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 52
},
"end": {
- "line": 112,
+ "line": 120,
"column": 63
}
}
},
"range": [
- 3966,
- 3982
+ 4216,
+ 4232
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 47
},
"end": {
- "line": 112,
+ "line": 120,
"column": 63
}
}
@@ -8808,16 +9552,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3985,
- 3987
+ 4235,
+ 4237
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 66
},
"end": {
- "line": 112,
+ "line": 120,
"column": 68
}
}
@@ -8826,108 +9570,108 @@
"type": "Identifier",
"name": "id",
"range": [
- 3988,
- 3990
+ 4238,
+ 4240
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 69
},
"end": {
- "line": 112,
+ "line": 120,
"column": 71
}
}
},
"range": [
- 3985,
- 3990
+ 4235,
+ 4240
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 66
},
"end": {
- "line": 112,
+ "line": 120,
"column": 71
}
}
},
"range": [
- 3966,
- 3990
+ 4216,
+ 4240
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 47
},
"end": {
- "line": 112,
+ "line": 120,
"column": 71
}
}
}
],
"range": [
- 3959,
- 3991
+ 4209,
+ 4241
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 40
},
"end": {
- "line": 112,
+ "line": 120,
"column": 72
}
}
}
],
"range": [
- 3942,
- 3992
+ 4192,
+ 4242
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 23
},
"end": {
- "line": 112,
+ "line": 120,
"column": 73
}
}
},
"range": [
- 3927,
- 3992
+ 4177,
+ 4242
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 8
},
"end": {
- "line": 112,
+ "line": 120,
"column": 73
}
}
},
"range": [
- 3927,
- 3993
+ 4177,
+ 4243
],
"loc": {
"start": {
- "line": 112,
+ "line": 120,
"column": 8
},
"end": {
- "line": 112,
+ "line": 120,
"column": 74
}
},
@@ -8936,16 +9680,16 @@
"type": "Line",
"value": "Table container: div wrapping content table",
"range": [
- 3873,
- 3918
+ 4123,
+ 4168
],
"loc": {
"start": {
- "line": 111,
+ "line": 119,
"column": 8
},
"end": {
- "line": 111,
+ "line": 119,
"column": 53
}
}
@@ -8966,16 +9710,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4002,
- 4006
+ 4252,
+ 4256
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 8
},
"end": {
- "line": 113,
+ "line": 121,
"column": 12
}
}
@@ -8984,31 +9728,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4007,
- 4014
+ 4257,
+ 4264
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 13
},
"end": {
- "line": 113,
+ "line": 121,
"column": 20
}
}
},
"range": [
- 4002,
- 4014
+ 4252,
+ 4264
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 8
},
"end": {
- "line": 113,
+ "line": 121,
"column": 20
}
}
@@ -9017,31 +9761,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 4015,
- 4024
+ 4265,
+ 4274
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 21
},
"end": {
- "line": 113,
+ "line": 121,
"column": 30
}
}
},
"range": [
- 4002,
- 4024
+ 4252,
+ 4274
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 8
},
"end": {
- "line": 113,
+ "line": 121,
"column": 30
}
}
@@ -9052,16 +9796,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4027,
- 4031
+ 4277,
+ 4281
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 33
},
"end": {
- "line": 113,
+ "line": 121,
"column": 37
}
}
@@ -9070,61 +9814,61 @@
"type": "Identifier",
"name": "gridContCssClass",
"range": [
- 4032,
- 4048
+ 4282,
+ 4298
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 38
},
"end": {
- "line": 113,
+ "line": 121,
"column": 54
}
}
},
"range": [
- 4027,
- 4048
+ 4277,
+ 4298
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 33
},
"end": {
- "line": 113,
+ "line": 121,
"column": 54
}
}
},
"range": [
- 4002,
- 4048
+ 4252,
+ 4298
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 8
},
"end": {
- "line": 113,
+ "line": 121,
"column": 54
}
}
},
"range": [
- 4002,
- 4049
+ 4252,
+ 4299
],
"loc": {
"start": {
- "line": 113,
+ "line": 121,
"column": 8
},
"end": {
- "line": 113,
+ "line": 121,
"column": 55
}
}
@@ -9137,16 +9881,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4061,
- 4065
+ 4311,
+ 4315
],
"loc": {
"start": {
- "line": 114,
+ "line": 122,
"column": 11
},
"end": {
- "line": 114,
+ "line": 122,
"column": 15
}
}
@@ -9155,31 +9899,31 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 4066,
- 4075
+ 4316,
+ 4325
],
"loc": {
"start": {
- "line": 114,
+ "line": 122,
"column": 16
},
"end": {
- "line": 114,
+ "line": 122,
"column": 25
}
}
},
"range": [
- 4061,
- 4075
+ 4311,
+ 4325
],
"loc": {
"start": {
- "line": 114,
+ "line": 122,
"column": 11
},
"end": {
- "line": 114,
+ "line": 122,
"column": 25
}
}
@@ -9203,16 +9947,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4093,
- 4097
+ 4343,
+ 4347
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 15
},
"end": {
- "line": 115,
+ "line": 123,
"column": 19
}
}
@@ -9221,31 +9965,31 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 4098,
- 4107
+ 4348,
+ 4357
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 20
},
"end": {
- "line": 115,
+ "line": 123,
"column": 29
}
}
},
"range": [
- 4093,
- 4107
+ 4343,
+ 4357
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 15
},
"end": {
- "line": 115,
+ "line": 123,
"column": 29
}
}
@@ -9254,31 +9998,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 4108,
- 4115
+ 4358,
+ 4365
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 30
},
"end": {
- "line": 115,
+ "line": 123,
"column": 37
}
}
},
"range": [
- 4093,
- 4115
+ 4343,
+ 4365
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 15
},
"end": {
- "line": 115,
+ "line": 123,
"column": 37
}
}
@@ -9289,32 +10033,32 @@
"value": "%",
"raw": "'%'",
"range": [
- 4116,
- 4119
+ 4366,
+ 4369
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 38
},
"end": {
- "line": 115,
+ "line": 123,
"column": 41
}
}
}
],
"range": [
- 4093,
- 4120
+ 4343,
+ 4370
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 15
},
"end": {
- "line": 115,
+ "line": 123,
"column": 42
}
}
@@ -9327,47 +10071,47 @@
"value": 1,
"raw": "1",
"range": [
- 4125,
- 4126
+ 4375,
+ 4376
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 47
},
"end": {
- "line": 115,
+ "line": 123,
"column": 48
}
}
},
"prefix": true,
"range": [
- 4124,
- 4126
+ 4374,
+ 4376
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 46
},
"end": {
- "line": 115,
+ "line": 123,
"column": 48
}
}
},
"range": [
- 4093,
- 4126
+ 4343,
+ 4376
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 15
},
"end": {
- "line": 115,
+ "line": 123,
"column": 48
}
}
@@ -9392,16 +10136,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4145,
- 4149
+ 4395,
+ 4399
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 20
}
}
@@ -9410,31 +10154,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4150,
- 4157
+ 4400,
+ 4407
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 21
},
"end": {
- "line": 116,
+ "line": 124,
"column": 28
}
}
},
"range": [
- 4145,
- 4157
+ 4395,
+ 4407
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 28
}
}
@@ -9443,31 +10187,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4158,
- 4163
+ 4408,
+ 4413
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 29
},
"end": {
- "line": 116,
+ "line": 124,
"column": 34
}
}
},
"range": [
- 4145,
- 4163
+ 4395,
+ 4413
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 34
}
}
@@ -9476,31 +10220,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 4164,
- 4169
+ 4414,
+ 4419
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 35
},
"end": {
- "line": 116,
+ "line": 124,
"column": 40
}
}
},
"range": [
- 4145,
- 4169
+ 4395,
+ 4419
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 40
}
}
@@ -9510,62 +10254,62 @@
"value": "100%",
"raw": "'100%'",
"range": [
- 4172,
- 4178
+ 4422,
+ 4428
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 43
},
"end": {
- "line": 116,
+ "line": 124,
"column": 49
}
}
},
"range": [
- 4145,
- 4178
+ 4395,
+ 4428
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 49
}
}
},
"range": [
- 4145,
- 4179
+ 4395,
+ 4429
],
"loc": {
"start": {
- "line": 116,
+ "line": 124,
"column": 16
},
"end": {
- "line": 116,
+ "line": 124,
"column": 50
}
}
}
],
"range": [
- 4127,
- 4193
+ 4377,
+ 4443
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 49
},
"end": {
- "line": 117,
+ "line": 125,
"column": 13
}
}
@@ -9590,16 +10334,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4217,
- 4221
+ 4467,
+ 4471
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 20
}
}
@@ -9608,31 +10352,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4222,
- 4229
+ 4472,
+ 4479
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 21
},
"end": {
- "line": 118,
+ "line": 126,
"column": 28
}
}
},
"range": [
- 4217,
- 4229
+ 4467,
+ 4479
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 28
}
}
@@ -9641,31 +10385,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4230,
- 4235
+ 4480,
+ 4485
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 29
},
"end": {
- "line": 118,
+ "line": 126,
"column": 34
}
}
},
"range": [
- 4217,
- 4235
+ 4467,
+ 4485
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 34
}
}
@@ -9674,31 +10418,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 4236,
- 4241
+ 4486,
+ 4491
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 35
},
"end": {
- "line": 118,
+ "line": 126,
"column": 40
}
}
},
"range": [
- 4217,
- 4241
+ 4467,
+ 4491
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 40
}
}
@@ -9709,16 +10453,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4244,
- 4248
+ 4494,
+ 4498
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 43
},
"end": {
- "line": 118,
+ "line": 126,
"column": 47
}
}
@@ -9727,124 +10471,124 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 4249,
- 4258
+ 4499,
+ 4508
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 48
},
"end": {
- "line": 118,
+ "line": 126,
"column": 57
}
}
},
"range": [
- 4244,
- 4258
+ 4494,
+ 4508
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 43
},
"end": {
- "line": 118,
+ "line": 126,
"column": 57
}
}
},
"range": [
- 4217,
- 4258
+ 4467,
+ 4508
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 57
}
}
},
"range": [
- 4217,
- 4259
+ 4467,
+ 4509
],
"loc": {
"start": {
- "line": 118,
+ "line": 126,
"column": 16
},
"end": {
- "line": 118,
+ "line": 126,
"column": 58
}
}
}
],
"range": [
- 4199,
- 4273
+ 4449,
+ 4523
],
"loc": {
"start": {
- "line": 117,
+ "line": 125,
"column": 19
},
"end": {
- "line": 119,
+ "line": 127,
"column": 13
}
}
},
"range": [
- 4090,
- 4273
+ 4340,
+ 4523
],
"loc": {
"start": {
- "line": 115,
+ "line": 123,
"column": 12
},
"end": {
- "line": 119,
+ "line": 127,
"column": 13
}
}
}
],
"range": [
- 4076,
- 4283
+ 4326,
+ 4533
],
"loc": {
"start": {
- "line": 114,
+ "line": 122,
"column": 26
},
"end": {
- "line": 120,
+ "line": 128,
"column": 9
}
}
},
"alternate": null,
"range": [
- 4058,
- 4283
+ 4308,
+ 4533
],
"loc": {
"start": {
- "line": 114,
+ "line": 122,
"column": 8
},
"end": {
- "line": 120,
+ "line": 128,
"column": 9
}
}
@@ -9857,16 +10601,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4295,
- 4299
+ 4545,
+ 4549
],
"loc": {
"start": {
- "line": 121,
+ "line": 129,
"column": 11
},
"end": {
- "line": 121,
+ "line": 129,
"column": 15
}
}
@@ -9875,31 +10619,31 @@
"type": "Identifier",
"name": "gridHeight",
"range": [
- 4300,
- 4310
+ 4550,
+ 4560
],
"loc": {
"start": {
- "line": 121,
+ "line": 129,
"column": 16
},
"end": {
- "line": 121,
+ "line": 129,
"column": 26
}
}
},
"range": [
- 4295,
- 4310
+ 4545,
+ 4560
],
"loc": {
"start": {
- "line": 121,
+ "line": 129,
"column": 11
},
"end": {
- "line": 121,
+ "line": 129,
"column": 26
}
}
@@ -9924,16 +10668,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4325,
- 4329
+ 4575,
+ 4579
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 16
}
}
@@ -9942,31 +10686,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4330,
- 4337
+ 4580,
+ 4587
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 17
},
"end": {
- "line": 122,
+ "line": 130,
"column": 24
}
}
},
"range": [
- 4325,
- 4337
+ 4575,
+ 4587
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 24
}
}
@@ -9975,31 +10719,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4338,
- 4343
+ 4588,
+ 4593
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 25
},
"end": {
- "line": 122,
+ "line": 130,
"column": 30
}
}
},
"range": [
- 4325,
- 4343
+ 4575,
+ 4593
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 30
}
}
@@ -10008,31 +10752,31 @@
"type": "Identifier",
"name": "height",
"range": [
- 4344,
- 4350
+ 4594,
+ 4600
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 31
},
"end": {
- "line": 122,
+ "line": 130,
"column": 37
}
}
},
"range": [
- 4325,
- 4350
+ 4575,
+ 4600
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 37
}
}
@@ -10043,16 +10787,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4353,
- 4357
+ 4603,
+ 4607
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 40
},
"end": {
- "line": 122,
+ "line": 130,
"column": 44
}
}
@@ -10061,93 +10805,93 @@
"type": "Identifier",
"name": "gridHeight",
"range": [
- 4358,
- 4368
+ 4608,
+ 4618
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 45
},
"end": {
- "line": 122,
+ "line": 130,
"column": 55
}
}
},
"range": [
- 4353,
- 4368
+ 4603,
+ 4618
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 40
},
"end": {
- "line": 122,
+ "line": 130,
"column": 55
}
}
},
"range": [
- 4325,
- 4368
+ 4575,
+ 4618
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 55
}
}
},
"range": [
- 4325,
- 4369
+ 4575,
+ 4619
],
"loc": {
"start": {
- "line": 122,
+ "line": 130,
"column": 12
},
"end": {
- "line": 122,
+ "line": 130,
"column": 56
}
}
}
],
"range": [
- 4311,
- 4379
+ 4561,
+ 4629
],
"loc": {
"start": {
- "line": 121,
+ "line": 129,
"column": 27
},
"end": {
- "line": 123,
+ "line": 131,
"column": 9
}
}
},
"alternate": null,
"range": [
- 4292,
- 4379
+ 4542,
+ 4629
],
"loc": {
"start": {
- "line": 121,
+ "line": 129,
"column": 8
},
"end": {
- "line": 123,
+ "line": 131,
"column": 9
}
}
@@ -10166,16 +10910,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4388,
- 4391
+ 4638,
+ 4641
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 8
},
"end": {
- "line": 124,
+ "line": 132,
"column": 11
}
}
@@ -10184,31 +10928,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 4392,
- 4402
+ 4642,
+ 4652
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 12
},
"end": {
- "line": 124,
+ "line": 132,
"column": 22
}
}
},
"range": [
- 4388,
- 4402
+ 4638,
+ 4652
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 8
},
"end": {
- "line": 124,
+ "line": 132,
"column": 22
}
}
@@ -10217,31 +10961,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 4403,
- 4415
+ 4653,
+ 4665
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 23
},
"end": {
- "line": 124,
+ "line": 132,
"column": 35
}
}
},
"range": [
- 4388,
- 4415
+ 4638,
+ 4665
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 8
},
"end": {
- "line": 124,
+ "line": 132,
"column": 35
}
}
@@ -10253,16 +10997,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4416,
- 4420
+ 4666,
+ 4670
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 36
},
"end": {
- "line": 124,
+ "line": 132,
"column": 40
}
}
@@ -10271,31 +11015,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4421,
- 4428
+ 4671,
+ 4678
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 41
},
"end": {
- "line": 124,
+ "line": 132,
"column": 48
}
}
},
"range": [
- 4416,
- 4428
+ 4666,
+ 4678
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 36
},
"end": {
- "line": 124,
+ "line": 132,
"column": 48
}
}
@@ -10304,47 +11048,47 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4430,
- 4433
+ 4680,
+ 4683
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 50
},
"end": {
- "line": 124,
+ "line": 132,
"column": 53
}
}
}
],
"range": [
- 4388,
- 4434
+ 4638,
+ 4684
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 8
},
"end": {
- "line": 124,
+ "line": 132,
"column": 54
}
}
},
"range": [
- 4388,
- 4435
+ 4638,
+ 4685
],
"loc": {
"start": {
- "line": 124,
+ "line": 132,
"column": 8
},
"end": {
- "line": 124,
+ "line": 132,
"column": 55
}
}
@@ -10358,16 +11102,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 4448,
- 4449
+ 4698,
+ 4699
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 12
},
"end": {
- "line": 125,
+ "line": 133,
"column": 13
}
}
@@ -10381,16 +11125,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4452,
- 4455
+ 4702,
+ 4705
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 16
},
"end": {
- "line": 125,
+ "line": 133,
"column": 19
}
}
@@ -10399,31 +11143,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 4456,
- 4462
+ 4706,
+ 4712
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 20
},
"end": {
- "line": 125,
+ "line": 133,
"column": 26
}
}
},
"range": [
- 4452,
- 4462
+ 4702,
+ 4712
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 16
},
"end": {
- "line": 125,
+ "line": 133,
"column": 26
}
}
@@ -10433,64 +11177,64 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4463,
- 4466
+ 4713,
+ 4716
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 27
},
"end": {
- "line": 125,
+ "line": 133,
"column": 30
}
}
}
],
"range": [
- 4452,
- 4467
+ 4702,
+ 4717
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 16
},
"end": {
- "line": 125,
+ "line": 133,
"column": 31
}
}
},
"range": [
- 4448,
- 4467
+ 4698,
+ 4717
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 12
},
"end": {
- "line": 125,
+ "line": 133,
"column": 31
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4444,
- 4468
+ 4694,
+ 4718
],
"loc": {
"start": {
- "line": 125,
+ "line": 133,
"column": 8
},
"end": {
- "line": 125,
+ "line": 133,
"column": 32
}
}
@@ -10508,16 +11252,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4477,
- 4481
+ 4727,
+ 4731
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 8
},
"end": {
- "line": 126,
+ "line": 134,
"column": 12
}
}
@@ -10526,31 +11270,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4482,
- 4489
+ 4732,
+ 4739
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 13
},
"end": {
- "line": 126,
+ "line": 134,
"column": 20
}
}
},
"range": [
- 4477,
- 4489
+ 4727,
+ 4739
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 8
},
"end": {
- "line": 126,
+ "line": 134,
"column": 20
}
}
@@ -10559,31 +11303,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 4490,
- 4501
+ 4740,
+ 4751
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 21
},
"end": {
- "line": 126,
+ "line": 134,
"column": 32
}
}
},
"range": [
- 4477,
- 4501
+ 4727,
+ 4751
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 8
},
"end": {
- "line": 126,
+ "line": 134,
"column": 32
}
}
@@ -10593,47 +11337,47 @@
"type": "Identifier",
"name": "t",
"range": [
- 4502,
- 4503
+ 4752,
+ 4753
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 33
},
"end": {
- "line": 126,
+ "line": 134,
"column": 34
}
}
}
],
"range": [
- 4477,
- 4504
+ 4727,
+ 4754
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 8
},
"end": {
- "line": 126,
+ "line": 134,
"column": 35
}
}
},
"range": [
- 4477,
- 4505
+ 4727,
+ 4755
],
"loc": {
"start": {
- "line": 126,
+ "line": 134,
"column": 8
},
"end": {
- "line": 126,
+ "line": 134,
"column": 36
}
},
@@ -10642,16 +11386,16 @@
"type": "Line",
"value": "In case table width is expressed in %",
"range": [
- 4515,
- 4554
+ 4765,
+ 4804
],
"loc": {
"start": {
- "line": 128,
+ "line": 136,
"column": 8
},
"end": {
- "line": 128,
+ "line": 136,
"column": 47
}
}
@@ -10673,16 +11417,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4566,
- 4569
+ 4816,
+ 4819
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 11
},
"end": {
- "line": 129,
+ "line": 137,
"column": 14
}
}
@@ -10691,31 +11435,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4570,
- 4575
+ 4820,
+ 4825
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 15
},
"end": {
- "line": 129,
+ "line": 137,
"column": 20
}
}
},
"range": [
- 4566,
- 4575
+ 4816,
+ 4825
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 11
},
"end": {
- "line": 129,
+ "line": 137,
"column": 20
}
}
@@ -10724,31 +11468,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 4576,
- 4581
+ 4826,
+ 4831
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 21
},
"end": {
- "line": 129,
+ "line": 137,
"column": 26
}
}
},
"range": [
- 4566,
- 4581
+ 4816,
+ 4831
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 11
},
"end": {
- "line": 129,
+ "line": 137,
"column": 26
}
}
@@ -10758,31 +11502,31 @@
"value": "",
"raw": "''",
"range": [
- 4586,
- 4588
+ 4836,
+ 4838
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 31
},
"end": {
- "line": 129,
+ "line": 137,
"column": 33
}
}
},
"range": [
- 4566,
- 4588
+ 4816,
+ 4838
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 11
},
"end": {
- "line": 129,
+ "line": 137,
"column": 33
}
}
@@ -10805,16 +11549,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4603,
- 4606
+ 4853,
+ 4856
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 12
},
"end": {
- "line": 130,
+ "line": 138,
"column": 15
}
}
@@ -10823,31 +11567,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4607,
- 4612
+ 4857,
+ 4862
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 16
},
"end": {
- "line": 130,
+ "line": 138,
"column": 21
}
}
},
"range": [
- 4603,
- 4612
+ 4853,
+ 4862
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 12
},
"end": {
- "line": 130,
+ "line": 138,
"column": 21
}
}
@@ -10856,31 +11600,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 4613,
- 4618
+ 4863,
+ 4868
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 22
},
"end": {
- "line": 130,
+ "line": 138,
"column": 27
}
}
},
"range": [
- 4603,
- 4618
+ 4853,
+ 4868
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 12
},
"end": {
- "line": 130,
+ "line": 138,
"column": 27
}
}
@@ -10899,16 +11643,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 4622,
- 4625
+ 4872,
+ 4875
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 31
},
"end": {
- "line": 130,
+ "line": 138,
"column": 34
}
}
@@ -10917,31 +11661,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 4626,
- 4634
+ 4876,
+ 4884
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 35
},
"end": {
- "line": 130,
+ "line": 138,
"column": 43
}
}
},
"range": [
- 4622,
- 4634
+ 4872,
+ 4884
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 31
},
"end": {
- "line": 130,
+ "line": 138,
"column": 43
}
}
@@ -10952,16 +11696,16 @@
"value": "%",
"raw": "'%'",
"range": [
- 4635,
- 4638
+ 4885,
+ 4888
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 44
},
"end": {
- "line": 130,
+ "line": 138,
"column": 47
}
}
@@ -10970,32 +11714,32 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 4640,
- 4644
+ 4890,
+ 4894
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 49
},
"end": {
- "line": 130,
+ "line": 138,
"column": 53
}
}
}
],
"range": [
- 4622,
- 4645
+ 4872,
+ 4895
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 31
},
"end": {
- "line": 130,
+ "line": 138,
"column": 54
}
}
@@ -11007,16 +11751,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 4664,
- 4667
+ 4914,
+ 4917
],
"loc": {
"start": {
- "line": 131,
+ "line": 139,
"column": 16
},
"end": {
- "line": 131,
+ "line": 139,
"column": 19
}
}
@@ -11025,31 +11769,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 4668,
- 4679
+ 4918,
+ 4929
],
"loc": {
"start": {
- "line": 131,
+ "line": 139,
"column": 20
},
"end": {
- "line": 131,
+ "line": 139,
"column": 31
}
}
},
"range": [
- 4664,
- 4679
+ 4914,
+ 4929
],
"loc": {
"start": {
- "line": 131,
+ "line": 139,
"column": 16
},
"end": {
- "line": 131,
+ "line": 139,
"column": 31
}
}
@@ -11058,31 +11802,31 @@
"type": "Identifier",
"name": "tblW",
"range": [
- 4682,
- 4686
+ 4932,
+ 4936
],
"loc": {
"start": {
- "line": 131,
+ "line": 139,
"column": 34
},
"end": {
- "line": 131,
+ "line": 139,
"column": 38
}
}
},
"range": [
- 4622,
- 4686
+ 4872,
+ 4936
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 31
},
"end": {
- "line": 131,
+ "line": 139,
"column": 38
}
}
@@ -11092,93 +11836,93 @@
"value": "px",
"raw": "'px'",
"range": [
- 4690,
- 4694
+ 4940,
+ 4944
],
"loc": {
"start": {
- "line": 131,
+ "line": 139,
"column": 42
},
"end": {
- "line": 131,
+ "line": 139,
"column": 46
}
}
},
"range": [
- 4621,
- 4694
+ 4871,
+ 4944
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 30
},
"end": {
- "line": 131,
+ "line": 139,
"column": 46
}
}
},
"range": [
- 4603,
- 4694
+ 4853,
+ 4944
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 12
},
"end": {
- "line": 131,
+ "line": 139,
"column": 46
}
}
},
"range": [
- 4603,
- 4695
+ 4853,
+ 4945
],
"loc": {
"start": {
- "line": 130,
+ "line": 138,
"column": 12
},
"end": {
- "line": 131,
+ "line": 139,
"column": 47
}
}
}
],
"range": [
- 4589,
- 4705
+ 4839,
+ 4955
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 34
},
"end": {
- "line": 132,
+ "line": 140,
"column": 9
}
}
},
"alternate": null,
"range": [
- 4563,
- 4705
+ 4813,
+ 4955
],
"loc": {
"start": {
- "line": 129,
+ "line": 137,
"column": 8
},
"end": {
- "line": 132,
+ "line": 140,
"column": 9
}
},
@@ -11187,16 +11931,16 @@
"type": "Line",
"value": "In case table width is expressed in %",
"range": [
- 4515,
- 4554
+ 4765,
+ 4804
],
"loc": {
"start": {
- "line": 128,
+ "line": 136,
"column": 8
},
"end": {
- "line": 128,
+ "line": 136,
"column": 47
}
}
@@ -11212,16 +11956,16 @@
"type": "Identifier",
"name": "d",
"range": [
- 4719,
- 4720
+ 4969,
+ 4970
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 12
},
"end": {
- "line": 134,
+ "line": 142,
"column": 13
}
}
@@ -11235,16 +11979,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4723,
- 4726
+ 4973,
+ 4976
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 16
},
"end": {
- "line": 134,
+ "line": 142,
"column": 19
}
}
@@ -11253,31 +11997,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 4727,
- 4733
+ 4977,
+ 4983
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 20
},
"end": {
- "line": 134,
+ "line": 142,
"column": 26
}
}
},
"range": [
- 4723,
- 4733
+ 4973,
+ 4983
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 16
},
"end": {
- "line": 134,
+ "line": 142,
"column": 26
}
}
@@ -11289,16 +12033,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4734,
- 4738
+ 4984,
+ 4988
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 27
},
"end": {
- "line": 134,
+ "line": 142,
"column": 31
}
}
@@ -11307,79 +12051,79 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 4739,
- 4746
+ 4989,
+ 4996
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 32
},
"end": {
- "line": 134,
+ "line": 142,
"column": 39
}
}
},
"range": [
- 4734,
- 4746
+ 4984,
+ 4996
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 27
},
"end": {
- "line": 134,
+ "line": 142,
"column": 39
}
}
}
],
"range": [
- 4723,
- 4747
+ 4973,
+ 4997
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 16
},
"end": {
- "line": 134,
+ "line": 142,
"column": 40
}
}
},
"range": [
- 4719,
- 4747
+ 4969,
+ 4997
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 12
},
"end": {
- "line": 134,
+ "line": 142,
"column": 40
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 4715,
- 4748
+ 4965,
+ 4998
],
"loc": {
"start": {
- "line": 134,
+ "line": 142,
"column": 8
},
"end": {
- "line": 134,
+ "line": 142,
"column": 41
}
}
@@ -11397,16 +12141,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4757,
- 4761
+ 5007,
+ 5011
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 8
},
"end": {
- "line": 135,
+ "line": 143,
"column": 12
}
}
@@ -11415,31 +12159,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 4762,
- 4773
+ 5012,
+ 5023
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 13
},
"end": {
- "line": 135,
+ "line": 143,
"column": 24
}
}
},
"range": [
- 4757,
- 4773
+ 5007,
+ 5023
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 8
},
"end": {
- "line": 135,
+ "line": 143,
"column": 24
}
}
@@ -11448,31 +12192,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 4774,
- 4785
+ 5024,
+ 5035
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 25
},
"end": {
- "line": 135,
+ "line": 143,
"column": 36
}
}
},
"range": [
- 4757,
- 4785
+ 5007,
+ 5035
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 8
},
"end": {
- "line": 135,
+ "line": 143,
"column": 36
}
}
@@ -11482,47 +12226,47 @@
"type": "Identifier",
"name": "d",
"range": [
- 4786,
- 4787
+ 5036,
+ 5037
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 37
},
"end": {
- "line": 135,
+ "line": 143,
"column": 38
}
}
}
],
"range": [
- 4757,
- 4788
+ 5007,
+ 5038
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 8
},
"end": {
- "line": 135,
+ "line": 143,
"column": 39
}
}
},
"range": [
- 4757,
- 4789
+ 5007,
+ 5039
],
"loc": {
"start": {
- "line": 135,
+ "line": 143,
"column": 8
},
"end": {
- "line": 135,
+ "line": 143,
"column": 40
}
},
@@ -11531,16 +12275,16 @@
"type": "Line",
"value": "Headers table container: div wrapping headers table",
"range": [
- 4799,
- 4852
+ 5049,
+ 5102
],
"loc": {
"start": {
- "line": 137,
+ "line": 145,
"column": 8
},
"end": {
- "line": 137,
+ "line": 145,
"column": 61
}
}
@@ -11558,16 +12302,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4861,
- 4865
+ 5111,
+ 5115
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 8
},
"end": {
- "line": 138,
+ "line": 146,
"column": 12
}
}
@@ -11576,31 +12320,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 4866,
- 4877
+ 5116,
+ 5127
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 13
},
"end": {
- "line": 138,
+ "line": 146,
"column": 24
}
}
},
"range": [
- 4861,
- 4877
+ 5111,
+ 5127
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 8
},
"end": {
- "line": 138,
+ "line": 146,
"column": 24
}
}
@@ -11614,16 +12358,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4880,
- 4883
+ 5130,
+ 5133
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 27
},
"end": {
- "line": 138,
+ "line": 146,
"column": 30
}
}
@@ -11632,31 +12376,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 4884,
- 4890
+ 5134,
+ 5140
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 31
},
"end": {
- "line": 138,
+ "line": 146,
"column": 37
}
}
},
"range": [
- 4880,
- 4890
+ 5130,
+ 5140
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 27
},
"end": {
- "line": 138,
+ "line": 146,
"column": 37
}
}
@@ -11667,16 +12411,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 4904,
- 4909
+ 5154,
+ 5159
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 12
},
"end": {
- "line": 139,
+ "line": 147,
"column": 17
}
}
@@ -11689,16 +12433,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 4911,
- 4915
+ 5161,
+ 5165
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 19
},
"end": {
- "line": 139,
+ "line": 147,
"column": 23
}
}
@@ -11712,16 +12456,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4917,
- 4921
+ 5167,
+ 5171
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 25
},
"end": {
- "line": 139,
+ "line": 147,
"column": 29
}
}
@@ -11730,31 +12474,31 @@
"type": "Identifier",
"name": "prfxHeadTblCont",
"range": [
- 4922,
- 4937
+ 5172,
+ 5187
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 30
},
"end": {
- "line": 139,
+ "line": 147,
"column": 45
}
}
},
"range": [
- 4917,
- 4937
+ 5167,
+ 5187
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 25
},
"end": {
- "line": 139,
+ "line": 147,
"column": 45
}
}
@@ -11766,16 +12510,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4940,
- 4942
+ 5190,
+ 5192
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 48
},
"end": {
- "line": 139,
+ "line": 147,
"column": 50
}
}
@@ -11784,108 +12528,108 @@
"type": "Identifier",
"name": "id",
"range": [
- 4943,
- 4945
+ 5193,
+ 5195
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 51
},
"end": {
- "line": 139,
+ "line": 147,
"column": 53
}
}
},
"range": [
- 4940,
- 4945
+ 5190,
+ 5195
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 48
},
"end": {
- "line": 139,
+ "line": 147,
"column": 53
}
}
},
"range": [
- 4917,
- 4945
+ 5167,
+ 5195
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 25
},
"end": {
- "line": 139,
+ "line": 147,
"column": 53
}
}
}
],
"range": [
- 4910,
- 4946
+ 5160,
+ 5196
],
"loc": {
"start": {
- "line": 139,
+ "line": 147,
"column": 18
},
"end": {
- "line": 139,
+ "line": 147,
"column": 54
}
}
}
],
"range": [
- 4880,
- 4947
+ 5130,
+ 5197
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 27
},
"end": {
- "line": 139,
+ "line": 147,
"column": 55
}
}
},
"range": [
- 4861,
- 4947
+ 5111,
+ 5197
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 8
},
"end": {
- "line": 139,
+ "line": 147,
"column": 55
}
}
},
"range": [
- 4861,
- 4948
+ 5111,
+ 5198
],
"loc": {
"start": {
- "line": 138,
+ "line": 146,
"column": 8
},
"end": {
- "line": 139,
+ "line": 147,
"column": 56
}
},
@@ -11894,16 +12638,16 @@
"type": "Line",
"value": "Headers table container: div wrapping headers table",
"range": [
- 4799,
- 4852
+ 5049,
+ 5102
],
"loc": {
"start": {
- "line": 137,
+ "line": 145,
"column": 8
},
"end": {
- "line": 137,
+ "line": 145,
"column": 61
}
}
@@ -11924,16 +12668,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4957,
- 4961
+ 5207,
+ 5211
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 8
},
"end": {
- "line": 140,
+ "line": 148,
"column": 12
}
}
@@ -11942,31 +12686,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 4962,
- 4973
+ 5212,
+ 5223
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 13
},
"end": {
- "line": 140,
+ "line": 148,
"column": 24
}
}
},
"range": [
- 4957,
- 4973
+ 5207,
+ 5223
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 8
},
"end": {
- "line": 140,
+ "line": 148,
"column": 24
}
}
@@ -11975,31 +12719,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 4974,
- 4983
+ 5224,
+ 5233
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 25
},
"end": {
- "line": 140,
+ "line": 148,
"column": 34
}
}
},
"range": [
- 4957,
- 4983
+ 5207,
+ 5233
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 8
},
"end": {
- "line": 140,
+ "line": 148,
"column": 34
}
}
@@ -12010,16 +12754,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4986,
- 4990
+ 5236,
+ 5240
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 37
},
"end": {
- "line": 140,
+ "line": 148,
"column": 41
}
}
@@ -12028,61 +12772,61 @@
"type": "Identifier",
"name": "gridHeadContCssClass",
"range": [
- 4991,
- 5011
+ 5241,
+ 5261
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 42
},
"end": {
- "line": 140,
+ "line": 148,
"column": 62
}
}
},
"range": [
- 4986,
- 5011
+ 5236,
+ 5261
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 37
},
"end": {
- "line": 140,
+ "line": 148,
"column": 62
}
}
},
"range": [
- 4957,
- 5011
+ 5207,
+ 5261
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 8
},
"end": {
- "line": 140,
+ "line": 148,
"column": 62
}
}
},
"range": [
- 4957,
- 5012
+ 5207,
+ 5262
],
"loc": {
"start": {
- "line": 140,
+ "line": 148,
"column": 8
},
"end": {
- "line": 140,
+ "line": 148,
"column": 63
}
}
@@ -12095,16 +12839,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5024,
- 5028
+ 5274,
+ 5278
],
"loc": {
"start": {
- "line": 141,
+ "line": 149,
"column": 11
},
"end": {
- "line": 141,
+ "line": 149,
"column": 15
}
}
@@ -12113,31 +12857,31 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 5029,
- 5038
+ 5279,
+ 5288
],
"loc": {
"start": {
- "line": 141,
+ "line": 149,
"column": 16
},
"end": {
- "line": 141,
+ "line": 149,
"column": 25
}
}
},
"range": [
- 5024,
- 5038
+ 5274,
+ 5288
],
"loc": {
"start": {
- "line": 141,
+ "line": 149,
"column": 11
},
"end": {
- "line": 141,
+ "line": 149,
"column": 25
}
}
@@ -12161,16 +12905,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5056,
- 5060
+ 5306,
+ 5310
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 15
},
"end": {
- "line": 142,
+ "line": 150,
"column": 19
}
}
@@ -12179,31 +12923,31 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 5061,
- 5070
+ 5311,
+ 5320
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 20
},
"end": {
- "line": 142,
+ "line": 150,
"column": 29
}
}
},
"range": [
- 5056,
- 5070
+ 5306,
+ 5320
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 15
},
"end": {
- "line": 142,
+ "line": 150,
"column": 29
}
}
@@ -12212,31 +12956,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 5071,
- 5078
+ 5321,
+ 5328
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 30
},
"end": {
- "line": 142,
+ "line": 150,
"column": 37
}
}
},
"range": [
- 5056,
- 5078
+ 5306,
+ 5328
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 15
},
"end": {
- "line": 142,
+ "line": 150,
"column": 37
}
}
@@ -12247,32 +12991,32 @@
"value": "%",
"raw": "'%'",
"range": [
- 5079,
- 5082
+ 5329,
+ 5332
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 38
},
"end": {
- "line": 142,
+ "line": 150,
"column": 41
}
}
}
],
"range": [
- 5056,
- 5083
+ 5306,
+ 5333
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 15
},
"end": {
- "line": 142,
+ "line": 150,
"column": 42
}
}
@@ -12285,47 +13029,47 @@
"value": 1,
"raw": "1",
"range": [
- 5088,
- 5089
+ 5338,
+ 5339
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 47
},
"end": {
- "line": 142,
+ "line": 150,
"column": 48
}
}
},
"prefix": true,
"range": [
- 5087,
- 5089
+ 5337,
+ 5339
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 46
},
"end": {
- "line": 142,
+ "line": 150,
"column": 48
}
}
},
"range": [
- 5056,
- 5089
+ 5306,
+ 5339
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 15
},
"end": {
- "line": 142,
+ "line": 150,
"column": 48
}
}
@@ -12350,16 +13094,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5108,
- 5112
+ 5358,
+ 5362
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 20
}
}
@@ -12368,31 +13112,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 5113,
- 5124
+ 5363,
+ 5374
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 21
},
"end": {
- "line": 143,
+ "line": 151,
"column": 32
}
}
},
"range": [
- 5108,
- 5124
+ 5358,
+ 5374
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 32
}
}
@@ -12401,31 +13145,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 5125,
- 5130
+ 5375,
+ 5380
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 33
},
"end": {
- "line": 143,
+ "line": 151,
"column": 38
}
}
},
"range": [
- 5108,
- 5130
+ 5358,
+ 5380
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 38
}
}
@@ -12434,31 +13178,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 5131,
- 5136
+ 5381,
+ 5386
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 39
},
"end": {
- "line": 143,
+ "line": 151,
"column": 44
}
}
},
"range": [
- 5108,
- 5136
+ 5358,
+ 5386
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 44
}
}
@@ -12468,62 +13212,62 @@
"value": "100%",
"raw": "'100%'",
"range": [
- 5139,
- 5145
+ 5389,
+ 5395
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 47
},
"end": {
- "line": 143,
+ "line": 151,
"column": 53
}
}
},
"range": [
- 5108,
- 5145
+ 5358,
+ 5395
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 53
}
}
},
"range": [
- 5108,
- 5146
+ 5358,
+ 5396
],
"loc": {
"start": {
- "line": 143,
+ "line": 151,
"column": 16
},
"end": {
- "line": 143,
+ "line": 151,
"column": 54
}
}
}
],
"range": [
- 5090,
- 5160
+ 5340,
+ 5410
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 49
},
"end": {
- "line": 144,
+ "line": 152,
"column": 13
}
}
@@ -12548,16 +13292,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5184,
- 5188
+ 5434,
+ 5438
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 20
}
}
@@ -12566,31 +13310,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 5189,
- 5200
+ 5439,
+ 5450
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 21
},
"end": {
- "line": 145,
+ "line": 153,
"column": 32
}
}
},
"range": [
- 5184,
- 5200
+ 5434,
+ 5450
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 32
}
}
@@ -12599,31 +13343,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 5201,
- 5206
+ 5451,
+ 5456
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 33
},
"end": {
- "line": 145,
+ "line": 153,
"column": 38
}
}
},
"range": [
- 5184,
- 5206
+ 5434,
+ 5456
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 38
}
}
@@ -12632,31 +13376,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 5207,
- 5212
+ 5457,
+ 5462
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 39
},
"end": {
- "line": 145,
+ "line": 153,
"column": 44
}
}
},
"range": [
- 5184,
- 5212
+ 5434,
+ 5462
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 44
}
}
@@ -12667,16 +13411,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5215,
- 5219
+ 5465,
+ 5469
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 47
},
"end": {
- "line": 145,
+ "line": 153,
"column": 51
}
}
@@ -12685,124 +13429,124 @@
"type": "Identifier",
"name": "gridWidth",
"range": [
- 5220,
- 5229
+ 5470,
+ 5479
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 52
},
"end": {
- "line": 145,
+ "line": 153,
"column": 61
}
}
},
"range": [
- 5215,
- 5229
+ 5465,
+ 5479
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 47
},
"end": {
- "line": 145,
+ "line": 153,
"column": 61
}
}
},
"range": [
- 5184,
- 5229
+ 5434,
+ 5479
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 61
}
}
},
"range": [
- 5184,
- 5230
+ 5434,
+ 5480
],
"loc": {
"start": {
- "line": 145,
+ "line": 153,
"column": 16
},
"end": {
- "line": 145,
+ "line": 153,
"column": 62
}
}
}
],
"range": [
- 5166,
- 5244
+ 5416,
+ 5494
],
"loc": {
"start": {
- "line": 144,
+ "line": 152,
"column": 19
},
"end": {
- "line": 146,
+ "line": 154,
"column": 13
}
}
},
"range": [
- 5053,
- 5244
+ 5303,
+ 5494
],
"loc": {
"start": {
- "line": 142,
+ "line": 150,
"column": 12
},
"end": {
- "line": 146,
+ "line": 154,
"column": 13
}
}
}
],
"range": [
- 5039,
- 5254
+ 5289,
+ 5504
],
"loc": {
"start": {
- "line": 141,
+ "line": 149,
"column": 26
},
"end": {
- "line": 147,
+ "line": 155,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5021,
- 5254
+ 5271,
+ 5504
],
"loc": {
"start": {
- "line": 141,
+ "line": 149,
"column": 8
},
"end": {
- "line": 147,
+ "line": 155,
"column": 9
}
},
@@ -12811,16 +13555,16 @@
"type": "Line",
"value": "Headers table",
"range": [
- 5264,
- 5279
+ 5514,
+ 5529
],
"loc": {
"start": {
- "line": 149,
+ "line": 157,
"column": 8
},
"end": {
- "line": 149,
+ "line": 157,
"column": 23
}
}
@@ -12838,16 +13582,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5288,
- 5292
+ 5538,
+ 5542
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 8
},
"end": {
- "line": 150,
+ "line": 158,
"column": 12
}
}
@@ -12856,31 +13600,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 5293,
- 5300
+ 5543,
+ 5550
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 13
},
"end": {
- "line": 150,
+ "line": 158,
"column": 20
}
}
},
"range": [
- 5288,
- 5300
+ 5538,
+ 5550
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 8
},
"end": {
- "line": 150,
+ "line": 158,
"column": 20
}
}
@@ -12894,16 +13638,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 5303,
- 5306
+ 5553,
+ 5556
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 23
},
"end": {
- "line": 150,
+ "line": 158,
"column": 26
}
}
@@ -12912,31 +13656,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 5307,
- 5313
+ 5557,
+ 5563
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 27
},
"end": {
- "line": 150,
+ "line": 158,
"column": 33
}
}
},
"range": [
- 5303,
- 5313
+ 5553,
+ 5563
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 23
},
"end": {
- "line": 150,
+ "line": 158,
"column": 33
}
}
@@ -12947,16 +13691,16 @@
"value": "table",
"raw": "'table'",
"range": [
- 5314,
- 5321
+ 5564,
+ 5571
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 34
},
"end": {
- "line": 150,
+ "line": 158,
"column": 41
}
}
@@ -12969,16 +13713,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 5324,
- 5328
+ 5574,
+ 5578
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 44
},
"end": {
- "line": 150,
+ "line": 158,
"column": 48
}
}
@@ -12992,16 +13736,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5330,
- 5334
+ 5580,
+ 5584
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 50
},
"end": {
- "line": 150,
+ "line": 158,
"column": 54
}
}
@@ -13010,31 +13754,31 @@
"type": "Identifier",
"name": "prfxHeadTbl",
"range": [
- 5335,
- 5346
+ 5585,
+ 5596
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 55
},
"end": {
- "line": 150,
+ "line": 158,
"column": 66
}
}
},
"range": [
- 5330,
- 5346
+ 5580,
+ 5596
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 50
},
"end": {
- "line": 150,
+ "line": 158,
"column": 66
}
}
@@ -13046,16 +13790,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5349,
- 5351
+ 5599,
+ 5601
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 69
},
"end": {
- "line": 150,
+ "line": 158,
"column": 71
}
}
@@ -13064,108 +13808,108 @@
"type": "Identifier",
"name": "id",
"range": [
- 5352,
- 5354
+ 5602,
+ 5604
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 72
},
"end": {
- "line": 150,
+ "line": 158,
"column": 74
}
}
},
"range": [
- 5349,
- 5354
+ 5599,
+ 5604
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 69
},
"end": {
- "line": 150,
+ "line": 158,
"column": 74
}
}
},
"range": [
- 5330,
- 5354
+ 5580,
+ 5604
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 50
},
"end": {
- "line": 150,
+ "line": 158,
"column": 74
}
}
}
],
"range": [
- 5323,
- 5355
+ 5573,
+ 5605
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 43
},
"end": {
- "line": 150,
+ "line": 158,
"column": 75
}
}
}
],
"range": [
- 5303,
- 5356
+ 5553,
+ 5606
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 23
},
"end": {
- "line": 150,
+ "line": 158,
"column": 76
}
}
},
"range": [
- 5288,
- 5356
+ 5538,
+ 5606
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 8
},
"end": {
- "line": 150,
+ "line": 158,
"column": 76
}
}
},
"range": [
- 5288,
- 5357
+ 5538,
+ 5607
],
"loc": {
"start": {
- "line": 150,
+ "line": 158,
"column": 8
},
"end": {
- "line": 150,
+ "line": 158,
"column": 77
}
},
@@ -13174,16 +13918,16 @@
"type": "Line",
"value": "Headers table",
"range": [
- 5264,
- 5279
+ 5514,
+ 5529
],
"loc": {
"start": {
- "line": 149,
+ "line": 157,
"column": 8
},
"end": {
- "line": 149,
+ "line": 157,
"column": 23
}
}
@@ -13199,16 +13943,16 @@
"type": "Identifier",
"name": "tH",
"range": [
- 5370,
- 5372
+ 5620,
+ 5622
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 12
},
"end": {
- "line": 151,
+ "line": 159,
"column": 14
}
}
@@ -13222,16 +13966,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 5375,
- 5378
+ 5625,
+ 5628
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 17
},
"end": {
- "line": 151,
+ "line": 159,
"column": 20
}
}
@@ -13240,31 +13984,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 5379,
- 5385
+ 5629,
+ 5635
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 21
},
"end": {
- "line": 151,
+ "line": 159,
"column": 27
}
}
},
"range": [
- 5375,
- 5385
+ 5625,
+ 5635
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 17
},
"end": {
- "line": 151,
+ "line": 159,
"column": 27
}
}
@@ -13275,64 +14019,64 @@
"value": "tHead",
"raw": "'tHead'",
"range": [
- 5386,
- 5393
+ 5636,
+ 5643
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 28
},
"end": {
- "line": 151,
+ "line": 159,
"column": 35
}
}
}
],
"range": [
- 5375,
- 5394
+ 5625,
+ 5644
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 17
},
"end": {
- "line": 151,
+ "line": 159,
"column": 36
}
}
},
"range": [
- 5370,
- 5394
+ 5620,
+ 5644
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 12
},
"end": {
- "line": 151,
+ "line": 159,
"column": 36
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5366,
- 5395
+ 5616,
+ 5645
],
"loc": {
"start": {
- "line": 151,
+ "line": 159,
"column": 8
},
"end": {
- "line": 151,
+ "line": 159,
"column": 37
}
},
@@ -13341,16 +14085,16 @@
"type": "Line",
"value": "1st row should be headers row, ids are added if not set",
"range": [
- 5405,
- 5462
+ 5655,
+ 5712
],
"loc": {
"start": {
- "line": 153,
+ "line": 161,
"column": 8
},
"end": {
- "line": 153,
+ "line": 161,
"column": 65
}
}
@@ -13359,16 +14103,16 @@
"type": "Line",
"value": "Those ids are used by the sort feature",
"range": [
- 5471,
- 5511
+ 5721,
+ 5761
],
"loc": {
"start": {
- "line": 154,
+ "line": 162,
"column": 8
},
"end": {
- "line": 154,
+ "line": 162,
"column": 48
}
}
@@ -13384,16 +14128,16 @@
"type": "Identifier",
"name": "hRow",
"range": [
- 5524,
- 5528
+ 5774,
+ 5778
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 12
},
"end": {
- "line": 155,
+ "line": 163,
"column": 16
}
}
@@ -13408,16 +14152,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 5531,
- 5534
+ 5781,
+ 5784
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 19
},
"end": {
- "line": 155,
+ "line": 163,
"column": 22
}
}
@@ -13426,31 +14170,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 5535,
- 5539
+ 5785,
+ 5789
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 23
},
"end": {
- "line": 155,
+ "line": 163,
"column": 27
}
}
},
"range": [
- 5531,
- 5539
+ 5781,
+ 5789
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 19
},
"end": {
- "line": 155,
+ "line": 163,
"column": 27
}
}
@@ -13461,16 +14205,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5540,
- 5544
+ 5790,
+ 5794
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 28
},
"end": {
- "line": 155,
+ "line": 163,
"column": 32
}
}
@@ -13479,78 +14223,78 @@
"type": "Identifier",
"name": "gridHeadRowIndex",
"range": [
- 5545,
- 5561
+ 5795,
+ 5811
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 33
},
"end": {
- "line": 155,
+ "line": 163,
"column": 49
}
}
},
"range": [
- 5540,
- 5561
+ 5790,
+ 5811
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 28
},
"end": {
- "line": 155,
+ "line": 163,
"column": 49
}
}
},
"range": [
- 5531,
- 5562
+ 5781,
+ 5812
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 19
},
"end": {
- "line": 155,
+ "line": 163,
"column": 50
}
}
},
"range": [
- 5524,
- 5562
+ 5774,
+ 5812
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 12
},
"end": {
- "line": 155,
+ "line": 163,
"column": 50
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5520,
- 5563
+ 5770,
+ 5813
],
"loc": {
"start": {
- "line": 155,
+ "line": 163,
"column": 8
},
"end": {
- "line": 155,
+ "line": 163,
"column": 51
}
},
@@ -13559,16 +14303,16 @@
"type": "Line",
"value": "1st row should be headers row, ids are added if not set",
"range": [
- 5405,
- 5462
+ 5655,
+ 5712
],
"loc": {
"start": {
- "line": 153,
+ "line": 161,
"column": 8
},
"end": {
- "line": 153,
+ "line": 161,
"column": 65
}
}
@@ -13577,16 +14321,16 @@
"type": "Line",
"value": "Those ids are used by the sort feature",
"range": [
- 5471,
- 5511
+ 5721,
+ 5761
],
"loc": {
"start": {
- "line": 154,
+ "line": 162,
"column": 8
},
"end": {
- "line": 154,
+ "line": 162,
"column": 48
}
}
@@ -13602,16 +14346,16 @@
"type": "Identifier",
"name": "sortTriggers",
"range": [
- 5576,
- 5588
+ 5826,
+ 5838
],
"loc": {
"start": {
- "line": 156,
+ "line": 164,
"column": 12
},
"end": {
- "line": 156,
+ "line": 164,
"column": 24
}
}
@@ -13620,48 +14364,48 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 5591,
- 5593
+ 5841,
+ 5843
],
"loc": {
"start": {
- "line": 156,
+ "line": 164,
"column": 27
},
"end": {
- "line": 156,
+ "line": 164,
"column": 29
}
}
},
"range": [
- 5576,
- 5593
+ 5826,
+ 5843
],
"loc": {
"start": {
- "line": 156,
+ "line": 164,
"column": 12
},
"end": {
- "line": 156,
+ "line": 164,
"column": 29
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5572,
- 5594
+ 5822,
+ 5844
],
"loc": {
"start": {
- "line": 156,
+ "line": 164,
"column": 8
},
"end": {
- "line": 156,
+ "line": 164,
"column": 30
}
}
@@ -13677,16 +14421,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 5611,
- 5612
+ 5861,
+ 5862
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 16
},
"end": {
- "line": 157,
+ "line": 165,
"column": 17
}
}
@@ -13696,48 +14440,48 @@
"value": 0,
"raw": "0",
"range": [
- 5613,
- 5614
+ 5863,
+ 5864
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 18
},
"end": {
- "line": 157,
+ "line": 165,
"column": 19
}
}
},
"range": [
- 5611,
- 5614
+ 5861,
+ 5864
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 16
},
"end": {
- "line": 157,
+ "line": 165,
"column": 19
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5607,
- 5614
+ 5857,
+ 5864
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 12
},
"end": {
- "line": 157,
+ "line": 165,
"column": 19
}
}
@@ -13749,16 +14493,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 5616,
- 5617
+ 5866,
+ 5867
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 21
},
"end": {
- "line": 157,
+ "line": 165,
"column": 22
}
}
@@ -13770,16 +14514,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5618,
- 5620
+ 5868,
+ 5870
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 23
},
"end": {
- "line": 157,
+ "line": 165,
"column": 25
}
}
@@ -13788,46 +14532,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 5621,
- 5628
+ 5871,
+ 5878
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 26
},
"end": {
- "line": 157,
+ "line": 165,
"column": 33
}
}
},
"range": [
- 5618,
- 5628
+ 5868,
+ 5878
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 23
},
"end": {
- "line": 157,
+ "line": 165,
"column": 33
}
}
},
"range": [
- 5616,
- 5628
+ 5866,
+ 5878
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 21
},
"end": {
- "line": 157,
+ "line": 165,
"column": 33
}
}
@@ -13839,32 +14583,32 @@
"type": "Identifier",
"name": "n",
"range": [
- 5630,
- 5631
+ 5880,
+ 5881
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 35
},
"end": {
- "line": 157,
+ "line": 165,
"column": 36
}
}
},
"prefix": false,
"range": [
- 5630,
- 5633
+ 5880,
+ 5883
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 35
},
"end": {
- "line": 157,
+ "line": 165,
"column": 38
}
}
@@ -13881,16 +14625,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 5652,
- 5653
+ 5902,
+ 5903
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 16
},
"end": {
- "line": 158,
+ "line": 166,
"column": 17
}
}
@@ -13905,16 +14649,16 @@
"type": "Identifier",
"name": "hRow",
"range": [
- 5656,
- 5660
+ 5906,
+ 5910
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 20
},
"end": {
- "line": 158,
+ "line": 166,
"column": 24
}
}
@@ -13923,31 +14667,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 5661,
- 5666
+ 5911,
+ 5916
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 25
},
"end": {
- "line": 158,
+ "line": 166,
"column": 30
}
}
},
"range": [
- 5656,
- 5666
+ 5906,
+ 5916
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 20
},
"end": {
- "line": 158,
+ "line": 166,
"column": 30
}
}
@@ -13956,63 +14700,63 @@
"type": "Identifier",
"name": "n",
"range": [
- 5667,
- 5668
+ 5917,
+ 5918
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 31
},
"end": {
- "line": 158,
+ "line": 166,
"column": 32
}
}
},
"range": [
- 5656,
- 5669
+ 5906,
+ 5919
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 20
},
"end": {
- "line": 158,
+ "line": 166,
"column": 33
}
}
},
"range": [
- 5652,
- 5669
+ 5902,
+ 5919
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 16
},
"end": {
- "line": 158,
+ "line": 166,
"column": 33
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5648,
- 5670
+ 5898,
+ 5920
],
"loc": {
"start": {
- "line": 158,
+ "line": 166,
"column": 12
},
"end": {
- "line": 158,
+ "line": 166,
"column": 34
}
}
@@ -14026,16 +14770,16 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5687,
- 5691
+ 5937,
+ 5941
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 16
},
"end": {
- "line": 159,
+ "line": 167,
"column": 20
}
}
@@ -14049,16 +14793,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 5694,
- 5695
+ 5944,
+ 5945
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 23
},
"end": {
- "line": 159,
+ "line": 167,
"column": 24
}
}
@@ -14067,31 +14811,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 5696,
- 5708
+ 5946,
+ 5958
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 25
},
"end": {
- "line": 159,
+ "line": 167,
"column": 37
}
}
},
"range": [
- 5694,
- 5708
+ 5944,
+ 5958
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 23
},
"end": {
- "line": 159,
+ "line": 167,
"column": 37
}
}
@@ -14102,64 +14846,64 @@
"value": "id",
"raw": "'id'",
"range": [
- 5709,
- 5713
+ 5959,
+ 5963
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 38
},
"end": {
- "line": 159,
+ "line": 167,
"column": 42
}
}
}
],
"range": [
- 5694,
- 5714
+ 5944,
+ 5964
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 23
},
"end": {
- "line": 159,
+ "line": 167,
"column": 43
}
}
},
"range": [
- 5687,
- 5714
+ 5937,
+ 5964
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 16
},
"end": {
- "line": 159,
+ "line": 167,
"column": 43
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5683,
- 5715
+ 5933,
+ 5965
],
"loc": {
"start": {
- "line": 159,
+ "line": 167,
"column": 12
},
"end": {
- "line": 159,
+ "line": 167,
"column": 44
}
}
@@ -14176,32 +14920,32 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5732,
- 5736
+ 5982,
+ 5986
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 16
},
"end": {
- "line": 160,
+ "line": 168,
"column": 20
}
}
},
"prefix": true,
"range": [
- 5731,
- 5736
+ 5981,
+ 5986
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 15
},
"end": {
- "line": 160,
+ "line": 168,
"column": 20
}
}
@@ -14213,16 +14957,16 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5740,
- 5744
+ 5990,
+ 5994
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 24
},
"end": {
- "line": 160,
+ "line": 168,
"column": 28
}
}
@@ -14232,46 +14976,46 @@
"value": "",
"raw": "''",
"range": [
- 5747,
- 5749
+ 5997,
+ 5999
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 31
},
"end": {
- "line": 160,
+ "line": 168,
"column": 33
}
}
},
"range": [
- 5740,
- 5749
+ 5990,
+ 5999
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 24
},
"end": {
- "line": 160,
+ "line": 168,
"column": 33
}
}
},
"range": [
- 5731,
- 5749
+ 5981,
+ 5999
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 15
},
"end": {
- "line": 160,
+ "line": 168,
"column": 33
}
}
@@ -14288,16 +15032,16 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5768,
- 5772
+ 6018,
+ 6022
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 16
},
"end": {
- "line": 161,
+ "line": 169,
"column": 20
}
}
@@ -14317,16 +15061,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5775,
- 5779
+ 6025,
+ 6029
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 23
},
"end": {
- "line": 161,
+ "line": 169,
"column": 27
}
}
@@ -14335,31 +15079,31 @@
"type": "Identifier",
"name": "prfxGridTh",
"range": [
- 5780,
- 5790
+ 6030,
+ 6040
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 28
},
"end": {
- "line": 161,
+ "line": 169,
"column": 38
}
}
},
"range": [
- 5775,
- 5790
+ 6025,
+ 6040
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 23
},
"end": {
- "line": 161,
+ "line": 169,
"column": 38
}
}
@@ -14368,31 +15112,31 @@
"type": "Identifier",
"name": "n",
"range": [
- 5791,
- 5792
+ 6041,
+ 6042
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 39
},
"end": {
- "line": 161,
+ "line": 169,
"column": 40
}
}
},
"range": [
- 5775,
- 5792
+ 6025,
+ 6042
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 23
},
"end": {
- "line": 161,
+ "line": 169,
"column": 40
}
}
@@ -14402,31 +15146,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 5793,
- 5796
+ 6043,
+ 6046
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 41
},
"end": {
- "line": 161,
+ "line": 169,
"column": 44
}
}
},
"range": [
- 5775,
- 5796
+ 6025,
+ 6046
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 23
},
"end": {
- "line": 161,
+ "line": 169,
"column": 44
}
}
@@ -14438,16 +15182,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5797,
- 5799
+ 6047,
+ 6049
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 45
},
"end": {
- "line": 161,
+ "line": 169,
"column": 47
}
}
@@ -14456,76 +15200,76 @@
"type": "Identifier",
"name": "id",
"range": [
- 5800,
- 5802
+ 6050,
+ 6052
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 48
},
"end": {
- "line": 161,
+ "line": 169,
"column": 50
}
}
},
"range": [
- 5797,
- 5802
+ 6047,
+ 6052
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 45
},
"end": {
- "line": 161,
+ "line": 169,
"column": 50
}
}
},
"range": [
- 5775,
- 5802
+ 6025,
+ 6052
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 23
},
"end": {
- "line": 161,
+ "line": 169,
"column": 50
}
}
},
"range": [
- 5768,
- 5802
+ 6018,
+ 6052
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 16
},
"end": {
- "line": 161,
+ "line": 169,
"column": 50
}
}
},
"range": [
- 5768,
- 5803
+ 6018,
+ 6053
],
"loc": {
"start": {
- "line": 161,
+ "line": 169,
"column": 16
},
"end": {
- "line": 161,
+ "line": 169,
"column": 51
}
}
@@ -14541,16 +15285,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 5820,
- 5821
+ 6070,
+ 6071
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 16
},
"end": {
- "line": 162,
+ "line": 170,
"column": 17
}
}
@@ -14559,31 +15303,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 5822,
- 5834
+ 6072,
+ 6084
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 18
},
"end": {
- "line": 162,
+ "line": 170,
"column": 30
}
}
},
"range": [
- 5820,
- 5834
+ 6070,
+ 6084
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 16
},
"end": {
- "line": 162,
+ "line": 170,
"column": 30
}
}
@@ -14594,16 +15338,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 5835,
- 5839
+ 6085,
+ 6089
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 31
},
"end": {
- "line": 162,
+ "line": 170,
"column": 35
}
}
@@ -14612,79 +15356,79 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5841,
- 5845
+ 6091,
+ 6095
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 37
},
"end": {
- "line": 162,
+ "line": 170,
"column": 41
}
}
}
],
"range": [
- 5820,
- 5846
+ 6070,
+ 6096
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 16
},
"end": {
- "line": 162,
+ "line": 170,
"column": 42
}
}
},
"range": [
- 5820,
- 5847
+ 6070,
+ 6097
],
"loc": {
"start": {
- "line": 162,
+ "line": 170,
"column": 16
},
"end": {
- "line": 162,
+ "line": 170,
"column": 43
}
}
}
],
"range": [
- 5750,
- 5861
+ 6000,
+ 6111
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 34
},
"end": {
- "line": 163,
+ "line": 171,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5728,
- 5861
+ 5978,
+ 6111
],
"loc": {
"start": {
- "line": 160,
+ "line": 168,
"column": 12
},
"end": {
- "line": 163,
+ "line": 171,
"column": 13
}
}
@@ -14700,16 +15444,16 @@
"type": "Identifier",
"name": "sortTriggers",
"range": [
- 5874,
- 5886
+ 6124,
+ 6136
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 12
},
"end": {
- "line": 164,
+ "line": 172,
"column": 24
}
}
@@ -14718,31 +15462,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 5887,
- 5891
+ 6137,
+ 6141
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 25
},
"end": {
- "line": 164,
+ "line": 172,
"column": 29
}
}
},
"range": [
- 5874,
- 5891
+ 6124,
+ 6141
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 12
},
"end": {
- "line": 164,
+ "line": 172,
"column": 29
}
}
@@ -14752,78 +15496,78 @@
"type": "Identifier",
"name": "thId",
"range": [
- 5892,
- 5896
+ 6142,
+ 6146
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 30
},
"end": {
- "line": 164,
+ "line": 172,
"column": 34
}
}
}
],
"range": [
- 5874,
- 5897
+ 6124,
+ 6147
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 12
},
"end": {
- "line": 164,
+ "line": 172,
"column": 35
}
}
},
"range": [
- 5874,
- 5898
+ 6124,
+ 6148
],
"loc": {
"start": {
- "line": 164,
+ "line": 172,
"column": 12
},
"end": {
- "line": 164,
+ "line": 172,
"column": 36
}
}
}
],
"range": [
- 5634,
- 5908
+ 5884,
+ 6158
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 39
},
"end": {
- "line": 165,
+ "line": 173,
"column": 9
}
}
},
"range": [
- 5603,
- 5908
+ 5853,
+ 6158
],
"loc": {
"start": {
- "line": 157,
+ "line": 165,
"column": 8
},
"end": {
- "line": 165,
+ "line": 173,
"column": 9
}
},
@@ -14832,16 +15576,16 @@
"type": "Line",
"value": "Filters row is created",
"range": [
- 5918,
- 5942
+ 6168,
+ 6192
],
"loc": {
"start": {
- "line": 167,
+ "line": 175,
"column": 8
},
"end": {
- "line": 167,
+ "line": 175,
"column": 32
}
}
@@ -14857,16 +15601,16 @@
"type": "Identifier",
"name": "filtersRow",
"range": [
- 5955,
- 5965
+ 6205,
+ 6215
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 12
},
"end": {
- "line": 168,
+ "line": 176,
"column": 22
}
}
@@ -14880,16 +15624,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 5968,
- 5971
+ 6218,
+ 6221
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 25
},
"end": {
- "line": 168,
+ "line": 176,
"column": 28
}
}
@@ -14898,31 +15642,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 5972,
- 5978
+ 6222,
+ 6228
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 29
},
"end": {
- "line": 168,
+ "line": 176,
"column": 35
}
}
},
"range": [
- 5968,
- 5978
+ 6218,
+ 6228
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 25
},
"end": {
- "line": 168,
+ "line": 176,
"column": 35
}
}
@@ -14933,64 +15677,64 @@
"value": "tr",
"raw": "'tr'",
"range": [
- 5979,
- 5983
+ 6229,
+ 6233
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 36
},
"end": {
- "line": 168,
+ "line": 176,
"column": 40
}
}
}
],
"range": [
- 5968,
- 5984
+ 6218,
+ 6234
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 25
},
"end": {
- "line": 168,
+ "line": 176,
"column": 41
}
}
},
"range": [
- 5955,
- 5984
+ 6205,
+ 6234
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 12
},
"end": {
- "line": 168,
+ "line": 176,
"column": 41
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 5951,
- 5985
+ 6201,
+ 6235
],
"loc": {
"start": {
- "line": 168,
+ "line": 176,
"column": 8
},
"end": {
- "line": 168,
+ "line": 176,
"column": 42
}
},
@@ -14999,16 +15743,16 @@
"type": "Line",
"value": "Filters row is created",
"range": [
- 5918,
- 5942
+ 6168,
+ 6192
],
"loc": {
"start": {
- "line": 167,
+ "line": 175,
"column": 8
},
"end": {
- "line": 167,
+ "line": 175,
"column": 32
}
}
@@ -15026,16 +15770,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5997,
- 6001
+ 6247,
+ 6251
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 11
},
"end": {
- "line": 169,
+ "line": 177,
"column": 15
}
}
@@ -15044,31 +15788,31 @@
"type": "Identifier",
"name": "gridEnableFilters",
"range": [
- 6002,
- 6019
+ 6252,
+ 6269
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 16
},
"end": {
- "line": 169,
+ "line": 177,
"column": 33
}
}
},
"range": [
- 5997,
- 6019
+ 6247,
+ 6269
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 11
},
"end": {
- "line": 169,
+ "line": 177,
"column": 33
}
}
@@ -15080,16 +15824,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6023,
- 6025
+ 6273,
+ 6275
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 37
},
"end": {
- "line": 169,
+ "line": 177,
"column": 39
}
}
@@ -15098,46 +15842,46 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 6026,
- 6033
+ 6276,
+ 6283
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 40
},
"end": {
- "line": 169,
+ "line": 177,
"column": 47
}
}
},
"range": [
- 6023,
- 6033
+ 6273,
+ 6283
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 37
},
"end": {
- "line": 169,
+ "line": 177,
"column": 47
}
}
},
"range": [
- 5997,
- 6033
+ 6247,
+ 6283
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 11
},
"end": {
- "line": 169,
+ "line": 177,
"column": 47
}
}
@@ -15157,16 +15901,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6048,
- 6050
+ 6298,
+ 6300
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 12
},
"end": {
- "line": 170,
+ "line": 178,
"column": 14
}
}
@@ -15175,31 +15919,31 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 6051,
- 6068
+ 6301,
+ 6318
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 15
},
"end": {
- "line": 170,
+ "line": 178,
"column": 32
}
}
},
"range": [
- 6048,
- 6068
+ 6298,
+ 6318
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 12
},
"end": {
- "line": 170,
+ "line": 178,
"column": 32
}
}
@@ -15208,46 +15952,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 6071,
- 6073
+ 6321,
+ 6323
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 35
},
"end": {
- "line": 170,
+ "line": 178,
"column": 37
}
}
},
"range": [
- 6048,
- 6073
+ 6298,
+ 6323
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 12
},
"end": {
- "line": 170,
+ "line": 178,
"column": 37
}
}
},
"range": [
- 6048,
- 6074
+ 6298,
+ 6324
],
"loc": {
"start": {
- "line": 170,
+ "line": 178,
"column": 12
},
"end": {
- "line": 170,
+ "line": 178,
"column": 38
}
}
@@ -15263,16 +16007,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 6095,
- 6096
+ 6345,
+ 6346
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 20
},
"end": {
- "line": 171,
+ "line": 179,
"column": 21
}
}
@@ -15282,48 +16026,48 @@
"value": 0,
"raw": "0",
"range": [
- 6097,
- 6098
+ 6347,
+ 6348
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 22
},
"end": {
- "line": 171,
+ "line": 179,
"column": 23
}
}
},
"range": [
- 6095,
- 6098
+ 6345,
+ 6348
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 20
},
"end": {
- "line": 171,
+ "line": 179,
"column": 23
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 6091,
- 6098
+ 6341,
+ 6348
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 16
},
"end": {
- "line": 171,
+ "line": 179,
"column": 23
}
}
@@ -15335,16 +16079,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 6100,
- 6101
+ 6350,
+ 6351
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 25
},
"end": {
- "line": 171,
+ "line": 179,
"column": 26
}
}
@@ -15356,16 +16100,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6102,
- 6104
+ 6352,
+ 6354
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 27
},
"end": {
- "line": 171,
+ "line": 179,
"column": 29
}
}
@@ -15374,46 +16118,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 6105,
- 6112
+ 6355,
+ 6362
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 30
},
"end": {
- "line": 171,
+ "line": 179,
"column": 37
}
}
},
"range": [
- 6102,
- 6112
+ 6352,
+ 6362
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 27
},
"end": {
- "line": 171,
+ "line": 179,
"column": 37
}
}
},
"range": [
- 6100,
- 6112
+ 6350,
+ 6362
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 25
},
"end": {
- "line": 171,
+ "line": 179,
"column": 37
}
}
@@ -15425,32 +16169,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 6114,
- 6115
+ 6364,
+ 6365
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 39
},
"end": {
- "line": 171,
+ "line": 179,
"column": 40
}
}
},
"prefix": false,
"range": [
- 6114,
- 6117
+ 6364,
+ 6367
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 39
},
"end": {
- "line": 171,
+ "line": 179,
"column": 42
}
}
@@ -15467,16 +16211,16 @@
"type": "Identifier",
"name": "fltTdId",
"range": [
- 6140,
- 6147
+ 6390,
+ 6397
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 20
},
"end": {
- "line": 172,
+ "line": 180,
"column": 27
}
}
@@ -15497,16 +16241,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6150,
- 6152
+ 6400,
+ 6402
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 30
},
"end": {
- "line": 172,
+ "line": 180,
"column": 32
}
}
@@ -15515,31 +16259,31 @@
"type": "Identifier",
"name": "prfxFlt",
"range": [
- 6153,
- 6160
+ 6403,
+ 6410
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 33
},
"end": {
- "line": 172,
+ "line": 180,
"column": 40
}
}
},
"range": [
- 6150,
- 6160
+ 6400,
+ 6410
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 30
},
"end": {
- "line": 172,
+ "line": 180,
"column": 40
}
}
@@ -15548,31 +16292,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 6161,
- 6162
+ 6411,
+ 6412
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 41
},
"end": {
- "line": 172,
+ "line": 180,
"column": 42
}
}
},
"range": [
- 6150,
- 6162
+ 6400,
+ 6412
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 30
},
"end": {
- "line": 172,
+ "line": 180,
"column": 42
}
}
@@ -15583,16 +16327,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6164,
- 6168
+ 6414,
+ 6418
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 44
},
"end": {
- "line": 172,
+ "line": 180,
"column": 48
}
}
@@ -15601,46 +16345,46 @@
"type": "Identifier",
"name": "prfxGridFltTd",
"range": [
- 6169,
- 6182
+ 6419,
+ 6432
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 49
},
"end": {
- "line": 172,
+ "line": 180,
"column": 62
}
}
},
"range": [
- 6164,
- 6182
+ 6414,
+ 6432
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 44
},
"end": {
- "line": 172,
+ "line": 180,
"column": 62
}
}
},
"range": [
- 6150,
- 6182
+ 6400,
+ 6432
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 30
},
"end": {
- "line": 172,
+ "line": 180,
"column": 62
}
}
@@ -15652,16 +16396,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6184,
- 6186
+ 6434,
+ 6436
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 64
},
"end": {
- "line": 172,
+ "line": 180,
"column": 66
}
}
@@ -15670,78 +16414,78 @@
"type": "Identifier",
"name": "id",
"range": [
- 6187,
- 6189
+ 6437,
+ 6439
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 67
},
"end": {
- "line": 172,
+ "line": 180,
"column": 69
}
}
},
"range": [
- 6184,
- 6189
+ 6434,
+ 6439
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 64
},
"end": {
- "line": 172,
+ "line": 180,
"column": 69
}
}
},
"range": [
- 6150,
- 6189
+ 6400,
+ 6439
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 30
},
"end": {
- "line": 172,
+ "line": 180,
"column": 69
}
}
},
"range": [
- 6140,
- 6189
+ 6390,
+ 6439
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 20
},
"end": {
- "line": 172,
+ "line": 180,
"column": 69
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 6136,
- 6190
+ 6386,
+ 6440
],
"loc": {
"start": {
- "line": 172,
+ "line": 180,
"column": 16
},
"end": {
- "line": 172,
+ "line": 180,
"column": 70
}
}
@@ -15755,16 +16499,16 @@
"type": "Identifier",
"name": "cl",
"range": [
- 6211,
- 6213
+ 6461,
+ 6463
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 20
},
"end": {
- "line": 173,
+ "line": 181,
"column": 22
}
}
@@ -15778,16 +16522,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 6216,
- 6219
+ 6466,
+ 6469
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 25
},
"end": {
- "line": 173,
+ "line": 181,
"column": 28
}
}
@@ -15796,31 +16540,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 6220,
- 6226
+ 6470,
+ 6476
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 29
},
"end": {
- "line": 173,
+ "line": 181,
"column": 35
}
}
},
"range": [
- 6216,
- 6226
+ 6466,
+ 6476
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 25
},
"end": {
- "line": 173,
+ "line": 181,
"column": 35
}
}
@@ -15833,16 +16577,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6227,
- 6229
+ 6477,
+ 6479
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 36
},
"end": {
- "line": 173,
+ "line": 181,
"column": 38
}
}
@@ -15851,31 +16595,31 @@
"type": "Identifier",
"name": "fltCellTag",
"range": [
- 6230,
- 6240
+ 6480,
+ 6490
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 39
},
"end": {
- "line": 173,
+ "line": 181,
"column": 49
}
}
},
"range": [
- 6227,
- 6240
+ 6477,
+ 6490
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 36
},
"end": {
- "line": 173,
+ "line": 181,
"column": 49
}
}
@@ -15888,16 +16632,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 6243,
- 6247
+ 6493,
+ 6497
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 52
},
"end": {
- "line": 173,
+ "line": 181,
"column": 56
}
}
@@ -15906,80 +16650,80 @@
"type": "Identifier",
"name": "fltTdId",
"range": [
- 6249,
- 6256
+ 6499,
+ 6506
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 58
},
"end": {
- "line": 173,
+ "line": 181,
"column": 65
}
}
}
],
"range": [
- 6242,
- 6257
+ 6492,
+ 6507
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 51
},
"end": {
- "line": 173,
+ "line": 181,
"column": 66
}
}
}
],
"range": [
- 6216,
- 6258
+ 6466,
+ 6508
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 25
},
"end": {
- "line": 173,
+ "line": 181,
"column": 67
}
}
},
"range": [
- 6211,
- 6258
+ 6461,
+ 6508
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 20
},
"end": {
- "line": 173,
+ "line": 181,
"column": 67
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 6207,
- 6259
+ 6457,
+ 6509
],
"loc": {
"start": {
- "line": 173,
+ "line": 181,
"column": 16
},
"end": {
- "line": 173,
+ "line": 181,
"column": 68
}
}
@@ -15995,16 +16739,16 @@
"type": "Identifier",
"name": "filtersRow",
"range": [
- 6276,
- 6286
+ 6526,
+ 6536
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 16
},
"end": {
- "line": 174,
+ "line": 182,
"column": 26
}
}
@@ -16013,31 +16757,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 6287,
- 6298
+ 6537,
+ 6548
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 27
},
"end": {
- "line": 174,
+ "line": 182,
"column": 38
}
}
},
"range": [
- 6276,
- 6298
+ 6526,
+ 6548
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 16
},
"end": {
- "line": 174,
+ "line": 182,
"column": 38
}
}
@@ -16047,47 +16791,47 @@
"type": "Identifier",
"name": "cl",
"range": [
- 6299,
- 6301
+ 6549,
+ 6551
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 39
},
"end": {
- "line": 174,
+ "line": 182,
"column": 41
}
}
}
],
"range": [
- 6276,
- 6302
+ 6526,
+ 6552
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 16
},
"end": {
- "line": 174,
+ "line": 182,
"column": 42
}
}
},
"range": [
- 6276,
- 6303
+ 6526,
+ 6553
],
"loc": {
"start": {
- "line": 174,
+ "line": 182,
"column": 16
},
"end": {
- "line": 174,
+ "line": 182,
"column": 43
}
}
@@ -16107,16 +16851,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6320,
- 6322
+ 6570,
+ 6572
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 16
},
"end": {
- "line": 175,
+ "line": 183,
"column": 18
}
}
@@ -16125,31 +16869,31 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 6323,
- 6340
+ 6573,
+ 6590
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 19
},
"end": {
- "line": 175,
+ "line": 183,
"column": 36
}
}
},
"range": [
- 6320,
- 6340
+ 6570,
+ 6590
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 16
},
"end": {
- "line": 175,
+ "line": 183,
"column": 36
}
}
@@ -16158,31 +16902,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 6341,
- 6342
+ 6591,
+ 6592
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 37
},
"end": {
- "line": 175,
+ "line": 183,
"column": 38
}
}
},
"range": [
- 6320,
- 6343
+ 6570,
+ 6593
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 16
},
"end": {
- "line": 175,
+ "line": 183,
"column": 39
}
}
@@ -16191,109 +16935,109 @@
"type": "Identifier",
"name": "fltTdId",
"range": [
- 6346,
- 6353
+ 6596,
+ 6603
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 42
},
"end": {
- "line": 175,
+ "line": 183,
"column": 49
}
}
},
"range": [
- 6320,
- 6353
+ 6570,
+ 6603
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 16
},
"end": {
- "line": 175,
+ "line": 183,
"column": 49
}
}
},
"range": [
- 6320,
- 6354
+ 6570,
+ 6604
],
"loc": {
"start": {
- "line": 175,
+ "line": 183,
"column": 16
},
"end": {
- "line": 175,
+ "line": 183,
"column": 50
}
}
}
],
"range": [
- 6118,
- 6368
+ 6368,
+ 6618
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 43
},
"end": {
- "line": 176,
+ "line": 184,
"column": 13
}
}
},
"range": [
- 6087,
- 6368
+ 6337,
+ 6618
],
"loc": {
"start": {
- "line": 171,
+ "line": 179,
"column": 12
},
"end": {
- "line": 176,
+ "line": 184,
"column": 13
}
}
}
],
"range": [
- 6034,
- 6378
+ 6284,
+ 6628
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 48
},
"end": {
- "line": 177,
+ "line": 185,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5994,
- 6378
+ 6244,
+ 6628
],
"loc": {
"start": {
- "line": 169,
+ "line": 177,
"column": 8
},
"end": {
- "line": 177,
+ "line": 185,
"column": 9
}
},
@@ -16302,16 +17046,16 @@
"type": "Line",
"value": "Headers row are moved from content table to headers table",
"range": [
- 6387,
- 6446
+ 6637,
+ 6696
],
"loc": {
"start": {
- "line": 178,
+ "line": 186,
"column": 8
},
"end": {
- "line": 178,
+ "line": 186,
"column": 67
}
}
@@ -16329,16 +17073,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6463,
- 6464
+ 6713,
+ 6714
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 16
},
"end": {
- "line": 179,
+ "line": 187,
"column": 17
}
}
@@ -16348,48 +17092,48 @@
"value": 0,
"raw": "0",
"range": [
- 6465,
- 6466
+ 6715,
+ 6716
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 18
},
"end": {
- "line": 179,
+ "line": 187,
"column": 19
}
}
},
"range": [
- 6463,
- 6466
+ 6713,
+ 6716
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 16
},
"end": {
- "line": 179,
+ "line": 187,
"column": 19
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 6459,
- 6466
+ 6709,
+ 6716
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 12
},
"end": {
- "line": 179,
+ "line": 187,
"column": 19
}
}
@@ -16401,16 +17145,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6468,
- 6469
+ 6718,
+ 6719
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 21
},
"end": {
- "line": 179,
+ "line": 187,
"column": 22
}
}
@@ -16424,16 +17168,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6470,
- 6474
+ 6720,
+ 6724
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 23
},
"end": {
- "line": 179,
+ "line": 187,
"column": 27
}
}
@@ -16442,31 +17186,31 @@
"type": "Identifier",
"name": "gridHeadRows",
"range": [
- 6475,
- 6487
+ 6725,
+ 6737
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 28
},
"end": {
- "line": 179,
+ "line": 187,
"column": 40
}
}
},
"range": [
- 6470,
- 6487
+ 6720,
+ 6737
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 23
},
"end": {
- "line": 179,
+ "line": 187,
"column": 40
}
}
@@ -16475,46 +17219,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 6488,
- 6494
+ 6738,
+ 6744
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 41
},
"end": {
- "line": 179,
+ "line": 187,
"column": 47
}
}
},
"range": [
- 6470,
- 6494
+ 6720,
+ 6744
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 23
},
"end": {
- "line": 179,
+ "line": 187,
"column": 47
}
}
},
"range": [
- 6468,
- 6494
+ 6718,
+ 6744
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 21
},
"end": {
- "line": 179,
+ "line": 187,
"column": 47
}
}
@@ -16526,32 +17270,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6496,
- 6497
+ 6746,
+ 6747
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 49
},
"end": {
- "line": 179,
+ "line": 187,
"column": 50
}
}
},
"prefix": false,
"range": [
- 6496,
- 6499
+ 6746,
+ 6749
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 49
},
"end": {
- "line": 179,
+ "line": 187,
"column": 52
}
}
@@ -16568,16 +17312,16 @@
"type": "Identifier",
"name": "headRow",
"range": [
- 6518,
- 6525
+ 6768,
+ 6775
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 16
},
"end": {
- "line": 180,
+ "line": 188,
"column": 23
}
}
@@ -16592,16 +17336,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 6528,
- 6531
+ 6778,
+ 6781
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 26
},
"end": {
- "line": 180,
+ "line": 188,
"column": 29
}
}
@@ -16610,31 +17354,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 6532,
- 6536
+ 6782,
+ 6786
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 30
},
"end": {
- "line": 180,
+ "line": 188,
"column": 34
}
}
},
"range": [
- 6528,
- 6536
+ 6778,
+ 6786
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 26
},
"end": {
- "line": 180,
+ "line": 188,
"column": 34
}
}
@@ -16648,16 +17392,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6537,
- 6541
+ 6787,
+ 6791
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 35
},
"end": {
- "line": 180,
+ "line": 188,
"column": 39
}
}
@@ -16666,31 +17410,31 @@
"type": "Identifier",
"name": "gridHeadRows",
"range": [
- 6542,
- 6554
+ 6792,
+ 6804
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 40
},
"end": {
- "line": 180,
+ "line": 188,
"column": 52
}
}
},
"range": [
- 6537,
- 6554
+ 6787,
+ 6804
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 35
},
"end": {
- "line": 180,
+ "line": 188,
"column": 52
}
}
@@ -16700,78 +17444,78 @@
"value": 0,
"raw": "0",
"range": [
- 6555,
- 6556
+ 6805,
+ 6806
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 53
},
"end": {
- "line": 180,
+ "line": 188,
"column": 54
}
}
},
"range": [
- 6537,
- 6557
+ 6787,
+ 6807
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 35
},
"end": {
- "line": 180,
+ "line": 188,
"column": 55
}
}
},
"range": [
- 6528,
- 6558
+ 6778,
+ 6808
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 26
},
"end": {
- "line": 180,
+ "line": 188,
"column": 56
}
}
},
"range": [
- 6518,
- 6558
+ 6768,
+ 6808
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 16
},
"end": {
- "line": 180,
+ "line": 188,
"column": 56
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 6514,
- 6559
+ 6764,
+ 6809
],
"loc": {
"start": {
- "line": 180,
+ "line": 188,
"column": 12
},
"end": {
- "line": 180,
+ "line": 188,
"column": 57
}
}
@@ -16787,16 +17531,16 @@
"type": "Identifier",
"name": "tH",
"range": [
- 6572,
- 6574
+ 6822,
+ 6824
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 12
},
"end": {
- "line": 181,
+ "line": 189,
"column": 14
}
}
@@ -16805,31 +17549,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 6575,
- 6586
+ 6825,
+ 6836
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 15
},
"end": {
- "line": 181,
+ "line": 189,
"column": 26
}
}
},
"range": [
- 6572,
- 6586
+ 6822,
+ 6836
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 12
},
"end": {
- "line": 181,
+ "line": 189,
"column": 26
}
}
@@ -16839,78 +17583,78 @@
"type": "Identifier",
"name": "headRow",
"range": [
- 6587,
- 6594
+ 6837,
+ 6844
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 27
},
"end": {
- "line": 181,
+ "line": 189,
"column": 34
}
}
}
],
"range": [
- 6572,
- 6595
+ 6822,
+ 6845
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 12
},
"end": {
- "line": 181,
+ "line": 189,
"column": 35
}
}
},
"range": [
- 6572,
- 6596
+ 6822,
+ 6846
],
"loc": {
"start": {
- "line": 181,
+ "line": 189,
"column": 12
},
"end": {
- "line": 181,
+ "line": 189,
"column": 36
}
}
}
],
"range": [
- 6500,
- 6606
+ 6750,
+ 6856
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 53
},
"end": {
- "line": 182,
+ "line": 190,
"column": 9
}
}
},
"range": [
- 6455,
- 6606
+ 6705,
+ 6856
],
"loc": {
"start": {
- "line": 179,
+ "line": 187,
"column": 8
},
"end": {
- "line": 182,
+ "line": 190,
"column": 9
}
},
@@ -16919,16 +17663,16 @@
"type": "Line",
"value": "Headers row are moved from content table to headers table",
"range": [
- 6387,
- 6446
+ 6637,
+ 6696
],
"loc": {
"start": {
- "line": 178,
+ "line": 186,
"column": 8
},
"end": {
- "line": 178,
+ "line": 186,
"column": 67
}
}
@@ -16948,16 +17692,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6615,
- 6619
+ 6865,
+ 6869
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 8
},
"end": {
- "line": 183,
+ "line": 191,
"column": 12
}
}
@@ -16966,31 +17710,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 6620,
- 6627
+ 6870,
+ 6877
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 13
},
"end": {
- "line": 183,
+ "line": 191,
"column": 20
}
}
},
"range": [
- 6615,
- 6627
+ 6865,
+ 6877
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 8
},
"end": {
- "line": 183,
+ "line": 191,
"column": 20
}
}
@@ -16999,31 +17743,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 6628,
- 6639
+ 6878,
+ 6889
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 21
},
"end": {
- "line": 183,
+ "line": 191,
"column": 32
}
}
},
"range": [
- 6615,
- 6639
+ 6865,
+ 6889
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 8
},
"end": {
- "line": 183,
+ "line": 191,
"column": 32
}
}
@@ -17033,47 +17777,47 @@
"type": "Identifier",
"name": "tH",
"range": [
- 6640,
- 6642
+ 6890,
+ 6892
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 33
},
"end": {
- "line": 183,
+ "line": 191,
"column": 35
}
}
}
],
"range": [
- 6615,
- 6643
+ 6865,
+ 6893
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 8
},
"end": {
- "line": 183,
+ "line": 191,
"column": 36
}
}
},
"range": [
- 6615,
- 6644
+ 6865,
+ 6894
],
"loc": {
"start": {
- "line": 183,
+ "line": 191,
"column": 8
},
"end": {
- "line": 183,
+ "line": 191,
"column": 37
}
}
@@ -17090,16 +17834,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6656,
- 6658
+ 6906,
+ 6908
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 11
},
"end": {
- "line": 184,
+ "line": 192,
"column": 13
}
}
@@ -17108,31 +17852,31 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 6659,
- 6674
+ 6909,
+ 6924
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 14
},
"end": {
- "line": 184,
+ "line": 192,
"column": 29
}
}
},
"range": [
- 6656,
- 6674
+ 6906,
+ 6924
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 11
},
"end": {
- "line": 184,
+ "line": 192,
"column": 29
}
}
@@ -17142,31 +17886,31 @@
"value": 0,
"raw": "0",
"range": [
- 6679,
- 6680
+ 6929,
+ 6930
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 34
},
"end": {
- "line": 184,
+ "line": 192,
"column": 35
}
}
},
"range": [
- 6656,
- 6680
+ 6906,
+ 6930
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 11
},
"end": {
- "line": 184,
+ "line": 192,
"column": 35
}
}
@@ -17185,16 +17929,16 @@
"type": "Identifier",
"name": "tH",
"range": [
- 6695,
- 6697
+ 6945,
+ 6947
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 12
},
"end": {
- "line": 185,
+ "line": 193,
"column": 14
}
}
@@ -17203,31 +17947,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 6698,
- 6710
+ 6948,
+ 6960
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 15
},
"end": {
- "line": 185,
+ "line": 193,
"column": 27
}
}
},
"range": [
- 6695,
- 6710
+ 6945,
+ 6960
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 12
},
"end": {
- "line": 185,
+ "line": 193,
"column": 27
}
}
@@ -17237,16 +17981,16 @@
"type": "Identifier",
"name": "filtersRow",
"range": [
- 6711,
- 6721
+ 6961,
+ 6971
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 28
},
"end": {
- "line": 185,
+ "line": 193,
"column": 38
}
}
@@ -17255,63 +17999,63 @@
"type": "Identifier",
"name": "hRow",
"range": [
- 6722,
- 6726
+ 6973,
+ 6977
],
"loc": {
"start": {
- "line": 185,
- "column": 39
+ "line": 193,
+ "column": 40
},
"end": {
- "line": 185,
- "column": 43
+ "line": 193,
+ "column": 44
}
}
}
],
"range": [
- 6695,
- 6727
+ 6945,
+ 6978
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 12
},
"end": {
- "line": 185,
- "column": 44
+ "line": 193,
+ "column": 45
}
}
},
"range": [
- 6695,
- 6728
+ 6945,
+ 6979
],
"loc": {
"start": {
- "line": 185,
+ "line": 193,
"column": 12
},
"end": {
- "line": 185,
- "column": 45
+ "line": 193,
+ "column": 46
}
}
}
],
"range": [
- 6681,
- 6738
+ 6931,
+ 6989
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 36
},
"end": {
- "line": 186,
+ "line": 194,
"column": 9
}
}
@@ -17330,16 +18074,16 @@
"type": "Identifier",
"name": "tH",
"range": [
- 6758,
- 6760
+ 7009,
+ 7011
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 12
},
"end": {
- "line": 187,
+ "line": 195,
"column": 14
}
}
@@ -17348,31 +18092,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 6761,
- 6772
+ 7012,
+ 7023
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 15
},
"end": {
- "line": 187,
+ "line": 195,
"column": 26
}
}
},
"range": [
- 6758,
- 6772
+ 7009,
+ 7023
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 12
},
"end": {
- "line": 187,
+ "line": 195,
"column": 26
}
}
@@ -17382,78 +18126,78 @@
"type": "Identifier",
"name": "filtersRow",
"range": [
- 6773,
- 6783
+ 7024,
+ 7034
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 27
},
"end": {
- "line": 187,
+ "line": 195,
"column": 37
}
}
}
],
"range": [
- 6758,
- 6784
+ 7009,
+ 7035
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 12
},
"end": {
- "line": 187,
+ "line": 195,
"column": 38
}
}
},
"range": [
- 6758,
- 6785
+ 7009,
+ 7036
],
"loc": {
"start": {
- "line": 187,
+ "line": 195,
"column": 12
},
"end": {
- "line": 187,
+ "line": 195,
"column": 39
}
}
}
],
"range": [
- 6744,
- 6795
+ 6995,
+ 7046
],
"loc": {
"start": {
- "line": 186,
+ "line": 194,
"column": 15
},
"end": {
- "line": 188,
+ "line": 196,
"column": 9
}
}
},
"range": [
- 6653,
- 6795
+ 6903,
+ 7046
],
"loc": {
"start": {
- "line": 184,
+ "line": 192,
"column": 8
},
"end": {
- "line": 188,
+ "line": 196,
"column": 9
}
}
@@ -17471,16 +18215,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6805,
- 6809
+ 7056,
+ 7060
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 8
},
"end": {
- "line": 190,
+ "line": 198,
"column": 12
}
}
@@ -17489,31 +18233,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 6810,
- 6821
+ 7061,
+ 7072
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 13
},
"end": {
- "line": 190,
+ "line": 198,
"column": 24
}
}
},
"range": [
- 6805,
- 6821
+ 7056,
+ 7072
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 8
},
"end": {
- "line": 190,
+ "line": 198,
"column": 24
}
}
@@ -17522,31 +18266,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 6822,
- 6833
+ 7073,
+ 7084
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 25
},
"end": {
- "line": 190,
+ "line": 198,
"column": 36
}
}
},
"range": [
- 6805,
- 6833
+ 7056,
+ 7084
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 8
},
"end": {
- "line": 190,
+ "line": 198,
"column": 36
}
}
@@ -17558,16 +18302,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6834,
- 6838
+ 7085,
+ 7089
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 37
},
"end": {
- "line": 190,
+ "line": 198,
"column": 41
}
}
@@ -17576,62 +18320,62 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 6839,
- 6846
+ 7090,
+ 7097
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 42
},
"end": {
- "line": 190,
+ "line": 198,
"column": 49
}
}
},
"range": [
- 6834,
- 6846
+ 7085,
+ 7097
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 37
},
"end": {
- "line": 190,
+ "line": 198,
"column": 49
}
}
}
],
"range": [
- 6805,
- 6847
+ 7056,
+ 7098
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 8
},
"end": {
- "line": 190,
+ "line": 198,
"column": 50
}
}
},
"range": [
- 6805,
- 6848
+ 7056,
+ 7099
],
"loc": {
"start": {
- "line": 190,
+ "line": 198,
"column": 8
},
"end": {
- "line": 190,
+ "line": 198,
"column": 51
}
}
@@ -17652,16 +18396,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6857,
- 6861
+ 7108,
+ 7112
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 12
}
}
@@ -17670,31 +18414,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 6862,
- 6869
+ 7113,
+ 7120
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 13
},
"end": {
- "line": 191,
+ "line": 199,
"column": 20
}
}
},
"range": [
- 6857,
- 6869
+ 7108,
+ 7120
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 20
}
}
@@ -17703,31 +18447,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 6870,
- 6880
+ 7121,
+ 7131
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 21
},
"end": {
- "line": 191,
+ "line": 199,
"column": 31
}
}
},
"range": [
- 6857,
- 6880
+ 7108,
+ 7131
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 31
}
}
@@ -17736,31 +18480,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 6881,
- 6893
+ 7132,
+ 7144
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 32
},
"end": {
- "line": 191,
+ "line": 199,
"column": 44
}
}
},
"range": [
- 6857,
- 6893
+ 7108,
+ 7144
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 44
}
}
@@ -17772,16 +18516,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6894,
- 6898
+ 7145,
+ 7149
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 45
},
"end": {
- "line": 191,
+ "line": 199,
"column": 49
}
}
@@ -17790,31 +18534,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 6899,
- 6910
+ 7150,
+ 7161
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 50
},
"end": {
- "line": 191,
+ "line": 199,
"column": 61
}
}
},
"range": [
- 6894,
- 6910
+ 7145,
+ 7161
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 45
},
"end": {
- "line": 191,
+ "line": 199,
"column": 61
}
}
@@ -17825,16 +18569,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6912,
- 6916
+ 7163,
+ 7167
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 63
},
"end": {
- "line": 191,
+ "line": 199,
"column": 67
}
}
@@ -17843,62 +18587,62 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 6917,
- 6924
+ 7168,
+ 7175
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 68
},
"end": {
- "line": 191,
+ "line": 199,
"column": 75
}
}
},
"range": [
- 6912,
- 6924
+ 7163,
+ 7175
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 63
},
"end": {
- "line": 191,
+ "line": 199,
"column": 75
}
}
}
],
"range": [
- 6857,
- 6925
+ 7108,
+ 7176
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 76
}
}
},
"range": [
- 6857,
- 6926
+ 7108,
+ 7177
],
"loc": {
"start": {
- "line": 191,
+ "line": 199,
"column": 8
},
"end": {
- "line": 191,
+ "line": 199,
"column": 77
}
},
@@ -17907,16 +18651,16 @@
"type": "Line",
"value": "THead needs to be removed in content table for sort feature",
"range": [
- 6936,
- 6997
+ 7187,
+ 7248
],
"loc": {
"start": {
- "line": 193,
+ "line": 201,
"column": 8
},
"end": {
- "line": 193,
+ "line": 201,
"column": 69
}
}
@@ -17932,16 +18676,16 @@
"type": "Identifier",
"name": "thead",
"range": [
- 7010,
- 7015
+ 7261,
+ 7266
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 12
},
"end": {
- "line": 194,
+ "line": 202,
"column": 17
}
}
@@ -17955,16 +18699,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7018,
- 7021
+ 7269,
+ 7272
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 20
},
"end": {
- "line": 194,
+ "line": 202,
"column": 23
}
}
@@ -17973,31 +18717,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 7022,
- 7025
+ 7273,
+ 7276
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 24
},
"end": {
- "line": 194,
+ "line": 202,
"column": 27
}
}
},
"range": [
- 7018,
- 7025
+ 7269,
+ 7276
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 20
},
"end": {
- "line": 194,
+ "line": 202,
"column": 27
}
}
@@ -18007,16 +18751,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7026,
- 7029
+ 7277,
+ 7280
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 28
},
"end": {
- "line": 194,
+ "line": 202,
"column": 31
}
}
@@ -18026,64 +18770,64 @@
"value": "thead",
"raw": "'thead'",
"range": [
- 7031,
- 7038
+ 7282,
+ 7289
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 33
},
"end": {
- "line": 194,
+ "line": 202,
"column": 40
}
}
}
],
"range": [
- 7018,
- 7039
+ 7269,
+ 7290
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 20
},
"end": {
- "line": 194,
+ "line": 202,
"column": 41
}
}
},
"range": [
- 7010,
- 7039
+ 7261,
+ 7290
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 12
},
"end": {
- "line": 194,
+ "line": 202,
"column": 41
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 7006,
- 7040
+ 7257,
+ 7291
],
"loc": {
"start": {
- "line": 194,
+ "line": 202,
"column": 8
},
"end": {
- "line": 194,
+ "line": 202,
"column": 42
}
},
@@ -18092,16 +18836,16 @@
"type": "Line",
"value": "THead needs to be removed in content table for sort feature",
"range": [
- 6936,
- 6997
+ 7187,
+ 7248
],
"loc": {
"start": {
- "line": 193,
+ "line": 201,
"column": 8
},
"end": {
- "line": 193,
+ "line": 201,
"column": 69
}
}
@@ -18120,16 +18864,16 @@
"type": "Identifier",
"name": "thead",
"range": [
- 7052,
- 7057
+ 7303,
+ 7308
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 11
},
"end": {
- "line": 195,
+ "line": 203,
"column": 16
}
}
@@ -18138,31 +18882,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 7058,
- 7064
+ 7309,
+ 7315
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 17
},
"end": {
- "line": 195,
+ "line": 203,
"column": 23
}
}
},
"range": [
- 7052,
- 7064
+ 7303,
+ 7315
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 11
},
"end": {
- "line": 195,
+ "line": 203,
"column": 23
}
}
@@ -18172,31 +18916,31 @@
"value": 0,
"raw": "0",
"range": [
- 7065,
- 7066
+ 7316,
+ 7317
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 24
},
"end": {
- "line": 195,
+ "line": 203,
"column": 25
}
}
},
"range": [
- 7052,
- 7066
+ 7303,
+ 7317
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 11
},
"end": {
- "line": 195,
+ "line": 203,
"column": 25
}
}
@@ -18215,16 +18959,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7081,
- 7084
+ 7332,
+ 7335
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 12
},
"end": {
- "line": 196,
+ "line": 204,
"column": 15
}
}
@@ -18233,31 +18977,31 @@
"type": "Identifier",
"name": "removeChild",
"range": [
- 7085,
- 7096
+ 7336,
+ 7347
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 16
},
"end": {
- "line": 196,
+ "line": 204,
"column": 27
}
}
},
"range": [
- 7081,
- 7096
+ 7332,
+ 7347
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 12
},
"end": {
- "line": 196,
+ "line": 204,
"column": 27
}
}
@@ -18270,16 +19014,16 @@
"type": "Identifier",
"name": "thead",
"range": [
- 7097,
- 7102
+ 7348,
+ 7353
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 28
},
"end": {
- "line": 196,
+ "line": 204,
"column": 33
}
}
@@ -18289,94 +19033,94 @@
"value": 0,
"raw": "0",
"range": [
- 7103,
- 7104
+ 7354,
+ 7355
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 34
},
"end": {
- "line": 196,
+ "line": 204,
"column": 35
}
}
},
"range": [
- 7097,
- 7105
+ 7348,
+ 7356
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 28
},
"end": {
- "line": 196,
+ "line": 204,
"column": 36
}
}
}
],
"range": [
- 7081,
- 7106
+ 7332,
+ 7357
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 12
},
"end": {
- "line": 196,
+ "line": 204,
"column": 37
}
}
},
"range": [
- 7081,
- 7107
+ 7332,
+ 7358
],
"loc": {
"start": {
- "line": 196,
+ "line": 204,
"column": 12
},
"end": {
- "line": 196,
+ "line": 204,
"column": 38
}
}
}
],
"range": [
- 7067,
- 7117
+ 7318,
+ 7368
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 26
},
"end": {
- "line": 197,
+ "line": 205,
"column": 9
}
}
},
"alternate": null,
"range": [
- 7049,
- 7117
+ 7300,
+ 7368
],
"loc": {
"start": {
- "line": 195,
+ "line": 203,
"column": 8
},
"end": {
- "line": 197,
+ "line": 205,
"column": 9
}
},
@@ -18385,16 +19129,16 @@
"type": "Line",
"value": "Headers table style",
"range": [
- 7127,
- 7148
+ 7378,
+ 7399
],
"loc": {
"start": {
- "line": 199,
+ "line": 207,
"column": 8
},
"end": {
- "line": 199,
+ "line": 207,
"column": 29
}
}
@@ -18418,16 +19162,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7157,
- 7161
+ 7408,
+ 7412
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 12
}
}
@@ -18436,31 +19180,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 7162,
- 7169
+ 7413,
+ 7420
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 13
},
"end": {
- "line": 200,
+ "line": 208,
"column": 20
}
}
},
"range": [
- 7157,
- 7169
+ 7408,
+ 7420
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 20
}
}
@@ -18469,31 +19213,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 7170,
- 7175
+ 7421,
+ 7426
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 21
},
"end": {
- "line": 200,
+ "line": 208,
"column": 26
}
}
},
"range": [
- 7157,
- 7175
+ 7408,
+ 7426
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 26
}
}
@@ -18502,31 +19246,31 @@
"type": "Identifier",
"name": "tableLayout",
"range": [
- 7176,
- 7187
+ 7427,
+ 7438
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 27
},
"end": {
- "line": 200,
+ "line": 208,
"column": 38
}
}
},
"range": [
- 7157,
- 7187
+ 7408,
+ 7438
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 38
}
}
@@ -18536,46 +19280,46 @@
"value": "fixed",
"raw": "'fixed'",
"range": [
- 7190,
- 7197
+ 7441,
+ 7448
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 41
},
"end": {
- "line": 200,
+ "line": 208,
"column": 48
}
}
},
"range": [
- 7157,
- 7197
+ 7408,
+ 7448
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 48
}
}
},
"range": [
- 7157,
- 7198
+ 7408,
+ 7449
],
"loc": {
"start": {
- "line": 200,
+ "line": 208,
"column": 8
},
"end": {
- "line": 200,
+ "line": 208,
"column": 49
}
},
@@ -18584,16 +19328,16 @@
"type": "Line",
"value": "Headers table style",
"range": [
- 7127,
- 7148
+ 7378,
+ 7399
],
"loc": {
"start": {
- "line": 199,
+ "line": 207,
"column": 8
},
"end": {
- "line": 199,
+ "line": 207,
"column": 29
}
}
@@ -18615,16 +19359,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7207,
- 7210
+ 7458,
+ 7461
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 8
},
"end": {
- "line": 201,
+ "line": 209,
"column": 11
}
}
@@ -18633,31 +19377,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 7211,
- 7216
+ 7462,
+ 7467
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 12
},
"end": {
- "line": 201,
+ "line": 209,
"column": 17
}
}
},
"range": [
- 7207,
- 7216
+ 7458,
+ 7467
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 8
},
"end": {
- "line": 201,
+ "line": 209,
"column": 17
}
}
@@ -18666,31 +19410,31 @@
"type": "Identifier",
"name": "tableLayout",
"range": [
- 7217,
- 7228
+ 7468,
+ 7479
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 18
},
"end": {
- "line": 201,
+ "line": 209,
"column": 29
}
}
},
"range": [
- 7207,
- 7228
+ 7458,
+ 7479
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 8
},
"end": {
- "line": 201,
+ "line": 209,
"column": 29
}
}
@@ -18700,46 +19444,46 @@
"value": "fixed",
"raw": "'fixed'",
"range": [
- 7231,
- 7238
+ 7482,
+ 7489
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 32
},
"end": {
- "line": 201,
+ "line": 209,
"column": 39
}
}
},
"range": [
- 7207,
- 7238
+ 7458,
+ 7489
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 8
},
"end": {
- "line": 201,
+ "line": 209,
"column": 39
}
}
},
"range": [
- 7207,
- 7239
+ 7458,
+ 7490
],
"loc": {
"start": {
- "line": 201,
+ "line": 209,
"column": 8
},
"end": {
- "line": 201,
+ "line": 209,
"column": 40
}
}
@@ -18758,16 +19502,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7248,
- 7252
+ 7499,
+ 7503
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 8
},
"end": {
- "line": 202,
+ "line": 210,
"column": 12
}
}
@@ -18776,31 +19520,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 7253,
- 7260
+ 7504,
+ 7511
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 13
},
"end": {
- "line": 202,
+ "line": 210,
"column": 20
}
}
},
"range": [
- 7248,
- 7260
+ 7499,
+ 7511
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 8
},
"end": {
- "line": 202,
+ "line": 210,
"column": 20
}
}
@@ -18809,31 +19553,31 @@
"type": "Identifier",
"name": "cellPadding",
"range": [
- 7261,
- 7272
+ 7512,
+ 7523
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 21
},
"end": {
- "line": 202,
+ "line": 210,
"column": 32
}
}
},
"range": [
- 7248,
- 7272
+ 7499,
+ 7523
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 8
},
"end": {
- "line": 202,
+ "line": 210,
"column": 32
}
}
@@ -18845,16 +19589,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7275,
- 7278
+ 7526,
+ 7529
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 35
},
"end": {
- "line": 202,
+ "line": 210,
"column": 38
}
}
@@ -18863,61 +19607,61 @@
"type": "Identifier",
"name": "cellPadding",
"range": [
- 7279,
- 7290
+ 7530,
+ 7541
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 39
},
"end": {
- "line": 202,
+ "line": 210,
"column": 50
}
}
},
"range": [
- 7275,
- 7290
+ 7526,
+ 7541
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 35
},
"end": {
- "line": 202,
+ "line": 210,
"column": 50
}
}
},
"range": [
- 7248,
- 7290
+ 7499,
+ 7541
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 8
},
"end": {
- "line": 202,
+ "line": 210,
"column": 50
}
}
},
"range": [
- 7248,
- 7291
+ 7499,
+ 7542
],
"loc": {
"start": {
- "line": 202,
+ "line": 210,
"column": 8
},
"end": {
- "line": 202,
+ "line": 210,
"column": 51
}
}
@@ -18936,16 +19680,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7300,
- 7304
+ 7551,
+ 7555
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 8
},
"end": {
- "line": 203,
+ "line": 211,
"column": 12
}
}
@@ -18954,31 +19698,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 7305,
- 7312
+ 7556,
+ 7563
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 13
},
"end": {
- "line": 203,
+ "line": 211,
"column": 20
}
}
},
"range": [
- 7300,
- 7312
+ 7551,
+ 7563
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 8
},
"end": {
- "line": 203,
+ "line": 211,
"column": 20
}
}
@@ -18987,31 +19731,31 @@
"type": "Identifier",
"name": "cellSpacing",
"range": [
- 7313,
- 7324
+ 7564,
+ 7575
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 21
},
"end": {
- "line": 203,
+ "line": 211,
"column": 32
}
}
},
"range": [
- 7300,
- 7324
+ 7551,
+ 7575
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 8
},
"end": {
- "line": 203,
+ "line": 211,
"column": 32
}
}
@@ -19023,16 +19767,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7327,
- 7330
+ 7578,
+ 7581
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 35
},
"end": {
- "line": 203,
+ "line": 211,
"column": 38
}
}
@@ -19041,61 +19785,61 @@
"type": "Identifier",
"name": "cellSpacing",
"range": [
- 7331,
- 7342
+ 7582,
+ 7593
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 39
},
"end": {
- "line": 203,
+ "line": 211,
"column": 50
}
}
},
"range": [
- 7327,
- 7342
+ 7578,
+ 7593
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 35
},
"end": {
- "line": 203,
+ "line": 211,
"column": 50
}
}
},
"range": [
- 7300,
- 7342
+ 7551,
+ 7593
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 8
},
"end": {
- "line": 203,
+ "line": 211,
"column": 50
}
}
},
"range": [
- 7300,
- 7343
+ 7551,
+ 7594
],
"loc": {
"start": {
- "line": 203,
+ "line": 211,
"column": 8
},
"end": {
- "line": 203,
+ "line": 211,
"column": 51
}
},
@@ -19104,16 +19848,16 @@
"type": "Line",
"value": " this.headTbl.style.width = tbl.style.width;",
"range": [
- 7352,
- 7398
+ 7603,
+ 7649
],
"loc": {
"start": {
- "line": 204,
+ "line": 212,
"column": 8
},
"end": {
- "line": 204,
+ "line": 212,
"column": 54
}
}
@@ -19122,16 +19866,16 @@
"type": "Line",
"value": "content table without headers needs col widths to be reset",
"range": [
- 7408,
- 7468
+ 7659,
+ 7719
],
"loc": {
"start": {
- "line": 206,
+ "line": 214,
"column": 8
},
"end": {
- "line": 206,
+ "line": 214,
"column": 68
}
}
@@ -19149,16 +19893,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7477,
- 7479
+ 7728,
+ 7730
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 8
},
"end": {
- "line": 207,
+ "line": 215,
"column": 10
}
}
@@ -19167,31 +19911,31 @@
"type": "Identifier",
"name": "setColWidths",
"range": [
- 7480,
- 7492
+ 7731,
+ 7743
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 11
},
"end": {
- "line": 207,
+ "line": 215,
"column": 23
}
}
},
"range": [
- 7477,
- 7492
+ 7728,
+ 7743
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 8
},
"end": {
- "line": 207,
+ "line": 215,
"column": 23
}
}
@@ -19202,16 +19946,16 @@
"value": 0,
"raw": "0",
"range": [
- 7493,
- 7494
+ 7744,
+ 7745
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 24
},
"end": {
- "line": 207,
+ "line": 215,
"column": 25
}
}
@@ -19222,16 +19966,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7496,
- 7500
+ 7747,
+ 7751
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 27
},
"end": {
- "line": 207,
+ "line": 215,
"column": 31
}
}
@@ -19240,62 +19984,62 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 7501,
- 7508
+ 7752,
+ 7759
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 32
},
"end": {
- "line": 207,
+ "line": 215,
"column": 39
}
}
},
"range": [
- 7496,
- 7508
+ 7747,
+ 7759
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 27
},
"end": {
- "line": 207,
+ "line": 215,
"column": 39
}
}
}
],
"range": [
- 7477,
- 7509
+ 7728,
+ 7760
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 8
},
"end": {
- "line": 207,
+ "line": 215,
"column": 40
}
}
},
"range": [
- 7477,
- 7510
+ 7728,
+ 7761
],
"loc": {
"start": {
- "line": 207,
+ "line": 215,
"column": 8
},
"end": {
- "line": 207,
+ "line": 215,
"column": 41
}
},
@@ -19304,16 +20048,16 @@
"type": "Line",
"value": " this.headTbl.style.width = tbl.style.width;",
"range": [
- 7352,
- 7398
+ 7603,
+ 7649
],
"loc": {
"start": {
- "line": 204,
+ "line": 212,
"column": 8
},
"end": {
- "line": 204,
+ "line": 212,
"column": 54
}
}
@@ -19322,16 +20066,16 @@
"type": "Line",
"value": "content table without headers needs col widths to be reset",
"range": [
- 7408,
- 7468
+ 7659,
+ 7719
],
"loc": {
"start": {
- "line": 206,
+ "line": 214,
"column": 8
},
"end": {
- "line": 206,
+ "line": 214,
"column": 68
}
}
@@ -19342,16 +20086,16 @@
"type": "Line",
"value": "Headers container width",
"range": [
- 7520,
- 7545
+ 7771,
+ 7796
],
"loc": {
"start": {
- "line": 209,
+ "line": 217,
"column": 8
},
"end": {
- "line": 209,
+ "line": 217,
"column": 33
}
}
@@ -19360,16 +20104,16 @@
"type": "Line",
"value": " this.headTblCont.style.width = this.tblCont.clientWidth+'px';",
"range": [
- 7554,
- 7618
+ 7805,
+ 7869
],
"loc": {
"start": {
- "line": 210,
+ "line": 218,
"column": 8
},
"end": {
- "line": 210,
+ "line": 218,
"column": 72
}
}
@@ -19391,16 +20135,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7628,
- 7631
+ 7879,
+ 7882
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 8
},
"end": {
- "line": 212,
+ "line": 220,
"column": 11
}
}
@@ -19409,31 +20153,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 7632,
- 7637
+ 7883,
+ 7888
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 12
},
"end": {
- "line": 212,
+ "line": 220,
"column": 17
}
}
},
"range": [
- 7628,
- 7637
+ 7879,
+ 7888
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 8
},
"end": {
- "line": 212,
+ "line": 220,
"column": 17
}
}
@@ -19442,31 +20186,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 7638,
- 7643
+ 7889,
+ 7894
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 18
},
"end": {
- "line": 212,
+ "line": 220,
"column": 23
}
}
},
"range": [
- 7628,
- 7643
+ 7879,
+ 7894
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 8
},
"end": {
- "line": 212,
+ "line": 220,
"column": 23
}
}
@@ -19476,46 +20220,46 @@
"value": "",
"raw": "''",
"range": [
- 7646,
- 7648
+ 7897,
+ 7899
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 26
},
"end": {
- "line": 212,
+ "line": 220,
"column": 28
}
}
},
"range": [
- 7628,
- 7648
+ 7879,
+ 7899
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 8
},
"end": {
- "line": 212,
+ "line": 220,
"column": 28
}
}
},
"range": [
- 7628,
- 7649
+ 7879,
+ 7900
],
"loc": {
"start": {
- "line": 212,
+ "line": 220,
"column": 8
},
"end": {
- "line": 212,
+ "line": 220,
"column": 29
}
},
@@ -19524,16 +20268,16 @@
"type": "Line",
"value": "Headers container width",
"range": [
- 7520,
- 7545
+ 7771,
+ 7796
],
"loc": {
"start": {
- "line": 209,
+ "line": 217,
"column": 8
},
"end": {
- "line": 209,
+ "line": 217,
"column": 33
}
}
@@ -19542,16 +20286,16 @@
"type": "Line",
"value": " this.headTblCont.style.width = this.tblCont.clientWidth+'px';",
"range": [
- 7554,
- 7618
+ 7805,
+ 7869
],
"loc": {
"start": {
- "line": 210,
+ "line": 218,
"column": 8
},
"end": {
- "line": 210,
+ "line": 218,
"column": 72
}
}
@@ -19562,16 +20306,16 @@
"type": "Line",
"value": "",
"range": [
- 7658,
- 7660
+ 7909,
+ 7911
],
"loc": {
"start": {
- "line": 213,
+ "line": 221,
"column": 8
},
"end": {
- "line": 213,
+ "line": 221,
"column": 10
}
}
@@ -19595,16 +20339,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7669,
- 7673
+ 7920,
+ 7924
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 12
}
}
@@ -19613,31 +20357,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 7674,
- 7681
+ 7925,
+ 7932
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 13
},
"end": {
- "line": 214,
+ "line": 222,
"column": 20
}
}
},
"range": [
- 7669,
- 7681
+ 7920,
+ 7932
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 20
}
}
@@ -19646,31 +20390,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 7682,
- 7687
+ 7933,
+ 7938
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 21
},
"end": {
- "line": 214,
+ "line": 222,
"column": 26
}
}
},
"range": [
- 7669,
- 7687
+ 7920,
+ 7938
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 26
}
}
@@ -19679,31 +20423,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 7688,
- 7693
+ 7939,
+ 7944
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 27
},
"end": {
- "line": 214,
+ "line": 222,
"column": 32
}
}
},
"range": [
- 7669,
- 7693
+ 7920,
+ 7944
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 32
}
}
@@ -19718,16 +20462,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 7696,
- 7699
+ 7947,
+ 7950
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 35
},
"end": {
- "line": 214,
+ "line": 222,
"column": 38
}
}
@@ -19736,31 +20480,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 7700,
- 7711
+ 7951,
+ 7962
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 39
},
"end": {
- "line": 214,
+ "line": 222,
"column": 50
}
}
},
"range": [
- 7696,
- 7711
+ 7947,
+ 7962
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 35
},
"end": {
- "line": 214,
+ "line": 222,
"column": 50
}
}
@@ -19770,61 +20514,61 @@
"value": "px",
"raw": "'px'",
"range": [
- 7714,
- 7718
+ 7965,
+ 7969
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 53
},
"end": {
- "line": 214,
+ "line": 222,
"column": 57
}
}
},
"range": [
- 7696,
- 7718
+ 7947,
+ 7969
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 35
},
"end": {
- "line": 214,
+ "line": 222,
"column": 57
}
}
},
"range": [
- 7669,
- 7718
+ 7920,
+ 7969
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 57
}
}
},
"range": [
- 7669,
- 7719
+ 7920,
+ 7970
],
"loc": {
"start": {
- "line": 214,
+ "line": 222,
"column": 8
},
"end": {
- "line": 214,
+ "line": 222,
"column": 58
}
},
@@ -19833,16 +20577,16 @@
"type": "Line",
"value": "",
"range": [
- 7658,
- 7660
+ 7909,
+ 7911
],
"loc": {
"start": {
- "line": 213,
+ "line": 221,
"column": 8
},
"end": {
- "line": 213,
+ "line": 221,
"column": 10
}
}
@@ -19853,16 +20597,16 @@
"type": "Line",
"value": "",
"range": [
- 7728,
- 7730
+ 7979,
+ 7981
],
"loc": {
"start": {
- "line": 215,
+ "line": 223,
"column": 8
},
"end": {
- "line": 215,
+ "line": 223,
"column": 10
}
}
@@ -19871,16 +20615,16 @@
"type": "Line",
"value": "scroll synchronisation",
"range": [
- 7740,
- 7764
+ 7991,
+ 8015
],
"loc": {
"start": {
- "line": 217,
+ "line": 225,
"column": 8
},
"end": {
- "line": 217,
+ "line": 225,
"column": 32
}
}
@@ -19898,16 +20642,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 7773,
- 7778
+ 8024,
+ 8029
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 8
},
"end": {
- "line": 218,
+ "line": 226,
"column": 13
}
}
@@ -19916,31 +20660,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 7779,
- 7782
+ 8030,
+ 8033
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 14
},
"end": {
- "line": 218,
+ "line": 226,
"column": 17
}
}
},
"range": [
- 7773,
- 7782
+ 8024,
+ 8033
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 8
},
"end": {
- "line": 218,
+ "line": 226,
"column": 17
}
}
@@ -19952,16 +20696,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7783,
- 7787
+ 8034,
+ 8038
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 18
},
"end": {
- "line": 218,
+ "line": 226,
"column": 22
}
}
@@ -19970,31 +20714,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 7788,
- 7795
+ 8039,
+ 8046
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 23
},
"end": {
- "line": 218,
+ "line": 226,
"column": 30
}
}
},
"range": [
- 7783,
- 7795
+ 8034,
+ 8046
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 18
},
"end": {
- "line": 218,
+ "line": 226,
"column": 30
}
}
@@ -20004,16 +20748,16 @@
"value": "scroll",
"raw": "'scroll'",
"range": [
- 7797,
- 7805
+ 8048,
+ 8056
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 32
},
"end": {
- "line": 218,
+ "line": 226,
"column": 40
}
}
@@ -20026,16 +20770,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 7808,
- 7811
+ 8059,
+ 8062
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 43
},
"end": {
- "line": 218,
+ "line": 226,
"column": 46
}
}
@@ -20053,16 +20797,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 7833,
- 7836
+ 8084,
+ 8087
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 16
},
"end": {
- "line": 219,
+ "line": 227,
"column": 19
}
}
@@ -20076,16 +20820,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 7839,
- 7844
+ 8090,
+ 8095
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 22
},
"end": {
- "line": 219,
+ "line": 227,
"column": 27
}
}
@@ -20094,31 +20838,31 @@
"type": "Identifier",
"name": "target",
"range": [
- 7845,
- 7851
+ 8096,
+ 8102
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 28
},
"end": {
- "line": 219,
+ "line": 227,
"column": 34
}
}
},
"range": [
- 7839,
- 7851
+ 8090,
+ 8102
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 22
},
"end": {
- "line": 219,
+ "line": 227,
"column": 34
}
}
@@ -20128,64 +20872,64 @@
"type": "Identifier",
"name": "evt",
"range": [
- 7852,
- 7855
+ 8103,
+ 8106
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 35
},
"end": {
- "line": 219,
+ "line": 227,
"column": 38
}
}
}
],
"range": [
- 7839,
- 7856
+ 8090,
+ 8107
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 22
},
"end": {
- "line": 219,
+ "line": 227,
"column": 39
}
}
},
"range": [
- 7833,
- 7856
+ 8084,
+ 8107
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 16
},
"end": {
- "line": 219,
+ "line": 227,
"column": 39
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 7829,
- 7857
+ 8080,
+ 8108
],
"loc": {
"start": {
- "line": 219,
+ "line": 227,
"column": 12
},
"end": {
- "line": 219,
+ "line": 227,
"column": 40
}
}
@@ -20199,16 +20943,16 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 7874,
- 7884
+ 8125,
+ 8135
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 16
},
"end": {
- "line": 220,
+ "line": 228,
"column": 26
}
}
@@ -20220,16 +20964,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 7887,
- 7890
+ 8138,
+ 8141
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 29
},
"end": {
- "line": 220,
+ "line": 228,
"column": 32
}
}
@@ -20238,63 +20982,63 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 7891,
- 7901
+ 8142,
+ 8152
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 33
},
"end": {
- "line": 220,
+ "line": 228,
"column": 43
}
}
},
"range": [
- 7887,
- 7901
+ 8138,
+ 8152
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 29
},
"end": {
- "line": 220,
+ "line": 228,
"column": 43
}
}
},
"range": [
- 7874,
- 7901
+ 8125,
+ 8152
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 16
},
"end": {
- "line": 220,
+ "line": 228,
"column": 43
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 7870,
- 7902
+ 8121,
+ 8153
],
"loc": {
"start": {
- "line": 220,
+ "line": 228,
"column": 12
},
"end": {
- "line": 220,
+ "line": 228,
"column": 44
}
}
@@ -20313,16 +21057,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7915,
- 7919
+ 8166,
+ 8170
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 12
},
"end": {
- "line": 221,
+ "line": 229,
"column": 16
}
}
@@ -20331,31 +21075,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 7920,
- 7931
+ 8171,
+ 8182
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 17
},
"end": {
- "line": 221,
+ "line": 229,
"column": 28
}
}
},
"range": [
- 7915,
- 7931
+ 8166,
+ 8182
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 12
},
"end": {
- "line": 221,
+ "line": 229,
"column": 28
}
}
@@ -20364,31 +21108,31 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 7932,
- 7942
+ 8183,
+ 8193
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 29
},
"end": {
- "line": 221,
+ "line": 229,
"column": 39
}
}
},
"range": [
- 7915,
- 7942
+ 8166,
+ 8193
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 12
},
"end": {
- "line": 221,
+ "line": 229,
"column": 39
}
}
@@ -20397,46 +21141,46 @@
"type": "Identifier",
"name": "scrollLeft",
"range": [
- 7945,
- 7955
+ 8196,
+ 8206
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 42
},
"end": {
- "line": 221,
+ "line": 229,
"column": 52
}
}
},
"range": [
- 7915,
- 7955
+ 8166,
+ 8206
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 12
},
"end": {
- "line": 221,
+ "line": 229,
"column": 52
}
}
},
"range": [
- 7915,
- 7956
+ 8166,
+ 8207
],
"loc": {
"start": {
- "line": 221,
+ "line": 229,
"column": 12
},
"end": {
- "line": 221,
+ "line": 229,
"column": 53
}
},
@@ -20445,16 +21189,16 @@
"type": "Line",
"value": "New pointerX calc taking into account scrollLeft",
"range": [
- 7969,
- 8019
+ 8220,
+ 8270
],
"loc": {
"start": {
- "line": 222,
+ "line": 230,
"column": 12
},
"end": {
- "line": 222,
+ "line": 230,
"column": 62
}
}
@@ -20463,16 +21207,16 @@
"type": "Line",
"value": " if(!o.isPointerXOverwritten){",
"range": [
- 8032,
- 8064
+ 8283,
+ 8315
],
"loc": {
"start": {
- "line": 223,
+ "line": 231,
"column": 12
},
"end": {
- "line": 223,
+ "line": 231,
"column": 44
}
}
@@ -20481,16 +21225,16 @@
"type": "Line",
"value": " try{",
"range": [
- 8077,
- 8088
+ 8328,
+ 8339
],
"loc": {
"start": {
- "line": 224,
+ "line": 232,
"column": 12
},
"end": {
- "line": 224,
+ "line": 232,
"column": 23
}
}
@@ -20499,52 +21243,52 @@
"type": "Line",
"value": " o.Evt.pointerX = function(evt){",
"range": [
- 8101,
- 8143
+ 8352,
+ 8394
],
"loc": {
"start": {
- "line": 225,
+ "line": 233,
"column": 12
},
"end": {
- "line": 225,
+ "line": 233,
"column": 54
}
}
},
{
"type": "Line",
- "value": " var e = evt || global.event;",
+ "value": " let e = evt || global.event;",
"range": [
- 8156,
- 8199
+ 8407,
+ 8450
],
"loc": {
"start": {
- "line": 226,
+ "line": 234,
"column": 12
},
"end": {
- "line": 226,
+ "line": 234,
"column": 55
}
}
},
{
"type": "Line",
- "value": " var bdScrollLeft = tf_StandardBody().scrollLeft +",
+ "value": " let bdScrollLeft = tf_StandardBody().scrollLeft +",
"range": [
- 8212,
- 8276
+ 8463,
+ 8527
],
"loc": {
"start": {
- "line": 227,
+ "line": 235,
"column": 12
},
"end": {
- "line": 227,
+ "line": 235,
"column": 76
}
}
@@ -20553,16 +21297,16 @@
"type": "Line",
"value": " scrollLeft;",
"range": [
- 8289,
- 8319
+ 8540,
+ 8570
],
"loc": {
"start": {
- "line": 228,
+ "line": 236,
"column": 12
},
"end": {
- "line": 228,
+ "line": 236,
"column": 42
}
}
@@ -20571,16 +21315,16 @@
"type": "Line",
"value": " return (e.pageX + scrollLeft) ||",
"range": [
- 8332,
- 8379
+ 8583,
+ 8630
],
"loc": {
"start": {
- "line": 229,
+ "line": 237,
"column": 12
},
"end": {
- "line": 229,
+ "line": 237,
"column": 59
}
}
@@ -20589,16 +21333,16 @@
"type": "Line",
"value": " (e.clientX + bdScrollLeft);",
"range": [
- 8392,
- 8438
+ 8643,
+ 8689
],
"loc": {
"start": {
- "line": 230,
+ "line": 238,
"column": 12
},
"end": {
- "line": 230,
+ "line": 238,
"column": 58
}
}
@@ -20607,16 +21351,16 @@
"type": "Line",
"value": " };",
"range": [
- 8451,
- 8464
+ 8702,
+ 8715
],
"loc": {
"start": {
- "line": 231,
+ "line": 239,
"column": 12
},
"end": {
- "line": 231,
+ "line": 239,
"column": 25
}
}
@@ -20625,16 +21369,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = true;",
"range": [
- 8477,
- 8519
+ 8728,
+ 8770
],
"loc": {
"start": {
- "line": 232,
+ "line": 240,
"column": 12
},
"end": {
- "line": 232,
+ "line": 240,
"column": 54
}
}
@@ -20643,16 +21387,16 @@
"type": "Line",
"value": " } catch(err) {",
"range": [
- 8532,
- 8553
+ 8783,
+ 8804
],
"loc": {
"start": {
- "line": 233,
+ "line": 241,
"column": 12
},
"end": {
- "line": 233,
+ "line": 241,
"column": 33
}
}
@@ -20661,16 +21405,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = false;",
"range": [
- 8566,
- 8609
+ 8817,
+ 8860
],
"loc": {
"start": {
- "line": 234,
+ "line": 242,
"column": 12
},
"end": {
- "line": 234,
+ "line": 242,
"column": 55
}
}
@@ -20679,16 +21423,16 @@
"type": "Line",
"value": " }",
"range": [
- 8622,
- 8630
+ 8873,
+ 8881
],
"loc": {
"start": {
- "line": 235,
+ "line": 243,
"column": 12
},
"end": {
- "line": 235,
+ "line": 243,
"column": 20
}
}
@@ -20697,16 +21441,16 @@
"type": "Line",
"value": " }",
"range": [
- 8643,
- 8647
+ 8894,
+ 8898
],
"loc": {
"start": {
- "line": 236,
+ "line": 244,
"column": 12
},
"end": {
- "line": 236,
+ "line": 244,
"column": 16
}
}
@@ -20715,16 +21459,16 @@
}
],
"range": [
- 7815,
- 8657
+ 8066,
+ 8908
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 50
},
"end": {
- "line": 237,
+ "line": 245,
"column": 9
}
}
@@ -20732,47 +21476,47 @@
"generator": false,
"expression": false,
"range": [
- 7807,
- 8657
+ 8058,
+ 8908
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 42
},
"end": {
- "line": 237,
+ "line": 245,
"column": 9
}
}
}
],
"range": [
- 7773,
- 8658
+ 8024,
+ 8909
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 8
},
"end": {
- "line": 237,
+ "line": 245,
"column": 10
}
}
},
"range": [
- 7773,
- 8659
+ 8024,
+ 8910
],
"loc": {
"start": {
- "line": 218,
+ "line": 226,
"column": 8
},
"end": {
- "line": 237,
+ "line": 245,
"column": 11
}
},
@@ -20781,16 +21525,16 @@
"type": "Line",
"value": "",
"range": [
- 7728,
- 7730
+ 7979,
+ 7981
],
"loc": {
"start": {
- "line": 215,
+ "line": 223,
"column": 8
},
"end": {
- "line": 215,
+ "line": 223,
"column": 10
}
}
@@ -20799,16 +21543,16 @@
"type": "Line",
"value": "scroll synchronisation",
"range": [
- 7740,
- 7764
+ 7991,
+ 8015
],
"loc": {
"start": {
- "line": 217,
+ "line": 225,
"column": 8
},
"end": {
- "line": 217,
+ "line": 225,
"column": 32
}
}
@@ -20819,16 +21563,16 @@
"type": "Line",
"value": "Configure sort extension if any",
"range": [
- 8669,
- 8702
+ 8920,
+ 8953
],
"loc": {
"start": {
- "line": 239,
+ "line": 247,
"column": 8
},
"end": {
- "line": 239,
+ "line": 247,
"column": 41
}
}
@@ -20844,16 +21588,16 @@
"type": "Identifier",
"name": "sort",
"range": [
- 8715,
- 8719
+ 8966,
+ 8970
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 12
},
"end": {
- "line": 240,
+ "line": 248,
"column": 16
}
}
@@ -20873,16 +21617,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8723,
- 8724
+ 8974,
+ 8975
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 20
},
"end": {
- "line": 240,
+ "line": 248,
"column": 21
}
}
@@ -20891,31 +21635,31 @@
"type": "Identifier",
"name": "extensions",
"range": [
- 8725,
- 8735
+ 8976,
+ 8986
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 22
},
"end": {
- "line": 240,
+ "line": 248,
"column": 32
}
}
},
"range": [
- 8723,
- 8735
+ 8974,
+ 8986
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 20
},
"end": {
- "line": 240,
+ "line": 248,
"column": 32
}
}
@@ -20924,31 +21668,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 8739,
- 8741
+ 8990,
+ 8992
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 36
},
"end": {
- "line": 240,
+ "line": 248,
"column": 38
}
}
},
"range": [
- 8723,
- 8741
+ 8974,
+ 8992
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 20
},
"end": {
- "line": 240,
+ "line": 248,
"column": 38
}
}
@@ -20957,31 +21701,31 @@
"type": "Identifier",
"name": "filter",
"range": [
- 8743,
- 8749
+ 8994,
+ 9000
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 40
},
"end": {
- "line": 240,
+ "line": 248,
"column": 46
}
}
},
"range": [
- 8722,
- 8749
+ 8973,
+ 9000
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 19
},
"end": {
- "line": 240,
+ "line": 248,
"column": 46
}
}
@@ -20995,16 +21739,16 @@
"type": "Identifier",
"name": "itm",
"range": [
- 8759,
- 8762
+ 9010,
+ 9013
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 56
},
"end": {
- "line": 240,
+ "line": 248,
"column": 59
}
}
@@ -21025,16 +21769,16 @@
"type": "Identifier",
"name": "itm",
"range": [
- 8784,
- 8787
+ 9035,
+ 9038
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 19
},
"end": {
- "line": 241,
+ "line": 249,
"column": 22
}
}
@@ -21043,31 +21787,31 @@
"type": "Identifier",
"name": "name",
"range": [
- 8788,
- 8792
+ 9039,
+ 9043
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 23
},
"end": {
- "line": 241,
+ "line": 249,
"column": 27
}
}
},
"range": [
- 8784,
- 8792
+ 9035,
+ 9043
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 19
},
"end": {
- "line": 241,
+ "line": 249,
"column": 27
}
}
@@ -21077,62 +21821,62 @@
"value": "sort",
"raw": "'sort'",
"range": [
- 8797,
- 8803
+ 9048,
+ 9054
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 32
},
"end": {
- "line": 241,
+ "line": 249,
"column": 38
}
}
},
"range": [
- 8784,
- 8803
+ 9035,
+ 9054
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 19
},
"end": {
- "line": 241,
+ "line": 249,
"column": 38
}
}
},
"range": [
- 8777,
- 8804
+ 9028,
+ 9055
],
"loc": {
"start": {
- "line": 241,
+ "line": 249,
"column": 12
},
"end": {
- "line": 241,
+ "line": 249,
"column": 39
}
}
}
],
"range": [
- 8763,
- 8814
+ 9014,
+ 9065
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 60
},
"end": {
- "line": 242,
+ "line": 250,
"column": 9
}
}
@@ -21140,64 +21884,64 @@
"generator": false,
"expression": false,
"range": [
- 8750,
- 8814
+ 9001,
+ 9065
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 47
},
"end": {
- "line": 242,
+ "line": 250,
"column": 9
}
}
}
],
"range": [
- 8722,
- 8815
+ 8973,
+ 9066
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 19
},
"end": {
- "line": 242,
+ "line": 250,
"column": 10
}
}
},
"range": [
- 8715,
- 8815
+ 8966,
+ 9066
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 12
},
"end": {
- "line": 242,
+ "line": 250,
"column": 10
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 8711,
- 8816
+ 8962,
+ 9067
],
"loc": {
"start": {
- "line": 240,
+ "line": 248,
"column": 8
},
"end": {
- "line": 242,
+ "line": 250,
"column": 11
}
},
@@ -21206,16 +21950,16 @@
"type": "Line",
"value": "New pointerX calc taking into account scrollLeft",
"range": [
- 7969,
- 8019
+ 8220,
+ 8270
],
"loc": {
"start": {
- "line": 222,
+ "line": 230,
"column": 12
},
"end": {
- "line": 222,
+ "line": 230,
"column": 62
}
}
@@ -21224,16 +21968,16 @@
"type": "Line",
"value": " if(!o.isPointerXOverwritten){",
"range": [
- 8032,
- 8064
+ 8283,
+ 8315
],
"loc": {
"start": {
- "line": 223,
+ "line": 231,
"column": 12
},
"end": {
- "line": 223,
+ "line": 231,
"column": 44
}
}
@@ -21242,16 +21986,16 @@
"type": "Line",
"value": " try{",
"range": [
- 8077,
- 8088
+ 8328,
+ 8339
],
"loc": {
"start": {
- "line": 224,
+ "line": 232,
"column": 12
},
"end": {
- "line": 224,
+ "line": 232,
"column": 23
}
}
@@ -21260,52 +22004,52 @@
"type": "Line",
"value": " o.Evt.pointerX = function(evt){",
"range": [
- 8101,
- 8143
+ 8352,
+ 8394
],
"loc": {
"start": {
- "line": 225,
+ "line": 233,
"column": 12
},
"end": {
- "line": 225,
+ "line": 233,
"column": 54
}
}
},
{
"type": "Line",
- "value": " var e = evt || global.event;",
+ "value": " let e = evt || global.event;",
"range": [
- 8156,
- 8199
+ 8407,
+ 8450
],
"loc": {
"start": {
- "line": 226,
+ "line": 234,
"column": 12
},
"end": {
- "line": 226,
+ "line": 234,
"column": 55
}
}
},
{
"type": "Line",
- "value": " var bdScrollLeft = tf_StandardBody().scrollLeft +",
+ "value": " let bdScrollLeft = tf_StandardBody().scrollLeft +",
"range": [
- 8212,
- 8276
+ 8463,
+ 8527
],
"loc": {
"start": {
- "line": 227,
+ "line": 235,
"column": 12
},
"end": {
- "line": 227,
+ "line": 235,
"column": 76
}
}
@@ -21314,16 +22058,16 @@
"type": "Line",
"value": " scrollLeft;",
"range": [
- 8289,
- 8319
+ 8540,
+ 8570
],
"loc": {
"start": {
- "line": 228,
+ "line": 236,
"column": 12
},
"end": {
- "line": 228,
+ "line": 236,
"column": 42
}
}
@@ -21332,16 +22076,16 @@
"type": "Line",
"value": " return (e.pageX + scrollLeft) ||",
"range": [
- 8332,
- 8379
+ 8583,
+ 8630
],
"loc": {
"start": {
- "line": 229,
+ "line": 237,
"column": 12
},
"end": {
- "line": 229,
+ "line": 237,
"column": 59
}
}
@@ -21350,16 +22094,16 @@
"type": "Line",
"value": " (e.clientX + bdScrollLeft);",
"range": [
- 8392,
- 8438
+ 8643,
+ 8689
],
"loc": {
"start": {
- "line": 230,
+ "line": 238,
"column": 12
},
"end": {
- "line": 230,
+ "line": 238,
"column": 58
}
}
@@ -21368,16 +22112,16 @@
"type": "Line",
"value": " };",
"range": [
- 8451,
- 8464
+ 8702,
+ 8715
],
"loc": {
"start": {
- "line": 231,
+ "line": 239,
"column": 12
},
"end": {
- "line": 231,
+ "line": 239,
"column": 25
}
}
@@ -21386,16 +22130,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = true;",
"range": [
- 8477,
- 8519
+ 8728,
+ 8770
],
"loc": {
"start": {
- "line": 232,
+ "line": 240,
"column": 12
},
"end": {
- "line": 232,
+ "line": 240,
"column": 54
}
}
@@ -21404,16 +22148,16 @@
"type": "Line",
"value": " } catch(err) {",
"range": [
- 8532,
- 8553
+ 8783,
+ 8804
],
"loc": {
"start": {
- "line": 233,
+ "line": 241,
"column": 12
},
"end": {
- "line": 233,
+ "line": 241,
"column": 33
}
}
@@ -21422,16 +22166,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = false;",
"range": [
- 8566,
- 8609
+ 8817,
+ 8860
],
"loc": {
"start": {
- "line": 234,
+ "line": 242,
"column": 12
},
"end": {
- "line": 234,
+ "line": 242,
"column": 55
}
}
@@ -21440,16 +22184,16 @@
"type": "Line",
"value": " }",
"range": [
- 8622,
- 8630
+ 8873,
+ 8881
],
"loc": {
"start": {
- "line": 235,
+ "line": 243,
"column": 12
},
"end": {
- "line": 235,
+ "line": 243,
"column": 20
}
}
@@ -21458,16 +22202,16 @@
"type": "Line",
"value": " }",
"range": [
- 8643,
- 8647
+ 8894,
+ 8898
],
"loc": {
"start": {
- "line": 236,
+ "line": 244,
"column": 12
},
"end": {
- "line": 236,
+ "line": 244,
"column": 16
}
}
@@ -21476,16 +22220,16 @@
"type": "Line",
"value": "Configure sort extension if any",
"range": [
- 8669,
- 8702
+ 8920,
+ 8953
],
"loc": {
"start": {
- "line": 239,
+ "line": 247,
"column": 8
},
"end": {
- "line": 239,
+ "line": 247,
"column": 41
}
}
@@ -21504,16 +22248,16 @@
"type": "Identifier",
"name": "sort",
"range": [
- 8828,
- 8832
+ 9079,
+ 9083
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 11
},
"end": {
- "line": 243,
+ "line": 251,
"column": 15
}
}
@@ -21522,31 +22266,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 8833,
- 8839
+ 9084,
+ 9090
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 16
},
"end": {
- "line": 243,
+ "line": 251,
"column": 22
}
}
},
"range": [
- 8828,
- 8839
+ 9079,
+ 9090
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 11
},
"end": {
- "line": 243,
+ "line": 251,
"column": 22
}
}
@@ -21556,31 +22300,31 @@
"value": 1,
"raw": "1",
"range": [
- 8844,
- 8845
+ 9095,
+ 9096
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 27
},
"end": {
- "line": 243,
+ "line": 251,
"column": 28
}
}
},
"range": [
- 8828,
- 8845
+ 9079,
+ 9096
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 11
},
"end": {
- "line": 243,
+ "line": 251,
"column": 28
}
}
@@ -21603,16 +22347,16 @@
"type": "Identifier",
"name": "sort",
"range": [
- 8860,
- 8864
+ 9111,
+ 9115
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 12
},
"end": {
- "line": 244,
+ "line": 252,
"column": 16
}
}
@@ -21622,31 +22366,31 @@
"value": 0,
"raw": "0",
"range": [
- 8865,
- 8866
+ 9116,
+ 9117
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 17
},
"end": {
- "line": 244,
+ "line": 252,
"column": 18
}
}
},
"range": [
- 8860,
- 8867
+ 9111,
+ 9118
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 12
},
"end": {
- "line": 244,
+ "line": 252,
"column": 19
}
}
@@ -21655,31 +22399,31 @@
"type": "Identifier",
"name": "async_sort",
"range": [
- 8868,
- 8878
+ 9119,
+ 9129
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 20
},
"end": {
- "line": 244,
+ "line": 252,
"column": 30
}
}
},
"range": [
- 8860,
- 8878
+ 9111,
+ 9129
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 12
},
"end": {
- "line": 244,
+ "line": 252,
"column": 30
}
}
@@ -21689,46 +22433,46 @@
"value": true,
"raw": "true",
"range": [
- 8881,
- 8885
+ 9132,
+ 9136
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 33
},
"end": {
- "line": 244,
+ "line": 252,
"column": 37
}
}
},
"range": [
- 8860,
- 8885
+ 9111,
+ 9136
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 12
},
"end": {
- "line": 244,
+ "line": 252,
"column": 37
}
}
},
"range": [
- 8860,
- 8886
+ 9111,
+ 9137
],
"loc": {
"start": {
- "line": 244,
+ "line": 252,
"column": 12
},
"end": {
- "line": 244,
+ "line": 252,
"column": 38
}
}
@@ -21748,16 +22492,16 @@
"type": "Identifier",
"name": "sort",
"range": [
- 8899,
- 8903
+ 9150,
+ 9154
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 12
},
"end": {
- "line": 245,
+ "line": 253,
"column": 16
}
}
@@ -21767,31 +22511,31 @@
"value": 0,
"raw": "0",
"range": [
- 8904,
- 8905
+ 9155,
+ 9156
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 17
},
"end": {
- "line": 245,
+ "line": 253,
"column": 18
}
}
},
"range": [
- 8899,
- 8906
+ 9150,
+ 9157
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 12
},
"end": {
- "line": 245,
+ "line": 253,
"column": 19
}
}
@@ -21800,31 +22544,31 @@
"type": "Identifier",
"name": "trigger_ids",
"range": [
- 8907,
- 8918
+ 9158,
+ 9169
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 20
},
"end": {
- "line": 245,
+ "line": 253,
"column": 31
}
}
},
"range": [
- 8899,
- 8918
+ 9150,
+ 9169
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 12
},
"end": {
- "line": 245,
+ "line": 253,
"column": 31
}
}
@@ -21833,78 +22577,78 @@
"type": "Identifier",
"name": "sortTriggers",
"range": [
- 8921,
- 8933
+ 9172,
+ 9184
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 34
},
"end": {
- "line": 245,
+ "line": 253,
"column": 46
}
}
},
"range": [
- 8899,
- 8933
+ 9150,
+ 9184
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 12
},
"end": {
- "line": 245,
+ "line": 253,
"column": 46
}
}
},
"range": [
- 8899,
- 8934
+ 9150,
+ 9185
],
"loc": {
"start": {
- "line": 245,
+ "line": 253,
"column": 12
},
"end": {
- "line": 245,
+ "line": 253,
"column": 47
}
}
}
],
"range": [
- 8846,
- 8944
+ 9097,
+ 9195
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 29
},
"end": {
- "line": 246,
+ "line": 254,
"column": 9
}
}
},
"alternate": null,
"range": [
- 8825,
- 8944
+ 9076,
+ 9195
],
"loc": {
"start": {
- "line": 243,
+ "line": 251,
"column": 8
},
"end": {
- "line": 246,
+ "line": 254,
"column": 9
}
},
@@ -21913,16 +22657,16 @@
"type": "Line",
"value": "Cols generation for all browsers excepted IE<=7",
"range": [
- 8954,
- 9003
+ 9205,
+ 9254
],
"loc": {
"start": {
- "line": 248,
+ "line": 256,
"column": 8
},
"end": {
- "line": 248,
+ "line": 256,
"column": 57
}
}
@@ -21940,16 +22684,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9012,
- 9016
+ 9263,
+ 9267
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 8
},
"end": {
- "line": 249,
+ "line": 257,
"column": 12
}
}
@@ -21958,31 +22702,31 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 9017,
- 9029
+ 9268,
+ 9280
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 13
},
"end": {
- "line": 249,
+ "line": 257,
"column": 25
}
}
},
"range": [
- 9012,
- 9029
+ 9263,
+ 9280
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 8
},
"end": {
- "line": 249,
+ "line": 257,
"column": 25
}
}
@@ -22004,16 +22748,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9032,
- 9035
+ 9283,
+ 9286
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 31
}
}
@@ -22022,31 +22766,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 9036,
- 9039
+ 9287,
+ 9290
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 32
},
"end": {
- "line": 249,
+ "line": 257,
"column": 35
}
}
},
"range": [
- 9032,
- 9039
+ 9283,
+ 9290
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 35
}
}
@@ -22056,16 +22800,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 9040,
- 9043
+ 9291,
+ 9294
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 36
},
"end": {
- "line": 249,
+ "line": 257,
"column": 39
}
}
@@ -22075,32 +22819,32 @@
"value": "col",
"raw": "'col'",
"range": [
- 9045,
- 9050
+ 9296,
+ 9301
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 41
},
"end": {
- "line": 249,
+ "line": 257,
"column": 46
}
}
}
],
"range": [
- 9032,
- 9051
+ 9283,
+ 9302
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 47
}
}
@@ -22109,31 +22853,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 9052,
- 9058
+ 9303,
+ 9309
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 48
},
"end": {
- "line": 249,
+ "line": 257,
"column": 54
}
}
},
"range": [
- 9032,
- 9058
+ 9283,
+ 9309
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 54
}
}
@@ -22143,31 +22887,31 @@
"value": 0,
"raw": "0",
"range": [
- 9061,
- 9062
+ 9312,
+ 9313
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 57
},
"end": {
- "line": 249,
+ "line": 257,
"column": 58
}
}
},
"range": [
- 9032,
- 9062
+ 9283,
+ 9313
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 58
}
}
@@ -22177,16 +22921,16 @@
"value": true,
"raw": "true",
"range": [
- 9065,
- 9069
+ 9316,
+ 9320
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 61
},
"end": {
- "line": 249,
+ "line": 257,
"column": 65
}
}
@@ -22196,61 +22940,61 @@
"value": false,
"raw": "false",
"range": [
- 9072,
- 9077
+ 9323,
+ 9328
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 68
},
"end": {
- "line": 249,
+ "line": 257,
"column": 73
}
}
},
"range": [
- 9032,
- 9077
+ 9283,
+ 9328
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 28
},
"end": {
- "line": 249,
+ "line": 257,
"column": 73
}
}
},
"range": [
- 9012,
- 9077
+ 9263,
+ 9328
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 8
},
"end": {
- "line": 249,
+ "line": 257,
"column": 73
}
}
},
"range": [
- 9012,
- 9078
+ 9263,
+ 9329
],
"loc": {
"start": {
- "line": 249,
+ "line": 257,
"column": 8
},
"end": {
- "line": 249,
+ "line": 257,
"column": 74
}
},
@@ -22259,16 +23003,16 @@
"type": "Line",
"value": "Cols generation for all browsers excepted IE<=7",
"range": [
- 8954,
- 9003
+ 9205,
+ 9254
],
"loc": {
"start": {
- "line": 248,
+ "line": 256,
"column": 8
},
"end": {
- "line": 248,
+ "line": 256,
"column": 57
}
}
@@ -22279,16 +23023,16 @@
"type": "Line",
"value": "Col elements are enough to keep column widths after sorting and",
"range": [
- 9088,
- 9153
+ 9339,
+ 9404
],
"loc": {
"start": {
- "line": 251,
+ "line": 259,
"column": 8
},
"end": {
- "line": 251,
+ "line": 259,
"column": 73
}
}
@@ -22297,16 +23041,16 @@
"type": "Line",
"value": "filtering",
"range": [
- 9162,
- 9173
+ 9413,
+ 9424
],
"loc": {
"start": {
- "line": 252,
+ "line": 260,
"column": 8
},
"end": {
- "line": 252,
+ "line": 260,
"column": 19
}
}
@@ -22322,16 +23066,16 @@
"type": "Identifier",
"name": "createColTags",
"range": [
- 9186,
- 9199
+ 9437,
+ 9450
],
"loc": {
"start": {
- "line": 253,
+ "line": 261,
"column": 12
},
"end": {
- "line": 253,
+ "line": 261,
"column": 25
}
}
@@ -22354,16 +23098,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 9234,
- 9235
+ 9485,
+ 9486
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 20
},
"end": {
- "line": 254,
+ "line": 262,
"column": 21
}
}
@@ -22378,16 +23122,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9237,
- 9239
+ 9488,
+ 9490
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 23
},
"end": {
- "line": 254,
+ "line": 262,
"column": 25
}
}
@@ -22396,31 +23140,31 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 9240,
- 9247
+ 9491,
+ 9498
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 26
},
"end": {
- "line": 254,
+ "line": 262,
"column": 33
}
}
},
"range": [
- 9237,
- 9247
+ 9488,
+ 9498
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 23
},
"end": {
- "line": 254,
+ "line": 262,
"column": 33
}
}
@@ -22430,63 +23174,63 @@
"value": 1,
"raw": "1",
"range": [
- 9248,
- 9249
+ 9499,
+ 9500
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 34
},
"end": {
- "line": 254,
+ "line": 262,
"column": 35
}
}
},
"range": [
- 9237,
- 9249
+ 9488,
+ 9500
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 23
},
"end": {
- "line": 254,
+ "line": 262,
"column": 35
}
}
},
"range": [
- 9234,
- 9250
+ 9485,
+ 9501
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 20
},
"end": {
- "line": 254,
+ "line": 262,
"column": 36
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9230,
- 9250
+ 9481,
+ 9501
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 16
},
"end": {
- "line": 254,
+ "line": 262,
"column": 36
}
}
@@ -22498,16 +23242,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 9252,
- 9253
+ 9503,
+ 9504
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 38
},
"end": {
- "line": 254,
+ "line": 262,
"column": 39
}
}
@@ -22517,31 +23261,31 @@
"value": 0,
"raw": "0",
"range": [
- 9255,
- 9256
+ 9506,
+ 9507
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 41
},
"end": {
- "line": 254,
+ "line": 262,
"column": 42
}
}
},
"range": [
- 9252,
- 9256
+ 9503,
+ 9507
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 38
},
"end": {
- "line": 254,
+ "line": 262,
"column": 42
}
}
@@ -22553,32 +23297,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 9258,
- 9259
+ 9509,
+ 9510
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 44
},
"end": {
- "line": 254,
+ "line": 262,
"column": 45
}
}
},
"prefix": false,
"range": [
- 9258,
- 9261
+ 9509,
+ 9512
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 44
},
"end": {
- "line": 254,
+ "line": 262,
"column": 47
}
}
@@ -22595,16 +23339,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 9284,
- 9287
+ 9535,
+ 9538
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 20
},
"end": {
- "line": 255,
+ "line": 263,
"column": 23
}
}
@@ -22618,16 +23362,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9290,
- 9293
+ 9541,
+ 9544
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 26
},
"end": {
- "line": 255,
+ "line": 263,
"column": 29
}
}
@@ -22636,31 +23380,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 9294,
- 9300
+ 9545,
+ 9551
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 30
},
"end": {
- "line": 255,
+ "line": 263,
"column": 36
}
}
},
"range": [
- 9290,
- 9300
+ 9541,
+ 9551
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 26
},
"end": {
- "line": 255,
+ "line": 263,
"column": 36
}
}
@@ -22671,16 +23415,16 @@
"value": "col",
"raw": "'col'",
"range": [
- 9301,
- 9306
+ 9552,
+ 9557
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 37
},
"end": {
- "line": 255,
+ "line": 263,
"column": 42
}
}
@@ -22693,16 +23437,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 9309,
- 9313
+ 9560,
+ 9564
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 45
},
"end": {
- "line": 255,
+ "line": 263,
"column": 49
}
}
@@ -22720,16 +23464,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9315,
- 9317
+ 9566,
+ 9568
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 51
},
"end": {
- "line": 255,
+ "line": 263,
"column": 53
}
}
@@ -22738,31 +23482,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 9318,
- 9320
+ 9569,
+ 9571
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 54
},
"end": {
- "line": 255,
+ "line": 263,
"column": 56
}
}
},
"range": [
- 9315,
- 9320
+ 9566,
+ 9571
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 51
},
"end": {
- "line": 255,
+ "line": 263,
"column": 56
}
}
@@ -22772,31 +23516,31 @@
"value": "_col_",
"raw": "'_col_'",
"range": [
- 9321,
- 9328
+ 9572,
+ 9579
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 57
},
"end": {
- "line": 255,
+ "line": 263,
"column": 64
}
}
},
"range": [
- 9315,
- 9328
+ 9566,
+ 9579
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 51
},
"end": {
- "line": 255,
+ "line": 263,
"column": 64
}
}
@@ -22805,95 +23549,95 @@
"type": "Identifier",
"name": "k",
"range": [
- 9329,
- 9330
+ 9580,
+ 9581
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 65
},
"end": {
- "line": 255,
+ "line": 263,
"column": 66
}
}
},
"range": [
- 9315,
- 9330
+ 9566,
+ 9581
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 51
},
"end": {
- "line": 255,
+ "line": 263,
"column": 66
}
}
}
],
"range": [
- 9308,
- 9331
+ 9559,
+ 9582
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 44
},
"end": {
- "line": 255,
+ "line": 263,
"column": 67
}
}
}
],
"range": [
- 9290,
- 9332
+ 9541,
+ 9583
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 26
},
"end": {
- "line": 255,
+ "line": 263,
"column": 68
}
}
},
"range": [
- 9284,
- 9332
+ 9535,
+ 9583
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 20
},
"end": {
- "line": 255,
+ "line": 263,
"column": 68
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9280,
- 9333
+ 9531,
+ 9584
],
"loc": {
"start": {
- "line": 255,
+ "line": 263,
"column": 16
},
"end": {
- "line": 255,
+ "line": 263,
"column": 69
}
}
@@ -22909,16 +23653,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 9350,
- 9353
+ 9601,
+ 9604
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 16
},
"end": {
- "line": 256,
+ "line": 264,
"column": 19
}
}
@@ -22927,31 +23671,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 9354,
- 9366
+ 9605,
+ 9617
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 20
},
"end": {
- "line": 256,
+ "line": 264,
"column": 32
}
}
},
"range": [
- 9350,
- 9366
+ 9601,
+ 9617
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 16
},
"end": {
- "line": 256,
+ "line": 264,
"column": 32
}
}
@@ -22961,16 +23705,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 9367,
- 9370
+ 9618,
+ 9621
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 33
},
"end": {
- "line": 256,
+ "line": 264,
"column": 36
}
}
@@ -22982,16 +23726,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 9372,
- 9375
+ 9623,
+ 9626
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 38
},
"end": {
- "line": 256,
+ "line": 264,
"column": 41
}
}
@@ -23000,62 +23744,62 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 9376,
- 9386
+ 9627,
+ 9637
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 42
},
"end": {
- "line": 256,
+ "line": 264,
"column": 52
}
}
},
"range": [
- 9372,
- 9386
+ 9623,
+ 9637
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 38
},
"end": {
- "line": 256,
+ "line": 264,
"column": 52
}
}
}
],
"range": [
- 9350,
- 9387
+ 9601,
+ 9638
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 16
},
"end": {
- "line": 256,
+ "line": 264,
"column": 53
}
}
},
"range": [
- 9350,
- 9388
+ 9601,
+ 9639
],
"loc": {
"start": {
- "line": 256,
+ "line": 264,
"column": 16
},
"end": {
- "line": 256,
+ "line": 264,
"column": 54
}
}
@@ -23075,16 +23819,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 9405,
- 9408
+ 9656,
+ 9659
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 16
},
"end": {
- "line": 257,
+ "line": 265,
"column": 19
}
}
@@ -23093,31 +23837,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 9409,
- 9414
+ 9660,
+ 9665
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 20
},
"end": {
- "line": 257,
+ "line": 265,
"column": 25
}
}
},
"range": [
- 9405,
- 9414
+ 9656,
+ 9665
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 16
},
"end": {
- "line": 257,
+ "line": 265,
"column": 25
}
}
@@ -23126,31 +23870,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 9415,
- 9420
+ 9666,
+ 9671
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 26
},
"end": {
- "line": 257,
+ "line": 265,
"column": 31
}
}
},
"range": [
- 9405,
- 9420
+ 9656,
+ 9671
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 16
},
"end": {
- "line": 257,
+ "line": 265,
"column": 31
}
}
@@ -23165,16 +23909,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9423,
- 9425
+ 9674,
+ 9676
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 34
},
"end": {
- "line": 257,
+ "line": 265,
"column": 36
}
}
@@ -23183,31 +23927,31 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 9426,
- 9435
+ 9677,
+ 9686
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 37
},
"end": {
- "line": 257,
+ "line": 265,
"column": 46
}
}
},
"range": [
- 9423,
- 9435
+ 9674,
+ 9686
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 34
},
"end": {
- "line": 257,
+ "line": 265,
"column": 46
}
}
@@ -23216,61 +23960,61 @@
"type": "Identifier",
"name": "k",
"range": [
- 9436,
- 9437
+ 9687,
+ 9688
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 47
},
"end": {
- "line": 257,
+ "line": 265,
"column": 48
}
}
},
"range": [
- 9423,
- 9438
+ 9674,
+ 9689
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 34
},
"end": {
- "line": 257,
+ "line": 265,
"column": 49
}
}
},
"range": [
- 9405,
- 9438
+ 9656,
+ 9689
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 16
},
"end": {
- "line": 257,
+ "line": 265,
"column": 49
}
}
},
"range": [
- 9405,
- 9439
+ 9656,
+ 9690
],
"loc": {
"start": {
- "line": 257,
+ "line": 265,
"column": 16
},
"end": {
- "line": 257,
+ "line": 265,
"column": 50
}
}
@@ -23289,16 +24033,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9456,
- 9460
+ 9707,
+ 9711
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 16
},
"end": {
- "line": 258,
+ "line": 266,
"column": 20
}
}
@@ -23307,31 +24051,31 @@
"type": "Identifier",
"name": "gridColElms",
"range": [
- 9461,
- 9472
+ 9712,
+ 9723
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 21
},
"end": {
- "line": 258,
+ "line": 266,
"column": 32
}
}
},
"range": [
- 9456,
- 9472
+ 9707,
+ 9723
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 16
},
"end": {
- "line": 258,
+ "line": 266,
"column": 32
}
}
@@ -23340,31 +24084,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 9473,
- 9474
+ 9724,
+ 9725
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 33
},
"end": {
- "line": 258,
+ "line": 266,
"column": 34
}
}
},
"range": [
- 9456,
- 9475
+ 9707,
+ 9726
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 16
},
"end": {
- "line": 258,
+ "line": 266,
"column": 35
}
}
@@ -23373,77 +24117,77 @@
"type": "Identifier",
"name": "col",
"range": [
- 9478,
- 9481
+ 9729,
+ 9732
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 38
},
"end": {
- "line": 258,
+ "line": 266,
"column": 41
}
}
},
"range": [
- 9456,
- 9481
+ 9707,
+ 9732
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 16
},
"end": {
- "line": 258,
+ "line": 266,
"column": 41
}
}
},
"range": [
- 9456,
- 9482
+ 9707,
+ 9733
],
"loc": {
"start": {
- "line": 258,
+ "line": 266,
"column": 16
},
"end": {
- "line": 258,
+ "line": 266,
"column": 42
}
}
}
],
"range": [
- 9262,
- 9496
+ 9513,
+ 9747
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 48
},
"end": {
- "line": 259,
+ "line": 267,
"column": 13
}
}
},
"range": [
- 9226,
- 9496
+ 9477,
+ 9747
],
"loc": {
"start": {
- "line": 254,
+ "line": 262,
"column": 12
},
"end": {
- "line": 259,
+ "line": 267,
"column": 13
}
}
@@ -23459,16 +24203,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9509,
- 9513
+ 9760,
+ 9764
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 12
},
"end": {
- "line": 260,
+ "line": 268,
"column": 16
}
}
@@ -23477,31 +24221,31 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 9514,
- 9526
+ 9765,
+ 9777
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 17
},
"end": {
- "line": 260,
+ "line": 268,
"column": 29
}
}
},
"range": [
- 9509,
- 9526
+ 9760,
+ 9777
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 12
},
"end": {
- "line": 260,
+ "line": 268,
"column": 29
}
}
@@ -23511,62 +24255,62 @@
"value": true,
"raw": "true",
"range": [
- 9529,
- 9533
+ 9780,
+ 9784
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 32
},
"end": {
- "line": 260,
+ "line": 268,
"column": 36
}
}
},
"range": [
- 9509,
- 9533
+ 9760,
+ 9784
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 12
},
"end": {
- "line": 260,
+ "line": 268,
"column": 36
}
}
},
"range": [
- 9509,
- 9534
+ 9760,
+ 9785
],
"loc": {
"start": {
- "line": 260,
+ "line": 268,
"column": 12
},
"end": {
- "line": 260,
+ "line": 268,
"column": 37
}
}
}
],
"range": [
- 9212,
- 9544
+ 9463,
+ 9795
],
"loc": {
"start": {
- "line": 253,
+ "line": 261,
"column": 38
},
"end": {
- "line": 261,
+ "line": 269,
"column": 9
}
}
@@ -23574,48 +24318,48 @@
"generator": false,
"expression": false,
"range": [
- 9202,
- 9544
+ 9453,
+ 9795
],
"loc": {
"start": {
- "line": 253,
+ "line": 261,
"column": 28
},
"end": {
- "line": 261,
+ "line": 269,
"column": 9
}
}
},
"range": [
- 9186,
- 9544
+ 9437,
+ 9795
],
"loc": {
"start": {
- "line": 253,
+ "line": 261,
"column": 12
},
"end": {
- "line": 261,
+ "line": 269,
"column": 9
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9182,
- 9545
+ 9433,
+ 9796
],
"loc": {
"start": {
- "line": 253,
+ "line": 261,
"column": 8
},
"end": {
- "line": 261,
+ "line": 269,
"column": 10
}
},
@@ -23624,16 +24368,16 @@
"type": "Line",
"value": "Col elements are enough to keep column widths after sorting and",
"range": [
- 9088,
- 9153
+ 9339,
+ 9404
],
"loc": {
"start": {
- "line": 251,
+ "line": 259,
"column": 8
},
"end": {
- "line": 251,
+ "line": 259,
"column": 73
}
}
@@ -23642,16 +24386,16 @@
"type": "Line",
"value": "filtering",
"range": [
- 9162,
- 9173
+ 9413,
+ 9424
],
"loc": {
"start": {
- "line": 252,
+ "line": 260,
"column": 8
},
"end": {
- "line": 252,
+ "line": 260,
"column": 19
}
}
@@ -23669,16 +24413,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9559,
- 9563
+ 9810,
+ 9814
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 12
},
"end": {
- "line": 263,
+ "line": 271,
"column": 16
}
}
@@ -23687,47 +24431,47 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 9564,
- 9576
+ 9815,
+ 9827
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 17
},
"end": {
- "line": 263,
+ "line": 271,
"column": 29
}
}
},
"range": [
- 9559,
- 9576
+ 9810,
+ 9827
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 12
},
"end": {
- "line": 263,
+ "line": 271,
"column": 29
}
}
},
"prefix": true,
"range": [
- 9558,
- 9576
+ 9809,
+ 9827
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 11
},
"end": {
- "line": 263,
+ "line": 271,
"column": 29
}
}
@@ -23746,16 +24490,16 @@
"type": "Identifier",
"name": "createColTags",
"range": [
- 9591,
- 9604
+ 9842,
+ 9855
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 12
},
"end": {
- "line": 264,
+ "line": 272,
"column": 25
}
}
@@ -23764,31 +24508,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 9605,
- 9609
+ 9856,
+ 9860
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 26
},
"end": {
- "line": 264,
+ "line": 272,
"column": 30
}
}
},
"range": [
- 9591,
- 9609
+ 9842,
+ 9860
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 12
},
"end": {
- "line": 264,
+ "line": 272,
"column": 30
}
}
@@ -23797,63 +24541,63 @@
{
"type": "ThisExpression",
"range": [
- 9610,
- 9614
+ 9861,
+ 9865
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 31
},
"end": {
- "line": 264,
+ "line": 272,
"column": 35
}
}
}
],
"range": [
- 9591,
- 9615
+ 9842,
+ 9866
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 12
},
"end": {
- "line": 264,
+ "line": 272,
"column": 36
}
}
},
"range": [
- 9591,
- 9616
+ 9842,
+ 9867
],
"loc": {
"start": {
- "line": 264,
+ "line": 272,
"column": 12
},
"end": {
- "line": 264,
+ "line": 272,
"column": 37
}
}
}
],
"range": [
- 9577,
- 9626
+ 9828,
+ 9877
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 30
},
"end": {
- "line": 265,
+ "line": 273,
"column": 9
}
}
@@ -23870,16 +24614,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 9650,
- 9654
+ 9901,
+ 9905
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 16
},
"end": {
- "line": 266,
+ "line": 274,
"column": 20
}
}
@@ -23893,16 +24637,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9657,
- 9660
+ 9908,
+ 9911
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 23
},
"end": {
- "line": 266,
+ "line": 274,
"column": 26
}
}
@@ -23911,31 +24655,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 9661,
- 9664
+ 9912,
+ 9915
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 27
},
"end": {
- "line": 266,
+ "line": 274,
"column": 30
}
}
},
"range": [
- 9657,
- 9664
+ 9908,
+ 9915
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 23
},
"end": {
- "line": 266,
+ "line": 274,
"column": 30
}
}
@@ -23945,16 +24689,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 9665,
- 9668
+ 9916,
+ 9919
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 31
},
"end": {
- "line": 266,
+ "line": 274,
"column": 34
}
}
@@ -23964,64 +24708,64 @@
"value": "col",
"raw": "'col'",
"range": [
- 9670,
- 9675
+ 9921,
+ 9926
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 36
},
"end": {
- "line": 266,
+ "line": 274,
"column": 41
}
}
}
],
"range": [
- 9657,
- 9676
+ 9908,
+ 9927
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 23
},
"end": {
- "line": 266,
+ "line": 274,
"column": 42
}
}
},
"range": [
- 9650,
- 9676
+ 9901,
+ 9927
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 16
},
"end": {
- "line": 266,
+ "line": 274,
"column": 42
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9646,
- 9677
+ 9897,
+ 9928
],
"loc": {
"start": {
- "line": 266,
+ "line": 274,
"column": 12
},
"end": {
- "line": 266,
+ "line": 274,
"column": 43
}
}
@@ -24037,16 +24781,16 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9698,
- 9700
+ 9949,
+ 9951
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 20
},
"end": {
- "line": 267,
+ "line": 275,
"column": 22
}
}
@@ -24056,48 +24800,48 @@
"value": 0,
"raw": "0",
"range": [
- 9701,
- 9702
+ 9952,
+ 9953
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 23
},
"end": {
- "line": 267,
+ "line": 275,
"column": 24
}
}
},
"range": [
- 9698,
- 9702
+ 9949,
+ 9953
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 20
},
"end": {
- "line": 267,
+ "line": 275,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9694,
- 9702
+ 9945,
+ 9953
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 16
},
"end": {
- "line": 267,
+ "line": 275,
"column": 24
}
}
@@ -24109,16 +24853,16 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9704,
- 9706
+ 9955,
+ 9957
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 26
},
"end": {
- "line": 267,
+ "line": 275,
"column": 28
}
}
@@ -24130,16 +24874,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9707,
- 9709
+ 9958,
+ 9960
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 29
},
"end": {
- "line": 267,
+ "line": 275,
"column": 31
}
}
@@ -24148,46 +24892,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 9710,
- 9717
+ 9961,
+ 9968
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 32
},
"end": {
- "line": 267,
+ "line": 275,
"column": 39
}
}
},
"range": [
- 9707,
- 9717
+ 9958,
+ 9968
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 29
},
"end": {
- "line": 267,
+ "line": 275,
"column": 39
}
}
},
"range": [
- 9704,
- 9717
+ 9955,
+ 9968
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 26
},
"end": {
- "line": 267,
+ "line": 275,
"column": 39
}
}
@@ -24199,32 +24943,32 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9719,
- 9721
+ 9970,
+ 9972
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 41
},
"end": {
- "line": 267,
+ "line": 275,
"column": 43
}
}
},
"prefix": false,
"range": [
- 9719,
- 9723
+ 9970,
+ 9974
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 41
},
"end": {
- "line": 267,
+ "line": 275,
"column": 45
}
}
@@ -24246,16 +24990,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 9742,
- 9746
+ 9993,
+ 9997
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 16
},
"end": {
- "line": 268,
+ "line": 276,
"column": 20
}
}
@@ -24264,31 +25008,31 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9747,
- 9749
+ 9998,
+ 10000
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 21
},
"end": {
- "line": 268,
+ "line": 276,
"column": 23
}
}
},
"range": [
- 9742,
- 9750
+ 9993,
+ 10001
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 16
},
"end": {
- "line": 268,
+ "line": 276,
"column": 24
}
}
@@ -24297,31 +25041,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 9751,
- 9763
+ 10002,
+ 10014
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 25
},
"end": {
- "line": 268,
+ "line": 276,
"column": 37
}
}
},
"range": [
- 9742,
- 9763
+ 9993,
+ 10014
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 16
},
"end": {
- "line": 268,
+ "line": 276,
"column": 37
}
}
@@ -24332,16 +25076,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 9764,
- 9768
+ 10015,
+ 10019
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 38
},
"end": {
- "line": 268,
+ "line": 276,
"column": 42
}
}
@@ -24359,16 +25103,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9770,
- 9772
+ 10021,
+ 10023
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 44
},
"end": {
- "line": 268,
+ "line": 276,
"column": 46
}
}
@@ -24377,31 +25121,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 9773,
- 9775
+ 10024,
+ 10026
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 47
},
"end": {
- "line": 268,
+ "line": 276,
"column": 49
}
}
},
"range": [
- 9770,
- 9775
+ 10021,
+ 10026
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 44
},
"end": {
- "line": 268,
+ "line": 276,
"column": 49
}
}
@@ -24411,31 +25155,31 @@
"value": "_col_",
"raw": "'_col_'",
"range": [
- 9776,
- 9783
+ 10027,
+ 10034
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 50
},
"end": {
- "line": 268,
+ "line": 276,
"column": 57
}
}
},
"range": [
- 9770,
- 9783
+ 10021,
+ 10034
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 44
},
"end": {
- "line": 268,
+ "line": 276,
"column": 57
}
}
@@ -24444,62 +25188,62 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9784,
- 9786
+ 10035,
+ 10037
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 58
},
"end": {
- "line": 268,
+ "line": 276,
"column": 60
}
}
},
"range": [
- 9770,
- 9786
+ 10021,
+ 10037
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 44
},
"end": {
- "line": 268,
+ "line": 276,
"column": 60
}
}
}
],
"range": [
- 9742,
- 9787
+ 9993,
+ 10038
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 16
},
"end": {
- "line": 268,
+ "line": 276,
"column": 61
}
}
},
"range": [
- 9742,
- 9788
+ 9993,
+ 10039
],
"loc": {
"start": {
- "line": 268,
+ "line": 276,
"column": 16
},
"end": {
- "line": 268,
+ "line": 276,
"column": 62
}
}
@@ -24522,16 +25266,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 9805,
- 9809
+ 10056,
+ 10060
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 20
}
}
@@ -24540,31 +25284,31 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9810,
- 9812
+ 10061,
+ 10063
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 21
},
"end": {
- "line": 269,
+ "line": 277,
"column": 23
}
}
},
"range": [
- 9805,
- 9813
+ 10056,
+ 10064
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 24
}
}
@@ -24573,31 +25317,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 9814,
- 9819
+ 10065,
+ 10070
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 25
},
"end": {
- "line": 269,
+ "line": 277,
"column": 30
}
}
},
"range": [
- 9805,
- 9819
+ 10056,
+ 10070
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 30
}
}
@@ -24606,31 +25350,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 9820,
- 9825
+ 10071,
+ 10076
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 31
},
"end": {
- "line": 269,
+ "line": 277,
"column": 36
}
}
},
"range": [
- 9805,
- 9825
+ 10056,
+ 10076
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 36
}
}
@@ -24645,16 +25389,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9828,
- 9830
+ 10079,
+ 10081
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 39
},
"end": {
- "line": 269,
+ "line": 277,
"column": 41
}
}
@@ -24663,31 +25407,31 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 9831,
- 9840
+ 10082,
+ 10091
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 42
},
"end": {
- "line": 269,
+ "line": 277,
"column": 51
}
}
},
"range": [
- 9828,
- 9840
+ 10079,
+ 10091
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 39
},
"end": {
- "line": 269,
+ "line": 277,
"column": 51
}
}
@@ -24696,61 +25440,61 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9841,
- 9843
+ 10092,
+ 10094
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 52
},
"end": {
- "line": 269,
+ "line": 277,
"column": 54
}
}
},
"range": [
- 9828,
- 9844
+ 10079,
+ 10095
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 39
},
"end": {
- "line": 269,
+ "line": 277,
"column": 55
}
}
},
"range": [
- 9805,
- 9844
+ 10056,
+ 10095
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 55
}
}
},
"range": [
- 9805,
- 9845
+ 10056,
+ 10096
],
"loc": {
"start": {
- "line": 269,
+ "line": 277,
"column": 16
},
"end": {
- "line": 269,
+ "line": 277,
"column": 56
}
}
@@ -24768,16 +25512,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9862,
- 9866
+ 10113,
+ 10117
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 16
},
"end": {
- "line": 270,
+ "line": 278,
"column": 20
}
}
@@ -24786,31 +25530,31 @@
"type": "Identifier",
"name": "gridColElms",
"range": [
- 9867,
- 9878
+ 10118,
+ 10129
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 21
},
"end": {
- "line": 270,
+ "line": 278,
"column": 32
}
}
},
"range": [
- 9862,
- 9878
+ 10113,
+ 10129
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 16
},
"end": {
- "line": 270,
+ "line": 278,
"column": 32
}
}
@@ -24819,31 +25563,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 9879,
- 9883
+ 10130,
+ 10134
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 33
},
"end": {
- "line": 270,
+ "line": 278,
"column": 37
}
}
},
"range": [
- 9862,
- 9883
+ 10113,
+ 10134
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 16
},
"end": {
- "line": 270,
+ "line": 278,
"column": 37
}
}
@@ -24856,16 +25600,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 9884,
- 9888
+ 10135,
+ 10139
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 38
},
"end": {
- "line": 270,
+ "line": 278,
"column": 42
}
}
@@ -24874,124 +25618,124 @@
"type": "Identifier",
"name": "ii",
"range": [
- 9889,
- 9891
+ 10140,
+ 10142
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 43
},
"end": {
- "line": 270,
+ "line": 278,
"column": 45
}
}
},
"range": [
- 9884,
- 9892
+ 10135,
+ 10143
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 38
},
"end": {
- "line": 270,
+ "line": 278,
"column": 46
}
}
}
],
"range": [
- 9862,
- 9893
+ 10113,
+ 10144
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 16
},
"end": {
- "line": 270,
+ "line": 278,
"column": 47
}
}
},
"range": [
- 9862,
- 9894
+ 10113,
+ 10145
],
"loc": {
"start": {
- "line": 270,
+ "line": 278,
"column": 16
},
"end": {
- "line": 270,
+ "line": 278,
"column": 48
}
}
}
],
"range": [
- 9724,
- 9908
+ 9975,
+ 10159
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 46
},
"end": {
- "line": 271,
+ "line": 279,
"column": 13
}
}
},
"range": [
- 9690,
- 9908
+ 9941,
+ 10159
],
"loc": {
"start": {
- "line": 267,
+ "line": 275,
"column": 12
},
"end": {
- "line": 271,
+ "line": 279,
"column": 13
}
}
}
],
"range": [
- 9632,
- 9918
+ 9883,
+ 10169
],
"loc": {
"start": {
- "line": 265,
+ "line": 273,
"column": 15
},
"end": {
- "line": 272,
+ "line": 280,
"column": 9
}
}
},
"range": [
- 9555,
- 9918
+ 9806,
+ 10169
],
"loc": {
"start": {
- "line": 263,
+ "line": 271,
"column": 8
},
"end": {
- "line": 272,
+ "line": 280,
"column": 9
}
}
@@ -25005,16 +25749,16 @@
"type": "Identifier",
"name": "afterColResizedFn",
"range": [
- 9932,
- 9949
+ 10183,
+ 10200
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 12
},
"end": {
- "line": 274,
+ "line": 282,
"column": 29
}
}
@@ -25030,16 +25774,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 9952,
- 9957
+ 10203,
+ 10208
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 32
},
"end": {
- "line": 274,
+ "line": 282,
"column": 37
}
}
@@ -25048,31 +25792,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 9958,
- 9962
+ 10209,
+ 10213
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 38
},
"end": {
- "line": 274,
+ "line": 282,
"column": 42
}
}
},
"range": [
- 9952,
- 9962
+ 10203,
+ 10213
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 32
},
"end": {
- "line": 274,
+ "line": 282,
"column": 42
}
}
@@ -25085,16 +25829,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9963,
- 9964
+ 10214,
+ 10215
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 43
},
"end": {
- "line": 274,
+ "line": 282,
"column": 44
}
}
@@ -25103,47 +25847,47 @@
"type": "Identifier",
"name": "on_after_col_resized",
"range": [
- 9965,
- 9985
+ 10216,
+ 10236
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 45
},
"end": {
- "line": 274,
+ "line": 282,
"column": 65
}
}
},
"range": [
- 9963,
- 9985
+ 10214,
+ 10236
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 43
},
"end": {
- "line": 274,
+ "line": 282,
"column": 65
}
}
}
],
"range": [
- 9952,
- 9986
+ 10203,
+ 10237
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 32
},
"end": {
- "line": 274,
+ "line": 282,
"column": 66
}
}
@@ -25155,16 +25899,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10001,
- 10002
+ 10252,
+ 10253
],
"loc": {
"start": {
- "line": 275,
+ "line": 283,
"column": 12
},
"end": {
- "line": 275,
+ "line": 283,
"column": 13
}
}
@@ -25173,31 +25917,31 @@
"type": "Identifier",
"name": "on_after_col_resized",
"range": [
- 10003,
- 10023
+ 10254,
+ 10274
],
"loc": {
"start": {
- "line": 275,
+ "line": 283,
"column": 14
},
"end": {
- "line": 275,
+ "line": 283,
"column": 34
}
}
},
"range": [
- 10001,
- 10023
+ 10252,
+ 10274
],
"loc": {
"start": {
- "line": 275,
+ "line": 283,
"column": 12
},
"end": {
- "line": 275,
+ "line": 283,
"column": 34
}
}
@@ -25207,63 +25951,63 @@
"value": null,
"raw": "null",
"range": [
- 10026,
- 10030
+ 10277,
+ 10281
],
"loc": {
"start": {
- "line": 275,
+ "line": 283,
"column": 37
},
"end": {
- "line": 275,
+ "line": 283,
"column": 41
}
}
},
"range": [
- 9952,
- 10030
+ 10203,
+ 10281
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 32
},
"end": {
- "line": 275,
+ "line": 283,
"column": 41
}
}
},
"range": [
- 9932,
- 10030
+ 10183,
+ 10281
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 12
},
"end": {
- "line": 275,
+ "line": 283,
"column": 41
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 9928,
- 10031
+ 10179,
+ 10282
],
"loc": {
"start": {
- "line": 274,
+ "line": 282,
"column": 8
},
"end": {
- "line": 275,
+ "line": 283,
"column": 42
}
}
@@ -25280,16 +26024,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10040,
- 10041
+ 10291,
+ 10292
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 8
},
"end": {
- "line": 276,
+ "line": 284,
"column": 9
}
}
@@ -25298,31 +26042,31 @@
"type": "Identifier",
"name": "on_after_col_resized",
"range": [
- 10042,
- 10062
+ 10293,
+ 10313
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 10
},
"end": {
- "line": 276,
+ "line": 284,
"column": 30
}
}
},
"range": [
- 10040,
- 10062
+ 10291,
+ 10313
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 8
},
"end": {
- "line": 276,
+ "line": 284,
"column": 30
}
}
@@ -25335,16 +26079,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10074,
- 10075
+ 10325,
+ 10326
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 42
},
"end": {
- "line": 276,
+ "line": 284,
"column": 43
}
}
@@ -25353,16 +26097,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10077,
- 10085
+ 10328,
+ 10336
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 45
},
"end": {
- "line": 276,
+ "line": 284,
"column": 53
}
}
@@ -25380,32 +26124,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10104,
- 10112
+ 10355,
+ 10363
],
"loc": {
"start": {
- "line": 277,
+ "line": 285,
"column": 16
},
"end": {
- "line": 277,
+ "line": 285,
"column": 24
}
}
},
"prefix": true,
"range": [
- 10103,
- 10112
+ 10354,
+ 10363
],
"loc": {
"start": {
- "line": 277,
+ "line": 285,
"column": 15
},
"end": {
- "line": 277,
+ "line": 285,
"column": 24
}
}
@@ -25417,48 +26161,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 10131,
- 10138
+ 10382,
+ 10389
],
"loc": {
"start": {
- "line": 278,
+ "line": 286,
"column": 16
},
"end": {
- "line": 278,
+ "line": 286,
"column": 23
}
}
}
],
"range": [
- 10113,
- 10152
+ 10364,
+ 10403
],
"loc": {
"start": {
- "line": 277,
+ "line": 285,
"column": 25
},
"end": {
- "line": 279,
+ "line": 287,
"column": 13
}
}
},
"alternate": null,
"range": [
- 10100,
- 10152
+ 10351,
+ 10403
],
"loc": {
"start": {
- "line": 277,
+ "line": 285,
"column": 12
},
"end": {
- "line": 279,
+ "line": 287,
"column": 13
}
}
@@ -25472,16 +26216,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 10169,
- 10170
+ 10420,
+ 10421
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 16
},
"end": {
- "line": 280,
+ "line": 288,
"column": 17
}
}
@@ -25505,16 +26249,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10173,
- 10174
+ 10424,
+ 10425
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 21
}
}
@@ -25523,31 +26267,31 @@
"type": "Identifier",
"name": "crWColsRow",
"range": [
- 10175,
- 10185
+ 10426,
+ 10436
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 22
},
"end": {
- "line": 280,
+ "line": 288,
"column": 32
}
}
},
"range": [
- 10173,
- 10185
+ 10424,
+ 10436
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 32
}
}
@@ -25556,31 +26300,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 10186,
- 10191
+ 10437,
+ 10442
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 33
},
"end": {
- "line": 280,
+ "line": 288,
"column": 38
}
}
},
"range": [
- 10173,
- 10191
+ 10424,
+ 10442
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 38
}
}
@@ -25589,31 +26333,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10192,
- 10200
+ 10443,
+ 10451
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 39
},
"end": {
- "line": 280,
+ "line": 288,
"column": 47
}
}
},
"range": [
- 10173,
- 10201
+ 10424,
+ 10452
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 48
}
}
@@ -25622,31 +26366,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10202,
- 10207
+ 10453,
+ 10458
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 49
},
"end": {
- "line": 280,
+ "line": 288,
"column": 54
}
}
},
"range": [
- 10173,
- 10207
+ 10424,
+ 10458
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 54
}
}
@@ -25655,63 +26399,63 @@
"type": "Identifier",
"name": "width",
"range": [
- 10208,
- 10213
+ 10459,
+ 10464
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 55
},
"end": {
- "line": 280,
+ "line": 288,
"column": 60
}
}
},
"range": [
- 10173,
- 10213
+ 10424,
+ 10464
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 20
},
"end": {
- "line": 280,
+ "line": 288,
"column": 60
}
}
},
"range": [
- 10169,
- 10213
+ 10420,
+ 10464
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 16
},
"end": {
- "line": 280,
+ "line": 288,
"column": 60
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10165,
- 10214
+ 10416,
+ 10465
],
"loc": {
"start": {
- "line": 280,
+ "line": 288,
"column": 12
},
"end": {
- "line": 280,
+ "line": 288,
"column": 61
}
}
@@ -25725,16 +26469,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 10231,
- 10234
+ 10482,
+ 10485
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 16
},
"end": {
- "line": 281,
+ "line": 289,
"column": 19
}
}
@@ -25749,16 +26493,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10237,
- 10238
+ 10488,
+ 10489
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 22
},
"end": {
- "line": 281,
+ "line": 289,
"column": 23
}
}
@@ -25767,31 +26511,31 @@
"type": "Identifier",
"name": "gridColElms",
"range": [
- 10239,
- 10250
+ 10490,
+ 10501
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 24
},
"end": {
- "line": 281,
+ "line": 289,
"column": 35
}
}
},
"range": [
- 10237,
- 10250
+ 10488,
+ 10501
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 22
},
"end": {
- "line": 281,
+ "line": 289,
"column": 35
}
}
@@ -25800,63 +26544,63 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10251,
- 10259
+ 10502,
+ 10510
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 36
},
"end": {
- "line": 281,
+ "line": 289,
"column": 44
}
}
},
"range": [
- 10237,
- 10260
+ 10488,
+ 10511
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 22
},
"end": {
- "line": 281,
+ "line": 289,
"column": 45
}
}
},
"range": [
- 10231,
- 10260
+ 10482,
+ 10511
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 16
},
"end": {
- "line": 281,
+ "line": 289,
"column": 45
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10227,
- 10261
+ 10478,
+ 10512
],
"loc": {
"start": {
- "line": 281,
+ "line": 289,
"column": 12
},
"end": {
- "line": 281,
+ "line": 289,
"column": 46
}
}
@@ -25876,16 +26620,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 10274,
- 10277
+ 10525,
+ 10528
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 12
},
"end": {
- "line": 282,
+ "line": 290,
"column": 15
}
}
@@ -25894,31 +26638,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10278,
- 10283
+ 10529,
+ 10534
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 16
},
"end": {
- "line": 282,
+ "line": 290,
"column": 21
}
}
},
"range": [
- 10274,
- 10283
+ 10525,
+ 10534
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 12
},
"end": {
- "line": 282,
+ "line": 290,
"column": 21
}
}
@@ -25927,31 +26671,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 10284,
- 10289
+ 10535,
+ 10540
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 22
},
"end": {
- "line": 282,
+ "line": 290,
"column": 27
}
}
},
"range": [
- 10274,
- 10289
+ 10525,
+ 10540
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 12
},
"end": {
- "line": 282,
+ "line": 290,
"column": 27
}
}
@@ -25960,46 +26704,46 @@
"type": "Identifier",
"name": "w",
"range": [
- 10292,
- 10293
+ 10543,
+ 10544
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 30
},
"end": {
- "line": 282,
+ "line": 290,
"column": 31
}
}
},
"range": [
- 10274,
- 10293
+ 10525,
+ 10544
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 12
},
"end": {
- "line": 282,
+ "line": 290,
"column": 31
}
}
},
"range": [
- 10274,
- 10294
+ 10525,
+ 10545
],
"loc": {
"start": {
- "line": 282,
+ "line": 290,
"column": 12
},
"end": {
- "line": 282,
+ "line": 290,
"column": 32
}
}
@@ -26013,16 +26757,16 @@
"type": "Identifier",
"name": "thCW",
"range": [
- 10312,
- 10316
+ 10563,
+ 10567
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 16
},
"end": {
- "line": 284,
+ "line": 292,
"column": 20
}
}
@@ -26043,16 +26787,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10319,
- 10320
+ 10570,
+ 10571
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 23
},
"end": {
- "line": 284,
+ "line": 292,
"column": 24
}
}
@@ -26061,31 +26805,31 @@
"type": "Identifier",
"name": "crWColsRow",
"range": [
- 10321,
- 10331
+ 10572,
+ 10582
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 25
},
"end": {
- "line": 284,
+ "line": 292,
"column": 35
}
}
},
"range": [
- 10319,
- 10331
+ 10570,
+ 10582
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 23
},
"end": {
- "line": 284,
+ "line": 292,
"column": 35
}
}
@@ -26094,31 +26838,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 10332,
- 10337
+ 10583,
+ 10588
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 36
},
"end": {
- "line": 284,
+ "line": 292,
"column": 41
}
}
},
"range": [
- 10319,
- 10337
+ 10570,
+ 10588
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 23
},
"end": {
- "line": 284,
+ "line": 292,
"column": 41
}
}
@@ -26127,31 +26871,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10338,
- 10346
+ 10589,
+ 10597
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 42
},
"end": {
- "line": 284,
+ "line": 292,
"column": 50
}
}
},
"range": [
- 10319,
- 10347
+ 10570,
+ 10598
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 23
},
"end": {
- "line": 284,
+ "line": 292,
"column": 51
}
}
@@ -26160,63 +26904,63 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10348,
- 10359
+ 10599,
+ 10610
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 52
},
"end": {
- "line": 284,
+ "line": 292,
"column": 63
}
}
},
"range": [
- 10319,
- 10359
+ 10570,
+ 10610
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 23
},
"end": {
- "line": 284,
+ "line": 292,
"column": 63
}
}
},
"range": [
- 10312,
- 10359
+ 10563,
+ 10610
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 16
},
"end": {
- "line": 284,
+ "line": 292,
"column": 63
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10308,
- 10360
+ 10559,
+ 10611
],
"loc": {
"start": {
- "line": 284,
+ "line": 292,
"column": 12
},
"end": {
- "line": 284,
+ "line": 292,
"column": 64
}
}
@@ -26230,16 +26974,16 @@
"type": "Identifier",
"name": "tdCW",
"range": [
- 10377,
- 10381
+ 10628,
+ 10632
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 16
},
"end": {
- "line": 285,
+ "line": 293,
"column": 20
}
}
@@ -26260,16 +27004,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10384,
- 10385
+ 10635,
+ 10636
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 23
},
"end": {
- "line": 285,
+ "line": 293,
"column": 24
}
}
@@ -26278,31 +27022,31 @@
"type": "Identifier",
"name": "crWRowDataTbl",
"range": [
- 10386,
- 10399
+ 10637,
+ 10650
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 25
},
"end": {
- "line": 285,
+ "line": 293,
"column": 38
}
}
},
"range": [
- 10384,
- 10399
+ 10635,
+ 10650
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 23
},
"end": {
- "line": 285,
+ "line": 293,
"column": 38
}
}
@@ -26311,31 +27055,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 10400,
- 10405
+ 10651,
+ 10656
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 39
},
"end": {
- "line": 285,
+ "line": 293,
"column": 44
}
}
},
"range": [
- 10384,
- 10405
+ 10635,
+ 10656
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 23
},
"end": {
- "line": 285,
+ "line": 293,
"column": 44
}
}
@@ -26344,31 +27088,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10406,
- 10414
+ 10657,
+ 10665
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 45
},
"end": {
- "line": 285,
+ "line": 293,
"column": 53
}
}
},
"range": [
- 10384,
- 10415
+ 10635,
+ 10666
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 23
},
"end": {
- "line": 285,
+ "line": 293,
"column": 54
}
}
@@ -26377,63 +27121,63 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10416,
- 10427
+ 10667,
+ 10678
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 55
},
"end": {
- "line": 285,
+ "line": 293,
"column": 66
}
}
},
"range": [
- 10384,
- 10427
+ 10635,
+ 10678
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 23
},
"end": {
- "line": 285,
+ "line": 293,
"column": 66
}
}
},
"range": [
- 10377,
- 10427
+ 10628,
+ 10678
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 16
},
"end": {
- "line": 285,
+ "line": 293,
"column": 66
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10373,
- 10428
+ 10624,
+ 10679
],
"loc": {
"start": {
- "line": 285,
+ "line": 293,
"column": 12
},
"end": {
- "line": 285,
+ "line": 293,
"column": 67
}
}
@@ -26447,16 +27191,16 @@
"type": "Identifier",
"name": "thCW",
"range": [
- 10445,
- 10449
+ 10696,
+ 10700
],
"loc": {
"start": {
- "line": 287,
+ "line": 295,
"column": 15
},
"end": {
- "line": 287,
+ "line": 295,
"column": 19
}
}
@@ -26465,31 +27209,31 @@
"type": "Identifier",
"name": "tdCW",
"range": [
- 10453,
- 10457
+ 10704,
+ 10708
],
"loc": {
"start": {
- "line": 287,
+ "line": 295,
"column": 23
},
"end": {
- "line": 287,
+ "line": 295,
"column": 27
}
}
},
"range": [
- 10445,
- 10457
+ 10696,
+ 10708
],
"loc": {
"start": {
- "line": 287,
+ "line": 295,
"column": 15
},
"end": {
- "line": 287,
+ "line": 295,
"column": 27
}
}
@@ -26515,16 +27259,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10476,
- 10477
+ 10727,
+ 10728
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 17
}
}
@@ -26533,31 +27277,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 10478,
- 10485
+ 10729,
+ 10736
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 18
},
"end": {
- "line": 288,
+ "line": 296,
"column": 25
}
}
},
"range": [
- 10476,
- 10485
+ 10727,
+ 10736
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 25
}
}
@@ -26566,31 +27310,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10486,
- 10491
+ 10737,
+ 10742
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 26
},
"end": {
- "line": 288,
+ "line": 296,
"column": 31
}
}
},
"range": [
- 10476,
- 10491
+ 10727,
+ 10742
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 31
}
}
@@ -26599,31 +27343,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 10492,
- 10497
+ 10743,
+ 10748
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 32
},
"end": {
- "line": 288,
+ "line": 296,
"column": 37
}
}
},
"range": [
- 10476,
- 10497
+ 10727,
+ 10748
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 37
}
}
@@ -26638,16 +27382,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 10500,
- 10503
+ 10751,
+ 10754
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 40
},
"end": {
- "line": 288,
+ "line": 296,
"column": 43
}
}
@@ -26656,31 +27400,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10504,
- 10515
+ 10755,
+ 10766
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 44
},
"end": {
- "line": 288,
+ "line": 296,
"column": 55
}
}
},
"range": [
- 10500,
- 10515
+ 10751,
+ 10766
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 40
},
"end": {
- "line": 288,
+ "line": 296,
"column": 55
}
}
@@ -26690,93 +27434,93 @@
"value": "px",
"raw": "'px'",
"range": [
- 10516,
- 10520
+ 10767,
+ 10771
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 56
},
"end": {
- "line": 288,
+ "line": 296,
"column": 60
}
}
},
"range": [
- 10500,
- 10520
+ 10751,
+ 10771
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 40
},
"end": {
- "line": 288,
+ "line": 296,
"column": 60
}
}
},
"range": [
- 10476,
- 10520
+ 10727,
+ 10771
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 60
}
}
},
"range": [
- 10476,
- 10521
+ 10727,
+ 10772
],
"loc": {
"start": {
- "line": 288,
+ "line": 296,
"column": 16
},
"end": {
- "line": 288,
+ "line": 296,
"column": 61
}
}
}
],
"range": [
- 10458,
- 10535
+ 10709,
+ 10786
],
"loc": {
"start": {
- "line": 287,
+ "line": 295,
"column": 28
},
"end": {
- "line": 289,
+ "line": 297,
"column": 13
}
}
},
"alternate": null,
"range": [
- 10442,
- 10535
+ 10693,
+ 10786
],
"loc": {
"start": {
- "line": 287,
+ "line": 295,
"column": 12
},
"end": {
- "line": 289,
+ "line": 297,
"column": 13
}
}
@@ -26787,16 +27531,16 @@
"type": "Identifier",
"name": "afterColResizedFn",
"range": [
- 10552,
- 10569
+ 10803,
+ 10820
],
"loc": {
"start": {
- "line": 291,
+ "line": 299,
"column": 15
},
"end": {
- "line": 291,
+ "line": 299,
"column": 32
}
}
@@ -26815,16 +27559,16 @@
"type": "Identifier",
"name": "afterColResizedFn",
"range": [
- 10588,
- 10605
+ 10839,
+ 10856
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 16
},
"end": {
- "line": 292,
+ "line": 300,
"column": 33
}
}
@@ -26833,31 +27577,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 10606,
- 10610
+ 10857,
+ 10861
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 34
},
"end": {
- "line": 292,
+ "line": 300,
"column": 38
}
}
},
"range": [
- 10588,
- 10610
+ 10839,
+ 10861
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 16
},
"end": {
- "line": 292,
+ "line": 300,
"column": 38
}
}
@@ -26868,16 +27612,16 @@
"value": null,
"raw": "null",
"range": [
- 10611,
- 10615
+ 10862,
+ 10866
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 39
},
"end": {
- "line": 292,
+ "line": 300,
"column": 43
}
}
@@ -26886,16 +27630,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 10617,
- 10618
+ 10868,
+ 10869
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 45
},
"end": {
- "line": 292,
+ "line": 300,
"column": 46
}
}
@@ -26904,95 +27648,95 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 10620,
- 10628
+ 10871,
+ 10879
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 48
},
"end": {
- "line": 292,
+ "line": 300,
"column": 56
}
}
}
],
"range": [
- 10588,
- 10629
+ 10839,
+ 10880
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 16
},
"end": {
- "line": 292,
+ "line": 300,
"column": 57
}
}
},
"range": [
- 10588,
- 10630
+ 10839,
+ 10881
],
"loc": {
"start": {
- "line": 292,
+ "line": 300,
"column": 16
},
"end": {
- "line": 292,
+ "line": 300,
"column": 58
}
}
}
],
"range": [
- 10570,
- 10644
+ 10821,
+ 10895
],
"loc": {
"start": {
- "line": 291,
+ "line": 299,
"column": 33
},
"end": {
- "line": 293,
+ "line": 301,
"column": 13
}
}
},
"alternate": null,
"range": [
- 10549,
- 10644
+ 10800,
+ 10895
],
"loc": {
"start": {
- "line": 291,
+ "line": 299,
"column": 12
},
"end": {
- "line": 293,
+ "line": 301,
"column": 13
}
}
}
],
"range": [
- 10086,
- 10654
+ 10337,
+ 10905
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 54
},
"end": {
- "line": 294,
+ "line": 302,
"column": 9
}
}
@@ -27000,46 +27744,46 @@
"generator": false,
"expression": false,
"range": [
- 10065,
- 10654
+ 10316,
+ 10905
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 33
},
"end": {
- "line": 294,
+ "line": 302,
"column": 9
}
}
},
"range": [
- 10040,
- 10654
+ 10291,
+ 10905
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 8
},
"end": {
- "line": 294,
+ "line": 302,
"column": 9
}
}
},
"range": [
- 10040,
- 10655
+ 10291,
+ 10906
],
"loc": {
"start": {
- "line": 276,
+ "line": 284,
"column": 8
},
"end": {
- "line": 294,
+ "line": 302,
"column": 10
}
}
@@ -27053,16 +27797,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10668,
- 10670
+ 10919,
+ 10921
],
"loc": {
"start": {
- "line": 296,
+ "line": 304,
"column": 11
},
"end": {
- "line": 296,
+ "line": 304,
"column": 13
}
}
@@ -27071,31 +27815,31 @@
"type": "Identifier",
"name": "popupFilters",
"range": [
- 10671,
- 10683
+ 10922,
+ 10934
],
"loc": {
"start": {
- "line": 296,
+ "line": 304,
"column": 14
},
"end": {
- "line": 296,
+ "line": 304,
"column": 26
}
}
},
"range": [
- 10668,
- 10683
+ 10919,
+ 10934
],
"loc": {
"start": {
- "line": 296,
+ "line": 304,
"column": 11
},
"end": {
- "line": 296,
+ "line": 304,
"column": 26
}
}
@@ -27118,16 +27862,16 @@
"type": "Identifier",
"name": "filtersRow",
"range": [
- 10698,
- 10708
+ 10949,
+ 10959
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 12
},
"end": {
- "line": 297,
+ "line": 305,
"column": 22
}
}
@@ -27136,31 +27880,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10709,
- 10714
+ 10960,
+ 10965
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 23
},
"end": {
- "line": 297,
+ "line": 305,
"column": 28
}
}
},
"range": [
- 10698,
- 10714
+ 10949,
+ 10965
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 12
},
"end": {
- "line": 297,
+ "line": 305,
"column": 28
}
}
@@ -27169,31 +27913,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 10715,
- 10722
+ 10966,
+ 10973
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 29
},
"end": {
- "line": 297,
+ "line": 305,
"column": 36
}
}
},
"range": [
- 10698,
- 10722
+ 10949,
+ 10973
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 12
},
"end": {
- "line": 297,
+ "line": 305,
"column": 36
}
}
@@ -27203,78 +27947,78 @@
"value": "none",
"raw": "'none'",
"range": [
- 10725,
- 10731
+ 10976,
+ 10982
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 39
},
"end": {
- "line": 297,
+ "line": 305,
"column": 45
}
}
},
"range": [
- 10698,
- 10731
+ 10949,
+ 10982
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 12
},
"end": {
- "line": 297,
+ "line": 305,
"column": 45
}
}
},
"range": [
- 10698,
- 10732
+ 10949,
+ 10983
],
"loc": {
"start": {
- "line": 297,
+ "line": 305,
"column": 12
},
"end": {
- "line": 297,
+ "line": 305,
"column": 46
}
}
}
],
"range": [
- 10684,
- 10742
+ 10935,
+ 10993
],
"loc": {
"start": {
- "line": 296,
+ "line": 304,
"column": 27
},
"end": {
- "line": 298,
+ "line": 306,
"column": 9
}
}
},
"alternate": null,
"range": [
- 10665,
- 10742
+ 10916,
+ 10993
],
"loc": {
"start": {
- "line": 296,
+ "line": 304,
"column": 8
},
"end": {
- "line": 298,
+ "line": 306,
"column": 9
}
}
@@ -27291,16 +28035,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 10755,
- 10758
+ 11006,
+ 11009
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 11
},
"end": {
- "line": 300,
+ "line": 308,
"column": 14
}
}
@@ -27309,31 +28053,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10759,
- 10770
+ 11010,
+ 11021
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 15
},
"end": {
- "line": 300,
+ "line": 308,
"column": 26
}
}
},
"range": [
- 10755,
- 10770
+ 11006,
+ 11021
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 11
},
"end": {
- "line": 300,
+ "line": 308,
"column": 26
}
}
@@ -27347,16 +28091,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10775,
- 10779
+ 11026,
+ 11030
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 31
},
"end": {
- "line": 300,
+ "line": 308,
"column": 35
}
}
@@ -27365,31 +28109,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 10780,
- 10787
+ 11031,
+ 11038
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 36
},
"end": {
- "line": 300,
+ "line": 308,
"column": 43
}
}
},
"range": [
- 10775,
- 10787
+ 11026,
+ 11038
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 31
},
"end": {
- "line": 300,
+ "line": 308,
"column": 43
}
}
@@ -27398,46 +28142,46 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10788,
- 10799
+ 11039,
+ 11050
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 44
},
"end": {
- "line": 300,
+ "line": 308,
"column": 55
}
}
},
"range": [
- 10775,
- 10799
+ 11026,
+ 11050
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 31
},
"end": {
- "line": 300,
+ "line": 308,
"column": 55
}
}
},
"range": [
- 10755,
- 10799
+ 11006,
+ 11050
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 11
},
"end": {
- "line": 300,
+ "line": 308,
"column": 55
}
}
@@ -27460,16 +28204,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 10814,
- 10817
+ 11065,
+ 11068
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 12
},
"end": {
- "line": 301,
+ "line": 309,
"column": 15
}
}
@@ -27478,31 +28222,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 10818,
- 10823
+ 11069,
+ 11074
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 16
},
"end": {
- "line": 301,
+ "line": 309,
"column": 21
}
}
},
"range": [
- 10814,
- 10823
+ 11065,
+ 11074
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 12
},
"end": {
- "line": 301,
+ "line": 309,
"column": 21
}
}
@@ -27511,31 +28255,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 10824,
- 10829
+ 11075,
+ 11080
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 22
},
"end": {
- "line": 301,
+ "line": 309,
"column": 27
}
}
},
"range": [
- 10814,
- 10829
+ 11065,
+ 11080
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 12
},
"end": {
- "line": 301,
+ "line": 309,
"column": 27
}
}
@@ -27552,16 +28296,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10832,
- 10836
+ 11083,
+ 11087
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 30
},
"end": {
- "line": 301,
+ "line": 309,
"column": 34
}
}
@@ -27570,31 +28314,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 10837,
- 10844
+ 11088,
+ 11095
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 35
},
"end": {
- "line": 301,
+ "line": 309,
"column": 42
}
}
},
"range": [
- 10832,
- 10844
+ 11083,
+ 11095
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 30
},
"end": {
- "line": 301,
+ "line": 309,
"column": 42
}
}
@@ -27603,31 +28347,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 10845,
- 10856
+ 11096,
+ 11107
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 43
},
"end": {
- "line": 301,
+ "line": 309,
"column": 54
}
}
},
"range": [
- 10832,
- 10856
+ 11083,
+ 11107
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 30
},
"end": {
- "line": 301,
+ "line": 309,
"column": 54
}
}
@@ -27637,93 +28381,93 @@
"value": "px",
"raw": "'px'",
"range": [
- 10857,
- 10861
+ 11108,
+ 11112
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 55
},
"end": {
- "line": 301,
+ "line": 309,
"column": 59
}
}
},
"range": [
- 10832,
- 10861
+ 11083,
+ 11112
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 30
},
"end": {
- "line": 301,
+ "line": 309,
"column": 59
}
}
},
"range": [
- 10814,
- 10861
+ 11065,
+ 11112
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 12
},
"end": {
- "line": 301,
+ "line": 309,
"column": 59
}
}
},
"range": [
- 10814,
- 10862
+ 11065,
+ 11113
],
"loc": {
"start": {
- "line": 301,
+ "line": 309,
"column": 12
},
"end": {
- "line": 301,
+ "line": 309,
"column": 60
}
}
}
],
"range": [
- 10800,
- 10872
+ 11051,
+ 11123
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 56
},
"end": {
- "line": 302,
+ "line": 310,
"column": 9
}
}
},
"alternate": null,
"range": [
- 10752,
- 10872
+ 11003,
+ 11123
],
"loc": {
"start": {
- "line": 300,
+ "line": 308,
"column": 8
},
"end": {
- "line": 302,
+ "line": 310,
"column": 9
}
}
@@ -27739,16 +28483,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10882,
- 10886
+ 11133,
+ 11137
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 8
},
"end": {
- "line": 304,
+ "line": 312,
"column": 12
}
}
@@ -27757,31 +28501,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 10887,
- 10898
+ 11138,
+ 11149
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 13
},
"end": {
- "line": 304,
+ "line": 312,
"column": 24
}
}
},
"range": [
- 10882,
- 10898
+ 11133,
+ 11149
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 8
},
"end": {
- "line": 304,
+ "line": 312,
"column": 24
}
}
@@ -27791,62 +28535,62 @@
"value": true,
"raw": "true",
"range": [
- 10901,
- 10905
+ 11152,
+ 11156
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 27
},
"end": {
- "line": 304,
+ "line": 312,
"column": 31
}
}
},
"range": [
- 10882,
- 10905
+ 11133,
+ 11156
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 8
},
"end": {
- "line": 304,
+ "line": 312,
"column": 31
}
}
},
"range": [
- 10882,
- 10906
+ 11133,
+ 11157
],
"loc": {
"start": {
- "line": 304,
+ "line": 312,
"column": 8
},
"end": {
- "line": 304,
+ "line": 312,
"column": 32
}
}
}
],
"range": [
- 2351,
- 10912
+ 2433,
+ 11163
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 10
},
"end": {
- "line": 305,
+ "line": 313,
"column": 5
}
}
@@ -27854,16 +28598,16 @@
"generator": false,
"expression": false,
"range": [
- 2349,
- 10912
+ 2431,
+ 11163
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 8
},
"end": {
- "line": 305,
+ "line": 313,
"column": 5
}
}
@@ -27871,16 +28615,16 @@
"kind": "method",
"computed": false,
"range": [
- 2345,
- 10912
+ 2427,
+ 11163
],
"loc": {
"start": {
- "line": 62,
+ "line": 65,
"column": 4
},
"end": {
- "line": 305,
+ "line": 313,
"column": 5
}
},
@@ -27889,16 +28633,16 @@
"type": "Block",
"value": "*\n * Generates a grid with fixed headers\n ",
"range": [
- 2286,
- 2340
+ 2368,
+ 2422
],
"loc": {
"start": {
- "line": 59,
+ "line": 62,
"column": 4
},
"end": {
- "line": 61,
+ "line": 64,
"column": 7
}
}
@@ -27909,16 +28653,16 @@
"type": "Block",
"value": "*\n * Removes the grid layout\n ",
"range": [
- 10918,
- 10960
+ 11169,
+ 11211
],
"loc": {
"start": {
- "line": 307,
+ "line": 315,
"column": 4
},
"end": {
- "line": 309,
+ "line": 317,
"column": 7
}
}
@@ -27932,16 +28676,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 10965,
- 10972
+ 11216,
+ 11223
],
"loc": {
"start": {
- "line": 310,
+ "line": 318,
"column": 4
},
"end": {
- "line": 310,
+ "line": 318,
"column": 11
}
}
@@ -27962,16 +28706,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10988,
- 10990
+ 11239,
+ 11241
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 12
},
"end": {
- "line": 311,
+ "line": 319,
"column": 14
}
}
@@ -27982,16 +28726,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10993,
- 10997
+ 11244,
+ 11248
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 17
},
"end": {
- "line": 311,
+ "line": 319,
"column": 21
}
}
@@ -28000,63 +28744,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10998,
- 11000
+ 11249,
+ 11251
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 22
},
"end": {
- "line": 311,
+ "line": 319,
"column": 24
}
}
},
"range": [
- 10993,
- 11000
+ 11244,
+ 11251
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 17
},
"end": {
- "line": 311,
+ "line": 319,
"column": 24
}
}
},
"range": [
- 10988,
- 11000
+ 11239,
+ 11251
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 12
},
"end": {
- "line": 311,
+ "line": 319,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 10984,
- 11001
+ 11235,
+ 11252
],
"loc": {
"start": {
- "line": 311,
+ "line": 319,
"column": 8
},
"end": {
- "line": 311,
+ "line": 319,
"column": 25
}
}
@@ -28070,16 +28814,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 11014,
- 11017
+ 11265,
+ 11268
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 12
},
"end": {
- "line": 312,
+ "line": 320,
"column": 15
}
}
@@ -28091,16 +28835,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11020,
- 11022
+ 11271,
+ 11273
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 18
},
"end": {
- "line": 312,
+ "line": 320,
"column": 20
}
}
@@ -28109,63 +28853,63 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 11023,
- 11026
+ 11274,
+ 11277
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 21
},
"end": {
- "line": 312,
+ "line": 320,
"column": 24
}
}
},
"range": [
- 11020,
- 11026
+ 11271,
+ 11277
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 18
},
"end": {
- "line": 312,
+ "line": 320,
"column": 24
}
}
},
"range": [
- 11014,
- 11026
+ 11265,
+ 11277
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 12
},
"end": {
- "line": 312,
+ "line": 320,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11010,
- 11027
+ 11261,
+ 11278
],
"loc": {
"start": {
- "line": 312,
+ "line": 320,
"column": 8
},
"end": {
- "line": 312,
+ "line": 320,
"column": 25
}
}
@@ -28181,16 +28925,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11041,
- 11045
+ 11292,
+ 11296
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 12
},
"end": {
- "line": 314,
+ "line": 322,
"column": 16
}
}
@@ -28199,47 +28943,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 11046,
- 11057
+ 11297,
+ 11308
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 17
},
"end": {
- "line": 314,
+ "line": 322,
"column": 28
}
}
},
"range": [
- 11041,
- 11057
+ 11292,
+ 11308
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 12
},
"end": {
- "line": 314,
+ "line": 322,
"column": 28
}
}
},
"prefix": true,
"range": [
- 11040,
- 11057
+ 11291,
+ 11308
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 11
},
"end": {
- "line": 314,
+ "line": 322,
"column": 28
}
}
@@ -28251,48 +28995,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 11072,
- 11079
+ 11323,
+ 11330
],
"loc": {
"start": {
- "line": 315,
+ "line": 323,
"column": 12
},
"end": {
- "line": 315,
+ "line": 323,
"column": 19
}
}
}
],
"range": [
- 11058,
- 11089
+ 11309,
+ 11340
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 29
},
"end": {
- "line": 316,
+ "line": 324,
"column": 9
}
}
},
"alternate": null,
"range": [
- 11037,
- 11089
+ 11288,
+ 11340
],
"loc": {
"start": {
- "line": 314,
+ "line": 322,
"column": 8
},
"end": {
- "line": 316,
+ "line": 324,
"column": 9
}
}
@@ -28306,16 +29050,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 11102,
- 11103
+ 11353,
+ 11354
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 12
},
"end": {
- "line": 317,
+ "line": 325,
"column": 13
}
}
@@ -28329,16 +29073,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11106,
- 11109
+ 11357,
+ 11360
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 16
},
"end": {
- "line": 317,
+ "line": 325,
"column": 19
}
}
@@ -28347,31 +29091,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 11110,
- 11116
+ 11361,
+ 11367
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 20
},
"end": {
- "line": 317,
+ "line": 325,
"column": 26
}
}
},
"range": [
- 11106,
- 11116
+ 11357,
+ 11367
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 16
},
"end": {
- "line": 317,
+ "line": 325,
"column": 26
}
}
@@ -28381,64 +29125,64 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 11117,
- 11120
+ 11368,
+ 11371
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 27
},
"end": {
- "line": 317,
+ "line": 325,
"column": 30
}
}
}
],
"range": [
- 11106,
- 11121
+ 11357,
+ 11372
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 16
},
"end": {
- "line": 317,
+ "line": 325,
"column": 31
}
}
},
"range": [
- 11102,
- 11121
+ 11353,
+ 11372
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 12
},
"end": {
- "line": 317,
+ "line": 325,
"column": 31
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 11098,
- 11122
+ 11349,
+ 11373
],
"loc": {
"start": {
- "line": 317,
+ "line": 325,
"column": 8
},
"end": {
- "line": 317,
+ "line": 325,
"column": 32
}
}
@@ -28459,16 +29203,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11131,
- 11135
+ 11382,
+ 11386
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 12
}
}
@@ -28477,31 +29221,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 11136,
- 11147
+ 11387,
+ 11398
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 13
},
"end": {
- "line": 318,
+ "line": 326,
"column": 24
}
}
},
"range": [
- 11131,
- 11147
+ 11382,
+ 11398
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 24
}
}
@@ -28510,31 +29254,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 11148,
- 11158
+ 11399,
+ 11409
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 25
},
"end": {
- "line": 318,
+ "line": 326,
"column": 35
}
}
},
"range": [
- 11131,
- 11158
+ 11382,
+ 11409
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 35
}
}
@@ -28543,31 +29287,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 11159,
- 11171
+ 11410,
+ 11422
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 36
},
"end": {
- "line": 318,
+ "line": 326,
"column": 48
}
}
},
"range": [
- 11131,
- 11171
+ 11382,
+ 11422
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 48
}
}
@@ -28577,16 +29321,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 11172,
- 11173
+ 11423,
+ 11424
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 49
},
"end": {
- "line": 318,
+ "line": 326,
"column": 50
}
}
@@ -28597,16 +29341,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11175,
- 11179
+ 11426,
+ 11430
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 52
},
"end": {
- "line": 318,
+ "line": 326,
"column": 56
}
}
@@ -28615,62 +29359,62 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 11180,
- 11191
+ 11431,
+ 11442
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 57
},
"end": {
- "line": 318,
+ "line": 326,
"column": 68
}
}
},
"range": [
- 11175,
- 11191
+ 11426,
+ 11442
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 52
},
"end": {
- "line": 318,
+ "line": 326,
"column": 68
}
}
}
],
"range": [
- 11131,
- 11192
+ 11382,
+ 11443
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 69
}
}
},
"range": [
- 11131,
- 11193
+ 11382,
+ 11444
],
"loc": {
"start": {
- "line": 318,
+ "line": 326,
"column": 8
},
"end": {
- "line": 318,
+ "line": 326,
"column": 70
}
}
@@ -28686,16 +29430,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11202,
- 11205
+ 11453,
+ 11456
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 8
},
"end": {
- "line": 319,
+ "line": 327,
"column": 11
}
}
@@ -28704,31 +29448,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 11206,
- 11212
+ 11457,
+ 11463
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 12
},
"end": {
- "line": 319,
+ "line": 327,
"column": 18
}
}
},
"range": [
- 11202,
- 11212
+ 11453,
+ 11463
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 8
},
"end": {
- "line": 319,
+ "line": 327,
"column": 18
}
}
@@ -28740,16 +29484,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11213,
- 11217
+ 11464,
+ 11468
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 19
},
"end": {
- "line": 319,
+ "line": 327,
"column": 23
}
}
@@ -28758,62 +29502,62 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 11218,
- 11229
+ 11469,
+ 11480
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 24
},
"end": {
- "line": 319,
+ "line": 327,
"column": 35
}
}
},
"range": [
- 11213,
- 11229
+ 11464,
+ 11480
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 19
},
"end": {
- "line": 319,
+ "line": 327,
"column": 35
}
}
}
],
"range": [
- 11202,
- 11230
+ 11453,
+ 11481
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 8
},
"end": {
- "line": 319,
+ "line": 327,
"column": 36
}
}
},
"range": [
- 11202,
- 11231
+ 11453,
+ 11482
],
"loc": {
"start": {
- "line": 319,
+ "line": 327,
"column": 8
},
"end": {
- "line": 319,
+ "line": 327,
"column": 37
}
}
@@ -28829,16 +29573,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11241,
- 11245
+ 11492,
+ 11496
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 8
},
"end": {
- "line": 321,
+ "line": 329,
"column": 12
}
}
@@ -28847,31 +29591,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 11246,
- 11257
+ 11497,
+ 11508
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 13
},
"end": {
- "line": 321,
+ "line": 329,
"column": 24
}
}
},
"range": [
- 11241,
- 11257
+ 11492,
+ 11508
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 8
},
"end": {
- "line": 321,
+ "line": 329,
"column": 24
}
}
@@ -28881,46 +29625,46 @@
"value": null,
"raw": "null",
"range": [
- 11260,
- 11264
+ 11511,
+ 11515
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 27
},
"end": {
- "line": 321,
+ "line": 329,
"column": 31
}
}
},
"range": [
- 11241,
- 11264
+ 11492,
+ 11515
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 8
},
"end": {
- "line": 321,
+ "line": 329,
"column": 31
}
}
},
"range": [
- 11241,
- 11265
+ 11492,
+ 11516
],
"loc": {
"start": {
- "line": 321,
+ "line": 329,
"column": 8
},
"end": {
- "line": 321,
+ "line": 329,
"column": 32
}
}
@@ -28936,16 +29680,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11274,
- 11278
+ 11525,
+ 11529
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 8
},
"end": {
- "line": 322,
+ "line": 330,
"column": 12
}
}
@@ -28954,31 +29698,31 @@
"type": "Identifier",
"name": "headTblCont",
"range": [
- 11279,
- 11290
+ 11530,
+ 11541
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 13
},
"end": {
- "line": 322,
+ "line": 330,
"column": 24
}
}
},
"range": [
- 11274,
- 11290
+ 11525,
+ 11541
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 8
},
"end": {
- "line": 322,
+ "line": 330,
"column": 24
}
}
@@ -28988,46 +29732,46 @@
"value": null,
"raw": "null",
"range": [
- 11293,
- 11297
+ 11544,
+ 11548
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 27
},
"end": {
- "line": 322,
+ "line": 330,
"column": 31
}
}
},
"range": [
- 11274,
- 11297
+ 11525,
+ 11548
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 8
},
"end": {
- "line": 322,
+ "line": 330,
"column": 31
}
}
},
"range": [
- 11274,
- 11298
+ 11525,
+ 11549
],
"loc": {
"start": {
- "line": 322,
+ "line": 330,
"column": 8
},
"end": {
- "line": 322,
+ "line": 330,
"column": 32
}
}
@@ -29043,16 +29787,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11307,
- 11311
+ 11558,
+ 11562
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 8
},
"end": {
- "line": 323,
+ "line": 331,
"column": 12
}
}
@@ -29061,31 +29805,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 11312,
- 11319
+ 11563,
+ 11570
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 13
},
"end": {
- "line": 323,
+ "line": 331,
"column": 20
}
}
},
"range": [
- 11307,
- 11319
+ 11558,
+ 11570
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 8
},
"end": {
- "line": 323,
+ "line": 331,
"column": 20
}
}
@@ -29095,46 +29839,46 @@
"value": null,
"raw": "null",
"range": [
- 11322,
- 11326
+ 11573,
+ 11577
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 23
},
"end": {
- "line": 323,
+ "line": 331,
"column": 27
}
}
},
"range": [
- 11307,
- 11326
+ 11558,
+ 11577
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 8
},
"end": {
- "line": 323,
+ "line": 331,
"column": 27
}
}
},
"range": [
- 11307,
- 11327
+ 11558,
+ 11578
],
"loc": {
"start": {
- "line": 323,
+ "line": 331,
"column": 8
},
"end": {
- "line": 323,
+ "line": 331,
"column": 28
}
}
@@ -29150,16 +29894,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11336,
- 11340
+ 11587,
+ 11591
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 8
},
"end": {
- "line": 324,
+ "line": 332,
"column": 12
}
}
@@ -29168,31 +29912,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 11341,
- 11348
+ 11592,
+ 11599
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 13
},
"end": {
- "line": 324,
+ "line": 332,
"column": 20
}
}
},
"range": [
- 11336,
- 11348
+ 11587,
+ 11599
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 8
},
"end": {
- "line": 324,
+ "line": 332,
"column": 20
}
}
@@ -29202,46 +29946,46 @@
"value": null,
"raw": "null",
"range": [
- 11351,
- 11355
+ 11602,
+ 11606
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 23
},
"end": {
- "line": 324,
+ "line": 332,
"column": 27
}
}
},
"range": [
- 11336,
- 11355
+ 11587,
+ 11606
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 8
},
"end": {
- "line": 324,
+ "line": 332,
"column": 27
}
}
},
"range": [
- 11336,
- 11356
+ 11587,
+ 11607
],
"loc": {
"start": {
- "line": 324,
+ "line": 332,
"column": 8
},
"end": {
- "line": 324,
+ "line": 332,
"column": 28
}
}
@@ -29258,16 +30002,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 11366,
- 11369
+ 11617,
+ 11620
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 8
},
"end": {
- "line": 326,
+ "line": 334,
"column": 11
}
}
@@ -29276,31 +30020,31 @@
"type": "Identifier",
"name": "outerHTML",
"range": [
- 11370,
- 11379
+ 11621,
+ 11630
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 12
},
"end": {
- "line": 326,
+ "line": 334,
"column": 21
}
}
},
"range": [
- 11366,
- 11379
+ 11617,
+ 11630
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 8
},
"end": {
- "line": 326,
+ "line": 334,
"column": 21
}
}
@@ -29311,16 +30055,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11382,
- 11386
+ 11633,
+ 11637
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 24
},
"end": {
- "line": 326,
+ "line": 334,
"column": 28
}
}
@@ -29329,61 +30073,61 @@
"type": "Identifier",
"name": "sourceTblHtml",
"range": [
- 11387,
- 11400
+ 11638,
+ 11651
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 29
},
"end": {
- "line": 326,
+ "line": 334,
"column": 42
}
}
},
"range": [
- 11382,
- 11400
+ 11633,
+ 11651
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 24
},
"end": {
- "line": 326,
+ "line": 334,
"column": 42
}
}
},
"range": [
- 11366,
- 11400
+ 11617,
+ 11651
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 8
},
"end": {
- "line": 326,
+ "line": 334,
"column": 42
}
}
},
"range": [
- 11366,
- 11401
+ 11617,
+ 11652
],
"loc": {
"start": {
- "line": 326,
+ "line": 334,
"column": 8
},
"end": {
- "line": 326,
+ "line": 334,
"column": 43
}
},
@@ -29392,16 +30136,16 @@
"type": "Line",
"value": "needed to keep reference of table element for future usage",
"range": [
- 11410,
- 11470
+ 11661,
+ 11721
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 8
},
"end": {
- "line": 327,
+ "line": 335,
"column": 68
}
}
@@ -29422,16 +30166,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11479,
- 11483
+ 11730,
+ 11734
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 8
},
"end": {
- "line": 328,
+ "line": 336,
"column": 12
}
}
@@ -29440,31 +30184,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11484,
- 11486
+ 11735,
+ 11737
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 13
},
"end": {
- "line": 328,
+ "line": 336,
"column": 15
}
}
},
"range": [
- 11479,
- 11486
+ 11730,
+ 11737
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 8
},
"end": {
- "line": 328,
+ "line": 336,
"column": 15
}
}
@@ -29473,80 +30217,189 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 11487,
- 11490
+ 11738,
+ 11741
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 16
},
"end": {
- "line": 328,
+ "line": 336,
"column": 19
}
}
},
"range": [
- 11479,
- 11490
+ 11730,
+ 11741
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 8
},
"end": {
- "line": 328,
+ "line": 336,
"column": 19
}
}
},
"right": {
- "type": "Identifier",
- "name": "t",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 11744,
+ 11747
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 22
+ },
+ "end": {
+ "line": 336,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 11748,
+ 11750
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 26
+ },
+ "end": {
+ "line": 336,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 11744,
+ 11750
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 22
+ },
+ "end": {
+ "line": 336,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 11751,
+ 11753
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 29
+ },
+ "end": {
+ "line": 336,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 11754,
+ 11756
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 32
+ },
+ "end": {
+ "line": 336,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 11751,
+ 11756
+ ],
+ "loc": {
+ "start": {
+ "line": 336,
+ "column": 29
+ },
+ "end": {
+ "line": 336,
+ "column": 34
+ }
+ }
+ }
+ ],
"range": [
- 11493,
- 11494
+ 11744,
+ 11757
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 22
},
"end": {
- "line": 328,
- "column": 23
+ "line": 336,
+ "column": 35
}
}
},
"range": [
- 11479,
- 11494
+ 11730,
+ 11757
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 8
},
"end": {
- "line": 328,
- "column": 23
+ "line": 336,
+ "column": 35
}
}
},
"range": [
- 11479,
- 11495
+ 11730,
+ 11758
],
"loc": {
"start": {
- "line": 328,
+ "line": 336,
"column": 8
},
"end": {
- "line": 328,
- "column": 24
+ "line": 336,
+ "column": 36
}
},
"leadingComments": [
@@ -29554,16 +30407,16 @@
"type": "Line",
"value": "needed to keep reference of table element for future usage",
"range": [
- 11410,
- 11470
+ 11661,
+ 11721
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 8
},
"end": {
- "line": 327,
+ "line": 335,
"column": 68
}
}
@@ -29581,16 +30434,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11505,
- 11509
+ 11768,
+ 11772
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 8
},
"end": {
- "line": 330,
+ "line": 338,
"column": 12
}
}
@@ -29599,31 +30452,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 11510,
- 11521
+ 11773,
+ 11784
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 13
},
"end": {
- "line": 330,
+ "line": 338,
"column": 24
}
}
},
"range": [
- 11505,
- 11521
+ 11768,
+ 11784
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 8
},
"end": {
- "line": 330,
+ "line": 338,
"column": 24
}
}
@@ -29633,62 +30486,62 @@
"value": false,
"raw": "false",
"range": [
- 11524,
- 11529
+ 11787,
+ 11792
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 27
},
"end": {
- "line": 330,
+ "line": 338,
"column": 32
}
}
},
"range": [
- 11505,
- 11529
+ 11768,
+ 11792
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 8
},
"end": {
- "line": 330,
+ "line": 338,
"column": 32
}
}
},
"range": [
- 11505,
- 11530
+ 11768,
+ 11793
],
"loc": {
"start": {
- "line": 330,
+ "line": 338,
"column": 8
},
"end": {
- "line": 330,
+ "line": 338,
"column": 33
}
}
}
],
"range": [
- 10974,
- 11536
+ 11225,
+ 11799
],
"loc": {
"start": {
- "line": 310,
+ "line": 318,
"column": 13
},
"end": {
- "line": 331,
+ "line": 339,
"column": 5
}
}
@@ -29696,16 +30549,16 @@
"generator": false,
"expression": false,
"range": [
- 10972,
- 11536
+ 11223,
+ 11799
],
"loc": {
"start": {
- "line": 310,
+ "line": 318,
"column": 11
},
"end": {
- "line": 331,
+ "line": 339,
"column": 5
}
}
@@ -29713,16 +30566,16 @@
"kind": "method",
"computed": false,
"range": [
- 10965,
- 11536
+ 11216,
+ 11799
],
"loc": {
"start": {
- "line": 310,
+ "line": 318,
"column": 4
},
"end": {
- "line": 331,
+ "line": 339,
"column": 5
}
},
@@ -29731,16 +30584,16 @@
"type": "Block",
"value": "*\n * Removes the grid layout\n ",
"range": [
- 10918,
- 10960
+ 11169,
+ 11211
],
"loc": {
"start": {
- "line": 307,
+ "line": 315,
"column": 4
},
"end": {
- "line": 309,
+ "line": 317,
"column": 7
}
}
@@ -29751,7 +30604,7 @@
],
"range": [
190,
- 11538
+ 11801
],
"loc": {
"start": {
@@ -29759,14 +30612,14 @@
"column": 39
},
"end": {
- "line": 332,
+ "line": 340,
"column": 1
}
}
},
"range": [
158,
- 11538
+ 11801
],
"loc": {
"start": {
@@ -29774,7 +30627,7 @@
"column": 7
},
"end": {
- "line": 332,
+ "line": 340,
"column": 1
}
},
@@ -29785,7 +30638,7 @@
"source": null,
"range": [
151,
- 11538
+ 11801
],
"loc": {
"start": {
@@ -29793,7 +30646,7 @@
"column": 0
},
"end": {
- "line": 332,
+ "line": 340,
"column": 1
}
}
@@ -29802,7 +30655,7 @@
"sourceType": "module",
"range": [
0,
- 11538
+ 11801
],
"loc": {
"start": {
@@ -29810,7 +30663,7 @@
"column": 0
},
"end": {
- "line": 332,
+ "line": 340,
"column": 1
}
},
@@ -30122,37 +30975,73 @@
}
},
{
- "type": "Block",
- "value": "*\n * Generates a grid with fixed headers\n ",
+ "type": "Line",
+ "value": " filters flag at TF level",
"range": [
- 2286,
- 2340
+ 2284,
+ 2311
],
"loc": {
"start": {
- "line": 59,
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 58,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Generates a grid with fixed headers\n ",
+ "range": [
+ 2368,
+ 2422
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
"column": 4
},
"end": {
- "line": 61,
+ "line": 64,
"column": 7
}
}
},
+ {
+ "type": "Line",
+ "value": " Override reference rows indexes",
+ "range": [
+ 2586,
+ 2620
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 8
+ },
+ "end": {
+ "line": 74,
+ "column": 42
+ }
+ }
+ },
{
"type": "Line",
"value": " default width of 100px if column widths not set",
"range": [
- 2538,
- 2588
+ 2788,
+ 2838
],
"loc": {
"start": {
- "line": 73,
+ "line": 81,
"column": 8
},
"end": {
- "line": 73,
+ "line": 81,
"column": 58
}
}
@@ -30161,16 +31050,16 @@
"type": "Line",
"value": "initial table width",
"range": [
- 3241,
- 3262
+ 3491,
+ 3512
],
"loc": {
"start": {
- "line": 92,
+ "line": 100,
"column": 17
},
"end": {
- "line": 92,
+ "line": 100,
"column": 38
}
}
@@ -30179,16 +31068,16 @@
"type": "Line",
"value": "Main container: it will contain all the elements",
"range": [
- 3496,
- 3546
+ 3746,
+ 3796
],
"loc": {
"start": {
- "line": 102,
+ "line": 110,
"column": 8
},
"end": {
- "line": 102,
+ "line": 110,
"column": 58
}
}
@@ -30197,16 +31086,16 @@
"type": "Line",
"value": "Table container: div wrapping content table",
"range": [
- 3873,
- 3918
+ 4123,
+ 4168
],
"loc": {
"start": {
- "line": 111,
+ "line": 119,
"column": 8
},
"end": {
- "line": 111,
+ "line": 119,
"column": 53
}
}
@@ -30215,16 +31104,16 @@
"type": "Line",
"value": "In case table width is expressed in %",
"range": [
- 4515,
- 4554
+ 4765,
+ 4804
],
"loc": {
"start": {
- "line": 128,
+ "line": 136,
"column": 8
},
"end": {
- "line": 128,
+ "line": 136,
"column": 47
}
}
@@ -30233,16 +31122,16 @@
"type": "Line",
"value": "Headers table container: div wrapping headers table",
"range": [
- 4799,
- 4852
+ 5049,
+ 5102
],
"loc": {
"start": {
- "line": 137,
+ "line": 145,
"column": 8
},
"end": {
- "line": 137,
+ "line": 145,
"column": 61
}
}
@@ -30251,16 +31140,16 @@
"type": "Line",
"value": "Headers table",
"range": [
- 5264,
- 5279
+ 5514,
+ 5529
],
"loc": {
"start": {
- "line": 149,
+ "line": 157,
"column": 8
},
"end": {
- "line": 149,
+ "line": 157,
"column": 23
}
}
@@ -30269,16 +31158,16 @@
"type": "Line",
"value": "1st row should be headers row, ids are added if not set",
"range": [
- 5405,
- 5462
+ 5655,
+ 5712
],
"loc": {
"start": {
- "line": 153,
+ "line": 161,
"column": 8
},
"end": {
- "line": 153,
+ "line": 161,
"column": 65
}
}
@@ -30287,16 +31176,16 @@
"type": "Line",
"value": "Those ids are used by the sort feature",
"range": [
- 5471,
- 5511
+ 5721,
+ 5761
],
"loc": {
"start": {
- "line": 154,
+ "line": 162,
"column": 8
},
"end": {
- "line": 154,
+ "line": 162,
"column": 48
}
}
@@ -30305,16 +31194,16 @@
"type": "Line",
"value": "Filters row is created",
"range": [
- 5918,
- 5942
+ 6168,
+ 6192
],
"loc": {
"start": {
- "line": 167,
+ "line": 175,
"column": 8
},
"end": {
- "line": 167,
+ "line": 175,
"column": 32
}
}
@@ -30323,16 +31212,16 @@
"type": "Line",
"value": "Headers row are moved from content table to headers table",
"range": [
- 6387,
- 6446
+ 6637,
+ 6696
],
"loc": {
"start": {
- "line": 178,
+ "line": 186,
"column": 8
},
"end": {
- "line": 178,
+ "line": 186,
"column": 67
}
}
@@ -30341,16 +31230,16 @@
"type": "Line",
"value": "THead needs to be removed in content table for sort feature",
"range": [
- 6936,
- 6997
+ 7187,
+ 7248
],
"loc": {
"start": {
- "line": 193,
+ "line": 201,
"column": 8
},
"end": {
- "line": 193,
+ "line": 201,
"column": 69
}
}
@@ -30359,16 +31248,16 @@
"type": "Line",
"value": "Headers table style",
"range": [
- 7127,
- 7148
+ 7378,
+ 7399
],
"loc": {
"start": {
- "line": 199,
+ "line": 207,
"column": 8
},
"end": {
- "line": 199,
+ "line": 207,
"column": 29
}
}
@@ -30377,16 +31266,16 @@
"type": "Line",
"value": " this.headTbl.style.width = tbl.style.width;",
"range": [
- 7352,
- 7398
+ 7603,
+ 7649
],
"loc": {
"start": {
- "line": 204,
+ "line": 212,
"column": 8
},
"end": {
- "line": 204,
+ "line": 212,
"column": 54
}
}
@@ -30395,16 +31284,16 @@
"type": "Line",
"value": "content table without headers needs col widths to be reset",
"range": [
- 7408,
- 7468
+ 7659,
+ 7719
],
"loc": {
"start": {
- "line": 206,
+ "line": 214,
"column": 8
},
"end": {
- "line": 206,
+ "line": 214,
"column": 68
}
}
@@ -30413,16 +31302,16 @@
"type": "Line",
"value": "Headers container width",
"range": [
- 7520,
- 7545
+ 7771,
+ 7796
],
"loc": {
"start": {
- "line": 209,
+ "line": 217,
"column": 8
},
"end": {
- "line": 209,
+ "line": 217,
"column": 33
}
}
@@ -30431,16 +31320,16 @@
"type": "Line",
"value": " this.headTblCont.style.width = this.tblCont.clientWidth+'px';",
"range": [
- 7554,
- 7618
+ 7805,
+ 7869
],
"loc": {
"start": {
- "line": 210,
+ "line": 218,
"column": 8
},
"end": {
- "line": 210,
+ "line": 218,
"column": 72
}
}
@@ -30449,16 +31338,16 @@
"type": "Line",
"value": "",
"range": [
- 7658,
- 7660
+ 7909,
+ 7911
],
"loc": {
"start": {
- "line": 213,
+ "line": 221,
"column": 8
},
"end": {
- "line": 213,
+ "line": 221,
"column": 10
}
}
@@ -30467,16 +31356,16 @@
"type": "Line",
"value": "",
"range": [
- 7728,
- 7730
+ 7979,
+ 7981
],
"loc": {
"start": {
- "line": 215,
+ "line": 223,
"column": 8
},
"end": {
- "line": 215,
+ "line": 223,
"column": 10
}
}
@@ -30485,16 +31374,16 @@
"type": "Line",
"value": "scroll synchronisation",
"range": [
- 7740,
- 7764
+ 7991,
+ 8015
],
"loc": {
"start": {
- "line": 217,
+ "line": 225,
"column": 8
},
"end": {
- "line": 217,
+ "line": 225,
"column": 32
}
}
@@ -30503,16 +31392,16 @@
"type": "Line",
"value": "New pointerX calc taking into account scrollLeft",
"range": [
- 7969,
- 8019
+ 8220,
+ 8270
],
"loc": {
"start": {
- "line": 222,
+ "line": 230,
"column": 12
},
"end": {
- "line": 222,
+ "line": 230,
"column": 62
}
}
@@ -30521,16 +31410,16 @@
"type": "Line",
"value": " if(!o.isPointerXOverwritten){",
"range": [
- 8032,
- 8064
+ 8283,
+ 8315
],
"loc": {
"start": {
- "line": 223,
+ "line": 231,
"column": 12
},
"end": {
- "line": 223,
+ "line": 231,
"column": 44
}
}
@@ -30539,16 +31428,16 @@
"type": "Line",
"value": " try{",
"range": [
- 8077,
- 8088
+ 8328,
+ 8339
],
"loc": {
"start": {
- "line": 224,
+ "line": 232,
"column": 12
},
"end": {
- "line": 224,
+ "line": 232,
"column": 23
}
}
@@ -30557,52 +31446,52 @@
"type": "Line",
"value": " o.Evt.pointerX = function(evt){",
"range": [
- 8101,
- 8143
+ 8352,
+ 8394
],
"loc": {
"start": {
- "line": 225,
+ "line": 233,
"column": 12
},
"end": {
- "line": 225,
+ "line": 233,
"column": 54
}
}
},
{
"type": "Line",
- "value": " var e = evt || global.event;",
+ "value": " let e = evt || global.event;",
"range": [
- 8156,
- 8199
+ 8407,
+ 8450
],
"loc": {
"start": {
- "line": 226,
+ "line": 234,
"column": 12
},
"end": {
- "line": 226,
+ "line": 234,
"column": 55
}
}
},
{
"type": "Line",
- "value": " var bdScrollLeft = tf_StandardBody().scrollLeft +",
+ "value": " let bdScrollLeft = tf_StandardBody().scrollLeft +",
"range": [
- 8212,
- 8276
+ 8463,
+ 8527
],
"loc": {
"start": {
- "line": 227,
+ "line": 235,
"column": 12
},
"end": {
- "line": 227,
+ "line": 235,
"column": 76
}
}
@@ -30611,16 +31500,16 @@
"type": "Line",
"value": " scrollLeft;",
"range": [
- 8289,
- 8319
+ 8540,
+ 8570
],
"loc": {
"start": {
- "line": 228,
+ "line": 236,
"column": 12
},
"end": {
- "line": 228,
+ "line": 236,
"column": 42
}
}
@@ -30629,16 +31518,16 @@
"type": "Line",
"value": " return (e.pageX + scrollLeft) ||",
"range": [
- 8332,
- 8379
+ 8583,
+ 8630
],
"loc": {
"start": {
- "line": 229,
+ "line": 237,
"column": 12
},
"end": {
- "line": 229,
+ "line": 237,
"column": 59
}
}
@@ -30647,16 +31536,16 @@
"type": "Line",
"value": " (e.clientX + bdScrollLeft);",
"range": [
- 8392,
- 8438
+ 8643,
+ 8689
],
"loc": {
"start": {
- "line": 230,
+ "line": 238,
"column": 12
},
"end": {
- "line": 230,
+ "line": 238,
"column": 58
}
}
@@ -30665,16 +31554,16 @@
"type": "Line",
"value": " };",
"range": [
- 8451,
- 8464
+ 8702,
+ 8715
],
"loc": {
"start": {
- "line": 231,
+ "line": 239,
"column": 12
},
"end": {
- "line": 231,
+ "line": 239,
"column": 25
}
}
@@ -30683,16 +31572,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = true;",
"range": [
- 8477,
- 8519
+ 8728,
+ 8770
],
"loc": {
"start": {
- "line": 232,
+ "line": 240,
"column": 12
},
"end": {
- "line": 232,
+ "line": 240,
"column": 54
}
}
@@ -30701,16 +31590,16 @@
"type": "Line",
"value": " } catch(err) {",
"range": [
- 8532,
- 8553
+ 8783,
+ 8804
],
"loc": {
"start": {
- "line": 233,
+ "line": 241,
"column": 12
},
"end": {
- "line": 233,
+ "line": 241,
"column": 33
}
}
@@ -30719,16 +31608,16 @@
"type": "Line",
"value": " o.isPointerXOverwritten = false;",
"range": [
- 8566,
- 8609
+ 8817,
+ 8860
],
"loc": {
"start": {
- "line": 234,
+ "line": 242,
"column": 12
},
"end": {
- "line": 234,
+ "line": 242,
"column": 55
}
}
@@ -30737,16 +31626,16 @@
"type": "Line",
"value": " }",
"range": [
- 8622,
- 8630
+ 8873,
+ 8881
],
"loc": {
"start": {
- "line": 235,
+ "line": 243,
"column": 12
},
"end": {
- "line": 235,
+ "line": 243,
"column": 20
}
}
@@ -30755,16 +31644,16 @@
"type": "Line",
"value": " }",
"range": [
- 8643,
- 8647
+ 8894,
+ 8898
],
"loc": {
"start": {
- "line": 236,
+ "line": 244,
"column": 12
},
"end": {
- "line": 236,
+ "line": 244,
"column": 16
}
}
@@ -30773,16 +31662,16 @@
"type": "Line",
"value": "Configure sort extension if any",
"range": [
- 8669,
- 8702
+ 8920,
+ 8953
],
"loc": {
"start": {
- "line": 239,
+ "line": 247,
"column": 8
},
"end": {
- "line": 239,
+ "line": 247,
"column": 41
}
}
@@ -30791,16 +31680,16 @@
"type": "Line",
"value": "Cols generation for all browsers excepted IE<=7",
"range": [
- 8954,
- 9003
+ 9205,
+ 9254
],
"loc": {
"start": {
- "line": 248,
+ "line": 256,
"column": 8
},
"end": {
- "line": 248,
+ "line": 256,
"column": 57
}
}
@@ -30809,16 +31698,16 @@
"type": "Line",
"value": "Col elements are enough to keep column widths after sorting and",
"range": [
- 9088,
- 9153
+ 9339,
+ 9404
],
"loc": {
"start": {
- "line": 251,
+ "line": 259,
"column": 8
},
"end": {
- "line": 251,
+ "line": 259,
"column": 73
}
}
@@ -30827,16 +31716,16 @@
"type": "Line",
"value": "filtering",
"range": [
- 9162,
- 9173
+ 9413,
+ 9424
],
"loc": {
"start": {
- "line": 252,
+ "line": 260,
"column": 8
},
"end": {
- "line": 252,
+ "line": 260,
"column": 19
}
}
@@ -30845,16 +31734,16 @@
"type": "Block",
"value": "*\n * Removes the grid layout\n ",
"range": [
- 10918,
- 10960
+ 11169,
+ 11211
],
"loc": {
"start": {
- "line": 307,
+ "line": 315,
"column": 4
},
"end": {
- "line": 309,
+ "line": 317,
"column": 7
}
}
@@ -30863,16 +31752,16 @@
"type": "Line",
"value": "needed to keep reference of table element for future usage",
"range": [
- 11410,
- 11470
+ 11661,
+ 11721
],
"loc": {
"start": {
- "line": 327,
+ "line": 335,
"column": 8
},
"end": {
- "line": 327,
+ "line": 335,
"column": 68
}
}
diff --git a/docs/ast/source/src/modules/help.js.json b/docs/ast/source/src/modules/help.js.json
index fd09b76c..af9d728f 100644
--- a/docs/ast/source/src/modules/help.js.json
+++ b/docs/ast/source/src/modules/help.js.json
@@ -4053,11 +4053,266 @@
}
}
]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2584,
+ 2588
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2589,
+ 2596
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 13
+ },
+ "end": {
+ "line": 63,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2584,
+ 2596
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2597,
+ 2599
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 21
+ },
+ "end": {
+ "line": 63,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2584,
+ 2599
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "init-help",
+ "raw": "'init-help'",
+ "range": [
+ 2601,
+ 2612
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 25
+ },
+ "end": {
+ "line": 63,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 2600,
+ 2613
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 24
+ },
+ "end": {
+ "line": 63,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2620,
+ 2624
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 44
+ },
+ "end": {
+ "line": 63,
+ "column": 48
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 2625,
+ 2629
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 49
+ },
+ "end": {
+ "line": 63,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 2620,
+ 2629
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 44
+ },
+ "end": {
+ "line": 63,
+ "column": 53
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2620,
+ 2631
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 44
+ },
+ "end": {
+ "line": 63,
+ "column": 55
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2615,
+ 2631
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 39
+ },
+ "end": {
+ "line": 63,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 2584,
+ 2632
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 2584,
+ 2633
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 57
+ }
+ }
}
],
"range": [
411,
- 2580
+ 2639
],
"loc": {
"start": {
@@ -4065,7 +4320,7 @@
"column": 19
},
"end": {
- "line": 62,
+ "line": 64,
"column": 5
}
}
@@ -4074,7 +4329,7 @@
"expression": false,
"range": [
407,
- 2580
+ 2639
],
"loc": {
"start": {
@@ -4082,7 +4337,7 @@
"column": 15
},
"end": {
- "line": 62,
+ "line": 64,
"column": 5
}
}
@@ -4091,7 +4346,7 @@
"computed": false,
"range": [
396,
- 2580
+ 2639
],
"loc": {
"start": {
@@ -4099,7 +4354,7 @@
"column": 4
},
"end": {
- "line": 62,
+ "line": 64,
"column": 5
}
},
@@ -4131,16 +4386,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 2586,
- 2590
+ 2645,
+ 2649
],
"loc": {
"start": {
- "line": 64,
+ "line": 66,
"column": 4
},
"end": {
- "line": 64,
+ "line": 66,
"column": 8
}
}
@@ -4160,16 +4415,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2605,
- 2609
+ 2664,
+ 2668
],
"loc": {
"start": {
- "line": 65,
+ "line": 67,
"column": 11
},
"end": {
- "line": 65,
+ "line": 67,
"column": 15
}
}
@@ -4178,31 +4433,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2610,
- 2621
+ 2669,
+ 2680
],
"loc": {
"start": {
- "line": 65,
+ "line": 67,
"column": 16
},
"end": {
- "line": 65,
+ "line": 67,
"column": 27
}
}
},
"range": [
- 2605,
- 2621
+ 2664,
+ 2680
],
"loc": {
"start": {
- "line": 65,
+ "line": 67,
"column": 11
},
"end": {
- "line": 65,
+ "line": 67,
"column": 27
}
}
@@ -4214,48 +4469,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2636,
- 2643
+ 2695,
+ 2702
],
"loc": {
"start": {
- "line": 66,
+ "line": 68,
"column": 12
},
"end": {
- "line": 66,
+ "line": 68,
"column": 19
}
}
}
],
"range": [
- 2622,
- 2653
+ 2681,
+ 2712
],
"loc": {
"start": {
- "line": 65,
+ "line": 67,
"column": 28
},
"end": {
- "line": 67,
+ "line": 69,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2602,
- 2653
+ 2661,
+ 2712
],
"loc": {
"start": {
- "line": 65,
+ "line": 67,
"column": 8
},
"end": {
- "line": 67,
+ "line": 69,
"column": 9
}
}
@@ -4269,16 +4524,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2667,
- 2669
+ 2726,
+ 2728
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 12
},
"end": {
- "line": 69,
+ "line": 71,
"column": 14
}
}
@@ -4289,16 +4544,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2672,
- 2676
+ 2731,
+ 2735
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 17
},
"end": {
- "line": 69,
+ "line": 71,
"column": 21
}
}
@@ -4307,46 +4562,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2677,
- 2679
+ 2736,
+ 2738
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 22
},
"end": {
- "line": 69,
+ "line": 71,
"column": 24
}
}
},
"range": [
- 2672,
- 2679
+ 2731,
+ 2738
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 17
},
"end": {
- "line": 69,
+ "line": 71,
"column": 24
}
}
},
"range": [
- 2667,
- 2679
+ 2726,
+ 2738
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 12
},
"end": {
- "line": 69,
+ "line": 71,
"column": 24
}
}
@@ -4354,16 +4609,16 @@
],
"kind": "var",
"range": [
- 2663,
- 2680
+ 2722,
+ 2739
],
"loc": {
"start": {
- "line": 69,
+ "line": 71,
"column": 8
},
"end": {
- "line": 69,
+ "line": 71,
"column": 25
}
}
@@ -4377,16 +4632,16 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 2694,
- 2702
+ 2753,
+ 2761
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 12
},
"end": {
- "line": 71,
+ "line": 73,
"column": 20
}
}
@@ -4400,16 +4655,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2705,
- 2708
+ 2764,
+ 2767
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 23
},
"end": {
- "line": 71,
+ "line": 73,
"column": 26
}
}
@@ -4418,31 +4673,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 2709,
- 2715
+ 2768,
+ 2774
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 27
},
"end": {
- "line": 71,
+ "line": 73,
"column": 33
}
}
},
"range": [
- 2705,
- 2715
+ 2764,
+ 2774
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 23
},
"end": {
- "line": 71,
+ "line": 73,
"column": 33
}
}
@@ -4453,16 +4708,16 @@
"value": "span",
"raw": "'span'",
"range": [
- 2716,
- 2722
+ 2775,
+ 2781
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 34
},
"end": {
- "line": 71,
+ "line": 73,
"column": 40
}
}
@@ -4475,16 +4730,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 2725,
- 2729
+ 2784,
+ 2788
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 43
},
"end": {
- "line": 71,
+ "line": 73,
"column": 47
}
}
@@ -4498,16 +4753,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2731,
- 2735
+ 2790,
+ 2794
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 49
},
"end": {
- "line": 71,
+ "line": 73,
"column": 53
}
}
@@ -4516,31 +4771,31 @@
"type": "Identifier",
"name": "prfxHelpSpan",
"range": [
- 2736,
- 2748
+ 2795,
+ 2807
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 54
},
"end": {
- "line": 71,
+ "line": 73,
"column": 66
}
}
},
"range": [
- 2731,
- 2748
+ 2790,
+ 2807
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 49
},
"end": {
- "line": 71,
+ "line": 73,
"column": 66
}
}
@@ -4552,16 +4807,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2749,
- 2751
+ 2808,
+ 2810
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 67
},
"end": {
- "line": 71,
+ "line": 73,
"column": 69
}
}
@@ -4570,93 +4825,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 2752,
- 2754
+ 2811,
+ 2813
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 70
},
"end": {
- "line": 71,
+ "line": 73,
"column": 72
}
}
},
"range": [
- 2749,
- 2754
+ 2808,
+ 2813
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 67
},
"end": {
- "line": 71,
+ "line": 73,
"column": 72
}
}
},
"range": [
- 2731,
- 2754
+ 2790,
+ 2813
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 49
},
"end": {
- "line": 71,
+ "line": 73,
"column": 72
}
}
}
],
"range": [
- 2724,
- 2755
+ 2783,
+ 2814
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 42
},
"end": {
- "line": 71,
+ "line": 73,
"column": 73
}
}
}
],
"range": [
- 2705,
- 2756
+ 2764,
+ 2815
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 23
},
"end": {
- "line": 71,
+ "line": 73,
"column": 74
}
}
},
"range": [
- 2694,
- 2756
+ 2753,
+ 2815
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 12
},
"end": {
- "line": 71,
+ "line": 73,
"column": 74
}
}
@@ -4664,16 +4919,16 @@
],
"kind": "var",
"range": [
- 2690,
- 2757
+ 2749,
+ 2816
],
"loc": {
"start": {
- "line": 71,
+ "line": 73,
"column": 8
},
"end": {
- "line": 71,
+ "line": 73,
"column": 75
}
}
@@ -4687,16 +4942,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 2770,
- 2777
+ 2829,
+ 2836
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 12
},
"end": {
- "line": 72,
+ "line": 74,
"column": 19
}
}
@@ -4710,16 +4965,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2780,
- 2783
+ 2839,
+ 2842
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 22
},
"end": {
- "line": 72,
+ "line": 74,
"column": 25
}
}
@@ -4728,31 +4983,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 2784,
- 2790
+ 2843,
+ 2849
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 26
},
"end": {
- "line": 72,
+ "line": 74,
"column": 32
}
}
},
"range": [
- 2780,
- 2790
+ 2839,
+ 2849
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 22
},
"end": {
- "line": 72,
+ "line": 74,
"column": 32
}
}
@@ -4763,16 +5018,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 2791,
- 2796
+ 2850,
+ 2855
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 33
},
"end": {
- "line": 72,
+ "line": 74,
"column": 38
}
}
@@ -4785,16 +5040,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 2799,
- 2803
+ 2858,
+ 2862
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 41
},
"end": {
- "line": 72,
+ "line": 74,
"column": 45
}
}
@@ -4808,16 +5063,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2805,
- 2809
+ 2864,
+ 2868
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 47
},
"end": {
- "line": 72,
+ "line": 74,
"column": 51
}
}
@@ -4826,31 +5081,31 @@
"type": "Identifier",
"name": "prfxHelpDiv",
"range": [
- 2810,
- 2821
+ 2869,
+ 2880
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 52
},
"end": {
- "line": 72,
+ "line": 74,
"column": 63
}
}
},
"range": [
- 2805,
- 2821
+ 2864,
+ 2880
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 47
},
"end": {
- "line": 72,
+ "line": 74,
"column": 63
}
}
@@ -4862,16 +5117,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2822,
- 2824
+ 2881,
+ 2883
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 64
},
"end": {
- "line": 72,
+ "line": 74,
"column": 66
}
}
@@ -4880,93 +5135,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 2825,
- 2827
+ 2884,
+ 2886
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 67
},
"end": {
- "line": 72,
+ "line": 74,
"column": 69
}
}
},
"range": [
- 2822,
- 2827
+ 2881,
+ 2886
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 64
},
"end": {
- "line": 72,
+ "line": 74,
"column": 69
}
}
},
"range": [
- 2805,
- 2827
+ 2864,
+ 2886
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 47
},
"end": {
- "line": 72,
+ "line": 74,
"column": 69
}
}
}
],
"range": [
- 2798,
- 2828
+ 2857,
+ 2887
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 40
},
"end": {
- "line": 72,
+ "line": 74,
"column": 70
}
}
}
],
"range": [
- 2780,
- 2829
+ 2839,
+ 2888
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 22
},
"end": {
- "line": 72,
+ "line": 74,
"column": 71
}
}
},
"range": [
- 2770,
- 2829
+ 2829,
+ 2888
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 12
},
"end": {
- "line": 72,
+ "line": 74,
"column": 71
}
}
@@ -4974,16 +5229,16 @@
],
"kind": "var",
"range": [
- 2766,
- 2830
+ 2825,
+ 2889
],
"loc": {
"start": {
- "line": 72,
+ "line": 74,
"column": 8
},
"end": {
- "line": 72,
+ "line": 74,
"column": 72
}
},
@@ -4992,16 +5247,16 @@
"type": "Line",
"value": "help button is added to defined element",
"range": [
- 2840,
- 2881
+ 2899,
+ 2940
],
"loc": {
"start": {
- "line": 74,
+ "line": 76,
"column": 8
},
"end": {
- "line": 74,
+ "line": 76,
"column": 49
}
}
@@ -5019,16 +5274,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2894,
- 2898
+ 2953,
+ 2957
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 12
},
"end": {
- "line": 75,
+ "line": 77,
"column": 16
}
}
@@ -5037,47 +5292,47 @@
"type": "Identifier",
"name": "tgtId",
"range": [
- 2899,
- 2904
+ 2958,
+ 2963
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 17
},
"end": {
- "line": 75,
+ "line": 77,
"column": 22
}
}
},
"range": [
- 2894,
- 2904
+ 2953,
+ 2963
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 12
},
"end": {
- "line": 75,
+ "line": 77,
"column": 22
}
}
},
"prefix": true,
"range": [
- 2893,
- 2904
+ 2952,
+ 2963
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 11
},
"end": {
- "line": 75,
+ "line": 77,
"column": 22
}
}
@@ -5096,16 +5351,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2919,
- 2921
+ 2978,
+ 2980
],
"loc": {
"start": {
- "line": 76,
+ "line": 78,
"column": 12
},
"end": {
- "line": 76,
+ "line": 78,
"column": 14
}
}
@@ -5114,94 +5369,94 @@
"type": "Identifier",
"name": "setToolbar",
"range": [
- 2922,
- 2932
+ 2981,
+ 2991
],
"loc": {
"start": {
- "line": 76,
+ "line": 78,
"column": 15
},
"end": {
- "line": 76,
+ "line": 78,
"column": 25
}
}
},
"range": [
- 2919,
- 2932
+ 2978,
+ 2991
],
"loc": {
"start": {
- "line": 76,
+ "line": 78,
"column": 12
},
"end": {
- "line": 76,
+ "line": 78,
"column": 25
}
}
},
"arguments": [],
"range": [
- 2919,
- 2934
+ 2978,
+ 2993
],
"loc": {
"start": {
- "line": 76,
+ "line": 78,
"column": 12
},
"end": {
- "line": 76,
+ "line": 78,
"column": 27
}
}
},
"range": [
- 2919,
- 2935
+ 2978,
+ 2994
],
"loc": {
"start": {
- "line": 76,
+ "line": 78,
"column": 12
},
"end": {
- "line": 76,
+ "line": 78,
"column": 28
}
}
}
],
"range": [
- 2905,
- 2945
+ 2964,
+ 3004
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 23
},
"end": {
- "line": 77,
+ "line": 79,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2890,
- 2945
+ 2949,
+ 3004
],
"loc": {
"start": {
- "line": 75,
+ "line": 77,
"column": 8
},
"end": {
- "line": 77,
+ "line": 79,
"column": 9
}
},
@@ -5210,16 +5465,16 @@
"type": "Line",
"value": "help button is added to defined element",
"range": [
- 2840,
- 2881
+ 2899,
+ 2940
],
"loc": {
"start": {
- "line": 74,
+ "line": 76,
"column": 8
},
"end": {
- "line": 74,
+ "line": 76,
"column": 49
}
}
@@ -5235,16 +5490,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 2958,
- 2966
+ 3017,
+ 3025
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 12
},
"end": {
- "line": 78,
+ "line": 80,
"column": 20
}
}
@@ -5260,16 +5515,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2970,
- 2974
+ 3029,
+ 3033
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 24
},
"end": {
- "line": 78,
+ "line": 80,
"column": 28
}
}
@@ -5278,47 +5533,47 @@
"type": "Identifier",
"name": "tgtId",
"range": [
- 2975,
- 2980
+ 3034,
+ 3039
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 29
},
"end": {
- "line": 78,
+ "line": 80,
"column": 34
}
}
},
"range": [
- 2970,
- 2980
+ 3029,
+ 3039
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 24
},
"end": {
- "line": 78,
+ "line": 80,
"column": 34
}
}
},
"prefix": true,
"range": [
- 2969,
- 2980
+ 3028,
+ 3039
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 23
},
"end": {
- "line": 78,
+ "line": 80,
"column": 34
}
}
@@ -5330,16 +5585,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2983,
- 2985
+ 3042,
+ 3044
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 37
},
"end": {
- "line": 78,
+ "line": 80,
"column": 39
}
}
@@ -5348,31 +5603,31 @@
"type": "Identifier",
"name": "rDiv",
"range": [
- 2986,
- 2990
+ 3045,
+ 3049
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 40
},
"end": {
- "line": 78,
+ "line": 80,
"column": 44
}
}
},
"range": [
- 2983,
- 2990
+ 3042,
+ 3049
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 37
},
"end": {
- "line": 78,
+ "line": 80,
"column": 44
}
}
@@ -5386,16 +5641,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2993,
- 2996
+ 3052,
+ 3055
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 47
},
"end": {
- "line": 78,
+ "line": 80,
"column": 50
}
}
@@ -5404,31 +5659,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2997,
- 2999
+ 3056,
+ 3058
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 51
},
"end": {
- "line": 78,
+ "line": 80,
"column": 53
}
}
},
"range": [
- 2993,
- 2999
+ 3052,
+ 3058
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 47
},
"end": {
- "line": 78,
+ "line": 80,
"column": 53
}
}
@@ -5440,16 +5695,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3000,
- 3004
+ 3059,
+ 3063
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 54
},
"end": {
- "line": 78,
+ "line": 80,
"column": 58
}
}
@@ -5458,77 +5713,77 @@
"type": "Identifier",
"name": "tgtId",
"range": [
- 3005,
- 3010
+ 3064,
+ 3069
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 59
},
"end": {
- "line": 78,
+ "line": 80,
"column": 64
}
}
},
"range": [
- 3000,
- 3010
+ 3059,
+ 3069
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 54
},
"end": {
- "line": 78,
+ "line": 80,
"column": 64
}
}
}
],
"range": [
- 2993,
- 3011
+ 3052,
+ 3070
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 47
},
"end": {
- "line": 78,
+ "line": 80,
"column": 65
}
}
},
"range": [
- 2969,
- 3011
+ 3028,
+ 3070
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 23
},
"end": {
- "line": 78,
+ "line": 80,
"column": 65
}
}
},
"range": [
- 2958,
- 3011
+ 3017,
+ 3070
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 12
},
"end": {
- "line": 78,
+ "line": 80,
"column": 65
}
}
@@ -5536,16 +5791,16 @@
],
"kind": "var",
"range": [
- 2954,
- 3012
+ 3013,
+ 3071
],
"loc": {
"start": {
- "line": 78,
+ "line": 80,
"column": 8
},
"end": {
- "line": 78,
+ "line": 80,
"column": 66
}
}
@@ -5561,16 +5816,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 3021,
- 3029
+ 3080,
+ 3088
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 8
},
"end": {
- "line": 79,
+ "line": 81,
"column": 16
}
}
@@ -5579,31 +5834,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3030,
- 3041
+ 3089,
+ 3100
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 17
},
"end": {
- "line": 79,
+ "line": 81,
"column": 28
}
}
},
"range": [
- 3021,
- 3041
+ 3080,
+ 3100
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 8
},
"end": {
- "line": 79,
+ "line": 81,
"column": 28
}
}
@@ -5613,47 +5868,47 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 3042,
- 3050
+ 3101,
+ 3109
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 29
},
"end": {
- "line": 79,
+ "line": 81,
"column": 37
}
}
}
],
"range": [
- 3021,
- 3051
+ 3080,
+ 3110
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 8
},
"end": {
- "line": 79,
+ "line": 81,
"column": 38
}
}
},
"range": [
- 3021,
- 3052
+ 3080,
+ 3111
],
"loc": {
"start": {
- "line": 79,
+ "line": 81,
"column": 8
},
"end": {
- "line": 79,
+ "line": 81,
"column": 39
}
}
@@ -5667,16 +5922,16 @@
"type": "Identifier",
"name": "divContainer",
"range": [
- 3066,
- 3078
+ 3125,
+ 3137
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 12
},
"end": {
- "line": 81,
+ "line": 83,
"column": 24
}
}
@@ -5692,16 +5947,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3082,
- 3086
+ 3141,
+ 3145
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 28
},
"end": {
- "line": 81,
+ "line": 83,
"column": 32
}
}
@@ -5710,47 +5965,47 @@
"type": "Identifier",
"name": "contTgtId",
"range": [
- 3087,
- 3096
+ 3146,
+ 3155
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 33
},
"end": {
- "line": 81,
+ "line": 83,
"column": 42
}
}
},
"range": [
- 3082,
- 3096
+ 3141,
+ 3155
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 28
},
"end": {
- "line": 81,
+ "line": 83,
"column": 42
}
}
},
"prefix": true,
"range": [
- 3081,
- 3096
+ 3140,
+ 3155
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 27
},
"end": {
- "line": 81,
+ "line": 83,
"column": 42
}
}
@@ -5759,16 +6014,16 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 3099,
- 3107
+ 3158,
+ 3166
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 45
},
"end": {
- "line": 81,
+ "line": 83,
"column": 53
}
}
@@ -5782,16 +6037,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3110,
- 3113
+ 3169,
+ 3172
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 56
},
"end": {
- "line": 81,
+ "line": 83,
"column": 59
}
}
@@ -5800,31 +6055,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 3114,
- 3116
+ 3173,
+ 3175
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 60
},
"end": {
- "line": 81,
+ "line": 83,
"column": 62
}
}
},
"range": [
- 3110,
- 3116
+ 3169,
+ 3175
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 56
},
"end": {
- "line": 81,
+ "line": 83,
"column": 62
}
}
@@ -5836,16 +6091,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3117,
- 3121
+ 3176,
+ 3180
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 63
},
"end": {
- "line": 81,
+ "line": 83,
"column": 67
}
}
@@ -5854,77 +6109,77 @@
"type": "Identifier",
"name": "contTgtId",
"range": [
- 3122,
- 3131
+ 3181,
+ 3190
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 68
},
"end": {
- "line": 81,
+ "line": 83,
"column": 77
}
}
},
"range": [
- 3117,
- 3131
+ 3176,
+ 3190
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 63
},
"end": {
- "line": 81,
+ "line": 83,
"column": 77
}
}
}
],
"range": [
- 3110,
- 3132
+ 3169,
+ 3191
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 56
},
"end": {
- "line": 81,
+ "line": 83,
"column": 78
}
}
},
"range": [
- 3081,
- 3132
+ 3140,
+ 3191
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 27
},
"end": {
- "line": 81,
+ "line": 83,
"column": 78
}
}
},
"range": [
- 3066,
- 3132
+ 3125,
+ 3191
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 12
},
"end": {
- "line": 81,
+ "line": 83,
"column": 78
}
}
@@ -5932,16 +6187,16 @@
],
"kind": "var",
"range": [
- 3062,
- 3133
+ 3121,
+ 3192
],
"loc": {
"start": {
- "line": 81,
+ "line": 83,
"column": 8
},
"end": {
- "line": 81,
+ "line": 83,
"column": 79
}
}
@@ -5957,16 +6212,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3147,
- 3151
+ 3206,
+ 3210
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 12
},
"end": {
- "line": 83,
+ "line": 85,
"column": 16
}
}
@@ -5975,47 +6230,47 @@
"type": "Identifier",
"name": "btnHtml",
"range": [
- 3152,
- 3159
+ 3211,
+ 3218
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 17
},
"end": {
- "line": 83,
+ "line": 85,
"column": 24
}
}
},
"range": [
- 3147,
- 3159
+ 3206,
+ 3218
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 12
},
"end": {
- "line": 83,
+ "line": 85,
"column": 24
}
}
},
"prefix": true,
"range": [
- 3146,
- 3159
+ 3205,
+ 3218
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 11
},
"end": {
- "line": 83,
+ "line": 85,
"column": 24
}
}
@@ -6034,16 +6289,16 @@
"type": "Identifier",
"name": "divContainer",
"range": [
- 3174,
- 3186
+ 3233,
+ 3245
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 12
},
"end": {
- "line": 84,
+ "line": 86,
"column": 24
}
}
@@ -6052,31 +6307,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3187,
- 3198
+ 3246,
+ 3257
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 25
},
"end": {
- "line": 84,
+ "line": 86,
"column": 36
}
}
},
"range": [
- 3174,
- 3198
+ 3233,
+ 3257
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 12
},
"end": {
- "line": 84,
+ "line": 86,
"column": 36
}
}
@@ -6086,47 +6341,47 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 3199,
- 3206
+ 3258,
+ 3265
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 37
},
"end": {
- "line": 84,
+ "line": 86,
"column": 44
}
}
}
],
"range": [
- 3174,
- 3207
+ 3233,
+ 3266
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 12
},
"end": {
- "line": 84,
+ "line": 86,
"column": 45
}
}
},
"range": [
- 3174,
- 3208
+ 3233,
+ 3267
],
"loc": {
"start": {
- "line": 84,
+ "line": 86,
"column": 12
},
"end": {
- "line": 84,
+ "line": 86,
"column": 46
}
}
@@ -6140,16 +6395,16 @@
"type": "Identifier",
"name": "helplink",
"range": [
- 3225,
- 3233
+ 3284,
+ 3292
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 16
},
"end": {
- "line": 85,
+ "line": 87,
"column": 24
}
}
@@ -6163,16 +6418,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3236,
- 3239
+ 3295,
+ 3298
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 27
},
"end": {
- "line": 85,
+ "line": 87,
"column": 30
}
}
@@ -6181,31 +6436,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 3240,
- 3246
+ 3299,
+ 3305
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 31
},
"end": {
- "line": 85,
+ "line": 87,
"column": 37
}
}
},
"range": [
- 3236,
- 3246
+ 3295,
+ 3305
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 27
},
"end": {
- "line": 85,
+ "line": 87,
"column": 37
}
}
@@ -6216,16 +6471,16 @@
"value": "a",
"raw": "'a'",
"range": [
- 3247,
- 3250
+ 3306,
+ 3309
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 38
},
"end": {
- "line": 85,
+ "line": 87,
"column": 41
}
}
@@ -6238,16 +6493,16 @@
"value": "href",
"raw": "'href'",
"range": [
- 3253,
- 3259
+ 3312,
+ 3318
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 44
},
"end": {
- "line": 85,
+ "line": 87,
"column": 50
}
}
@@ -6257,63 +6512,63 @@
"value": "javascript:void(0);",
"raw": "'javascript:void(0);'",
"range": [
- 3261,
- 3282
+ 3320,
+ 3341
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 52
},
"end": {
- "line": 85,
+ "line": 87,
"column": 73
}
}
}
],
"range": [
- 3252,
- 3283
+ 3311,
+ 3342
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 43
},
"end": {
- "line": 85,
+ "line": 87,
"column": 74
}
}
}
],
"range": [
- 3236,
- 3284
+ 3295,
+ 3343
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 27
},
"end": {
- "line": 85,
+ "line": 87,
"column": 75
}
}
},
"range": [
- 3225,
- 3284
+ 3284,
+ 3343
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 16
},
"end": {
- "line": 85,
+ "line": 87,
"column": 75
}
}
@@ -6321,16 +6576,16 @@
],
"kind": "var",
"range": [
- 3221,
- 3285
+ 3280,
+ 3344
],
"loc": {
"start": {
- "line": 85,
+ "line": 87,
"column": 12
},
"end": {
- "line": 85,
+ "line": 87,
"column": 76
}
}
@@ -6347,16 +6602,16 @@
"type": "Identifier",
"name": "helplink",
"range": [
- 3298,
- 3306
+ 3357,
+ 3365
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 12
},
"end": {
- "line": 86,
+ "line": 88,
"column": 20
}
}
@@ -6365,31 +6620,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 3307,
- 3316
+ 3366,
+ 3375
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 21
},
"end": {
- "line": 86,
+ "line": 88,
"column": 30
}
}
},
"range": [
- 3298,
- 3316
+ 3357,
+ 3375
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 12
},
"end": {
- "line": 86,
+ "line": 88,
"column": 30
}
}
@@ -6400,16 +6655,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3319,
- 3323
+ 3378,
+ 3382
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 33
},
"end": {
- "line": 86,
+ "line": 88,
"column": 37
}
}
@@ -6418,61 +6673,61 @@
"type": "Identifier",
"name": "btnCssClass",
"range": [
- 3324,
- 3335
+ 3383,
+ 3394
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 38
},
"end": {
- "line": 86,
+ "line": 88,
"column": 49
}
}
},
"range": [
- 3319,
- 3335
+ 3378,
+ 3394
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 33
},
"end": {
- "line": 86,
+ "line": 88,
"column": 49
}
}
},
"range": [
- 3298,
- 3335
+ 3357,
+ 3394
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 12
},
"end": {
- "line": 86,
+ "line": 88,
"column": 49
}
}
},
"range": [
- 3298,
- 3336
+ 3357,
+ 3395
],
"loc": {
"start": {
- "line": 86,
+ "line": 88,
"column": 12
},
"end": {
- "line": 86,
+ "line": 88,
"column": 50
}
}
@@ -6488,16 +6743,16 @@
"type": "Identifier",
"name": "helplink",
"range": [
- 3349,
- 3357
+ 3408,
+ 3416
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 12
},
"end": {
- "line": 87,
+ "line": 89,
"column": 20
}
}
@@ -6506,31 +6761,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3358,
- 3369
+ 3417,
+ 3428
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 21
},
"end": {
- "line": 87,
+ "line": 89,
"column": 32
}
}
},
"range": [
- 3349,
- 3369
+ 3408,
+ 3428
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 12
},
"end": {
- "line": 87,
+ "line": 89,
"column": 32
}
}
@@ -6545,16 +6800,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3370,
- 3373
+ 3429,
+ 3432
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 33
},
"end": {
- "line": 87,
+ "line": 89,
"column": 36
}
}
@@ -6563,31 +6818,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 3374,
- 3378
+ 3433,
+ 3437
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 37
},
"end": {
- "line": 87,
+ "line": 89,
"column": 41
}
}
},
"range": [
- 3370,
- 3378
+ 3429,
+ 3437
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 33
},
"end": {
- "line": 87,
+ "line": 89,
"column": 41
}
}
@@ -6599,16 +6854,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3379,
- 3383
+ 3438,
+ 3442
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 42
},
"end": {
- "line": 87,
+ "line": 89,
"column": 46
}
}
@@ -6617,78 +6872,78 @@
"type": "Identifier",
"name": "btnText",
"range": [
- 3384,
- 3391
+ 3443,
+ 3450
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 47
},
"end": {
- "line": 87,
+ "line": 89,
"column": 54
}
}
},
"range": [
- 3379,
- 3391
+ 3438,
+ 3450
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 42
},
"end": {
- "line": 87,
+ "line": 89,
"column": 54
}
}
}
],
"range": [
- 3370,
- 3392
+ 3429,
+ 3451
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 33
},
"end": {
- "line": 87,
+ "line": 89,
"column": 55
}
}
}
],
"range": [
- 3349,
- 3393
+ 3408,
+ 3452
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 12
},
"end": {
- "line": 87,
+ "line": 89,
"column": 56
}
}
},
"range": [
- 3349,
- 3394
+ 3408,
+ 3453
],
"loc": {
"start": {
- "line": 87,
+ "line": 89,
"column": 12
},
"end": {
- "line": 87,
+ "line": 89,
"column": 57
}
}
@@ -6704,16 +6959,16 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 3407,
- 3415
+ 3466,
+ 3474
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 90,
"column": 20
}
}
@@ -6722,31 +6977,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3416,
- 3427
+ 3475,
+ 3486
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 21
},
"end": {
- "line": 88,
+ "line": 90,
"column": 32
}
}
},
"range": [
- 3407,
- 3427
+ 3466,
+ 3486
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 90,
"column": 32
}
}
@@ -6756,47 +7011,47 @@
"type": "Identifier",
"name": "helplink",
"range": [
- 3428,
- 3436
+ 3487,
+ 3495
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 33
},
"end": {
- "line": 88,
+ "line": 90,
"column": 41
}
}
}
],
"range": [
- 3407,
- 3437
+ 3466,
+ 3496
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 90,
"column": 42
}
}
},
"range": [
- 3407,
- 3438
+ 3466,
+ 3497
],
"loc": {
"start": {
- "line": 88,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 90,
"column": 43
}
}
@@ -6812,16 +7067,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 3451,
- 3456
+ 3510,
+ 3515
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 12
},
"end": {
- "line": 89,
+ "line": 91,
"column": 17
}
}
@@ -6830,31 +7085,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 3457,
- 3460
+ 3516,
+ 3519
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 18
},
"end": {
- "line": 89,
+ "line": 91,
"column": 21
}
}
},
"range": [
- 3451,
- 3460
+ 3510,
+ 3519
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 12
},
"end": {
- "line": 89,
+ "line": 91,
"column": 21
}
}
@@ -6864,16 +7119,16 @@
"type": "Identifier",
"name": "helplink",
"range": [
- 3461,
- 3469
+ 3520,
+ 3528
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 22
},
"end": {
- "line": 89,
+ "line": 91,
"column": 30
}
}
@@ -6883,16 +7138,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 3471,
- 3478
+ 3530,
+ 3537
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 32
},
"end": {
- "line": 89,
+ "line": 91,
"column": 39
}
}
@@ -6914,16 +7169,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3488,
- 3492
+ 3547,
+ 3551
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 49
},
"end": {
- "line": 89,
+ "line": 91,
"column": 53
}
}
@@ -6932,78 +7187,78 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 3493,
- 3499
+ 3552,
+ 3558
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 54
},
"end": {
- "line": 89,
+ "line": 91,
"column": 60
}
}
},
"range": [
- 3488,
- 3499
+ 3547,
+ 3558
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 49
},
"end": {
- "line": 89,
+ "line": 91,
"column": 60
}
}
},
"arguments": [],
"range": [
- 3488,
- 3501
+ 3547,
+ 3560
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 49
},
"end": {
- "line": 89,
+ "line": 91,
"column": 62
}
}
},
"range": [
- 3488,
- 3502
+ 3547,
+ 3561
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 49
},
"end": {
- "line": 89,
+ "line": 91,
"column": 63
}
}
}
],
"range": [
- 3486,
- 3504
+ 3545,
+ 3563
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 47
},
"end": {
- "line": 89,
+ "line": 91,
"column": 65
}
}
@@ -7011,63 +7266,63 @@
"generator": false,
"expression": false,
"range": [
- 3480,
- 3504
+ 3539,
+ 3563
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 41
},
"end": {
- "line": 89,
+ "line": 91,
"column": 65
}
}
}
],
"range": [
- 3451,
- 3505
+ 3510,
+ 3564
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 12
},
"end": {
- "line": 89,
+ "line": 91,
"column": 66
}
}
},
"range": [
- 3451,
- 3506
+ 3510,
+ 3565
],
"loc": {
"start": {
- "line": 89,
+ "line": 91,
"column": 12
},
"end": {
- "line": 89,
+ "line": 91,
"column": 67
}
}
}
],
"range": [
- 3160,
- 3516
+ 3219,
+ 3575
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 25
},
"end": {
- "line": 90,
+ "line": 92,
"column": 9
}
}
@@ -7087,16 +7342,16 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 3536,
- 3544
+ 3595,
+ 3603
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 12
},
"end": {
- "line": 91,
+ "line": 93,
"column": 20
}
}
@@ -7105,31 +7360,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3545,
- 3554
+ 3604,
+ 3613
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 21
},
"end": {
- "line": 91,
+ "line": 93,
"column": 30
}
}
},
"range": [
- 3536,
- 3554
+ 3595,
+ 3613
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 12
},
"end": {
- "line": 91,
+ "line": 93,
"column": 30
}
}
@@ -7140,16 +7395,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3557,
- 3561
+ 3616,
+ 3620
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 33
},
"end": {
- "line": 91,
+ "line": 93,
"column": 37
}
}
@@ -7158,61 +7413,61 @@
"type": "Identifier",
"name": "btnHtml",
"range": [
- 3562,
- 3569
+ 3621,
+ 3628
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 38
},
"end": {
- "line": 91,
+ "line": 93,
"column": 45
}
}
},
"range": [
- 3557,
- 3569
+ 3616,
+ 3628
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 33
},
"end": {
- "line": 91,
+ "line": 93,
"column": 45
}
}
},
"range": [
- 3536,
- 3569
+ 3595,
+ 3628
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 12
},
"end": {
- "line": 91,
+ "line": 93,
"column": 45
}
}
},
"range": [
- 3536,
- 3570
+ 3595,
+ 3629
],
"loc": {
"start": {
- "line": 91,
+ "line": 93,
"column": 12
},
"end": {
- "line": 91,
+ "line": 93,
"column": 46
}
}
@@ -7226,16 +7481,16 @@
"type": "Identifier",
"name": "helpEl",
"range": [
- 3587,
- 3593
+ 3646,
+ 3652
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 16
},
"end": {
- "line": 92,
+ "line": 94,
"column": 22
}
}
@@ -7247,16 +7502,16 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 3596,
- 3604
+ 3655,
+ 3663
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 25
},
"end": {
- "line": 92,
+ "line": 94,
"column": 33
}
}
@@ -7265,46 +7520,46 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 3605,
- 3615
+ 3664,
+ 3674
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 34
},
"end": {
- "line": 92,
+ "line": 94,
"column": 44
}
}
},
"range": [
- 3596,
- 3615
+ 3655,
+ 3674
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 25
},
"end": {
- "line": 92,
+ "line": 94,
"column": 44
}
}
},
"range": [
- 3587,
- 3615
+ 3646,
+ 3674
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 16
},
"end": {
- "line": 92,
+ "line": 94,
"column": 44
}
}
@@ -7312,16 +7567,16 @@
],
"kind": "var",
"range": [
- 3583,
- 3616
+ 3642,
+ 3675
],
"loc": {
"start": {
- "line": 92,
+ "line": 94,
"column": 12
},
"end": {
- "line": 92,
+ "line": 94,
"column": 45
}
}
@@ -7337,16 +7592,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 3629,
- 3634
+ 3688,
+ 3693
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 12
},
"end": {
- "line": 93,
+ "line": 95,
"column": 17
}
}
@@ -7355,31 +7610,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 3635,
- 3638
+ 3694,
+ 3697
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 18
},
"end": {
- "line": 93,
+ "line": 95,
"column": 21
}
}
},
"range": [
- 3629,
- 3638
+ 3688,
+ 3697
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 12
},
"end": {
- "line": 93,
+ "line": 95,
"column": 21
}
}
@@ -7389,16 +7644,16 @@
"type": "Identifier",
"name": "helpEl",
"range": [
- 3639,
- 3645
+ 3698,
+ 3704
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 22
},
"end": {
- "line": 93,
+ "line": 95,
"column": 28
}
}
@@ -7408,16 +7663,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 3647,
- 3654
+ 3706,
+ 3713
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 30
},
"end": {
- "line": 93,
+ "line": 95,
"column": 37
}
}
@@ -7439,16 +7694,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3664,
- 3668
+ 3723,
+ 3727
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 47
},
"end": {
- "line": 93,
+ "line": 95,
"column": 51
}
}
@@ -7457,78 +7712,78 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 3669,
- 3675
+ 3728,
+ 3734
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 52
},
"end": {
- "line": 93,
+ "line": 95,
"column": 58
}
}
},
"range": [
- 3664,
- 3675
+ 3723,
+ 3734
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 47
},
"end": {
- "line": 93,
+ "line": 95,
"column": 58
}
}
},
"arguments": [],
"range": [
- 3664,
- 3677
+ 3723,
+ 3736
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 47
},
"end": {
- "line": 93,
+ "line": 95,
"column": 60
}
}
},
"range": [
- 3664,
- 3678
+ 3723,
+ 3737
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 47
},
"end": {
- "line": 93,
+ "line": 95,
"column": 61
}
}
}
],
"range": [
- 3662,
- 3680
+ 3721,
+ 3739
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 45
},
"end": {
- "line": 93,
+ "line": 95,
"column": 63
}
}
@@ -7536,47 +7791,47 @@
"generator": false,
"expression": false,
"range": [
- 3656,
- 3680
+ 3715,
+ 3739
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 39
},
"end": {
- "line": 93,
+ "line": 95,
"column": 63
}
}
}
],
"range": [
- 3629,
- 3681
+ 3688,
+ 3740
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 12
},
"end": {
- "line": 93,
+ "line": 95,
"column": 64
}
}
},
"range": [
- 3629,
- 3682
+ 3688,
+ 3741
],
"loc": {
"start": {
- "line": 93,
+ "line": 95,
"column": 12
},
"end": {
- "line": 93,
+ "line": 95,
"column": 65
}
}
@@ -7592,16 +7847,16 @@
"type": "Identifier",
"name": "divContainer",
"range": [
- 3695,
- 3707
+ 3754,
+ 3766
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 12
},
"end": {
- "line": 94,
+ "line": 96,
"column": 24
}
}
@@ -7610,31 +7865,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3708,
- 3719
+ 3767,
+ 3778
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 25
},
"end": {
- "line": 94,
+ "line": 96,
"column": 36
}
}
},
"range": [
- 3695,
- 3719
+ 3754,
+ 3778
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 12
},
"end": {
- "line": 94,
+ "line": 96,
"column": 36
}
}
@@ -7644,78 +7899,78 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 3720,
- 3727
+ 3779,
+ 3786
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 37
},
"end": {
- "line": 94,
+ "line": 96,
"column": 44
}
}
}
],
"range": [
- 3695,
- 3728
+ 3754,
+ 3787
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 12
},
"end": {
- "line": 94,
+ "line": 96,
"column": 45
}
}
},
"range": [
- 3695,
- 3729
+ 3754,
+ 3788
],
"loc": {
"start": {
- "line": 94,
+ "line": 96,
"column": 12
},
"end": {
- "line": 94,
+ "line": 96,
"column": 46
}
}
}
],
"range": [
- 3522,
- 3739
+ 3581,
+ 3798
],
"loc": {
"start": {
- "line": 90,
+ "line": 92,
"column": 15
},
"end": {
- "line": 95,
+ "line": 97,
"column": 9
}
}
},
"range": [
- 3143,
- 3739
+ 3202,
+ 3798
],
"loc": {
"start": {
- "line": 83,
+ "line": 85,
"column": 8
},
"end": {
- "line": 95,
+ "line": 97,
"column": 9
}
}
@@ -7731,16 +7986,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3753,
- 3757
+ 3812,
+ 3816
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 12
},
"end": {
- "line": 97,
+ "line": 99,
"column": 16
}
}
@@ -7749,47 +8004,47 @@
"type": "Identifier",
"name": "instrHtml",
"range": [
- 3758,
- 3767
+ 3817,
+ 3826
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 17
},
"end": {
- "line": 97,
+ "line": 99,
"column": 26
}
}
},
"range": [
- 3753,
- 3767
+ 3812,
+ 3826
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 12
},
"end": {
- "line": 97,
+ "line": 99,
"column": 26
}
}
},
"prefix": true,
"range": [
- 3752,
- 3767
+ 3811,
+ 3826
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 11
},
"end": {
- "line": 97,
+ "line": 99,
"column": 26
}
}
@@ -7809,16 +8064,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 3782,
- 3789
+ 3841,
+ 3848
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 12
},
"end": {
- "line": 98,
+ "line": 100,
"column": 19
}
}
@@ -7827,31 +8082,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3790,
- 3799
+ 3849,
+ 3858
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 20
},
"end": {
- "line": 98,
+ "line": 100,
"column": 29
}
}
},
"range": [
- 3782,
- 3799
+ 3841,
+ 3858
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 12
},
"end": {
- "line": 98,
+ "line": 100,
"column": 29
}
}
@@ -7862,16 +8117,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3802,
- 3806
+ 3861,
+ 3865
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 32
},
"end": {
- "line": 98,
+ "line": 100,
"column": 36
}
}
@@ -7880,61 +8135,61 @@
"type": "Identifier",
"name": "instrText",
"range": [
- 3807,
- 3816
+ 3866,
+ 3875
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 37
},
"end": {
- "line": 98,
+ "line": 100,
"column": 46
}
}
},
"range": [
- 3802,
- 3816
+ 3861,
+ 3875
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 32
},
"end": {
- "line": 98,
+ "line": 100,
"column": 46
}
}
},
"range": [
- 3782,
- 3816
+ 3841,
+ 3875
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 12
},
"end": {
- "line": 98,
+ "line": 100,
"column": 46
}
}
},
"range": [
- 3782,
- 3817
+ 3841,
+ 3876
],
"loc": {
"start": {
- "line": 98,
+ "line": 100,
"column": 12
},
"end": {
- "line": 98,
+ "line": 100,
"column": 47
}
}
@@ -7951,16 +8206,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 3830,
- 3837
+ 3889,
+ 3896
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 12
},
"end": {
- "line": 99,
+ "line": 101,
"column": 19
}
}
@@ -7969,31 +8224,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 3838,
- 3847
+ 3897,
+ 3906
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 20
},
"end": {
- "line": 99,
+ "line": 101,
"column": 29
}
}
},
"range": [
- 3830,
- 3847
+ 3889,
+ 3906
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 12
},
"end": {
- "line": 99,
+ "line": 101,
"column": 29
}
}
@@ -8004,16 +8259,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3850,
- 3854
+ 3909,
+ 3913
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 32
},
"end": {
- "line": 99,
+ "line": 101,
"column": 36
}
}
@@ -8022,61 +8277,61 @@
"type": "Identifier",
"name": "contCssClass",
"range": [
- 3855,
- 3867
+ 3914,
+ 3926
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 37
},
"end": {
- "line": 99,
+ "line": 101,
"column": 49
}
}
},
"range": [
- 3850,
- 3867
+ 3909,
+ 3926
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 32
},
"end": {
- "line": 99,
+ "line": 101,
"column": 49
}
}
},
"range": [
- 3830,
- 3867
+ 3889,
+ 3926
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 12
},
"end": {
- "line": 99,
+ "line": 101,
"column": 49
}
}
},
"range": [
- 3830,
- 3868
+ 3889,
+ 3927
],
"loc": {
"start": {
- "line": 99,
+ "line": 101,
"column": 12
},
"end": {
- "line": 99,
+ "line": 101,
"column": 50
}
}
@@ -8092,16 +8347,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 3881,
- 3886
+ 3940,
+ 3945
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 12
},
"end": {
- "line": 100,
+ "line": 102,
"column": 17
}
}
@@ -8110,31 +8365,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 3887,
- 3890
+ 3946,
+ 3949
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 18
},
"end": {
- "line": 100,
+ "line": 102,
"column": 21
}
}
},
"range": [
- 3881,
- 3890
+ 3940,
+ 3949
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 12
},
"end": {
- "line": 100,
+ "line": 102,
"column": 21
}
}
@@ -8144,16 +8399,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 3891,
- 3898
+ 3950,
+ 3957
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 22
},
"end": {
- "line": 100,
+ "line": 102,
"column": 29
}
}
@@ -8163,16 +8418,16 @@
"value": "dblclick",
"raw": "'dblclick'",
"range": [
- 3900,
- 3910
+ 3959,
+ 3969
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 31
},
"end": {
- "line": 100,
+ "line": 102,
"column": 41
}
}
@@ -8194,16 +8449,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3920,
- 3924
+ 3979,
+ 3983
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 51
},
"end": {
- "line": 100,
+ "line": 102,
"column": 55
}
}
@@ -8212,78 +8467,78 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 3925,
- 3931
+ 3984,
+ 3990
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 56
},
"end": {
- "line": 100,
+ "line": 102,
"column": 62
}
}
},
"range": [
- 3920,
- 3931
+ 3979,
+ 3990
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 51
},
"end": {
- "line": 100,
+ "line": 102,
"column": 62
}
}
},
"arguments": [],
"range": [
- 3920,
- 3933
+ 3979,
+ 3992
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 51
},
"end": {
- "line": 100,
+ "line": 102,
"column": 64
}
}
},
"range": [
- 3920,
- 3934
+ 3979,
+ 3993
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 51
},
"end": {
- "line": 100,
+ "line": 102,
"column": 65
}
}
}
],
"range": [
- 3918,
- 3936
+ 3977,
+ 3995
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 49
},
"end": {
- "line": 100,
+ "line": 102,
"column": 67
}
}
@@ -8291,63 +8546,63 @@
"generator": false,
"expression": false,
"range": [
- 3912,
- 3936
+ 3971,
+ 3995
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 43
},
"end": {
- "line": 100,
+ "line": 102,
"column": 67
}
}
}
],
"range": [
- 3881,
- 3937
+ 3940,
+ 3996
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 12
},
"end": {
- "line": 100,
+ "line": 102,
"column": 68
}
}
},
"range": [
- 3881,
- 3938
+ 3940,
+ 3997
],
"loc": {
"start": {
- "line": 100,
+ "line": 102,
"column": 12
},
"end": {
- "line": 100,
+ "line": 102,
"column": 69
}
}
}
],
"range": [
- 3768,
- 3948
+ 3827,
+ 4007
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 27
},
"end": {
- "line": 101,
+ "line": 103,
"column": 9
}
}
@@ -8363,16 +8618,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3971,
- 3975
+ 4030,
+ 4034
],
"loc": {
"start": {
- "line": 102,
+ "line": 104,
"column": 15
},
"end": {
- "line": 102,
+ "line": 104,
"column": 19
}
}
@@ -8381,31 +8636,31 @@
"type": "Identifier",
"name": "contTgtId",
"range": [
- 3976,
- 3985
+ 4035,
+ 4044
],
"loc": {
"start": {
- "line": 102,
+ "line": 104,
"column": 20
},
"end": {
- "line": 102,
+ "line": 104,
"column": 29
}
}
},
"range": [
- 3971,
- 3985
+ 4030,
+ 4044
],
"loc": {
"start": {
- "line": 102,
+ "line": 104,
"column": 15
},
"end": {
- "line": 102,
+ "line": 104,
"column": 29
}
}
@@ -8424,16 +8679,16 @@
"type": "Identifier",
"name": "divContainer",
"range": [
- 4004,
- 4016
+ 4063,
+ 4075
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 16
},
"end": {
- "line": 103,
+ "line": 105,
"column": 28
}
}
@@ -8442,31 +8697,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 4017,
- 4028
+ 4076,
+ 4087
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 29
},
"end": {
- "line": 103,
+ "line": 105,
"column": 40
}
}
},
"range": [
- 4004,
- 4028
+ 4063,
+ 4087
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 16
},
"end": {
- "line": 103,
+ "line": 105,
"column": 40
}
}
@@ -8476,79 +8731,79 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4029,
- 4036
+ 4088,
+ 4095
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 41
},
"end": {
- "line": 103,
+ "line": 105,
"column": 48
}
}
}
],
"range": [
- 4004,
- 4037
+ 4063,
+ 4096
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 16
},
"end": {
- "line": 103,
+ "line": 105,
"column": 49
}
}
},
"range": [
- 4004,
- 4038
+ 4063,
+ 4097
],
"loc": {
"start": {
- "line": 103,
+ "line": 105,
"column": 16
},
"end": {
- "line": 103,
+ "line": 105,
"column": 50
}
}
}
],
"range": [
- 3986,
- 4052
+ 4045,
+ 4111
],
"loc": {
"start": {
- "line": 102,
+ "line": 104,
"column": 30
},
"end": {
- "line": 104,
+ "line": 106,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3968,
- 4052
+ 4027,
+ 4111
],
"loc": {
"start": {
- "line": 102,
+ "line": 104,
"column": 12
},
"end": {
- "line": 104,
+ "line": 106,
"column": 13
}
}
@@ -8565,16 +8820,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4065,
- 4072
+ 4124,
+ 4131
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 12
},
"end": {
- "line": 105,
+ "line": 107,
"column": 19
}
}
@@ -8583,31 +8838,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 4073,
- 4082
+ 4132,
+ 4141
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 20
},
"end": {
- "line": 105,
+ "line": 107,
"column": 29
}
}
},
"range": [
- 4065,
- 4082
+ 4124,
+ 4141
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 12
},
"end": {
- "line": 105,
+ "line": 107,
"column": 29
}
}
@@ -8618,16 +8873,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4085,
- 4089
+ 4144,
+ 4148
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 32
},
"end": {
- "line": 105,
+ "line": 107,
"column": 36
}
}
@@ -8636,61 +8891,61 @@
"type": "Identifier",
"name": "instrHtml",
"range": [
- 4090,
- 4099
+ 4149,
+ 4158
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 37
},
"end": {
- "line": 105,
+ "line": 107,
"column": 46
}
}
},
"range": [
- 4085,
- 4099
+ 4144,
+ 4158
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 32
},
"end": {
- "line": 105,
+ "line": 107,
"column": 46
}
}
},
"range": [
- 4065,
- 4099
+ 4124,
+ 4158
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 12
},
"end": {
- "line": 105,
+ "line": 107,
"column": 46
}
}
},
"range": [
- 4065,
- 4100
+ 4124,
+ 4159
],
"loc": {
"start": {
- "line": 105,
+ "line": 107,
"column": 12
},
"end": {
- "line": 105,
+ "line": 107,
"column": 47
}
}
@@ -8706,16 +8961,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4117,
- 4121
+ 4176,
+ 4180
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 16
},
"end": {
- "line": 106,
+ "line": 108,
"column": 20
}
}
@@ -8724,47 +8979,47 @@
"type": "Identifier",
"name": "contTgtId",
"range": [
- 4122,
- 4131
+ 4181,
+ 4190
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 21
},
"end": {
- "line": 106,
+ "line": 108,
"column": 30
}
}
},
"range": [
- 4117,
- 4131
+ 4176,
+ 4190
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 16
},
"end": {
- "line": 106,
+ "line": 108,
"column": 30
}
}
},
"prefix": true,
"range": [
- 4116,
- 4131
+ 4175,
+ 4190
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 15
},
"end": {
- "line": 106,
+ "line": 108,
"column": 30
}
}
@@ -8784,16 +9039,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4150,
- 4157
+ 4209,
+ 4216
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 16
},
"end": {
- "line": 107,
+ "line": 109,
"column": 23
}
}
@@ -8802,31 +9057,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 4158,
- 4167
+ 4217,
+ 4226
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 24
},
"end": {
- "line": 107,
+ "line": 109,
"column": 33
}
}
},
"range": [
- 4150,
- 4167
+ 4209,
+ 4226
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 16
},
"end": {
- "line": 107,
+ "line": 109,
"column": 33
}
}
@@ -8837,16 +9092,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4170,
- 4174
+ 4229,
+ 4233
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 36
},
"end": {
- "line": 107,
+ "line": 109,
"column": 40
}
}
@@ -8855,61 +9110,61 @@
"type": "Identifier",
"name": "contCssClass",
"range": [
- 4175,
- 4187
+ 4234,
+ 4246
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 41
},
"end": {
- "line": 107,
+ "line": 109,
"column": 53
}
}
},
"range": [
- 4170,
- 4187
+ 4229,
+ 4246
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 36
},
"end": {
- "line": 107,
+ "line": 109,
"column": 53
}
}
},
"range": [
- 4150,
- 4187
+ 4209,
+ 4246
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 16
},
"end": {
- "line": 107,
+ "line": 109,
"column": 53
}
}
},
"range": [
- 4150,
- 4188
+ 4209,
+ 4247
],
"loc": {
"start": {
- "line": 107,
+ "line": 109,
"column": 16
},
"end": {
- "line": 107,
+ "line": 109,
"column": 54
}
}
@@ -8925,16 +9180,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 4205,
- 4210
+ 4264,
+ 4269
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 16
},
"end": {
- "line": 108,
+ "line": 110,
"column": 21
}
}
@@ -8943,31 +9198,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 4211,
- 4214
+ 4270,
+ 4273
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 22
},
"end": {
- "line": 108,
+ "line": 110,
"column": 25
}
}
},
"range": [
- 4205,
- 4214
+ 4264,
+ 4273
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 16
},
"end": {
- "line": 108,
+ "line": 110,
"column": 25
}
}
@@ -8977,16 +9232,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4215,
- 4222
+ 4274,
+ 4281
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 26
},
"end": {
- "line": 108,
+ "line": 110,
"column": 33
}
}
@@ -8996,16 +9251,16 @@
"value": "dblclick",
"raw": "'dblclick'",
"range": [
- 4224,
- 4234
+ 4283,
+ 4293
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 35
},
"end": {
- "line": 108,
+ "line": 110,
"column": 45
}
}
@@ -9027,16 +9282,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4244,
- 4248
+ 4303,
+ 4307
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 55
},
"end": {
- "line": 108,
+ "line": 110,
"column": 59
}
}
@@ -9045,78 +9300,78 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 4249,
- 4255
+ 4308,
+ 4314
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 60
},
"end": {
- "line": 108,
+ "line": 110,
"column": 66
}
}
},
"range": [
- 4244,
- 4255
+ 4303,
+ 4314
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 55
},
"end": {
- "line": 108,
+ "line": 110,
"column": 66
}
}
},
"arguments": [],
"range": [
- 4244,
- 4257
+ 4303,
+ 4316
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 55
},
"end": {
- "line": 108,
+ "line": 110,
"column": 68
}
}
},
"range": [
- 4244,
- 4258
+ 4303,
+ 4317
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 55
},
"end": {
- "line": 108,
+ "line": 110,
"column": 69
}
}
}
],
"range": [
- 4242,
- 4260
+ 4301,
+ 4319
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 53
},
"end": {
- "line": 108,
+ "line": 110,
"column": 71
}
}
@@ -9124,110 +9379,110 @@
"generator": false,
"expression": false,
"range": [
- 4236,
- 4260
+ 4295,
+ 4319
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 47
},
"end": {
- "line": 108,
+ "line": 110,
"column": 71
}
}
}
],
"range": [
- 4205,
- 4261
+ 4264,
+ 4320
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 16
},
"end": {
- "line": 108,
+ "line": 110,
"column": 72
}
}
},
"range": [
- 4205,
- 4262
+ 4264,
+ 4321
],
"loc": {
"start": {
- "line": 108,
+ "line": 110,
"column": 16
},
"end": {
- "line": 108,
+ "line": 110,
"column": 73
}
}
}
],
"range": [
- 4132,
- 4276
+ 4191,
+ 4335
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 31
},
"end": {
- "line": 109,
+ "line": 111,
"column": 13
}
}
},
"alternate": null,
"range": [
- 4113,
- 4276
+ 4172,
+ 4335
],
"loc": {
"start": {
- "line": 106,
+ "line": 108,
"column": 12
},
"end": {
- "line": 109,
+ "line": 111,
"column": 13
}
}
}
],
"range": [
- 3954,
- 4286
+ 4013,
+ 4345
],
"loc": {
"start": {
- "line": 101,
+ "line": 103,
"column": 15
},
"end": {
- "line": 110,
+ "line": 112,
"column": 9
}
}
},
"range": [
- 3749,
- 4286
+ 3808,
+ 4345
],
"loc": {
"start": {
- "line": 97,
+ "line": 99,
"column": 8
},
"end": {
- "line": 110,
+ "line": 112,
"column": 9
}
}
@@ -9244,16 +9499,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4295,
- 4302
+ 4354,
+ 4361
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 8
},
"end": {
- "line": 111,
+ "line": 113,
"column": 15
}
}
@@ -9262,31 +9517,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 4303,
- 4312
+ 4362,
+ 4371
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 16
},
"end": {
- "line": 111,
+ "line": 113,
"column": 25
}
}
},
"range": [
- 4295,
- 4312
+ 4354,
+ 4371
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 8
},
"end": {
- "line": 111,
+ "line": 113,
"column": 25
}
}
@@ -9297,16 +9552,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4316,
- 4320
+ 4375,
+ 4379
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 29
},
"end": {
- "line": 111,
+ "line": 113,
"column": 33
}
}
@@ -9315,61 +9570,61 @@
"type": "Identifier",
"name": "defaultHtml",
"range": [
- 4321,
- 4332
+ 4380,
+ 4391
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 34
},
"end": {
- "line": 111,
+ "line": 113,
"column": 45
}
}
},
"range": [
- 4316,
- 4332
+ 4375,
+ 4391
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 29
},
"end": {
- "line": 111,
+ "line": 113,
"column": 45
}
}
},
"range": [
- 4295,
- 4332
+ 4354,
+ 4391
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 8
},
"end": {
- "line": 111,
+ "line": 113,
"column": 45
}
}
},
"range": [
- 4295,
- 4333
+ 4354,
+ 4392
],
"loc": {
"start": {
- "line": 111,
+ "line": 113,
"column": 8
},
"end": {
- "line": 111,
+ "line": 113,
"column": 46
}
}
@@ -9385,16 +9640,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 4342,
- 4347
+ 4401,
+ 4406
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 8
},
"end": {
- "line": 112,
+ "line": 114,
"column": 13
}
}
@@ -9403,31 +9658,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 4348,
- 4351
+ 4407,
+ 4410
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 14
},
"end": {
- "line": 112,
+ "line": 114,
"column": 17
}
}
},
"range": [
- 4342,
- 4351
+ 4401,
+ 4410
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 8
},
"end": {
- "line": 112,
+ "line": 114,
"column": 17
}
}
@@ -9437,16 +9692,16 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4352,
- 4359
+ 4411,
+ 4418
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 18
},
"end": {
- "line": 112,
+ "line": 114,
"column": 25
}
}
@@ -9456,16 +9711,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 4361,
- 4368
+ 4420,
+ 4427
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 27
},
"end": {
- "line": 112,
+ "line": 114,
"column": 34
}
}
@@ -9487,16 +9742,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4378,
- 4382
+ 4437,
+ 4441
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 44
},
"end": {
- "line": 112,
+ "line": 114,
"column": 48
}
}
@@ -9505,78 +9760,78 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 4383,
- 4389
+ 4442,
+ 4448
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 49
},
"end": {
- "line": 112,
+ "line": 114,
"column": 55
}
}
},
"range": [
- 4378,
- 4389
+ 4437,
+ 4448
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 44
},
"end": {
- "line": 112,
+ "line": 114,
"column": 55
}
}
},
"arguments": [],
"range": [
- 4378,
- 4391
+ 4437,
+ 4450
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 44
},
"end": {
- "line": 112,
+ "line": 114,
"column": 57
}
}
},
"range": [
- 4378,
- 4392
+ 4437,
+ 4451
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 44
},
"end": {
- "line": 112,
+ "line": 114,
"column": 58
}
}
}
],
"range": [
- 4376,
- 4394
+ 4435,
+ 4453
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 42
},
"end": {
- "line": 112,
+ "line": 114,
"column": 60
}
}
@@ -9584,47 +9839,47 @@
"generator": false,
"expression": false,
"range": [
- 4370,
- 4394
+ 4429,
+ 4453
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 36
},
"end": {
- "line": 112,
+ "line": 114,
"column": 60
}
}
}
],
"range": [
- 4342,
- 4395
+ 4401,
+ 4454
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 8
},
"end": {
- "line": 112,
+ "line": 114,
"column": 61
}
}
},
"range": [
- 4342,
- 4396
+ 4401,
+ 4455
],
"loc": {
"start": {
- "line": 112,
+ "line": 114,
"column": 8
},
"end": {
- "line": 112,
+ "line": 114,
"column": 62
}
}
@@ -9640,16 +9895,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4406,
- 4410
+ 4465,
+ 4469
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 8
},
"end": {
- "line": 114,
+ "line": 116,
"column": 12
}
}
@@ -9658,31 +9913,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 4411,
- 4415
+ 4470,
+ 4474
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 13
},
"end": {
- "line": 114,
+ "line": 116,
"column": 17
}
}
},
"range": [
- 4406,
- 4415
+ 4465,
+ 4474
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 8
},
"end": {
- "line": 114,
+ "line": 116,
"column": 17
}
}
@@ -9691,46 +9946,46 @@
"type": "Identifier",
"name": "helpdiv",
"range": [
- 4418,
- 4425
+ 4477,
+ 4484
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 20
},
"end": {
- "line": 114,
+ "line": 116,
"column": 27
}
}
},
"range": [
- 4406,
- 4425
+ 4465,
+ 4484
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 8
},
"end": {
- "line": 114,
+ "line": 116,
"column": 27
}
}
},
"range": [
- 4406,
- 4426
+ 4465,
+ 4485
],
"loc": {
"start": {
- "line": 114,
+ "line": 116,
"column": 8
},
"end": {
- "line": 114,
+ "line": 116,
"column": 28
}
}
@@ -9746,16 +10001,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4435,
- 4439
+ 4494,
+ 4498
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 8
},
"end": {
- "line": 115,
+ "line": 117,
"column": 12
}
}
@@ -9764,31 +10019,31 @@
"type": "Identifier",
"name": "btn",
"range": [
- 4440,
- 4443
+ 4499,
+ 4502
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 13
},
"end": {
- "line": 115,
+ "line": 117,
"column": 16
}
}
},
"range": [
- 4435,
- 4443
+ 4494,
+ 4502
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 8
},
"end": {
- "line": 115,
+ "line": 117,
"column": 16
}
}
@@ -9797,46 +10052,46 @@
"type": "Identifier",
"name": "helpspan",
"range": [
- 4446,
- 4454
+ 4505,
+ 4513
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 19
},
"end": {
- "line": 115,
+ "line": 117,
"column": 27
}
}
},
"range": [
- 4435,
- 4454
+ 4494,
+ 4513
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 8
},
"end": {
- "line": 115,
+ "line": 117,
"column": 27
}
}
},
"range": [
- 4435,
- 4455
+ 4494,
+ 4514
],
"loc": {
"start": {
- "line": 115,
+ "line": 117,
"column": 8
},
"end": {
- "line": 115,
+ "line": 117,
"column": 28
}
}
@@ -9852,16 +10107,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4464,
- 4468
+ 4523,
+ 4527
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 8
},
"end": {
- "line": 116,
+ "line": 118,
"column": 12
}
}
@@ -9870,31 +10125,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 4469,
- 4480
+ 4528,
+ 4539
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 13
},
"end": {
- "line": 116,
+ "line": 118,
"column": 24
}
}
},
"range": [
- 4464,
- 4480
+ 4523,
+ 4539
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 8
},
"end": {
- "line": 116,
+ "line": 118,
"column": 24
}
}
@@ -9904,62 +10159,62 @@
"value": true,
"raw": "true",
"range": [
- 4483,
- 4487
+ 4542,
+ 4546
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 27
},
"end": {
- "line": 116,
+ "line": 118,
"column": 31
}
}
},
"range": [
- 4464,
- 4487
+ 4523,
+ 4546
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 8
},
"end": {
- "line": 116,
+ "line": 118,
"column": 31
}
}
},
"range": [
- 4464,
- 4488
+ 4523,
+ 4547
],
"loc": {
"start": {
- "line": 116,
+ "line": 118,
"column": 8
},
"end": {
- "line": 116,
+ "line": 118,
"column": 32
}
}
}
],
"range": [
- 2592,
- 4494
+ 2651,
+ 4553
],
"loc": {
"start": {
- "line": 64,
+ "line": 66,
"column": 10
},
"end": {
- "line": 117,
+ "line": 119,
"column": 5
}
}
@@ -9967,16 +10222,16 @@
"generator": false,
"expression": false,
"range": [
- 2590,
- 4494
+ 2649,
+ 4553
],
"loc": {
"start": {
- "line": 64,
+ "line": 66,
"column": 8
},
"end": {
- "line": 117,
+ "line": 119,
"column": 5
}
}
@@ -9984,16 +10239,16 @@
"kind": "method",
"computed": false,
"range": [
- 2586,
- 4494
+ 2645,
+ 4553
],
"loc": {
"start": {
- "line": 64,
+ "line": 66,
"column": 4
},
"end": {
- "line": 117,
+ "line": 119,
"column": 5
}
},
@@ -10002,16 +10257,16 @@
"type": "Block",
"value": "*\n * Toggle help pop-up\n ",
"range": [
- 4500,
- 4537
+ 4559,
+ 4596
],
"loc": {
"start": {
- "line": 119,
+ "line": 121,
"column": 4
},
"end": {
- "line": 121,
+ "line": 123,
"column": 7
}
}
@@ -10025,16 +10280,16 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 4542,
- 4548
+ 4601,
+ 4607
],
"loc": {
"start": {
- "line": 122,
+ "line": 124,
"column": 4
},
"end": {
- "line": 122,
+ "line": 124,
"column": 10
}
}
@@ -10057,16 +10312,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4699,
- 4703
+ 4758,
+ 4762
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 11
},
"end": {
- "line": 125,
+ "line": 127,
"column": 15
}
}
@@ -10075,31 +10330,31 @@
"type": "Identifier",
"name": "enabled",
"range": [
- 4704,
- 4711
+ 4763,
+ 4770
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 16
},
"end": {
- "line": 125,
+ "line": 127,
"column": 23
}
}
},
"range": [
- 4699,
- 4711
+ 4758,
+ 4770
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 11
},
"end": {
- "line": 125,
+ "line": 127,
"column": 23
}
}
@@ -10109,31 +10364,31 @@
"value": false,
"raw": "false",
"range": [
- 4716,
- 4721
+ 4775,
+ 4780
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 28
},
"end": {
- "line": 125,
+ "line": 127,
"column": 33
}
}
},
"range": [
- 4699,
- 4721
+ 4758,
+ 4780
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 11
},
"end": {
- "line": 125,
+ "line": 127,
"column": 33
}
}
@@ -10145,48 +10400,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 4736,
- 4743
+ 4795,
+ 4802
],
"loc": {
"start": {
- "line": 126,
+ "line": 128,
"column": 12
},
"end": {
- "line": 126,
+ "line": 128,
"column": 19
}
}
}
],
"range": [
- 4722,
- 4753
+ 4781,
+ 4812
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 34
},
"end": {
- "line": 127,
+ "line": 129,
"column": 9
}
}
},
"alternate": null,
"range": [
- 4696,
- 4753
+ 4755,
+ 4812
],
"loc": {
"start": {
- "line": 125,
+ "line": 127,
"column": 8
},
"end": {
- "line": 127,
+ "line": 129,
"column": 9
}
},
@@ -10195,16 +10450,16 @@
"type": "Line",
"value": " check only if explicitily set to false as in this case undefined",
"range": [
- 4560,
- 4627
+ 4619,
+ 4686
],
"loc": {
"start": {
- "line": 123,
+ "line": 125,
"column": 8
},
"end": {
- "line": 123,
+ "line": 125,
"column": 75
}
}
@@ -10213,16 +10468,16 @@
"type": "Line",
"value": " signifies the help feature is enabled by default",
"range": [
- 4636,
- 4687
+ 4695,
+ 4746
],
"loc": {
"start": {
- "line": 124,
+ "line": 126,
"column": 8
},
"end": {
- "line": 124,
+ "line": 126,
"column": 59
}
}
@@ -10238,16 +10493,16 @@
"type": "Identifier",
"name": "divDisplay",
"range": [
- 4766,
- 4776
+ 4825,
+ 4835
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 12
},
"end": {
- "line": 128,
+ "line": 130,
"column": 22
}
}
@@ -10264,16 +10519,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4779,
- 4783
+ 4838,
+ 4842
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 25
},
"end": {
- "line": 128,
+ "line": 130,
"column": 29
}
}
@@ -10282,31 +10537,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 4784,
- 4788
+ 4843,
+ 4847
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 30
},
"end": {
- "line": 128,
+ "line": 130,
"column": 34
}
}
},
"range": [
- 4779,
- 4788
+ 4838,
+ 4847
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 25
},
"end": {
- "line": 128,
+ "line": 130,
"column": 34
}
}
@@ -10315,31 +10570,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4789,
- 4794
+ 4848,
+ 4853
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 35
},
"end": {
- "line": 128,
+ "line": 130,
"column": 40
}
}
},
"range": [
- 4779,
- 4794
+ 4838,
+ 4853
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 25
},
"end": {
- "line": 128,
+ "line": 130,
"column": 40
}
}
@@ -10348,46 +10603,46 @@
"type": "Identifier",
"name": "display",
"range": [
- 4795,
- 4802
+ 4854,
+ 4861
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 41
},
"end": {
- "line": 128,
+ "line": 130,
"column": 48
}
}
},
"range": [
- 4779,
- 4802
+ 4838,
+ 4861
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 25
},
"end": {
- "line": 128,
+ "line": 130,
"column": 48
}
}
},
"range": [
- 4766,
- 4802
+ 4825,
+ 4861
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 12
},
"end": {
- "line": 128,
+ "line": 130,
"column": 48
}
}
@@ -10395,16 +10650,16 @@
],
"kind": "var",
"range": [
- 4762,
- 4803
+ 4821,
+ 4862
],
"loc": {
"start": {
- "line": 128,
+ "line": 130,
"column": 8
},
"end": {
- "line": 128,
+ "line": 130,
"column": 49
}
}
@@ -10421,16 +10676,16 @@
"type": "Identifier",
"name": "divDisplay",
"range": [
- 4815,
- 4825
+ 4874,
+ 4884
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 11
},
"end": {
- "line": 129,
+ "line": 131,
"column": 21
}
}
@@ -10440,31 +10695,31 @@
"value": "",
"raw": "''",
"range": [
- 4830,
- 4832
+ 4889,
+ 4891
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 26
},
"end": {
- "line": 129,
+ "line": 131,
"column": 28
}
}
},
"range": [
- 4815,
- 4832
+ 4874,
+ 4891
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 11
},
"end": {
- "line": 129,
+ "line": 131,
"column": 28
}
}
@@ -10476,16 +10731,16 @@
"type": "Identifier",
"name": "divDisplay",
"range": [
- 4836,
- 4846
+ 4895,
+ 4905
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 32
},
"end": {
- "line": 129,
+ "line": 131,
"column": 42
}
}
@@ -10495,46 +10750,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 4851,
- 4857
+ 4910,
+ 4916
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 47
},
"end": {
- "line": 129,
+ "line": 131,
"column": 53
}
}
},
"range": [
- 4836,
- 4857
+ 4895,
+ 4916
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 32
},
"end": {
- "line": 129,
+ "line": 131,
"column": 53
}
}
},
"range": [
- 4815,
- 4857
+ 4874,
+ 4916
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 11
},
"end": {
- "line": 129,
+ "line": 131,
"column": 53
}
}
@@ -10559,16 +10814,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4872,
- 4876
+ 4931,
+ 4935
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 16
}
}
@@ -10577,31 +10832,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 4877,
- 4881
+ 4936,
+ 4940
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 17
},
"end": {
- "line": 130,
+ "line": 132,
"column": 21
}
}
},
"range": [
- 4872,
- 4881
+ 4931,
+ 4940
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 21
}
}
@@ -10610,31 +10865,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4882,
- 4887
+ 4941,
+ 4946
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 22
},
"end": {
- "line": 130,
+ "line": 132,
"column": 27
}
}
},
"range": [
- 4872,
- 4887
+ 4931,
+ 4946
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 27
}
}
@@ -10643,31 +10898,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4888,
- 4895
+ 4947,
+ 4954
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 28
},
"end": {
- "line": 130,
+ "line": 132,
"column": 35
}
}
},
"range": [
- 4872,
- 4895
+ 4931,
+ 4954
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 35
}
}
@@ -10677,62 +10932,62 @@
"value": "inline",
"raw": "'inline'",
"range": [
- 4898,
- 4906
+ 4957,
+ 4965
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 38
},
"end": {
- "line": 130,
+ "line": 132,
"column": 46
}
}
},
"range": [
- 4872,
- 4906
+ 4931,
+ 4965
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 46
}
}
},
"range": [
- 4872,
- 4907
+ 4931,
+ 4966
],
"loc": {
"start": {
- "line": 130,
+ "line": 132,
"column": 12
},
"end": {
- "line": 130,
+ "line": 132,
"column": 47
}
}
}
],
"range": [
- 4858,
- 4917
+ 4917,
+ 4976
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 54
},
"end": {
- "line": 131,
+ "line": 133,
"column": 9
}
}
@@ -10757,16 +11012,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4937,
- 4941
+ 4996,
+ 5000
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 16
}
}
@@ -10775,31 +11030,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 4942,
- 4946
+ 5001,
+ 5005
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 17
},
"end": {
- "line": 132,
+ "line": 134,
"column": 21
}
}
},
"range": [
- 4937,
- 4946
+ 4996,
+ 5005
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 21
}
}
@@ -10808,31 +11063,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4947,
- 4952
+ 5006,
+ 5011
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 22
},
"end": {
- "line": 132,
+ "line": 134,
"column": 27
}
}
},
"range": [
- 4937,
- 4952
+ 4996,
+ 5011
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 27
}
}
@@ -10841,31 +11096,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4953,
- 4960
+ 5012,
+ 5019
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 28
},
"end": {
- "line": 132,
+ "line": 134,
"column": 35
}
}
},
"range": [
- 4937,
- 4960
+ 4996,
+ 5019
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 35
}
}
@@ -10875,93 +11130,93 @@
"value": "none",
"raw": "'none'",
"range": [
- 4963,
- 4969
+ 5022,
+ 5028
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 38
},
"end": {
- "line": 132,
+ "line": 134,
"column": 44
}
}
},
"range": [
- 4937,
- 4969
+ 4996,
+ 5028
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 44
}
}
},
"range": [
- 4937,
- 4970
+ 4996,
+ 5029
],
"loc": {
"start": {
- "line": 132,
+ "line": 134,
"column": 12
},
"end": {
- "line": 132,
+ "line": 134,
"column": 45
}
}
}
],
"range": [
- 4923,
- 4980
+ 4982,
+ 5039
],
"loc": {
"start": {
- "line": 131,
+ "line": 133,
"column": 15
},
"end": {
- "line": 133,
+ "line": 135,
"column": 9
}
}
},
"range": [
- 4812,
- 4980
+ 4871,
+ 5039
],
"loc": {
"start": {
- "line": 129,
+ "line": 131,
"column": 8
},
"end": {
- "line": 133,
+ "line": 135,
"column": 9
}
}
}
],
"range": [
- 4550,
- 4986
+ 4609,
+ 5045
],
"loc": {
"start": {
- "line": 122,
+ "line": 124,
"column": 12
},
"end": {
- "line": 134,
+ "line": 136,
"column": 5
}
}
@@ -10969,16 +11224,16 @@
"generator": false,
"expression": false,
"range": [
- 4548,
- 4986
+ 4607,
+ 5045
],
"loc": {
"start": {
- "line": 122,
+ "line": 124,
"column": 10
},
"end": {
- "line": 134,
+ "line": 136,
"column": 5
}
}
@@ -10986,16 +11241,16 @@
"kind": "method",
"computed": false,
"range": [
- 4542,
- 4986
+ 4601,
+ 5045
],
"loc": {
"start": {
- "line": 122,
+ "line": 124,
"column": 4
},
"end": {
- "line": 134,
+ "line": 136,
"column": 5
}
},
@@ -11004,16 +11259,16 @@
"type": "Block",
"value": "*\n * Toggle help pop-up\n ",
"range": [
- 4500,
- 4537
+ 4559,
+ 4596
],
"loc": {
"start": {
- "line": 119,
+ "line": 121,
"column": 4
},
"end": {
- "line": 121,
+ "line": 123,
"column": 7
}
}
@@ -11024,16 +11279,16 @@
"type": "Block",
"value": "*\n * Remove help UI\n ",
"range": [
- 4992,
- 5025
+ 5051,
+ 5084
],
"loc": {
"start": {
- "line": 136,
+ "line": 138,
"column": 4
},
"end": {
- "line": 138,
+ "line": 140,
"column": 7
}
}
@@ -11047,16 +11302,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 5030,
- 5037
+ 5089,
+ 5096
],
"loc": {
"start": {
- "line": 139,
+ "line": 141,
"column": 4
},
"end": {
- "line": 139,
+ "line": 141,
"column": 11
}
}
@@ -11079,16 +11334,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5053,
- 5057
+ 5112,
+ 5116
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 12
},
"end": {
- "line": 140,
+ "line": 142,
"column": 16
}
}
@@ -11097,47 +11352,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 5058,
- 5069
+ 5117,
+ 5128
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 17
},
"end": {
- "line": 140,
+ "line": 142,
"column": 28
}
}
},
"range": [
- 5053,
- 5069
+ 5112,
+ 5128
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 12
},
"end": {
- "line": 140,
+ "line": 142,
"column": 28
}
}
},
"prefix": true,
"range": [
- 5052,
- 5069
+ 5111,
+ 5128
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 11
},
"end": {
- "line": 140,
+ "line": 142,
"column": 28
}
}
@@ -11149,48 +11404,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 5084,
- 5091
+ 5143,
+ 5150
],
"loc": {
"start": {
- "line": 141,
+ "line": 143,
"column": 12
},
"end": {
- "line": 141,
+ "line": 143,
"column": 19
}
}
}
],
"range": [
- 5070,
- 5101
+ 5129,
+ 5160
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 29
},
"end": {
- "line": 142,
+ "line": 144,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5049,
- 5101
+ 5108,
+ 5160
],
"loc": {
"start": {
- "line": 140,
+ "line": 142,
"column": 8
},
"end": {
- "line": 142,
+ "line": 144,
"column": 9
}
}
@@ -11206,16 +11461,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 5110,
- 5113
+ 5169,
+ 5172
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 8
},
"end": {
- "line": 143,
+ "line": 145,
"column": 11
}
}
@@ -11224,31 +11479,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 5114,
- 5120
+ 5173,
+ 5179
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 12
},
"end": {
- "line": 143,
+ "line": 145,
"column": 18
}
}
},
"range": [
- 5110,
- 5120
+ 5169,
+ 5179
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 8
},
"end": {
- "line": 143,
+ "line": 145,
"column": 18
}
}
@@ -11260,16 +11515,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5121,
- 5125
+ 5180,
+ 5184
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 19
},
"end": {
- "line": 143,
+ "line": 145,
"column": 23
}
}
@@ -11278,62 +11533,62 @@
"type": "Identifier",
"name": "btn",
"range": [
- 5126,
- 5129
+ 5185,
+ 5188
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 24
},
"end": {
- "line": 143,
+ "line": 145,
"column": 27
}
}
},
"range": [
- 5121,
- 5129
+ 5180,
+ 5188
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 19
},
"end": {
- "line": 143,
+ "line": 145,
"column": 27
}
}
}
],
"range": [
- 5110,
- 5130
+ 5169,
+ 5189
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 8
},
"end": {
- "line": 143,
+ "line": 145,
"column": 28
}
}
},
"range": [
- 5110,
- 5131
+ 5169,
+ 5190
],
"loc": {
"start": {
- "line": 143,
+ "line": 145,
"column": 8
},
"end": {
- "line": 143,
+ "line": 145,
"column": 29
}
}
@@ -11349,16 +11604,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5140,
- 5144
+ 5199,
+ 5203
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 8
},
"end": {
- "line": 144,
+ "line": 146,
"column": 12
}
}
@@ -11367,31 +11622,31 @@
"type": "Identifier",
"name": "btn",
"range": [
- 5145,
- 5148
+ 5204,
+ 5207
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 13
},
"end": {
- "line": 144,
+ "line": 146,
"column": 16
}
}
},
"range": [
- 5140,
- 5148
+ 5199,
+ 5207
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 8
},
"end": {
- "line": 144,
+ "line": 146,
"column": 16
}
}
@@ -11401,46 +11656,46 @@
"value": null,
"raw": "null",
"range": [
- 5151,
- 5155
+ 5210,
+ 5214
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 19
},
"end": {
- "line": 144,
+ "line": 146,
"column": 23
}
}
},
"range": [
- 5140,
- 5155
+ 5199,
+ 5214
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 8
},
"end": {
- "line": 144,
+ "line": 146,
"column": 23
}
}
},
"range": [
- 5140,
- 5156
+ 5199,
+ 5215
],
"loc": {
"start": {
- "line": 144,
+ "line": 146,
"column": 8
},
"end": {
- "line": 144,
+ "line": 146,
"column": 24
}
}
@@ -11456,16 +11711,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5169,
- 5173
+ 5228,
+ 5232
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 12
},
"end": {
- "line": 145,
+ "line": 147,
"column": 16
}
}
@@ -11474,47 +11729,47 @@
"type": "Identifier",
"name": "cont",
"range": [
- 5174,
- 5178
+ 5233,
+ 5237
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 17
},
"end": {
- "line": 145,
+ "line": 147,
"column": 21
}
}
},
"range": [
- 5169,
- 5178
+ 5228,
+ 5237
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 12
},
"end": {
- "line": 145,
+ "line": 147,
"column": 21
}
}
},
"prefix": true,
"range": [
- 5168,
- 5178
+ 5227,
+ 5237
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 11
},
"end": {
- "line": 145,
+ "line": 147,
"column": 21
}
}
@@ -11526,48 +11781,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 5193,
- 5200
+ 5252,
+ 5259
],
"loc": {
"start": {
- "line": 146,
+ "line": 148,
"column": 12
},
"end": {
- "line": 146,
+ "line": 148,
"column": 19
}
}
}
],
"range": [
- 5179,
- 5210
+ 5238,
+ 5269
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 22
},
"end": {
- "line": 147,
+ "line": 149,
"column": 9
}
}
},
"alternate": null,
"range": [
- 5165,
- 5210
+ 5224,
+ 5269
],
"loc": {
"start": {
- "line": 145,
+ "line": 147,
"column": 8
},
"end": {
- "line": 147,
+ "line": 149,
"column": 9
}
}
@@ -11583,16 +11838,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 5219,
- 5222
+ 5278,
+ 5281
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 8
},
"end": {
- "line": 148,
+ "line": 150,
"column": 11
}
}
@@ -11601,31 +11856,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 5223,
- 5229
+ 5282,
+ 5288
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 12
},
"end": {
- "line": 148,
+ "line": 150,
"column": 18
}
}
},
"range": [
- 5219,
- 5229
+ 5278,
+ 5288
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 8
},
"end": {
- "line": 148,
+ "line": 150,
"column": 18
}
}
@@ -11637,16 +11892,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5230,
- 5234
+ 5289,
+ 5293
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 19
},
"end": {
- "line": 148,
+ "line": 150,
"column": 23
}
}
@@ -11655,62 +11910,62 @@
"type": "Identifier",
"name": "cont",
"range": [
- 5235,
- 5239
+ 5294,
+ 5298
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 24
},
"end": {
- "line": 148,
+ "line": 150,
"column": 28
}
}
},
"range": [
- 5230,
- 5239
+ 5289,
+ 5298
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 19
},
"end": {
- "line": 148,
+ "line": 150,
"column": 28
}
}
}
],
"range": [
- 5219,
- 5240
+ 5278,
+ 5299
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 8
},
"end": {
- "line": 148,
+ "line": 150,
"column": 29
}
}
},
"range": [
- 5219,
- 5241
+ 5278,
+ 5300
],
"loc": {
"start": {
- "line": 148,
+ "line": 150,
"column": 8
},
"end": {
- "line": 148,
+ "line": 150,
"column": 30
}
}
@@ -11726,16 +11981,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5250,
- 5254
+ 5309,
+ 5313
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 8
},
"end": {
- "line": 149,
+ "line": 151,
"column": 12
}
}
@@ -11744,31 +11999,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 5255,
- 5259
+ 5314,
+ 5318
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 13
},
"end": {
- "line": 149,
+ "line": 151,
"column": 17
}
}
},
"range": [
- 5250,
- 5259
+ 5309,
+ 5318
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 8
},
"end": {
- "line": 149,
+ "line": 151,
"column": 17
}
}
@@ -11778,46 +12033,46 @@
"value": null,
"raw": "null",
"range": [
- 5262,
- 5266
+ 5321,
+ 5325
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 20
},
"end": {
- "line": 149,
+ "line": 151,
"column": 24
}
}
},
"range": [
- 5250,
- 5266
+ 5309,
+ 5325
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 8
},
"end": {
- "line": 149,
+ "line": 151,
"column": 24
}
}
},
"range": [
- 5250,
- 5267
+ 5309,
+ 5326
],
"loc": {
"start": {
- "line": 149,
+ "line": 151,
"column": 8
},
"end": {
- "line": 149,
+ "line": 151,
"column": 25
}
}
@@ -11833,16 +12088,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5276,
- 5280
+ 5335,
+ 5339
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 8
},
"end": {
- "line": 150,
+ "line": 152,
"column": 12
}
}
@@ -11851,31 +12106,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 5281,
- 5292
+ 5340,
+ 5351
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 13
},
"end": {
- "line": 150,
+ "line": 152,
"column": 24
}
}
},
"range": [
- 5276,
- 5292
+ 5335,
+ 5351
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 8
},
"end": {
- "line": 150,
+ "line": 152,
"column": 24
}
}
@@ -11885,62 +12140,62 @@
"value": false,
"raw": "false",
"range": [
- 5295,
- 5300
+ 5354,
+ 5359
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 27
},
"end": {
- "line": 150,
+ "line": 152,
"column": 32
}
}
},
"range": [
- 5276,
- 5300
+ 5335,
+ 5359
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 8
},
"end": {
- "line": 150,
+ "line": 152,
"column": 32
}
}
},
"range": [
- 5276,
- 5301
+ 5335,
+ 5360
],
"loc": {
"start": {
- "line": 150,
+ "line": 152,
"column": 8
},
"end": {
- "line": 150,
+ "line": 152,
"column": 33
}
}
}
],
"range": [
- 5039,
- 5307
+ 5098,
+ 5366
],
"loc": {
"start": {
- "line": 139,
+ "line": 141,
"column": 13
},
"end": {
- "line": 151,
+ "line": 153,
"column": 5
}
}
@@ -11948,16 +12203,16 @@
"generator": false,
"expression": false,
"range": [
- 5037,
- 5307
+ 5096,
+ 5366
],
"loc": {
"start": {
- "line": 139,
+ "line": 141,
"column": 11
},
"end": {
- "line": 151,
+ "line": 153,
"column": 5
}
}
@@ -11965,16 +12220,16 @@
"kind": "method",
"computed": false,
"range": [
- 5030,
- 5307
+ 5089,
+ 5366
],
"loc": {
"start": {
- "line": 139,
+ "line": 141,
"column": 4
},
"end": {
- "line": 151,
+ "line": 153,
"column": 5
}
},
@@ -11983,16 +12238,16 @@
"type": "Block",
"value": "*\n * Remove help UI\n ",
"range": [
- 4992,
- 5025
+ 5051,
+ 5084
],
"loc": {
"start": {
- "line": 136,
+ "line": 138,
"column": 4
},
"end": {
- "line": 138,
+ "line": 140,
"column": 7
}
}
@@ -12003,7 +12258,7 @@
],
"range": [
301,
- 5310
+ 5369
],
"loc": {
"start": {
@@ -12011,14 +12266,14 @@
"column": 33
},
"end": {
- "line": 153,
+ "line": 155,
"column": 1
}
}
},
"range": [
275,
- 5310
+ 5369
],
"loc": {
"start": {
@@ -12026,7 +12281,7 @@
"column": 7
},
"end": {
- "line": 153,
+ "line": 155,
"column": 1
}
},
@@ -12037,7 +12292,7 @@
"source": null,
"range": [
268,
- 5310
+ 5369
],
"loc": {
"start": {
@@ -12045,7 +12300,7 @@
"column": 0
},
"end": {
- "line": 153,
+ "line": 155,
"column": 1
}
}
@@ -12054,7 +12309,7 @@
"sourceType": "module",
"range": [
0,
- 5310
+ 5369
],
"loc": {
"start": {
@@ -12062,7 +12317,7 @@
"column": 0
},
"end": {
- "line": 153,
+ "line": 155,
"column": 1
}
},
@@ -12305,16 +12560,16 @@
"type": "Line",
"value": "help button is added to defined element",
"range": [
- 2840,
- 2881
+ 2899,
+ 2940
],
"loc": {
"start": {
- "line": 74,
+ "line": 76,
"column": 8
},
"end": {
- "line": 74,
+ "line": 76,
"column": 49
}
}
@@ -12323,16 +12578,16 @@
"type": "Block",
"value": "*\n * Toggle help pop-up\n ",
"range": [
- 4500,
- 4537
+ 4559,
+ 4596
],
"loc": {
"start": {
- "line": 119,
+ "line": 121,
"column": 4
},
"end": {
- "line": 121,
+ "line": 123,
"column": 7
}
}
@@ -12341,16 +12596,16 @@
"type": "Line",
"value": " check only if explicitily set to false as in this case undefined",
"range": [
- 4560,
- 4627
+ 4619,
+ 4686
],
"loc": {
"start": {
- "line": 123,
+ "line": 125,
"column": 8
},
"end": {
- "line": 123,
+ "line": 125,
"column": 75
}
}
@@ -12359,16 +12614,16 @@
"type": "Line",
"value": " signifies the help feature is enabled by default",
"range": [
- 4636,
- 4687
+ 4695,
+ 4746
],
"loc": {
"start": {
- "line": 124,
+ "line": 126,
"column": 8
},
"end": {
- "line": 124,
+ "line": 126,
"column": 59
}
}
@@ -12377,16 +12632,16 @@
"type": "Block",
"value": "*\n * Remove help UI\n ",
"range": [
- 4992,
- 5025
+ 5051,
+ 5084
],
"loc": {
"start": {
- "line": 136,
+ "line": 138,
"column": 4
},
"end": {
- "line": 138,
+ "line": 140,
"column": 7
}
}
diff --git a/docs/ast/source/src/modules/highlightKeywords.js.json b/docs/ast/source/src/modules/highlightKeywords.js.json
index 2e4cc822..f496d529 100644
--- a/docs/ast/source/src/modules/highlightKeywords.js.json
+++ b/docs/ast/source/src/modules/highlightKeywords.js.json
@@ -147,6 +147,79 @@
}
}
},
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 62,
+ 67
+ ],
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 7
+ },
+ "end": {
+ "line": 3,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 62,
+ 67
+ ],
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 7
+ },
+ "end": {
+ "line": 3,
+ "column": 12
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "../types",
+ "raw": "'../types'",
+ "range": [
+ 73,
+ 83
+ ],
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 18
+ },
+ "end": {
+ "line": 3,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 55,
+ 84
+ ],
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 29
+ }
+ }
+ },
{
"type": "ExportNamedDeclaration",
"declaration": {
@@ -155,16 +228,16 @@
"type": "Identifier",
"name": "HighlightKeyword",
"range": [
- 69,
- 85
+ 99,
+ 115
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 13
},
"end": {
- "line": 4,
+ "line": 5,
"column": 29
}
}
@@ -179,16 +252,16 @@
"type": "Identifier",
"name": "constructor",
"range": [
- 206,
- 217
+ 236,
+ 247
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 4
},
"end": {
- "line": 10,
+ "line": 11,
"column": 15
}
}
@@ -201,16 +274,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 218,
- 220
+ 248,
+ 250
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 16
},
"end": {
- "line": 10,
+ "line": 11,
"column": 18
}
}
@@ -228,16 +301,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 236,
- 237
+ 266,
+ 267
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 12
},
"end": {
- "line": 11,
+ "line": 12,
"column": 13
}
}
@@ -251,16 +324,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 240,
- 242
+ 270,
+ 272
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 16
},
"end": {
- "line": 11,
+ "line": 12,
"column": 18
}
}
@@ -269,62 +342,62 @@
"type": "Identifier",
"name": "config",
"range": [
- 243,
- 249
+ 273,
+ 279
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 19
},
"end": {
- "line": 11,
+ "line": 12,
"column": 25
}
}
},
"range": [
- 240,
- 249
+ 270,
+ 279
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 16
},
"end": {
- "line": 11,
+ "line": 12,
"column": 25
}
}
},
"arguments": [],
"range": [
- 240,
- 251
+ 270,
+ 281
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 16
},
"end": {
- "line": 11,
+ "line": 12,
"column": 27
}
}
},
"range": [
- 236,
- 251
+ 266,
+ 281
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 12
},
"end": {
- "line": 11,
+ "line": 12,
"column": 27
}
}
@@ -332,16 +405,16 @@
],
"kind": "var",
"range": [
- 232,
- 252
+ 262,
+ 282
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 8
},
"end": {
- "line": 11,
+ "line": 12,
"column": 28
}
},
@@ -350,16 +423,16 @@
"type": "Line",
"value": "defines css class for highlighting",
"range": [
- 261,
- 297
+ 291,
+ 327
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 8
},
"end": {
- "line": 12,
+ "line": 13,
"column": 44
}
}
@@ -377,16 +450,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 306,
- 310
+ 336,
+ 340
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 8
},
"end": {
- "line": 13,
+ "line": 14,
"column": 12
}
}
@@ -395,31 +468,31 @@
"type": "Identifier",
"name": "highlightCssClass",
"range": [
- 311,
- 328
+ 341,
+ 358
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 13
},
"end": {
- "line": 13,
+ "line": 14,
"column": 30
}
}
},
"range": [
- 306,
- 328
+ 336,
+ 358
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 8
},
"end": {
- "line": 13,
+ "line": 14,
"column": 30
}
}
@@ -434,16 +507,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 331,
- 332
+ 361,
+ 362
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 33
},
"end": {
- "line": 13,
+ "line": 14,
"column": 34
}
}
@@ -452,31 +525,31 @@
"type": "Identifier",
"name": "highlight_css_class",
"range": [
- 333,
- 352
+ 363,
+ 382
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 35
},
"end": {
- "line": 13,
+ "line": 14,
"column": 54
}
}
},
"range": [
- 331,
- 352
+ 361,
+ 382
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 33
},
"end": {
- "line": 13,
+ "line": 14,
"column": 54
}
}
@@ -486,61 +559,61 @@
"value": "keyword",
"raw": "'keyword'",
"range": [
- 356,
- 365
+ 386,
+ 395
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 58
},
"end": {
- "line": 13,
+ "line": 14,
"column": 67
}
}
},
"range": [
- 331,
- 365
+ 361,
+ 395
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 33
},
"end": {
- "line": 13,
+ "line": 14,
"column": 67
}
}
},
"range": [
- 306,
- 365
+ 336,
+ 395
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 8
},
"end": {
- "line": 13,
+ "line": 14,
"column": 67
}
}
},
"range": [
- 306,
- 366
+ 336,
+ 396
],
"loc": {
"start": {
- "line": 13,
+ "line": 14,
"column": 8
},
"end": {
- "line": 13,
+ "line": 14,
"column": 68
}
},
@@ -549,16 +622,16 @@
"type": "Line",
"value": "defines css class for highlighting",
"range": [
- 261,
- 297
+ 291,
+ 327
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 8
},
"end": {
- "line": 12,
+ "line": 13,
"column": 44
}
}
@@ -576,16 +649,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 375,
- 379
+ 405,
+ 409
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 12
}
}
@@ -594,31 +667,31 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 380,
- 396
+ 410,
+ 426
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 13
},
"end": {
- "line": 14,
+ "line": 15,
"column": 29
}
}
},
"range": [
- 375,
- 396
+ 405,
+ 426
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 29
}
}
@@ -627,46 +700,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 399,
- 401
+ 429,
+ 431
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 32
},
"end": {
- "line": 14,
+ "line": 15,
"column": 34
}
}
},
"range": [
- 375,
- 401
+ 405,
+ 431
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 34
}
}
},
"range": [
- 375,
- 402
+ 405,
+ 432
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 35
}
}
@@ -682,16 +755,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 412,
- 416
+ 442,
+ 446
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 8
},
"end": {
- "line": 16,
+ "line": 17,
"column": 12
}
}
@@ -700,31 +773,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 417,
- 419
+ 447,
+ 449
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 13
},
"end": {
- "line": 16,
+ "line": 17,
"column": 15
}
}
},
"range": [
- 412,
- 419
+ 442,
+ 449
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 8
},
"end": {
- "line": 16,
+ "line": 17,
"column": 15
}
}
@@ -733,62 +806,204 @@
"type": "Identifier",
"name": "tf",
"range": [
- 422,
- 424
+ 452,
+ 454
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 18
},
"end": {
- "line": 16,
+ "line": 17,
"column": 20
}
}
},
"range": [
- 412,
- 424
+ 442,
+ 454
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 8
},
"end": {
- "line": 16,
+ "line": 17,
"column": 20
}
}
},
"range": [
- 412,
- 425
+ 442,
+ 455
],
"loc": {
"start": {
- "line": 16,
+ "line": 17,
"column": 8
},
"end": {
- "line": 16,
+ "line": 17,
"column": 21
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 464,
+ 468
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 8
+ },
+ "end": {
+ "line": 18,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 469,
+ 476
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 13
+ },
+ "end": {
+ "line": 18,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 464,
+ 476
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 8
+ },
+ "end": {
+ "line": 18,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 479,
+ 481
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 23
+ },
+ "end": {
+ "line": 18,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 482,
+ 489
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 26
+ },
+ "end": {
+ "line": 18,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 479,
+ 489
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 23
+ },
+ "end": {
+ "line": 18,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 464,
+ 489
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 8
+ },
+ "end": {
+ "line": 18,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 464,
+ 490
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 8
+ },
+ "end": {
+ "line": 18,
+ "column": 34
+ }
+ }
}
],
"range": [
- 222,
- 431
+ 252,
+ 496
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 20
},
"end": {
- "line": 17,
+ "line": 19,
"column": 5
}
}
@@ -796,16 +1011,16 @@
"generator": false,
"expression": false,
"range": [
- 217,
- 431
+ 247,
+ 496
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 15
},
"end": {
- "line": 17,
+ "line": 19,
"column": 5
}
}
@@ -813,16 +1028,16 @@
"kind": "constructor",
"computed": false,
"range": [
- 206,
- 431
+ 236,
+ 496
],
"loc": {
"start": {
- "line": 10,
+ "line": 11,
"column": 4
},
"end": {
- "line": 17,
+ "line": 19,
"column": 5
}
},
@@ -831,36 +1046,788 @@
"type": "Block",
"value": "*\n * HighlightKeyword, highlight matched keyword\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 92,
- 201
+ 122,
+ 231
],
"loc": {
"start": {
- "line": 6,
+ "line": 7,
"column": 4
},
"end": {
- "line": 9,
+ "line": 10,
"column": 7
}
}
}
],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 502,
+ 506
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 4
+ },
+ "end": {
+ "line": 21,
+ "column": 8
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 518,
+ 522
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 22,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 523,
+ 530
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 13
+ },
+ "end": {
+ "line": 22,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 518,
+ 530
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 22,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 531,
+ 533
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 21
+ },
+ "end": {
+ "line": 22,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 518,
+ 533
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 22,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 548,
+ 566
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 13
+ },
+ "end": {
+ "line": 23,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "destroy",
+ "raw": "'destroy'",
+ "range": [
+ 568,
+ 577
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 33
+ },
+ "end": {
+ "line": 23,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 547,
+ 578
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 12
+ },
+ "end": {
+ "line": 23,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 597,
+ 601
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "unhighlightAll",
+ "range": [
+ 602,
+ 616
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 22
+ },
+ "end": {
+ "line": 24,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 597,
+ 616
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 597,
+ 618
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 38
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 592,
+ 618
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 12
+ },
+ "end": {
+ "line": 24,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 518,
+ 628
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 518,
+ 629
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 638,
+ 642
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 643,
+ 650
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 13
+ },
+ "end": {
+ "line": 26,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 638,
+ 650
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 651,
+ 653
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 21
+ },
+ "end": {
+ "line": 26,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 638,
+ 653
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "highlight-keyword",
+ "raw": "'highlight-keyword'",
+ "range": [
+ 668,
+ 687
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 13
+ },
+ "end": {
+ "line": 27,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 667,
+ 688
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 12
+ },
+ "end": {
+ "line": 27,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 703,
+ 705
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 13
+ },
+ "end": {
+ "line": 28,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 707,
+ 711
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 17
+ },
+ "end": {
+ "line": 28,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "word",
+ "range": [
+ 713,
+ 717
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 23
+ },
+ "end": {
+ "line": 28,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 737,
+ 741
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 16
+ },
+ "end": {
+ "line": 29,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlight",
+ "range": [
+ 742,
+ 751
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 21
+ },
+ "end": {
+ "line": 29,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 737,
+ 751
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 16
+ },
+ "end": {
+ "line": 29,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 752,
+ 756
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 31
+ },
+ "end": {
+ "line": 29,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "word",
+ "range": [
+ 758,
+ 762
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 37
+ },
+ "end": {
+ "line": 29,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 764,
+ 768
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 43
+ },
+ "end": {
+ "line": 29,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightCssClass",
+ "range": [
+ 769,
+ 786
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 48
+ },
+ "end": {
+ "line": 29,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 764,
+ 786
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 43
+ },
+ "end": {
+ "line": 29,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 737,
+ 787
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 16
+ },
+ "end": {
+ "line": 29,
+ "column": 66
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 702,
+ 787
+ ],
+ "loc": {
+ "start": {
+ "line": 28,
+ "column": 12
+ },
+ "end": {
+ "line": 29,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 638,
+ 797
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 30,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 638,
+ 798
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 8
+ },
+ "end": {
+ "line": 30,
+ "column": 10
+ }
+ }
+ }
+ ],
+ "range": [
+ 508,
+ 804
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 10
+ },
+ "end": {
+ "line": 31,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 506,
+ 804
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 8
+ },
+ "end": {
+ "line": 31,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 502,
+ 804
+ ],
+ "loc": {
+ "start": {
+ "line": 21,
+ "column": 4
+ },
+ "end": {
+ "line": 31,
+ "column": 5
+ }
+ },
"trailingComments": [
{
"type": "Block",
"value": "*\n * highlight occurences of searched term in passed node\n * @param {Node} node\n * @param {String} word Searched term\n * @param {String} cssClass Css class name\n ",
"range": [
- 437,
- 630
+ 810,
+ 1003
],
"loc": {
"start": {
- "line": 19,
+ "line": 33,
"column": 4
},
"end": {
- "line": 24,
+ "line": 38,
"column": 7
}
}
@@ -874,16 +1841,16 @@
"type": "Identifier",
"name": "highlight",
"range": [
- 635,
- 644
+ 1008,
+ 1017
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 4
},
"end": {
- "line": 25,
+ "line": 39,
"column": 13
}
}
@@ -896,16 +1863,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 645,
- 649
+ 1018,
+ 1022
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 14
},
"end": {
- "line": 25,
+ "line": 39,
"column": 18
}
}
@@ -914,16 +1881,16 @@
"type": "Identifier",
"name": "word",
"range": [
- 651,
- 655
+ 1024,
+ 1028
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 20
},
"end": {
- "line": 25,
+ "line": 39,
"column": 24
}
}
@@ -932,16 +1899,16 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 657,
- 665
+ 1030,
+ 1038
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 26
},
"end": {
- "line": 25,
+ "line": 39,
"column": 34
}
}
@@ -959,16 +1926,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 725,
- 729
+ 1098,
+ 1102
],
"loc": {
"start": {
- "line": 27,
+ "line": 41,
"column": 11
},
"end": {
- "line": 27,
+ "line": 41,
"column": 15
}
}
@@ -977,31 +1944,31 @@
"type": "Identifier",
"name": "hasChildNodes",
"range": [
- 730,
- 743
+ 1103,
+ 1116
],
"loc": {
"start": {
- "line": 27,
+ "line": 41,
"column": 16
},
"end": {
- "line": 27,
+ "line": 41,
"column": 29
}
}
},
"range": [
- 725,
- 743
+ 1098,
+ 1116
],
"loc": {
"start": {
- "line": 27,
+ "line": 41,
"column": 11
},
"end": {
- "line": 27,
+ "line": 41,
"column": 29
}
}
@@ -1018,16 +1985,16 @@
"type": "Identifier",
"name": "children",
"range": [
- 762,
- 770
+ 1135,
+ 1143
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 16
},
"end": {
- "line": 28,
+ "line": 42,
"column": 24
}
}
@@ -1039,16 +2006,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 773,
- 777
+ 1146,
+ 1150
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 27
},
"end": {
- "line": 28,
+ "line": 42,
"column": 31
}
}
@@ -1057,46 +2024,46 @@
"type": "Identifier",
"name": "childNodes",
"range": [
- 778,
- 788
+ 1151,
+ 1161
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 32
},
"end": {
- "line": 28,
+ "line": 42,
"column": 42
}
}
},
"range": [
- 773,
- 788
+ 1146,
+ 1161
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 27
},
"end": {
- "line": 28,
+ "line": 42,
"column": 42
}
}
},
"range": [
- 762,
- 788
+ 1135,
+ 1161
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 16
},
"end": {
- "line": 28,
+ "line": 42,
"column": 42
}
}
@@ -1104,16 +2071,16 @@
],
"kind": "var",
"range": [
- 758,
- 789
+ 1131,
+ 1162
],
"loc": {
"start": {
- "line": 28,
+ "line": 42,
"column": 12
},
"end": {
- "line": 28,
+ "line": 42,
"column": 43
}
}
@@ -1129,16 +2096,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 810,
- 811
+ 1183,
+ 1184
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 20
},
"end": {
- "line": 29,
+ "line": 43,
"column": 21
}
}
@@ -1148,31 +2115,31 @@
"value": 0,
"raw": "0",
"range": [
- 812,
- 813
+ 1185,
+ 1186
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 22
},
"end": {
- "line": 29,
+ "line": 43,
"column": 23
}
}
},
"range": [
- 810,
- 813
+ 1183,
+ 1186
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 20
},
"end": {
- "line": 29,
+ "line": 43,
"column": 23
}
}
@@ -1180,16 +2147,16 @@
],
"kind": "var",
"range": [
- 806,
- 813
+ 1179,
+ 1186
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 16
},
"end": {
- "line": 29,
+ "line": 43,
"column": 23
}
}
@@ -1201,16 +2168,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 815,
- 816
+ 1188,
+ 1189
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 25
},
"end": {
- "line": 29,
+ "line": 43,
"column": 26
}
}
@@ -1222,16 +2189,16 @@
"type": "Identifier",
"name": "children",
"range": [
- 817,
- 825
+ 1190,
+ 1198
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 27
},
"end": {
- "line": 29,
+ "line": 43,
"column": 35
}
}
@@ -1240,46 +2207,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 826,
- 832
+ 1199,
+ 1205
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 36
},
"end": {
- "line": 29,
+ "line": 43,
"column": 42
}
}
},
"range": [
- 817,
- 832
+ 1190,
+ 1205
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 27
},
"end": {
- "line": 29,
+ "line": 43,
"column": 42
}
}
},
"range": [
- 815,
- 832
+ 1188,
+ 1205
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 25
},
"end": {
- "line": 29,
+ "line": 43,
"column": 42
}
}
@@ -1291,32 +2258,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 834,
- 835
+ 1207,
+ 1208
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 44
},
"end": {
- "line": 29,
+ "line": 43,
"column": 45
}
}
},
"prefix": false,
"range": [
- 834,
- 837
+ 1207,
+ 1210
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 44
},
"end": {
- "line": 29,
+ "line": 43,
"column": 47
}
}
@@ -1334,16 +2301,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 856,
- 860
+ 1229,
+ 1233
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 16
},
"end": {
- "line": 30,
+ "line": 44,
"column": 20
}
}
@@ -1352,31 +2319,31 @@
"type": "Identifier",
"name": "highlight",
"range": [
- 861,
- 870
+ 1234,
+ 1243
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 21
},
"end": {
- "line": 30,
+ "line": 44,
"column": 30
}
}
},
"range": [
- 856,
- 870
+ 1229,
+ 1243
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 16
},
"end": {
- "line": 30,
+ "line": 44,
"column": 30
}
}
@@ -1389,16 +2356,16 @@
"type": "Identifier",
"name": "children",
"range": [
- 871,
- 879
+ 1244,
+ 1252
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 31
},
"end": {
- "line": 30,
+ "line": 44,
"column": 39
}
}
@@ -1407,31 +2374,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 880,
- 881
+ 1253,
+ 1254
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 40
},
"end": {
- "line": 30,
+ "line": 44,
"column": 41
}
}
},
"range": [
- 871,
- 882
+ 1244,
+ 1255
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 31
},
"end": {
- "line": 30,
+ "line": 44,
"column": 42
}
}
@@ -1440,16 +2407,16 @@
"type": "Identifier",
"name": "word",
"range": [
- 884,
- 888
+ 1257,
+ 1261
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 44
},
"end": {
- "line": 30,
+ "line": 44,
"column": 48
}
}
@@ -1458,110 +2425,110 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 890,
- 898
+ 1263,
+ 1271
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 50
},
"end": {
- "line": 30,
+ "line": 44,
"column": 58
}
}
}
],
"range": [
- 856,
- 899
+ 1229,
+ 1272
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 16
},
"end": {
- "line": 30,
+ "line": 44,
"column": 59
}
}
},
"range": [
- 856,
- 900
+ 1229,
+ 1273
],
"loc": {
"start": {
- "line": 30,
+ "line": 44,
"column": 16
},
"end": {
- "line": 30,
+ "line": 44,
"column": 60
}
}
}
],
"range": [
- 838,
- 914
+ 1211,
+ 1287
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 48
},
"end": {
- "line": 31,
+ "line": 45,
"column": 13
}
}
},
"range": [
- 802,
- 914
+ 1175,
+ 1287
],
"loc": {
"start": {
- "line": 29,
+ "line": 43,
"column": 12
},
"end": {
- "line": 31,
+ "line": 45,
"column": 13
}
}
}
],
"range": [
- 744,
- 924
+ 1117,
+ 1297
],
"loc": {
"start": {
- "line": 27,
+ "line": 41,
"column": 30
},
"end": {
- "line": 32,
+ "line": 46,
"column": 9
}
}
},
"alternate": null,
"range": [
- 722,
- 924
+ 1095,
+ 1297
],
"loc": {
"start": {
- "line": 27,
+ "line": 41,
"column": 8
},
"end": {
- "line": 32,
+ "line": 46,
"column": 9
}
},
@@ -1570,16 +2537,16 @@
"type": "Line",
"value": " Iterate into this nodes childNodes",
"range": [
- 676,
- 713
+ 1049,
+ 1086
],
"loc": {
"start": {
- "line": 26,
+ "line": 40,
"column": 8
},
"end": {
- "line": 26,
+ "line": 40,
"column": 45
}
}
@@ -1598,16 +2565,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 937,
- 941
+ 1310,
+ 1314
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 11
},
"end": {
- "line": 34,
+ "line": 48,
"column": 15
}
}
@@ -1616,31 +2583,31 @@
"type": "Identifier",
"name": "nodeType",
"range": [
- 942,
- 950
+ 1315,
+ 1323
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 16
},
"end": {
- "line": 34,
+ "line": 48,
"column": 24
}
}
},
"range": [
- 937,
- 950
+ 1310,
+ 1323
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 11
},
"end": {
- "line": 34,
+ "line": 48,
"column": 24
}
}
@@ -1650,31 +2617,31 @@
"value": 3,
"raw": "3",
"range": [
- 955,
- 956
+ 1328,
+ 1329
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 29
},
"end": {
- "line": 34,
+ "line": 48,
"column": 30
}
}
},
"range": [
- 937,
- 956
+ 1310,
+ 1329
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 11
},
"end": {
- "line": 34,
+ "line": 48,
"column": 30
}
}
@@ -1691,16 +2658,16 @@
"type": "Identifier",
"name": "tempNodeVal",
"range": [
- 975,
- 986
+ 1348,
+ 1359
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 16
},
"end": {
- "line": 35,
+ "line": 49,
"column": 27
}
}
@@ -1714,16 +2681,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 989,
- 992
+ 1362,
+ 1365
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 30
},
"end": {
- "line": 35,
+ "line": 49,
"column": 33
}
}
@@ -1732,31 +2699,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 993,
- 998
+ 1366,
+ 1371
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 34
},
"end": {
- "line": 35,
+ "line": 49,
"column": 39
}
}
},
"range": [
- 989,
- 998
+ 1362,
+ 1371
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 30
},
"end": {
- "line": 35,
+ "line": 49,
"column": 39
}
}
@@ -1769,16 +2736,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 999,
- 1003
+ 1372,
+ 1376
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 40
},
"end": {
- "line": 35,
+ "line": 49,
"column": 44
}
}
@@ -1787,62 +2754,62 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 1004,
- 1013
+ 1377,
+ 1386
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 45
},
"end": {
- "line": 35,
+ "line": 49,
"column": 54
}
}
},
"range": [
- 999,
- 1013
+ 1372,
+ 1386
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 40
},
"end": {
- "line": 35,
+ "line": 49,
"column": 54
}
}
}
],
"range": [
- 989,
- 1014
+ 1362,
+ 1387
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 30
},
"end": {
- "line": 35,
+ "line": 49,
"column": 55
}
}
},
"range": [
- 975,
- 1014
+ 1348,
+ 1387
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 16
},
"end": {
- "line": 35,
+ "line": 49,
"column": 55
}
}
@@ -1850,16 +2817,16 @@
],
"kind": "var",
"range": [
- 971,
- 1015
+ 1344,
+ 1388
],
"loc": {
"start": {
- "line": 35,
+ "line": 49,
"column": 12
},
"end": {
- "line": 35,
+ "line": 49,
"column": 56
}
}
@@ -1873,16 +2840,16 @@
"type": "Identifier",
"name": "tempWordVal",
"range": [
- 1032,
- 1043
+ 1405,
+ 1416
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 16
},
"end": {
- "line": 36,
+ "line": 50,
"column": 27
}
}
@@ -1896,16 +2863,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 1046,
- 1049
+ 1419,
+ 1422
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 30
},
"end": {
- "line": 36,
+ "line": 50,
"column": 33
}
}
@@ -1914,31 +2881,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 1050,
- 1055
+ 1423,
+ 1428
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 34
},
"end": {
- "line": 36,
+ "line": 50,
"column": 39
}
}
},
"range": [
- 1046,
- 1055
+ 1419,
+ 1428
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 30
},
"end": {
- "line": 36,
+ "line": 50,
"column": 39
}
}
@@ -1948,47 +2915,47 @@
"type": "Identifier",
"name": "word",
"range": [
- 1056,
- 1060
+ 1429,
+ 1433
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 40
},
"end": {
- "line": 36,
+ "line": 50,
"column": 44
}
}
}
],
"range": [
- 1046,
- 1061
+ 1419,
+ 1434
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 30
},
"end": {
- "line": 36,
+ "line": 50,
"column": 45
}
}
},
"range": [
- 1032,
- 1061
+ 1405,
+ 1434
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 16
},
"end": {
- "line": 36,
+ "line": 50,
"column": 45
}
}
@@ -1996,16 +2963,16 @@
],
"kind": "var",
"range": [
- 1028,
- 1062
+ 1401,
+ 1435
],
"loc": {
"start": {
- "line": 36,
+ "line": 50,
"column": 12
},
"end": {
- "line": 36,
+ "line": 50,
"column": 46
}
}
@@ -2024,16 +2991,16 @@
"type": "Identifier",
"name": "tempNodeVal",
"range": [
- 1078,
- 1089
+ 1451,
+ 1462
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 15
},
"end": {
- "line": 37,
+ "line": 51,
"column": 26
}
}
@@ -2042,31 +3009,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 1090,
- 1097
+ 1463,
+ 1470
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 27
},
"end": {
- "line": 37,
+ "line": 51,
"column": 34
}
}
},
"range": [
- 1078,
- 1097
+ 1451,
+ 1470
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 15
},
"end": {
- "line": 37,
+ "line": 51,
"column": 34
}
}
@@ -2076,32 +3043,32 @@
"type": "Identifier",
"name": "tempWordVal",
"range": [
- 1098,
- 1109
+ 1471,
+ 1482
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 35
},
"end": {
- "line": 37,
+ "line": 51,
"column": 46
}
}
}
],
"range": [
- 1078,
- 1110
+ 1451,
+ 1483
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 15
},
"end": {
- "line": 37,
+ "line": 51,
"column": 47
}
}
@@ -2114,47 +3081,47 @@
"value": 1,
"raw": "1",
"range": [
- 1115,
- 1116
+ 1488,
+ 1489
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 52
},
"end": {
- "line": 37,
+ "line": 51,
"column": 53
}
}
},
"prefix": true,
"range": [
- 1114,
- 1116
+ 1487,
+ 1489
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 51
},
"end": {
- "line": 37,
+ "line": 51,
"column": 53
}
}
},
"range": [
- 1078,
- 1116
+ 1451,
+ 1489
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 15
},
"end": {
- "line": 37,
+ "line": 51,
"column": 53
}
}
@@ -2171,16 +3138,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1139,
- 1141
+ 1512,
+ 1514
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 20
},
"end": {
- "line": 38,
+ "line": 52,
"column": 22
}
}
@@ -2192,16 +3159,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 1144,
- 1148
+ 1517,
+ 1521
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 25
},
"end": {
- "line": 38,
+ "line": 52,
"column": 29
}
}
@@ -2210,46 +3177,46 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 1149,
- 1159
+ 1522,
+ 1532
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 30
},
"end": {
- "line": 38,
+ "line": 52,
"column": 40
}
}
},
"range": [
- 1144,
- 1159
+ 1517,
+ 1532
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 25
},
"end": {
- "line": 38,
+ "line": 52,
"column": 40
}
}
},
"range": [
- 1139,
- 1159
+ 1512,
+ 1532
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 20
},
"end": {
- "line": 38,
+ "line": 52,
"column": 40
}
}
@@ -2257,16 +3224,16 @@
],
"kind": "var",
"range": [
- 1135,
- 1160
+ 1508,
+ 1533
],
"loc": {
"start": {
- "line": 38,
+ "line": 52,
"column": 16
},
"end": {
- "line": 38,
+ "line": 52,
"column": 41
}
}
@@ -2280,16 +3247,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1180,
- 1182
+ 1553,
+ 1555
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 19
},
"end": {
- "line": 39,
+ "line": 53,
"column": 21
}
}
@@ -2304,16 +3271,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1186,
- 1188
+ 1559,
+ 1561
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 25
},
"end": {
- "line": 39,
+ "line": 53,
"column": 27
}
}
@@ -2322,31 +3289,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 1189,
- 1198
+ 1562,
+ 1571
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 28
},
"end": {
- "line": 39,
+ "line": 53,
"column": 37
}
}
},
"range": [
- 1186,
- 1198
+ 1559,
+ 1571
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 25
},
"end": {
- "line": 39,
+ "line": 53,
"column": 37
}
}
@@ -2355,46 +3322,46 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 1202,
- 1210
+ 1575,
+ 1583
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 41
},
"end": {
- "line": 39,
+ "line": 53,
"column": 49
}
}
},
"range": [
- 1186,
- 1210
+ 1559,
+ 1583
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 25
},
"end": {
- "line": 39,
+ "line": 53,
"column": 49
}
}
},
"range": [
- 1180,
- 1210
+ 1553,
+ 1583
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 19
},
"end": {
- "line": 39,
+ "line": 53,
"column": 49
}
}
@@ -2411,16 +3378,16 @@
"type": "Identifier",
"name": "nv",
"range": [
- 1285,
- 1287
+ 1658,
+ 1660
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 24
},
"end": {
- "line": 41,
+ "line": 55,
"column": 26
}
}
@@ -2432,16 +3399,16 @@
"type": "Identifier",
"name": "node",
"range": [
- 1290,
- 1294
+ 1663,
+ 1667
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 29
},
"end": {
- "line": 41,
+ "line": 55,
"column": 33
}
}
@@ -2450,46 +3417,46 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 1295,
- 1304
+ 1668,
+ 1677
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 34
},
"end": {
- "line": 41,
+ "line": 55,
"column": 43
}
}
},
"range": [
- 1290,
- 1304
+ 1663,
+ 1677
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 29
},
"end": {
- "line": 41,
+ "line": 55,
"column": 43
}
}
},
"range": [
- 1285,
- 1304
+ 1658,
+ 1677
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 24
},
"end": {
- "line": 41,
+ "line": 55,
"column": 43
}
}
@@ -2500,16 +3467,16 @@
"type": "Identifier",
"name": "ni",
"range": [
- 1330,
- 1332
+ 1703,
+ 1705
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 24
},
"end": {
- "line": 42,
+ "line": 56,
"column": 26
}
}
@@ -2523,16 +3490,16 @@
"type": "Identifier",
"name": "tempNodeVal",
"range": [
- 1335,
- 1346
+ 1708,
+ 1719
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 29
},
"end": {
- "line": 42,
+ "line": 56,
"column": 40
}
}
@@ -2541,31 +3508,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 1347,
- 1354
+ 1720,
+ 1727
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 41
},
"end": {
- "line": 42,
+ "line": 56,
"column": 48
}
}
},
"range": [
- 1335,
- 1354
+ 1708,
+ 1727
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 29
},
"end": {
- "line": 42,
+ "line": 56,
"column": 48
}
}
@@ -2575,47 +3542,47 @@
"type": "Identifier",
"name": "tempWordVal",
"range": [
- 1355,
- 1366
+ 1728,
+ 1739
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 49
},
"end": {
- "line": 42,
+ "line": 56,
"column": 60
}
}
}
],
"range": [
- 1335,
- 1367
+ 1708,
+ 1740
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 29
},
"end": {
- "line": 42,
+ "line": 56,
"column": 61
}
}
},
"range": [
- 1330,
- 1367
+ 1703,
+ 1740
],
"loc": {
"start": {
- "line": 42,
+ "line": 56,
"column": 24
},
"end": {
- "line": 42,
+ "line": 56,
"column": 61
}
}
@@ -2626,16 +3593,16 @@
"type": "Identifier",
"name": "before",
"range": [
- 1455,
- 1461
+ 1828,
+ 1834
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 24
},
"end": {
- "line": 44,
+ "line": 58,
"column": 30
}
}
@@ -2649,16 +3616,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1464,
- 1467
+ 1837,
+ 1840
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 33
},
"end": {
- "line": 44,
+ "line": 58,
"column": 36
}
}
@@ -2667,31 +3634,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 1468,
- 1472
+ 1841,
+ 1845
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 37
},
"end": {
- "line": 44,
+ "line": 58,
"column": 41
}
}
},
"range": [
- 1464,
- 1472
+ 1837,
+ 1845
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 33
},
"end": {
- "line": 44,
+ "line": 58,
"column": 41
}
}
@@ -2706,16 +3673,16 @@
"type": "Identifier",
"name": "nv",
"range": [
- 1473,
- 1475
+ 1846,
+ 1848
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 42
},
"end": {
- "line": 44,
+ "line": 58,
"column": 44
}
}
@@ -2724,31 +3691,31 @@
"type": "Identifier",
"name": "substr",
"range": [
- 1476,
- 1482
+ 1849,
+ 1855
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 45
},
"end": {
- "line": 44,
+ "line": 58,
"column": 51
}
}
},
"range": [
- 1473,
- 1482
+ 1846,
+ 1855
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 42
},
"end": {
- "line": 44,
+ "line": 58,
"column": 51
}
}
@@ -2759,16 +3726,16 @@
"value": 0,
"raw": "0",
"range": [
- 1483,
- 1484
+ 1856,
+ 1857
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 52
},
"end": {
- "line": 44,
+ "line": 58,
"column": 53
}
}
@@ -2777,63 +3744,63 @@
"type": "Identifier",
"name": "ni",
"range": [
- 1486,
- 1488
+ 1859,
+ 1861
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 55
},
"end": {
- "line": 44,
+ "line": 58,
"column": 57
}
}
}
],
"range": [
- 1473,
- 1489
+ 1846,
+ 1862
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 42
},
"end": {
- "line": 44,
+ "line": 58,
"column": 58
}
}
}
],
"range": [
- 1464,
- 1490
+ 1837,
+ 1863
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 33
},
"end": {
- "line": 44,
+ "line": 58,
"column": 59
}
}
},
"range": [
- 1455,
- 1490
+ 1828,
+ 1863
],
"loc": {
"start": {
- "line": 44,
+ "line": 58,
"column": 24
},
"end": {
- "line": 44,
+ "line": 58,
"column": 59
}
},
@@ -2842,16 +3809,16 @@
"type": "Line",
"value": " Create a load of replacement nodes",
"range": [
- 1393,
- 1430
+ 1766,
+ 1803
],
"loc": {
"start": {
- "line": 43,
+ "line": 57,
"column": 24
},
"end": {
- "line": 43,
+ "line": 57,
"column": 61
}
}
@@ -2864,16 +3831,16 @@
"type": "Identifier",
"name": "docWordVal",
"range": [
- 1516,
- 1526
+ 1889,
+ 1899
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 24
},
"end": {
- "line": 45,
+ "line": 59,
"column": 34
}
}
@@ -2887,16 +3854,16 @@
"type": "Identifier",
"name": "nv",
"range": [
- 1529,
- 1531
+ 1902,
+ 1904
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 37
},
"end": {
- "line": 45,
+ "line": 59,
"column": 39
}
}
@@ -2905,31 +3872,31 @@
"type": "Identifier",
"name": "substr",
"range": [
- 1532,
- 1538
+ 1905,
+ 1911
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 40
},
"end": {
- "line": 45,
+ "line": 59,
"column": 46
}
}
},
"range": [
- 1529,
- 1538
+ 1902,
+ 1911
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 37
},
"end": {
- "line": 45,
+ "line": 59,
"column": 46
}
}
@@ -2939,16 +3906,16 @@
"type": "Identifier",
"name": "ni",
"range": [
- 1539,
- 1541
+ 1912,
+ 1914
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 47
},
"end": {
- "line": 45,
+ "line": 59,
"column": 49
}
}
@@ -2960,16 +3927,16 @@
"type": "Identifier",
"name": "word",
"range": [
- 1542,
- 1546
+ 1915,
+ 1919
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 50
},
"end": {
- "line": 45,
+ "line": 59,
"column": 54
}
}
@@ -2978,62 +3945,62 @@
"type": "Identifier",
"name": "length",
"range": [
- 1547,
- 1553
+ 1920,
+ 1926
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 55
},
"end": {
- "line": 45,
+ "line": 59,
"column": 61
}
}
},
"range": [
- 1542,
- 1553
+ 1915,
+ 1926
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 50
},
"end": {
- "line": 45,
+ "line": 59,
"column": 61
}
}
}
],
"range": [
- 1529,
- 1554
+ 1902,
+ 1927
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 37
},
"end": {
- "line": 45,
+ "line": 59,
"column": 62
}
}
},
"range": [
- 1516,
- 1554
+ 1889,
+ 1927
],
"loc": {
"start": {
- "line": 45,
+ "line": 59,
"column": 24
},
"end": {
- "line": 45,
+ "line": 59,
"column": 62
}
}
@@ -3044,16 +4011,16 @@
"type": "Identifier",
"name": "after",
"range": [
- 1580,
- 1585
+ 1953,
+ 1958
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 24
},
"end": {
- "line": 46,
+ "line": 60,
"column": 29
}
}
@@ -3067,16 +4034,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1588,
- 1591
+ 1961,
+ 1964
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 32
},
"end": {
- "line": 46,
+ "line": 60,
"column": 35
}
}
@@ -3085,31 +4052,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 1592,
- 1596
+ 1965,
+ 1969
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 36
},
"end": {
- "line": 46,
+ "line": 60,
"column": 40
}
}
},
"range": [
- 1588,
- 1596
+ 1961,
+ 1969
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 32
},
"end": {
- "line": 46,
+ "line": 60,
"column": 40
}
}
@@ -3124,16 +4091,16 @@
"type": "Identifier",
"name": "nv",
"range": [
- 1597,
- 1599
+ 1970,
+ 1972
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 41
},
"end": {
- "line": 46,
+ "line": 60,
"column": 43
}
}
@@ -3142,31 +4109,31 @@
"type": "Identifier",
"name": "substr",
"range": [
- 1600,
- 1606
+ 1973,
+ 1979
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 44
},
"end": {
- "line": 46,
+ "line": 60,
"column": 50
}
}
},
"range": [
- 1597,
- 1606
+ 1970,
+ 1979
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 41
},
"end": {
- "line": 46,
+ "line": 60,
"column": 50
}
}
@@ -3179,16 +4146,16 @@
"type": "Identifier",
"name": "ni",
"range": [
- 1607,
- 1609
+ 1980,
+ 1982
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 51
},
"end": {
- "line": 46,
+ "line": 60,
"column": 53
}
}
@@ -3200,16 +4167,16 @@
"type": "Identifier",
"name": "word",
"range": [
- 1610,
- 1614
+ 1983,
+ 1987
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 54
},
"end": {
- "line": 46,
+ "line": 60,
"column": 58
}
}
@@ -3218,93 +4185,93 @@
"type": "Identifier",
"name": "length",
"range": [
- 1615,
- 1621
+ 1988,
+ 1994
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 59
},
"end": {
- "line": 46,
+ "line": 60,
"column": 65
}
}
},
"range": [
- 1610,
- 1621
+ 1983,
+ 1994
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 54
},
"end": {
- "line": 46,
+ "line": 60,
"column": 65
}
}
},
"range": [
- 1607,
- 1621
+ 1980,
+ 1994
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 51
},
"end": {
- "line": 46,
+ "line": 60,
"column": 65
}
}
}
],
"range": [
- 1597,
- 1622
+ 1970,
+ 1995
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 41
},
"end": {
- "line": 46,
+ "line": 60,
"column": 66
}
}
}
],
"range": [
- 1588,
- 1623
+ 1961,
+ 1996
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 32
},
"end": {
- "line": 46,
+ "line": 60,
"column": 67
}
}
},
"range": [
- 1580,
- 1623
+ 1953,
+ 1996
],
"loc": {
"start": {
- "line": 46,
+ "line": 60,
"column": 24
},
"end": {
- "line": 46,
+ "line": 60,
"column": 67
}
}
@@ -3315,16 +4282,16 @@
"type": "Identifier",
"name": "hiwordtext",
"range": [
- 1649,
- 1659
+ 2022,
+ 2032
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 24
},
"end": {
- "line": 47,
+ "line": 61,
"column": 34
}
}
@@ -3338,16 +4305,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1662,
- 1665
+ 2035,
+ 2038
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 37
},
"end": {
- "line": 47,
+ "line": 61,
"column": 40
}
}
@@ -3356,31 +4323,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 1666,
- 1670
+ 2039,
+ 2043
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 41
},
"end": {
- "line": 47,
+ "line": 61,
"column": 45
}
}
},
"range": [
- 1662,
- 1670
+ 2035,
+ 2043
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 37
},
"end": {
- "line": 47,
+ "line": 61,
"column": 45
}
}
@@ -3390,47 +4357,47 @@
"type": "Identifier",
"name": "docWordVal",
"range": [
- 1671,
- 1681
+ 2044,
+ 2054
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 46
},
"end": {
- "line": 47,
+ "line": 61,
"column": 56
}
}
}
],
"range": [
- 1662,
- 1682
+ 2035,
+ 2055
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 37
},
"end": {
- "line": 47,
+ "line": 61,
"column": 57
}
}
},
"range": [
- 1649,
- 1682
+ 2022,
+ 2055
],
"loc": {
"start": {
- "line": 47,
+ "line": 61,
"column": 24
},
"end": {
- "line": 47,
+ "line": 61,
"column": 57
}
}
@@ -3441,16 +4408,16 @@
"type": "Identifier",
"name": "hiword",
"range": [
- 1708,
- 1714
+ 2081,
+ 2087
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 24
},
"end": {
- "line": 48,
+ "line": 62,
"column": 30
}
}
@@ -3464,16 +4431,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1717,
- 1720
+ 2090,
+ 2093
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 33
},
"end": {
- "line": 48,
+ "line": 62,
"column": 36
}
}
@@ -3482,31 +4449,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 1721,
- 1727
+ 2094,
+ 2100
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 37
},
"end": {
- "line": 48,
+ "line": 62,
"column": 43
}
}
},
"range": [
- 1717,
- 1727
+ 2090,
+ 2100
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 33
},
"end": {
- "line": 48,
+ "line": 62,
"column": 43
}
}
@@ -3517,47 +4484,47 @@
"value": "span",
"raw": "'span'",
"range": [
- 1728,
- 1734
+ 2101,
+ 2107
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 44
},
"end": {
- "line": 48,
+ "line": 62,
"column": 50
}
}
}
],
"range": [
- 1717,
- 1735
+ 2090,
+ 2108
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 33
},
"end": {
- "line": 48,
+ "line": 62,
"column": 51
}
}
},
"range": [
- 1708,
- 1735
+ 2081,
+ 2108
],
"loc": {
"start": {
- "line": 48,
+ "line": 62,
"column": 24
},
"end": {
- "line": 48,
+ "line": 62,
"column": 51
}
}
@@ -3565,16 +4532,16 @@
],
"kind": "var",
"range": [
- 1281,
- 1736
+ 1654,
+ 2109
],
"loc": {
"start": {
- "line": 41,
+ "line": 55,
"column": 20
},
"end": {
- "line": 48,
+ "line": 62,
"column": 52
}
},
@@ -3583,16 +4550,16 @@
"type": "Line",
"value": " word not highlighted yet",
"range": [
- 1233,
- 1260
+ 1606,
+ 1633
],
"loc": {
"start": {
- "line": 40,
+ "line": 54,
"column": 20
},
"end": {
- "line": 40,
+ "line": 54,
"column": 47
}
}
@@ -3611,16 +4578,16 @@
"type": "Identifier",
"name": "hiword",
"range": [
- 1757,
- 1763
+ 2130,
+ 2136
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 20
},
"end": {
- "line": 49,
+ "line": 63,
"column": 26
}
}
@@ -3629,31 +4596,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 1764,
- 1773
+ 2137,
+ 2146
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 27
},
"end": {
- "line": 49,
+ "line": 63,
"column": 36
}
}
},
"range": [
- 1757,
- 1773
+ 2130,
+ 2146
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 20
},
"end": {
- "line": 49,
+ "line": 63,
"column": 36
}
}
@@ -3662,46 +4629,46 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 1776,
- 1784
+ 2149,
+ 2157
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 39
},
"end": {
- "line": 49,
+ "line": 63,
"column": 47
}
}
},
"range": [
- 1757,
- 1784
+ 2130,
+ 2157
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 20
},
"end": {
- "line": 49,
+ "line": 63,
"column": 47
}
}
},
"range": [
- 1757,
- 1785
+ 2130,
+ 2158
],
"loc": {
"start": {
- "line": 49,
+ "line": 63,
"column": 20
},
"end": {
- "line": 49,
+ "line": 63,
"column": 48
}
}
@@ -3717,16 +4684,16 @@
"type": "Identifier",
"name": "hiword",
"range": [
- 1806,
- 1812
+ 2179,
+ 2185
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 20
},
"end": {
- "line": 50,
+ "line": 64,
"column": 26
}
}
@@ -3735,31 +4702,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 1813,
- 1824
+ 2186,
+ 2197
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 27
},
"end": {
- "line": 50,
+ "line": 64,
"column": 38
}
}
},
"range": [
- 1806,
- 1824
+ 2179,
+ 2197
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 20
},
"end": {
- "line": 50,
+ "line": 64,
"column": 38
}
}
@@ -3769,47 +4736,47 @@
"type": "Identifier",
"name": "hiwordtext",
"range": [
- 1825,
- 1835
+ 2198,
+ 2208
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 39
},
"end": {
- "line": 50,
+ "line": 64,
"column": 49
}
}
}
],
"range": [
- 1806,
- 1836
+ 2179,
+ 2209
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 20
},
"end": {
- "line": 50,
+ "line": 64,
"column": 50
}
}
},
"range": [
- 1806,
- 1837
+ 2179,
+ 2210
],
"loc": {
"start": {
- "line": 50,
+ "line": 64,
"column": 20
},
"end": {
- "line": 50,
+ "line": 64,
"column": 51
}
}
@@ -3825,16 +4792,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1858,
- 1860
+ 2231,
+ 2233
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 20
},
"end": {
- "line": 51,
+ "line": 65,
"column": 22
}
}
@@ -3843,31 +4810,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 1861,
- 1873
+ 2234,
+ 2246
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 23
},
"end": {
- "line": 51,
+ "line": 65,
"column": 35
}
}
},
"range": [
- 1858,
- 1873
+ 2231,
+ 2246
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 20
},
"end": {
- "line": 51,
+ "line": 65,
"column": 35
}
}
@@ -3877,16 +4844,16 @@
"type": "Identifier",
"name": "before",
"range": [
- 1874,
- 1880
+ 2247,
+ 2253
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 36
},
"end": {
- "line": 51,
+ "line": 65,
"column": 42
}
}
@@ -3895,47 +4862,47 @@
"type": "Identifier",
"name": "node",
"range": [
- 1881,
- 1885
+ 2254,
+ 2258
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 43
},
"end": {
- "line": 51,
+ "line": 65,
"column": 47
}
}
}
],
"range": [
- 1858,
- 1886
+ 2231,
+ 2259
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 20
},
"end": {
- "line": 51,
+ "line": 65,
"column": 48
}
}
},
"range": [
- 1858,
- 1887
+ 2231,
+ 2260
],
"loc": {
"start": {
- "line": 51,
+ "line": 65,
"column": 20
},
"end": {
- "line": 51,
+ "line": 65,
"column": 49
}
}
@@ -3951,16 +4918,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1908,
- 1910
+ 2281,
+ 2283
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 20
},
"end": {
- "line": 52,
+ "line": 66,
"column": 22
}
}
@@ -3969,31 +4936,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 1911,
- 1923
+ 2284,
+ 2296
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 23
},
"end": {
- "line": 52,
+ "line": 66,
"column": 35
}
}
},
"range": [
- 1908,
- 1923
+ 2281,
+ 2296
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 20
},
"end": {
- "line": 52,
+ "line": 66,
"column": 35
}
}
@@ -4003,16 +4970,16 @@
"type": "Identifier",
"name": "hiword",
"range": [
- 1924,
- 1930
+ 2297,
+ 2303
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 36
},
"end": {
- "line": 52,
+ "line": 66,
"column": 42
}
}
@@ -4021,47 +4988,47 @@
"type": "Identifier",
"name": "node",
"range": [
- 1931,
- 1935
+ 2304,
+ 2308
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 43
},
"end": {
- "line": 52,
+ "line": 66,
"column": 47
}
}
}
],
"range": [
- 1908,
- 1936
+ 2281,
+ 2309
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 20
},
"end": {
- "line": 52,
+ "line": 66,
"column": 48
}
}
},
"range": [
- 1908,
- 1937
+ 2281,
+ 2310
],
"loc": {
"start": {
- "line": 52,
+ "line": 66,
"column": 20
},
"end": {
- "line": 52,
+ "line": 66,
"column": 49
}
}
@@ -4077,16 +5044,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 1958,
- 1960
+ 2331,
+ 2333
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 20
},
"end": {
- "line": 53,
+ "line": 67,
"column": 22
}
}
@@ -4095,31 +5062,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 1961,
- 1973
+ 2334,
+ 2346
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 23
},
"end": {
- "line": 53,
+ "line": 67,
"column": 35
}
}
},
"range": [
- 1958,
- 1973
+ 2331,
+ 2346
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 20
},
"end": {
- "line": 53,
+ "line": 67,
"column": 35
}
}
@@ -4129,16 +5096,16 @@
"type": "Identifier",
"name": "after",
"range": [
- 1974,
- 1979
+ 2347,
+ 2352
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 36
},
"end": {
- "line": 53,
+ "line": 67,
"column": 41
}
}
@@ -4147,47 +5114,47 @@
"type": "Identifier",
"name": "node",
"range": [
- 1980,
- 1984
+ 2353,
+ 2357
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 42
},
"end": {
- "line": 53,
+ "line": 67,
"column": 46
}
}
}
],
"range": [
- 1958,
- 1985
+ 2331,
+ 2358
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 20
},
"end": {
- "line": 53,
+ "line": 67,
"column": 47
}
}
},
"range": [
- 1958,
- 1986
+ 2331,
+ 2359
],
"loc": {
"start": {
- "line": 53,
+ "line": 67,
"column": 20
},
"end": {
- "line": 53,
+ "line": 67,
"column": 48
}
}
@@ -4203,16 +5170,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2007,
- 2009
+ 2380,
+ 2382
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 20
},
"end": {
- "line": 54,
+ "line": 68,
"column": 22
}
}
@@ -4221,31 +5188,31 @@
"type": "Identifier",
"name": "removeChild",
"range": [
- 2010,
- 2021
+ 2383,
+ 2394
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 23
},
"end": {
- "line": 54,
+ "line": 68,
"column": 34
}
}
},
"range": [
- 2007,
- 2021
+ 2380,
+ 2394
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 20
},
"end": {
- "line": 54,
+ "line": 68,
"column": 34
}
}
@@ -4255,47 +5222,47 @@
"type": "Identifier",
"name": "node",
"range": [
- 2022,
- 2026
+ 2395,
+ 2399
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 35
},
"end": {
- "line": 54,
+ "line": 68,
"column": 39
}
}
}
],
"range": [
- 2007,
- 2027
+ 2380,
+ 2400
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 20
},
"end": {
- "line": 54,
+ "line": 68,
"column": 40
}
}
},
"range": [
- 2007,
- 2028
+ 2380,
+ 2401
],
"loc": {
"start": {
- "line": 54,
+ "line": 68,
"column": 20
},
"end": {
- "line": 54,
+ "line": 68,
"column": 41
}
}
@@ -4313,16 +5280,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2049,
- 2053
+ 2422,
+ 2426
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 20
},
"end": {
- "line": 55,
+ "line": 69,
"column": 24
}
}
@@ -4331,31 +5298,31 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 2054,
- 2070
+ 2427,
+ 2443
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 25
},
"end": {
- "line": 55,
+ "line": 69,
"column": 41
}
}
},
"range": [
- 2049,
- 2070
+ 2422,
+ 2443
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 20
},
"end": {
- "line": 55,
+ "line": 69,
"column": 41
}
}
@@ -4364,31 +5331,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 2071,
- 2075
+ 2444,
+ 2448
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 42
},
"end": {
- "line": 55,
+ "line": 69,
"column": 46
}
}
},
"range": [
- 2049,
- 2075
+ 2422,
+ 2448
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 20
},
"end": {
- "line": 55,
+ "line": 69,
"column": 46
}
}
@@ -4401,16 +5368,16 @@
"type": "Identifier",
"name": "hiword",
"range": [
- 2076,
- 2082
+ 2449,
+ 2455
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 47
},
"end": {
- "line": 55,
+ "line": 69,
"column": 53
}
}
@@ -4419,174 +5386,174 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 2083,
- 2093
+ 2456,
+ 2466
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 54
},
"end": {
- "line": 55,
+ "line": 69,
"column": 64
}
}
},
"range": [
- 2076,
- 2093
+ 2449,
+ 2466
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 47
},
"end": {
- "line": 55,
+ "line": 69,
"column": 64
}
}
}
],
"range": [
- 2049,
- 2094
+ 2422,
+ 2467
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 20
},
"end": {
- "line": 55,
+ "line": 69,
"column": 65
}
}
},
"range": [
- 2049,
- 2095
+ 2422,
+ 2468
],
"loc": {
"start": {
- "line": 55,
+ "line": 69,
"column": 20
},
"end": {
- "line": 55,
+ "line": 69,
"column": 66
}
}
}
],
"range": [
- 1211,
- 2113
+ 1584,
+ 2486
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 50
},
"end": {
- "line": 56,
+ "line": 70,
"column": 17
}
}
},
"alternate": null,
"range": [
- 1177,
- 2113
+ 1550,
+ 2486
],
"loc": {
"start": {
- "line": 39,
+ "line": 53,
"column": 16
},
"end": {
- "line": 56,
+ "line": 70,
"column": 17
}
}
}
],
"range": [
- 1117,
- 2127
+ 1490,
+ 2500
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 54
},
"end": {
- "line": 57,
+ "line": 71,
"column": 13
}
}
},
"alternate": null,
"range": [
- 1075,
- 2127
+ 1448,
+ 2500
],
"loc": {
"start": {
- "line": 37,
+ "line": 51,
"column": 12
},
"end": {
- "line": 57,
+ "line": 71,
"column": 13
}
}
}
],
"range": [
- 957,
- 2137
+ 1330,
+ 2510
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 31
},
"end": {
- "line": 58,
+ "line": 72,
"column": 9
}
}
},
"alternate": null,
"range": [
- 934,
- 2137
+ 1307,
+ 2510
],
"loc": {
"start": {
- "line": 34,
+ "line": 48,
"column": 8
},
"end": {
- "line": 58,
+ "line": 72,
"column": 9
}
}
}
],
"range": [
- 666,
- 2143
+ 1039,
+ 2516
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 35
},
"end": {
- "line": 59,
+ "line": 73,
"column": 5
}
}
@@ -4594,16 +5561,16 @@
"generator": false,
"expression": false,
"range": [
- 644,
- 2143
+ 1017,
+ 2516
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 13
},
"end": {
- "line": 59,
+ "line": 73,
"column": 5
}
}
@@ -4611,16 +5578,16 @@
"kind": "method",
"computed": false,
"range": [
- 635,
- 2143
+ 1008,
+ 2516
],
"loc": {
"start": {
- "line": 25,
+ "line": 39,
"column": 4
},
"end": {
- "line": 59,
+ "line": 73,
"column": 5
}
},
@@ -4629,16 +5596,16 @@
"type": "Block",
"value": "*\n * highlight occurences of searched term in passed node\n * @param {Node} node\n * @param {String} word Searched term\n * @param {String} cssClass Css class name\n ",
"range": [
- 437,
- 630
+ 810,
+ 1003
],
"loc": {
"start": {
- "line": 19,
+ "line": 33,
"column": 4
},
"end": {
- "line": 24,
+ "line": 38,
"column": 7
}
}
@@ -4649,16 +5616,16 @@
"type": "Block",
"value": "*\n * Removes highlight to nodes matching passed string\n * @param {String} word\n * @param {String} cssClass Css class to remove\n ",
"range": [
- 2149,
- 2299
+ 2522,
+ 2672
],
"loc": {
"start": {
- "line": 61,
+ "line": 75,
"column": 4
},
"end": {
- "line": 65,
+ "line": 79,
"column": 7
}
}
@@ -4672,16 +5639,16 @@
"type": "Identifier",
"name": "unhighlight",
"range": [
- 2304,
- 2315
+ 2677,
+ 2688
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 4
},
"end": {
- "line": 66,
+ "line": 80,
"column": 15
}
}
@@ -4694,16 +5661,16 @@
"type": "Identifier",
"name": "word",
"range": [
- 2316,
- 2320
+ 2689,
+ 2693
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 16
},
"end": {
- "line": 66,
+ "line": 80,
"column": 20
}
}
@@ -4712,16 +5679,16 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 2322,
- 2330
+ 2695,
+ 2703
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 22
},
"end": {
- "line": 66,
+ "line": 80,
"column": 30
}
}
@@ -4739,16 +5706,16 @@
"type": "Identifier",
"name": "arrRemove",
"range": [
- 2345,
- 2354
+ 2718,
+ 2727
],
"loc": {
"start": {
- "line": 67,
+ "line": 81,
"column": 12
},
"end": {
- "line": 67,
+ "line": 81,
"column": 21
}
}
@@ -4757,31 +5724,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 2357,
- 2359
+ 2730,
+ 2732
],
"loc": {
"start": {
- "line": 67,
+ "line": 81,
"column": 24
},
"end": {
- "line": 67,
+ "line": 81,
"column": 26
}
}
},
"range": [
- 2345,
- 2359
+ 2718,
+ 2732
],
"loc": {
"start": {
- "line": 67,
+ "line": 81,
"column": 12
},
"end": {
- "line": 67,
+ "line": 81,
"column": 26
}
}
@@ -4789,16 +5756,16 @@
],
"kind": "var",
"range": [
- 2341,
- 2360
+ 2714,
+ 2733
],
"loc": {
"start": {
- "line": 67,
+ "line": 81,
"column": 8
},
"end": {
- "line": 67,
+ "line": 81,
"column": 27
}
}
@@ -4812,16 +5779,16 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 2373,
- 2389
+ 2746,
+ 2762
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 12
},
"end": {
- "line": 68,
+ "line": 82,
"column": 28
}
}
@@ -4832,16 +5799,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2392,
- 2396
+ 2765,
+ 2769
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 31
},
"end": {
- "line": 68,
+ "line": 82,
"column": 35
}
}
@@ -4850,46 +5817,46 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 2397,
- 2413
+ 2770,
+ 2786
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 36
},
"end": {
- "line": 68,
+ "line": 82,
"column": 52
}
}
},
"range": [
- 2392,
- 2413
+ 2765,
+ 2786
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 31
},
"end": {
- "line": 68,
+ "line": 82,
"column": 52
}
}
},
"range": [
- 2373,
- 2413
+ 2746,
+ 2786
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 12
},
"end": {
- "line": 68,
+ "line": 82,
"column": 52
}
}
@@ -4897,16 +5864,16 @@
],
"kind": "var",
"range": [
- 2369,
- 2414
+ 2742,
+ 2787
],
"loc": {
"start": {
- "line": 68,
+ "line": 82,
"column": 8
},
"end": {
- "line": 68,
+ "line": 82,
"column": 53
}
}
@@ -4922,16 +5889,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 2431,
- 2432
+ 2804,
+ 2805
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 16
},
"end": {
- "line": 69,
+ "line": 83,
"column": 17
}
}
@@ -4941,31 +5908,31 @@
"value": 0,
"raw": "0",
"range": [
- 2433,
- 2434
+ 2806,
+ 2807
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 18
},
"end": {
- "line": 69,
+ "line": 83,
"column": 19
}
}
},
"range": [
- 2431,
- 2434
+ 2804,
+ 2807
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 16
},
"end": {
- "line": 69,
+ "line": 83,
"column": 19
}
}
@@ -4973,16 +5940,16 @@
],
"kind": "var",
"range": [
- 2427,
- 2434
+ 2800,
+ 2807
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 12
},
"end": {
- "line": 69,
+ "line": 83,
"column": 19
}
}
@@ -4994,16 +5961,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 2436,
- 2437
+ 2809,
+ 2810
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 21
},
"end": {
- "line": 69,
+ "line": 83,
"column": 22
}
}
@@ -5015,16 +5982,16 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 2438,
- 2454
+ 2811,
+ 2827
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 23
},
"end": {
- "line": 69,
+ "line": 83,
"column": 39
}
}
@@ -5033,46 +6000,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 2455,
- 2461
+ 2828,
+ 2834
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 40
},
"end": {
- "line": 69,
+ "line": 83,
"column": 46
}
}
},
"range": [
- 2438,
- 2461
+ 2811,
+ 2834
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 23
},
"end": {
- "line": 69,
+ "line": 83,
"column": 46
}
}
},
"range": [
- 2436,
- 2461
+ 2809,
+ 2834
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 21
},
"end": {
- "line": 69,
+ "line": 83,
"column": 46
}
}
@@ -5084,32 +6051,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 2463,
- 2464
+ 2836,
+ 2837
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 48
},
"end": {
- "line": 69,
+ "line": 83,
"column": 49
}
}
},
"prefix": false,
"range": [
- 2463,
- 2466
+ 2836,
+ 2839
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 48
},
"end": {
- "line": 69,
+ "line": 83,
"column": 51
}
}
@@ -5126,16 +6093,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 2485,
- 2486
+ 2858,
+ 2859
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 16
},
"end": {
- "line": 70,
+ "line": 84,
"column": 17
}
}
@@ -5147,16 +6114,16 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 2489,
- 2505
+ 2862,
+ 2878
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 20
},
"end": {
- "line": 70,
+ "line": 84,
"column": 36
}
}
@@ -5165,46 +6132,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 2506,
- 2507
+ 2879,
+ 2880
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 37
},
"end": {
- "line": 70,
+ "line": 84,
"column": 38
}
}
},
"range": [
- 2489,
- 2508
+ 2862,
+ 2881
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 20
},
"end": {
- "line": 70,
+ "line": 84,
"column": 39
}
}
},
"range": [
- 2485,
- 2508
+ 2858,
+ 2881
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 16
},
"end": {
- "line": 70,
+ "line": 84,
"column": 39
}
}
@@ -5212,16 +6179,16 @@
],
"kind": "var",
"range": [
- 2481,
- 2509
+ 2854,
+ 2882
],
"loc": {
"start": {
- "line": 70,
+ "line": 84,
"column": 12
},
"end": {
- "line": 70,
+ "line": 84,
"column": 40
}
}
@@ -5235,32 +6202,32 @@
"type": "Identifier",
"name": "n",
"range": [
- 2526,
- 2527
+ 2899,
+ 2900
],
"loc": {
"start": {
- "line": 71,
+ "line": 85,
"column": 16
},
"end": {
- "line": 71,
+ "line": 85,
"column": 17
}
}
},
"prefix": true,
"range": [
- 2525,
- 2527
+ 2898,
+ 2900
],
"loc": {
"start": {
- "line": 71,
+ "line": 85,
"column": 15
},
"end": {
- "line": 71,
+ "line": 85,
"column": 17
}
}
@@ -5272,48 +6239,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 2546,
- 2555
+ 2919,
+ 2928
],
"loc": {
"start": {
- "line": 72,
+ "line": 86,
"column": 16
},
"end": {
- "line": 72,
+ "line": 86,
"column": 25
}
}
}
],
"range": [
- 2528,
- 2569
+ 2901,
+ 2942
],
"loc": {
"start": {
- "line": 71,
+ "line": 85,
"column": 18
},
"end": {
- "line": 73,
+ "line": 87,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2522,
- 2569
+ 2895,
+ 2942
],
"loc": {
"start": {
- "line": 71,
+ "line": 85,
"column": 12
},
"end": {
- "line": 73,
+ "line": 87,
"column": 13
}
}
@@ -5327,16 +6294,16 @@
"type": "Identifier",
"name": "tempNodeVal",
"range": [
- 2586,
- 2597
+ 2959,
+ 2970
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 16
},
"end": {
- "line": 74,
+ "line": 88,
"column": 27
}
}
@@ -5350,16 +6317,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 2600,
- 2603
+ 2973,
+ 2976
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 30
},
"end": {
- "line": 74,
+ "line": 88,
"column": 33
}
}
@@ -5368,31 +6335,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 2604,
- 2609
+ 2977,
+ 2982
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 34
},
"end": {
- "line": 74,
+ "line": 88,
"column": 39
}
}
},
"range": [
- 2600,
- 2609
+ 2973,
+ 2982
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 30
},
"end": {
- "line": 74,
+ "line": 88,
"column": 39
}
}
@@ -5405,16 +6372,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 2610,
- 2611
+ 2983,
+ 2984
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 40
},
"end": {
- "line": 74,
+ "line": 88,
"column": 41
}
}
@@ -5423,62 +6390,62 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 2612,
- 2621
+ 2985,
+ 2994
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 42
},
"end": {
- "line": 74,
+ "line": 88,
"column": 51
}
}
},
"range": [
- 2610,
- 2621
+ 2983,
+ 2994
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 40
},
"end": {
- "line": 74,
+ "line": 88,
"column": 51
}
}
}
],
"range": [
- 2600,
- 2622
+ 2973,
+ 2995
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 30
},
"end": {
- "line": 74,
+ "line": 88,
"column": 52
}
}
},
"range": [
- 2586,
- 2622
+ 2959,
+ 2995
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 16
},
"end": {
- "line": 74,
+ "line": 88,
"column": 52
}
}
@@ -5489,16 +6456,16 @@
"type": "Identifier",
"name": "tempWordVal",
"range": [
- 2640,
- 2651
+ 3013,
+ 3024
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 16
},
"end": {
- "line": 75,
+ "line": 89,
"column": 27
}
}
@@ -5512,16 +6479,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 2654,
- 2657
+ 3027,
+ 3030
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 30
},
"end": {
- "line": 75,
+ "line": 89,
"column": 33
}
}
@@ -5530,31 +6497,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 2658,
- 2663
+ 3031,
+ 3036
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 34
},
"end": {
- "line": 75,
+ "line": 89,
"column": 39
}
}
},
"range": [
- 2654,
- 2663
+ 3027,
+ 3036
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 30
},
"end": {
- "line": 75,
+ "line": 89,
"column": 39
}
}
@@ -5564,47 +6531,47 @@
"type": "Identifier",
"name": "word",
"range": [
- 2664,
- 2668
+ 3037,
+ 3041
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 40
},
"end": {
- "line": 75,
+ "line": 89,
"column": 44
}
}
}
],
"range": [
- 2654,
- 2669
+ 3027,
+ 3042
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 30
},
"end": {
- "line": 75,
+ "line": 89,
"column": 45
}
}
},
"range": [
- 2640,
- 2669
+ 3013,
+ 3042
],
"loc": {
"start": {
- "line": 75,
+ "line": 89,
"column": 16
},
"end": {
- "line": 75,
+ "line": 89,
"column": 45
}
}
@@ -5612,16 +6579,16 @@
],
"kind": "var",
"range": [
- 2582,
- 2670
+ 2955,
+ 3043
],
"loc": {
"start": {
- "line": 74,
+ "line": 88,
"column": 12
},
"end": {
- "line": 75,
+ "line": 89,
"column": 46
}
}
@@ -5640,16 +6607,16 @@
"type": "Identifier",
"name": "tempNodeVal",
"range": [
- 2686,
- 2697
+ 3059,
+ 3070
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 15
},
"end": {
- "line": 76,
+ "line": 90,
"column": 26
}
}
@@ -5658,31 +6625,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 2698,
- 2705
+ 3071,
+ 3078
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 27
},
"end": {
- "line": 76,
+ "line": 90,
"column": 34
}
}
},
"range": [
- 2686,
- 2705
+ 3059,
+ 3078
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 15
},
"end": {
- "line": 76,
+ "line": 90,
"column": 34
}
}
@@ -5692,32 +6659,32 @@
"type": "Identifier",
"name": "tempWordVal",
"range": [
- 2706,
- 2717
+ 3079,
+ 3090
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 35
},
"end": {
- "line": 76,
+ "line": 90,
"column": 46
}
}
}
],
"range": [
- 2686,
- 2718
+ 3059,
+ 3091
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 15
},
"end": {
- "line": 76,
+ "line": 90,
"column": 47
}
}
@@ -5730,47 +6697,47 @@
"value": 1,
"raw": "1",
"range": [
- 2724,
- 2725
+ 3097,
+ 3098
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 53
},
"end": {
- "line": 76,
+ "line": 90,
"column": 54
}
}
},
"prefix": true,
"range": [
- 2723,
- 2725
+ 3096,
+ 3098
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 52
},
"end": {
- "line": 76,
+ "line": 90,
"column": 54
}
}
},
"range": [
- 2686,
- 2725
+ 3059,
+ 3098
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 15
},
"end": {
- "line": 76,
+ "line": 90,
"column": 54
}
}
@@ -5787,16 +6754,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2748,
- 2750
+ 3121,
+ 3123
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 20
},
"end": {
- "line": 77,
+ "line": 91,
"column": 22
}
}
@@ -5808,16 +6775,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 2753,
- 2754
+ 3126,
+ 3127
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 25
},
"end": {
- "line": 77,
+ "line": 91,
"column": 26
}
}
@@ -5826,46 +6793,46 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 2755,
- 2765
+ 3128,
+ 3138
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 27
},
"end": {
- "line": 77,
+ "line": 91,
"column": 37
}
}
},
"range": [
- 2753,
- 2765
+ 3126,
+ 3138
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 25
},
"end": {
- "line": 77,
+ "line": 91,
"column": 37
}
}
},
"range": [
- 2748,
- 2765
+ 3121,
+ 3138
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 20
},
"end": {
- "line": 77,
+ "line": 91,
"column": 37
}
}
@@ -5873,16 +6840,16 @@
],
"kind": "var",
"range": [
- 2744,
- 2766
+ 3117,
+ 3139
],
"loc": {
"start": {
- "line": 77,
+ "line": 91,
"column": 16
},
"end": {
- "line": 77,
+ "line": 91,
"column": 38
}
}
@@ -5896,16 +6863,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2786,
- 2788
+ 3159,
+ 3161
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 19
},
"end": {
- "line": 78,
+ "line": 92,
"column": 21
}
}
@@ -5920,16 +6887,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2792,
- 2794
+ 3165,
+ 3167
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 25
},
"end": {
- "line": 78,
+ "line": 92,
"column": 27
}
}
@@ -5938,31 +6905,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 2795,
- 2804
+ 3168,
+ 3177
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 28
},
"end": {
- "line": 78,
+ "line": 92,
"column": 37
}
}
},
"range": [
- 2792,
- 2804
+ 3165,
+ 3177
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 25
},
"end": {
- "line": 78,
+ "line": 92,
"column": 37
}
}
@@ -5971,46 +6938,46 @@
"type": "Identifier",
"name": "cssClass",
"range": [
- 2809,
- 2817
+ 3182,
+ 3190
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 42
},
"end": {
- "line": 78,
+ "line": 92,
"column": 50
}
}
},
"range": [
- 2792,
- 2817
+ 3165,
+ 3190
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 25
},
"end": {
- "line": 78,
+ "line": 92,
"column": 50
}
}
},
"range": [
- 2786,
- 2817
+ 3159,
+ 3190
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 19
},
"end": {
- "line": 78,
+ "line": 92,
"column": 50
}
}
@@ -6027,16 +6994,16 @@
"type": "Identifier",
"name": "prevSib",
"range": [
- 2844,
- 2851
+ 3217,
+ 3224
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 24
},
"end": {
- "line": 79,
+ "line": 93,
"column": 31
}
}
@@ -6048,16 +7015,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2854,
- 2856
+ 3227,
+ 3229
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 34
},
"end": {
- "line": 79,
+ "line": 93,
"column": 36
}
}
@@ -6066,46 +7033,46 @@
"type": "Identifier",
"name": "previousSibling",
"range": [
- 2857,
- 2872
+ 3230,
+ 3245
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 37
},
"end": {
- "line": 79,
+ "line": 93,
"column": 52
}
}
},
"range": [
- 2854,
- 2872
+ 3227,
+ 3245
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 34
},
"end": {
- "line": 79,
+ "line": 93,
"column": 52
}
}
},
"range": [
- 2844,
- 2872
+ 3217,
+ 3245
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 24
},
"end": {
- "line": 79,
+ "line": 93,
"column": 52
}
}
@@ -6116,16 +7083,16 @@
"type": "Identifier",
"name": "nextSib",
"range": [
- 2898,
- 2905
+ 3271,
+ 3278
],
"loc": {
"start": {
- "line": 80,
+ "line": 94,
"column": 24
},
"end": {
- "line": 80,
+ "line": 94,
"column": 31
}
}
@@ -6137,16 +7104,16 @@
"type": "Identifier",
"name": "pn",
"range": [
- 2908,
- 2910
+ 3281,
+ 3283
],
"loc": {
"start": {
- "line": 80,
+ "line": 94,
"column": 34
},
"end": {
- "line": 80,
+ "line": 94,
"column": 36
}
}
@@ -6155,46 +7122,46 @@
"type": "Identifier",
"name": "nextSibling",
"range": [
- 2911,
- 2922
+ 3284,
+ 3295
],
"loc": {
"start": {
- "line": 80,
+ "line": 94,
"column": 37
},
"end": {
- "line": 80,
+ "line": 94,
"column": 48
}
}
},
"range": [
- 2908,
- 2922
+ 3281,
+ 3295
],
"loc": {
"start": {
- "line": 80,
+ "line": 94,
"column": 34
},
"end": {
- "line": 80,
+ "line": 94,
"column": 48
}
}
},
"range": [
- 2898,
- 2922
+ 3271,
+ 3295
],
"loc": {
"start": {
- "line": 80,
+ "line": 94,
"column": 24
},
"end": {
- "line": 80,
+ "line": 94,
"column": 48
}
}
@@ -6202,16 +7169,16 @@
],
"kind": "var",
"range": [
- 2840,
- 2923
+ 3213,
+ 3296
],
"loc": {
"start": {
- "line": 79,
+ "line": 93,
"column": 20
},
"end": {
- "line": 80,
+ "line": 94,
"column": 49
}
}
@@ -6228,32 +7195,32 @@
"type": "Identifier",
"name": "prevSib",
"range": [
- 2948,
- 2955
+ 3321,
+ 3328
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 24
},
"end": {
- "line": 81,
+ "line": 95,
"column": 31
}
}
},
"prefix": true,
"range": [
- 2947,
- 2955
+ 3320,
+ 3328
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 23
},
"end": {
- "line": 81,
+ "line": 95,
"column": 31
}
}
@@ -6265,47 +7232,47 @@
"type": "Identifier",
"name": "nextSib",
"range": [
- 2960,
- 2967
+ 3333,
+ 3340
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 36
},
"end": {
- "line": 81,
+ "line": 95,
"column": 43
}
}
},
"prefix": true,
"range": [
- 2959,
- 2967
+ 3332,
+ 3340
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 35
},
"end": {
- "line": 81,
+ "line": 95,
"column": 43
}
}
},
"range": [
- 2947,
- 2967
+ 3320,
+ 3340
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 23
},
"end": {
- "line": 81,
+ "line": 95,
"column": 43
}
}
@@ -6317,48 +7284,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 2970,
- 2979
+ 3343,
+ 3352
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 46
},
"end": {
- "line": 81,
+ "line": 95,
"column": 55
}
}
}
],
"range": [
- 2968,
- 2981
+ 3341,
+ 3354
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 44
},
"end": {
- "line": 81,
+ "line": 95,
"column": 57
}
}
},
"alternate": null,
"range": [
- 2944,
- 2981
+ 3317,
+ 3354
],
"loc": {
"start": {
- "line": 81,
+ "line": 95,
"column": 20
},
"end": {
- "line": 81,
+ "line": 95,
"column": 57
}
}
@@ -6375,16 +7342,16 @@
"type": "Identifier",
"name": "nextSib",
"range": [
- 3002,
- 3009
+ 3375,
+ 3382
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 20
},
"end": {
- "line": 82,
+ "line": 96,
"column": 27
}
}
@@ -6393,31 +7360,31 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3010,
- 3019
+ 3383,
+ 3392
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 28
},
"end": {
- "line": 82,
+ "line": 96,
"column": 37
}
}
},
"range": [
- 3002,
- 3019
+ 3375,
+ 3392
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 20
},
"end": {
- "line": 82,
+ "line": 96,
"column": 37
}
}
@@ -6435,16 +7402,16 @@
"type": "Identifier",
"name": "prevSib",
"range": [
- 3022,
- 3029
+ 3395,
+ 3402
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 40
},
"end": {
- "line": 82,
+ "line": 96,
"column": 47
}
}
@@ -6453,31 +7420,31 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3030,
- 3039
+ 3403,
+ 3412
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 48
},
"end": {
- "line": 82,
+ "line": 96,
"column": 57
}
}
},
"range": [
- 3022,
- 3039
+ 3395,
+ 3412
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 40
},
"end": {
- "line": 82,
+ "line": 96,
"column": 57
}
}
@@ -6489,16 +7456,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 3042,
- 3043
+ 3415,
+ 3416
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 60
},
"end": {
- "line": 82,
+ "line": 96,
"column": 61
}
}
@@ -6507,46 +7474,46 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3044,
- 3053
+ 3417,
+ 3426
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 62
},
"end": {
- "line": 82,
+ "line": 96,
"column": 71
}
}
},
"range": [
- 3042,
- 3053
+ 3415,
+ 3426
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 60
},
"end": {
- "line": 82,
+ "line": 96,
"column": 71
}
}
},
"range": [
- 3022,
- 3053
+ 3395,
+ 3426
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 40
},
"end": {
- "line": 82,
+ "line": 96,
"column": 71
}
}
@@ -6558,16 +7525,16 @@
"type": "Identifier",
"name": "nextSib",
"range": [
- 3080,
- 3087
+ 3453,
+ 3460
],
"loc": {
"start": {
- "line": 83,
+ "line": 97,
"column": 24
},
"end": {
- "line": 83,
+ "line": 97,
"column": 31
}
}
@@ -6576,76 +7543,76 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3088,
- 3097
+ 3461,
+ 3470
],
"loc": {
"start": {
- "line": 83,
+ "line": 97,
"column": 32
},
"end": {
- "line": 83,
+ "line": 97,
"column": 41
}
}
},
"range": [
- 3080,
- 3097
+ 3453,
+ 3470
],
"loc": {
"start": {
- "line": 83,
+ "line": 97,
"column": 24
},
"end": {
- "line": 83,
+ "line": 97,
"column": 41
}
}
},
"range": [
- 3022,
- 3097
+ 3395,
+ 3470
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 40
},
"end": {
- "line": 83,
+ "line": 97,
"column": 41
}
}
},
"range": [
- 3002,
- 3097
+ 3375,
+ 3470
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 20
},
"end": {
- "line": 83,
+ "line": 97,
"column": 41
}
}
},
"range": [
- 3002,
- 3098
+ 3375,
+ 3471
],
"loc": {
"start": {
- "line": 82,
+ "line": 96,
"column": 20
},
"end": {
- "line": 83,
+ "line": 97,
"column": 42
}
}
@@ -6662,16 +7629,16 @@
"type": "Identifier",
"name": "prevSib",
"range": [
- 3119,
- 3126
+ 3492,
+ 3499
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 20
},
"end": {
- "line": 84,
+ "line": 98,
"column": 27
}
}
@@ -6680,31 +7647,31 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3127,
- 3136
+ 3500,
+ 3509
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 28
},
"end": {
- "line": 84,
+ "line": 98,
"column": 37
}
}
},
"range": [
- 3119,
- 3136
+ 3492,
+ 3509
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 20
},
"end": {
- "line": 84,
+ "line": 98,
"column": 37
}
}
@@ -6714,46 +7681,46 @@
"value": "",
"raw": "''",
"range": [
- 3139,
- 3141
+ 3512,
+ 3514
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 40
},
"end": {
- "line": 84,
+ "line": 98,
"column": 42
}
}
},
"range": [
- 3119,
- 3141
+ 3492,
+ 3514
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 20
},
"end": {
- "line": 84,
+ "line": 98,
"column": 42
}
}
},
"range": [
- 3119,
- 3142
+ 3492,
+ 3515
],
"loc": {
"start": {
- "line": 84,
+ "line": 98,
"column": 20
},
"end": {
- "line": 84,
+ "line": 98,
"column": 43
}
}
@@ -6770,16 +7737,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 3163,
- 3164
+ 3536,
+ 3537
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 20
},
"end": {
- "line": 85,
+ "line": 99,
"column": 21
}
}
@@ -6788,31 +7755,31 @@
"type": "Identifier",
"name": "nodeValue",
"range": [
- 3165,
- 3174
+ 3538,
+ 3547
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 22
},
"end": {
- "line": 85,
+ "line": 99,
"column": 31
}
}
},
"range": [
- 3163,
- 3174
+ 3536,
+ 3547
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 20
},
"end": {
- "line": 85,
+ "line": 99,
"column": 31
}
}
@@ -6822,46 +7789,46 @@
"value": "",
"raw": "''",
"range": [
- 3177,
- 3179
+ 3550,
+ 3552
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 34
},
"end": {
- "line": 85,
+ "line": 99,
"column": 36
}
}
},
"range": [
- 3163,
- 3179
+ 3536,
+ 3552
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 20
},
"end": {
- "line": 85,
+ "line": 99,
"column": 36
}
}
},
"range": [
- 3163,
- 3180
+ 3536,
+ 3553
],
"loc": {
"start": {
- "line": 85,
+ "line": 99,
"column": 20
},
"end": {
- "line": 85,
+ "line": 99,
"column": 37
}
}
@@ -6877,16 +7844,16 @@
"type": "Identifier",
"name": "arrRemove",
"range": [
- 3201,
- 3210
+ 3574,
+ 3583
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 20
},
"end": {
- "line": 86,
+ "line": 100,
"column": 29
}
}
@@ -6895,31 +7862,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 3211,
- 3215
+ 3584,
+ 3588
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 30
},
"end": {
- "line": 86,
+ "line": 100,
"column": 34
}
}
},
"range": [
- 3201,
- 3215
+ 3574,
+ 3588
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 20
},
"end": {
- "line": 86,
+ "line": 100,
"column": 34
}
}
@@ -6929,142 +7896,142 @@
"type": "Identifier",
"name": "i",
"range": [
- 3216,
- 3217
+ 3589,
+ 3590
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 35
},
"end": {
- "line": 86,
+ "line": 100,
"column": 36
}
}
}
],
"range": [
- 3201,
- 3218
+ 3574,
+ 3591
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 20
},
"end": {
- "line": 86,
+ "line": 100,
"column": 37
}
}
},
"range": [
- 3201,
- 3219
+ 3574,
+ 3592
],
"loc": {
"start": {
- "line": 86,
+ "line": 100,
"column": 20
},
"end": {
- "line": 86,
+ "line": 100,
"column": 38
}
}
}
],
"range": [
- 2818,
- 3237
+ 3191,
+ 3610
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 51
},
"end": {
- "line": 87,
+ "line": 101,
"column": 17
}
}
},
"alternate": null,
"range": [
- 2783,
- 3237
+ 3156,
+ 3610
],
"loc": {
"start": {
- "line": 78,
+ "line": 92,
"column": 16
},
"end": {
- "line": 87,
+ "line": 101,
"column": 17
}
}
}
],
"range": [
- 2726,
- 3251
+ 3099,
+ 3624
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 55
},
"end": {
- "line": 88,
+ "line": 102,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2683,
- 3251
+ 3056,
+ 3624
],
"loc": {
"start": {
- "line": 76,
+ "line": 90,
"column": 12
},
"end": {
- "line": 88,
+ "line": 102,
"column": 13
}
}
}
],
"range": [
- 2467,
- 3261
+ 2840,
+ 3634
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 52
},
"end": {
- "line": 89,
+ "line": 103,
"column": 9
}
}
},
"range": [
- 2423,
- 3261
+ 2796,
+ 3634
],
"loc": {
"start": {
- "line": 69,
+ "line": 83,
"column": 8
},
"end": {
- "line": 89,
+ "line": 103,
"column": 9
}
}
@@ -7080,16 +8047,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3278,
- 3279
+ 3651,
+ 3652
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 16
},
"end": {
- "line": 90,
+ "line": 104,
"column": 17
}
}
@@ -7099,31 +8066,31 @@
"value": 0,
"raw": "0",
"range": [
- 3280,
- 3281
+ 3653,
+ 3654
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 18
},
"end": {
- "line": 90,
+ "line": 104,
"column": 19
}
}
},
"range": [
- 3278,
- 3281
+ 3651,
+ 3654
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 16
},
"end": {
- "line": 90,
+ "line": 104,
"column": 19
}
}
@@ -7131,16 +8098,16 @@
],
"kind": "var",
"range": [
- 3274,
- 3281
+ 3647,
+ 3654
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 12
},
"end": {
- "line": 90,
+ "line": 104,
"column": 19
}
}
@@ -7152,16 +8119,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 3283,
- 3284
+ 3656,
+ 3657
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 21
},
"end": {
- "line": 90,
+ "line": 104,
"column": 22
}
}
@@ -7173,16 +8140,16 @@
"type": "Identifier",
"name": "arrRemove",
"range": [
- 3285,
- 3294
+ 3658,
+ 3667
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 23
},
"end": {
- "line": 90,
+ "line": 104,
"column": 32
}
}
@@ -7191,46 +8158,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 3295,
- 3301
+ 3668,
+ 3674
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 33
},
"end": {
- "line": 90,
+ "line": 104,
"column": 39
}
}
},
"range": [
- 3285,
- 3301
+ 3658,
+ 3674
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 23
},
"end": {
- "line": 90,
+ "line": 104,
"column": 39
}
}
},
"range": [
- 3283,
- 3301
+ 3656,
+ 3674
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 21
},
"end": {
- "line": 90,
+ "line": 104,
"column": 39
}
}
@@ -7242,32 +8209,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 3303,
- 3304
+ 3676,
+ 3677
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 41
},
"end": {
- "line": 90,
+ "line": 104,
"column": 42
}
}
},
"prefix": false,
"range": [
- 3303,
- 3306
+ 3676,
+ 3679
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 41
},
"end": {
- "line": 90,
+ "line": 104,
"column": 44
}
}
@@ -7286,16 +8253,16 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 3321,
- 3337
+ 3694,
+ 3710
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 12
},
"end": {
- "line": 91,
+ "line": 105,
"column": 28
}
}
@@ -7304,31 +8271,31 @@
"type": "Identifier",
"name": "splice",
"range": [
- 3338,
- 3344
+ 3711,
+ 3717
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 29
},
"end": {
- "line": 91,
+ "line": 105,
"column": 35
}
}
},
"range": [
- 3321,
- 3344
+ 3694,
+ 3717
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 12
},
"end": {
- "line": 91,
+ "line": 105,
"column": 35
}
}
@@ -7341,16 +8308,16 @@
"type": "Identifier",
"name": "arrRemove",
"range": [
- 3345,
- 3354
+ 3718,
+ 3727
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 36
},
"end": {
- "line": 91,
+ "line": 105,
"column": 45
}
}
@@ -7359,31 +8326,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 3355,
- 3356
+ 3728,
+ 3729
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 46
},
"end": {
- "line": 91,
+ "line": 105,
"column": 47
}
}
},
"range": [
- 3345,
- 3357
+ 3718,
+ 3730
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 36
},
"end": {
- "line": 91,
+ "line": 105,
"column": 48
}
}
@@ -7393,94 +8360,94 @@
"value": 1,
"raw": "1",
"range": [
- 3359,
- 3360
+ 3732,
+ 3733
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 50
},
"end": {
- "line": 91,
+ "line": 105,
"column": 51
}
}
}
],
"range": [
- 3321,
- 3361
+ 3694,
+ 3734
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 12
},
"end": {
- "line": 91,
+ "line": 105,
"column": 52
}
}
},
"range": [
- 3321,
- 3362
+ 3694,
+ 3735
],
"loc": {
"start": {
- "line": 91,
+ "line": 105,
"column": 12
},
"end": {
- "line": 91,
+ "line": 105,
"column": 53
}
}
}
],
"range": [
- 3307,
- 3372
+ 3680,
+ 3745
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 45
},
"end": {
- "line": 92,
+ "line": 106,
"column": 9
}
}
},
"range": [
- 3270,
- 3372
+ 3643,
+ 3745
],
"loc": {
"start": {
- "line": 90,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 106,
"column": 9
}
}
}
],
"range": [
- 2331,
- 3378
+ 2704,
+ 3751
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 31
},
"end": {
- "line": 93,
+ "line": 107,
"column": 5
}
}
@@ -7488,16 +8455,16 @@
"generator": false,
"expression": false,
"range": [
- 2315,
- 3378
+ 2688,
+ 3751
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 15
},
"end": {
- "line": 93,
+ "line": 107,
"column": 5
}
}
@@ -7505,16 +8472,16 @@
"kind": "method",
"computed": false,
"range": [
- 2304,
- 3378
+ 2677,
+ 3751
],
"loc": {
"start": {
- "line": 66,
+ "line": 80,
"column": 4
},
"end": {
- "line": 93,
+ "line": 107,
"column": 5
}
},
@@ -7523,16 +8490,16 @@
"type": "Block",
"value": "*\n * Removes highlight to nodes matching passed string\n * @param {String} word\n * @param {String} cssClass Css class to remove\n ",
"range": [
- 2149,
- 2299
+ 2522,
+ 2672
],
"loc": {
"start": {
- "line": 61,
+ "line": 75,
"column": 4
},
"end": {
- "line": 65,
+ "line": 79,
"column": 7
}
}
@@ -7543,16 +8510,16 @@
"type": "Block",
"value": "*\n * Clear all occurrences of highlighted nodes\n ",
"range": [
- 3384,
- 3445
+ 3757,
+ 3818
],
"loc": {
"start": {
- "line": 95,
+ "line": 109,
"column": 4
},
"end": {
- "line": 97,
+ "line": 111,
"column": 7
}
}
@@ -7566,16 +8533,16 @@
"type": "Identifier",
"name": "unhighlightAll",
"range": [
- 3450,
- 3464
+ 3823,
+ 3837
],
"loc": {
"start": {
- "line": 98,
+ "line": 112,
"column": 4
},
"end": {
- "line": 98,
+ "line": 112,
"column": 18
}
}
@@ -7590,236 +8557,110 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3480,
- 3484
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 12
- },
- "end": {
- "line": 99,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3485,
- 3487
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 17
- },
- "end": {
- "line": 99,
- "column": 19
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 3480,
- 3487
+ 3853,
+ 3857
],
"loc": {
"start": {
- "line": 99,
+ "line": 113,
"column": 12
},
"end": {
- "line": 99,
+ "line": 113,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3858,
+ 3860
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 17
+ },
+ "end": {
+ "line": 113,
"column": 19
}
}
},
- "property": {
- "type": "Identifier",
- "name": "highlightKeywords",
- "range": [
- 3488,
- 3505
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 20
- },
- "end": {
- "line": 99,
- "column": 37
- }
- }
- },
"range": [
- 3480,
- 3505
+ 3853,
+ 3860
],
"loc": {
"start": {
- "line": 99,
+ "line": 113,
"column": 12
},
"end": {
- "line": 99,
+ "line": 113,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightKeywords",
+ "range": [
+ 3861,
+ 3878
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 20
+ },
+ "end": {
+ "line": 113,
"column": 37
}
}
},
- "prefix": true,
"range": [
- 3479,
- 3505
+ 3853,
+ 3878
],
"loc": {
"start": {
- "line": 99,
- "column": 11
+ "line": 113,
+ "column": 12
},
"end": {
- "line": 99,
+ "line": 113,
"column": 37
}
}
},
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3510,
- 3514
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 42
- },
- "end": {
- "line": 99,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3515,
- 3517
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 47
- },
- "end": {
- "line": 99,
- "column": 49
- }
- }
- },
- "range": [
- 3510,
- 3517
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 42
- },
- "end": {
- "line": 99,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "searchArgs",
- "range": [
- 3518,
- 3528
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 50
- },
- "end": {
- "line": 99,
- "column": 60
- }
- }
- },
- "range": [
- 3510,
- 3528
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 42
- },
- "end": {
- "line": 99,
- "column": 60
- }
- }
- },
- "prefix": true,
- "range": [
- 3509,
- 3528
- ],
- "loc": {
- "start": {
- "line": 99,
- "column": 41
- },
- "end": {
- "line": 99,
- "column": 60
- }
- }
- },
+ "prefix": true,
"range": [
- 3479,
- 3528
+ 3852,
+ 3878
],
"loc": {
"start": {
- "line": 99,
+ "line": 113,
"column": 11
},
"end": {
- "line": 99,
- "column": 60
+ "line": 113,
+ "column": 37
}
}
},
@@ -7830,626 +8671,908 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 3543,
- 3550
+ 3893,
+ 3900
],
"loc": {
"start": {
- "line": 100,
+ "line": 114,
"column": 12
},
"end": {
- "line": 100,
+ "line": 114,
"column": 19
}
}
}
],
"range": [
- 3529,
- 3560
+ 3879,
+ 3910
],
"loc": {
"start": {
- "line": 99,
- "column": 61
+ "line": 113,
+ "column": 38
},
"end": {
- "line": 101,
+ "line": 115,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3476,
- 3560
+ 3849,
+ 3910
],
"loc": {
"start": {
- "line": 99,
+ "line": 113,
"column": 8
},
"end": {
- "line": 101,
+ "line": 115,
"column": 9
}
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "y",
- "range": [
- 3577,
- 3578
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 16
- },
- "end": {
- "line": 102,
- "column": 17
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 3579,
- 3580
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 18
- },
- "end": {
- "line": 102,
- "column": 19
- }
- }
- },
- "range": [
- 3577,
- 3580
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 16
- },
- "end": {
- "line": 102,
- "column": 19
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 3573,
- 3580
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 12
- },
- "end": {
- "line": 102,
- "column": 19
- }
- }
},
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "y",
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " iterate filters values to unhighlight all values",
"range": [
- 3582,
- 3583
+ 3919,
+ 3970
],
"loc": {
"start": {
- "line": 102,
- "column": 21
+ "line": 116,
+ "column": 8
},
"end": {
- "line": 102,
- "column": 22
+ "line": 116,
+ "column": 59
}
}
- },
- "right": {
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
- "range": [
- 3584,
- 3588
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 23
- },
- "end": {
- "line": 102,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 3589,
- 3591
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 28
- },
- "end": {
- "line": 102,
- "column": 30
- }
- }
- },
- "range": [
- 3584,
- 3591
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 23
- },
- "end": {
- "line": 102,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "searchArgs",
- "range": [
- 3592,
- 3602
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 31
- },
- "end": {
- "line": 102,
- "column": 41
- }
- }
- },
- "range": [
- 3584,
- 3602
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 23
- },
- "end": {
- "line": 102,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 3603,
- 3609
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 42
- },
- "end": {
- "line": 102,
- "column": 48
- }
- }
- },
- "range": [
- 3584,
- 3609
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 23
- },
- "end": {
- "line": 102,
- "column": 48
- }
- }
- },
- "range": [
- 3582,
- 3609
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 21
- },
- "end": {
- "line": 102,
- "column": 48
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "y",
- "range": [
- 3611,
- 3612
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 50
- },
- "end": {
- "line": 102,
- "column": 51
- }
- }
- },
- "prefix": false,
- "range": [
- 3611,
- 3614
- ],
- "loc": {
- "start": {
- "line": 102,
- "column": 50
- },
- "end": {
- "line": 102,
- "column": 53
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 3629,
- 3633
+ 3979,
+ 3983
],
"loc": {
"start": {
- "line": 103,
- "column": 12
+ "line": 117,
+ "column": 8
},
"end": {
- "line": 103,
- "column": 16
+ "line": 117,
+ "column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "unhighlight",
+ "name": "tf",
"range": [
- 3634,
- 3645
+ 3984,
+ 3986
],
"loc": {
"start": {
- "line": 103,
- "column": 17
+ "line": 117,
+ "column": 13
},
"end": {
- "line": 103,
- "column": 28
+ "line": 117,
+ "column": 15
}
}
},
"range": [
- 3629,
- 3645
+ 3979,
+ 3986
],
"loc": {
"start": {
- "line": 103,
- "column": 12
+ "line": 117,
+ "column": 8
},
"end": {
- "line": 103,
- "column": 28
+ "line": 117,
+ "column": 15
}
}
},
- "arguments": [
+ "property": {
+ "type": "Identifier",
+ "name": "getFiltersValue",
+ "range": [
+ 3987,
+ 4002
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 16
+ },
+ "end": {
+ "line": 117,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 3979,
+ 4002
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3979,
+ 4004
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "forEach",
+ "range": [
+ 4005,
+ 4012
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 34
+ },
+ "end": {
+ "line": 117,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 3979,
+ 4012
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 4014,
+ 4017
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 43
+ },
+ "end": {
+ "line": 117,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
{
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
+ "type": "IfStatement",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "Identifier",
+ "name": "Types",
"range": [
- 3663,
- 3667
+ 4038,
+ 4043
],
"loc": {
"start": {
- "line": 104,
- "column": 16
+ "line": 118,
+ "column": 15
},
"end": {
- "line": 104,
+ "line": 118,
"column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "tf",
+ "name": "isArray",
"range": [
- 3668,
- 3670
+ 4044,
+ 4051
],
"loc": {
"start": {
- "line": 104,
+ "line": 118,
"column": 21
},
"end": {
- "line": 104,
- "column": 23
+ "line": 118,
+ "column": 28
}
}
},
"range": [
- 3663,
- 3670
+ 4038,
+ 4051
],
"loc": {
"start": {
- "line": 104,
- "column": 16
+ "line": 118,
+ "column": 15
},
"end": {
- "line": 104,
- "column": 23
+ "line": 118,
+ "column": 28
}
}
},
- "property": {
- "type": "Identifier",
- "name": "searchArgs",
- "range": [
- 3671,
- 3681
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 24
- },
- "end": {
- "line": 104,
- "column": 34
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 4052,
+ 4055
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 29
+ },
+ "end": {
+ "line": 118,
+ "column": 32
+ }
}
}
- },
+ ],
"range": [
- 3663,
- 3681
+ 4038,
+ 4056
],
"loc": {
"start": {
- "line": 104,
- "column": 16
+ "line": 118,
+ "column": 15
},
"end": {
- "line": 104,
+ "line": 118,
+ "column": 33
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 4075,
+ 4078
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 16
+ },
+ "end": {
+ "line": 119,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "forEach",
+ "range": [
+ 4079,
+ 4086
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 20
+ },
+ "end": {
+ "line": 119,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 4075,
+ 4086
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 16
+ },
+ "end": {
+ "line": 119,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "item",
+ "range": [
+ 4088,
+ 4092
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 29
+ },
+ "end": {
+ "line": 119,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4116,
+ 4120
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 20
+ },
+ "end": {
+ "line": 120,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "unhighlight",
+ "range": [
+ 4121,
+ 4132
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 25
+ },
+ "end": {
+ "line": 120,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 4116,
+ 4132
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 20
+ },
+ "end": {
+ "line": 120,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "item",
+ "range": [
+ 4133,
+ 4137
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 37
+ },
+ "end": {
+ "line": 120,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4139,
+ 4143
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 43
+ },
+ "end": {
+ "line": 120,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightCssClass",
+ "range": [
+ 4144,
+ 4161
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 48
+ },
+ "end": {
+ "line": 120,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 4139,
+ 4161
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 43
+ },
+ "end": {
+ "line": 120,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 4116,
+ 4162
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 20
+ },
+ "end": {
+ "line": 120,
+ "column": 66
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4087,
+ 4162
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 28
+ },
+ "end": {
+ "line": 120,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 4075,
+ 4163
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 16
+ },
+ "end": {
+ "line": 120,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 4075,
+ 4164
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 16
+ },
+ "end": {
+ "line": 120,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "range": [
+ 4057,
+ 4178
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
"column": 34
+ },
+ "end": {
+ "line": 121,
+ "column": 13
}
}
},
- "property": {
- "type": "Identifier",
- "name": "y",
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4202,
+ 4206
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "unhighlight",
+ "range": [
+ 4207,
+ 4218
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 21
+ },
+ "end": {
+ "line": 122,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 4202,
+ 4218
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 4219,
+ 4222
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 33
+ },
+ "end": {
+ "line": 122,
+ "column": 36
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4224,
+ 4228
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 38
+ },
+ "end": {
+ "line": 122,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightCssClass",
+ "range": [
+ 4229,
+ 4246
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 43
+ },
+ "end": {
+ "line": 122,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 4224,
+ 4246
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 38
+ },
+ "end": {
+ "line": 122,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 4202,
+ 4247
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 4202,
+ 4248
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 16
+ },
+ "end": {
+ "line": 122,
+ "column": 62
+ }
+ }
+ }
+ ],
"range": [
- 3682,
- 3683
+ 4184,
+ 4262
],
"loc": {
"start": {
- "line": 104,
- "column": 35
+ "line": 121,
+ "column": 19
},
"end": {
- "line": 104,
- "column": 36
+ "line": 123,
+ "column": 13
}
}
},
"range": [
- 3663,
- 3684
+ 4035,
+ 4262
],
"loc": {
"start": {
- "line": 104,
- "column": 16
+ "line": 118,
+ "column": 12
},
"end": {
- "line": 104,
- "column": 37
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3686,
- 3690
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 39
- },
- "end": {
- "line": 104,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightCssClass",
- "range": [
- 3691,
- 3708
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 44
- },
- "end": {
- "line": 104,
- "column": 61
- }
- }
- },
- "range": [
- 3686,
- 3708
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 39
- },
- "end": {
- "line": 104,
- "column": 61
+ "line": 123,
+ "column": 13
}
}
}
],
"range": [
- 3629,
- 3709
+ 4021,
+ 4272
],
"loc": {
"start": {
- "line": 103,
- "column": 12
+ "line": 117,
+ "column": 50
},
"end": {
- "line": 104,
- "column": 62
+ "line": 124,
+ "column": 9
}
}
},
+ "generator": false,
+ "expression": false,
"range": [
- 3629,
- 3710
+ 4013,
+ 4272
],
"loc": {
"start": {
- "line": 103,
- "column": 12
+ "line": 117,
+ "column": 42
},
"end": {
- "line": 104,
- "column": 63
+ "line": 124,
+ "column": 9
}
}
}
],
"range": [
- 3615,
- 3720
+ 3979,
+ 4273
],
"loc": {
"start": {
- "line": 102,
- "column": 54
+ "line": 117,
+ "column": 8
},
"end": {
- "line": 105,
- "column": 9
+ "line": 124,
+ "column": 10
}
}
},
"range": [
- 3569,
- 3720
+ 3979,
+ 4274
],
"loc": {
"start": {
- "line": 102,
+ "line": 117,
"column": 8
},
"end": {
- "line": 105,
- "column": 9
+ "line": 124,
+ "column": 11
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " iterate filters values to unhighlight all values",
+ "range": [
+ 3919,
+ 3970
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 116,
+ "column": 59
+ }
+ }
+ }
+ ]
},
{
"type": "ExpressionStatement",
@@ -8462,16 +9585,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3729,
- 3733
+ 4283,
+ 4287
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 8
},
"end": {
- "line": 106,
+ "line": 125,
"column": 12
}
}
@@ -8480,31 +9603,31 @@
"type": "Identifier",
"name": "highlightedNodes",
"range": [
- 3734,
- 3750
+ 4288,
+ 4304
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 13
},
"end": {
- "line": 106,
+ "line": 125,
"column": 29
}
}
},
"range": [
- 3729,
- 3750
+ 4283,
+ 4304
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 8
},
"end": {
- "line": 106,
+ "line": 125,
"column": 29
}
}
@@ -8513,62 +9636,62 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 3753,
- 3755
+ 4307,
+ 4309
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 32
},
"end": {
- "line": 106,
+ "line": 125,
"column": 34
}
}
},
"range": [
- 3729,
- 3755
+ 4283,
+ 4309
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 8
},
"end": {
- "line": 106,
+ "line": 125,
"column": 34
}
}
},
"range": [
- 3729,
- 3756
+ 4283,
+ 4310
],
"loc": {
"start": {
- "line": 106,
+ "line": 125,
"column": 8
},
"end": {
- "line": 106,
+ "line": 125,
"column": 35
}
}
}
],
"range": [
- 3466,
- 3762
+ 3839,
+ 4316
],
"loc": {
"start": {
- "line": 98,
+ "line": 112,
"column": 20
},
"end": {
- "line": 107,
+ "line": 126,
"column": 5
}
}
@@ -8576,16 +9699,16 @@
"generator": false,
"expression": false,
"range": [
- 3464,
- 3762
+ 3837,
+ 4316
],
"loc": {
"start": {
- "line": 98,
+ "line": 112,
"column": 18
},
"end": {
- "line": 107,
+ "line": 126,
"column": 5
}
}
@@ -8593,16 +9716,16 @@
"kind": "method",
"computed": false,
"range": [
- 3450,
- 3762
+ 3823,
+ 4316
],
"loc": {
"start": {
- "line": 98,
+ "line": 112,
"column": 4
},
"end": {
- "line": 107,
+ "line": 126,
"column": 5
}
},
@@ -8611,50 +9734,802 @@
"type": "Block",
"value": "*\n * Clear all occurrences of highlighted nodes\n ",
"range": [
- 3384,
- 3445
+ 3757,
+ 3818
],
"loc": {
"start": {
- "line": 95,
+ "line": 109,
"column": 4
},
"end": {
- "line": 97,
+ "line": 111,
"column": 7
}
}
}
],
"static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "destroy",
+ "range": [
+ 4322,
+ 4329
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 4
+ },
+ "end": {
+ "line": 128,
+ "column": 11
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4341,
+ 4345
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4346,
+ 4353
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 13
+ },
+ "end": {
+ "line": 129,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4341,
+ 4353
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 4354,
+ 4357
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 21
+ },
+ "end": {
+ "line": 129,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4341,
+ 4357
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 4372,
+ 4390
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 13
+ },
+ "end": {
+ "line": 130,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "destroy",
+ "raw": "'destroy'",
+ "range": [
+ 4392,
+ 4401
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 33
+ },
+ "end": {
+ "line": 130,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 4371,
+ 4402
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 12
+ },
+ "end": {
+ "line": 130,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4421,
+ 4425
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "unhighlightAll",
+ "range": [
+ 4426,
+ 4440
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 22
+ },
+ "end": {
+ "line": 131,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 4421,
+ 4440
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 4421,
+ 4442
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 38
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4416,
+ 4442
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 12
+ },
+ "end": {
+ "line": 131,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 4341,
+ 4452
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 4341,
+ 4453
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 10
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4462,
+ 4466
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4467,
+ 4474
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 13
+ },
+ "end": {
+ "line": 133,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4462,
+ 4474
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 4475,
+ 4478
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 21
+ },
+ "end": {
+ "line": 133,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4462,
+ 4478
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "highlight-keyword",
+ "raw": "'highlight-keyword'",
+ "range": [
+ 4493,
+ 4512
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 13
+ },
+ "end": {
+ "line": 134,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 4492,
+ 4513
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 12
+ },
+ "end": {
+ "line": 134,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4528,
+ 4530
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 13
+ },
+ "end": {
+ "line": 135,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 4532,
+ 4536
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 17
+ },
+ "end": {
+ "line": 135,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "word",
+ "range": [
+ 4538,
+ 4542
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 23
+ },
+ "end": {
+ "line": 135,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4562,
+ 4566
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 16
+ },
+ "end": {
+ "line": 136,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlight",
+ "range": [
+ 4567,
+ 4576
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 21
+ },
+ "end": {
+ "line": 136,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 4562,
+ 4576
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 16
+ },
+ "end": {
+ "line": 136,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 4577,
+ 4581
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 31
+ },
+ "end": {
+ "line": 136,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "word",
+ "range": [
+ 4583,
+ 4587
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 37
+ },
+ "end": {
+ "line": 136,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4589,
+ 4593
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 43
+ },
+ "end": {
+ "line": 136,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightCssClass",
+ "range": [
+ 4594,
+ 4611
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 48
+ },
+ "end": {
+ "line": 136,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 4589,
+ 4611
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 43
+ },
+ "end": {
+ "line": 136,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 4562,
+ 4612
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 16
+ },
+ "end": {
+ "line": 136,
+ "column": 66
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4527,
+ 4612
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 12
+ },
+ "end": {
+ "line": 136,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 4462,
+ 4622
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 137,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 4462,
+ 4623
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 137,
+ "column": 10
+ }
+ }
+ }
+ ],
+ "range": [
+ 4331,
+ 4629
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 13
+ },
+ "end": {
+ "line": 138,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 4329,
+ 4629
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 11
+ },
+ "end": {
+ "line": 138,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 4322,
+ 4629
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 4
+ },
+ "end": {
+ "line": 138,
+ "column": 5
+ }
+ },
+ "static": false
}
],
"range": [
- 85,
- 3764
+ 115,
+ 4631
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 29
},
"end": {
- "line": 108,
+ "line": 139,
"column": 1
}
}
},
"range": [
- 63,
- 3764
+ 93,
+ 4631
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 7
},
"end": {
- "line": 108,
+ "line": 139,
"column": 1
}
},
@@ -8664,16 +10539,16 @@
"specifiers": [],
"source": null,
"range": [
- 56,
- 3764
+ 86,
+ 4631
],
"loc": {
"start": {
- "line": 4,
+ "line": 5,
"column": 0
},
"end": {
- "line": 108,
+ "line": 139,
"column": 1
}
}
@@ -8682,7 +10557,7 @@
"sourceType": "module",
"range": [
0,
- 3764
+ 4631
],
"loc": {
"start": {
@@ -8690,7 +10565,7 @@
"column": 0
},
"end": {
- "line": 108,
+ "line": 139,
"column": 1
}
},
@@ -8699,16 +10574,16 @@
"type": "Block",
"value": "*\n * HighlightKeyword, highlight matched keyword\n * @param {Object} tf TableFilter instance\n ",
"range": [
- 92,
- 201
+ 122,
+ 231
],
"loc": {
"start": {
- "line": 6,
+ "line": 7,
"column": 4
},
"end": {
- "line": 9,
+ "line": 10,
"column": 7
}
}
@@ -8717,16 +10592,16 @@
"type": "Line",
"value": "defines css class for highlighting",
"range": [
- 261,
- 297
+ 291,
+ 327
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 8
},
"end": {
- "line": 12,
+ "line": 13,
"column": 44
}
}
@@ -8735,16 +10610,16 @@
"type": "Block",
"value": "*\n * highlight occurences of searched term in passed node\n * @param {Node} node\n * @param {String} word Searched term\n * @param {String} cssClass Css class name\n ",
"range": [
- 437,
- 630
+ 810,
+ 1003
],
"loc": {
"start": {
- "line": 19,
+ "line": 33,
"column": 4
},
"end": {
- "line": 24,
+ "line": 38,
"column": 7
}
}
@@ -8753,16 +10628,16 @@
"type": "Line",
"value": " Iterate into this nodes childNodes",
"range": [
- 676,
- 713
+ 1049,
+ 1086
],
"loc": {
"start": {
- "line": 26,
+ "line": 40,
"column": 8
},
"end": {
- "line": 26,
+ "line": 40,
"column": 45
}
}
@@ -8771,16 +10646,16 @@
"type": "Line",
"value": " word not highlighted yet",
"range": [
- 1233,
- 1260
+ 1606,
+ 1633
],
"loc": {
"start": {
- "line": 40,
+ "line": 54,
"column": 20
},
"end": {
- "line": 40,
+ "line": 54,
"column": 47
}
}
@@ -8789,16 +10664,16 @@
"type": "Line",
"value": " Create a load of replacement nodes",
"range": [
- 1393,
- 1430
+ 1766,
+ 1803
],
"loc": {
"start": {
- "line": 43,
+ "line": 57,
"column": 24
},
"end": {
- "line": 43,
+ "line": 57,
"column": 61
}
}
@@ -8807,16 +10682,16 @@
"type": "Block",
"value": "*\n * Removes highlight to nodes matching passed string\n * @param {String} word\n * @param {String} cssClass Css class to remove\n ",
"range": [
- 2149,
- 2299
+ 2522,
+ 2672
],
"loc": {
"start": {
- "line": 61,
+ "line": 75,
"column": 4
},
"end": {
- "line": 65,
+ "line": 79,
"column": 7
}
}
@@ -8825,19 +10700,37 @@
"type": "Block",
"value": "*\n * Clear all occurrences of highlighted nodes\n ",
"range": [
- 3384,
- 3445
+ 3757,
+ 3818
],
"loc": {
"start": {
- "line": 95,
+ "line": 109,
"column": 4
},
"end": {
- "line": 97,
+ "line": 111,
"column": 7
}
}
+ },
+ {
+ "type": "Line",
+ "value": " iterate filters values to unhighlight all values",
+ "range": [
+ 3919,
+ 3970
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 116,
+ "column": 59
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/loader.js.json b/docs/ast/source/src/modules/loader.js.json
index 50d5f3be..e9b26d5f 100644
--- a/docs/ast/source/src/modules/loader.js.json
+++ b/docs/ast/source/src/modules/loader.js.json
@@ -295,7 +295,7 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
92,
112
@@ -407,8 +407,8 @@
"callee": {
"type": "Super",
"range": [
- 275,
- 280
+ 276,
+ 281
],
"loc": {
"start": {
@@ -426,8 +426,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 281,
- 283
+ 282,
+ 284
],
"loc": {
"start": {
@@ -445,8 +445,8 @@
"value": "loader",
"raw": "'loader'",
"range": [
- 285,
- 293
+ 286,
+ 294
],
"loc": {
"start": {
@@ -461,8 +461,8 @@
}
],
"range": [
- 275,
- 294
+ 276,
+ 295
],
"loc": {
"start": {
@@ -476,8 +476,8 @@
}
},
"range": [
- 275,
- 295
+ 276,
+ 296
],
"loc": {
"start": {
@@ -494,8 +494,8 @@
"type": "Line",
"value": " TableFilter configuration",
"range": [
- 305,
- 333
+ 306,
+ 334
],
"loc": {
"start": {
@@ -519,8 +519,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 346,
- 347
+ 347,
+ 348
],
"loc": {
"start": {
@@ -539,8 +539,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 350,
- 354
+ 351,
+ 355
],
"loc": {
"start": {
@@ -557,8 +557,8 @@
"type": "Identifier",
"name": "config",
"range": [
- 355,
- 361
+ 356,
+ 362
],
"loc": {
"start": {
@@ -572,8 +572,8 @@
}
},
"range": [
- 350,
- 361
+ 351,
+ 362
],
"loc": {
"start": {
@@ -587,8 +587,8 @@
}
},
"range": [
- 346,
- 361
+ 347,
+ 362
],
"loc": {
"start": {
@@ -602,10 +602,10 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 342,
- 362
+ 343,
+ 363
],
"loc": {
"start": {
@@ -622,8 +622,8 @@
"type": "Line",
"value": " TableFilter configuration",
"range": [
- 305,
- 333
+ 306,
+ 334
],
"loc": {
"start": {
@@ -642,8 +642,8 @@
"type": "Line",
"value": "id of container element",
"range": [
- 372,
- 397
+ 373,
+ 398
],
"loc": {
"start": {
@@ -669,8 +669,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 406,
- 410
+ 407,
+ 411
],
"loc": {
"start": {
@@ -687,8 +687,8 @@
"type": "Identifier",
"name": "loaderTgtId",
"range": [
- 411,
- 422
+ 412,
+ 423
],
"loc": {
"start": {
@@ -702,8 +702,8 @@
}
},
"range": [
- 406,
- 422
+ 407,
+ 423
],
"loc": {
"start": {
@@ -726,8 +726,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 425,
- 426
+ 426,
+ 427
],
"loc": {
"start": {
@@ -744,8 +744,8 @@
"type": "Identifier",
"name": "loader_target_id",
"range": [
- 427,
- 443
+ 428,
+ 444
],
"loc": {
"start": {
@@ -759,8 +759,8 @@
}
},
"range": [
- 425,
- 443
+ 426,
+ 444
],
"loc": {
"start": {
@@ -778,8 +778,8 @@
"value": null,
"raw": "null",
"range": [
- 447,
- 451
+ 448,
+ 452
],
"loc": {
"start": {
@@ -793,8 +793,8 @@
}
},
"range": [
- 425,
- 451
+ 426,
+ 452
],
"loc": {
"start": {
@@ -808,8 +808,8 @@
}
},
"range": [
- 406,
- 451
+ 407,
+ 452
],
"loc": {
"start": {
@@ -823,8 +823,8 @@
}
},
"range": [
- 406,
- 452
+ 407,
+ 453
],
"loc": {
"start": {
@@ -841,8 +841,8 @@
"type": "Line",
"value": "id of container element",
"range": [
- 372,
- 397
+ 373,
+ 398
],
"loc": {
"start": {
@@ -861,8 +861,8 @@
"type": "Line",
"value": "div containing loader",
"range": [
- 461,
- 484
+ 462,
+ 485
],
"loc": {
"start": {
@@ -888,8 +888,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 493,
- 497
+ 494,
+ 498
],
"loc": {
"start": {
@@ -906,8 +906,8 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 498,
- 507
+ 499,
+ 508
],
"loc": {
"start": {
@@ -921,8 +921,8 @@
}
},
"range": [
- 493,
- 507
+ 494,
+ 508
],
"loc": {
"start": {
@@ -940,8 +940,8 @@
"value": null,
"raw": "null",
"range": [
- 510,
- 514
+ 511,
+ 515
],
"loc": {
"start": {
@@ -955,8 +955,8 @@
}
},
"range": [
- 493,
- 514
+ 494,
+ 515
],
"loc": {
"start": {
@@ -970,8 +970,8 @@
}
},
"range": [
- 493,
- 515
+ 494,
+ 516
],
"loc": {
"start": {
@@ -988,8 +988,8 @@
"type": "Line",
"value": "div containing loader",
"range": [
- 461,
- 484
+ 462,
+ 485
],
"loc": {
"start": {
@@ -1008,8 +1008,8 @@
"type": "Line",
"value": "defines loader text",
"range": [
- 524,
- 545
+ 525,
+ 546
],
"loc": {
"start": {
@@ -1035,8 +1035,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 554,
- 558
+ 555,
+ 559
],
"loc": {
"start": {
@@ -1053,8 +1053,8 @@
"type": "Identifier",
"name": "loaderText",
"range": [
- 559,
- 569
+ 560,
+ 570
],
"loc": {
"start": {
@@ -1068,8 +1068,8 @@
}
},
"range": [
- 554,
- 569
+ 555,
+ 570
],
"loc": {
"start": {
@@ -1092,8 +1092,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 572,
- 573
+ 573,
+ 574
],
"loc": {
"start": {
@@ -1110,8 +1110,8 @@
"type": "Identifier",
"name": "loader_text",
"range": [
- 574,
- 585
+ 575,
+ 586
],
"loc": {
"start": {
@@ -1125,8 +1125,8 @@
}
},
"range": [
- 572,
- 585
+ 573,
+ 586
],
"loc": {
"start": {
@@ -1144,8 +1144,8 @@
"value": "Loading...",
"raw": "'Loading...'",
"range": [
- 589,
- 601
+ 590,
+ 602
],
"loc": {
"start": {
@@ -1159,8 +1159,8 @@
}
},
"range": [
- 572,
- 601
+ 573,
+ 602
],
"loc": {
"start": {
@@ -1174,8 +1174,8 @@
}
},
"range": [
- 554,
- 601
+ 555,
+ 602
],
"loc": {
"start": {
@@ -1189,8 +1189,8 @@
}
},
"range": [
- 554,
- 602
+ 555,
+ 603
],
"loc": {
"start": {
@@ -1207,8 +1207,8 @@
"type": "Line",
"value": "defines loader text",
"range": [
- 524,
- 545
+ 525,
+ 546
],
"loc": {
"start": {
@@ -1227,8 +1227,8 @@
"type": "Line",
"value": "defines loader innerHtml",
"range": [
- 611,
- 637
+ 612,
+ 638
],
"loc": {
"start": {
@@ -1254,8 +1254,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 646,
- 650
+ 647,
+ 651
],
"loc": {
"start": {
@@ -1272,8 +1272,8 @@
"type": "Identifier",
"name": "loaderHtml",
"range": [
- 651,
- 661
+ 652,
+ 662
],
"loc": {
"start": {
@@ -1287,8 +1287,8 @@
}
},
"range": [
- 646,
- 661
+ 647,
+ 662
],
"loc": {
"start": {
@@ -1311,8 +1311,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 664,
- 665
+ 665,
+ 666
],
"loc": {
"start": {
@@ -1329,8 +1329,8 @@
"type": "Identifier",
"name": "loader_html",
"range": [
- 666,
- 677
+ 667,
+ 678
],
"loc": {
"start": {
@@ -1344,8 +1344,8 @@
}
},
"range": [
- 664,
- 677
+ 665,
+ 678
],
"loc": {
"start": {
@@ -1363,8 +1363,8 @@
"value": null,
"raw": "null",
"range": [
- 681,
- 685
+ 682,
+ 686
],
"loc": {
"start": {
@@ -1378,8 +1378,8 @@
}
},
"range": [
- 664,
- 685
+ 665,
+ 686
],
"loc": {
"start": {
@@ -1393,8 +1393,8 @@
}
},
"range": [
- 646,
- 685
+ 647,
+ 686
],
"loc": {
"start": {
@@ -1408,8 +1408,8 @@
}
},
"range": [
- 646,
- 686
+ 647,
+ 687
],
"loc": {
"start": {
@@ -1426,8 +1426,8 @@
"type": "Line",
"value": "defines loader innerHtml",
"range": [
- 611,
- 637
+ 612,
+ 638
],
"loc": {
"start": {
@@ -1446,8 +1446,8 @@
"type": "Line",
"value": "defines css class for loader div",
"range": [
- 695,
- 729
+ 696,
+ 730
],
"loc": {
"start": {
@@ -1473,8 +1473,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 738,
- 742
+ 739,
+ 743
],
"loc": {
"start": {
@@ -1491,8 +1491,8 @@
"type": "Identifier",
"name": "loaderCssClass",
"range": [
- 743,
- 757
+ 744,
+ 758
],
"loc": {
"start": {
@@ -1506,8 +1506,8 @@
}
},
"range": [
- 738,
- 757
+ 739,
+ 758
],
"loc": {
"start": {
@@ -1530,8 +1530,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 760,
- 761
+ 761,
+ 762
],
"loc": {
"start": {
@@ -1548,8 +1548,8 @@
"type": "Identifier",
"name": "loader_css_class",
"range": [
- 762,
- 778
+ 763,
+ 779
],
"loc": {
"start": {
@@ -1563,8 +1563,8 @@
}
},
"range": [
- 760,
- 778
+ 761,
+ 779
],
"loc": {
"start": {
@@ -1582,8 +1582,8 @@
"value": "loader",
"raw": "'loader'",
"range": [
- 782,
- 790
+ 783,
+ 791
],
"loc": {
"start": {
@@ -1597,8 +1597,8 @@
}
},
"range": [
- 760,
- 790
+ 761,
+ 791
],
"loc": {
"start": {
@@ -1612,8 +1612,8 @@
}
},
"range": [
- 738,
- 790
+ 739,
+ 791
],
"loc": {
"start": {
@@ -1627,8 +1627,8 @@
}
},
"range": [
- 738,
- 791
+ 739,
+ 792
],
"loc": {
"start": {
@@ -1645,8 +1645,8 @@
"type": "Line",
"value": "defines css class for loader div",
"range": [
- 695,
- 729
+ 696,
+ 730
],
"loc": {
"start": {
@@ -1665,8 +1665,8 @@
"type": "Line",
"value": "delay for hiding loader",
"range": [
- 800,
- 825
+ 801,
+ 826
],
"loc": {
"start": {
@@ -1692,8 +1692,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 834,
- 838
+ 835,
+ 839
],
"loc": {
"start": {
@@ -1710,8 +1710,8 @@
"type": "Identifier",
"name": "loaderCloseDelay",
"range": [
- 839,
- 855
+ 840,
+ 856
],
"loc": {
"start": {
@@ -1725,8 +1725,8 @@
}
},
"range": [
- 834,
- 855
+ 835,
+ 856
],
"loc": {
"start": {
@@ -1741,11 +1741,11 @@
},
"right": {
"type": "Literal",
- "value": 200,
- "raw": "200",
+ "value": 250,
+ "raw": "250",
"range": [
- 858,
- 861
+ 859,
+ 862
],
"loc": {
"start": {
@@ -1759,8 +1759,8 @@
}
},
"range": [
- 834,
- 861
+ 835,
+ 862
],
"loc": {
"start": {
@@ -1774,8 +1774,8 @@
}
},
"range": [
- 834,
- 862
+ 835,
+ 863
],
"loc": {
"start": {
@@ -1792,8 +1792,8 @@
"type": "Line",
"value": "delay for hiding loader",
"range": [
- 800,
- 825
+ 801,
+ 826
],
"loc": {
"start": {
@@ -1812,8 +1812,8 @@
"type": "Line",
"value": "callback function before loader is displayed",
"range": [
- 871,
- 917
+ 872,
+ 918
],
"loc": {
"start": {
@@ -1839,8 +1839,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 926,
- 930
+ 927,
+ 931
],
"loc": {
"start": {
@@ -1857,8 +1857,8 @@
"type": "Identifier",
"name": "onShowLoader",
"range": [
- 931,
- 943
+ 932,
+ 944
],
"loc": {
"start": {
@@ -1872,8 +1872,8 @@
}
},
"range": [
- 926,
- 943
+ 927,
+ 944
],
"loc": {
"start": {
@@ -1897,8 +1897,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 946,
- 951
+ 947,
+ 952
],
"loc": {
"start": {
@@ -1915,8 +1915,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 952,
- 956
+ 953,
+ 957
],
"loc": {
"start": {
@@ -1930,8 +1930,8 @@
}
},
"range": [
- 946,
- 956
+ 947,
+ 957
],
"loc": {
"start": {
@@ -1952,8 +1952,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 957,
- 958
+ 958,
+ 959
],
"loc": {
"start": {
@@ -1970,8 +1970,8 @@
"type": "Identifier",
"name": "on_show_loader",
"range": [
- 959,
- 973
+ 960,
+ 974
],
"loc": {
"start": {
@@ -1985,8 +1985,8 @@
}
},
"range": [
- 957,
- 973
+ 958,
+ 974
],
"loc": {
"start": {
@@ -2001,8 +2001,8 @@
}
],
"range": [
- 946,
- 974
+ 947,
+ 975
],
"loc": {
"start": {
@@ -2022,8 +2022,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 989,
- 990
+ 990,
+ 991
],
"loc": {
"start": {
@@ -2040,8 +2040,8 @@
"type": "Identifier",
"name": "on_show_loader",
"range": [
- 991,
- 1005
+ 992,
+ 1006
],
"loc": {
"start": {
@@ -2055,8 +2055,8 @@
}
},
"range": [
- 989,
- 1005
+ 990,
+ 1006
],
"loc": {
"start": {
@@ -2074,8 +2074,8 @@
"value": null,
"raw": "null",
"range": [
- 1008,
- 1012
+ 1009,
+ 1013
],
"loc": {
"start": {
@@ -2089,8 +2089,8 @@
}
},
"range": [
- 946,
- 1012
+ 947,
+ 1013
],
"loc": {
"start": {
@@ -2104,8 +2104,8 @@
}
},
"range": [
- 926,
- 1012
+ 927,
+ 1013
],
"loc": {
"start": {
@@ -2119,8 +2119,8 @@
}
},
"range": [
- 926,
- 1013
+ 927,
+ 1014
],
"loc": {
"start": {
@@ -2137,8 +2137,8 @@
"type": "Line",
"value": "callback function before loader is displayed",
"range": [
- 871,
- 917
+ 872,
+ 918
],
"loc": {
"start": {
@@ -2157,8 +2157,8 @@
"type": "Line",
"value": "callback function after loader is closed",
"range": [
- 1022,
- 1064
+ 1023,
+ 1065
],
"loc": {
"start": {
@@ -2184,8 +2184,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1073,
- 1077
+ 1074,
+ 1078
],
"loc": {
"start": {
@@ -2202,8 +2202,8 @@
"type": "Identifier",
"name": "onHideLoader",
"range": [
- 1078,
- 1090
+ 1079,
+ 1091
],
"loc": {
"start": {
@@ -2217,8 +2217,8 @@
}
},
"range": [
- 1073,
- 1090
+ 1074,
+ 1091
],
"loc": {
"start": {
@@ -2242,8 +2242,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1093,
- 1098
+ 1094,
+ 1099
],
"loc": {
"start": {
@@ -2260,8 +2260,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 1099,
- 1103
+ 1100,
+ 1104
],
"loc": {
"start": {
@@ -2275,8 +2275,8 @@
}
},
"range": [
- 1093,
- 1103
+ 1094,
+ 1104
],
"loc": {
"start": {
@@ -2297,8 +2297,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1104,
- 1105
+ 1105,
+ 1106
],
"loc": {
"start": {
@@ -2315,8 +2315,8 @@
"type": "Identifier",
"name": "on_hide_loader",
"range": [
- 1106,
- 1120
+ 1107,
+ 1121
],
"loc": {
"start": {
@@ -2330,8 +2330,8 @@
}
},
"range": [
- 1104,
- 1120
+ 1105,
+ 1121
],
"loc": {
"start": {
@@ -2346,8 +2346,8 @@
}
],
"range": [
- 1093,
- 1121
+ 1094,
+ 1122
],
"loc": {
"start": {
@@ -2367,8 +2367,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1136,
- 1137
+ 1137,
+ 1138
],
"loc": {
"start": {
@@ -2385,8 +2385,8 @@
"type": "Identifier",
"name": "on_hide_loader",
"range": [
- 1138,
- 1152
+ 1139,
+ 1153
],
"loc": {
"start": {
@@ -2400,8 +2400,8 @@
}
},
"range": [
- 1136,
- 1152
+ 1137,
+ 1153
],
"loc": {
"start": {
@@ -2419,8 +2419,8 @@
"value": null,
"raw": "null",
"range": [
- 1155,
- 1159
+ 1156,
+ 1160
],
"loc": {
"start": {
@@ -2434,8 +2434,8 @@
}
},
"range": [
- 1093,
- 1159
+ 1094,
+ 1160
],
"loc": {
"start": {
@@ -2449,8 +2449,8 @@
}
},
"range": [
- 1073,
- 1159
+ 1074,
+ 1160
],
"loc": {
"start": {
@@ -2464,8 +2464,8 @@
}
},
"range": [
- 1073,
- 1160
+ 1074,
+ 1161
],
"loc": {
"start": {
@@ -2482,8 +2482,8 @@
"type": "Line",
"value": "callback function after loader is closed",
"range": [
- 1022,
- 1064
+ 1023,
+ 1065
],
"loc": {
"start": {
@@ -2502,8 +2502,8 @@
"type": "Line",
"value": "loader div",
"range": [
- 1169,
- 1181
+ 1170,
+ 1182
],
"loc": {
"start": {
@@ -2529,8 +2529,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1190,
- 1194
+ 1191,
+ 1195
],
"loc": {
"start": {
@@ -2547,8 +2547,8 @@
"type": "Identifier",
"name": "prfxLoader",
"range": [
- 1195,
- 1205
+ 1196,
+ 1206
],
"loc": {
"start": {
@@ -2562,8 +2562,8 @@
}
},
"range": [
- 1190,
- 1205
+ 1191,
+ 1206
],
"loc": {
"start": {
@@ -2581,8 +2581,8 @@
"value": "load_",
"raw": "'load_'",
"range": [
- 1208,
- 1215
+ 1209,
+ 1216
],
"loc": {
"start": {
@@ -2596,8 +2596,8 @@
}
},
"range": [
- 1190,
- 1215
+ 1191,
+ 1216
],
"loc": {
"start": {
@@ -2611,8 +2611,8 @@
}
},
"range": [
- 1190,
- 1216
+ 1191,
+ 1217
],
"loc": {
"start": {
@@ -2629,8 +2629,8 @@
"type": "Line",
"value": "loader div",
"range": [
- 1169,
- 1181
+ 1170,
+ 1182
],
"loc": {
"start": {
@@ -2647,13 +2647,13 @@
}
],
"range": [
- 265,
- 1222
+ 266,
+ 1223
],
"loc": {
"start": {
"line": 13,
- "column": 19
+ "column": 20
},
"end": {
"line": 39,
@@ -2665,7 +2665,7 @@
"expression": false,
"range": [
261,
- 1222
+ 1223
],
"loc": {
"start": {
@@ -2682,7 +2682,7 @@
"computed": false,
"range": [
250,
- 1222
+ 1223
],
"loc": {
"start": {
@@ -2722,8 +2722,8 @@
"type": "Identifier",
"name": "init",
"range": [
- 1228,
- 1232
+ 1229,
+ 1233
],
"loc": {
"start": {
@@ -2751,8 +2751,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1248,
- 1252
+ 1249,
+ 1253
],
"loc": {
"start": {
@@ -2769,8 +2769,8 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 1253,
- 1264
+ 1254,
+ 1265
],
"loc": {
"start": {
@@ -2784,8 +2784,8 @@
}
},
"range": [
- 1248,
- 1264
+ 1249,
+ 1265
],
"loc": {
"start": {
@@ -2805,8 +2805,8 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1279,
- 1286
+ 1280,
+ 1287
],
"loc": {
"start": {
@@ -2821,8 +2821,8 @@
}
],
"range": [
- 1265,
- 1296
+ 1266,
+ 1297
],
"loc": {
"start": {
@@ -2837,8 +2837,8 @@
},
"alternate": null,
"range": [
- 1245,
- 1296
+ 1246,
+ 1297
],
"loc": {
"start": {
@@ -2860,8 +2860,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1310,
- 1312
+ 1311,
+ 1313
],
"loc": {
"start": {
@@ -2880,8 +2880,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1315,
- 1319
+ 1316,
+ 1320
],
"loc": {
"start": {
@@ -2898,8 +2898,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1320,
- 1322
+ 1321,
+ 1323
],
"loc": {
"start": {
@@ -2913,8 +2913,8 @@
}
},
"range": [
- 1315,
- 1322
+ 1316,
+ 1323
],
"loc": {
"start": {
@@ -2928,8 +2928,8 @@
}
},
"range": [
- 1310,
- 1322
+ 1311,
+ 1323
],
"loc": {
"start": {
@@ -2943,10 +2943,10 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1306,
- 1323
+ 1307,
+ 1324
],
"loc": {
"start": {
@@ -2966,18 +2966,126 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "containerDiv",
+ "name": "emitter",
"range": [
1337,
- 1349
+ 1344
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 12
},
"end": {
- "line": 48,
+ "line": 47,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1347,
+ 1351
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 22
+ },
+ "end": {
+ "line": 47,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 1352,
+ 1359
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 27
+ },
+ "end": {
+ "line": 47,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 1347,
+ 1359
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 22
+ },
+ "end": {
+ "line": 47,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 1337,
+ 1359
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1333,
+ 1360
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 8
+ },
+ "end": {
+ "line": 47,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "containerDiv",
+ "range": [
+ 1374,
+ 1386
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 12
+ },
+ "end": {
+ "line": 49,
"column": 24
}
}
@@ -2991,16 +3099,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1352,
- 1355
+ 1389,
+ 1392
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 27
},
"end": {
- "line": 48,
+ "line": 49,
"column": 30
}
}
@@ -3009,31 +3117,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 1356,
- 1362
+ 1393,
+ 1399
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 31
},
"end": {
- "line": 48,
+ "line": 49,
"column": 37
}
}
},
"range": [
- 1352,
- 1362
+ 1389,
+ 1399
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 27
},
"end": {
- "line": 48,
+ "line": 49,
"column": 37
}
}
@@ -3044,16 +3152,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 1363,
- 1368
+ 1400,
+ 1405
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 38
},
"end": {
- "line": 48,
+ "line": 49,
"column": 43
}
}
@@ -3066,16 +3174,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 1371,
- 1375
+ 1408,
+ 1412
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 46
},
"end": {
- "line": 48,
+ "line": 49,
"column": 50
}
}
@@ -3089,16 +3197,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1377,
- 1381
+ 1414,
+ 1418
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 52
},
"end": {
- "line": 48,
+ "line": 49,
"column": 56
}
}
@@ -3107,31 +3215,31 @@
"type": "Identifier",
"name": "prfxLoader",
"range": [
- 1382,
- 1392
+ 1419,
+ 1429
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 57
},
"end": {
- "line": 48,
+ "line": 49,
"column": 67
}
}
},
"range": [
- 1377,
- 1392
+ 1414,
+ 1429
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 52
},
"end": {
- "line": 48,
+ "line": 49,
"column": 67
}
}
@@ -3143,16 +3251,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1393,
- 1395
+ 1430,
+ 1432
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 68
},
"end": {
- "line": 48,
+ "line": 49,
"column": 70
}
}
@@ -3161,110 +3269,110 @@
"type": "Identifier",
"name": "id",
"range": [
- 1396,
- 1398
+ 1433,
+ 1435
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 71
},
"end": {
- "line": 48,
+ "line": 49,
"column": 73
}
}
},
"range": [
- 1393,
- 1398
+ 1430,
+ 1435
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 68
},
"end": {
- "line": 48,
+ "line": 49,
"column": 73
}
}
},
"range": [
- 1377,
- 1398
+ 1414,
+ 1435
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 52
},
"end": {
- "line": 48,
+ "line": 49,
"column": 73
}
}
}
],
"range": [
- 1370,
- 1399
+ 1407,
+ 1436
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 45
},
"end": {
- "line": 48,
+ "line": 49,
"column": 74
}
}
}
],
"range": [
- 1352,
- 1400
+ 1389,
+ 1437
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 27
},
"end": {
- "line": 48,
+ "line": 49,
"column": 75
}
}
},
"range": [
- 1337,
- 1400
+ 1374,
+ 1437
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 12
},
"end": {
- "line": 48,
+ "line": 49,
"column": 75
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1333,
- 1401
+ 1370,
+ 1438
],
"loc": {
"start": {
- "line": 48,
+ "line": 49,
"column": 8
},
"end": {
- "line": 48,
+ "line": 49,
"column": 76
}
}
@@ -3281,16 +3389,16 @@
"type": "Identifier",
"name": "containerDiv",
"range": [
- 1410,
- 1422
+ 1447,
+ 1459
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 8
},
"end": {
- "line": 49,
+ "line": 50,
"column": 20
}
}
@@ -3299,31 +3407,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 1423,
- 1432
+ 1460,
+ 1469
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 21
},
"end": {
- "line": 49,
+ "line": 50,
"column": 30
}
}
},
"range": [
- 1410,
- 1432
+ 1447,
+ 1469
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 8
},
"end": {
- "line": 49,
+ "line": 50,
"column": 30
}
}
@@ -3334,16 +3442,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1435,
- 1439
+ 1472,
+ 1476
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 33
},
"end": {
- "line": 49,
+ "line": 50,
"column": 37
}
}
@@ -3352,61 +3460,61 @@
"type": "Identifier",
"name": "loaderCssClass",
"range": [
- 1440,
- 1454
+ 1477,
+ 1491
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 38
},
"end": {
- "line": 49,
+ "line": 50,
"column": 52
}
}
},
"range": [
- 1435,
- 1454
+ 1472,
+ 1491
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 33
},
"end": {
- "line": 49,
+ "line": 50,
"column": 52
}
}
},
"range": [
- 1410,
- 1454
+ 1447,
+ 1491
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 8
},
"end": {
- "line": 49,
+ "line": 50,
"column": 52
}
}
},
"range": [
- 1410,
- 1455
+ 1447,
+ 1492
],
"loc": {
"start": {
- "line": 49,
+ "line": 50,
"column": 8
},
"end": {
- "line": 49,
+ "line": 50,
"column": 53
}
}
@@ -3420,16 +3528,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 1469,
- 1477
+ 1506,
+ 1514
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 12
},
"end": {
- "line": 51,
+ "line": 52,
"column": 20
}
}
@@ -3445,16 +3553,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1481,
- 1485
+ 1518,
+ 1522
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 24
},
"end": {
- "line": 51,
+ "line": 52,
"column": 28
}
}
@@ -3463,47 +3571,47 @@
"type": "Identifier",
"name": "loaderTgtId",
"range": [
- 1486,
- 1497
+ 1523,
+ 1534
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 29
},
"end": {
- "line": 51,
+ "line": 52,
"column": 40
}
}
},
"range": [
- 1481,
- 1497
+ 1518,
+ 1534
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 24
},
"end": {
- "line": 51,
+ "line": 52,
"column": 40
}
}
},
"prefix": true,
"range": [
- 1480,
- 1497
+ 1517,
+ 1534
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 23
},
"end": {
- "line": 51,
+ "line": 52,
"column": 40
}
}
@@ -3518,16 +3626,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1512,
- 1514
+ 1549,
+ 1551
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 14
}
}
@@ -3536,31 +3644,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1515,
- 1518
+ 1552,
+ 1555
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 15
},
"end": {
- "line": 52,
+ "line": 53,
"column": 18
}
}
},
"range": [
- 1512,
- 1518
+ 1549,
+ 1555
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 18
}
}
@@ -3569,31 +3677,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 1519,
- 1529
+ 1556,
+ 1566
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 19
},
"end": {
- "line": 52,
+ "line": 53,
"column": 29
}
}
},
"range": [
- 1512,
- 1529
+ 1549,
+ 1566
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 29
}
}
@@ -3607,16 +3715,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1532,
- 1535
+ 1569,
+ 1572
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 32
},
"end": {
- "line": 52,
+ "line": 53,
"column": 35
}
}
@@ -3625,31 +3733,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 1536,
- 1538
+ 1573,
+ 1575
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 36
},
"end": {
- "line": 52,
+ "line": 53,
"column": 38
}
}
},
"range": [
- 1532,
- 1538
+ 1569,
+ 1575
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 32
},
"end": {
- "line": 52,
+ "line": 53,
"column": 38
}
}
@@ -3661,16 +3769,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1539,
- 1543
+ 1576,
+ 1580
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 39
},
"end": {
- "line": 52,
+ "line": 53,
"column": 43
}
}
@@ -3679,94 +3787,94 @@
"type": "Identifier",
"name": "loaderTgtId",
"range": [
- 1544,
- 1555
+ 1581,
+ 1592
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 44
},
"end": {
- "line": 52,
+ "line": 53,
"column": 55
}
}
},
"range": [
- 1539,
- 1555
+ 1576,
+ 1592
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 39
},
"end": {
- "line": 52,
+ "line": 53,
"column": 55
}
}
}
],
"range": [
- 1532,
- 1556
+ 1569,
+ 1593
],
"loc": {
"start": {
- "line": 52,
+ "line": 53,
"column": 32
},
"end": {
- "line": 52,
+ "line": 53,
"column": 56
}
}
},
"range": [
- 1480,
- 1556
+ 1517,
+ 1593
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 23
},
"end": {
- "line": 52,
+ "line": 53,
"column": 56
}
}
},
"range": [
- 1469,
- 1556
+ 1506,
+ 1593
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 12
},
"end": {
- "line": 52,
+ "line": 53,
"column": 56
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1465,
- 1557
+ 1502,
+ 1594
],
"loc": {
"start": {
- "line": 51,
+ "line": 52,
"column": 8
},
"end": {
- "line": 52,
+ "line": 53,
"column": 57
}
}
@@ -3782,16 +3890,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1570,
- 1574
+ 1607,
+ 1611
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 12
},
"end": {
- "line": 53,
+ "line": 54,
"column": 16
}
}
@@ -3800,47 +3908,47 @@
"type": "Identifier",
"name": "loaderTgtId",
"range": [
- 1575,
- 1586
+ 1612,
+ 1623
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 17
},
"end": {
- "line": 53,
+ "line": 54,
"column": 28
}
}
},
"range": [
- 1570,
- 1586
+ 1607,
+ 1623
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 12
},
"end": {
- "line": 53,
+ "line": 54,
"column": 28
}
}
},
"prefix": true,
"range": [
- 1569,
- 1586
+ 1606,
+ 1623
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 11
},
"end": {
- "line": 53,
+ "line": 54,
"column": 28
}
}
@@ -3859,16 +3967,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 1601,
- 1609
+ 1638,
+ 1646
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 12
},
"end": {
- "line": 54,
+ "line": 55,
"column": 20
}
}
@@ -3877,31 +3985,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 1610,
- 1622
+ 1647,
+ 1659
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 21
},
"end": {
- "line": 54,
+ "line": 55,
"column": 33
}
}
},
"range": [
- 1601,
- 1622
+ 1638,
+ 1659
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 12
},
"end": {
- "line": 54,
+ "line": 55,
"column": 33
}
}
@@ -3911,16 +4019,16 @@
"type": "Identifier",
"name": "containerDiv",
"range": [
- 1623,
- 1635
+ 1660,
+ 1672
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 34
},
"end": {
- "line": 54,
+ "line": 55,
"column": 46
}
}
@@ -3932,16 +4040,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1637,
- 1639
+ 1674,
+ 1676
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 48
},
"end": {
- "line": 54,
+ "line": 55,
"column": 50
}
}
@@ -3950,78 +4058,78 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1640,
- 1643
+ 1677,
+ 1680
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 51
},
"end": {
- "line": 54,
+ "line": 55,
"column": 54
}
}
},
"range": [
- 1637,
- 1643
+ 1674,
+ 1680
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 48
},
"end": {
- "line": 54,
+ "line": 55,
"column": 54
}
}
}
],
"range": [
- 1601,
- 1644
+ 1638,
+ 1681
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 12
},
"end": {
- "line": 54,
+ "line": 55,
"column": 55
}
}
},
"range": [
- 1601,
- 1645
+ 1638,
+ 1682
],
"loc": {
"start": {
- "line": 54,
+ "line": 55,
"column": 12
},
"end": {
- "line": 54,
+ "line": 55,
"column": 56
}
}
}
],
"range": [
- 1587,
- 1655
+ 1624,
+ 1692
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 29
},
"end": {
- "line": 55,
+ "line": 56,
"column": 9
}
}
@@ -4040,16 +4148,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 1675,
- 1683
+ 1712,
+ 1720
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 12
},
"end": {
- "line": 56,
+ "line": 57,
"column": 20
}
}
@@ -4058,31 +4166,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 1684,
- 1695
+ 1721,
+ 1732
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 21
},
"end": {
- "line": 56,
+ "line": 57,
"column": 32
}
}
},
"range": [
- 1675,
- 1695
+ 1712,
+ 1732
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 12
},
"end": {
- "line": 56,
+ "line": 57,
"column": 32
}
}
@@ -4092,78 +4200,78 @@
"type": "Identifier",
"name": "containerDiv",
"range": [
- 1696,
- 1708
+ 1733,
+ 1745
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 33
},
"end": {
- "line": 56,
+ "line": 57,
"column": 45
}
}
}
],
"range": [
- 1675,
- 1709
+ 1712,
+ 1746
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 12
},
"end": {
- "line": 56,
+ "line": 57,
"column": 46
}
}
},
"range": [
- 1675,
- 1710
+ 1712,
+ 1747
],
"loc": {
"start": {
- "line": 56,
+ "line": 57,
"column": 12
},
"end": {
- "line": 56,
+ "line": 57,
"column": 47
}
}
}
],
"range": [
- 1661,
- 1720
+ 1698,
+ 1757
],
"loc": {
"start": {
- "line": 55,
+ "line": 56,
"column": 15
},
"end": {
- "line": 57,
+ "line": 58,
"column": 9
}
}
},
"range": [
- 1566,
- 1720
+ 1603,
+ 1757
],
"loc": {
"start": {
- "line": 53,
+ "line": 54,
"column": 8
},
"end": {
- "line": 57,
+ "line": 58,
"column": 9
}
}
@@ -4179,16 +4287,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1729,
- 1733
+ 1766,
+ 1770
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 12
}
}
@@ -4197,31 +4305,31 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 1734,
- 1743
+ 1771,
+ 1780
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 13
},
"end": {
- "line": 58,
+ "line": 59,
"column": 22
}
}
},
"range": [
- 1729,
- 1743
+ 1766,
+ 1780
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 22
}
}
@@ -4230,46 +4338,46 @@
"type": "Identifier",
"name": "containerDiv",
"range": [
- 1746,
- 1758
+ 1783,
+ 1795
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 25
},
"end": {
- "line": 58,
+ "line": 59,
"column": 37
}
}
},
"range": [
- 1729,
- 1758
+ 1766,
+ 1795
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 37
}
}
},
"range": [
- 1729,
- 1759
+ 1766,
+ 1796
],
"loc": {
"start": {
- "line": 58,
+ "line": 59,
"column": 8
},
"end": {
- "line": 58,
+ "line": 59,
"column": 38
}
}
@@ -4285,16 +4393,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1772,
- 1776
+ 1809,
+ 1813
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 12
},
"end": {
- "line": 59,
+ "line": 60,
"column": 16
}
}
@@ -4303,47 +4411,47 @@
"type": "Identifier",
"name": "loaderHtml",
"range": [
- 1777,
- 1787
+ 1814,
+ 1824
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 17
},
"end": {
- "line": 59,
+ "line": 60,
"column": 27
}
}
},
"range": [
- 1772,
- 1787
+ 1809,
+ 1824
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 12
},
"end": {
- "line": 59,
+ "line": 60,
"column": 27
}
}
},
"prefix": true,
"range": [
- 1771,
- 1787
+ 1808,
+ 1824
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 11
},
"end": {
- "line": 59,
+ "line": 60,
"column": 27
}
}
@@ -4364,16 +4472,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1802,
- 1806
+ 1839,
+ 1843
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 12
},
"end": {
- "line": 60,
+ "line": 61,
"column": 16
}
}
@@ -4382,31 +4490,31 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 1807,
- 1816
+ 1844,
+ 1853
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 17
},
"end": {
- "line": 60,
+ "line": 61,
"column": 26
}
}
},
"range": [
- 1802,
- 1816
+ 1839,
+ 1853
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 12
},
"end": {
- "line": 60,
+ "line": 61,
"column": 26
}
}
@@ -4415,31 +4523,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 1817,
- 1828
+ 1854,
+ 1865
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 27
},
"end": {
- "line": 60,
+ "line": 61,
"column": 38
}
}
},
"range": [
- 1802,
- 1828
+ 1839,
+ 1865
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 12
},
"end": {
- "line": 60,
+ "line": 61,
"column": 38
}
}
@@ -4454,16 +4562,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1829,
- 1832
+ 1866,
+ 1869
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 39
},
"end": {
- "line": 60,
+ "line": 61,
"column": 42
}
}
@@ -4472,31 +4580,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 1833,
- 1837
+ 1870,
+ 1874
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 43
},
"end": {
- "line": 60,
+ "line": 61,
"column": 47
}
}
},
"range": [
- 1829,
- 1837
+ 1866,
+ 1874
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 39
},
"end": {
- "line": 60,
+ "line": 61,
"column": 47
}
}
@@ -4508,16 +4616,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1838,
- 1842
+ 1875,
+ 1879
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 48
},
"end": {
- "line": 60,
+ "line": 61,
"column": 52
}
}
@@ -4526,94 +4634,94 @@
"type": "Identifier",
"name": "loaderText",
"range": [
- 1843,
- 1853
+ 1880,
+ 1890
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 53
},
"end": {
- "line": 60,
+ "line": 61,
"column": 63
}
}
},
"range": [
- 1838,
- 1853
+ 1875,
+ 1890
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 48
},
"end": {
- "line": 60,
+ "line": 61,
"column": 63
}
}
}
],
"range": [
- 1829,
- 1854
+ 1866,
+ 1891
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 39
},
"end": {
- "line": 60,
+ "line": 61,
"column": 64
}
}
}
],
"range": [
- 1802,
- 1855
+ 1839,
+ 1892
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 12
},
"end": {
- "line": 60,
+ "line": 61,
"column": 65
}
}
},
"range": [
- 1802,
- 1856
+ 1839,
+ 1893
],
"loc": {
"start": {
- "line": 60,
+ "line": 61,
"column": 12
},
"end": {
- "line": 60,
+ "line": 61,
"column": 66
}
}
}
],
"range": [
- 1788,
- 1866
+ 1825,
+ 1903
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 28
},
"end": {
- "line": 61,
+ "line": 62,
"column": 9
}
}
@@ -4635,16 +4743,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1886,
- 1890
+ 1923,
+ 1927
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 12
},
"end": {
- "line": 62,
+ "line": 63,
"column": 16
}
}
@@ -4653,31 +4761,31 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 1891,
- 1900
+ 1928,
+ 1937
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 17
},
"end": {
- "line": 62,
+ "line": 63,
"column": 26
}
}
},
"range": [
- 1886,
- 1900
+ 1923,
+ 1937
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 12
},
"end": {
- "line": 62,
+ "line": 63,
"column": 26
}
}
@@ -4686,31 +4794,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 1901,
- 1910
+ 1938,
+ 1947
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 27
},
"end": {
- "line": 62,
+ "line": 63,
"column": 36
}
}
},
"range": [
- 1886,
- 1910
+ 1923,
+ 1947
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 12
},
"end": {
- "line": 62,
+ "line": 63,
"column": 36
}
}
@@ -4721,16 +4829,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1913,
- 1917
+ 1950,
+ 1954
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 39
},
"end": {
- "line": 62,
+ "line": 63,
"column": 43
}
}
@@ -4739,92 +4847,92 @@
"type": "Identifier",
"name": "loaderHtml",
"range": [
- 1918,
- 1928
+ 1955,
+ 1965
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 44
},
"end": {
- "line": 62,
+ "line": 63,
"column": 54
}
}
},
"range": [
- 1913,
- 1928
+ 1950,
+ 1965
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 39
},
"end": {
- "line": 62,
+ "line": 63,
"column": 54
}
}
},
"range": [
- 1886,
- 1928
+ 1923,
+ 1965
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 12
},
"end": {
- "line": 62,
+ "line": 63,
"column": 54
}
}
},
"range": [
- 1886,
- 1929
+ 1923,
+ 1966
],
"loc": {
"start": {
- "line": 62,
+ "line": 63,
"column": 12
},
"end": {
- "line": 62,
+ "line": 63,
"column": 55
}
}
}
],
"range": [
- 1872,
- 1939
+ 1909,
+ 1976
],
"loc": {
"start": {
- "line": 61,
+ "line": 62,
"column": 15
},
"end": {
- "line": 63,
+ "line": 64,
"column": 9
}
}
},
"range": [
- 1768,
- 1939
+ 1805,
+ 1976
],
"loc": {
"start": {
- "line": 59,
+ "line": 60,
"column": 8
},
"end": {
- "line": 63,
+ "line": 64,
"column": 9
}
}
@@ -4839,16 +4947,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1949,
- 1953
+ 1986,
+ 1990
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 8
},
"end": {
- "line": 65,
+ "line": 66,
"column": 12
}
}
@@ -4857,31 +4965,31 @@
"type": "Identifier",
"name": "show",
"range": [
- 1954,
- 1958
+ 1991,
+ 1995
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 13
},
"end": {
- "line": 65,
+ "line": 66,
"column": 17
}
}
},
"range": [
- 1949,
- 1958
+ 1986,
+ 1995
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 8
},
"end": {
- "line": 65,
+ "line": 66,
"column": 17
}
}
@@ -4892,49 +5000,873 @@
"value": "none",
"raw": "'none'",
"range": [
- 1959,
- 1965
+ 1996,
+ 2002
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 18
},
"end": {
- "line": 65,
+ "line": 66,
"column": 24
}
}
}
],
"range": [
- 1949,
- 1966
+ 1986,
+ 2003
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 8
},
"end": {
- "line": 65,
+ "line": 66,
"column": 25
}
}
},
"range": [
- 1949,
- 1967
+ 1986,
+ 2004
],
"loc": {
"start": {
- "line": 65,
+ "line": 66,
"column": 8
},
"end": {
- "line": 65,
+ "line": 66,
"column": 26
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 2014,
+ 2036
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2045,
+ 2052
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2053,
+ 2055
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 16
+ },
+ "end": {
+ "line": 69,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2045,
+ 2055
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 2074,
+ 2092
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 16
+ },
+ "end": {
+ "line": 70,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 2110,
+ 2136
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 16
+ },
+ "end": {
+ "line": 71,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-changing-page",
+ "raw": "'before-changing-page'",
+ "range": [
+ 2154,
+ 2176
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 16
+ },
+ "end": {
+ "line": 72,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-clearing-filters",
+ "raw": "'before-clearing-filters'",
+ "range": [
+ 2194,
+ 2219
+ ],
+ "loc": {
+ "start": {
+ "line": 73,
+ "column": 16
+ },
+ "end": {
+ "line": 73,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-changing-results-per-page",
+ "raw": "'before-changing-results-per-page'",
+ "range": [
+ 2237,
+ 2271
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 16
+ },
+ "end": {
+ "line": 74,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-reset-page",
+ "raw": "'before-reset-page'",
+ "range": [
+ 2289,
+ 2308
+ ],
+ "loc": {
+ "start": {
+ "line": 75,
+ "column": 16
+ },
+ "end": {
+ "line": 75,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-reset-page-length",
+ "raw": "'before-reset-page-length'",
+ "range": [
+ 2326,
+ 2352
+ ],
+ "loc": {
+ "start": {
+ "line": 76,
+ "column": 16
+ },
+ "end": {
+ "line": 76,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-loading-extensions",
+ "raw": "'before-loading-extensions'",
+ "range": [
+ 2370,
+ 2397
+ ],
+ "loc": {
+ "start": {
+ "line": 77,
+ "column": 16
+ },
+ "end": {
+ "line": 77,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-loading-themes",
+ "raw": "'before-loading-themes'",
+ "range": [
+ 2415,
+ 2438
+ ],
+ "loc": {
+ "start": {
+ "line": 78,
+ "column": 16
+ },
+ "end": {
+ "line": 78,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 2056,
+ 2452
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 19
+ },
+ "end": {
+ "line": 79,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2471,
+ 2475
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 17
+ },
+ "end": {
+ "line": 80,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "show",
+ "range": [
+ 2476,
+ 2480
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 22
+ },
+ "end": {
+ "line": 80,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2471,
+ 2480
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 17
+ },
+ "end": {
+ "line": 80,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 2481,
+ 2483
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 27
+ },
+ "end": {
+ "line": 80,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 2471,
+ 2484
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 17
+ },
+ "end": {
+ "line": 80,
+ "column": 30
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2466,
+ 2484
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 2045,
+ 2494
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 81,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2045,
+ 2495
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 81,
+ "column": 10
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 2014,
+ 2036
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2504,
+ 2511
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2512,
+ 2514
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 16
+ },
+ "end": {
+ "line": 82,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2504,
+ 2514
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 2533,
+ 2550
+ ],
+ "loc": {
+ "start": {
+ "line": 83,
+ "column": 16
+ },
+ "end": {
+ "line": 83,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 2568,
+ 2593
+ ],
+ "loc": {
+ "start": {
+ "line": 84,
+ "column": 16
+ },
+ "end": {
+ "line": 84,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-page",
+ "raw": "'after-changing-page'",
+ "range": [
+ 2611,
+ 2632
+ ],
+ "loc": {
+ "start": {
+ "line": 85,
+ "column": 16
+ },
+ "end": {
+ "line": 85,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 2650,
+ 2674
+ ],
+ "loc": {
+ "start": {
+ "line": 86,
+ "column": 16
+ },
+ "end": {
+ "line": 86,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-results-per-page",
+ "raw": "'after-changing-results-per-page'",
+ "range": [
+ 2692,
+ 2725
+ ],
+ "loc": {
+ "start": {
+ "line": 87,
+ "column": 16
+ },
+ "end": {
+ "line": 87,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page",
+ "raw": "'after-reset-page'",
+ "range": [
+ 2743,
+ 2761
+ ],
+ "loc": {
+ "start": {
+ "line": 88,
+ "column": 16
+ },
+ "end": {
+ "line": 88,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page-length",
+ "raw": "'after-reset-page-length'",
+ "range": [
+ 2779,
+ 2804
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 16
+ },
+ "end": {
+ "line": 89,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-extensions",
+ "raw": "'after-loading-extensions'",
+ "range": [
+ 2822,
+ 2848
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 16
+ },
+ "end": {
+ "line": 90,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-themes",
+ "raw": "'after-loading-themes'",
+ "range": [
+ 2866,
+ 2888
+ ],
+ "loc": {
+ "start": {
+ "line": 91,
+ "column": 16
+ },
+ "end": {
+ "line": 91,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 2515,
+ 2902
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 19
+ },
+ "end": {
+ "line": 92,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2921,
+ 2925
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 17
+ },
+ "end": {
+ "line": 93,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "show",
+ "range": [
+ 2926,
+ 2930
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 22
+ },
+ "end": {
+ "line": 93,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2921,
+ 2930
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 17
+ },
+ "end": {
+ "line": 93,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "none",
+ "raw": "'none'",
+ "range": [
+ 2931,
+ 2937
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 27
+ },
+ "end": {
+ "line": 93,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 2921,
+ 2938
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 17
+ },
+ "end": {
+ "line": 93,
+ "column": 34
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2916,
+ 2938
+ ],
+ "loc": {
+ "start": {
+ "line": 93,
+ "column": 12
+ },
+ "end": {
+ "line": 93,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 2504,
+ 2948
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 94,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2504,
+ 2949
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 94,
+ "column": 10
+ }
}
},
{
@@ -4948,16 +5880,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1976,
- 1980
+ 2959,
+ 2963
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 8
},
"end": {
- "line": 66,
+ "line": 96,
"column": 12
}
}
@@ -4966,31 +5898,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 1981,
- 1992
+ 2964,
+ 2975
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 13
},
"end": {
- "line": 66,
+ "line": 96,
"column": 24
}
}
},
"range": [
- 1976,
- 1992
+ 2959,
+ 2975
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 8
},
"end": {
- "line": 66,
+ "line": 96,
"column": 24
}
}
@@ -5000,54 +5932,54 @@
"value": true,
"raw": "true",
"range": [
- 1995,
- 1999
+ 2978,
+ 2982
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 27
},
"end": {
- "line": 66,
+ "line": 96,
"column": 31
}
}
},
"range": [
- 1976,
- 1999
+ 2959,
+ 2982
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 8
},
"end": {
- "line": 66,
+ "line": 96,
"column": 31
}
}
},
"range": [
- 1976,
- 2000
+ 2959,
+ 2983
],
"loc": {
"start": {
- "line": 66,
+ "line": 96,
"column": 8
},
"end": {
- "line": 66,
+ "line": 96,
"column": 32
}
}
}
],
"range": [
- 1235,
- 2006
+ 1236,
+ 2989
],
"loc": {
"start": {
@@ -5055,7 +5987,7 @@
"column": 11
},
"end": {
- "line": 67,
+ "line": 97,
"column": 5
}
}
@@ -5063,8 +5995,8 @@
"generator": false,
"expression": false,
"range": [
- 1232,
- 2006
+ 1233,
+ 2989
],
"loc": {
"start": {
@@ -5072,7 +6004,7 @@
"column": 8
},
"end": {
- "line": 67,
+ "line": 97,
"column": 5
}
}
@@ -5080,8 +6012,8 @@
"kind": "method",
"computed": false,
"range": [
- 1228,
- 2006
+ 1229,
+ 2989
],
"loc": {
"start": {
@@ -5089,7 +6021,7 @@
"column": 4
},
"end": {
- "line": 67,
+ "line": 97,
"column": 5
}
},
@@ -5101,16 +6033,16 @@
"type": "Identifier",
"name": "show",
"range": [
- 2012,
- 2016
+ 2995,
+ 2999
],
"loc": {
"start": {
- "line": 69,
+ "line": 99,
"column": 4
},
"end": {
- "line": 69,
+ "line": 99,
"column": 8
}
}
@@ -5123,16 +6055,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 2017,
- 2018
+ 3000,
+ 3001
],
"loc": {
"start": {
- "line": 69,
+ "line": 99,
"column": 9
},
"end": {
- "line": 69,
+ "line": 99,
"column": 10
}
}
@@ -5144,273 +6076,114 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 2034,
- 2038
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 12
- },
- "end": {
- "line": 70,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isEnabled",
- "range": [
- 2039,
- 2048
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 17
- },
- "end": {
- "line": 70,
- "column": 26
- }
- }
- },
- "range": [
- 2034,
- 2048
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 12
- },
- "end": {
- "line": 70,
- "column": 26
- }
- }
- },
- "arguments": [],
- "range": [
- 2034,
- 2050
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 12
- },
- "end": {
- "line": 70,
- "column": 28
- }
- }
- },
- "prefix": true,
- "range": [
- 2033,
- 2050
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 11
- },
- "end": {
- "line": 70,
- "column": 28
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 2054,
- 2058
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 32
- },
- "end": {
- "line": 70,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loaderDiv",
- "range": [
- 2059,
- 2068
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 37
- },
- "end": {
- "line": 70,
- "column": 46
- }
- }
- },
- "range": [
- 2054,
- 2068
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 32
- },
- "end": {
- "line": 70,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "style",
- "range": [
- 2069,
- 2074
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 47
- },
- "end": {
- "line": 70,
- "column": 52
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 2054,
- 2074
+ 3017,
+ 3021
],
"loc": {
"start": {
- "line": 70,
- "column": 32
+ "line": 100,
+ "column": 12
},
"end": {
- "line": 70,
- "column": 52
+ "line": 100,
+ "column": 16
}
}
},
"property": {
"type": "Identifier",
- "name": "display",
+ "name": "isEnabled",
"range": [
- 2075,
- 2082
+ 3022,
+ 3031
],
"loc": {
"start": {
- "line": 70,
- "column": 53
+ "line": 100,
+ "column": 17
},
"end": {
- "line": 70,
- "column": 60
+ "line": 100,
+ "column": 26
}
}
},
"range": [
- 2054,
- 2082
+ 3017,
+ 3031
],
"loc": {
"start": {
- "line": 70,
- "column": 32
+ "line": 100,
+ "column": 12
},
"end": {
- "line": 70,
- "column": 60
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "p",
- "range": [
- 2087,
- 2088
- ],
- "loc": {
- "start": {
- "line": 70,
- "column": 65
- },
- "end": {
- "line": 70,
- "column": 66
+ "line": 100,
+ "column": 26
}
}
},
+ "arguments": [],
"range": [
- 2054,
- 2088
+ 3017,
+ 3033
],
"loc": {
"start": {
- "line": 70,
- "column": 32
+ "line": 100,
+ "column": 12
},
"end": {
- "line": 70,
- "column": 66
+ "line": 100,
+ "column": 28
}
}
},
+ "prefix": true,
"range": [
- 2033,
- 2088
+ 3016,
+ 3033
],
"loc": {
"start": {
- "line": 70,
+ "line": 100,
"column": 11
},
"end": {
- "line": 70,
- "column": 66
+ "line": 100,
+ "column": 28
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "|| this.loaderDiv.style.display === p",
+ "range": [
+ 3034,
+ 3075
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 29
+ },
+ "end": {
+ "line": 100,
+ "column": 70
+ }
+ }
+ }
+ ]
},
"consequent": {
"type": "BlockStatement",
@@ -5419,48 +6192,68 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2103,
- 2110
+ 3090,
+ 3097
],
"loc": {
"start": {
- "line": 71,
+ "line": 101,
"column": 12
},
"end": {
- "line": 71,
+ "line": 101,
"column": 19
}
}
}
],
"range": [
- 2089,
- 2120
+ 3076,
+ 3107
],
"loc": {
"start": {
- "line": 70,
- "column": 67
+ "line": 100,
+ "column": 71
},
"end": {
- "line": 72,
+ "line": 102,
"column": 9
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "|| this.loaderDiv.style.display === p",
+ "range": [
+ 3034,
+ 3075
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 29
+ },
+ "end": {
+ "line": 100,
+ "column": 70
+ }
+ }
+ }
+ ]
},
"alternate": null,
"range": [
- 2030,
- 2120
+ 3013,
+ 3107
],
"loc": {
"start": {
- "line": 70,
+ "line": 100,
"column": 8
},
"end": {
- "line": 72,
+ "line": 102,
"column": 9
}
}
@@ -5474,16 +6267,16 @@
"type": "Identifier",
"name": "displayLoader",
"range": [
- 2134,
- 2147
+ 3121,
+ 3134
],
"loc": {
"start": {
- "line": 74,
+ "line": 104,
"column": 12
},
"end": {
- "line": 74,
+ "line": 104,
"column": 25
}
}
@@ -5506,16 +6299,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2174,
- 2178
+ 3161,
+ 3165
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 16
},
"end": {
- "line": 75,
+ "line": 105,
"column": 20
}
}
@@ -5524,47 +6317,47 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 2179,
- 2188
+ 3166,
+ 3175
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 21
},
"end": {
- "line": 75,
+ "line": 105,
"column": 30
}
}
},
"range": [
- 2174,
- 2188
+ 3161,
+ 3175
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 16
},
"end": {
- "line": 75,
+ "line": 105,
"column": 30
}
}
},
"prefix": true,
"range": [
- 2173,
- 2188
+ 3160,
+ 3175
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 15
},
"end": {
- "line": 75,
+ "line": 105,
"column": 30
}
}
@@ -5576,48 +6369,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2207,
- 2214
+ 3194,
+ 3201
],
"loc": {
"start": {
- "line": 76,
+ "line": 106,
"column": 16
},
"end": {
- "line": 76,
+ "line": 106,
"column": 23
}
}
}
],
"range": [
- 2189,
- 2228
+ 3176,
+ 3215
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 31
},
"end": {
- "line": 77,
+ "line": 107,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2170,
- 2228
+ 3157,
+ 3215
],
"loc": {
"start": {
- "line": 75,
+ "line": 105,
"column": 12
},
"end": {
- "line": 77,
+ "line": 107,
"column": 13
}
}
@@ -5633,16 +6426,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2244,
- 2248
+ 3231,
+ 3235
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 15
},
"end": {
- "line": 78,
+ "line": 108,
"column": 19
}
}
@@ -5651,31 +6444,31 @@
"type": "Identifier",
"name": "onShowLoader",
"range": [
- 2249,
- 2261
+ 3236,
+ 3248
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 20
},
"end": {
- "line": 78,
+ "line": 108,
"column": 32
}
}
},
"range": [
- 2244,
- 2261
+ 3231,
+ 3248
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 15
},
"end": {
- "line": 78,
+ "line": 108,
"column": 32
}
}
@@ -5687,16 +6480,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 2265,
- 2266
+ 3252,
+ 3253
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 36
},
"end": {
- "line": 78,
+ "line": 108,
"column": 37
}
}
@@ -5706,46 +6499,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 2271,
- 2277
+ 3258,
+ 3264
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 42
},
"end": {
- "line": 78,
+ "line": 108,
"column": 48
}
}
},
"range": [
- 2265,
- 2277
+ 3252,
+ 3264
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 36
},
"end": {
- "line": 78,
+ "line": 108,
"column": 48
}
}
},
"range": [
- 2244,
- 2277
+ 3231,
+ 3264
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 15
},
"end": {
- "line": 78,
+ "line": 108,
"column": 48
}
}
@@ -5766,16 +6559,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2296,
- 2300
+ 3283,
+ 3287
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 16
},
"end": {
- "line": 79,
+ "line": 109,
"column": 20
}
}
@@ -5784,31 +6577,31 @@
"type": "Identifier",
"name": "onShowLoader",
"range": [
- 2301,
- 2313
+ 3288,
+ 3300
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 21
},
"end": {
- "line": 79,
+ "line": 109,
"column": 33
}
}
},
"range": [
- 2296,
- 2313
+ 3283,
+ 3300
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 16
},
"end": {
- "line": 79,
+ "line": 109,
"column": 33
}
}
@@ -5817,31 +6610,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2314,
- 2318
+ 3301,
+ 3305
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 34
},
"end": {
- "line": 79,
+ "line": 109,
"column": 38
}
}
},
"range": [
- 2296,
- 2318
+ 3283,
+ 3305
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 16
},
"end": {
- "line": 79,
+ "line": 109,
"column": 38
}
}
@@ -5852,16 +6645,16 @@
"value": null,
"raw": "null",
"range": [
- 2319,
- 2323
+ 3306,
+ 3310
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 39
},
"end": {
- "line": 79,
+ "line": 109,
"column": 43
}
}
@@ -5869,79 +6662,79 @@
{
"type": "ThisExpression",
"range": [
- 2325,
- 2329
+ 3312,
+ 3316
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 45
},
"end": {
- "line": 79,
+ "line": 109,
"column": 49
}
}
}
],
"range": [
- 2296,
- 2330
+ 3283,
+ 3317
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 16
},
"end": {
- "line": 79,
+ "line": 109,
"column": 50
}
}
},
"range": [
- 2296,
- 2331
+ 3283,
+ 3318
],
"loc": {
"start": {
- "line": 79,
+ "line": 109,
"column": 16
},
"end": {
- "line": 79,
+ "line": 109,
"column": 51
}
}
}
],
"range": [
- 2278,
- 2345
+ 3265,
+ 3332
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 49
},
"end": {
- "line": 80,
+ "line": 110,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2241,
- 2345
+ 3228,
+ 3332
],
"loc": {
"start": {
- "line": 78,
+ "line": 108,
"column": 12
},
"end": {
- "line": 80,
+ "line": 110,
"column": 13
}
}
@@ -5963,16 +6756,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2358,
- 2362
+ 3345,
+ 3349
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 16
}
}
@@ -5981,31 +6774,31 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 2363,
- 2372
+ 3350,
+ 3359
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 17
},
"end": {
- "line": 81,
+ "line": 111,
"column": 26
}
}
},
"range": [
- 2358,
- 2372
+ 3345,
+ 3359
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 26
}
}
@@ -6014,31 +6807,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2373,
- 2378
+ 3360,
+ 3365
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 27
},
"end": {
- "line": 81,
+ "line": 111,
"column": 32
}
}
},
"range": [
- 2358,
- 2378
+ 3345,
+ 3365
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 32
}
}
@@ -6047,31 +6840,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 2379,
- 2386
+ 3366,
+ 3373
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 33
},
"end": {
- "line": 81,
+ "line": 111,
"column": 40
}
}
},
"range": [
- 2358,
- 2386
+ 3345,
+ 3373
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 40
}
}
@@ -6080,46 +6873,46 @@
"type": "Identifier",
"name": "p",
"range": [
- 2389,
- 2390
+ 3376,
+ 3377
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 43
},
"end": {
- "line": 81,
+ "line": 111,
"column": 44
}
}
},
"range": [
- 2358,
- 2390
+ 3345,
+ 3377
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 44
}
}
},
"range": [
- 2358,
- 2391
+ 3345,
+ 3378
],
"loc": {
"start": {
- "line": 81,
+ "line": 111,
"column": 12
},
"end": {
- "line": 81,
+ "line": 111,
"column": 45
}
}
@@ -6135,16 +6928,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2407,
- 2411
+ 3394,
+ 3398
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 15
},
"end": {
- "line": 82,
+ "line": 112,
"column": 19
}
}
@@ -6153,31 +6946,31 @@
"type": "Identifier",
"name": "onHideLoader",
"range": [
- 2412,
- 2424
+ 3399,
+ 3411
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 20
},
"end": {
- "line": 82,
+ "line": 112,
"column": 32
}
}
},
"range": [
- 2407,
- 2424
+ 3394,
+ 3411
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 15
},
"end": {
- "line": 82,
+ "line": 112,
"column": 32
}
}
@@ -6189,16 +6982,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 2428,
- 2429
+ 3415,
+ 3416
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 36
},
"end": {
- "line": 82,
+ "line": 112,
"column": 37
}
}
@@ -6208,46 +7001,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 2434,
- 2440
+ 3421,
+ 3427
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 42
},
"end": {
- "line": 82,
+ "line": 112,
"column": 48
}
}
},
"range": [
- 2428,
- 2440
+ 3415,
+ 3427
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 36
},
"end": {
- "line": 82,
+ "line": 112,
"column": 48
}
}
},
"range": [
- 2407,
- 2440
+ 3394,
+ 3427
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 15
},
"end": {
- "line": 82,
+ "line": 112,
"column": 48
}
}
@@ -6268,16 +7061,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2459,
- 2463
+ 3446,
+ 3450
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 16
},
"end": {
- "line": 83,
+ "line": 113,
"column": 20
}
}
@@ -6286,31 +7079,31 @@
"type": "Identifier",
"name": "onHideLoader",
"range": [
- 2464,
- 2476
+ 3451,
+ 3463
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 21
},
"end": {
- "line": 83,
+ "line": 113,
"column": 33
}
}
},
"range": [
- 2459,
- 2476
+ 3446,
+ 3463
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 16
},
"end": {
- "line": 83,
+ "line": 113,
"column": 33
}
}
@@ -6319,31 +7112,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2477,
- 2481
+ 3464,
+ 3468
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 34
},
"end": {
- "line": 83,
+ "line": 113,
"column": 38
}
}
},
"range": [
- 2459,
- 2481
+ 3446,
+ 3468
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 16
},
"end": {
- "line": 83,
+ "line": 113,
"column": 38
}
}
@@ -6354,16 +7147,16 @@
"value": null,
"raw": "null",
"range": [
- 2482,
- 2486
+ 3469,
+ 3473
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 39
},
"end": {
- "line": 83,
+ "line": 113,
"column": 43
}
}
@@ -6371,95 +7164,95 @@
{
"type": "ThisExpression",
"range": [
- 2488,
- 2492
+ 3475,
+ 3479
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 45
},
"end": {
- "line": 83,
+ "line": 113,
"column": 49
}
}
}
],
"range": [
- 2459,
- 2493
+ 3446,
+ 3480
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 16
},
"end": {
- "line": 83,
+ "line": 113,
"column": 50
}
}
},
"range": [
- 2459,
- 2494
+ 3446,
+ 3481
],
"loc": {
"start": {
- "line": 83,
+ "line": 113,
"column": 16
},
"end": {
- "line": 83,
+ "line": 113,
"column": 51
}
}
}
],
"range": [
- 2441,
- 2508
+ 3428,
+ 3495
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 49
},
"end": {
- "line": 84,
+ "line": 114,
"column": 13
}
}
},
"alternate": null,
"range": [
- 2404,
- 2508
+ 3391,
+ 3495
],
"loc": {
"start": {
- "line": 82,
+ "line": 112,
"column": 12
},
"end": {
- "line": 84,
+ "line": 114,
"column": 13
}
}
}
],
"range": [
- 2156,
- 2518
+ 3143,
+ 3505
],
"loc": {
"start": {
- "line": 74,
+ "line": 104,
"column": 34
},
"end": {
- "line": 85,
+ "line": 115,
"column": 9
}
}
@@ -6467,48 +7260,48 @@
"generator": false,
"expression": false,
"range": [
- 2150,
- 2518
+ 3137,
+ 3505
],
"loc": {
"start": {
- "line": 74,
+ "line": 104,
"column": 28
},
"end": {
- "line": 85,
+ "line": 115,
"column": 9
}
}
},
"range": [
- 2134,
- 2518
+ 3121,
+ 3505
],
"loc": {
"start": {
- "line": 74,
+ "line": 104,
"column": 12
},
"end": {
- "line": 85,
+ "line": 115,
"column": 9
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2130,
- 2519
+ 3117,
+ 3506
],
"loc": {
"start": {
- "line": 74,
+ "line": 104,
"column": 8
},
"end": {
- "line": 85,
+ "line": 115,
"column": 10
}
}
@@ -6522,16 +7315,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 2533,
- 2534
+ 3520,
+ 3521
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 12
},
"end": {
- "line": 87,
+ "line": 117,
"column": 13
}
}
@@ -6545,16 +7338,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 2537,
- 2538
+ 3524,
+ 3525
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 16
},
"end": {
- "line": 87,
+ "line": 117,
"column": 17
}
}
@@ -6564,31 +7357,31 @@
"value": "none",
"raw": "'none'",
"range": [
- 2543,
- 2549
+ 3530,
+ 3536
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 22
},
"end": {
- "line": 87,
+ "line": 117,
"column": 28
}
}
},
"range": [
- 2537,
- 2549
+ 3524,
+ 3536
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 16
},
"end": {
- "line": 87,
+ "line": 117,
"column": 28
}
}
@@ -6599,16 +7392,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2552,
- 2556
+ 3539,
+ 3543
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 31
},
"end": {
- "line": 87,
+ "line": 117,
"column": 35
}
}
@@ -6617,31 +7410,31 @@
"type": "Identifier",
"name": "loaderCloseDelay",
"range": [
- 2557,
- 2573
+ 3544,
+ 3560
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 36
},
"end": {
- "line": 87,
+ "line": 117,
"column": 52
}
}
},
"range": [
- 2552,
- 2573
+ 3539,
+ 3560
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 31
},
"end": {
- "line": 87,
+ "line": 117,
"column": 52
}
}
@@ -6651,63 +7444,63 @@
"value": 1,
"raw": "1",
"range": [
- 2576,
- 2577
+ 3563,
+ 3564
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 55
},
"end": {
- "line": 87,
+ "line": 117,
"column": 56
}
}
},
"range": [
- 2537,
- 2577
+ 3524,
+ 3564
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 16
},
"end": {
- "line": 87,
+ "line": 117,
"column": 56
}
}
},
"range": [
- 2533,
- 2577
+ 3520,
+ 3564
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 12
},
"end": {
- "line": 87,
+ "line": 117,
"column": 56
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2529,
- 2578
+ 3516,
+ 3565
],
"loc": {
"start": {
- "line": 87,
+ "line": 117,
"column": 8
},
"end": {
- "line": 87,
+ "line": 117,
"column": 57
}
}
@@ -6723,16 +7516,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 2587,
- 2593
+ 3574,
+ 3580
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 8
},
"end": {
- "line": 88,
+ "line": 118,
"column": 14
}
}
@@ -6741,31 +7534,31 @@
"type": "Identifier",
"name": "setTimeout",
"range": [
- 2594,
- 2604
+ 3581,
+ 3591
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 15
},
"end": {
- "line": 88,
+ "line": 118,
"column": 25
}
}
},
"range": [
- 2587,
- 2604
+ 3574,
+ 3591
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 8
},
"end": {
- "line": 88,
+ "line": 118,
"column": 25
}
}
@@ -6775,16 +7568,16 @@
"type": "Identifier",
"name": "displayLoader",
"range": [
- 2605,
- 2618
+ 3592,
+ 3605
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 26
},
"end": {
- "line": 88,
+ "line": 118,
"column": 39
}
}
@@ -6793,63 +7586,63 @@
"type": "Identifier",
"name": "t",
"range": [
- 2620,
- 2621
+ 3607,
+ 3608
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 41
},
"end": {
- "line": 88,
+ "line": 118,
"column": 42
}
}
}
],
"range": [
- 2587,
- 2622
+ 3574,
+ 3609
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 8
},
"end": {
- "line": 88,
+ "line": 118,
"column": 43
}
}
},
"range": [
- 2587,
- 2623
+ 3574,
+ 3610
],
"loc": {
"start": {
- "line": 88,
+ "line": 118,
"column": 8
},
"end": {
- "line": 88,
+ "line": 118,
"column": 44
}
}
}
],
"range": [
- 2020,
- 2629
+ 3003,
+ 3616
],
"loc": {
"start": {
- "line": 69,
+ "line": 99,
"column": 12
},
"end": {
- "line": 89,
+ "line": 119,
"column": 5
}
}
@@ -6857,16 +7650,16 @@
"generator": false,
"expression": false,
"range": [
- 2016,
- 2629
+ 2999,
+ 3616
],
"loc": {
"start": {
- "line": 69,
+ "line": 99,
"column": 8
},
"end": {
- "line": 89,
+ "line": 119,
"column": 5
}
}
@@ -6874,16 +7667,16 @@
"kind": "method",
"computed": false,
"range": [
- 2012,
- 2629
+ 2995,
+ 3616
],
"loc": {
"start": {
- "line": 69,
+ "line": 99,
"column": 4
},
"end": {
- "line": 89,
+ "line": 119,
"column": 5
}
},
@@ -6895,16 +7688,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 2635,
- 2642
+ 3622,
+ 3629
],
"loc": {
"start": {
- "line": 91,
+ "line": 121,
"column": 4
},
"end": {
- "line": 91,
+ "line": 121,
"column": 11
}
}
@@ -6927,16 +7720,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2658,
- 2662
+ 3646,
+ 3650
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 12
},
"end": {
- "line": 92,
+ "line": 122,
"column": 16
}
}
@@ -6945,47 +7738,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2663,
- 2674
+ 3651,
+ 3662
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 17
},
"end": {
- "line": 92,
+ "line": 122,
"column": 28
}
}
},
"range": [
- 2658,
- 2674
+ 3646,
+ 3662
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 12
},
"end": {
- "line": 92,
+ "line": 122,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2657,
- 2674
+ 3645,
+ 3662
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 11
},
"end": {
- "line": 92,
+ "line": 122,
"column": 28
}
}
@@ -6997,52 +7790,160 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2689,
- 2696
+ 3677,
+ 3684
],
"loc": {
"start": {
- "line": 93,
+ "line": 123,
"column": 12
},
"end": {
- "line": 93,
+ "line": 123,
"column": 19
}
}
}
],
"range": [
- 2675,
- 2706
+ 3663,
+ 3694
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 29
},
"end": {
- "line": 94,
+ "line": 124,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2654,
- 2706
+ 3642,
+ 3694
],
"loc": {
"start": {
- "line": 92,
+ "line": 122,
"column": 8
},
"end": {
- "line": 94,
+ "line": 124,
"column": 9
}
}
},
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3708,
+ 3715
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 12
+ },
+ "end": {
+ "line": 126,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3718,
+ 3722
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 22
+ },
+ "end": {
+ "line": 126,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3723,
+ 3730
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 27
+ },
+ "end": {
+ "line": 126,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 3718,
+ 3730
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 22
+ },
+ "end": {
+ "line": 126,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 3708,
+ 3730
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 12
+ },
+ "end": {
+ "line": 126,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 3704,
+ 3731
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 8
+ },
+ "end": {
+ "line": 126,
+ "column": 35
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -7054,16 +7955,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2716,
- 2719
+ 3741,
+ 3744
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 8
},
"end": {
- "line": 96,
+ "line": 128,
"column": 11
}
}
@@ -7072,31 +7973,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 2720,
- 2726
+ 3745,
+ 3751
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 12
},
"end": {
- "line": 96,
+ "line": 128,
"column": 18
}
}
},
"range": [
- 2716,
- 2726
+ 3741,
+ 3751
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 8
},
"end": {
- "line": 96,
+ "line": 128,
"column": 18
}
}
@@ -7108,16 +8009,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2727,
- 2731
+ 3752,
+ 3756
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 19
},
"end": {
- "line": 96,
+ "line": 128,
"column": 23
}
}
@@ -7126,62 +8027,62 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 2732,
- 2741
+ 3757,
+ 3766
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 24
},
"end": {
- "line": 96,
+ "line": 128,
"column": 33
}
}
},
"range": [
- 2727,
- 2741
+ 3752,
+ 3766
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 19
},
"end": {
- "line": 96,
+ "line": 128,
"column": 33
}
}
}
],
"range": [
- 2716,
- 2742
+ 3741,
+ 3767
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 8
},
"end": {
- "line": 96,
+ "line": 128,
"column": 34
}
}
},
"range": [
- 2716,
- 2743
+ 3741,
+ 3768
],
"loc": {
"start": {
- "line": 96,
+ "line": 128,
"column": 8
},
"end": {
- "line": 96,
+ "line": 128,
"column": 35
}
}
@@ -7197,16 +8098,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2752,
- 2756
+ 3777,
+ 3781
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 8
},
"end": {
- "line": 97,
+ "line": 129,
"column": 12
}
}
@@ -7215,31 +8116,31 @@
"type": "Identifier",
"name": "loaderDiv",
"range": [
- 2757,
- 2766
+ 3782,
+ 3791
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 13
},
"end": {
- "line": 97,
+ "line": 129,
"column": 22
}
}
},
"range": [
- 2752,
- 2766
+ 3777,
+ 3791
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 8
},
"end": {
- "line": 97,
+ "line": 129,
"column": 22
}
}
@@ -7249,48 +8150,872 @@
"value": null,
"raw": "null",
"range": [
- 2769,
- 2773
+ 3794,
+ 3798
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 25
},
"end": {
- "line": 97,
+ "line": 129,
"column": 29
}
}
},
"range": [
- 2752,
- 2773
+ 3777,
+ 3798
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 8
},
"end": {
- "line": 97,
+ "line": 129,
"column": 29
}
}
},
"range": [
- 2752,
- 2774
+ 3777,
+ 3799
],
"loc": {
"start": {
- "line": 97,
+ "line": 129,
"column": 8
},
"end": {
- "line": 97,
+ "line": 129,
"column": 30
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3809,
+ 3833
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3842,
+ 3849
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3850,
+ 3853
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 16
+ },
+ "end": {
+ "line": 132,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 3842,
+ 3853
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 3872,
+ 3890
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 16
+ },
+ "end": {
+ "line": 133,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 3908,
+ 3934
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 16
+ },
+ "end": {
+ "line": 134,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-changing-page",
+ "raw": "'before-changing-page'",
+ "range": [
+ 3952,
+ 3974
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 16
+ },
+ "end": {
+ "line": 135,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-clearing-filters",
+ "raw": "'before-clearing-filters'",
+ "range": [
+ 3992,
+ 4017
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 16
+ },
+ "end": {
+ "line": 136,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-changing-results-per-page",
+ "raw": "'before-changing-results-per-page'",
+ "range": [
+ 4035,
+ 4069
+ ],
+ "loc": {
+ "start": {
+ "line": 137,
+ "column": 16
+ },
+ "end": {
+ "line": 137,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-reset-page",
+ "raw": "'before-reset-page'",
+ "range": [
+ 4087,
+ 4106
+ ],
+ "loc": {
+ "start": {
+ "line": 138,
+ "column": 16
+ },
+ "end": {
+ "line": 138,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-reset-page-length",
+ "raw": "'before-reset-page-length'",
+ "range": [
+ 4124,
+ 4150
+ ],
+ "loc": {
+ "start": {
+ "line": 139,
+ "column": 16
+ },
+ "end": {
+ "line": 139,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-loading-extensions",
+ "raw": "'before-loading-extensions'",
+ "range": [
+ 4168,
+ 4195
+ ],
+ "loc": {
+ "start": {
+ "line": 140,
+ "column": 16
+ },
+ "end": {
+ "line": 140,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "before-loading-themes",
+ "raw": "'before-loading-themes'",
+ "range": [
+ 4213,
+ 4236
+ ],
+ "loc": {
+ "start": {
+ "line": 141,
+ "column": 16
+ },
+ "end": {
+ "line": 141,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 3854,
+ 4250
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 20
+ },
+ "end": {
+ "line": 142,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4269,
+ 4273
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "show",
+ "range": [
+ 4274,
+ 4278
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 22
+ },
+ "end": {
+ "line": 143,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 4269,
+ 4278
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 4279,
+ 4281
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 27
+ },
+ "end": {
+ "line": 143,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 4269,
+ 4282
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 30
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4264,
+ 4282
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 12
+ },
+ "end": {
+ "line": 143,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 3842,
+ 4292
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 3842,
+ 4293
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 10
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3809,
+ 3833
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4302,
+ 4309
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 8
+ },
+ "end": {
+ "line": 145,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 4310,
+ 4313
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 16
+ },
+ "end": {
+ "line": 145,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 4302,
+ 4313
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 8
+ },
+ "end": {
+ "line": 145,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 4332,
+ 4349
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 16
+ },
+ "end": {
+ "line": 146,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 4367,
+ 4392
+ ],
+ "loc": {
+ "start": {
+ "line": 147,
+ "column": 16
+ },
+ "end": {
+ "line": 147,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-page",
+ "raw": "'after-changing-page'",
+ "range": [
+ 4410,
+ 4431
+ ],
+ "loc": {
+ "start": {
+ "line": 148,
+ "column": 16
+ },
+ "end": {
+ "line": 148,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 4449,
+ 4473
+ ],
+ "loc": {
+ "start": {
+ "line": 149,
+ "column": 16
+ },
+ "end": {
+ "line": 149,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-results-per-page",
+ "raw": "'after-changing-results-per-page'",
+ "range": [
+ 4491,
+ 4524
+ ],
+ "loc": {
+ "start": {
+ "line": 150,
+ "column": 16
+ },
+ "end": {
+ "line": 150,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page",
+ "raw": "'after-reset-page'",
+ "range": [
+ 4542,
+ 4560
+ ],
+ "loc": {
+ "start": {
+ "line": 151,
+ "column": 16
+ },
+ "end": {
+ "line": 151,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page-length",
+ "raw": "'after-reset-page-length'",
+ "range": [
+ 4578,
+ 4603
+ ],
+ "loc": {
+ "start": {
+ "line": 152,
+ "column": 16
+ },
+ "end": {
+ "line": 152,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-extensions",
+ "raw": "'after-loading-extensions'",
+ "range": [
+ 4621,
+ 4647
+ ],
+ "loc": {
+ "start": {
+ "line": 153,
+ "column": 16
+ },
+ "end": {
+ "line": 153,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-themes",
+ "raw": "'after-loading-themes'",
+ "range": [
+ 4665,
+ 4687
+ ],
+ "loc": {
+ "start": {
+ "line": 154,
+ "column": 16
+ },
+ "end": {
+ "line": 154,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 4314,
+ 4701
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 20
+ },
+ "end": {
+ "line": 155,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4720,
+ 4724
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 17
+ },
+ "end": {
+ "line": 156,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "show",
+ "range": [
+ 4725,
+ 4729
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 22
+ },
+ "end": {
+ "line": 156,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 4720,
+ 4729
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 17
+ },
+ "end": {
+ "line": 156,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "none",
+ "raw": "'none'",
+ "range": [
+ 4730,
+ 4736
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 27
+ },
+ "end": {
+ "line": 156,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 4720,
+ 4737
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 17
+ },
+ "end": {
+ "line": 156,
+ "column": 34
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4715,
+ 4737
+ ],
+ "loc": {
+ "start": {
+ "line": 156,
+ "column": 12
+ },
+ "end": {
+ "line": 156,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 4302,
+ 4747
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 8
+ },
+ "end": {
+ "line": 157,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 4302,
+ 4748
+ ],
+ "loc": {
+ "start": {
+ "line": 145,
+ "column": 8
+ },
+ "end": {
+ "line": 157,
+ "column": 10
+ }
}
},
{
@@ -7304,16 +9029,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2783,
- 2787
+ 4758,
+ 4762
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 8
},
"end": {
- "line": 98,
+ "line": 159,
"column": 12
}
}
@@ -7322,31 +9047,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2788,
- 2799
+ 4763,
+ 4774
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 13
},
"end": {
- "line": 98,
+ "line": 159,
"column": 24
}
}
},
"range": [
- 2783,
- 2799
+ 4758,
+ 4774
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 8
},
"end": {
- "line": 98,
+ "line": 159,
"column": 24
}
}
@@ -7356,62 +9081,62 @@
"value": false,
"raw": "false",
"range": [
- 2802,
- 2807
+ 4777,
+ 4782
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 27
},
"end": {
- "line": 98,
+ "line": 159,
"column": 32
}
}
},
"range": [
- 2783,
- 2807
+ 4758,
+ 4782
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 8
},
"end": {
- "line": 98,
+ "line": 159,
"column": 32
}
}
},
"range": [
- 2783,
- 2808
+ 4758,
+ 4783
],
"loc": {
"start": {
- "line": 98,
+ "line": 159,
"column": 8
},
"end": {
- "line": 98,
+ "line": 159,
"column": 33
}
}
}
],
"range": [
- 2644,
- 2814
+ 3632,
+ 4789
],
"loc": {
"start": {
- "line": 91,
- "column": 13
+ "line": 121,
+ "column": 14
},
"end": {
- "line": 99,
+ "line": 160,
"column": 5
}
}
@@ -7419,16 +9144,16 @@
"generator": false,
"expression": false,
"range": [
- 2642,
- 2814
+ 3629,
+ 4789
],
"loc": {
"start": {
- "line": 91,
+ "line": 121,
"column": 11
},
"end": {
- "line": 99,
+ "line": 160,
"column": 5
}
}
@@ -7436,16 +9161,16 @@
"kind": "method",
"computed": false,
"range": [
- 2635,
- 2814
+ 3622,
+ 4789
],
"loc": {
"start": {
- "line": 91,
+ "line": 121,
"column": 4
},
"end": {
- "line": 99,
+ "line": 160,
"column": 5
}
},
@@ -7454,7 +9179,7 @@
],
"range": [
149,
- 2816
+ 4791
],
"loc": {
"start": {
@@ -7462,14 +9187,14 @@
"column": 35
},
"end": {
- "line": 100,
+ "line": 161,
"column": 1
}
}
},
"range": [
121,
- 2816
+ 4791
],
"loc": {
"start": {
@@ -7477,7 +9202,7 @@
"column": 7
},
"end": {
- "line": 100,
+ "line": 161,
"column": 1
}
},
@@ -7488,7 +9213,7 @@
"source": null,
"range": [
114,
- 2816
+ 4791
],
"loc": {
"start": {
@@ -7496,7 +9221,7 @@
"column": 0
},
"end": {
- "line": 100,
+ "line": 161,
"column": 1
}
}
@@ -7505,7 +9230,7 @@
"sourceType": "module",
"range": [
0,
- 2816
+ 4791
],
"loc": {
"start": {
@@ -7513,7 +9238,7 @@
"column": 0
},
"end": {
- "line": 100,
+ "line": 161,
"column": 1
}
},
@@ -7540,8 +9265,8 @@
"type": "Line",
"value": " TableFilter configuration",
"range": [
- 305,
- 333
+ 306,
+ 334
],
"loc": {
"start": {
@@ -7558,8 +9283,8 @@
"type": "Line",
"value": "id of container element",
"range": [
- 372,
- 397
+ 373,
+ 398
],
"loc": {
"start": {
@@ -7576,8 +9301,8 @@
"type": "Line",
"value": "div containing loader",
"range": [
- 461,
- 484
+ 462,
+ 485
],
"loc": {
"start": {
@@ -7594,8 +9319,8 @@
"type": "Line",
"value": "defines loader text",
"range": [
- 524,
- 545
+ 525,
+ 546
],
"loc": {
"start": {
@@ -7612,8 +9337,8 @@
"type": "Line",
"value": "defines loader innerHtml",
"range": [
- 611,
- 637
+ 612,
+ 638
],
"loc": {
"start": {
@@ -7630,8 +9355,8 @@
"type": "Line",
"value": "defines css class for loader div",
"range": [
- 695,
- 729
+ 696,
+ 730
],
"loc": {
"start": {
@@ -7648,8 +9373,8 @@
"type": "Line",
"value": "delay for hiding loader",
"range": [
- 800,
- 825
+ 801,
+ 826
],
"loc": {
"start": {
@@ -7666,8 +9391,8 @@
"type": "Line",
"value": "callback function before loader is displayed",
"range": [
- 871,
- 917
+ 872,
+ 918
],
"loc": {
"start": {
@@ -7684,8 +9409,8 @@
"type": "Line",
"value": "callback function after loader is closed",
"range": [
- 1022,
- 1064
+ 1023,
+ 1065
],
"loc": {
"start": {
@@ -7702,8 +9427,8 @@
"type": "Line",
"value": "loader div",
"range": [
- 1169,
- 1181
+ 1170,
+ 1182
],
"loc": {
"start": {
@@ -7715,6 +9440,60 @@
"column": 20
}
}
+ },
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 2014,
+ 2036
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "|| this.loaderDiv.style.display === p",
+ "range": [
+ 3034,
+ 3075
+ ],
+ "loc": {
+ "start": {
+ "line": 100,
+ "column": 29
+ },
+ "end": {
+ "line": 100,
+ "column": 70
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 3809,
+ 3833
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/noResults.js.json b/docs/ast/source/src/modules/noResults.js.json
index f3fd885f..367ced8a 100644
--- a/docs/ast/source/src/modules/noResults.js.json
+++ b/docs/ast/source/src/modules/noResults.js.json
@@ -5097,7 +5097,302 @@
"line": 61,
"column": 25
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to after-filtering event",
+ "range": [
+ 1960,
+ 1997
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 45
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2006,
+ 2010
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2011,
+ 2018
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 13
+ },
+ "end": {
+ "line": 64,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2006,
+ 2018
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2019,
+ 2021
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 21
+ },
+ "end": {
+ "line": 64,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2006,
+ 2021
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 2023,
+ 2040
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 25
+ },
+ "end": {
+ "line": 64,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 2022,
+ 2041
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 24
+ },
+ "end": {
+ "line": 64,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2048,
+ 2052
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 50
+ },
+ "end": {
+ "line": 64,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toggle",
+ "range": [
+ 2053,
+ 2059
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 55
+ },
+ "end": {
+ "line": 64,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 2048,
+ 2059
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 50
+ },
+ "end": {
+ "line": 64,
+ "column": 61
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2048,
+ 2061
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 50
+ },
+ "end": {
+ "line": 64,
+ "column": 63
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2043,
+ 2061
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 45
+ },
+ "end": {
+ "line": 64,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 2006,
+ 2062
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 2006,
+ 2063
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 65
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to after-filtering event",
+ "range": [
+ 1960,
+ 1997
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 45
+ }
+ }
+ }
+ ]
},
{
"type": "ExpressionStatement",
@@ -5110,16 +5405,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1959,
- 1963
+ 2073,
+ 2077
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 8
},
"end": {
- "line": 62,
+ "line": 66,
"column": 12
}
}
@@ -5128,31 +5423,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 1964,
- 1975
+ 2078,
+ 2089
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 13
},
"end": {
- "line": 62,
+ "line": 66,
"column": 24
}
}
},
"range": [
- 1959,
- 1975
+ 2073,
+ 2089
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 8
},
"end": {
- "line": 62,
+ "line": 66,
"column": 24
}
}
@@ -5162,46 +5457,46 @@
"value": true,
"raw": "true",
"range": [
- 1978,
- 1982
+ 2092,
+ 2096
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 27
},
"end": {
- "line": 62,
+ "line": 66,
"column": 31
}
}
},
"range": [
- 1959,
- 1982
+ 2073,
+ 2096
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 8
},
"end": {
- "line": 62,
+ "line": 66,
"column": 31
}
}
},
"range": [
- 1959,
- 1983
+ 2073,
+ 2097
],
"loc": {
"start": {
- "line": 62,
+ "line": 66,
"column": 8
},
"end": {
- "line": 62,
+ "line": 66,
"column": 32
}
}
@@ -5216,16 +5511,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1992,
- 1996
+ 2106,
+ 2110
],
"loc": {
"start": {
- "line": 63,
+ "line": 67,
"column": 8
},
"end": {
- "line": 63,
+ "line": 67,
"column": 12
}
}
@@ -5234,62 +5529,62 @@
"type": "Identifier",
"name": "hide",
"range": [
- 1997,
- 2001
+ 2111,
+ 2115
],
"loc": {
"start": {
- "line": 63,
+ "line": 67,
"column": 13
},
"end": {
- "line": 63,
+ "line": 67,
"column": 17
}
}
},
"range": [
- 1992,
- 2001
+ 2106,
+ 2115
],
"loc": {
"start": {
- "line": 63,
+ "line": 67,
"column": 8
},
"end": {
- "line": 63,
+ "line": 67,
"column": 17
}
}
},
"arguments": [],
"range": [
- 1992,
- 2003
+ 2106,
+ 2117
],
"loc": {
"start": {
- "line": 63,
+ "line": 67,
"column": 8
},
"end": {
- "line": 63,
+ "line": 67,
"column": 19
}
}
},
"range": [
- 1992,
- 2004
+ 2106,
+ 2118
],
"loc": {
"start": {
- "line": 63,
+ "line": 67,
"column": 8
},
"end": {
- "line": 63,
+ "line": 67,
"column": 20
}
}
@@ -5297,7 +5592,7 @@
],
"range": [
1400,
- 2010
+ 2124
],
"loc": {
"start": {
@@ -5305,7 +5600,7 @@
"column": 10
},
"end": {
- "line": 64,
+ "line": 68,
"column": 5
}
}
@@ -5314,7 +5609,7 @@
"expression": false,
"range": [
1398,
- 2010
+ 2124
],
"loc": {
"start": {
@@ -5322,7 +5617,7 @@
"column": 8
},
"end": {
- "line": 64,
+ "line": 68,
"column": 5
}
}
@@ -5331,7 +5626,7 @@
"computed": false,
"range": [
1394,
- 2010
+ 2124
],
"loc": {
"start": {
@@ -5339,7 +5634,442 @@
"column": 4
},
"end": {
- "line": 64,
+ "line": 68,
+ "column": 5
+ }
+ },
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "toggle",
+ "range": [
+ 2130,
+ 2136
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 4
+ },
+ "end": {
+ "line": 70,
+ "column": 10
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2151,
+ 2155
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 11
+ },
+ "end": {
+ "line": 71,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2156,
+ 2158
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 16
+ },
+ "end": {
+ "line": 71,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 2151,
+ 2158
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 11
+ },
+ "end": {
+ "line": 71,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 2159,
+ 2172
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 19
+ },
+ "end": {
+ "line": 71,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 2151,
+ 2172
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 11
+ },
+ "end": {
+ "line": 71,
+ "column": 32
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 2175,
+ 2176
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 35
+ },
+ "end": {
+ "line": 71,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 2151,
+ 2176
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 11
+ },
+ "end": {
+ "line": 71,
+ "column": 36
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2191,
+ 2195
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 12
+ },
+ "end": {
+ "line": 72,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hide",
+ "range": [
+ 2196,
+ 2200
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 17
+ },
+ "end": {
+ "line": 72,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2191,
+ 2200
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 12
+ },
+ "end": {
+ "line": 72,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2191,
+ 2202
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 12
+ },
+ "end": {
+ "line": 72,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2191,
+ 2203
+ ],
+ "loc": {
+ "start": {
+ "line": 72,
+ "column": 12
+ },
+ "end": {
+ "line": 72,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "range": [
+ 2177,
+ 2213
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 37
+ },
+ "end": {
+ "line": 73,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2233,
+ 2237
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 12
+ },
+ "end": {
+ "line": 74,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "show",
+ "range": [
+ 2238,
+ 2242
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 17
+ },
+ "end": {
+ "line": 74,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2233,
+ 2242
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 12
+ },
+ "end": {
+ "line": 74,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2233,
+ 2244
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 12
+ },
+ "end": {
+ "line": 74,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2233,
+ 2245
+ ],
+ "loc": {
+ "start": {
+ "line": 74,
+ "column": 12
+ },
+ "end": {
+ "line": 74,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "range": [
+ 2219,
+ 2255
+ ],
+ "loc": {
+ "start": {
+ "line": 73,
+ "column": 15
+ },
+ "end": {
+ "line": 75,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 2148,
+ 2255
+ ],
+ "loc": {
+ "start": {
+ "line": 71,
+ "column": 8
+ },
+ "end": {
+ "line": 75,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 2138,
+ 2261
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 12
+ },
+ "end": {
+ "line": 76,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 2136,
+ 2261
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 10
+ },
+ "end": {
+ "line": 76,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 2130,
+ 2261
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 4
+ },
+ "end": {
+ "line": 76,
"column": 5
}
},
@@ -5351,16 +6081,16 @@
"type": "Identifier",
"name": "show",
"range": [
- 2016,
- 2020
+ 2267,
+ 2271
],
"loc": {
"start": {
- "line": 66,
+ "line": 78,
"column": 4
},
"end": {
- "line": 66,
+ "line": 78,
"column": 8
}
}
@@ -5386,16 +6116,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2036,
- 2040
+ 2287,
+ 2291
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 12
},
"end": {
- "line": 67,
+ "line": 79,
"column": 16
}
}
@@ -5404,47 +6134,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2041,
- 2052
+ 2292,
+ 2303
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 17
},
"end": {
- "line": 67,
+ "line": 79,
"column": 28
}
}
},
"range": [
- 2036,
- 2052
+ 2287,
+ 2303
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 12
},
"end": {
- "line": 67,
+ "line": 79,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2035,
- 2052
+ 2286,
+ 2303
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 11
},
"end": {
- "line": 67,
+ "line": 79,
"column": 28
}
}
@@ -5460,16 +6190,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2057,
- 2061
+ 2308,
+ 2312
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 33
},
"end": {
- "line": 67,
+ "line": 79,
"column": 37
}
}
@@ -5478,78 +6208,78 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 2062,
- 2071
+ 2313,
+ 2322
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 38
},
"end": {
- "line": 67,
+ "line": 79,
"column": 47
}
}
},
"range": [
- 2057,
- 2071
+ 2308,
+ 2322
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 33
},
"end": {
- "line": 67,
+ "line": 79,
"column": 47
}
}
},
"arguments": [],
"range": [
- 2057,
- 2073
+ 2308,
+ 2324
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 33
},
"end": {
- "line": 67,
+ "line": 79,
"column": 49
}
}
},
"prefix": true,
"range": [
- 2056,
- 2073
+ 2307,
+ 2324
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 32
},
"end": {
- "line": 67,
+ "line": 79,
"column": 49
}
}
},
"range": [
- 2035,
- 2073
+ 2286,
+ 2324
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 11
},
"end": {
- "line": 67,
+ "line": 79,
"column": 49
}
}
@@ -5561,48 +6291,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2088,
- 2095
+ 2339,
+ 2346
],
"loc": {
"start": {
- "line": 68,
+ "line": 80,
"column": 12
},
"end": {
- "line": 68,
+ "line": 80,
"column": 19
}
}
}
],
"range": [
- 2074,
- 2105
+ 2325,
+ 2356
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 50
},
"end": {
- "line": 69,
+ "line": 81,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2032,
- 2105
+ 2283,
+ 2356
],
"loc": {
"start": {
- "line": 67,
+ "line": 79,
"column": 8
},
"end": {
- "line": 69,
+ "line": 81,
"column": 9
}
}
@@ -5615,16 +6345,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2118,
- 2122
+ 2369,
+ 2373
],
"loc": {
"start": {
- "line": 71,
+ "line": 83,
"column": 11
},
"end": {
- "line": 71,
+ "line": 83,
"column": 15
}
}
@@ -5633,31 +6363,31 @@
"type": "Identifier",
"name": "onBeforeShowMsg",
"range": [
- 2123,
- 2138
+ 2374,
+ 2389
],
"loc": {
"start": {
- "line": 71,
+ "line": 83,
"column": 16
},
"end": {
- "line": 71,
+ "line": 83,
"column": 31
}
}
},
"range": [
- 2118,
- 2138
+ 2369,
+ 2389
],
"loc": {
"start": {
- "line": 71,
+ "line": 83,
"column": 11
},
"end": {
- "line": 71,
+ "line": 83,
"column": 31
}
}
@@ -5678,16 +6408,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2153,
- 2157
+ 2404,
+ 2408
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 12
},
"end": {
- "line": 72,
+ "line": 84,
"column": 16
}
}
@@ -5696,31 +6426,31 @@
"type": "Identifier",
"name": "onBeforeShowMsg",
"range": [
- 2158,
- 2173
+ 2409,
+ 2424
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 17
},
"end": {
- "line": 72,
+ "line": 84,
"column": 32
}
}
},
"range": [
- 2153,
- 2173
+ 2404,
+ 2424
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 12
},
"end": {
- "line": 72,
+ "line": 84,
"column": 32
}
}
@@ -5729,31 +6459,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2174,
- 2178
+ 2425,
+ 2429
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 33
},
"end": {
- "line": 72,
+ "line": 84,
"column": 37
}
}
},
"range": [
- 2153,
- 2178
+ 2404,
+ 2429
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 12
},
"end": {
- "line": 72,
+ "line": 84,
"column": 37
}
}
@@ -5764,16 +6494,16 @@
"value": null,
"raw": "null",
"range": [
- 2179,
- 2183
+ 2430,
+ 2434
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 38
},
"end": {
- "line": 72,
+ "line": 84,
"column": 42
}
}
@@ -5784,16 +6514,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2185,
- 2189
+ 2436,
+ 2440
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 44
},
"end": {
- "line": 72,
+ "line": 84,
"column": 48
}
}
@@ -5802,31 +6532,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2190,
- 2192
+ 2441,
+ 2443
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 49
},
"end": {
- "line": 72,
+ "line": 84,
"column": 51
}
}
},
"range": [
- 2185,
- 2192
+ 2436,
+ 2443
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 44
},
"end": {
- "line": 72,
+ "line": 84,
"column": 51
}
}
@@ -5834,79 +6564,79 @@
{
"type": "ThisExpression",
"range": [
- 2194,
- 2198
+ 2445,
+ 2449
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 53
},
"end": {
- "line": 72,
+ "line": 84,
"column": 57
}
}
}
],
"range": [
- 2153,
- 2199
+ 2404,
+ 2450
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 12
},
"end": {
- "line": 72,
+ "line": 84,
"column": 58
}
}
},
"range": [
- 2153,
- 2200
+ 2404,
+ 2451
],
"loc": {
"start": {
- "line": 72,
+ "line": 84,
"column": 12
},
"end": {
- "line": 72,
+ "line": 84,
"column": 59
}
}
}
],
"range": [
- 2139,
- 2210
+ 2390,
+ 2461
],
"loc": {
"start": {
- "line": 71,
+ "line": 83,
"column": 32
},
"end": {
- "line": 73,
+ "line": 85,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2115,
- 2210
+ 2366,
+ 2461
],
"loc": {
"start": {
- "line": 71,
+ "line": 83,
"column": 8
},
"end": {
- "line": 73,
+ "line": 85,
"column": 9
}
}
@@ -5921,16 +6651,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2220,
- 2224
+ 2471,
+ 2475
],
"loc": {
"start": {
- "line": 75,
+ "line": 87,
"column": 8
},
"end": {
- "line": 75,
+ "line": 87,
"column": 12
}
}
@@ -5939,62 +6669,62 @@
"type": "Identifier",
"name": "setWidth",
"range": [
- 2225,
- 2233
+ 2476,
+ 2484
],
"loc": {
"start": {
- "line": 75,
+ "line": 87,
"column": 13
},
"end": {
- "line": 75,
+ "line": 87,
"column": 21
}
}
},
"range": [
- 2220,
- 2233
+ 2471,
+ 2484
],
"loc": {
"start": {
- "line": 75,
+ "line": 87,
"column": 8
},
"end": {
- "line": 75,
+ "line": 87,
"column": 21
}
}
},
"arguments": [],
"range": [
- 2220,
- 2235
+ 2471,
+ 2486
],
"loc": {
"start": {
- "line": 75,
+ "line": 87,
"column": 8
},
"end": {
- "line": 75,
+ "line": 87,
"column": 23
}
}
},
"range": [
- 2220,
- 2236
+ 2471,
+ 2487
],
"loc": {
"start": {
- "line": 75,
+ "line": 87,
"column": 8
},
"end": {
- "line": 75,
+ "line": 87,
"column": 24
}
}
@@ -6016,16 +6746,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2245,
- 2249
+ 2496,
+ 2500
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 12
}
}
@@ -6034,31 +6764,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 2250,
- 2254
+ 2501,
+ 2505
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 13
},
"end": {
- "line": 76,
+ "line": 88,
"column": 17
}
}
},
"range": [
- 2245,
- 2254
+ 2496,
+ 2505
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 17
}
}
@@ -6067,31 +6797,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2255,
- 2260
+ 2506,
+ 2511
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 18
},
"end": {
- "line": 76,
+ "line": 88,
"column": 23
}
}
},
"range": [
- 2245,
- 2260
+ 2496,
+ 2511
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 23
}
}
@@ -6100,31 +6830,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 2261,
- 2268
+ 2512,
+ 2519
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 24
},
"end": {
- "line": 76,
+ "line": 88,
"column": 31
}
}
},
"range": [
- 2245,
- 2268
+ 2496,
+ 2519
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 31
}
}
@@ -6134,46 +6864,46 @@
"value": "block",
"raw": "'block'",
"range": [
- 2271,
- 2278
+ 2522,
+ 2529
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 34
},
"end": {
- "line": 76,
+ "line": 88,
"column": 41
}
}
},
"range": [
- 2245,
- 2278
+ 2496,
+ 2529
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 41
}
}
},
"range": [
- 2245,
- 2279
+ 2496,
+ 2530
],
"loc": {
"start": {
- "line": 76,
+ "line": 88,
"column": 8
},
"end": {
- "line": 76,
+ "line": 88,
"column": 42
}
}
@@ -6186,16 +6916,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2292,
- 2296
+ 2543,
+ 2547
],
"loc": {
"start": {
- "line": 78,
+ "line": 90,
"column": 11
},
"end": {
- "line": 78,
+ "line": 90,
"column": 15
}
}
@@ -6204,31 +6934,31 @@
"type": "Identifier",
"name": "onAfterShowMsg",
"range": [
- 2297,
- 2311
+ 2548,
+ 2562
],
"loc": {
"start": {
- "line": 78,
+ "line": 90,
"column": 16
},
"end": {
- "line": 78,
+ "line": 90,
"column": 30
}
}
},
"range": [
- 2292,
- 2311
+ 2543,
+ 2562
],
"loc": {
"start": {
- "line": 78,
+ "line": 90,
"column": 11
},
"end": {
- "line": 78,
+ "line": 90,
"column": 30
}
}
@@ -6249,16 +6979,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2326,
- 2330
+ 2577,
+ 2581
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 12
},
"end": {
- "line": 79,
+ "line": 91,
"column": 16
}
}
@@ -6267,31 +6997,31 @@
"type": "Identifier",
"name": "onAfterShowMsg",
"range": [
- 2331,
- 2345
+ 2582,
+ 2596
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 17
},
"end": {
- "line": 79,
+ "line": 91,
"column": 31
}
}
},
"range": [
- 2326,
- 2345
+ 2577,
+ 2596
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 12
},
"end": {
- "line": 79,
+ "line": 91,
"column": 31
}
}
@@ -6300,31 +7030,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2346,
- 2350
+ 2597,
+ 2601
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 32
},
"end": {
- "line": 79,
+ "line": 91,
"column": 36
}
}
},
"range": [
- 2326,
- 2350
+ 2577,
+ 2601
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 12
},
"end": {
- "line": 79,
+ "line": 91,
"column": 36
}
}
@@ -6335,16 +7065,16 @@
"value": null,
"raw": "null",
"range": [
- 2351,
- 2355
+ 2602,
+ 2606
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 37
},
"end": {
- "line": 79,
+ "line": 91,
"column": 41
}
}
@@ -6355,16 +7085,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2357,
- 2361
+ 2608,
+ 2612
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 43
},
"end": {
- "line": 79,
+ "line": 91,
"column": 47
}
}
@@ -6373,31 +7103,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2362,
- 2364
+ 2613,
+ 2615
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 48
},
"end": {
- "line": 79,
+ "line": 91,
"column": 50
}
}
},
"range": [
- 2357,
- 2364
+ 2608,
+ 2615
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 43
},
"end": {
- "line": 79,
+ "line": 91,
"column": 50
}
}
@@ -6405,95 +7135,95 @@
{
"type": "ThisExpression",
"range": [
- 2366,
- 2370
+ 2617,
+ 2621
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 52
},
"end": {
- "line": 79,
+ "line": 91,
"column": 56
}
}
}
],
"range": [
- 2326,
- 2371
+ 2577,
+ 2622
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 12
},
"end": {
- "line": 79,
+ "line": 91,
"column": 57
}
}
},
"range": [
- 2326,
- 2372
+ 2577,
+ 2623
],
"loc": {
"start": {
- "line": 79,
+ "line": 91,
"column": 12
},
"end": {
- "line": 79,
+ "line": 91,
"column": 58
}
}
}
],
"range": [
- 2312,
- 2382
+ 2563,
+ 2633
],
"loc": {
"start": {
- "line": 78,
+ "line": 90,
"column": 31
},
"end": {
- "line": 80,
+ "line": 92,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2289,
- 2382
+ 2540,
+ 2633
],
"loc": {
"start": {
- "line": 78,
+ "line": 90,
"column": 8
},
"end": {
- "line": 80,
+ "line": 92,
"column": 9
}
}
}
],
"range": [
- 2022,
- 2388
+ 2273,
+ 2639
],
"loc": {
"start": {
- "line": 66,
+ "line": 78,
"column": 10
},
"end": {
- "line": 81,
+ "line": 93,
"column": 5
}
}
@@ -6501,16 +7231,16 @@
"generator": false,
"expression": false,
"range": [
- 2020,
- 2388
+ 2271,
+ 2639
],
"loc": {
"start": {
- "line": 66,
+ "line": 78,
"column": 8
},
"end": {
- "line": 81,
+ "line": 93,
"column": 5
}
}
@@ -6518,16 +7248,16 @@
"kind": "method",
"computed": false,
"range": [
- 2016,
- 2388
+ 2267,
+ 2639
],
"loc": {
"start": {
- "line": 66,
+ "line": 78,
"column": 4
},
"end": {
- "line": 81,
+ "line": 93,
"column": 5
}
},
@@ -6539,16 +7269,16 @@
"type": "Identifier",
"name": "hide",
"range": [
- 2394,
- 2398
+ 2645,
+ 2649
],
"loc": {
"start": {
- "line": 83,
+ "line": 95,
"column": 4
},
"end": {
- "line": 83,
+ "line": 95,
"column": 8
}
}
@@ -6574,16 +7304,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2414,
- 2418
+ 2665,
+ 2669
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 12
},
"end": {
- "line": 84,
+ "line": 96,
"column": 16
}
}
@@ -6592,47 +7322,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2419,
- 2430
+ 2670,
+ 2681
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 17
},
"end": {
- "line": 84,
+ "line": 96,
"column": 28
}
}
},
"range": [
- 2414,
- 2430
+ 2665,
+ 2681
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 12
},
"end": {
- "line": 84,
+ "line": 96,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2413,
- 2430
+ 2664,
+ 2681
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 11
},
"end": {
- "line": 84,
+ "line": 96,
"column": 28
}
}
@@ -6648,16 +7378,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2435,
- 2439
+ 2686,
+ 2690
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 33
},
"end": {
- "line": 84,
+ "line": 96,
"column": 37
}
}
@@ -6666,78 +7396,78 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 2440,
- 2449
+ 2691,
+ 2700
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 38
},
"end": {
- "line": 84,
+ "line": 96,
"column": 47
}
}
},
"range": [
- 2435,
- 2449
+ 2686,
+ 2700
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 33
},
"end": {
- "line": 84,
+ "line": 96,
"column": 47
}
}
},
"arguments": [],
"range": [
- 2435,
- 2451
+ 2686,
+ 2702
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 33
},
"end": {
- "line": 84,
+ "line": 96,
"column": 49
}
}
},
"prefix": true,
"range": [
- 2434,
- 2451
+ 2685,
+ 2702
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 32
},
"end": {
- "line": 84,
+ "line": 96,
"column": 49
}
}
},
"range": [
- 2413,
- 2451
+ 2664,
+ 2702
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 11
},
"end": {
- "line": 84,
+ "line": 96,
"column": 49
}
}
@@ -6749,48 +7479,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2466,
- 2473
+ 2717,
+ 2724
],
"loc": {
"start": {
- "line": 85,
+ "line": 97,
"column": 12
},
"end": {
- "line": 85,
+ "line": 97,
"column": 19
}
}
}
],
"range": [
- 2452,
- 2483
+ 2703,
+ 2734
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 50
},
"end": {
- "line": 86,
+ "line": 98,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2410,
- 2483
+ 2661,
+ 2734
],
"loc": {
"start": {
- "line": 84,
+ "line": 96,
"column": 8
},
"end": {
- "line": 86,
+ "line": 98,
"column": 9
}
}
@@ -6803,16 +7533,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2496,
- 2500
+ 2747,
+ 2751
],
"loc": {
"start": {
- "line": 88,
+ "line": 100,
"column": 11
},
"end": {
- "line": 88,
+ "line": 100,
"column": 15
}
}
@@ -6821,31 +7551,31 @@
"type": "Identifier",
"name": "onBeforeHideMsg",
"range": [
- 2501,
- 2516
+ 2752,
+ 2767
],
"loc": {
"start": {
- "line": 88,
+ "line": 100,
"column": 16
},
"end": {
- "line": 88,
+ "line": 100,
"column": 31
}
}
},
"range": [
- 2496,
- 2516
+ 2747,
+ 2767
],
"loc": {
"start": {
- "line": 88,
+ "line": 100,
"column": 11
},
"end": {
- "line": 88,
+ "line": 100,
"column": 31
}
}
@@ -6866,16 +7596,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2531,
- 2535
+ 2782,
+ 2786
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 12
},
"end": {
- "line": 89,
+ "line": 101,
"column": 16
}
}
@@ -6884,31 +7614,31 @@
"type": "Identifier",
"name": "onBeforeHideMsg",
"range": [
- 2536,
- 2551
+ 2787,
+ 2802
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 17
},
"end": {
- "line": 89,
+ "line": 101,
"column": 32
}
}
},
"range": [
- 2531,
- 2551
+ 2782,
+ 2802
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 12
},
"end": {
- "line": 89,
+ "line": 101,
"column": 32
}
}
@@ -6917,31 +7647,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2552,
- 2556
+ 2803,
+ 2807
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 33
},
"end": {
- "line": 89,
+ "line": 101,
"column": 37
}
}
},
"range": [
- 2531,
- 2556
+ 2782,
+ 2807
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 12
},
"end": {
- "line": 89,
+ "line": 101,
"column": 37
}
}
@@ -6952,16 +7682,16 @@
"value": null,
"raw": "null",
"range": [
- 2557,
- 2561
+ 2808,
+ 2812
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 38
},
"end": {
- "line": 89,
+ "line": 101,
"column": 42
}
}
@@ -6972,16 +7702,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2563,
- 2567
+ 2814,
+ 2818
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 44
},
"end": {
- "line": 89,
+ "line": 101,
"column": 48
}
}
@@ -6990,31 +7720,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2568,
- 2570
+ 2819,
+ 2821
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 49
},
"end": {
- "line": 89,
+ "line": 101,
"column": 51
}
}
},
"range": [
- 2563,
- 2570
+ 2814,
+ 2821
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 44
},
"end": {
- "line": 89,
+ "line": 101,
"column": 51
}
}
@@ -7022,79 +7752,79 @@
{
"type": "ThisExpression",
"range": [
- 2572,
- 2576
+ 2823,
+ 2827
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 53
},
"end": {
- "line": 89,
+ "line": 101,
"column": 57
}
}
}
],
"range": [
- 2531,
- 2577
+ 2782,
+ 2828
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 12
},
"end": {
- "line": 89,
+ "line": 101,
"column": 58
}
}
},
"range": [
- 2531,
- 2578
+ 2782,
+ 2829
],
"loc": {
"start": {
- "line": 89,
+ "line": 101,
"column": 12
},
"end": {
- "line": 89,
+ "line": 101,
"column": 59
}
}
}
],
"range": [
- 2517,
- 2588
+ 2768,
+ 2839
],
"loc": {
"start": {
- "line": 88,
+ "line": 100,
"column": 32
},
"end": {
- "line": 90,
+ "line": 102,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2493,
- 2588
+ 2744,
+ 2839
],
"loc": {
"start": {
- "line": 88,
+ "line": 100,
"column": 8
},
"end": {
- "line": 90,
+ "line": 102,
"column": 9
}
}
@@ -7116,16 +7846,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2598,
- 2602
+ 2849,
+ 2853
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 12
}
}
@@ -7134,31 +7864,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 2603,
- 2607
+ 2854,
+ 2858
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 13
},
"end": {
- "line": 92,
+ "line": 104,
"column": 17
}
}
},
"range": [
- 2598,
- 2607
+ 2849,
+ 2858
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 17
}
}
@@ -7167,31 +7897,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2608,
- 2613
+ 2859,
+ 2864
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 18
},
"end": {
- "line": 92,
+ "line": 104,
"column": 23
}
}
},
"range": [
- 2598,
- 2613
+ 2849,
+ 2864
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 23
}
}
@@ -7200,31 +7930,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 2614,
- 2621
+ 2865,
+ 2872
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 24
},
"end": {
- "line": 92,
+ "line": 104,
"column": 31
}
}
},
"range": [
- 2598,
- 2621
+ 2849,
+ 2872
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 31
}
}
@@ -7234,46 +7964,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 2624,
- 2630
+ 2875,
+ 2881
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 34
},
"end": {
- "line": 92,
+ "line": 104,
"column": 40
}
}
},
"range": [
- 2598,
- 2630
+ 2849,
+ 2881
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 40
}
}
},
"range": [
- 2598,
- 2631
+ 2849,
+ 2882
],
"loc": {
"start": {
- "line": 92,
+ "line": 104,
"column": 8
},
"end": {
- "line": 92,
+ "line": 104,
"column": 41
}
}
@@ -7286,16 +8016,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2644,
- 2648
+ 2895,
+ 2899
],
"loc": {
"start": {
- "line": 94,
+ "line": 106,
"column": 11
},
"end": {
- "line": 94,
+ "line": 106,
"column": 15
}
}
@@ -7304,31 +8034,31 @@
"type": "Identifier",
"name": "onBeforeHideMsg",
"range": [
- 2649,
- 2664
+ 2900,
+ 2915
],
"loc": {
"start": {
- "line": 94,
+ "line": 106,
"column": 16
},
"end": {
- "line": 94,
+ "line": 106,
"column": 31
}
}
},
"range": [
- 2644,
- 2664
+ 2895,
+ 2915
],
"loc": {
"start": {
- "line": 94,
+ "line": 106,
"column": 11
},
"end": {
- "line": 94,
+ "line": 106,
"column": 31
}
}
@@ -7349,16 +8079,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2679,
- 2683
+ 2930,
+ 2934
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 12
},
"end": {
- "line": 95,
+ "line": 107,
"column": 16
}
}
@@ -7367,31 +8097,31 @@
"type": "Identifier",
"name": "onBeforeHideMsg",
"range": [
- 2684,
- 2699
+ 2935,
+ 2950
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 17
},
"end": {
- "line": 95,
+ "line": 107,
"column": 32
}
}
},
"range": [
- 2679,
- 2699
+ 2930,
+ 2950
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 12
},
"end": {
- "line": 95,
+ "line": 107,
"column": 32
}
}
@@ -7400,31 +8130,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2700,
- 2704
+ 2951,
+ 2955
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 33
},
"end": {
- "line": 95,
+ "line": 107,
"column": 37
}
}
},
"range": [
- 2679,
- 2704
+ 2930,
+ 2955
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 12
},
"end": {
- "line": 95,
+ "line": 107,
"column": 37
}
}
@@ -7435,16 +8165,16 @@
"value": null,
"raw": "null",
"range": [
- 2705,
- 2709
+ 2956,
+ 2960
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 38
},
"end": {
- "line": 95,
+ "line": 107,
"column": 42
}
}
@@ -7455,16 +8185,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2711,
- 2715
+ 2962,
+ 2966
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 44
},
"end": {
- "line": 95,
+ "line": 107,
"column": 48
}
}
@@ -7473,31 +8203,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2716,
- 2718
+ 2967,
+ 2969
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 49
},
"end": {
- "line": 95,
+ "line": 107,
"column": 51
}
}
},
"range": [
- 2711,
- 2718
+ 2962,
+ 2969
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 44
},
"end": {
- "line": 95,
+ "line": 107,
"column": 51
}
}
@@ -7505,95 +8235,95 @@
{
"type": "ThisExpression",
"range": [
- 2720,
- 2724
+ 2971,
+ 2975
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 53
},
"end": {
- "line": 95,
+ "line": 107,
"column": 57
}
}
}
],
"range": [
- 2679,
- 2725
+ 2930,
+ 2976
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 12
},
"end": {
- "line": 95,
+ "line": 107,
"column": 58
}
}
},
"range": [
- 2679,
- 2726
+ 2930,
+ 2977
],
"loc": {
"start": {
- "line": 95,
+ "line": 107,
"column": 12
},
"end": {
- "line": 95,
+ "line": 107,
"column": 59
}
}
}
],
"range": [
- 2665,
- 2736
+ 2916,
+ 2987
],
"loc": {
"start": {
- "line": 94,
+ "line": 106,
"column": 32
},
"end": {
- "line": 96,
+ "line": 108,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2641,
- 2736
+ 2892,
+ 2987
],
"loc": {
"start": {
- "line": 94,
+ "line": 106,
"column": 8
},
"end": {
- "line": 96,
+ "line": 108,
"column": 9
}
}
}
],
"range": [
- 2400,
- 2742
+ 2651,
+ 2993
],
"loc": {
"start": {
- "line": 83,
+ "line": 95,
"column": 10
},
"end": {
- "line": 97,
+ "line": 109,
"column": 5
}
}
@@ -7601,16 +8331,16 @@
"generator": false,
"expression": false,
"range": [
- 2398,
- 2742
+ 2649,
+ 2993
],
"loc": {
"start": {
- "line": 83,
+ "line": 95,
"column": 8
},
"end": {
- "line": 97,
+ "line": 109,
"column": 5
}
}
@@ -7618,16 +8348,16 @@
"kind": "method",
"computed": false,
"range": [
- 2394,
- 2742
+ 2645,
+ 2993
],
"loc": {
"start": {
- "line": 83,
+ "line": 95,
"column": 4
},
"end": {
- "line": 97,
+ "line": 109,
"column": 5
}
},
@@ -7639,16 +8369,16 @@
"type": "Identifier",
"name": "setWidth",
"range": [
- 2748,
- 2756
+ 2999,
+ 3007
],
"loc": {
"start": {
- "line": 99,
+ "line": 111,
"column": 4
},
"end": {
- "line": 99,
+ "line": 111,
"column": 12
}
}
@@ -7677,16 +8407,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2772,
- 2776
+ 3023,
+ 3027
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 12
},
"end": {
- "line": 100,
+ "line": 112,
"column": 16
}
}
@@ -7695,47 +8425,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2777,
- 2788
+ 3028,
+ 3039
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 17
},
"end": {
- "line": 100,
+ "line": 112,
"column": 28
}
}
},
"range": [
- 2772,
- 2788
+ 3023,
+ 3039
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 12
},
"end": {
- "line": 100,
+ "line": 112,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2771,
- 2788
+ 3022,
+ 3039
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 11
},
"end": {
- "line": 100,
+ "line": 112,
"column": 28
}
}
@@ -7746,16 +8476,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2792,
- 2796
+ 3043,
+ 3047
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 32
},
"end": {
- "line": 100,
+ "line": 112,
"column": 36
}
}
@@ -7764,46 +8494,46 @@
"type": "Identifier",
"name": "isExternal",
"range": [
- 2797,
- 2807
+ 3048,
+ 3058
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 37
},
"end": {
- "line": 100,
+ "line": 112,
"column": 47
}
}
},
"range": [
- 2792,
- 2807
+ 3043,
+ 3058
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 32
},
"end": {
- "line": 100,
+ "line": 112,
"column": 47
}
}
},
"range": [
- 2771,
- 2807
+ 3022,
+ 3058
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 11
},
"end": {
- "line": 100,
+ "line": 112,
"column": 47
}
}
@@ -7819,16 +8549,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2812,
- 2816
+ 3063,
+ 3067
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 52
},
"end": {
- "line": 100,
+ "line": 112,
"column": 56
}
}
@@ -7837,78 +8567,78 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 2817,
- 2826
+ 3068,
+ 3077
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 57
},
"end": {
- "line": 100,
+ "line": 112,
"column": 66
}
}
},
"range": [
- 2812,
- 2826
+ 3063,
+ 3077
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 52
},
"end": {
- "line": 100,
+ "line": 112,
"column": 66
}
}
},
"arguments": [],
"range": [
- 2812,
- 2828
+ 3063,
+ 3079
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 52
},
"end": {
- "line": 100,
+ "line": 112,
"column": 68
}
}
},
"prefix": true,
"range": [
- 2811,
- 2828
+ 3062,
+ 3079
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 51
},
"end": {
- "line": 100,
+ "line": 112,
"column": 68
}
}
},
"range": [
- 2771,
- 2828
+ 3022,
+ 3079
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 11
},
"end": {
- "line": 100,
+ "line": 112,
"column": 68
}
}
@@ -7920,48 +8650,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2843,
- 2850
+ 3094,
+ 3101
],
"loc": {
"start": {
- "line": 101,
+ "line": 113,
"column": 12
},
"end": {
- "line": 101,
+ "line": 113,
"column": 19
}
}
}
],
"range": [
- 2829,
- 2860
+ 3080,
+ 3111
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 69
},
"end": {
- "line": 102,
+ "line": 114,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2768,
- 2860
+ 3019,
+ 3111
],
"loc": {
"start": {
- "line": 100,
+ "line": 112,
"column": 8
},
"end": {
- "line": 102,
+ "line": 114,
"column": 9
}
}
@@ -7977,16 +8707,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2872,
- 2876
+ 3123,
+ 3127
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 11
},
"end": {
- "line": 103,
+ "line": 115,
"column": 15
}
}
@@ -7995,31 +8725,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2877,
- 2879
+ 3128,
+ 3130
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 16
},
"end": {
- "line": 103,
+ "line": 115,
"column": 18
}
}
},
"range": [
- 2872,
- 2879
+ 3123,
+ 3130
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 11
},
"end": {
- "line": 103,
+ "line": 115,
"column": 18
}
}
@@ -8028,31 +8758,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 2880,
- 2890
+ 3131,
+ 3141
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 19
},
"end": {
- "line": 103,
+ "line": 115,
"column": 29
}
}
},
"range": [
- 2872,
- 2890
+ 3123,
+ 3141
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 11
},
"end": {
- "line": 103,
+ "line": 115,
"column": 29
}
}
@@ -8069,16 +8799,16 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 2909,
- 2919
+ 3160,
+ 3170
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 16
},
"end": {
- "line": 104,
+ "line": 116,
"column": 26
}
}
@@ -8094,16 +8824,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2922,
- 2926
+ 3173,
+ 3177
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 29
},
"end": {
- "line": 104,
+ "line": 116,
"column": 33
}
}
@@ -8112,31 +8842,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2927,
- 2929
+ 3178,
+ 3180
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 34
},
"end": {
- "line": 104,
+ "line": 116,
"column": 36
}
}
},
"range": [
- 2922,
- 2929
+ 3173,
+ 3180
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 29
},
"end": {
- "line": 104,
+ "line": 116,
"column": 36
}
}
@@ -8145,31 +8875,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 2930,
- 2937
+ 3181,
+ 3188
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 37
},
"end": {
- "line": 104,
+ "line": 116,
"column": 44
}
}
},
"range": [
- 2922,
- 2937
+ 3173,
+ 3188
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 29
},
"end": {
- "line": 104,
+ "line": 116,
"column": 44
}
}
@@ -8180,47 +8910,47 @@
"value": "gridLayout",
"raw": "'gridLayout'",
"range": [
- 2938,
- 2950
+ 3189,
+ 3201
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 45
},
"end": {
- "line": 104,
+ "line": 116,
"column": 57
}
}
}
],
"range": [
- 2922,
- 2951
+ 3173,
+ 3202
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 29
},
"end": {
- "line": 104,
+ "line": 116,
"column": 58
}
}
},
"range": [
- 2909,
- 2951
+ 3160,
+ 3202
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 16
},
"end": {
- "line": 104,
+ "line": 116,
"column": 58
}
}
@@ -8228,16 +8958,16 @@
],
"kind": "let",
"range": [
- 2905,
- 2952
+ 3156,
+ 3203
],
"loc": {
"start": {
- "line": 104,
+ "line": 116,
"column": 12
},
"end": {
- "line": 104,
+ "line": 116,
"column": 59
}
}
@@ -8259,16 +8989,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2965,
- 2969
+ 3216,
+ 3220
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 16
}
}
@@ -8277,31 +9007,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 2970,
- 2974
+ 3221,
+ 3225
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 17
},
"end": {
- "line": 105,
+ "line": 117,
"column": 21
}
}
},
"range": [
- 2965,
- 2974
+ 3216,
+ 3225
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 21
}
}
@@ -8310,31 +9040,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 2975,
- 2980
+ 3226,
+ 3231
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 22
},
"end": {
- "line": 105,
+ "line": 117,
"column": 27
}
}
},
"range": [
- 2965,
- 2980
+ 3216,
+ 3231
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 27
}
}
@@ -8343,31 +9073,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 2981,
- 2986
+ 3232,
+ 3237
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 28
},
"end": {
- "line": 105,
+ "line": 117,
"column": 33
}
}
},
"range": [
- 2965,
- 2986
+ 3216,
+ 3237
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 33
}
}
@@ -8385,16 +9115,16 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 2989,
- 2999
+ 3240,
+ 3250
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 36
},
"end": {
- "line": 105,
+ "line": 117,
"column": 46
}
}
@@ -8403,31 +9133,31 @@
"type": "Identifier",
"name": "tblCont",
"range": [
- 3000,
- 3007
+ 3251,
+ 3258
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 47
},
"end": {
- "line": 105,
+ "line": 117,
"column": 54
}
}
},
"range": [
- 2989,
- 3007
+ 3240,
+ 3258
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 36
},
"end": {
- "line": 105,
+ "line": 117,
"column": 54
}
}
@@ -8436,31 +9166,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 3008,
- 3019
+ 3259,
+ 3270
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 55
},
"end": {
- "line": 105,
+ "line": 117,
"column": 66
}
}
},
"range": [
- 2989,
- 3019
+ 3240,
+ 3270
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 36
},
"end": {
- "line": 105,
+ "line": 117,
"column": 66
}
}
@@ -8470,77 +9200,77 @@
"value": "px",
"raw": "'px'",
"range": [
- 3022,
- 3026
+ 3273,
+ 3277
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 69
},
"end": {
- "line": 105,
+ "line": 117,
"column": 73
}
}
},
"range": [
- 2989,
- 3026
+ 3240,
+ 3277
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 36
},
"end": {
- "line": 105,
+ "line": 117,
"column": 73
}
}
},
"range": [
- 2965,
- 3026
+ 3216,
+ 3277
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 73
}
}
},
"range": [
- 2965,
- 3027
+ 3216,
+ 3278
],
"loc": {
"start": {
- "line": 105,
+ "line": 117,
"column": 12
},
"end": {
- "line": 105,
+ "line": 117,
"column": 74
}
}
}
],
"range": [
- 2891,
- 3037
+ 3142,
+ 3288
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 30
},
"end": {
- "line": 106,
+ "line": 118,
"column": 9
}
}
@@ -8565,16 +9295,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3057,
- 3061
+ 3308,
+ 3312
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 16
}
}
@@ -8583,31 +9313,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 3062,
- 3066
+ 3313,
+ 3317
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 17
},
"end": {
- "line": 107,
+ "line": 119,
"column": 21
}
}
},
"range": [
- 3057,
- 3066
+ 3308,
+ 3317
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 21
}
}
@@ -8616,31 +9346,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 3067,
- 3072
+ 3318,
+ 3323
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 22
},
"end": {
- "line": 107,
+ "line": 119,
"column": 27
}
}
},
"range": [
- 3057,
- 3072
+ 3308,
+ 3323
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 27
}
}
@@ -8649,31 +9379,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 3073,
- 3078
+ 3324,
+ 3329
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 28
},
"end": {
- "line": 107,
+ "line": 119,
"column": 33
}
}
},
"range": [
- 3057,
- 3078
+ 3308,
+ 3329
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 33
}
}
@@ -8693,16 +9423,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3081,
- 3085
+ 3332,
+ 3336
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 36
},
"end": {
- "line": 107,
+ "line": 119,
"column": 40
}
}
@@ -8711,31 +9441,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3086,
- 3088
+ 3337,
+ 3339
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 41
},
"end": {
- "line": 107,
+ "line": 119,
"column": 43
}
}
},
"range": [
- 3081,
- 3088
+ 3332,
+ 3339
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 36
},
"end": {
- "line": 107,
+ "line": 119,
"column": 43
}
}
@@ -8744,31 +9474,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 3089,
- 3092
+ 3340,
+ 3343
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 44
},
"end": {
- "line": 107,
+ "line": 119,
"column": 47
}
}
},
"range": [
- 3081,
- 3092
+ 3332,
+ 3343
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 36
},
"end": {
- "line": 107,
+ "line": 119,
"column": 47
}
}
@@ -8777,31 +9507,31 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 3093,
- 3104
+ 3344,
+ 3355
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 48
},
"end": {
- "line": 107,
+ "line": 119,
"column": 59
}
}
},
"range": [
- 3081,
- 3104
+ 3332,
+ 3355
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 36
},
"end": {
- "line": 107,
+ "line": 119,
"column": 59
}
}
@@ -8811,108 +9541,108 @@
"value": "px",
"raw": "'px'",
"range": [
- 3107,
- 3111
+ 3358,
+ 3362
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 62
},
"end": {
- "line": 107,
+ "line": 119,
"column": 66
}
}
},
"range": [
- 3081,
- 3111
+ 3332,
+ 3362
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 36
},
"end": {
- "line": 107,
+ "line": 119,
"column": 66
}
}
},
"range": [
- 3057,
- 3111
+ 3308,
+ 3362
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 66
}
}
},
"range": [
- 3057,
- 3112
+ 3308,
+ 3363
],
"loc": {
"start": {
- "line": 107,
+ "line": 119,
"column": 12
},
"end": {
- "line": 107,
+ "line": 119,
"column": 67
}
}
}
],
"range": [
- 3043,
- 3122
+ 3294,
+ 3373
],
"loc": {
"start": {
- "line": 106,
+ "line": 118,
"column": 15
},
"end": {
- "line": 108,
+ "line": 120,
"column": 9
}
}
},
"range": [
- 2869,
- 3122
+ 3120,
+ 3373
],
"loc": {
"start": {
- "line": 103,
+ "line": 115,
"column": 8
},
"end": {
- "line": 108,
+ "line": 120,
"column": 9
}
}
}
],
"range": [
- 2758,
- 3129
+ 3009,
+ 3380
],
"loc": {
"start": {
- "line": 99,
+ "line": 111,
"column": 14
},
"end": {
- "line": 110,
+ "line": 122,
"column": 5
}
}
@@ -8920,16 +9650,16 @@
"generator": false,
"expression": false,
"range": [
- 2756,
- 3129
+ 3007,
+ 3380
],
"loc": {
"start": {
- "line": 99,
+ "line": 111,
"column": 12
},
"end": {
- "line": 110,
+ "line": 122,
"column": 5
}
}
@@ -8937,16 +9667,16 @@
"kind": "method",
"computed": false,
"range": [
- 2748,
- 3129
+ 2999,
+ 3380
],
"loc": {
"start": {
- "line": 99,
+ "line": 111,
"column": 4
},
"end": {
- "line": 110,
+ "line": 122,
"column": 5
}
},
@@ -8958,16 +9688,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 3135,
- 3142
+ 3386,
+ 3393
],
"loc": {
"start": {
- "line": 112,
+ "line": 124,
"column": 4
},
"end": {
- "line": 112,
+ "line": 124,
"column": 11
}
}
@@ -8990,16 +9720,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3158,
- 3162
+ 3409,
+ 3413
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 12
},
"end": {
- "line": 113,
+ "line": 125,
"column": 16
}
}
@@ -9008,47 +9738,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 3163,
- 3174
+ 3414,
+ 3425
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 17
},
"end": {
- "line": 113,
+ "line": 125,
"column": 28
}
}
},
"range": [
- 3158,
- 3174
+ 3409,
+ 3425
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 12
},
"end": {
- "line": 113,
+ "line": 125,
"column": 28
}
}
},
"prefix": true,
"range": [
- 3157,
- 3174
+ 3408,
+ 3425
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 11
},
"end": {
- "line": 113,
+ "line": 125,
"column": 28
}
}
@@ -9060,48 +9790,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 3189,
- 3196
+ 3440,
+ 3447
],
"loc": {
"start": {
- "line": 114,
+ "line": 126,
"column": 12
},
"end": {
- "line": 114,
+ "line": 126,
"column": 19
}
}
}
],
"range": [
- 3175,
- 3206
+ 3426,
+ 3457
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 29
},
"end": {
- "line": 115,
+ "line": 127,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3154,
- 3206
+ 3405,
+ 3457
],
"loc": {
"start": {
- "line": 113,
+ "line": 125,
"column": 8
},
"end": {
- "line": 115,
+ "line": 127,
"column": 9
}
}
@@ -9117,16 +9847,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3215,
- 3218
+ 3466,
+ 3469
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 8
},
"end": {
- "line": 116,
+ "line": 128,
"column": 11
}
}
@@ -9135,31 +9865,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 3219,
- 3225
+ 3470,
+ 3476
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 12
},
"end": {
- "line": 116,
+ "line": 128,
"column": 18
}
}
},
"range": [
- 3215,
- 3225
+ 3466,
+ 3476
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 8
},
"end": {
- "line": 116,
+ "line": 128,
"column": 18
}
}
@@ -9171,16 +9901,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3226,
- 3230
+ 3477,
+ 3481
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 19
},
"end": {
- "line": 116,
+ "line": 128,
"column": 23
}
}
@@ -9189,62 +9919,62 @@
"type": "Identifier",
"name": "cont",
"range": [
- 3231,
- 3235
+ 3482,
+ 3486
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 24
},
"end": {
- "line": 116,
+ "line": 128,
"column": 28
}
}
},
"range": [
- 3226,
- 3235
+ 3477,
+ 3486
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 19
},
"end": {
- "line": 116,
+ "line": 128,
"column": 28
}
}
}
],
"range": [
- 3215,
- 3236
+ 3466,
+ 3487
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 8
},
"end": {
- "line": 116,
+ "line": 128,
"column": 29
}
}
},
"range": [
- 3215,
- 3237
+ 3466,
+ 3488
],
"loc": {
"start": {
- "line": 116,
+ "line": 128,
"column": 8
},
"end": {
- "line": 116,
+ "line": 128,
"column": 30
}
}
@@ -9260,16 +9990,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3246,
- 3250
+ 3497,
+ 3501
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 8
},
"end": {
- "line": 117,
+ "line": 129,
"column": 12
}
}
@@ -9278,31 +10008,31 @@
"type": "Identifier",
"name": "cont",
"range": [
- 3251,
- 3255
+ 3502,
+ 3506
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 13
},
"end": {
- "line": 117,
+ "line": 129,
"column": 17
}
}
},
"range": [
- 3246,
- 3255
+ 3497,
+ 3506
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 8
},
"end": {
- "line": 117,
+ "line": 129,
"column": 17
}
}
@@ -9312,49 +10042,344 @@
"value": null,
"raw": "null",
"range": [
- 3258,
- 3262
+ 3509,
+ 3513
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 20
},
"end": {
- "line": 117,
+ "line": 129,
"column": 24
}
}
},
"range": [
- 3246,
- 3262
+ 3497,
+ 3513
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 8
},
"end": {
- "line": 117,
+ "line": 129,
"column": 24
}
}
},
"range": [
- 3246,
- 3263
+ 3497,
+ 3514
],
"loc": {
"start": {
- "line": 117,
+ "line": 129,
"column": 8
},
"end": {
- "line": 117,
+ "line": 129,
"column": 25
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to after-filtering event",
+ "range": [
+ 3523,
+ 3562
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 47
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3571,
+ 3575
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3576,
+ 3583
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 13
+ },
+ "end": {
+ "line": 131,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3571,
+ 3583
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3584,
+ 3587
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 21
+ },
+ "end": {
+ "line": 131,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3571,
+ 3587
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 3589,
+ 3606
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 26
+ },
+ "end": {
+ "line": 131,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 3588,
+ 3607
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 25
+ },
+ "end": {
+ "line": 131,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3614,
+ 3618
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 51
+ },
+ "end": {
+ "line": 131,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toggle",
+ "range": [
+ 3619,
+ 3625
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 56
+ },
+ "end": {
+ "line": 131,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 3614,
+ 3625
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 51
+ },
+ "end": {
+ "line": 131,
+ "column": 62
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3614,
+ 3627
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 51
+ },
+ "end": {
+ "line": 131,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3609,
+ 3627
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 46
+ },
+ "end": {
+ "line": 131,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 3571,
+ 3628
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 3571,
+ 3629
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 66
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to after-filtering event",
+ "range": [
+ 3523,
+ 3562
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 47
+ }
+ }
+ }
+ ]
},
{
"type": "ExpressionStatement",
@@ -9367,16 +10392,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3272,
- 3276
+ 3639,
+ 3643
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 8
},
"end": {
- "line": 118,
+ "line": 133,
"column": 12
}
}
@@ -9385,31 +10410,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 3277,
- 3288
+ 3644,
+ 3655
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 13
},
"end": {
- "line": 118,
+ "line": 133,
"column": 24
}
}
},
"range": [
- 3272,
- 3288
+ 3639,
+ 3655
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 8
},
"end": {
- "line": 118,
+ "line": 133,
"column": 24
}
}
@@ -9419,62 +10444,62 @@
"value": false,
"raw": "false",
"range": [
- 3291,
- 3296
+ 3658,
+ 3663
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 27
},
"end": {
- "line": 118,
+ "line": 133,
"column": 32
}
}
},
"range": [
- 3272,
- 3296
+ 3639,
+ 3663
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 8
},
"end": {
- "line": 118,
+ "line": 133,
"column": 32
}
}
},
"range": [
- 3272,
- 3297
+ 3639,
+ 3664
],
"loc": {
"start": {
- "line": 118,
+ "line": 133,
"column": 8
},
"end": {
- "line": 118,
+ "line": 133,
"column": 33
}
}
}
],
"range": [
- 3144,
- 3303
+ 3395,
+ 3670
],
"loc": {
"start": {
- "line": 112,
+ "line": 124,
"column": 13
},
"end": {
- "line": 119,
+ "line": 134,
"column": 5
}
}
@@ -9482,16 +10507,16 @@
"generator": false,
"expression": false,
"range": [
- 3142,
- 3303
+ 3393,
+ 3670
],
"loc": {
"start": {
- "line": 112,
+ "line": 124,
"column": 11
},
"end": {
- "line": 119,
+ "line": 134,
"column": 5
}
}
@@ -9499,16 +10524,16 @@
"kind": "method",
"computed": false,
"range": [
- 3135,
- 3303
+ 3386,
+ 3670
],
"loc": {
"start": {
- "line": 112,
+ "line": 124,
"column": 4
},
"end": {
- "line": 119,
+ "line": 134,
"column": 5
}
},
@@ -9517,7 +10542,7 @@
],
"range": [
130,
- 3305
+ 3672
],
"loc": {
"start": {
@@ -9525,14 +10550,14 @@
"column": 38
},
"end": {
- "line": 120,
+ "line": 135,
"column": 1
}
}
},
"range": [
99,
- 3305
+ 3672
],
"loc": {
"start": {
@@ -9540,7 +10565,7 @@
"column": 7
},
"end": {
- "line": 120,
+ "line": 135,
"column": 1
}
},
@@ -9551,7 +10576,7 @@
"source": null,
"range": [
92,
- 3305
+ 3672
],
"loc": {
"start": {
@@ -9559,7 +10584,7 @@
"column": 0
},
"end": {
- "line": 120,
+ "line": 135,
"column": 1
}
}
@@ -9568,7 +10593,7 @@
"sourceType": "module",
"range": [
0,
- 3305
+ 3672
],
"loc": {
"start": {
@@ -9576,7 +10601,7 @@
"column": 0
},
"end": {
- "line": 120,
+ "line": 135,
"column": 1
}
},
@@ -9706,6 +10731,42 @@
"column": 19
}
}
+ },
+ {
+ "type": "Line",
+ "value": " subscribe to after-filtering event",
+ "range": [
+ 1960,
+ 1997
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " unsubscribe to after-filtering event",
+ "range": [
+ 3523,
+ 3562
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 47
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/paging.js.json b/docs/ast/source/src/modules/paging.js.json
index fff3c78e..ea9fef80 100644
--- a/docs/ast/source/src/modules/paging.js.json
+++ b/docs/ast/source/src/modules/paging.js.json
@@ -10360,10 +10360,11 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "Identifier",
+ "name": "tf",
"range": [
5371,
- 5375
+ 5373
],
"loc": {
"start": {
@@ -10372,7 +10373,7 @@
},
"end": {
"line": 123,
- "column": 28
+ "column": 26
}
}
},
@@ -10380,23 +10381,23 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 5376,
- 5382
+ 5374,
+ 5380
],
"loc": {
"start": {
"line": 123,
- "column": 29
+ "column": 27
},
"end": {
"line": 123,
- "column": 35
+ "column": 33
}
}
},
"range": [
5371,
- 5382
+ 5380
],
"loc": {
"start": {
@@ -10405,13 +10406,13 @@
},
"end": {
"line": 123,
- "column": 35
+ "column": 33
}
}
},
"range": [
5359,
- 5382
+ 5380
],
"loc": {
"start": {
@@ -10420,7 +10421,7 @@
},
"end": {
"line": 123,
- "column": 35
+ "column": 33
}
}
}
@@ -10428,7 +10429,7 @@
"kind": "var",
"range": [
5355,
- 5383
+ 5381
],
"loc": {
"start": {
@@ -10437,7 +10438,7 @@
},
"end": {
"line": 123,
- "column": 36
+ "column": 34
}
}
},
@@ -10450,8 +10451,8 @@
"type": "Identifier",
"name": "nrows",
"range": [
- 5396,
- 5401
+ 5394,
+ 5399
],
"loc": {
"start": {
@@ -10468,10 +10469,11 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "Identifier",
+ "name": "tf",
"range": [
- 5404,
- 5408
+ 5402,
+ 5404
],
"loc": {
"start": {
@@ -10480,7 +10482,7 @@
},
"end": {
"line": 124,
- "column": 24
+ "column": 22
}
}
},
@@ -10488,23 +10490,23 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 5409,
- 5415
+ 5405,
+ 5411
],
"loc": {
"start": {
"line": 124,
- "column": 25
+ "column": 23
},
"end": {
"line": 124,
- "column": 31
+ "column": 29
}
}
},
"range": [
- 5404,
- 5415
+ 5402,
+ 5411
],
"loc": {
"start": {
@@ -10513,13 +10515,13 @@
},
"end": {
"line": 124,
- "column": 31
+ "column": 29
}
}
},
"range": [
- 5396,
- 5415
+ 5394,
+ 5411
],
"loc": {
"start": {
@@ -10528,15 +10530,15 @@
},
"end": {
"line": 124,
- "column": 31
+ "column": 29
}
}
}
],
"kind": "var",
"range": [
- 5392,
- 5416
+ 5390,
+ 5412
],
"loc": {
"start": {
@@ -10545,7 +10547,7 @@
},
"end": {
"line": 124,
- "column": 32
+ "column": 30
}
},
"trailingComments": [
@@ -10553,8 +10555,8 @@
"type": "Line",
"value": "calculates page nb",
"range": [
- 5425,
- 5445
+ 5421,
+ 5441
],
"loc": {
"start": {
@@ -10580,8 +10582,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 5454,
- 5458
+ 5450,
+ 5454
],
"loc": {
"start": {
@@ -10598,8 +10600,8 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 5459,
- 5466
+ 5455,
+ 5462
],
"loc": {
"start": {
@@ -10613,8 +10615,8 @@
}
},
"range": [
- 5454,
- 5466
+ 5450,
+ 5462
],
"loc": {
"start": {
@@ -10636,8 +10638,8 @@
"type": "Identifier",
"name": "Math",
"range": [
- 5469,
- 5473
+ 5465,
+ 5469
],
"loc": {
"start": {
@@ -10654,8 +10656,8 @@
"type": "Identifier",
"name": "ceil",
"range": [
- 5474,
- 5478
+ 5470,
+ 5474
],
"loc": {
"start": {
@@ -10669,8 +10671,8 @@
}
},
"range": [
- 5469,
- 5478
+ 5465,
+ 5474
],
"loc": {
"start": {
@@ -10694,8 +10696,8 @@
"type": "Identifier",
"name": "nrows",
"range": [
- 5480,
- 5485
+ 5476,
+ 5481
],
"loc": {
"start": {
@@ -10712,8 +10714,8 @@
"type": "Identifier",
"name": "start_row",
"range": [
- 5486,
- 5495
+ 5482,
+ 5491
],
"loc": {
"start": {
@@ -10727,8 +10729,8 @@
}
},
"range": [
- 5480,
- 5495
+ 5476,
+ 5491
],
"loc": {
"start": {
@@ -10747,8 +10749,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 5497,
- 5501
+ 5493,
+ 5497
],
"loc": {
"start": {
@@ -10765,8 +10767,8 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 5502,
- 5514
+ 5498,
+ 5510
],
"loc": {
"start": {
@@ -10780,8 +10782,8 @@
}
},
"range": [
- 5497,
- 5514
+ 5493,
+ 5510
],
"loc": {
"start": {
@@ -10795,8 +10797,8 @@
}
},
"range": [
- 5479,
- 5514
+ 5475,
+ 5510
],
"loc": {
"start": {
@@ -10811,8 +10813,8 @@
}
],
"range": [
- 5469,
- 5515
+ 5465,
+ 5511
],
"loc": {
"start": {
@@ -10826,8 +10828,8 @@
}
},
"range": [
- 5454,
- 5515
+ 5450,
+ 5511
],
"loc": {
"start": {
@@ -10841,8 +10843,8 @@
}
},
"range": [
- 5454,
- 5516
+ 5450,
+ 5512
],
"loc": {
"start": {
@@ -10859,8 +10861,8 @@
"type": "Line",
"value": "calculates page nb",
"range": [
- 5425,
- 5445
+ 5421,
+ 5441
],
"loc": {
"start": {
@@ -10879,8 +10881,8 @@
"type": "Line",
"value": "Paging elements events",
"range": [
- 5526,
- 5550
+ 5522,
+ 5546
],
"loc": {
"start": {
@@ -10904,8 +10906,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5563,
- 5564
+ 5559,
+ 5560
],
"loc": {
"start": {
@@ -10921,8 +10923,8 @@
"init": {
"type": "ThisExpression",
"range": [
- 5567,
- 5571
+ 5563,
+ 5567
],
"loc": {
"start": {
@@ -10936,8 +10938,8 @@
}
},
"range": [
- 5563,
- 5571
+ 5559,
+ 5567
],
"loc": {
"start": {
@@ -10953,8 +10955,8 @@
],
"kind": "var",
"range": [
- 5559,
- 5572
+ 5555,
+ 5568
],
"loc": {
"start": {
@@ -10971,8 +10973,8 @@
"type": "Line",
"value": "Paging elements events",
"range": [
- 5526,
- 5550
+ 5522,
+ 5546
],
"loc": {
"start": {
@@ -10991,8 +10993,8 @@
"type": "Line",
"value": " Paging DOM events",
"range": [
- 5581,
- 5601
+ 5577,
+ 5597
],
"loc": {
"start": {
@@ -11018,8 +11020,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 5610,
- 5614
+ 5606,
+ 5610
],
"loc": {
"start": {
@@ -11036,8 +11038,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 5615,
- 5618
+ 5611,
+ 5614
],
"loc": {
"start": {
@@ -11051,8 +11053,8 @@
}
},
"range": [
- 5610,
- 5618
+ 5606,
+ 5614
],
"loc": {
"start": {
@@ -11074,8 +11076,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 5635,
- 5643
+ 5631,
+ 5639
],
"loc": {
"start": {
@@ -11109,8 +11111,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5671,
- 5672
+ 5667,
+ 5668
],
"loc": {
"start": {
@@ -11127,8 +11129,8 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 5673,
- 5689
+ 5669,
+ 5685
],
"loc": {
"start": {
@@ -11142,8 +11144,8 @@
}
},
"range": [
- 5671,
- 5689
+ 5667,
+ 5685
],
"loc": {
"start": {
@@ -11163,8 +11165,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5692,
- 5694
+ 5688,
+ 5690
],
"loc": {
"start": {
@@ -11181,8 +11183,8 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 5695,
- 5705
+ 5691,
+ 5701
],
"loc": {
"start": {
@@ -11196,8 +11198,8 @@
}
},
"range": [
- 5692,
- 5705
+ 5688,
+ 5701
],
"loc": {
"start": {
@@ -11211,8 +11213,8 @@
}
},
"range": [
- 5671,
- 5705
+ 5667,
+ 5701
],
"loc": {
"start": {
@@ -11238,8 +11240,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5729,
- 5730
+ 5725,
+ 5726
],
"loc": {
"start": {
@@ -11256,8 +11258,8 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 5731,
- 5740
+ 5727,
+ 5736
],
"loc": {
"start": {
@@ -11271,8 +11273,8 @@
}
},
"range": [
- 5729,
- 5740
+ 5725,
+ 5736
],
"loc": {
"start": {
@@ -11289,8 +11291,8 @@
"type": "Identifier",
"name": "options",
"range": [
- 5741,
- 5748
+ 5737,
+ 5744
],
"loc": {
"start": {
@@ -11304,8 +11306,8 @@
}
},
"range": [
- 5729,
- 5748
+ 5725,
+ 5744
],
"loc": {
"start": {
@@ -11322,8 +11324,8 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 5749,
- 5762
+ 5745,
+ 5758
],
"loc": {
"start": {
@@ -11337,8 +11339,8 @@
}
},
"range": [
- 5729,
- 5762
+ 5725,
+ 5758
],
"loc": {
"start": {
@@ -11360,8 +11362,8 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 5785,
- 5793
+ 5781,
+ 5789
],
"loc": {
"start": {
@@ -11385,8 +11387,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5794,
- 5795
+ 5790,
+ 5791
],
"loc": {
"start": {
@@ -11403,8 +11405,8 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 5796,
- 5805
+ 5792,
+ 5801
],
"loc": {
"start": {
@@ -11418,8 +11420,8 @@
}
},
"range": [
- 5794,
- 5805
+ 5790,
+ 5801
],
"loc": {
"start": {
@@ -11436,8 +11438,8 @@
"type": "Identifier",
"name": "value",
"range": [
- 5806,
- 5811
+ 5802,
+ 5807
],
"loc": {
"start": {
@@ -11451,8 +11453,8 @@
}
},
"range": [
- 5794,
- 5811
+ 5790,
+ 5807
],
"loc": {
"start": {
@@ -11470,8 +11472,8 @@
"value": 10,
"raw": "10",
"range": [
- 5813,
- 5815
+ 5809,
+ 5811
],
"loc": {
"start": {
@@ -11486,8 +11488,8 @@
}
],
"range": [
- 5785,
- 5816
+ 5781,
+ 5812
],
"loc": {
"start": {
@@ -11505,8 +11507,8 @@
"value": 1,
"raw": "1",
"range": [
- 5817,
- 5818
+ 5813,
+ 5814
],
"loc": {
"start": {
@@ -11520,8 +11522,8 @@
}
},
"range": [
- 5785,
- 5818
+ 5781,
+ 5814
],
"loc": {
"start": {
@@ -11535,8 +11537,8 @@
}
},
"range": [
- 5670,
- 5818
+ 5666,
+ 5814
],
"loc": {
"start": {
@@ -11550,8 +11552,8 @@
}
},
"range": [
- 5663,
- 5819
+ 5659,
+ 5815
],
"loc": {
"start": {
@@ -11566,8 +11568,8 @@
}
],
"range": [
- 5645,
- 5833
+ 5641,
+ 5829
],
"loc": {
"start": {
@@ -11583,8 +11585,8 @@
"generator": false,
"expression": false,
"range": [
- 5643,
- 5833
+ 5639,
+ 5829
],
"loc": {
"start": {
@@ -11602,8 +11604,8 @@
"shorthand": false,
"computed": false,
"range": [
- 5635,
- 5833
+ 5631,
+ 5829
],
"loc": {
"start": {
@@ -11622,8 +11624,8 @@
"type": "Identifier",
"name": "nbOpts",
"range": [
- 5847,
- 5853
+ 5843,
+ 5849
],
"loc": {
"start": {
@@ -11657,8 +11659,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5881,
- 5882
+ 5877,
+ 5878
],
"loc": {
"start": {
@@ -11675,8 +11677,8 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 5883,
- 5899
+ 5879,
+ 5895
],
"loc": {
"start": {
@@ -11690,8 +11692,8 @@
}
},
"range": [
- 5881,
- 5899
+ 5877,
+ 5895
],
"loc": {
"start": {
@@ -11711,8 +11713,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5902,
- 5904
+ 5898,
+ 5900
],
"loc": {
"start": {
@@ -11729,8 +11731,8 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 5905,
- 5915
+ 5901,
+ 5911
],
"loc": {
"start": {
@@ -11744,8 +11746,8 @@
}
},
"range": [
- 5902,
- 5915
+ 5898,
+ 5911
],
"loc": {
"start": {
@@ -11759,8 +11761,8 @@
}
},
"range": [
- 5881,
- 5915
+ 5877,
+ 5911
],
"loc": {
"start": {
@@ -11782,8 +11784,8 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 5939,
- 5947
+ 5935,
+ 5943
],
"loc": {
"start": {
@@ -11810,8 +11812,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 5948,
- 5949
+ 5944,
+ 5945
],
"loc": {
"start": {
@@ -11828,8 +11830,8 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 5950,
- 5959
+ 5946,
+ 5955
],
"loc": {
"start": {
@@ -11843,8 +11845,8 @@
}
},
"range": [
- 5948,
- 5959
+ 5944,
+ 5955
],
"loc": {
"start": {
@@ -11861,8 +11863,8 @@
"type": "Identifier",
"name": "options",
"range": [
- 5960,
- 5967
+ 5956,
+ 5963
],
"loc": {
"start": {
@@ -11876,8 +11878,8 @@
}
},
"range": [
- 5948,
- 5967
+ 5944,
+ 5963
],
"loc": {
"start": {
@@ -11894,8 +11896,8 @@
"type": "Identifier",
"name": "length",
"range": [
- 5968,
- 5974
+ 5964,
+ 5970
],
"loc": {
"start": {
@@ -11909,8 +11911,8 @@
}
},
"range": [
- 5948,
- 5974
+ 5944,
+ 5970
],
"loc": {
"start": {
@@ -11928,8 +11930,8 @@
"value": 10,
"raw": "10",
"range": [
- 5976,
- 5978
+ 5972,
+ 5974
],
"loc": {
"start": {
@@ -11944,8 +11946,8 @@
}
],
"range": [
- 5939,
- 5979
+ 5935,
+ 5975
],
"loc": {
"start": {
@@ -11963,8 +11965,8 @@
"value": 1,
"raw": "1",
"range": [
- 5980,
- 5981
+ 5976,
+ 5977
],
"loc": {
"start": {
@@ -11978,8 +11980,8 @@
}
},
"range": [
- 5939,
- 5981
+ 5935,
+ 5977
],
"loc": {
"start": {
@@ -12002,8 +12004,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6005,
- 6006
+ 6001,
+ 6002
],
"loc": {
"start": {
@@ -12020,8 +12022,8 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 6007,
- 6014
+ 6003,
+ 6010
],
"loc": {
"start": {
@@ -12035,8 +12037,8 @@
}
},
"range": [
- 6005,
- 6014
+ 6001,
+ 6010
],
"loc": {
"start": {
@@ -12054,8 +12056,8 @@
"value": 1,
"raw": "1",
"range": [
- 6015,
- 6016
+ 6011,
+ 6012
],
"loc": {
"start": {
@@ -12069,8 +12071,8 @@
}
},
"range": [
- 6005,
- 6016
+ 6001,
+ 6012
],
"loc": {
"start": {
@@ -12084,8 +12086,8 @@
}
},
"range": [
- 5880,
- 6017
+ 5876,
+ 6013
],
"loc": {
"start": {
@@ -12099,8 +12101,8 @@
}
},
"range": [
- 5873,
- 6018
+ 5869,
+ 6014
],
"loc": {
"start": {
@@ -12115,8 +12117,8 @@
}
],
"range": [
- 5855,
- 6032
+ 5851,
+ 6028
],
"loc": {
"start": {
@@ -12132,8 +12134,8 @@
"generator": false,
"expression": false,
"range": [
- 5853,
- 6032
+ 5849,
+ 6028
],
"loc": {
"start": {
@@ -12151,8 +12153,8 @@
"shorthand": false,
"computed": false,
"range": [
- 5847,
- 6032
+ 5843,
+ 6028
],
"loc": {
"start": {
@@ -12171,8 +12173,8 @@
"type": "Identifier",
"name": "next",
"range": [
- 6046,
- 6050
+ 6042,
+ 6046
],
"loc": {
"start": {
@@ -12201,8 +12203,8 @@
"type": "Identifier",
"name": "nextIndex",
"range": [
- 6074,
- 6083
+ 6070,
+ 6079
],
"loc": {
"start": {
@@ -12232,8 +12234,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6086,
- 6087
+ 6082,
+ 6083
],
"loc": {
"start": {
@@ -12250,8 +12252,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6088,
- 6091
+ 6084,
+ 6087
],
"loc": {
"start": {
@@ -12265,8 +12267,8 @@
}
},
"range": [
- 6086,
- 6091
+ 6082,
+ 6087
],
"loc": {
"start": {
@@ -12283,8 +12285,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 6092,
- 6100
+ 6088,
+ 6096
],
"loc": {
"start": {
@@ -12298,8 +12300,8 @@
}
},
"range": [
- 6086,
- 6100
+ 6082,
+ 6096
],
"loc": {
"start": {
@@ -12314,8 +12316,8 @@
},
"arguments": [],
"range": [
- 6086,
- 6102
+ 6082,
+ 6098
],
"loc": {
"start": {
@@ -12340,8 +12342,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6105,
- 6106
+ 6101,
+ 6102
],
"loc": {
"start": {
@@ -12358,8 +12360,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6107,
- 6110
+ 6103,
+ 6106
],
"loc": {
"start": {
@@ -12373,8 +12375,8 @@
}
},
"range": [
- 6105,
- 6110
+ 6101,
+ 6106
],
"loc": {
"start": {
@@ -12391,8 +12393,8 @@
"type": "Identifier",
"name": "nbOpts",
"range": [
- 6111,
- 6117
+ 6107,
+ 6113
],
"loc": {
"start": {
@@ -12406,8 +12408,8 @@
}
},
"range": [
- 6105,
- 6117
+ 6101,
+ 6113
],
"loc": {
"start": {
@@ -12422,8 +12424,8 @@
},
"arguments": [],
"range": [
- 6105,
- 6119
+ 6101,
+ 6115
],
"loc": {
"start": {
@@ -12437,8 +12439,8 @@
}
},
"range": [
- 6086,
- 6119
+ 6082,
+ 6115
],
"loc": {
"start": {
@@ -12466,8 +12468,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6142,
- 6143
+ 6138,
+ 6139
],
"loc": {
"start": {
@@ -12484,8 +12486,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6144,
- 6147
+ 6140,
+ 6143
],
"loc": {
"start": {
@@ -12499,8 +12501,8 @@
}
},
"range": [
- 6142,
- 6147
+ 6138,
+ 6143
],
"loc": {
"start": {
@@ -12517,8 +12519,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 6148,
- 6156
+ 6144,
+ 6152
],
"loc": {
"start": {
@@ -12532,8 +12534,8 @@
}
},
"range": [
- 6142,
- 6156
+ 6138,
+ 6152
],
"loc": {
"start": {
@@ -12548,8 +12550,8 @@
},
"arguments": [],
"range": [
- 6142,
- 6158
+ 6138,
+ 6154
],
"loc": {
"start": {
@@ -12567,8 +12569,8 @@
"value": 1,
"raw": "1",
"range": [
- 6159,
- 6160
+ 6155,
+ 6156
],
"loc": {
"start": {
@@ -12582,8 +12584,8 @@
}
},
"range": [
- 6142,
- 6160
+ 6138,
+ 6156
],
"loc": {
"start": {
@@ -12601,8 +12603,8 @@
"value": 0,
"raw": "0",
"range": [
- 6163,
- 6164
+ 6159,
+ 6160
],
"loc": {
"start": {
@@ -12616,8 +12618,8 @@
}
},
"range": [
- 6086,
- 6164
+ 6082,
+ 6160
],
"loc": {
"start": {
@@ -12631,8 +12633,8 @@
}
},
"range": [
- 6074,
- 6164
+ 6070,
+ 6160
],
"loc": {
"start": {
@@ -12648,8 +12650,8 @@
],
"kind": "var",
"range": [
- 6070,
- 6165
+ 6066,
+ 6161
],
"loc": {
"start": {
@@ -12673,8 +12675,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6182,
- 6183
+ 6178,
+ 6179
],
"loc": {
"start": {
@@ -12691,8 +12693,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6184,
- 6194
+ 6180,
+ 6190
],
"loc": {
"start": {
@@ -12706,8 +12708,8 @@
}
},
"range": [
- 6182,
- 6194
+ 6178,
+ 6190
],
"loc": {
"start": {
@@ -12725,8 +12727,8 @@
"type": "Identifier",
"name": "nextIndex",
"range": [
- 6195,
- 6204
+ 6191,
+ 6200
],
"loc": {
"start": {
@@ -12741,8 +12743,8 @@
}
],
"range": [
- 6182,
- 6205
+ 6178,
+ 6201
],
"loc": {
"start": {
@@ -12756,8 +12758,8 @@
}
},
"range": [
- 6182,
- 6206
+ 6178,
+ 6202
],
"loc": {
"start": {
@@ -12772,8 +12774,8 @@
}
],
"range": [
- 6052,
- 6220
+ 6048,
+ 6216
],
"loc": {
"start": {
@@ -12789,8 +12791,8 @@
"generator": false,
"expression": false,
"range": [
- 6050,
- 6220
+ 6046,
+ 6216
],
"loc": {
"start": {
@@ -12808,8 +12810,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6046,
- 6220
+ 6042,
+ 6216
],
"loc": {
"start": {
@@ -12828,8 +12830,8 @@
"type": "Identifier",
"name": "prev",
"range": [
- 6234,
- 6238
+ 6230,
+ 6234
],
"loc": {
"start": {
@@ -12858,8 +12860,8 @@
"type": "Identifier",
"name": "prevIndex",
"range": [
- 6262,
- 6271
+ 6258,
+ 6267
],
"loc": {
"start": {
@@ -12889,8 +12891,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6274,
- 6275
+ 6270,
+ 6271
],
"loc": {
"start": {
@@ -12907,8 +12909,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6276,
- 6279
+ 6272,
+ 6275
],
"loc": {
"start": {
@@ -12922,8 +12924,8 @@
}
},
"range": [
- 6274,
- 6279
+ 6270,
+ 6275
],
"loc": {
"start": {
@@ -12940,8 +12942,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 6280,
- 6288
+ 6276,
+ 6284
],
"loc": {
"start": {
@@ -12955,8 +12957,8 @@
}
},
"range": [
- 6274,
- 6288
+ 6270,
+ 6284
],
"loc": {
"start": {
@@ -12971,8 +12973,8 @@
},
"arguments": [],
"range": [
- 6274,
- 6290
+ 6270,
+ 6286
],
"loc": {
"start": {
@@ -12990,8 +12992,8 @@
"value": 0,
"raw": "0",
"range": [
- 6291,
- 6292
+ 6287,
+ 6288
],
"loc": {
"start": {
@@ -13005,8 +13007,8 @@
}
},
"range": [
- 6274,
- 6292
+ 6270,
+ 6288
],
"loc": {
"start": {
@@ -13034,8 +13036,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6315,
- 6316
+ 6311,
+ 6312
],
"loc": {
"start": {
@@ -13052,8 +13054,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6317,
- 6320
+ 6313,
+ 6316
],
"loc": {
"start": {
@@ -13067,8 +13069,8 @@
}
},
"range": [
- 6315,
- 6320
+ 6311,
+ 6316
],
"loc": {
"start": {
@@ -13085,8 +13087,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 6321,
- 6329
+ 6317,
+ 6325
],
"loc": {
"start": {
@@ -13100,8 +13102,8 @@
}
},
"range": [
- 6315,
- 6329
+ 6311,
+ 6325
],
"loc": {
"start": {
@@ -13116,8 +13118,8 @@
},
"arguments": [],
"range": [
- 6315,
- 6331
+ 6311,
+ 6327
],
"loc": {
"start": {
@@ -13135,8 +13137,8 @@
"value": 1,
"raw": "1",
"range": [
- 6332,
- 6333
+ 6328,
+ 6329
],
"loc": {
"start": {
@@ -13150,8 +13152,8 @@
}
},
"range": [
- 6315,
- 6333
+ 6311,
+ 6329
],
"loc": {
"start": {
@@ -13176,8 +13178,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6336,
- 6337
+ 6332,
+ 6333
],
"loc": {
"start": {
@@ -13194,8 +13196,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6338,
- 6341
+ 6334,
+ 6337
],
"loc": {
"start": {
@@ -13209,8 +13211,8 @@
}
},
"range": [
- 6336,
- 6341
+ 6332,
+ 6337
],
"loc": {
"start": {
@@ -13227,8 +13229,8 @@
"type": "Identifier",
"name": "nbOpts",
"range": [
- 6342,
- 6348
+ 6338,
+ 6344
],
"loc": {
"start": {
@@ -13242,8 +13244,8 @@
}
},
"range": [
- 6336,
- 6348
+ 6332,
+ 6344
],
"loc": {
"start": {
@@ -13258,8 +13260,8 @@
},
"arguments": [],
"range": [
- 6336,
- 6350
+ 6332,
+ 6346
],
"loc": {
"start": {
@@ -13273,8 +13275,8 @@
}
},
"range": [
- 6274,
- 6350
+ 6270,
+ 6346
],
"loc": {
"start": {
@@ -13288,8 +13290,8 @@
}
},
"range": [
- 6262,
- 6350
+ 6258,
+ 6346
],
"loc": {
"start": {
@@ -13305,8 +13307,8 @@
],
"kind": "var",
"range": [
- 6258,
- 6351
+ 6254,
+ 6347
],
"loc": {
"start": {
@@ -13330,8 +13332,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6368,
- 6369
+ 6364,
+ 6365
],
"loc": {
"start": {
@@ -13348,8 +13350,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6370,
- 6380
+ 6366,
+ 6376
],
"loc": {
"start": {
@@ -13363,8 +13365,8 @@
}
},
"range": [
- 6368,
- 6380
+ 6364,
+ 6376
],
"loc": {
"start": {
@@ -13382,8 +13384,8 @@
"type": "Identifier",
"name": "prevIndex",
"range": [
- 6381,
- 6390
+ 6377,
+ 6386
],
"loc": {
"start": {
@@ -13398,8 +13400,8 @@
}
],
"range": [
- 6368,
- 6391
+ 6364,
+ 6387
],
"loc": {
"start": {
@@ -13413,8 +13415,8 @@
}
},
"range": [
- 6368,
- 6392
+ 6364,
+ 6388
],
"loc": {
"start": {
@@ -13429,8 +13431,8 @@
}
],
"range": [
- 6240,
- 6406
+ 6236,
+ 6402
],
"loc": {
"start": {
@@ -13446,8 +13448,8 @@
"generator": false,
"expression": false,
"range": [
- 6238,
- 6406
+ 6234,
+ 6402
],
"loc": {
"start": {
@@ -13465,8 +13467,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6234,
- 6406
+ 6230,
+ 6402
],
"loc": {
"start": {
@@ -13485,8 +13487,8 @@
"type": "Identifier",
"name": "last",
"range": [
- 6420,
- 6424
+ 6416,
+ 6420
],
"loc": {
"start": {
@@ -13517,8 +13519,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6444,
- 6445
+ 6440,
+ 6441
],
"loc": {
"start": {
@@ -13535,8 +13537,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6446,
- 6456
+ 6442,
+ 6452
],
"loc": {
"start": {
@@ -13550,8 +13552,8 @@
}
},
"range": [
- 6444,
- 6456
+ 6440,
+ 6452
],
"loc": {
"start": {
@@ -13577,8 +13579,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6457,
- 6458
+ 6453,
+ 6454
],
"loc": {
"start": {
@@ -13595,8 +13597,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6459,
- 6462
+ 6455,
+ 6458
],
"loc": {
"start": {
@@ -13610,8 +13612,8 @@
}
},
"range": [
- 6457,
- 6462
+ 6453,
+ 6458
],
"loc": {
"start": {
@@ -13628,8 +13630,8 @@
"type": "Identifier",
"name": "nbOpts",
"range": [
- 6463,
- 6469
+ 6459,
+ 6465
],
"loc": {
"start": {
@@ -13643,8 +13645,8 @@
}
},
"range": [
- 6457,
- 6469
+ 6453,
+ 6465
],
"loc": {
"start": {
@@ -13659,8 +13661,8 @@
},
"arguments": [],
"range": [
- 6457,
- 6471
+ 6453,
+ 6467
],
"loc": {
"start": {
@@ -13675,8 +13677,8 @@
}
],
"range": [
- 6444,
- 6472
+ 6440,
+ 6468
],
"loc": {
"start": {
@@ -13690,8 +13692,8 @@
}
},
"range": [
- 6444,
- 6473
+ 6440,
+ 6469
],
"loc": {
"start": {
@@ -13706,8 +13708,8 @@
}
],
"range": [
- 6426,
- 6487
+ 6422,
+ 6483
],
"loc": {
"start": {
@@ -13723,8 +13725,8 @@
"generator": false,
"expression": false,
"range": [
- 6424,
- 6487
+ 6420,
+ 6483
],
"loc": {
"start": {
@@ -13742,8 +13744,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6420,
- 6487
+ 6416,
+ 6483
],
"loc": {
"start": {
@@ -13762,8 +13764,8 @@
"type": "Identifier",
"name": "first",
"range": [
- 6501,
- 6506
+ 6497,
+ 6502
],
"loc": {
"start": {
@@ -13794,8 +13796,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6526,
- 6527
+ 6522,
+ 6523
],
"loc": {
"start": {
@@ -13812,8 +13814,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6528,
- 6538
+ 6524,
+ 6534
],
"loc": {
"start": {
@@ -13827,8 +13829,8 @@
}
},
"range": [
- 6526,
- 6538
+ 6522,
+ 6534
],
"loc": {
"start": {
@@ -13847,8 +13849,8 @@
"value": 0,
"raw": "0",
"range": [
- 6539,
- 6540
+ 6535,
+ 6536
],
"loc": {
"start": {
@@ -13863,8 +13865,8 @@
}
],
"range": [
- 6526,
- 6541
+ 6522,
+ 6537
],
"loc": {
"start": {
@@ -13878,8 +13880,8 @@
}
},
"range": [
- 6526,
- 6542
+ 6522,
+ 6538
],
"loc": {
"start": {
@@ -13894,8 +13896,8 @@
}
],
"range": [
- 6508,
- 6556
+ 6504,
+ 6552
],
"loc": {
"start": {
@@ -13911,8 +13913,8 @@
"generator": false,
"expression": false,
"range": [
- 6506,
- 6556
+ 6502,
+ 6552
],
"loc": {
"start": {
@@ -13930,8 +13932,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6501,
- 6556
+ 6497,
+ 6552
],
"loc": {
"start": {
@@ -13950,8 +13952,8 @@
"type": "Identifier",
"name": "_detectKey",
"range": [
- 6570,
- 6580
+ 6566,
+ 6576
],
"loc": {
"start": {
@@ -13972,8 +13974,8 @@
"type": "Identifier",
"name": "e",
"range": [
- 6581,
- 6582
+ 6577,
+ 6578
],
"loc": {
"start": {
@@ -13999,8 +14001,8 @@
"type": "Identifier",
"name": "key",
"range": [
- 6605,
- 6608
+ 6601,
+ 6604
],
"loc": {
"start": {
@@ -14022,8 +14024,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 6611,
- 6616
+ 6607,
+ 6612
],
"loc": {
"start": {
@@ -14040,8 +14042,8 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 6617,
- 6624
+ 6613,
+ 6620
],
"loc": {
"start": {
@@ -14055,8 +14057,8 @@
}
},
"range": [
- 6611,
- 6624
+ 6607,
+ 6620
],
"loc": {
"start": {
@@ -14074,8 +14076,8 @@
"type": "Identifier",
"name": "e",
"range": [
- 6625,
- 6626
+ 6621,
+ 6622
],
"loc": {
"start": {
@@ -14090,8 +14092,8 @@
}
],
"range": [
- 6611,
- 6627
+ 6607,
+ 6623
],
"loc": {
"start": {
@@ -14105,8 +14107,8 @@
}
},
"range": [
- 6605,
- 6627
+ 6601,
+ 6623
],
"loc": {
"start": {
@@ -14122,8 +14124,8 @@
],
"kind": "var",
"range": [
- 6601,
- 6628
+ 6597,
+ 6624
],
"loc": {
"start": {
@@ -14145,8 +14147,8 @@
"type": "Identifier",
"name": "key",
"range": [
- 6648,
- 6651
+ 6644,
+ 6647
],
"loc": {
"start": {
@@ -14164,8 +14166,8 @@
"value": 13,
"raw": "13",
"range": [
- 6654,
- 6656
+ 6650,
+ 6652
],
"loc": {
"start": {
@@ -14179,8 +14181,8 @@
}
},
"range": [
- 6648,
- 6656
+ 6644,
+ 6652
],
"loc": {
"start": {
@@ -14205,8 +14207,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6682,
- 6684
+ 6678,
+ 6680
],
"loc": {
"start": {
@@ -14223,8 +14225,8 @@
"type": "Identifier",
"name": "sorted",
"range": [
- 6685,
- 6691
+ 6681,
+ 6687
],
"loc": {
"start": {
@@ -14238,8 +14240,8 @@
}
},
"range": [
- 6682,
- 6691
+ 6678,
+ 6687
],
"loc": {
"start": {
@@ -14266,8 +14268,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 6718,
- 6720
+ 6714,
+ 6716
],
"loc": {
"start": {
@@ -14284,8 +14286,8 @@
"type": "Identifier",
"name": "filter",
"range": [
- 6721,
- 6727
+ 6717,
+ 6723
],
"loc": {
"start": {
@@ -14299,8 +14301,8 @@
}
},
"range": [
- 6718,
- 6727
+ 6714,
+ 6723
],
"loc": {
"start": {
@@ -14315,8 +14317,8 @@
},
"arguments": [],
"range": [
- 6718,
- 6729
+ 6714,
+ 6725
],
"loc": {
"start": {
@@ -14330,8 +14332,8 @@
}
},
"range": [
- 6718,
- 6730
+ 6714,
+ 6726
],
"loc": {
"start": {
@@ -14355,8 +14357,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6755,
- 6756
+ 6751,
+ 6752
],
"loc": {
"start": {
@@ -14373,8 +14375,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6757,
- 6767
+ 6753,
+ 6763
],
"loc": {
"start": {
@@ -14388,8 +14390,8 @@
}
},
"range": [
- 6755,
- 6767
+ 6751,
+ 6763
],
"loc": {
"start": {
@@ -14415,8 +14417,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6768,
- 6769
+ 6764,
+ 6765
],
"loc": {
"start": {
@@ -14433,8 +14435,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 6770,
- 6773
+ 6766,
+ 6769
],
"loc": {
"start": {
@@ -14448,8 +14450,8 @@
}
},
"range": [
- 6768,
- 6773
+ 6764,
+ 6769
],
"loc": {
"start": {
@@ -14466,8 +14468,8 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 6774,
- 6782
+ 6770,
+ 6778
],
"loc": {
"start": {
@@ -14481,8 +14483,8 @@
}
},
"range": [
- 6768,
- 6782
+ 6764,
+ 6778
],
"loc": {
"start": {
@@ -14497,8 +14499,8 @@
},
"arguments": [],
"range": [
- 6768,
- 6784
+ 6764,
+ 6780
],
"loc": {
"start": {
@@ -14513,8 +14515,8 @@
}
],
"range": [
- 6755,
- 6785
+ 6751,
+ 6781
],
"loc": {
"start": {
@@ -14528,8 +14530,8 @@
}
},
"range": [
- 6755,
- 6786
+ 6751,
+ 6782
],
"loc": {
"start": {
@@ -14544,8 +14546,8 @@
}
],
"range": [
- 6692,
- 6808
+ 6688,
+ 6804
],
"loc": {
"start": {
@@ -14572,8 +14574,8 @@
"type": "Identifier",
"name": "o",
"range": [
- 6839,
- 6840
+ 6835,
+ 6836
],
"loc": {
"start": {
@@ -14590,8 +14592,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 6841,
- 6851
+ 6837,
+ 6847
],
"loc": {
"start": {
@@ -14605,8 +14607,8 @@
}
},
"range": [
- 6839,
- 6851
+ 6835,
+ 6847
],
"loc": {
"start": {
@@ -14621,8 +14623,8 @@
},
"arguments": [],
"range": [
- 6839,
- 6853
+ 6835,
+ 6849
],
"loc": {
"start": {
@@ -14636,8 +14638,8 @@
}
},
"range": [
- 6839,
- 6854
+ 6835,
+ 6850
],
"loc": {
"start": {
@@ -14652,8 +14654,8 @@
}
],
"range": [
- 6813,
- 6876
+ 6809,
+ 6872
],
"loc": {
"start": {
@@ -14667,8 +14669,8 @@
}
},
"range": [
- 6679,
- 6876
+ 6675,
+ 6872
],
"loc": {
"start": {
@@ -14691,8 +14693,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 6897,
- 6901
+ 6893,
+ 6897
],
"loc": {
"start": {
@@ -14709,8 +14711,8 @@
"type": "Identifier",
"name": "blur",
"range": [
- 6902,
- 6906
+ 6898,
+ 6902
],
"loc": {
"start": {
@@ -14724,8 +14726,8 @@
}
},
"range": [
- 6897,
- 6906
+ 6893,
+ 6902
],
"loc": {
"start": {
@@ -14740,8 +14742,8 @@
},
"arguments": [],
"range": [
- 6897,
- 6908
+ 6893,
+ 6904
],
"loc": {
"start": {
@@ -14755,8 +14757,8 @@
}
},
"range": [
- 6897,
- 6909
+ 6893,
+ 6905
],
"loc": {
"start": {
@@ -14771,8 +14773,8 @@
}
],
"range": [
- 6657,
- 6927
+ 6653,
+ 6923
],
"loc": {
"start": {
@@ -14787,8 +14789,8 @@
},
"alternate": null,
"range": [
- 6645,
- 6927
+ 6641,
+ 6923
],
"loc": {
"start": {
@@ -14803,8 +14805,8 @@
}
],
"range": [
- 6583,
- 6941
+ 6579,
+ 6937
],
"loc": {
"start": {
@@ -14820,8 +14822,8 @@
"generator": false,
"expression": false,
"range": [
- 6580,
- 6941
+ 6576,
+ 6937
],
"loc": {
"start": {
@@ -14839,8 +14841,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6570,
- 6941
+ 6566,
+ 6937
],
"loc": {
"start": {
@@ -14859,8 +14861,8 @@
"type": "Identifier",
"name": "slcPagesChange",
"range": [
- 6955,
- 6969
+ 6951,
+ 6965
],
"loc": {
"start": {
@@ -14878,8 +14880,8 @@
"value": null,
"raw": "null",
"range": [
- 6971,
- 6975
+ 6967,
+ 6971
],
"loc": {
"start": {
@@ -14897,8 +14899,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6955,
- 6975
+ 6951,
+ 6971
],
"loc": {
"start": {
@@ -14917,8 +14919,8 @@
"type": "Identifier",
"name": "nextEvt",
"range": [
- 6989,
- 6996
+ 6985,
+ 6992
],
"loc": {
"start": {
@@ -14936,8 +14938,8 @@
"value": null,
"raw": "null",
"range": [
- 6998,
- 7002
+ 6994,
+ 6998
],
"loc": {
"start": {
@@ -14955,8 +14957,8 @@
"shorthand": false,
"computed": false,
"range": [
- 6989,
- 7002
+ 6985,
+ 6998
],
"loc": {
"start": {
@@ -14975,8 +14977,8 @@
"type": "Identifier",
"name": "prevEvt",
"range": [
- 7016,
- 7023
+ 7012,
+ 7019
],
"loc": {
"start": {
@@ -14994,8 +14996,8 @@
"value": null,
"raw": "null",
"range": [
- 7025,
- 7029
+ 7021,
+ 7025
],
"loc": {
"start": {
@@ -15013,8 +15015,8 @@
"shorthand": false,
"computed": false,
"range": [
- 7016,
- 7029
+ 7012,
+ 7025
],
"loc": {
"start": {
@@ -15033,8 +15035,8 @@
"type": "Identifier",
"name": "lastEvt",
"range": [
- 7043,
- 7050
+ 7039,
+ 7046
],
"loc": {
"start": {
@@ -15052,8 +15054,8 @@
"value": null,
"raw": "null",
"range": [
- 7052,
- 7056
+ 7048,
+ 7052
],
"loc": {
"start": {
@@ -15071,8 +15073,8 @@
"shorthand": false,
"computed": false,
"range": [
- 7043,
- 7056
+ 7039,
+ 7052
],
"loc": {
"start": {
@@ -15091,8 +15093,8 @@
"type": "Identifier",
"name": "firstEvt",
"range": [
- 7070,
- 7078
+ 7066,
+ 7074
],
"loc": {
"start": {
@@ -15110,8 +15112,8 @@
"value": null,
"raw": "null",
"range": [
- 7080,
- 7084
+ 7076,
+ 7080
],
"loc": {
"start": {
@@ -15129,8 +15131,8 @@
"shorthand": false,
"computed": false,
"range": [
- 7070,
- 7084
+ 7066,
+ 7080
],
"loc": {
"start": {
@@ -15145,8 +15147,8 @@
}
],
"range": [
- 5621,
- 7094
+ 5617,
+ 7090
],
"loc": {
"start": {
@@ -15160,8 +15162,8 @@
}
},
"range": [
- 5610,
- 7094
+ 5606,
+ 7090
],
"loc": {
"start": {
@@ -15175,8 +15177,8 @@
}
},
"range": [
- 5610,
- 7095
+ 5606,
+ 7091
],
"loc": {
"start": {
@@ -15193,8 +15195,8 @@
"type": "Line",
"value": " Paging DOM events",
"range": [
- 5581,
- 5601
+ 5577,
+ 5597
],
"loc": {
"start": {
@@ -15212,7 +15214,7 @@
],
"range": [
299,
- 7101
+ 7097
],
"loc": {
"start": {
@@ -15229,7 +15231,7 @@
"expression": false,
"range": [
295,
- 7101
+ 7097
],
"loc": {
"start": {
@@ -15246,7 +15248,7 @@
"computed": false,
"range": [
284,
- 7101
+ 7097
],
"loc": {
"start": {
@@ -15283,8 +15285,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 7107,
- 7149
+ 7103,
+ 7145
],
"loc": {
"start": {
@@ -15306,8 +15308,8 @@
"type": "Identifier",
"name": "init",
"range": [
- 7154,
- 7158
+ 7150,
+ 7154
],
"loc": {
"start": {
@@ -15336,8 +15338,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 7174,
- 7182
+ 7170,
+ 7178
],
"loc": {
"start": {
@@ -15352,8 +15354,8 @@
},
"init": null,
"range": [
- 7174,
- 7182
+ 7170,
+ 7178
],
"loc": {
"start": {
@@ -15369,8 +15371,8 @@
],
"kind": "var",
"range": [
- 7170,
- 7183
+ 7166,
+ 7179
],
"loc": {
"start": {
@@ -15392,8 +15394,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7196,
- 7198
+ 7192,
+ 7194
],
"loc": {
"start": {
@@ -15412,8 +15414,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7201,
- 7205
+ 7197,
+ 7201
],
"loc": {
"start": {
@@ -15430,8 +15432,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7206,
- 7208
+ 7202,
+ 7204
],
"loc": {
"start": {
@@ -15445,8 +15447,8 @@
}
},
"range": [
- 7201,
- 7208
+ 7197,
+ 7204
],
"loc": {
"start": {
@@ -15460,8 +15462,8 @@
}
},
"range": [
- 7196,
- 7208
+ 7192,
+ 7204
],
"loc": {
"start": {
@@ -15477,8 +15479,8 @@
],
"kind": "var",
"range": [
- 7192,
- 7209
+ 7188,
+ 7205
],
"loc": {
"start": {
@@ -15500,8 +15502,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 7222,
- 7225
+ 7218,
+ 7221
],
"loc": {
"start": {
@@ -15520,8 +15522,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7228,
- 7232
+ 7224,
+ 7228
],
"loc": {
"start": {
@@ -15538,8 +15540,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 7233,
- 7236
+ 7229,
+ 7232
],
"loc": {
"start": {
@@ -15553,8 +15555,8 @@
}
},
"range": [
- 7228,
- 7236
+ 7224,
+ 7232
],
"loc": {
"start": {
@@ -15568,8 +15570,8 @@
}
},
"range": [
- 7222,
- 7236
+ 7218,
+ 7232
],
"loc": {
"start": {
@@ -15585,8 +15587,8 @@
],
"kind": "var",
"range": [
- 7218,
- 7237
+ 7214,
+ 7233
],
"loc": {
"start": {
@@ -15607,8 +15609,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7250,
- 7254
+ 7246,
+ 7250
],
"loc": {
"start": {
@@ -15625,8 +15627,8 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 7255,
- 7266
+ 7251,
+ 7262
],
"loc": {
"start": {
@@ -15640,8 +15642,8 @@
}
},
"range": [
- 7250,
- 7266
+ 7246,
+ 7262
],
"loc": {
"start": {
@@ -15661,8 +15663,8 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 7281,
- 7288
+ 7277,
+ 7284
],
"loc": {
"start": {
@@ -15677,8 +15679,8 @@
}
],
"range": [
- 7267,
- 7298
+ 7263,
+ 7294
],
"loc": {
"start": {
@@ -15693,8 +15695,8 @@
},
"alternate": null,
"range": [
- 7247,
- 7298
+ 7243,
+ 7294
],
"loc": {
"start": {
@@ -15711,8 +15713,8 @@
"type": "Line",
"value": " Check resultsPerPage is in expected format and initialise the",
"range": [
- 7308,
- 7372
+ 7304,
+ 7368
],
"loc": {
"start": {
@@ -15729,8 +15731,8 @@
"type": "Line",
"value": " results per page component",
"range": [
- 7381,
- 7410
+ 7377,
+ 7406
],
"loc": {
"start": {
@@ -15753,8 +15755,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7422,
- 7426
+ 7418,
+ 7422
],
"loc": {
"start": {
@@ -15771,8 +15773,8 @@
"type": "Identifier",
"name": "hasResultsPerPage",
"range": [
- 7427,
- 7444
+ 7423,
+ 7440
],
"loc": {
"start": {
@@ -15786,8 +15788,8 @@
}
},
"range": [
- 7422,
- 7444
+ 7418,
+ 7440
],
"loc": {
"start": {
@@ -15817,8 +15819,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7462,
- 7466
+ 7458,
+ 7462
],
"loc": {
"start": {
@@ -15835,8 +15837,8 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 7467,
- 7481
+ 7463,
+ 7477
],
"loc": {
"start": {
@@ -15850,8 +15852,8 @@
}
},
"range": [
- 7462,
- 7481
+ 7458,
+ 7477
],
"loc": {
"start": {
@@ -15868,8 +15870,8 @@
"type": "Identifier",
"name": "length",
"range": [
- 7482,
- 7488
+ 7478,
+ 7484
],
"loc": {
"start": {
@@ -15883,8 +15885,8 @@
}
},
"range": [
- 7462,
- 7488
+ 7458,
+ 7484
],
"loc": {
"start": {
@@ -15902,8 +15904,8 @@
"value": 2,
"raw": "2",
"range": [
- 7489,
- 7490
+ 7485,
+ 7486
],
"loc": {
"start": {
@@ -15917,8 +15919,8 @@
}
},
"range": [
- 7462,
- 7490
+ 7458,
+ 7486
],
"loc": {
"start": {
@@ -15945,8 +15947,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7509,
- 7513
+ 7505,
+ 7509
],
"loc": {
"start": {
@@ -15963,8 +15965,8 @@
"type": "Identifier",
"name": "hasResultsPerPage",
"range": [
- 7514,
- 7531
+ 7510,
+ 7527
],
"loc": {
"start": {
@@ -15978,8 +15980,8 @@
}
},
"range": [
- 7509,
- 7531
+ 7505,
+ 7527
],
"loc": {
"start": {
@@ -15997,8 +15999,8 @@
"value": false,
"raw": "false",
"range": [
- 7534,
- 7539
+ 7530,
+ 7535
],
"loc": {
"start": {
@@ -16012,8 +16014,8 @@
}
},
"range": [
- 7509,
- 7539
+ 7505,
+ 7535
],
"loc": {
"start": {
@@ -16027,8 +16029,8 @@
}
},
"range": [
- 7509,
- 7540
+ 7505,
+ 7536
],
"loc": {
"start": {
@@ -16043,8 +16045,8 @@
}
],
"range": [
- 7491,
- 7554
+ 7487,
+ 7550
],
"loc": {
"start": {
@@ -16071,8 +16073,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7578,
- 7582
+ 7574,
+ 7578
],
"loc": {
"start": {
@@ -16089,8 +16091,8 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 7583,
- 7595
+ 7579,
+ 7591
],
"loc": {
"start": {
@@ -16104,8 +16106,8 @@
}
},
"range": [
- 7578,
- 7595
+ 7574,
+ 7591
],
"loc": {
"start": {
@@ -16130,8 +16132,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7598,
- 7602
+ 7594,
+ 7598
],
"loc": {
"start": {
@@ -16148,8 +16150,8 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 7603,
- 7617
+ 7599,
+ 7613
],
"loc": {
"start": {
@@ -16163,8 +16165,8 @@
}
},
"range": [
- 7598,
- 7617
+ 7594,
+ 7613
],
"loc": {
"start": {
@@ -16182,8 +16184,8 @@
"value": 1,
"raw": "1",
"range": [
- 7618,
- 7619
+ 7614,
+ 7615
],
"loc": {
"start": {
@@ -16197,8 +16199,8 @@
}
},
"range": [
- 7598,
- 7620
+ 7594,
+ 7616
],
"loc": {
"start": {
@@ -16216,8 +16218,8 @@
"value": 0,
"raw": "0",
"range": [
- 7621,
- 7622
+ 7617,
+ 7618
],
"loc": {
"start": {
@@ -16231,8 +16233,8 @@
}
},
"range": [
- 7598,
- 7623
+ 7594,
+ 7619
],
"loc": {
"start": {
@@ -16246,8 +16248,8 @@
}
},
"range": [
- 7578,
- 7623
+ 7574,
+ 7619
],
"loc": {
"start": {
@@ -16261,8 +16263,8 @@
}
},
"range": [
- 7578,
- 7624
+ 7574,
+ 7620
],
"loc": {
"start": {
@@ -16285,8 +16287,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7641,
- 7645
+ 7637,
+ 7641
],
"loc": {
"start": {
@@ -16303,8 +16305,8 @@
"type": "Identifier",
"name": "setResultsPerPage",
"range": [
- 7646,
- 7663
+ 7642,
+ 7659
],
"loc": {
"start": {
@@ -16318,8 +16320,8 @@
}
},
"range": [
- 7641,
- 7663
+ 7637,
+ 7659
],
"loc": {
"start": {
@@ -16334,8 +16336,8 @@
},
"arguments": [],
"range": [
- 7641,
- 7665
+ 7637,
+ 7661
],
"loc": {
"start": {
@@ -16349,8 +16351,8 @@
}
},
"range": [
- 7641,
- 7666
+ 7637,
+ 7662
],
"loc": {
"start": {
@@ -16365,8 +16367,8 @@
}
],
"range": [
- 7560,
- 7680
+ 7556,
+ 7676
],
"loc": {
"start": {
@@ -16380,8 +16382,8 @@
}
},
"range": [
- 7459,
- 7680
+ 7455,
+ 7676
],
"loc": {
"start": {
@@ -16396,8 +16398,8 @@
}
],
"range": [
- 7445,
- 7690
+ 7441,
+ 7686
],
"loc": {
"start": {
@@ -16412,8 +16414,8 @@
},
"alternate": null,
"range": [
- 7419,
- 7690
+ 7415,
+ 7686
],
"loc": {
"start": {
@@ -16430,8 +16432,8 @@
"type": "Line",
"value": " Check resultsPerPage is in expected format and initialise the",
"range": [
- 7308,
- 7372
+ 7304,
+ 7368
],
"loc": {
"start": {
@@ -16448,8 +16450,8 @@
"type": "Line",
"value": " results per page component",
"range": [
- 7381,
- 7410
+ 7377,
+ 7406
],
"loc": {
"start": {
@@ -16476,8 +16478,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 7700,
- 7703
+ 7696,
+ 7699
],
"loc": {
"start": {
@@ -16494,8 +16496,8 @@
"type": "Identifier",
"name": "slcPagesChange",
"range": [
- 7704,
- 7718
+ 7700,
+ 7714
],
"loc": {
"start": {
@@ -16509,8 +16511,8 @@
}
},
"range": [
- 7700,
- 7718
+ 7696,
+ 7714
],
"loc": {
"start": {
@@ -16531,8 +16533,8 @@
"type": "Identifier",
"name": "event",
"range": [
- 7722,
- 7727
+ 7718,
+ 7723
],
"loc": {
"start": {
@@ -16558,8 +16560,8 @@
"type": "Identifier",
"name": "slc",
"range": [
- 7750,
- 7753
+ 7746,
+ 7749
],
"loc": {
"start": {
@@ -16579,8 +16581,8 @@
"type": "Identifier",
"name": "event",
"range": [
- 7756,
- 7761
+ 7752,
+ 7757
],
"loc": {
"start": {
@@ -16597,8 +16599,8 @@
"type": "Identifier",
"name": "target",
"range": [
- 7762,
- 7768
+ 7758,
+ 7764
],
"loc": {
"start": {
@@ -16612,8 +16614,8 @@
}
},
"range": [
- 7756,
- 7768
+ 7752,
+ 7764
],
"loc": {
"start": {
@@ -16627,8 +16629,8 @@
}
},
"range": [
- 7750,
- 7768
+ 7746,
+ 7764
],
"loc": {
"start": {
@@ -16644,8 +16646,8 @@
],
"kind": "var",
"range": [
- 7746,
- 7769
+ 7742,
+ 7765
],
"loc": {
"start": {
@@ -16668,8 +16670,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7782,
- 7786
+ 7778,
+ 7782
],
"loc": {
"start": {
@@ -16686,8 +16688,8 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 7787,
- 7797
+ 7783,
+ 7793
],
"loc": {
"start": {
@@ -16701,8 +16703,8 @@
}
},
"range": [
- 7782,
- 7797
+ 7778,
+ 7793
],
"loc": {
"start": {
@@ -16723,8 +16725,8 @@
"type": "Identifier",
"name": "slc",
"range": [
- 7798,
- 7801
+ 7794,
+ 7797
],
"loc": {
"start": {
@@ -16741,8 +16743,8 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 7802,
- 7815
+ 7798,
+ 7811
],
"loc": {
"start": {
@@ -16756,8 +16758,8 @@
}
},
"range": [
- 7798,
- 7815
+ 7794,
+ 7811
],
"loc": {
"start": {
@@ -16772,8 +16774,8 @@
}
],
"range": [
- 7782,
- 7816
+ 7778,
+ 7812
],
"loc": {
"start": {
@@ -16787,8 +16789,8 @@
}
},
"range": [
- 7782,
- 7817
+ 7778,
+ 7813
],
"loc": {
"start": {
@@ -16803,8 +16805,8 @@
}
],
"range": [
- 7732,
- 7827
+ 7728,
+ 7823
],
"loc": {
"start": {
@@ -16820,8 +16822,8 @@
"generator": false,
"expression": false,
"range": [
- 7721,
- 7827
+ 7717,
+ 7823
],
"loc": {
"start": {
@@ -16835,8 +16837,8 @@
}
},
"range": [
- 7700,
- 7827
+ 7696,
+ 7823
],
"loc": {
"start": {
@@ -16850,8 +16852,8 @@
}
},
"range": [
- 7700,
- 7828
+ 7696,
+ 7824
],
"loc": {
"start": {
@@ -16868,8 +16870,8 @@
"type": "Line",
"value": " Paging drop-down list selector",
"range": [
- 7838,
- 7871
+ 7834,
+ 7867
],
"loc": {
"start": {
@@ -16895,8 +16897,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7883,
- 7887
+ 7879,
+ 7883
],
"loc": {
"start": {
@@ -16913,8 +16915,8 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 7888,
- 7904
+ 7884,
+ 7900
],
"loc": {
"start": {
@@ -16928,8 +16930,8 @@
}
},
"range": [
- 7883,
- 7904
+ 7879,
+ 7900
],
"loc": {
"start": {
@@ -16949,8 +16951,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7909,
- 7911
+ 7905,
+ 7907
],
"loc": {
"start": {
@@ -16967,8 +16969,8 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 7912,
- 7922
+ 7908,
+ 7918
],
"loc": {
"start": {
@@ -16982,8 +16984,8 @@
}
},
"range": [
- 7909,
- 7922
+ 7905,
+ 7918
],
"loc": {
"start": {
@@ -16997,8 +16999,8 @@
}
},
"range": [
- 7883,
- 7922
+ 7879,
+ 7918
],
"loc": {
"start": {
@@ -17023,8 +17025,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 7937,
- 7945
+ 7933,
+ 7941
],
"loc": {
"start": {
@@ -17046,8 +17048,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7948,
- 7951
+ 7944,
+ 7947
],
"loc": {
"start": {
@@ -17064,8 +17066,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 7952,
- 7958
+ 7948,
+ 7954
],
"loc": {
"start": {
@@ -17079,8 +17081,8 @@
}
},
"range": [
- 7948,
- 7958
+ 7944,
+ 7954
],
"loc": {
"start": {
@@ -17101,8 +17103,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 7976,
- 7978
+ 7972,
+ 7974
],
"loc": {
"start": {
@@ -17119,8 +17121,8 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 7979,
- 7989
+ 7975,
+ 7985
],
"loc": {
"start": {
@@ -17134,8 +17136,8 @@
}
},
"range": [
- 7976,
- 7989
+ 7972,
+ 7985
],
"loc": {
"start": {
@@ -17156,8 +17158,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 7992,
- 7996
+ 7988,
+ 7992
],
"loc": {
"start": {
@@ -17179,8 +17181,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 7998,
- 8002
+ 7994,
+ 7998
],
"loc": {
"start": {
@@ -17197,8 +17199,8 @@
"type": "Identifier",
"name": "prfxSlcPages",
"range": [
- 8003,
- 8015
+ 7999,
+ 8011
],
"loc": {
"start": {
@@ -17212,8 +17214,8 @@
}
},
"range": [
- 7998,
- 8015
+ 7994,
+ 8011
],
"loc": {
"start": {
@@ -17233,8 +17235,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8016,
- 8018
+ 8012,
+ 8014
],
"loc": {
"start": {
@@ -17251,8 +17253,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8019,
- 8021
+ 8015,
+ 8017
],
"loc": {
"start": {
@@ -17266,8 +17268,8 @@
}
},
"range": [
- 8016,
- 8021
+ 8012,
+ 8017
],
"loc": {
"start": {
@@ -17281,8 +17283,8 @@
}
},
"range": [
- 7998,
- 8021
+ 7994,
+ 8017
],
"loc": {
"start": {
@@ -17297,8 +17299,8 @@
}
],
"range": [
- 7991,
- 8022
+ 7987,
+ 8018
],
"loc": {
"start": {
@@ -17313,8 +17315,8 @@
}
],
"range": [
- 7948,
- 8023
+ 7944,
+ 8019
],
"loc": {
"start": {
@@ -17328,8 +17330,8 @@
}
},
"range": [
- 7937,
- 8023
+ 7933,
+ 8019
],
"loc": {
"start": {
@@ -17343,8 +17345,8 @@
}
},
"range": [
- 7937,
- 8024
+ 7933,
+ 8020
],
"loc": {
"start": {
@@ -17369,8 +17371,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 8037,
- 8045
+ 8033,
+ 8041
],
"loc": {
"start": {
@@ -17387,8 +17389,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 8046,
- 8055
+ 8042,
+ 8051
],
"loc": {
"start": {
@@ -17402,8 +17404,8 @@
}
},
"range": [
- 8037,
- 8055
+ 8033,
+ 8051
],
"loc": {
"start": {
@@ -17422,8 +17424,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8058,
- 8062
+ 8054,
+ 8058
],
"loc": {
"start": {
@@ -17440,8 +17442,8 @@
"type": "Identifier",
"name": "pgSlcCssClass",
"range": [
- 8063,
- 8076
+ 8059,
+ 8072
],
"loc": {
"start": {
@@ -17455,8 +17457,8 @@
}
},
"range": [
- 8058,
- 8076
+ 8054,
+ 8072
],
"loc": {
"start": {
@@ -17470,8 +17472,8 @@
}
},
"range": [
- 8037,
- 8076
+ 8033,
+ 8072
],
"loc": {
"start": {
@@ -17485,8 +17487,8 @@
}
},
"range": [
- 8037,
- 8077
+ 8033,
+ 8073
],
"loc": {
"start": {
@@ -17510,8 +17512,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 8090,
- 8095
+ 8086,
+ 8091
],
"loc": {
"start": {
@@ -17528,8 +17530,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 8096,
- 8099
+ 8092,
+ 8095
],
"loc": {
"start": {
@@ -17543,8 +17545,8 @@
}
},
"range": [
- 8090,
- 8099
+ 8086,
+ 8095
],
"loc": {
"start": {
@@ -17562,8 +17564,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 8100,
- 8108
+ 8096,
+ 8104
],
"loc": {
"start": {
@@ -17581,8 +17583,8 @@
"value": "change",
"raw": "'change'",
"range": [
- 8110,
- 8118
+ 8106,
+ 8114
],
"loc": {
"start": {
@@ -17602,8 +17604,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 8120,
- 8123
+ 8116,
+ 8119
],
"loc": {
"start": {
@@ -17620,8 +17622,8 @@
"type": "Identifier",
"name": "slcPagesChange",
"range": [
- 8124,
- 8138
+ 8120,
+ 8134
],
"loc": {
"start": {
@@ -17635,8 +17637,8 @@
}
},
"range": [
- 8120,
- 8138
+ 8116,
+ 8134
],
"loc": {
"start": {
@@ -17651,8 +17653,8 @@
}
],
"range": [
- 8090,
- 8139
+ 8086,
+ 8135
],
"loc": {
"start": {
@@ -17666,8 +17668,8 @@
}
},
"range": [
- 8090,
- 8140
+ 8086,
+ 8136
],
"loc": {
"start": {
@@ -17682,8 +17684,8 @@
}
],
"range": [
- 7923,
- 8150
+ 7919,
+ 8146
],
"loc": {
"start": {
@@ -17698,8 +17700,8 @@
},
"alternate": null,
"range": [
- 7880,
- 8150
+ 7876,
+ 8146
],
"loc": {
"start": {
@@ -17716,8 +17718,8 @@
"type": "Line",
"value": " Paging drop-down list selector",
"range": [
- 7838,
- 7871
+ 7834,
+ 7867
],
"loc": {
"start": {
@@ -17736,8 +17738,8 @@
"type": "Line",
"value": " Paging input selector",
"range": [
- 8160,
- 8184
+ 8156,
+ 8180
],
"loc": {
"start": {
@@ -17763,8 +17765,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8196,
- 8200
+ 8192,
+ 8196
],
"loc": {
"start": {
@@ -17781,8 +17783,8 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 8201,
- 8217
+ 8197,
+ 8213
],
"loc": {
"start": {
@@ -17796,8 +17798,8 @@
}
},
"range": [
- 8196,
- 8217
+ 8192,
+ 8213
],
"loc": {
"start": {
@@ -17817,8 +17819,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8222,
- 8224
+ 8218,
+ 8220
],
"loc": {
"start": {
@@ -17835,8 +17837,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 8225,
- 8235
+ 8221,
+ 8231
],
"loc": {
"start": {
@@ -17850,8 +17852,8 @@
}
},
"range": [
- 8222,
- 8235
+ 8218,
+ 8231
],
"loc": {
"start": {
@@ -17865,8 +17867,8 @@
}
},
"range": [
- 8196,
- 8235
+ 8192,
+ 8231
],
"loc": {
"start": {
@@ -17891,8 +17893,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 8250,
- 8258
+ 8246,
+ 8254
],
"loc": {
"start": {
@@ -17914,8 +17916,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8261,
- 8264
+ 8257,
+ 8260
],
"loc": {
"start": {
@@ -17932,8 +17934,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 8265,
- 8271
+ 8261,
+ 8267
],
"loc": {
"start": {
@@ -17947,8 +17949,8 @@
}
},
"range": [
- 8261,
- 8271
+ 8257,
+ 8267
],
"loc": {
"start": {
@@ -17969,8 +17971,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8289,
- 8291
+ 8285,
+ 8287
],
"loc": {
"start": {
@@ -17987,8 +17989,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 8292,
- 8302
+ 8288,
+ 8298
],
"loc": {
"start": {
@@ -18002,8 +18004,8 @@
}
},
"range": [
- 8289,
- 8302
+ 8285,
+ 8298
],
"loc": {
"start": {
@@ -18024,8 +18026,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 8321,
- 8325
+ 8317,
+ 8321
],
"loc": {
"start": {
@@ -18047,8 +18049,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8327,
- 8331
+ 8323,
+ 8327
],
"loc": {
"start": {
@@ -18065,8 +18067,8 @@
"type": "Identifier",
"name": "prfxSlcPages",
"range": [
- 8332,
- 8344
+ 8328,
+ 8340
],
"loc": {
"start": {
@@ -18080,8 +18082,8 @@
}
},
"range": [
- 8327,
- 8344
+ 8323,
+ 8340
],
"loc": {
"start": {
@@ -18101,8 +18103,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8345,
- 8347
+ 8341,
+ 8343
],
"loc": {
"start": {
@@ -18119,8 +18121,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8348,
- 8350
+ 8344,
+ 8346
],
"loc": {
"start": {
@@ -18134,8 +18136,8 @@
}
},
"range": [
- 8345,
- 8350
+ 8341,
+ 8346
],
"loc": {
"start": {
@@ -18149,8 +18151,8 @@
}
},
"range": [
- 8327,
- 8350
+ 8323,
+ 8346
],
"loc": {
"start": {
@@ -18165,8 +18167,8 @@
}
],
"range": [
- 8320,
- 8351
+ 8316,
+ 8347
],
"loc": {
"start": {
@@ -18187,8 +18189,8 @@
"value": "value",
"raw": "'value'",
"range": [
- 8370,
- 8377
+ 8366,
+ 8373
],
"loc": {
"start": {
@@ -18207,8 +18209,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8379,
- 8383
+ 8375,
+ 8379
],
"loc": {
"start": {
@@ -18225,8 +18227,8 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 8384,
- 8397
+ 8380,
+ 8393
],
"loc": {
"start": {
@@ -18240,8 +18242,8 @@
}
},
"range": [
- 8379,
- 8397
+ 8375,
+ 8393
],
"loc": {
"start": {
@@ -18256,8 +18258,8 @@
}
],
"range": [
- 8369,
- 8398
+ 8365,
+ 8394
],
"loc": {
"start": {
@@ -18272,8 +18274,8 @@
}
],
"range": [
- 8261,
- 8412
+ 8257,
+ 8408
],
"loc": {
"start": {
@@ -18287,8 +18289,8 @@
}
},
"range": [
- 8250,
- 8412
+ 8246,
+ 8408
],
"loc": {
"start": {
@@ -18302,8 +18304,8 @@
}
},
"range": [
- 8250,
- 8413
+ 8246,
+ 8409
],
"loc": {
"start": {
@@ -18328,8 +18330,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 8426,
- 8434
+ 8422,
+ 8430
],
"loc": {
"start": {
@@ -18346,8 +18348,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 8435,
- 8444
+ 8431,
+ 8440
],
"loc": {
"start": {
@@ -18361,8 +18363,8 @@
}
},
"range": [
- 8426,
- 8444
+ 8422,
+ 8440
],
"loc": {
"start": {
@@ -18381,8 +18383,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8447,
- 8451
+ 8443,
+ 8447
],
"loc": {
"start": {
@@ -18399,8 +18401,8 @@
"type": "Identifier",
"name": "pgInpCssClass",
"range": [
- 8452,
- 8465
+ 8448,
+ 8461
],
"loc": {
"start": {
@@ -18414,8 +18416,8 @@
}
},
"range": [
- 8447,
- 8465
+ 8443,
+ 8461
],
"loc": {
"start": {
@@ -18429,8 +18431,8 @@
}
},
"range": [
- 8426,
- 8465
+ 8422,
+ 8461
],
"loc": {
"start": {
@@ -18444,8 +18446,8 @@
}
},
"range": [
- 8426,
- 8466
+ 8422,
+ 8462
],
"loc": {
"start": {
@@ -18469,8 +18471,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 8479,
- 8484
+ 8475,
+ 8480
],
"loc": {
"start": {
@@ -18487,8 +18489,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 8485,
- 8488
+ 8481,
+ 8484
],
"loc": {
"start": {
@@ -18502,8 +18504,8 @@
}
},
"range": [
- 8479,
- 8488
+ 8475,
+ 8484
],
"loc": {
"start": {
@@ -18521,8 +18523,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 8489,
- 8497
+ 8485,
+ 8493
],
"loc": {
"start": {
@@ -18540,8 +18542,8 @@
"value": "keypress",
"raw": "'keypress'",
"range": [
- 8499,
- 8509
+ 8495,
+ 8505
],
"loc": {
"start": {
@@ -18561,8 +18563,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 8511,
- 8514
+ 8507,
+ 8510
],
"loc": {
"start": {
@@ -18579,8 +18581,8 @@
"type": "Identifier",
"name": "_detectKey",
"range": [
- 8515,
- 8525
+ 8511,
+ 8521
],
"loc": {
"start": {
@@ -18594,8 +18596,8 @@
}
},
"range": [
- 8511,
- 8525
+ 8507,
+ 8521
],
"loc": {
"start": {
@@ -18610,8 +18612,8 @@
}
],
"range": [
- 8479,
- 8526
+ 8475,
+ 8522
],
"loc": {
"start": {
@@ -18625,8 +18627,8 @@
}
},
"range": [
- 8479,
- 8527
+ 8475,
+ 8523
],
"loc": {
"start": {
@@ -18641,8 +18643,8 @@
}
],
"range": [
- 8236,
- 8537
+ 8232,
+ 8533
],
"loc": {
"start": {
@@ -18657,8 +18659,8 @@
},
"alternate": null,
"range": [
- 8193,
- 8537
+ 8189,
+ 8533
],
"loc": {
"start": {
@@ -18675,8 +18677,8 @@
"type": "Line",
"value": " Paging input selector",
"range": [
- 8160,
- 8184
+ 8156,
+ 8180
],
"loc": {
"start": {
@@ -18695,8 +18697,8 @@
"type": "Line",
"value": " btns containers",
"range": [
- 8547,
- 8565
+ 8543,
+ 8561
],
"loc": {
"start": {
@@ -18720,8 +18722,8 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 8578,
- 8589
+ 8574,
+ 8585
],
"loc": {
"start": {
@@ -18743,8 +18745,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8592,
- 8595
+ 8588,
+ 8591
],
"loc": {
"start": {
@@ -18761,8 +18763,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 8596,
- 8602
+ 8592,
+ 8598
],
"loc": {
"start": {
@@ -18776,8 +18778,8 @@
}
},
"range": [
- 8592,
- 8602
+ 8588,
+ 8598
],
"loc": {
"start": {
@@ -18796,8 +18798,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 8616,
- 8622
+ 8612,
+ 8618
],
"loc": {
"start": {
@@ -18818,8 +18820,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 8624,
- 8628
+ 8620,
+ 8624
],
"loc": {
"start": {
@@ -18841,8 +18843,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8630,
- 8634
+ 8626,
+ 8630
],
"loc": {
"start": {
@@ -18859,8 +18861,8 @@
"type": "Identifier",
"name": "prfxBtnNextSpan",
"range": [
- 8635,
- 8650
+ 8631,
+ 8646
],
"loc": {
"start": {
@@ -18874,8 +18876,8 @@
}
},
"range": [
- 8630,
- 8650
+ 8626,
+ 8646
],
"loc": {
"start": {
@@ -18895,8 +18897,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8651,
- 8653
+ 8647,
+ 8649
],
"loc": {
"start": {
@@ -18913,8 +18915,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8654,
- 8656
+ 8650,
+ 8652
],
"loc": {
"start": {
@@ -18928,8 +18930,8 @@
}
},
"range": [
- 8651,
- 8656
+ 8647,
+ 8652
],
"loc": {
"start": {
@@ -18943,8 +18945,8 @@
}
},
"range": [
- 8630,
- 8656
+ 8626,
+ 8652
],
"loc": {
"start": {
@@ -18959,8 +18961,8 @@
}
],
"range": [
- 8623,
- 8657
+ 8619,
+ 8653
],
"loc": {
"start": {
@@ -18975,8 +18977,8 @@
}
],
"range": [
- 8592,
- 8658
+ 8588,
+ 8654
],
"loc": {
"start": {
@@ -18990,8 +18992,8 @@
}
},
"range": [
- 8578,
- 8658
+ 8574,
+ 8654
],
"loc": {
"start": {
@@ -19007,8 +19009,8 @@
],
"kind": "var",
"range": [
- 8574,
- 8659
+ 8570,
+ 8655
],
"loc": {
"start": {
@@ -19025,8 +19027,8 @@
"type": "Line",
"value": " btns containers",
"range": [
- 8547,
- 8565
+ 8543,
+ 8561
],
"loc": {
"start": {
@@ -19050,8 +19052,8 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 8672,
- 8683
+ 8668,
+ 8679
],
"loc": {
"start": {
@@ -19073,8 +19075,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8686,
- 8689
+ 8682,
+ 8685
],
"loc": {
"start": {
@@ -19091,8 +19093,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 8690,
- 8696
+ 8686,
+ 8692
],
"loc": {
"start": {
@@ -19106,8 +19108,8 @@
}
},
"range": [
- 8686,
- 8696
+ 8682,
+ 8692
],
"loc": {
"start": {
@@ -19126,8 +19128,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 8710,
- 8716
+ 8706,
+ 8712
],
"loc": {
"start": {
@@ -19148,8 +19150,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 8718,
- 8722
+ 8714,
+ 8718
],
"loc": {
"start": {
@@ -19171,8 +19173,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8724,
- 8728
+ 8720,
+ 8724
],
"loc": {
"start": {
@@ -19189,8 +19191,8 @@
"type": "Identifier",
"name": "prfxBtnPrevSpan",
"range": [
- 8729,
- 8744
+ 8725,
+ 8740
],
"loc": {
"start": {
@@ -19204,8 +19206,8 @@
}
},
"range": [
- 8724,
- 8744
+ 8720,
+ 8740
],
"loc": {
"start": {
@@ -19225,8 +19227,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8745,
- 8747
+ 8741,
+ 8743
],
"loc": {
"start": {
@@ -19243,8 +19245,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8748,
- 8750
+ 8744,
+ 8746
],
"loc": {
"start": {
@@ -19258,8 +19260,8 @@
}
},
"range": [
- 8745,
- 8750
+ 8741,
+ 8746
],
"loc": {
"start": {
@@ -19273,8 +19275,8 @@
}
},
"range": [
- 8724,
- 8750
+ 8720,
+ 8746
],
"loc": {
"start": {
@@ -19289,8 +19291,8 @@
}
],
"range": [
- 8717,
- 8751
+ 8713,
+ 8747
],
"loc": {
"start": {
@@ -19305,8 +19307,8 @@
}
],
"range": [
- 8686,
- 8752
+ 8682,
+ 8748
],
"loc": {
"start": {
@@ -19320,8 +19322,8 @@
}
},
"range": [
- 8672,
- 8752
+ 8668,
+ 8748
],
"loc": {
"start": {
@@ -19337,8 +19339,8 @@
],
"kind": "var",
"range": [
- 8668,
- 8753
+ 8664,
+ 8749
],
"loc": {
"start": {
@@ -19360,8 +19362,8 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 8766,
- 8777
+ 8762,
+ 8773
],
"loc": {
"start": {
@@ -19383,8 +19385,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8780,
- 8783
+ 8776,
+ 8779
],
"loc": {
"start": {
@@ -19401,8 +19403,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 8784,
- 8790
+ 8780,
+ 8786
],
"loc": {
"start": {
@@ -19416,8 +19418,8 @@
}
},
"range": [
- 8780,
- 8790
+ 8776,
+ 8786
],
"loc": {
"start": {
@@ -19436,8 +19438,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 8804,
- 8810
+ 8800,
+ 8806
],
"loc": {
"start": {
@@ -19458,8 +19460,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 8812,
- 8816
+ 8808,
+ 8812
],
"loc": {
"start": {
@@ -19481,8 +19483,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8818,
- 8822
+ 8814,
+ 8818
],
"loc": {
"start": {
@@ -19499,8 +19501,8 @@
"type": "Identifier",
"name": "prfxBtnLastSpan",
"range": [
- 8823,
- 8838
+ 8819,
+ 8834
],
"loc": {
"start": {
@@ -19514,8 +19516,8 @@
}
},
"range": [
- 8818,
- 8838
+ 8814,
+ 8834
],
"loc": {
"start": {
@@ -19535,8 +19537,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8839,
- 8841
+ 8835,
+ 8837
],
"loc": {
"start": {
@@ -19553,8 +19555,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8842,
- 8844
+ 8838,
+ 8840
],
"loc": {
"start": {
@@ -19568,8 +19570,8 @@
}
},
"range": [
- 8839,
- 8844
+ 8835,
+ 8840
],
"loc": {
"start": {
@@ -19583,8 +19585,8 @@
}
},
"range": [
- 8818,
- 8844
+ 8814,
+ 8840
],
"loc": {
"start": {
@@ -19599,8 +19601,8 @@
}
],
"range": [
- 8811,
- 8845
+ 8807,
+ 8841
],
"loc": {
"start": {
@@ -19615,8 +19617,8 @@
}
],
"range": [
- 8780,
- 8846
+ 8776,
+ 8842
],
"loc": {
"start": {
@@ -19630,8 +19632,8 @@
}
},
"range": [
- 8766,
- 8846
+ 8762,
+ 8842
],
"loc": {
"start": {
@@ -19647,8 +19649,8 @@
],
"kind": "var",
"range": [
- 8762,
- 8847
+ 8758,
+ 8843
],
"loc": {
"start": {
@@ -19670,8 +19672,8 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 8860,
- 8872
+ 8856,
+ 8868
],
"loc": {
"start": {
@@ -19693,8 +19695,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 8875,
- 8878
+ 8871,
+ 8874
],
"loc": {
"start": {
@@ -19711,8 +19713,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 8879,
- 8885
+ 8875,
+ 8881
],
"loc": {
"start": {
@@ -19726,8 +19728,8 @@
}
},
"range": [
- 8875,
- 8885
+ 8871,
+ 8881
],
"loc": {
"start": {
@@ -19746,8 +19748,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 8899,
- 8905
+ 8895,
+ 8901
],
"loc": {
"start": {
@@ -19768,8 +19770,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 8907,
- 8911
+ 8903,
+ 8907
],
"loc": {
"start": {
@@ -19791,8 +19793,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8913,
- 8917
+ 8909,
+ 8913
],
"loc": {
"start": {
@@ -19809,8 +19811,8 @@
"type": "Identifier",
"name": "prfxBtnFirstSpan",
"range": [
- 8918,
- 8934
+ 8914,
+ 8930
],
"loc": {
"start": {
@@ -19824,8 +19826,8 @@
}
},
"range": [
- 8913,
- 8934
+ 8909,
+ 8930
],
"loc": {
"start": {
@@ -19845,8 +19847,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 8935,
- 8937
+ 8931,
+ 8933
],
"loc": {
"start": {
@@ -19863,8 +19865,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 8938,
- 8940
+ 8934,
+ 8936
],
"loc": {
"start": {
@@ -19878,8 +19880,8 @@
}
},
"range": [
- 8935,
- 8940
+ 8931,
+ 8936
],
"loc": {
"start": {
@@ -19893,8 +19895,8 @@
}
},
"range": [
- 8913,
- 8940
+ 8909,
+ 8936
],
"loc": {
"start": {
@@ -19909,8 +19911,8 @@
}
],
"range": [
- 8906,
- 8941
+ 8902,
+ 8937
],
"loc": {
"start": {
@@ -19925,8 +19927,8 @@
}
],
"range": [
- 8875,
- 8942
+ 8871,
+ 8938
],
"loc": {
"start": {
@@ -19940,8 +19942,8 @@
}
},
"range": [
- 8860,
- 8942
+ 8856,
+ 8938
],
"loc": {
"start": {
@@ -19957,8 +19959,8 @@
],
"kind": "var",
"range": [
- 8856,
- 8943
+ 8852,
+ 8939
],
"loc": {
"start": {
@@ -19979,8 +19981,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 8956,
- 8960
+ 8952,
+ 8956
],
"loc": {
"start": {
@@ -19997,8 +19999,8 @@
"type": "Identifier",
"name": "hasPagingBtns",
"range": [
- 8961,
- 8974
+ 8957,
+ 8970
],
"loc": {
"start": {
@@ -20012,8 +20014,8 @@
}
},
"range": [
- 8956,
- 8974
+ 8952,
+ 8970
],
"loc": {
"start": {
@@ -20040,8 +20042,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9020,
- 9024
+ 9016,
+ 9020
],
"loc": {
"start": {
@@ -20058,8 +20060,8 @@
"type": "Identifier",
"name": "btnNextPageHtml",
"range": [
- 9025,
- 9040
+ 9021,
+ 9036
],
"loc": {
"start": {
@@ -20073,8 +20075,8 @@
}
},
"range": [
- 9020,
- 9040
+ 9016,
+ 9036
],
"loc": {
"start": {
@@ -20089,8 +20091,8 @@
},
"prefix": true,
"range": [
- 9019,
- 9040
+ 9015,
+ 9036
],
"loc": {
"start": {
@@ -20115,8 +20117,8 @@
"type": "Identifier",
"name": "btn_next",
"range": [
- 9063,
- 9071
+ 9059,
+ 9067
],
"loc": {
"start": {
@@ -20138,8 +20140,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9074,
- 9077
+ 9070,
+ 9073
],
"loc": {
"start": {
@@ -20156,8 +20158,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 9078,
- 9084
+ 9074,
+ 9080
],
"loc": {
"start": {
@@ -20171,8 +20173,8 @@
}
},
"range": [
- 9074,
- 9084
+ 9070,
+ 9080
],
"loc": {
"start": {
@@ -20193,8 +20195,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9106,
- 9108
+ 9102,
+ 9104
],
"loc": {
"start": {
@@ -20211,8 +20213,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 9109,
- 9119
+ 9105,
+ 9115
],
"loc": {
"start": {
@@ -20226,8 +20228,8 @@
}
},
"range": [
- 9106,
- 9119
+ 9102,
+ 9115
],
"loc": {
"start": {
@@ -20248,8 +20250,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 9142,
- 9146
+ 9138,
+ 9142
],
"loc": {
"start": {
@@ -20271,8 +20273,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9148,
- 9152
+ 9144,
+ 9148
],
"loc": {
"start": {
@@ -20289,8 +20291,8 @@
"type": "Identifier",
"name": "prfxBtnNext",
"range": [
- 9153,
- 9164
+ 9149,
+ 9160
],
"loc": {
"start": {
@@ -20304,8 +20306,8 @@
}
},
"range": [
- 9148,
- 9164
+ 9144,
+ 9160
],
"loc": {
"start": {
@@ -20325,8 +20327,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9165,
- 9167
+ 9161,
+ 9163
],
"loc": {
"start": {
@@ -20343,8 +20345,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 9168,
- 9170
+ 9164,
+ 9166
],
"loc": {
"start": {
@@ -20358,8 +20360,8 @@
}
},
"range": [
- 9165,
- 9170
+ 9161,
+ 9166
],
"loc": {
"start": {
@@ -20373,8 +20375,8 @@
}
},
"range": [
- 9148,
- 9170
+ 9144,
+ 9166
],
"loc": {
"start": {
@@ -20389,8 +20391,8 @@
}
],
"range": [
- 9141,
- 9171
+ 9137,
+ 9167
],
"loc": {
"start": {
@@ -20411,8 +20413,8 @@
"value": "type",
"raw": "'type'",
"range": [
- 9194,
- 9200
+ 9190,
+ 9196
],
"loc": {
"start": {
@@ -20430,8 +20432,8 @@
"value": "button",
"raw": "'button'",
"range": [
- 9202,
- 9210
+ 9198,
+ 9206
],
"loc": {
"start": {
@@ -20446,8 +20448,8 @@
}
],
"range": [
- 9193,
- 9211
+ 9189,
+ 9207
],
"loc": {
"start": {
@@ -20468,8 +20470,8 @@
"value": "value",
"raw": "'value'",
"range": [
- 9234,
- 9241
+ 9230,
+ 9237
],
"loc": {
"start": {
@@ -20488,8 +20490,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9243,
- 9247
+ 9239,
+ 9243
],
"loc": {
"start": {
@@ -20506,8 +20508,8 @@
"type": "Identifier",
"name": "btnNextPageText",
"range": [
- 9248,
- 9263
+ 9244,
+ 9259
],
"loc": {
"start": {
@@ -20521,8 +20523,8 @@
}
},
"range": [
- 9243,
- 9263
+ 9239,
+ 9259
],
"loc": {
"start": {
@@ -20537,8 +20539,8 @@
}
],
"range": [
- 9233,
- 9264
+ 9229,
+ 9260
],
"loc": {
"start": {
@@ -20559,8 +20561,8 @@
"value": "title",
"raw": "'title'",
"range": [
- 9287,
- 9294
+ 9283,
+ 9290
],
"loc": {
"start": {
@@ -20578,8 +20580,8 @@
"value": "Next",
"raw": "'Next'",
"range": [
- 9296,
- 9302
+ 9292,
+ 9298
],
"loc": {
"start": {
@@ -20594,8 +20596,8 @@
}
],
"range": [
- 9286,
- 9303
+ 9282,
+ 9299
],
"loc": {
"start": {
@@ -20610,8 +20612,8 @@
}
],
"range": [
- 9074,
- 9321
+ 9070,
+ 9317
],
"loc": {
"start": {
@@ -20625,8 +20627,8 @@
}
},
"range": [
- 9063,
- 9321
+ 9059,
+ 9317
],
"loc": {
"start": {
@@ -20642,8 +20644,8 @@
],
"kind": "var",
"range": [
- 9059,
- 9322
+ 9055,
+ 9318
],
"loc": {
"start": {
@@ -20668,8 +20670,8 @@
"type": "Identifier",
"name": "btn_next",
"range": [
- 9339,
- 9347
+ 9335,
+ 9343
],
"loc": {
"start": {
@@ -20686,8 +20688,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 9348,
- 9357
+ 9344,
+ 9353
],
"loc": {
"start": {
@@ -20701,8 +20703,8 @@
}
},
"range": [
- 9339,
- 9357
+ 9335,
+ 9353
],
"loc": {
"start": {
@@ -20721,8 +20723,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9360,
- 9364
+ 9356,
+ 9360
],
"loc": {
"start": {
@@ -20739,8 +20741,8 @@
"type": "Identifier",
"name": "btnPageCssClass",
"range": [
- 9365,
- 9380
+ 9361,
+ 9376
],
"loc": {
"start": {
@@ -20754,8 +20756,8 @@
}
},
"range": [
- 9360,
- 9380
+ 9356,
+ 9376
],
"loc": {
"start": {
@@ -20769,8 +20771,8 @@
}
},
"range": [
- 9339,
- 9380
+ 9335,
+ 9376
],
"loc": {
"start": {
@@ -20784,8 +20786,8 @@
}
},
"range": [
- 9339,
- 9381
+ 9335,
+ 9377
],
"loc": {
"start": {
@@ -20809,8 +20811,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 9398,
- 9403
+ 9394,
+ 9399
],
"loc": {
"start": {
@@ -20827,8 +20829,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 9404,
- 9407
+ 9400,
+ 9403
],
"loc": {
"start": {
@@ -20842,8 +20844,8 @@
}
},
"range": [
- 9398,
- 9407
+ 9394,
+ 9403
],
"loc": {
"start": {
@@ -20861,8 +20863,8 @@
"type": "Identifier",
"name": "btn_next",
"range": [
- 9408,
- 9416
+ 9404,
+ 9412
],
"loc": {
"start": {
@@ -20880,8 +20882,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 9418,
- 9425
+ 9414,
+ 9421
],
"loc": {
"start": {
@@ -20901,8 +20903,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 9427,
- 9430
+ 9423,
+ 9426
],
"loc": {
"start": {
@@ -20919,8 +20921,8 @@
"type": "Identifier",
"name": "next",
"range": [
- 9431,
- 9435
+ 9427,
+ 9431
],
"loc": {
"start": {
@@ -20934,8 +20936,8 @@
}
},
"range": [
- 9427,
- 9435
+ 9423,
+ 9431
],
"loc": {
"start": {
@@ -20950,8 +20952,8 @@
}
],
"range": [
- 9398,
- 9436
+ 9394,
+ 9432
],
"loc": {
"start": {
@@ -20965,8 +20967,8 @@
}
},
"range": [
- 9398,
- 9437
+ 9394,
+ 9433
],
"loc": {
"start": {
@@ -20990,8 +20992,8 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 9454,
- 9465
+ 9450,
+ 9461
],
"loc": {
"start": {
@@ -21008,8 +21010,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 9466,
- 9477
+ 9462,
+ 9473
],
"loc": {
"start": {
@@ -21023,8 +21025,8 @@
}
},
"range": [
- 9454,
- 9477
+ 9450,
+ 9473
],
"loc": {
"start": {
@@ -21042,8 +21044,8 @@
"type": "Identifier",
"name": "btn_next",
"range": [
- 9478,
- 9486
+ 9474,
+ 9482
],
"loc": {
"start": {
@@ -21058,8 +21060,8 @@
}
],
"range": [
- 9454,
- 9487
+ 9450,
+ 9483
],
"loc": {
"start": {
@@ -21073,8 +21075,8 @@
}
},
"range": [
- 9454,
- 9488
+ 9450,
+ 9484
],
"loc": {
"start": {
@@ -21089,8 +21091,8 @@
}
],
"range": [
- 9041,
- 9502
+ 9037,
+ 9498
],
"loc": {
"start": {
@@ -21118,8 +21120,8 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 9526,
- 9537
+ 9522,
+ 9533
],
"loc": {
"start": {
@@ -21136,8 +21138,8 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 9538,
- 9547
+ 9534,
+ 9543
],
"loc": {
"start": {
@@ -21151,8 +21153,8 @@
}
},
"range": [
- 9526,
- 9547
+ 9522,
+ 9543
],
"loc": {
"start": {
@@ -21171,8 +21173,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9550,
- 9554
+ 9546,
+ 9550
],
"loc": {
"start": {
@@ -21189,8 +21191,8 @@
"type": "Identifier",
"name": "btnNextPageHtml",
"range": [
- 9555,
- 9570
+ 9551,
+ 9566
],
"loc": {
"start": {
@@ -21204,8 +21206,8 @@
}
},
"range": [
- 9550,
- 9570
+ 9546,
+ 9566
],
"loc": {
"start": {
@@ -21219,8 +21221,8 @@
}
},
"range": [
- 9526,
- 9570
+ 9522,
+ 9566
],
"loc": {
"start": {
@@ -21234,8 +21236,8 @@
}
},
"range": [
- 9526,
- 9571
+ 9522,
+ 9567
],
"loc": {
"start": {
@@ -21259,8 +21261,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 9588,
- 9593
+ 9584,
+ 9589
],
"loc": {
"start": {
@@ -21277,8 +21279,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 9594,
- 9597
+ 9590,
+ 9593
],
"loc": {
"start": {
@@ -21292,8 +21294,8 @@
}
},
"range": [
- 9588,
- 9597
+ 9584,
+ 9593
],
"loc": {
"start": {
@@ -21311,8 +21313,8 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 9598,
- 9609
+ 9594,
+ 9605
],
"loc": {
"start": {
@@ -21330,8 +21332,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 9611,
- 9618
+ 9607,
+ 9614
],
"loc": {
"start": {
@@ -21351,8 +21353,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 9620,
- 9623
+ 9616,
+ 9619
],
"loc": {
"start": {
@@ -21369,8 +21371,8 @@
"type": "Identifier",
"name": "next",
"range": [
- 9624,
- 9628
+ 9620,
+ 9624
],
"loc": {
"start": {
@@ -21384,8 +21386,8 @@
}
},
"range": [
- 9620,
- 9628
+ 9616,
+ 9624
],
"loc": {
"start": {
@@ -21400,8 +21402,8 @@
}
],
"range": [
- 9588,
- 9629
+ 9584,
+ 9625
],
"loc": {
"start": {
@@ -21415,8 +21417,8 @@
}
},
"range": [
- 9588,
- 9630
+ 9584,
+ 9626
],
"loc": {
"start": {
@@ -21431,8 +21433,8 @@
}
],
"range": [
- 9508,
- 9644
+ 9504,
+ 9640
],
"loc": {
"start": {
@@ -21446,8 +21448,8 @@
}
},
"range": [
- 9016,
- 9644
+ 9012,
+ 9640
],
"loc": {
"start": {
@@ -21464,8 +21466,8 @@
"type": "Line",
"value": " Next button",
"range": [
- 8989,
- 9003
+ 8985,
+ 8999
],
"loc": {
"start": {
@@ -21484,8 +21486,8 @@
"type": "Line",
"value": " Previous button",
"range": [
- 9657,
- 9675
+ 9653,
+ 9671
],
"loc": {
"start": {
@@ -21511,8 +21513,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9692,
- 9696
+ 9688,
+ 9692
],
"loc": {
"start": {
@@ -21529,8 +21531,8 @@
"type": "Identifier",
"name": "btnPrevPageHtml",
"range": [
- 9697,
- 9712
+ 9693,
+ 9708
],
"loc": {
"start": {
@@ -21544,8 +21546,8 @@
}
},
"range": [
- 9692,
- 9712
+ 9688,
+ 9708
],
"loc": {
"start": {
@@ -21560,8 +21562,8 @@
},
"prefix": true,
"range": [
- 9691,
- 9712
+ 9687,
+ 9708
],
"loc": {
"start": {
@@ -21586,8 +21588,8 @@
"type": "Identifier",
"name": "btn_prev",
"range": [
- 9735,
- 9743
+ 9731,
+ 9739
],
"loc": {
"start": {
@@ -21609,8 +21611,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 9746,
- 9749
+ 9742,
+ 9745
],
"loc": {
"start": {
@@ -21627,8 +21629,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 9750,
- 9756
+ 9746,
+ 9752
],
"loc": {
"start": {
@@ -21642,8 +21644,8 @@
}
},
"range": [
- 9746,
- 9756
+ 9742,
+ 9752
],
"loc": {
"start": {
@@ -21664,8 +21666,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9778,
- 9780
+ 9774,
+ 9776
],
"loc": {
"start": {
@@ -21682,8 +21684,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 9781,
- 9791
+ 9777,
+ 9787
],
"loc": {
"start": {
@@ -21697,8 +21699,8 @@
}
},
"range": [
- 9778,
- 9791
+ 9774,
+ 9787
],
"loc": {
"start": {
@@ -21719,8 +21721,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 9814,
- 9818
+ 9810,
+ 9814
],
"loc": {
"start": {
@@ -21742,8 +21744,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9820,
- 9824
+ 9816,
+ 9820
],
"loc": {
"start": {
@@ -21760,8 +21762,8 @@
"type": "Identifier",
"name": "prfxBtnPrev",
"range": [
- 9825,
- 9836
+ 9821,
+ 9832
],
"loc": {
"start": {
@@ -21775,8 +21777,8 @@
}
},
"range": [
- 9820,
- 9836
+ 9816,
+ 9832
],
"loc": {
"start": {
@@ -21796,8 +21798,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 9837,
- 9839
+ 9833,
+ 9835
],
"loc": {
"start": {
@@ -21814,8 +21816,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 9840,
- 9842
+ 9836,
+ 9838
],
"loc": {
"start": {
@@ -21829,8 +21831,8 @@
}
},
"range": [
- 9837,
- 9842
+ 9833,
+ 9838
],
"loc": {
"start": {
@@ -21844,8 +21846,8 @@
}
},
"range": [
- 9820,
- 9842
+ 9816,
+ 9838
],
"loc": {
"start": {
@@ -21860,8 +21862,8 @@
}
],
"range": [
- 9813,
- 9843
+ 9809,
+ 9839
],
"loc": {
"start": {
@@ -21882,8 +21884,8 @@
"value": "type",
"raw": "'type'",
"range": [
- 9866,
- 9872
+ 9862,
+ 9868
],
"loc": {
"start": {
@@ -21901,8 +21903,8 @@
"value": "button",
"raw": "'button'",
"range": [
- 9874,
- 9882
+ 9870,
+ 9878
],
"loc": {
"start": {
@@ -21917,8 +21919,8 @@
}
],
"range": [
- 9865,
- 9883
+ 9861,
+ 9879
],
"loc": {
"start": {
@@ -21939,8 +21941,8 @@
"value": "value",
"raw": "'value'",
"range": [
- 9906,
- 9913
+ 9902,
+ 9909
],
"loc": {
"start": {
@@ -21959,8 +21961,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 9915,
- 9919
+ 9911,
+ 9915
],
"loc": {
"start": {
@@ -21977,8 +21979,8 @@
"type": "Identifier",
"name": "btnPrevPageText",
"range": [
- 9920,
- 9935
+ 9916,
+ 9931
],
"loc": {
"start": {
@@ -21992,8 +21994,8 @@
}
},
"range": [
- 9915,
- 9935
+ 9911,
+ 9931
],
"loc": {
"start": {
@@ -22008,8 +22010,8 @@
}
],
"range": [
- 9905,
- 9936
+ 9901,
+ 9932
],
"loc": {
"start": {
@@ -22030,8 +22032,8 @@
"value": "title",
"raw": "'title'",
"range": [
- 9959,
- 9966
+ 9955,
+ 9962
],
"loc": {
"start": {
@@ -22049,8 +22051,8 @@
"value": "Previous",
"raw": "'Previous'",
"range": [
- 9968,
- 9978
+ 9964,
+ 9974
],
"loc": {
"start": {
@@ -22065,8 +22067,8 @@
}
],
"range": [
- 9958,
- 9979
+ 9954,
+ 9975
],
"loc": {
"start": {
@@ -22081,8 +22083,8 @@
}
],
"range": [
- 9746,
- 9997
+ 9742,
+ 9993
],
"loc": {
"start": {
@@ -22096,8 +22098,8 @@
}
},
"range": [
- 9735,
- 9997
+ 9731,
+ 9993
],
"loc": {
"start": {
@@ -22113,8 +22115,8 @@
],
"kind": "var",
"range": [
- 9731,
- 9998
+ 9727,
+ 9994
],
"loc": {
"start": {
@@ -22139,8 +22141,8 @@
"type": "Identifier",
"name": "btn_prev",
"range": [
- 10015,
- 10023
+ 10011,
+ 10019
],
"loc": {
"start": {
@@ -22157,8 +22159,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 10024,
- 10033
+ 10020,
+ 10029
],
"loc": {
"start": {
@@ -22172,8 +22174,8 @@
}
},
"range": [
- 10015,
- 10033
+ 10011,
+ 10029
],
"loc": {
"start": {
@@ -22192,8 +22194,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10036,
- 10040
+ 10032,
+ 10036
],
"loc": {
"start": {
@@ -22210,8 +22212,8 @@
"type": "Identifier",
"name": "btnPageCssClass",
"range": [
- 10041,
- 10056
+ 10037,
+ 10052
],
"loc": {
"start": {
@@ -22225,8 +22227,8 @@
}
},
"range": [
- 10036,
- 10056
+ 10032,
+ 10052
],
"loc": {
"start": {
@@ -22240,8 +22242,8 @@
}
},
"range": [
- 10015,
- 10056
+ 10011,
+ 10052
],
"loc": {
"start": {
@@ -22255,8 +22257,8 @@
}
},
"range": [
- 10015,
- 10057
+ 10011,
+ 10053
],
"loc": {
"start": {
@@ -22280,8 +22282,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 10074,
- 10079
+ 10070,
+ 10075
],
"loc": {
"start": {
@@ -22298,8 +22300,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 10080,
- 10083
+ 10076,
+ 10079
],
"loc": {
"start": {
@@ -22313,8 +22315,8 @@
}
},
"range": [
- 10074,
- 10083
+ 10070,
+ 10079
],
"loc": {
"start": {
@@ -22332,8 +22334,8 @@
"type": "Identifier",
"name": "btn_prev",
"range": [
- 10084,
- 10092
+ 10080,
+ 10088
],
"loc": {
"start": {
@@ -22351,8 +22353,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 10094,
- 10101
+ 10090,
+ 10097
],
"loc": {
"start": {
@@ -22372,8 +22374,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 10103,
- 10106
+ 10099,
+ 10102
],
"loc": {
"start": {
@@ -22390,8 +22392,8 @@
"type": "Identifier",
"name": "prev",
"range": [
- 10107,
- 10111
+ 10103,
+ 10107
],
"loc": {
"start": {
@@ -22405,8 +22407,8 @@
}
},
"range": [
- 10103,
- 10111
+ 10099,
+ 10107
],
"loc": {
"start": {
@@ -22421,8 +22423,8 @@
}
],
"range": [
- 10074,
- 10112
+ 10070,
+ 10108
],
"loc": {
"start": {
@@ -22436,8 +22438,8 @@
}
},
"range": [
- 10074,
- 10113
+ 10070,
+ 10109
],
"loc": {
"start": {
@@ -22461,8 +22463,8 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 10130,
- 10141
+ 10126,
+ 10137
],
"loc": {
"start": {
@@ -22479,8 +22481,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 10142,
- 10153
+ 10138,
+ 10149
],
"loc": {
"start": {
@@ -22494,8 +22496,8 @@
}
},
"range": [
- 10130,
- 10153
+ 10126,
+ 10149
],
"loc": {
"start": {
@@ -22513,8 +22515,8 @@
"type": "Identifier",
"name": "btn_prev",
"range": [
- 10154,
- 10162
+ 10150,
+ 10158
],
"loc": {
"start": {
@@ -22529,8 +22531,8 @@
}
],
"range": [
- 10130,
- 10163
+ 10126,
+ 10159
],
"loc": {
"start": {
@@ -22544,8 +22546,8 @@
}
},
"range": [
- 10130,
- 10164
+ 10126,
+ 10160
],
"loc": {
"start": {
@@ -22560,8 +22562,8 @@
}
],
"range": [
- 9713,
- 10178
+ 9709,
+ 10174
],
"loc": {
"start": {
@@ -22589,8 +22591,8 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 10202,
- 10213
+ 10198,
+ 10209
],
"loc": {
"start": {
@@ -22607,8 +22609,8 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 10214,
- 10223
+ 10210,
+ 10219
],
"loc": {
"start": {
@@ -22622,8 +22624,8 @@
}
},
"range": [
- 10202,
- 10223
+ 10198,
+ 10219
],
"loc": {
"start": {
@@ -22642,8 +22644,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10226,
- 10230
+ 10222,
+ 10226
],
"loc": {
"start": {
@@ -22660,8 +22662,8 @@
"type": "Identifier",
"name": "btnPrevPageHtml",
"range": [
- 10231,
- 10246
+ 10227,
+ 10242
],
"loc": {
"start": {
@@ -22675,8 +22677,8 @@
}
},
"range": [
- 10226,
- 10246
+ 10222,
+ 10242
],
"loc": {
"start": {
@@ -22690,8 +22692,8 @@
}
},
"range": [
- 10202,
- 10246
+ 10198,
+ 10242
],
"loc": {
"start": {
@@ -22705,8 +22707,8 @@
}
},
"range": [
- 10202,
- 10247
+ 10198,
+ 10243
],
"loc": {
"start": {
@@ -22730,8 +22732,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 10264,
- 10269
+ 10260,
+ 10265
],
"loc": {
"start": {
@@ -22748,8 +22750,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 10270,
- 10273
+ 10266,
+ 10269
],
"loc": {
"start": {
@@ -22763,8 +22765,8 @@
}
},
"range": [
- 10264,
- 10273
+ 10260,
+ 10269
],
"loc": {
"start": {
@@ -22782,8 +22784,8 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 10274,
- 10285
+ 10270,
+ 10281
],
"loc": {
"start": {
@@ -22801,8 +22803,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 10287,
- 10294
+ 10283,
+ 10290
],
"loc": {
"start": {
@@ -22822,8 +22824,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 10296,
- 10299
+ 10292,
+ 10295
],
"loc": {
"start": {
@@ -22840,8 +22842,8 @@
"type": "Identifier",
"name": "prev",
"range": [
- 10300,
- 10304
+ 10296,
+ 10300
],
"loc": {
"start": {
@@ -22855,8 +22857,8 @@
}
},
"range": [
- 10296,
- 10304
+ 10292,
+ 10300
],
"loc": {
"start": {
@@ -22871,8 +22873,8 @@
}
],
"range": [
- 10264,
- 10305
+ 10260,
+ 10301
],
"loc": {
"start": {
@@ -22886,8 +22888,8 @@
}
},
"range": [
- 10264,
- 10306
+ 10260,
+ 10302
],
"loc": {
"start": {
@@ -22902,8 +22904,8 @@
}
],
"range": [
- 10184,
- 10320
+ 10180,
+ 10316
],
"loc": {
"start": {
@@ -22917,8 +22919,8 @@
}
},
"range": [
- 9688,
- 10320
+ 9684,
+ 10316
],
"loc": {
"start": {
@@ -22935,8 +22937,8 @@
"type": "Line",
"value": " Previous button",
"range": [
- 9657,
- 9675
+ 9653,
+ 9671
],
"loc": {
"start": {
@@ -22955,8 +22957,8 @@
"type": "Line",
"value": " Last button",
"range": [
- 10333,
- 10347
+ 10329,
+ 10343
],
"loc": {
"start": {
@@ -22982,8 +22984,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10364,
- 10368
+ 10360,
+ 10364
],
"loc": {
"start": {
@@ -23000,8 +23002,8 @@
"type": "Identifier",
"name": "btnLastPageHtml",
"range": [
- 10369,
- 10384
+ 10365,
+ 10380
],
"loc": {
"start": {
@@ -23015,8 +23017,8 @@
}
},
"range": [
- 10364,
- 10384
+ 10360,
+ 10380
],
"loc": {
"start": {
@@ -23031,8 +23033,8 @@
},
"prefix": true,
"range": [
- 10363,
- 10384
+ 10359,
+ 10380
],
"loc": {
"start": {
@@ -23057,8 +23059,8 @@
"type": "Identifier",
"name": "btn_last",
"range": [
- 10407,
- 10415
+ 10403,
+ 10411
],
"loc": {
"start": {
@@ -23080,8 +23082,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 10418,
- 10421
+ 10414,
+ 10417
],
"loc": {
"start": {
@@ -23098,8 +23100,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 10422,
- 10428
+ 10418,
+ 10424
],
"loc": {
"start": {
@@ -23113,8 +23115,8 @@
}
},
"range": [
- 10418,
- 10428
+ 10414,
+ 10424
],
"loc": {
"start": {
@@ -23135,8 +23137,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10450,
- 10452
+ 10446,
+ 10448
],
"loc": {
"start": {
@@ -23153,8 +23155,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 10453,
- 10463
+ 10449,
+ 10459
],
"loc": {
"start": {
@@ -23168,8 +23170,8 @@
}
},
"range": [
- 10450,
- 10463
+ 10446,
+ 10459
],
"loc": {
"start": {
@@ -23190,8 +23192,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 10486,
- 10490
+ 10482,
+ 10486
],
"loc": {
"start": {
@@ -23213,8 +23215,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10492,
- 10496
+ 10488,
+ 10492
],
"loc": {
"start": {
@@ -23231,8 +23233,8 @@
"type": "Identifier",
"name": "prfxBtnLast",
"range": [
- 10497,
- 10508
+ 10493,
+ 10504
],
"loc": {
"start": {
@@ -23246,8 +23248,8 @@
}
},
"range": [
- 10492,
- 10508
+ 10488,
+ 10504
],
"loc": {
"start": {
@@ -23267,8 +23269,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 10509,
- 10511
+ 10505,
+ 10507
],
"loc": {
"start": {
@@ -23285,8 +23287,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 10512,
- 10514
+ 10508,
+ 10510
],
"loc": {
"start": {
@@ -23300,8 +23302,8 @@
}
},
"range": [
- 10509,
- 10514
+ 10505,
+ 10510
],
"loc": {
"start": {
@@ -23315,8 +23317,8 @@
}
},
"range": [
- 10492,
- 10514
+ 10488,
+ 10510
],
"loc": {
"start": {
@@ -23331,8 +23333,8 @@
}
],
"range": [
- 10485,
- 10515
+ 10481,
+ 10511
],
"loc": {
"start": {
@@ -23353,8 +23355,8 @@
"value": "type",
"raw": "'type'",
"range": [
- 10538,
- 10544
+ 10534,
+ 10540
],
"loc": {
"start": {
@@ -23372,8 +23374,8 @@
"value": "button",
"raw": "'button'",
"range": [
- 10546,
- 10554
+ 10542,
+ 10550
],
"loc": {
"start": {
@@ -23388,8 +23390,8 @@
}
],
"range": [
- 10537,
- 10555
+ 10533,
+ 10551
],
"loc": {
"start": {
@@ -23410,8 +23412,8 @@
"value": "value",
"raw": "'value'",
"range": [
- 10578,
- 10585
+ 10574,
+ 10581
],
"loc": {
"start": {
@@ -23430,8 +23432,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10587,
- 10591
+ 10583,
+ 10587
],
"loc": {
"start": {
@@ -23448,8 +23450,8 @@
"type": "Identifier",
"name": "btnLastPageText",
"range": [
- 10592,
- 10607
+ 10588,
+ 10603
],
"loc": {
"start": {
@@ -23463,8 +23465,8 @@
}
},
"range": [
- 10587,
- 10607
+ 10583,
+ 10603
],
"loc": {
"start": {
@@ -23479,8 +23481,8 @@
}
],
"range": [
- 10577,
- 10608
+ 10573,
+ 10604
],
"loc": {
"start": {
@@ -23501,8 +23503,8 @@
"value": "title",
"raw": "'title'",
"range": [
- 10631,
- 10638
+ 10627,
+ 10634
],
"loc": {
"start": {
@@ -23520,8 +23522,8 @@
"value": "Last",
"raw": "'Last'",
"range": [
- 10640,
- 10646
+ 10636,
+ 10642
],
"loc": {
"start": {
@@ -23536,8 +23538,8 @@
}
],
"range": [
- 10630,
- 10647
+ 10626,
+ 10643
],
"loc": {
"start": {
@@ -23552,8 +23554,8 @@
}
],
"range": [
- 10418,
- 10665
+ 10414,
+ 10661
],
"loc": {
"start": {
@@ -23567,8 +23569,8 @@
}
},
"range": [
- 10407,
- 10665
+ 10403,
+ 10661
],
"loc": {
"start": {
@@ -23584,8 +23586,8 @@
],
"kind": "var",
"range": [
- 10403,
- 10666
+ 10399,
+ 10662
],
"loc": {
"start": {
@@ -23610,8 +23612,8 @@
"type": "Identifier",
"name": "btn_last",
"range": [
- 10683,
- 10691
+ 10679,
+ 10687
],
"loc": {
"start": {
@@ -23628,8 +23630,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 10692,
- 10701
+ 10688,
+ 10697
],
"loc": {
"start": {
@@ -23643,8 +23645,8 @@
}
},
"range": [
- 10683,
- 10701
+ 10679,
+ 10697
],
"loc": {
"start": {
@@ -23663,8 +23665,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10704,
- 10708
+ 10700,
+ 10704
],
"loc": {
"start": {
@@ -23681,8 +23683,8 @@
"type": "Identifier",
"name": "btnPageCssClass",
"range": [
- 10709,
- 10724
+ 10705,
+ 10720
],
"loc": {
"start": {
@@ -23696,8 +23698,8 @@
}
},
"range": [
- 10704,
- 10724
+ 10700,
+ 10720
],
"loc": {
"start": {
@@ -23711,8 +23713,8 @@
}
},
"range": [
- 10683,
- 10724
+ 10679,
+ 10720
],
"loc": {
"start": {
@@ -23726,8 +23728,8 @@
}
},
"range": [
- 10683,
- 10725
+ 10679,
+ 10721
],
"loc": {
"start": {
@@ -23751,8 +23753,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 10742,
- 10747
+ 10738,
+ 10743
],
"loc": {
"start": {
@@ -23769,8 +23771,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 10748,
- 10751
+ 10744,
+ 10747
],
"loc": {
"start": {
@@ -23784,8 +23786,8 @@
}
},
"range": [
- 10742,
- 10751
+ 10738,
+ 10747
],
"loc": {
"start": {
@@ -23803,8 +23805,8 @@
"type": "Identifier",
"name": "btn_last",
"range": [
- 10752,
- 10760
+ 10748,
+ 10756
],
"loc": {
"start": {
@@ -23822,8 +23824,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 10762,
- 10769
+ 10758,
+ 10765
],
"loc": {
"start": {
@@ -23843,8 +23845,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 10771,
- 10774
+ 10767,
+ 10770
],
"loc": {
"start": {
@@ -23861,8 +23863,8 @@
"type": "Identifier",
"name": "last",
"range": [
- 10775,
- 10779
+ 10771,
+ 10775
],
"loc": {
"start": {
@@ -23876,8 +23878,8 @@
}
},
"range": [
- 10771,
- 10779
+ 10767,
+ 10775
],
"loc": {
"start": {
@@ -23892,8 +23894,8 @@
}
],
"range": [
- 10742,
- 10780
+ 10738,
+ 10776
],
"loc": {
"start": {
@@ -23907,8 +23909,8 @@
}
},
"range": [
- 10742,
- 10781
+ 10738,
+ 10777
],
"loc": {
"start": {
@@ -23932,8 +23934,8 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 10798,
- 10809
+ 10794,
+ 10805
],
"loc": {
"start": {
@@ -23950,8 +23952,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 10810,
- 10821
+ 10806,
+ 10817
],
"loc": {
"start": {
@@ -23965,8 +23967,8 @@
}
},
"range": [
- 10798,
- 10821
+ 10794,
+ 10817
],
"loc": {
"start": {
@@ -23984,8 +23986,8 @@
"type": "Identifier",
"name": "btn_last",
"range": [
- 10822,
- 10830
+ 10818,
+ 10826
],
"loc": {
"start": {
@@ -24000,8 +24002,8 @@
}
],
"range": [
- 10798,
- 10831
+ 10794,
+ 10827
],
"loc": {
"start": {
@@ -24015,8 +24017,8 @@
}
},
"range": [
- 10798,
- 10832
+ 10794,
+ 10828
],
"loc": {
"start": {
@@ -24031,8 +24033,8 @@
}
],
"range": [
- 10385,
- 10846
+ 10381,
+ 10842
],
"loc": {
"start": {
@@ -24060,8 +24062,8 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 10870,
- 10881
+ 10866,
+ 10877
],
"loc": {
"start": {
@@ -24078,8 +24080,8 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 10882,
- 10891
+ 10878,
+ 10887
],
"loc": {
"start": {
@@ -24093,8 +24095,8 @@
}
},
"range": [
- 10870,
- 10891
+ 10866,
+ 10887
],
"loc": {
"start": {
@@ -24113,8 +24115,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 10894,
- 10898
+ 10890,
+ 10894
],
"loc": {
"start": {
@@ -24131,8 +24133,8 @@
"type": "Identifier",
"name": "btnLastPageHtml",
"range": [
- 10899,
- 10914
+ 10895,
+ 10910
],
"loc": {
"start": {
@@ -24146,8 +24148,8 @@
}
},
"range": [
- 10894,
- 10914
+ 10890,
+ 10910
],
"loc": {
"start": {
@@ -24161,8 +24163,8 @@
}
},
"range": [
- 10870,
- 10914
+ 10866,
+ 10910
],
"loc": {
"start": {
@@ -24176,8 +24178,8 @@
}
},
"range": [
- 10870,
- 10915
+ 10866,
+ 10911
],
"loc": {
"start": {
@@ -24201,8 +24203,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 10932,
- 10937
+ 10928,
+ 10933
],
"loc": {
"start": {
@@ -24219,8 +24221,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 10938,
- 10941
+ 10934,
+ 10937
],
"loc": {
"start": {
@@ -24234,8 +24236,8 @@
}
},
"range": [
- 10932,
- 10941
+ 10928,
+ 10937
],
"loc": {
"start": {
@@ -24253,8 +24255,8 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 10942,
- 10953
+ 10938,
+ 10949
],
"loc": {
"start": {
@@ -24272,8 +24274,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 10955,
- 10962
+ 10951,
+ 10958
],
"loc": {
"start": {
@@ -24293,8 +24295,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 10964,
- 10967
+ 10960,
+ 10963
],
"loc": {
"start": {
@@ -24311,8 +24313,8 @@
"type": "Identifier",
"name": "last",
"range": [
- 10968,
- 10972
+ 10964,
+ 10968
],
"loc": {
"start": {
@@ -24326,8 +24328,8 @@
}
},
"range": [
- 10964,
- 10972
+ 10960,
+ 10968
],
"loc": {
"start": {
@@ -24342,8 +24344,8 @@
}
],
"range": [
- 10932,
- 10973
+ 10928,
+ 10969
],
"loc": {
"start": {
@@ -24357,8 +24359,8 @@
}
},
"range": [
- 10932,
- 10974
+ 10928,
+ 10970
],
"loc": {
"start": {
@@ -24373,8 +24375,8 @@
}
],
"range": [
- 10852,
- 10988
+ 10848,
+ 10984
],
"loc": {
"start": {
@@ -24388,8 +24390,8 @@
}
},
"range": [
- 10360,
- 10988
+ 10356,
+ 10984
],
"loc": {
"start": {
@@ -24406,8 +24408,8 @@
"type": "Line",
"value": " Last button",
"range": [
- 10333,
- 10347
+ 10329,
+ 10343
],
"loc": {
"start": {
@@ -24426,8 +24428,8 @@
"type": "Line",
"value": " First button",
"range": [
- 11001,
- 11016
+ 10997,
+ 11012
],
"loc": {
"start": {
@@ -24453,8 +24455,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11033,
- 11037
+ 11029,
+ 11033
],
"loc": {
"start": {
@@ -24471,8 +24473,8 @@
"type": "Identifier",
"name": "btnFirstPageHtml",
"range": [
- 11038,
- 11054
+ 11034,
+ 11050
],
"loc": {
"start": {
@@ -24486,8 +24488,8 @@
}
},
"range": [
- 11033,
- 11054
+ 11029,
+ 11050
],
"loc": {
"start": {
@@ -24502,8 +24504,8 @@
},
"prefix": true,
"range": [
- 11032,
- 11054
+ 11028,
+ 11050
],
"loc": {
"start": {
@@ -24528,8 +24530,8 @@
"type": "Identifier",
"name": "btn_first",
"range": [
- 11077,
- 11086
+ 11073,
+ 11082
],
"loc": {
"start": {
@@ -24551,8 +24553,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11089,
- 11092
+ 11085,
+ 11088
],
"loc": {
"start": {
@@ -24569,8 +24571,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 11093,
- 11099
+ 11089,
+ 11095
],
"loc": {
"start": {
@@ -24584,8 +24586,8 @@
}
},
"range": [
- 11089,
- 11099
+ 11085,
+ 11095
],
"loc": {
"start": {
@@ -24606,8 +24608,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11121,
- 11123
+ 11117,
+ 11119
],
"loc": {
"start": {
@@ -24624,8 +24626,8 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 11124,
- 11134
+ 11120,
+ 11130
],
"loc": {
"start": {
@@ -24639,8 +24641,8 @@
}
},
"range": [
- 11121,
- 11134
+ 11117,
+ 11130
],
"loc": {
"start": {
@@ -24661,8 +24663,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 11157,
- 11161
+ 11153,
+ 11157
],
"loc": {
"start": {
@@ -24684,8 +24686,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11163,
- 11167
+ 11159,
+ 11163
],
"loc": {
"start": {
@@ -24702,8 +24704,8 @@
"type": "Identifier",
"name": "prfxBtnFirst",
"range": [
- 11168,
- 11180
+ 11164,
+ 11176
],
"loc": {
"start": {
@@ -24717,8 +24719,8 @@
}
},
"range": [
- 11163,
- 11180
+ 11159,
+ 11176
],
"loc": {
"start": {
@@ -24738,8 +24740,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11181,
- 11183
+ 11177,
+ 11179
],
"loc": {
"start": {
@@ -24756,8 +24758,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 11184,
- 11186
+ 11180,
+ 11182
],
"loc": {
"start": {
@@ -24771,8 +24773,8 @@
}
},
"range": [
- 11181,
- 11186
+ 11177,
+ 11182
],
"loc": {
"start": {
@@ -24786,8 +24788,8 @@
}
},
"range": [
- 11163,
- 11186
+ 11159,
+ 11182
],
"loc": {
"start": {
@@ -24802,8 +24804,8 @@
}
],
"range": [
- 11156,
- 11187
+ 11152,
+ 11183
],
"loc": {
"start": {
@@ -24824,8 +24826,8 @@
"value": "type",
"raw": "'type'",
"range": [
- 11210,
- 11216
+ 11206,
+ 11212
],
"loc": {
"start": {
@@ -24843,8 +24845,8 @@
"value": "button",
"raw": "'button'",
"range": [
- 11218,
- 11226
+ 11214,
+ 11222
],
"loc": {
"start": {
@@ -24859,8 +24861,8 @@
}
],
"range": [
- 11209,
- 11227
+ 11205,
+ 11223
],
"loc": {
"start": {
@@ -24881,8 +24883,8 @@
"value": "value",
"raw": "'value'",
"range": [
- 11250,
- 11257
+ 11246,
+ 11253
],
"loc": {
"start": {
@@ -24901,8 +24903,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11259,
- 11263
+ 11255,
+ 11259
],
"loc": {
"start": {
@@ -24919,8 +24921,8 @@
"type": "Identifier",
"name": "btnFirstPageText",
"range": [
- 11264,
- 11280
+ 11260,
+ 11276
],
"loc": {
"start": {
@@ -24934,8 +24936,8 @@
}
},
"range": [
- 11259,
- 11280
+ 11255,
+ 11276
],
"loc": {
"start": {
@@ -24950,8 +24952,8 @@
}
],
"range": [
- 11249,
- 11281
+ 11245,
+ 11277
],
"loc": {
"start": {
@@ -24972,8 +24974,8 @@
"value": "title",
"raw": "'title'",
"range": [
- 11304,
- 11311
+ 11300,
+ 11307
],
"loc": {
"start": {
@@ -24991,8 +24993,8 @@
"value": "First",
"raw": "'First'",
"range": [
- 11313,
- 11320
+ 11309,
+ 11316
],
"loc": {
"start": {
@@ -25007,8 +25009,8 @@
}
],
"range": [
- 11303,
- 11321
+ 11299,
+ 11317
],
"loc": {
"start": {
@@ -25023,8 +25025,8 @@
}
],
"range": [
- 11089,
- 11339
+ 11085,
+ 11335
],
"loc": {
"start": {
@@ -25038,8 +25040,8 @@
}
},
"range": [
- 11077,
- 11339
+ 11073,
+ 11335
],
"loc": {
"start": {
@@ -25055,8 +25057,8 @@
],
"kind": "var",
"range": [
- 11073,
- 11340
+ 11069,
+ 11336
],
"loc": {
"start": {
@@ -25081,8 +25083,8 @@
"type": "Identifier",
"name": "btn_first",
"range": [
- 11357,
- 11366
+ 11353,
+ 11362
],
"loc": {
"start": {
@@ -25099,8 +25101,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 11367,
- 11376
+ 11363,
+ 11372
],
"loc": {
"start": {
@@ -25114,8 +25116,8 @@
}
},
"range": [
- 11357,
- 11376
+ 11353,
+ 11372
],
"loc": {
"start": {
@@ -25134,8 +25136,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11379,
- 11383
+ 11375,
+ 11379
],
"loc": {
"start": {
@@ -25152,8 +25154,8 @@
"type": "Identifier",
"name": "btnPageCssClass",
"range": [
- 11384,
- 11399
+ 11380,
+ 11395
],
"loc": {
"start": {
@@ -25167,8 +25169,8 @@
}
},
"range": [
- 11379,
- 11399
+ 11375,
+ 11395
],
"loc": {
"start": {
@@ -25182,8 +25184,8 @@
}
},
"range": [
- 11357,
- 11399
+ 11353,
+ 11395
],
"loc": {
"start": {
@@ -25197,8 +25199,8 @@
}
},
"range": [
- 11357,
- 11400
+ 11353,
+ 11396
],
"loc": {
"start": {
@@ -25222,8 +25224,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 11417,
- 11422
+ 11413,
+ 11418
],
"loc": {
"start": {
@@ -25240,8 +25242,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 11423,
- 11426
+ 11419,
+ 11422
],
"loc": {
"start": {
@@ -25255,8 +25257,8 @@
}
},
"range": [
- 11417,
- 11426
+ 11413,
+ 11422
],
"loc": {
"start": {
@@ -25274,8 +25276,8 @@
"type": "Identifier",
"name": "btn_first",
"range": [
- 11427,
- 11436
+ 11423,
+ 11432
],
"loc": {
"start": {
@@ -25293,8 +25295,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 11438,
- 11445
+ 11434,
+ 11441
],
"loc": {
"start": {
@@ -25314,8 +25316,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 11447,
- 11450
+ 11443,
+ 11446
],
"loc": {
"start": {
@@ -25332,8 +25334,8 @@
"type": "Identifier",
"name": "first",
"range": [
- 11451,
- 11456
+ 11447,
+ 11452
],
"loc": {
"start": {
@@ -25347,8 +25349,8 @@
}
},
"range": [
- 11447,
- 11456
+ 11443,
+ 11452
],
"loc": {
"start": {
@@ -25363,8 +25365,8 @@
}
],
"range": [
- 11417,
- 11457
+ 11413,
+ 11453
],
"loc": {
"start": {
@@ -25378,8 +25380,8 @@
}
},
"range": [
- 11417,
- 11458
+ 11413,
+ 11454
],
"loc": {
"start": {
@@ -25403,8 +25405,8 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 11475,
- 11487
+ 11471,
+ 11483
],
"loc": {
"start": {
@@ -25421,8 +25423,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11488,
- 11499
+ 11484,
+ 11495
],
"loc": {
"start": {
@@ -25436,8 +25438,8 @@
}
},
"range": [
- 11475,
- 11499
+ 11471,
+ 11495
],
"loc": {
"start": {
@@ -25455,8 +25457,8 @@
"type": "Identifier",
"name": "btn_first",
"range": [
- 11500,
- 11509
+ 11496,
+ 11505
],
"loc": {
"start": {
@@ -25471,8 +25473,8 @@
}
],
"range": [
- 11475,
- 11510
+ 11471,
+ 11506
],
"loc": {
"start": {
@@ -25486,8 +25488,8 @@
}
},
"range": [
- 11475,
- 11511
+ 11471,
+ 11507
],
"loc": {
"start": {
@@ -25502,8 +25504,8 @@
}
],
"range": [
- 11055,
- 11525
+ 11051,
+ 11521
],
"loc": {
"start": {
@@ -25531,8 +25533,8 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 11549,
- 11561
+ 11545,
+ 11557
],
"loc": {
"start": {
@@ -25549,8 +25551,8 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 11562,
- 11571
+ 11558,
+ 11567
],
"loc": {
"start": {
@@ -25564,8 +25566,8 @@
}
},
"range": [
- 11549,
- 11571
+ 11545,
+ 11567
],
"loc": {
"start": {
@@ -25584,8 +25586,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11574,
- 11578
+ 11570,
+ 11574
],
"loc": {
"start": {
@@ -25602,8 +25604,8 @@
"type": "Identifier",
"name": "btnFirstPageHtml",
"range": [
- 11579,
- 11595
+ 11575,
+ 11591
],
"loc": {
"start": {
@@ -25617,8 +25619,8 @@
}
},
"range": [
- 11574,
- 11595
+ 11570,
+ 11591
],
"loc": {
"start": {
@@ -25632,8 +25634,8 @@
}
},
"range": [
- 11549,
- 11595
+ 11545,
+ 11591
],
"loc": {
"start": {
@@ -25647,8 +25649,8 @@
}
},
"range": [
- 11549,
- 11596
+ 11545,
+ 11592
],
"loc": {
"start": {
@@ -25672,8 +25674,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 11613,
- 11618
+ 11609,
+ 11614
],
"loc": {
"start": {
@@ -25690,8 +25692,8 @@
"type": "Identifier",
"name": "add",
"range": [
- 11619,
- 11622
+ 11615,
+ 11618
],
"loc": {
"start": {
@@ -25705,8 +25707,8 @@
}
},
"range": [
- 11613,
- 11622
+ 11609,
+ 11618
],
"loc": {
"start": {
@@ -25724,8 +25726,8 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 11623,
- 11635
+ 11619,
+ 11631
],
"loc": {
"start": {
@@ -25743,8 +25745,8 @@
"value": "click",
"raw": "'click'",
"range": [
- 11637,
- 11644
+ 11633,
+ 11640
],
"loc": {
"start": {
@@ -25764,8 +25766,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 11646,
- 11649
+ 11642,
+ 11645
],
"loc": {
"start": {
@@ -25782,8 +25784,8 @@
"type": "Identifier",
"name": "first",
"range": [
- 11650,
- 11655
+ 11646,
+ 11651
],
"loc": {
"start": {
@@ -25797,8 +25799,8 @@
}
},
"range": [
- 11646,
- 11655
+ 11642,
+ 11651
],
"loc": {
"start": {
@@ -25813,8 +25815,8 @@
}
],
"range": [
- 11613,
- 11656
+ 11609,
+ 11652
],
"loc": {
"start": {
@@ -25828,8 +25830,8 @@
}
},
"range": [
- 11613,
- 11657
+ 11609,
+ 11653
],
"loc": {
"start": {
@@ -25844,8 +25846,8 @@
}
],
"range": [
- 11531,
- 11671
+ 11527,
+ 11667
],
"loc": {
"start": {
@@ -25859,8 +25861,8 @@
}
},
"range": [
- 11029,
- 11671
+ 11025,
+ 11667
],
"loc": {
"start": {
@@ -25877,8 +25879,8 @@
"type": "Line",
"value": " First button",
"range": [
- 11001,
- 11016
+ 10997,
+ 11012
],
"loc": {
"start": {
@@ -25895,8 +25897,8 @@
}
],
"range": [
- 8975,
- 11681
+ 8971,
+ 11677
],
"loc": {
"start": {
@@ -25911,8 +25913,8 @@
},
"alternate": null,
"range": [
- 8953,
- 11681
+ 8949,
+ 11677
],
"loc": {
"start": {
@@ -25929,8 +25931,8 @@
"type": "Line",
"value": " paging elements (buttons+drop-down list) are added to defined element",
"range": [
- 11691,
- 11763
+ 11687,
+ 11759
],
"loc": {
"start": {
@@ -25956,8 +25958,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11776,
- 11780
+ 11772,
+ 11776
],
"loc": {
"start": {
@@ -25974,8 +25976,8 @@
"type": "Identifier",
"name": "pagingTgtId",
"range": [
- 11781,
- 11792
+ 11777,
+ 11788
],
"loc": {
"start": {
@@ -25989,8 +25991,8 @@
}
},
"range": [
- 11776,
- 11792
+ 11772,
+ 11788
],
"loc": {
"start": {
@@ -26005,8 +26007,8 @@
},
"prefix": true,
"range": [
- 11775,
- 11792
+ 11771,
+ 11788
],
"loc": {
"start": {
@@ -26033,8 +26035,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11807,
- 11809
+ 11803,
+ 11805
],
"loc": {
"start": {
@@ -26051,8 +26053,8 @@
"type": "Identifier",
"name": "setToolbar",
"range": [
- 11810,
- 11820
+ 11806,
+ 11816
],
"loc": {
"start": {
@@ -26066,8 +26068,8 @@
}
},
"range": [
- 11807,
- 11820
+ 11803,
+ 11816
],
"loc": {
"start": {
@@ -26082,8 +26084,8 @@
},
"arguments": [],
"range": [
- 11807,
- 11822
+ 11803,
+ 11818
],
"loc": {
"start": {
@@ -26097,8 +26099,8 @@
}
},
"range": [
- 11807,
- 11823
+ 11803,
+ 11819
],
"loc": {
"start": {
@@ -26113,8 +26115,8 @@
}
],
"range": [
- 11793,
- 11833
+ 11789,
+ 11829
],
"loc": {
"start": {
@@ -26129,8 +26131,8 @@
},
"alternate": null,
"range": [
- 11772,
- 11833
+ 11768,
+ 11829
],
"loc": {
"start": {
@@ -26147,8 +26149,8 @@
"type": "Line",
"value": " paging elements (buttons+drop-down list) are added to defined element",
"range": [
- 11691,
- 11763
+ 11687,
+ 11759
],
"loc": {
"start": {
@@ -26172,8 +26174,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 11846,
- 11854
+ 11842,
+ 11850
],
"loc": {
"start": {
@@ -26197,8 +26199,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11858,
- 11862
+ 11854,
+ 11858
],
"loc": {
"start": {
@@ -26215,8 +26217,8 @@
"type": "Identifier",
"name": "pagingTgtId",
"range": [
- 11863,
- 11874
+ 11859,
+ 11870
],
"loc": {
"start": {
@@ -26230,8 +26232,8 @@
}
},
"range": [
- 11858,
- 11874
+ 11854,
+ 11870
],
"loc": {
"start": {
@@ -26246,8 +26248,8 @@
},
"prefix": true,
"range": [
- 11857,
- 11874
+ 11853,
+ 11870
],
"loc": {
"start": {
@@ -26267,8 +26269,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 11877,
- 11879
+ 11873,
+ 11875
],
"loc": {
"start": {
@@ -26285,8 +26287,8 @@
"type": "Identifier",
"name": "mDiv",
"range": [
- 11880,
- 11884
+ 11876,
+ 11880
],
"loc": {
"start": {
@@ -26300,8 +26302,8 @@
}
},
"range": [
- 11877,
- 11884
+ 11873,
+ 11880
],
"loc": {
"start": {
@@ -26323,8 +26325,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 11887,
- 11890
+ 11883,
+ 11886
],
"loc": {
"start": {
@@ -26341,8 +26343,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 11891,
- 11893
+ 11887,
+ 11889
],
"loc": {
"start": {
@@ -26356,8 +26358,8 @@
}
},
"range": [
- 11887,
- 11893
+ 11883,
+ 11889
],
"loc": {
"start": {
@@ -26377,8 +26379,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 11894,
- 11898
+ 11890,
+ 11894
],
"loc": {
"start": {
@@ -26395,8 +26397,8 @@
"type": "Identifier",
"name": "pagingTgtId",
"range": [
- 11899,
- 11910
+ 11895,
+ 11906
],
"loc": {
"start": {
@@ -26410,8 +26412,8 @@
}
},
"range": [
- 11894,
- 11910
+ 11890,
+ 11906
],
"loc": {
"start": {
@@ -26426,8 +26428,8 @@
}
],
"range": [
- 11887,
- 11911
+ 11883,
+ 11907
],
"loc": {
"start": {
@@ -26441,8 +26443,8 @@
}
},
"range": [
- 11857,
- 11911
+ 11853,
+ 11907
],
"loc": {
"start": {
@@ -26456,8 +26458,8 @@
}
},
"range": [
- 11846,
- 11911
+ 11842,
+ 11907
],
"loc": {
"start": {
@@ -26473,8 +26475,8 @@
],
"kind": "var",
"range": [
- 11842,
- 11912
+ 11838,
+ 11908
],
"loc": {
"start": {
@@ -26498,8 +26500,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 11921,
- 11929
+ 11917,
+ 11925
],
"loc": {
"start": {
@@ -26516,8 +26518,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11930,
- 11941
+ 11926,
+ 11937
],
"loc": {
"start": {
@@ -26531,8 +26533,8 @@
}
},
"range": [
- 11921,
- 11941
+ 11917,
+ 11937
],
"loc": {
"start": {
@@ -26550,8 +26552,8 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 11942,
- 11954
+ 11938,
+ 11950
],
"loc": {
"start": {
@@ -26566,8 +26568,8 @@
}
],
"range": [
- 11921,
- 11955
+ 11917,
+ 11951
],
"loc": {
"start": {
@@ -26581,8 +26583,8 @@
}
},
"range": [
- 11921,
- 11956
+ 11917,
+ 11952
],
"loc": {
"start": {
@@ -26606,8 +26608,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 11965,
- 11973
+ 11961,
+ 11969
],
"loc": {
"start": {
@@ -26624,8 +26626,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 11974,
- 11985
+ 11970,
+ 11981
],
"loc": {
"start": {
@@ -26639,8 +26641,8 @@
}
},
"range": [
- 11965,
- 11985
+ 11961,
+ 11981
],
"loc": {
"start": {
@@ -26658,8 +26660,8 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 11986,
- 11997
+ 11982,
+ 11993
],
"loc": {
"start": {
@@ -26674,8 +26676,8 @@
}
],
"range": [
- 11965,
- 11998
+ 11961,
+ 11994
],
"loc": {
"start": {
@@ -26689,8 +26691,8 @@
}
},
"range": [
- 11965,
- 11999
+ 11961,
+ 11995
],
"loc": {
"start": {
@@ -26712,8 +26714,8 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 12013,
- 12025
+ 12009,
+ 12021
],
"loc": {
"start": {
@@ -26735,8 +26737,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12028,
- 12031
+ 12024,
+ 12027
],
"loc": {
"start": {
@@ -26753,8 +26755,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 12032,
- 12038
+ 12028,
+ 12034
],
"loc": {
"start": {
@@ -26768,8 +26770,8 @@
}
},
"range": [
- 12028,
- 12038
+ 12024,
+ 12034
],
"loc": {
"start": {
@@ -26788,8 +26790,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 12052,
- 12058
+ 12048,
+ 12054
],
"loc": {
"start": {
@@ -26810,8 +26812,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 12060,
- 12064
+ 12056,
+ 12060
],
"loc": {
"start": {
@@ -26833,8 +26835,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12066,
- 12070
+ 12062,
+ 12066
],
"loc": {
"start": {
@@ -26851,8 +26853,8 @@
"type": "Identifier",
"name": "prfxPgBeforeSpan",
"range": [
- 12071,
- 12087
+ 12067,
+ 12083
],
"loc": {
"start": {
@@ -26866,8 +26868,8 @@
}
},
"range": [
- 12066,
- 12087
+ 12062,
+ 12083
],
"loc": {
"start": {
@@ -26887,8 +26889,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12088,
- 12090
+ 12084,
+ 12086
],
"loc": {
"start": {
@@ -26905,8 +26907,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 12091,
- 12093
+ 12087,
+ 12089
],
"loc": {
"start": {
@@ -26920,8 +26922,8 @@
}
},
"range": [
- 12088,
- 12093
+ 12084,
+ 12089
],
"loc": {
"start": {
@@ -26935,8 +26937,8 @@
}
},
"range": [
- 12066,
- 12093
+ 12062,
+ 12089
],
"loc": {
"start": {
@@ -26951,8 +26953,8 @@
}
],
"range": [
- 12059,
- 12094
+ 12055,
+ 12090
],
"loc": {
"start": {
@@ -26967,8 +26969,8 @@
}
],
"range": [
- 12028,
- 12096
+ 12024,
+ 12092
],
"loc": {
"start": {
@@ -26982,8 +26984,8 @@
}
},
"range": [
- 12013,
- 12096
+ 12009,
+ 12092
],
"loc": {
"start": {
@@ -26999,8 +27001,8 @@
],
"kind": "var",
"range": [
- 12009,
- 12097
+ 12005,
+ 12093
],
"loc": {
"start": {
@@ -27024,8 +27026,8 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 12106,
- 12118
+ 12102,
+ 12114
],
"loc": {
"start": {
@@ -27042,8 +27044,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12119,
- 12130
+ 12115,
+ 12126
],
"loc": {
"start": {
@@ -27057,8 +27059,8 @@
}
},
"range": [
- 12106,
- 12130
+ 12102,
+ 12126
],
"loc": {
"start": {
@@ -27081,8 +27083,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12132,
- 12135
+ 12128,
+ 12131
],
"loc": {
"start": {
@@ -27099,8 +27101,8 @@
"type": "Identifier",
"name": "text",
"range": [
- 12136,
- 12140
+ 12132,
+ 12136
],
"loc": {
"start": {
@@ -27114,8 +27116,8 @@
}
},
"range": [
- 12132,
- 12140
+ 12128,
+ 12136
],
"loc": {
"start": {
@@ -27135,8 +27137,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12141,
- 12145
+ 12137,
+ 12141
],
"loc": {
"start": {
@@ -27153,8 +27155,8 @@
"type": "Identifier",
"name": "pageText",
"range": [
- 12146,
- 12154
+ 12142,
+ 12150
],
"loc": {
"start": {
@@ -27168,8 +27170,8 @@
}
},
"range": [
- 12141,
- 12154
+ 12137,
+ 12150
],
"loc": {
"start": {
@@ -27184,8 +27186,8 @@
}
],
"range": [
- 12132,
- 12155
+ 12128,
+ 12151
],
"loc": {
"start": {
@@ -27200,8 +27202,8 @@
}
],
"range": [
- 12106,
- 12157
+ 12102,
+ 12153
],
"loc": {
"start": {
@@ -27215,8 +27217,8 @@
}
},
"range": [
- 12106,
- 12158
+ 12102,
+ 12154
],
"loc": {
"start": {
@@ -27241,8 +27243,8 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 12167,
- 12179
+ 12163,
+ 12175
],
"loc": {
"start": {
@@ -27259,8 +27261,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 12180,
- 12189
+ 12176,
+ 12185
],
"loc": {
"start": {
@@ -27274,8 +27276,8 @@
}
},
"range": [
- 12167,
- 12189
+ 12163,
+ 12185
],
"loc": {
"start": {
@@ -27294,8 +27296,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12192,
- 12196
+ 12188,
+ 12192
],
"loc": {
"start": {
@@ -27312,8 +27314,8 @@
"type": "Identifier",
"name": "nbPgSpanCssClass",
"range": [
- 12197,
- 12213
+ 12193,
+ 12209
],
"loc": {
"start": {
@@ -27327,8 +27329,8 @@
}
},
"range": [
- 12192,
- 12213
+ 12188,
+ 12209
],
"loc": {
"start": {
@@ -27342,8 +27344,8 @@
}
},
"range": [
- 12167,
- 12213
+ 12163,
+ 12209
],
"loc": {
"start": {
@@ -27357,8 +27359,8 @@
}
},
"range": [
- 12167,
- 12214
+ 12163,
+ 12210
],
"loc": {
"start": {
@@ -27382,8 +27384,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12223,
- 12231
+ 12219,
+ 12227
],
"loc": {
"start": {
@@ -27400,8 +27402,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12232,
- 12243
+ 12228,
+ 12239
],
"loc": {
"start": {
@@ -27415,8 +27417,8 @@
}
},
"range": [
- 12223,
- 12243
+ 12219,
+ 12239
],
"loc": {
"start": {
@@ -27434,8 +27436,8 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 12244,
- 12256
+ 12240,
+ 12252
],
"loc": {
"start": {
@@ -27450,8 +27452,8 @@
}
],
"range": [
- 12223,
- 12257
+ 12219,
+ 12253
],
"loc": {
"start": {
@@ -27465,8 +27467,8 @@
}
},
"range": [
- 12223,
- 12258
+ 12219,
+ 12254
],
"loc": {
"start": {
@@ -27490,8 +27492,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12267,
- 12275
+ 12263,
+ 12271
],
"loc": {
"start": {
@@ -27508,8 +27510,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12276,
- 12287
+ 12272,
+ 12283
],
"loc": {
"start": {
@@ -27523,8 +27525,8 @@
}
},
"range": [
- 12267,
- 12287
+ 12263,
+ 12283
],
"loc": {
"start": {
@@ -27542,8 +27544,8 @@
"type": "Identifier",
"name": "slcPages",
"range": [
- 12288,
- 12296
+ 12284,
+ 12292
],
"loc": {
"start": {
@@ -27558,8 +27560,8 @@
}
],
"range": [
- 12267,
- 12297
+ 12263,
+ 12293
],
"loc": {
"start": {
@@ -27573,8 +27575,8 @@
}
},
"range": [
- 12267,
- 12298
+ 12263,
+ 12294
],
"loc": {
"start": {
@@ -27596,8 +27598,8 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 12311,
- 12322
+ 12307,
+ 12318
],
"loc": {
"start": {
@@ -27619,8 +27621,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12325,
- 12328
+ 12321,
+ 12324
],
"loc": {
"start": {
@@ -27637,8 +27639,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 12329,
- 12335
+ 12325,
+ 12331
],
"loc": {
"start": {
@@ -27652,8 +27654,8 @@
}
},
"range": [
- 12325,
- 12335
+ 12321,
+ 12331
],
"loc": {
"start": {
@@ -27672,8 +27674,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 12349,
- 12355
+ 12345,
+ 12351
],
"loc": {
"start": {
@@ -27694,8 +27696,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 12357,
- 12361
+ 12353,
+ 12357
],
"loc": {
"start": {
@@ -27717,8 +27719,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12363,
- 12367
+ 12359,
+ 12363
],
"loc": {
"start": {
@@ -27735,8 +27737,8 @@
"type": "Identifier",
"name": "prfxPgAfterSpan",
"range": [
- 12368,
- 12383
+ 12364,
+ 12379
],
"loc": {
"start": {
@@ -27750,8 +27752,8 @@
}
},
"range": [
- 12363,
- 12383
+ 12359,
+ 12379
],
"loc": {
"start": {
@@ -27771,8 +27773,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12384,
- 12386
+ 12380,
+ 12382
],
"loc": {
"start": {
@@ -27789,8 +27791,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 12387,
- 12389
+ 12383,
+ 12385
],
"loc": {
"start": {
@@ -27804,8 +27806,8 @@
}
},
"range": [
- 12384,
- 12389
+ 12380,
+ 12385
],
"loc": {
"start": {
@@ -27819,8 +27821,8 @@
}
},
"range": [
- 12363,
- 12389
+ 12359,
+ 12385
],
"loc": {
"start": {
@@ -27835,8 +27837,8 @@
}
],
"range": [
- 12356,
- 12390
+ 12352,
+ 12386
],
"loc": {
"start": {
@@ -27851,8 +27853,8 @@
}
],
"range": [
- 12325,
- 12391
+ 12321,
+ 12387
],
"loc": {
"start": {
@@ -27866,8 +27868,8 @@
}
},
"range": [
- 12311,
- 12391
+ 12307,
+ 12387
],
"loc": {
"start": {
@@ -27883,8 +27885,8 @@
],
"kind": "var",
"range": [
- 12307,
- 12392
+ 12303,
+ 12388
],
"loc": {
"start": {
@@ -27908,8 +27910,8 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 12401,
- 12412
+ 12397,
+ 12408
],
"loc": {
"start": {
@@ -27926,8 +27928,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12413,
- 12424
+ 12409,
+ 12420
],
"loc": {
"start": {
@@ -27941,8 +27943,8 @@
}
},
"range": [
- 12401,
- 12424
+ 12397,
+ 12420
],
"loc": {
"start": {
@@ -27965,8 +27967,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12426,
- 12429
+ 12422,
+ 12425
],
"loc": {
"start": {
@@ -27983,8 +27985,8 @@
"type": "Identifier",
"name": "text",
"range": [
- 12430,
- 12434
+ 12426,
+ 12430
],
"loc": {
"start": {
@@ -27998,8 +28000,8 @@
}
},
"range": [
- 12426,
- 12434
+ 12422,
+ 12430
],
"loc": {
"start": {
@@ -28019,8 +28021,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12435,
- 12439
+ 12431,
+ 12435
],
"loc": {
"start": {
@@ -28037,8 +28039,8 @@
"type": "Identifier",
"name": "ofText",
"range": [
- 12440,
- 12446
+ 12436,
+ 12442
],
"loc": {
"start": {
@@ -28052,8 +28054,8 @@
}
},
"range": [
- 12435,
- 12446
+ 12431,
+ 12442
],
"loc": {
"start": {
@@ -28068,8 +28070,8 @@
}
],
"range": [
- 12426,
- 12447
+ 12422,
+ 12443
],
"loc": {
"start": {
@@ -28084,8 +28086,8 @@
}
],
"range": [
- 12401,
- 12449
+ 12397,
+ 12445
],
"loc": {
"start": {
@@ -28099,8 +28101,8 @@
}
},
"range": [
- 12401,
- 12450
+ 12397,
+ 12446
],
"loc": {
"start": {
@@ -28125,8 +28127,8 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 12459,
- 12470
+ 12455,
+ 12466
],
"loc": {
"start": {
@@ -28143,8 +28145,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 12471,
- 12480
+ 12467,
+ 12476
],
"loc": {
"start": {
@@ -28158,8 +28160,8 @@
}
},
"range": [
- 12459,
- 12480
+ 12455,
+ 12476
],
"loc": {
"start": {
@@ -28178,8 +28180,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12483,
- 12487
+ 12479,
+ 12483
],
"loc": {
"start": {
@@ -28196,8 +28198,8 @@
"type": "Identifier",
"name": "nbPgSpanCssClass",
"range": [
- 12488,
- 12504
+ 12484,
+ 12500
],
"loc": {
"start": {
@@ -28211,8 +28213,8 @@
}
},
"range": [
- 12483,
- 12504
+ 12479,
+ 12500
],
"loc": {
"start": {
@@ -28226,8 +28228,8 @@
}
},
"range": [
- 12459,
- 12504
+ 12455,
+ 12500
],
"loc": {
"start": {
@@ -28241,8 +28243,8 @@
}
},
"range": [
- 12459,
- 12505
+ 12455,
+ 12501
],
"loc": {
"start": {
@@ -28266,8 +28268,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12514,
- 12522
+ 12510,
+ 12518
],
"loc": {
"start": {
@@ -28284,8 +28286,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12523,
- 12534
+ 12519,
+ 12530
],
"loc": {
"start": {
@@ -28299,8 +28301,8 @@
}
},
"range": [
- 12514,
- 12534
+ 12510,
+ 12530
],
"loc": {
"start": {
@@ -28318,8 +28320,8 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 12535,
- 12546
+ 12531,
+ 12542
],
"loc": {
"start": {
@@ -28334,8 +28336,8 @@
}
],
"range": [
- 12514,
- 12547
+ 12510,
+ 12543
],
"loc": {
"start": {
@@ -28349,8 +28351,8 @@
}
},
"range": [
- 12514,
- 12548
+ 12510,
+ 12544
],
"loc": {
"start": {
@@ -28372,8 +28374,8 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 12561,
- 12567
+ 12557,
+ 12563
],
"loc": {
"start": {
@@ -28395,8 +28397,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12570,
- 12573
+ 12566,
+ 12569
],
"loc": {
"start": {
@@ -28413,8 +28415,8 @@
"type": "Identifier",
"name": "create",
"range": [
- 12574,
- 12580
+ 12570,
+ 12576
],
"loc": {
"start": {
@@ -28428,8 +28430,8 @@
}
},
"range": [
- 12570,
- 12580
+ 12566,
+ 12576
],
"loc": {
"start": {
@@ -28448,8 +28450,8 @@
"value": "span",
"raw": "'span'",
"range": [
- 12582,
- 12588
+ 12578,
+ 12584
],
"loc": {
"start": {
@@ -28470,8 +28472,8 @@
"value": "id",
"raw": "'id'",
"range": [
- 12590,
- 12594
+ 12586,
+ 12590
],
"loc": {
"start": {
@@ -28493,8 +28495,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12596,
- 12600
+ 12592,
+ 12596
],
"loc": {
"start": {
@@ -28511,8 +28513,8 @@
"type": "Identifier",
"name": "prfxPgSpan",
"range": [
- 12601,
- 12611
+ 12597,
+ 12607
],
"loc": {
"start": {
@@ -28526,8 +28528,8 @@
}
},
"range": [
- 12596,
- 12611
+ 12592,
+ 12607
],
"loc": {
"start": {
@@ -28547,8 +28549,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12612,
- 12614
+ 12608,
+ 12610
],
"loc": {
"start": {
@@ -28565,8 +28567,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 12615,
- 12617
+ 12611,
+ 12613
],
"loc": {
"start": {
@@ -28580,8 +28582,8 @@
}
},
"range": [
- 12612,
- 12617
+ 12608,
+ 12613
],
"loc": {
"start": {
@@ -28595,8 +28597,8 @@
}
},
"range": [
- 12596,
- 12617
+ 12592,
+ 12613
],
"loc": {
"start": {
@@ -28611,8 +28613,8 @@
}
],
"range": [
- 12589,
- 12618
+ 12585,
+ 12614
],
"loc": {
"start": {
@@ -28627,8 +28629,8 @@
}
],
"range": [
- 12570,
- 12620
+ 12566,
+ 12616
],
"loc": {
"start": {
@@ -28642,8 +28644,8 @@
}
},
"range": [
- 12561,
- 12620
+ 12557,
+ 12616
],
"loc": {
"start": {
@@ -28659,8 +28661,8 @@
],
"kind": "var",
"range": [
- 12557,
- 12621
+ 12553,
+ 12617
],
"loc": {
"start": {
@@ -28685,8 +28687,8 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 12630,
- 12636
+ 12626,
+ 12632
],
"loc": {
"start": {
@@ -28703,8 +28705,8 @@
"type": "Identifier",
"name": "className",
"range": [
- 12637,
- 12646
+ 12633,
+ 12642
],
"loc": {
"start": {
@@ -28718,8 +28720,8 @@
}
},
"range": [
- 12630,
- 12646
+ 12626,
+ 12642
],
"loc": {
"start": {
@@ -28738,8 +28740,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12649,
- 12653
+ 12645,
+ 12649
],
"loc": {
"start": {
@@ -28756,8 +28758,8 @@
"type": "Identifier",
"name": "nbPgSpanCssClass",
"range": [
- 12654,
- 12670
+ 12650,
+ 12666
],
"loc": {
"start": {
@@ -28771,8 +28773,8 @@
}
},
"range": [
- 12649,
- 12670
+ 12645,
+ 12666
],
"loc": {
"start": {
@@ -28786,8 +28788,8 @@
}
},
"range": [
- 12630,
- 12670
+ 12626,
+ 12666
],
"loc": {
"start": {
@@ -28801,8 +28803,8 @@
}
},
"range": [
- 12630,
- 12671
+ 12626,
+ 12667
],
"loc": {
"start": {
@@ -28826,8 +28828,8 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 12680,
- 12686
+ 12676,
+ 12682
],
"loc": {
"start": {
@@ -28844,8 +28846,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12687,
- 12698
+ 12683,
+ 12694
],
"loc": {
"start": {
@@ -28859,8 +28861,8 @@
}
},
"range": [
- 12680,
- 12698
+ 12676,
+ 12694
],
"loc": {
"start": {
@@ -28883,8 +28885,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12700,
- 12703
+ 12696,
+ 12699
],
"loc": {
"start": {
@@ -28901,8 +28903,8 @@
"type": "Identifier",
"name": "text",
"range": [
- 12704,
- 12708
+ 12700,
+ 12704
],
"loc": {
"start": {
@@ -28916,8 +28918,8 @@
}
},
"range": [
- 12700,
- 12708
+ 12696,
+ 12704
],
"loc": {
"start": {
@@ -28942,8 +28944,8 @@
"value": " ",
"raw": "' '",
"range": [
- 12709,
- 12712
+ 12705,
+ 12708
],
"loc": {
"start": {
@@ -28962,8 +28964,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12713,
- 12717
+ 12709,
+ 12713
],
"loc": {
"start": {
@@ -28980,8 +28982,8 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 12718,
- 12725
+ 12714,
+ 12721
],
"loc": {
"start": {
@@ -28995,8 +28997,8 @@
}
},
"range": [
- 12713,
- 12725
+ 12709,
+ 12721
],
"loc": {
"start": {
@@ -29010,8 +29012,8 @@
}
},
"range": [
- 12709,
- 12725
+ 12705,
+ 12721
],
"loc": {
"start": {
@@ -29029,8 +29031,8 @@
"value": " ",
"raw": "' '",
"range": [
- 12726,
- 12729
+ 12722,
+ 12725
],
"loc": {
"start": {
@@ -29044,8 +29046,8 @@
}
},
"range": [
- 12709,
- 12729
+ 12705,
+ 12725
],
"loc": {
"start": {
@@ -29060,8 +29062,8 @@
}
],
"range": [
- 12700,
- 12730
+ 12696,
+ 12726
],
"loc": {
"start": {
@@ -29076,8 +29078,8 @@
}
],
"range": [
- 12680,
- 12732
+ 12676,
+ 12728
],
"loc": {
"start": {
@@ -29091,8 +29093,8 @@
}
},
"range": [
- 12680,
- 12733
+ 12676,
+ 12729
],
"loc": {
"start": {
@@ -29116,8 +29118,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12742,
- 12750
+ 12738,
+ 12746
],
"loc": {
"start": {
@@ -29134,8 +29136,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12751,
- 12762
+ 12747,
+ 12758
],
"loc": {
"start": {
@@ -29149,8 +29151,8 @@
}
},
"range": [
- 12742,
- 12762
+ 12738,
+ 12758
],
"loc": {
"start": {
@@ -29168,8 +29170,8 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 12763,
- 12769
+ 12759,
+ 12765
],
"loc": {
"start": {
@@ -29184,8 +29186,8 @@
}
],
"range": [
- 12742,
- 12770
+ 12738,
+ 12766
],
"loc": {
"start": {
@@ -29199,8 +29201,8 @@
}
},
"range": [
- 12742,
- 12771
+ 12738,
+ 12767
],
"loc": {
"start": {
@@ -29224,8 +29226,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12780,
- 12788
+ 12776,
+ 12784
],
"loc": {
"start": {
@@ -29242,8 +29244,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12789,
- 12800
+ 12785,
+ 12796
],
"loc": {
"start": {
@@ -29257,8 +29259,8 @@
}
},
"range": [
- 12780,
- 12800
+ 12776,
+ 12796
],
"loc": {
"start": {
@@ -29276,8 +29278,8 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 12801,
- 12812
+ 12797,
+ 12808
],
"loc": {
"start": {
@@ -29292,8 +29294,8 @@
}
],
"range": [
- 12780,
- 12813
+ 12776,
+ 12809
],
"loc": {
"start": {
@@ -29307,8 +29309,8 @@
}
},
"range": [
- 12780,
- 12814
+ 12776,
+ 12810
],
"loc": {
"start": {
@@ -29332,8 +29334,8 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 12823,
- 12831
+ 12819,
+ 12827
],
"loc": {
"start": {
@@ -29350,8 +29352,8 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 12832,
- 12843
+ 12828,
+ 12839
],
"loc": {
"start": {
@@ -29365,8 +29367,8 @@
}
},
"range": [
- 12823,
- 12843
+ 12819,
+ 12839
],
"loc": {
"start": {
@@ -29384,8 +29386,8 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 12844,
- 12855
+ 12840,
+ 12851
],
"loc": {
"start": {
@@ -29400,8 +29402,8 @@
}
],
"range": [
- 12823,
- 12856
+ 12819,
+ 12852
],
"loc": {
"start": {
@@ -29415,8 +29417,8 @@
}
},
"range": [
- 12823,
- 12857
+ 12819,
+ 12853
],
"loc": {
"start": {
@@ -29440,8 +29442,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12866,
- 12870
+ 12862,
+ 12866
],
"loc": {
"start": {
@@ -29458,8 +29460,8 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 12871,
- 12880
+ 12867,
+ 12876
],
"loc": {
"start": {
@@ -29473,8 +29475,8 @@
}
},
"range": [
- 12866,
- 12880
+ 12862,
+ 12876
],
"loc": {
"start": {
@@ -29496,8 +29498,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 12883,
- 12886
+ 12879,
+ 12882
],
"loc": {
"start": {
@@ -29514,8 +29516,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 12887,
- 12889
+ 12883,
+ 12885
],
"loc": {
"start": {
@@ -29529,8 +29531,8 @@
}
},
"range": [
- 12883,
- 12889
+ 12879,
+ 12885
],
"loc": {
"start": {
@@ -29553,8 +29555,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12890,
- 12894
+ 12886,
+ 12890
],
"loc": {
"start": {
@@ -29571,8 +29573,8 @@
"type": "Identifier",
"name": "prfxSlcPages",
"range": [
- 12895,
- 12907
+ 12891,
+ 12903
],
"loc": {
"start": {
@@ -29586,8 +29588,8 @@
}
},
"range": [
- 12890,
- 12907
+ 12886,
+ 12903
],
"loc": {
"start": {
@@ -29607,8 +29609,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12908,
- 12910
+ 12904,
+ 12906
],
"loc": {
"start": {
@@ -29625,8 +29627,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 12911,
- 12913
+ 12907,
+ 12909
],
"loc": {
"start": {
@@ -29640,8 +29642,8 @@
}
},
"range": [
- 12908,
- 12913
+ 12904,
+ 12909
],
"loc": {
"start": {
@@ -29655,8 +29657,8 @@
}
},
"range": [
- 12890,
- 12913
+ 12886,
+ 12909
],
"loc": {
"start": {
@@ -29671,8 +29673,8 @@
}
],
"range": [
- 12883,
- 12914
+ 12879,
+ 12910
],
"loc": {
"start": {
@@ -29686,8 +29688,8 @@
}
},
"range": [
- 12866,
- 12914
+ 12862,
+ 12910
],
"loc": {
"start": {
@@ -29701,8 +29703,8 @@
}
},
"range": [
- 12866,
- 12915
+ 12862,
+ 12911
],
"loc": {
"start": {
@@ -29727,8 +29729,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 12929,
- 12931
+ 12925,
+ 12927
],
"loc": {
"start": {
@@ -29745,8 +29747,8 @@
"type": "Identifier",
"name": "rememberGridValues",
"range": [
- 12932,
- 12950
+ 12928,
+ 12946
],
"loc": {
"start": {
@@ -29760,8 +29762,8 @@
}
},
"range": [
- 12929,
- 12950
+ 12925,
+ 12946
],
"loc": {
"start": {
@@ -29776,8 +29778,8 @@
},
"prefix": true,
"range": [
- 12928,
- 12950
+ 12924,
+ 12946
],
"loc": {
"start": {
@@ -29803,8 +29805,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 12965,
- 12969
+ 12961,
+ 12965
],
"loc": {
"start": {
@@ -29821,8 +29823,8 @@
"type": "Identifier",
"name": "setPagingInfo",
"range": [
- 12970,
- 12983
+ 12966,
+ 12979
],
"loc": {
"start": {
@@ -29836,8 +29838,8 @@
}
},
"range": [
- 12965,
- 12983
+ 12961,
+ 12979
],
"loc": {
"start": {
@@ -29852,8 +29854,8 @@
},
"arguments": [],
"range": [
- 12965,
- 12985
+ 12961,
+ 12981
],
"loc": {
"start": {
@@ -29867,8 +29869,8 @@
}
},
"range": [
- 12965,
- 12986
+ 12961,
+ 12982
],
"loc": {
"start": {
@@ -29883,8 +29885,8 @@
}
],
"range": [
- 12951,
- 12996
+ 12947,
+ 12992
],
"loc": {
"start": {
@@ -29899,8 +29901,8 @@
},
"alternate": null,
"range": [
- 12925,
- 12996
+ 12921,
+ 12992
],
"loc": {
"start": {
@@ -29925,8 +29927,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13009,
- 13011
+ 13005,
+ 13007
],
"loc": {
"start": {
@@ -29943,8 +29945,8 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 13012,
- 13019
+ 13008,
+ 13015
],
"loc": {
"start": {
@@ -29958,8 +29960,8 @@
}
},
"range": [
- 13009,
- 13019
+ 13005,
+ 13015
],
"loc": {
"start": {
@@ -29974,8 +29976,8 @@
},
"prefix": true,
"range": [
- 13008,
- 13019
+ 13004,
+ 13015
],
"loc": {
"start": {
@@ -30002,8 +30004,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13034,
- 13036
+ 13030,
+ 13032
],
"loc": {
"start": {
@@ -30020,8 +30022,8 @@
"type": "Identifier",
"name": "validateAllRows",
"range": [
- 13037,
- 13052
+ 13033,
+ 13048
],
"loc": {
"start": {
@@ -30035,8 +30037,8 @@
}
},
"range": [
- 13034,
- 13052
+ 13030,
+ 13048
],
"loc": {
"start": {
@@ -30051,8 +30053,8 @@
},
"arguments": [],
"range": [
- 13034,
- 13054
+ 13030,
+ 13050
],
"loc": {
"start": {
@@ -30066,8 +30068,8 @@
}
},
"range": [
- 13034,
- 13055
+ 13030,
+ 13051
],
"loc": {
"start": {
@@ -30090,8 +30092,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 13068,
- 13072
+ 13064,
+ 13068
],
"loc": {
"start": {
@@ -30108,8 +30110,8 @@
"type": "Identifier",
"name": "setPagingInfo",
"range": [
- 13073,
- 13086
+ 13069,
+ 13082
],
"loc": {
"start": {
@@ -30123,8 +30125,8 @@
}
},
"range": [
- 13068,
- 13086
+ 13064,
+ 13082
],
"loc": {
"start": {
@@ -30145,8 +30147,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13087,
- 13089
+ 13083,
+ 13085
],
"loc": {
"start": {
@@ -30163,8 +30165,8 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 13090,
- 13104
+ 13086,
+ 13100
],
"loc": {
"start": {
@@ -30178,8 +30180,8 @@
}
},
"range": [
- 13087,
- 13104
+ 13083,
+ 13100
],
"loc": {
"start": {
@@ -30194,8 +30196,8 @@
}
],
"range": [
- 13068,
- 13105
+ 13064,
+ 13101
],
"loc": {
"start": {
@@ -30209,8 +30211,8 @@
}
},
"range": [
- 13068,
- 13106
+ 13064,
+ 13102
],
"loc": {
"start": {
@@ -30225,8 +30227,8 @@
}
],
"range": [
- 13020,
- 13116
+ 13016,
+ 13112
],
"loc": {
"start": {
@@ -30241,8 +30243,8 @@
},
"alternate": null,
"range": [
- 13005,
- 13116
+ 13001,
+ 13112
],
"loc": {
"start": {
@@ -30258,16 +30260,51 @@
{
"type": "ExpressionStatement",
"expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13122,
+ 13126
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 8
+ },
+ "end": {
+ "line": 337,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 13127,
+ 13134
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 13
+ },
+ "end": {
+ "line": 337,
+ "column": 20
+ }
+ }
+ },
"range": [
- 13126,
- 13130
+ 13122,
+ 13134
],
"loc": {
"start": {
@@ -30276,31 +30313,31 @@
},
"end": {
"line": 337,
- "column": 12
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "initialized",
+ "name": "on",
"range": [
- 13131,
- 13142
+ 13135,
+ 13137
],
"loc": {
"start": {
"line": 337,
- "column": 13
+ "column": 21
},
"end": {
"line": 337,
- "column": 24
+ "column": 23
}
}
},
"range": [
- 13126,
- 13142
+ 13122,
+ 13137
],
"loc": {
"start": {
@@ -30309,6 +30346,481 @@
},
"end": {
"line": 337,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 13139,
+ 13156
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 25
+ },
+ "end": {
+ "line": 337,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 13138,
+ 13157
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 24
+ },
+ "end": {
+ "line": 337,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13164,
+ 13168
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 50
+ },
+ "end": {
+ "line": 337,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetPagingInfo",
+ "range": [
+ 13169,
+ 13184
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 55
+ },
+ "end": {
+ "line": 337,
+ "column": 70
+ }
+ }
+ },
+ "range": [
+ 13164,
+ 13184
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 50
+ },
+ "end": {
+ "line": 337,
+ "column": 70
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 13164,
+ 13186
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 50
+ },
+ "end": {
+ "line": 337,
+ "column": 72
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 13159,
+ 13186
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 45
+ },
+ "end": {
+ "line": 337,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 13122,
+ 13187
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 8
+ },
+ "end": {
+ "line": 337,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 13122,
+ 13188
+ ],
+ "loc": {
+ "start": {
+ "line": 337,
+ "column": 8
+ },
+ "end": {
+ "line": 337,
+ "column": 74
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13197,
+ 13201
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 8
+ },
+ "end": {
+ "line": 338,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 13202,
+ 13209
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 13
+ },
+ "end": {
+ "line": 338,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 13197,
+ 13209
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 8
+ },
+ "end": {
+ "line": 338,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 13210,
+ 13212
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 21
+ },
+ "end": {
+ "line": 338,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 13197,
+ 13212
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 8
+ },
+ "end": {
+ "line": 338,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "initialized",
+ "raw": "'initialized'",
+ "range": [
+ 13214,
+ 13227
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 25
+ },
+ "end": {
+ "line": 338,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 13213,
+ 13228
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 24
+ },
+ "end": {
+ "line": 338,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13235,
+ 13239
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 46
+ },
+ "end": {
+ "line": 338,
+ "column": 50
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetValues",
+ "range": [
+ 13240,
+ 13251
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 51
+ },
+ "end": {
+ "line": 338,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 13235,
+ 13251
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 46
+ },
+ "end": {
+ "line": 338,
+ "column": 62
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 13235,
+ 13253
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 46
+ },
+ "end": {
+ "line": 338,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 13230,
+ 13253
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 41
+ },
+ "end": {
+ "line": 338,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 13197,
+ 13254
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 8
+ },
+ "end": {
+ "line": 338,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 13197,
+ 13255
+ ],
+ "loc": {
+ "start": {
+ "line": 338,
+ "column": 8
+ },
+ "end": {
+ "line": 338,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13265,
+ 13269
+ ],
+ "loc": {
+ "start": {
+ "line": 340,
+ "column": 8
+ },
+ "end": {
+ "line": 340,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 13270,
+ 13281
+ ],
+ "loc": {
+ "start": {
+ "line": 340,
+ "column": 13
+ },
+ "end": {
+ "line": 340,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 13265,
+ 13281
+ ],
+ "loc": {
+ "start": {
+ "line": 340,
+ "column": 8
+ },
+ "end": {
+ "line": 340,
"column": 24
}
}
@@ -30318,54 +30830,54 @@
"value": true,
"raw": "true",
"range": [
- 13145,
- 13149
+ 13284,
+ 13288
],
"loc": {
"start": {
- "line": 337,
+ "line": 340,
"column": 27
},
"end": {
- "line": 337,
+ "line": 340,
"column": 31
}
}
},
"range": [
- 13126,
- 13149
+ 13265,
+ 13288
],
"loc": {
"start": {
- "line": 337,
+ "line": 340,
"column": 8
},
"end": {
- "line": 337,
+ "line": 340,
"column": 31
}
}
},
"range": [
- 13126,
- 13150
+ 13265,
+ 13289
],
"loc": {
"start": {
- "line": 337,
+ "line": 340,
"column": 8
},
"end": {
- "line": 337,
+ "line": 340,
"column": 32
}
}
}
],
"range": [
- 7160,
- 13156
+ 7156,
+ 13295
],
"loc": {
"start": {
@@ -30373,7 +30885,7 @@
"column": 10
},
"end": {
- "line": 338,
+ "line": 341,
"column": 5
}
}
@@ -30381,8 +30893,8 @@
"generator": false,
"expression": false,
"range": [
- 7158,
- 13156
+ 7154,
+ 13295
],
"loc": {
"start": {
@@ -30390,7 +30902,7 @@
"column": 8
},
"end": {
- "line": 338,
+ "line": 341,
"column": 5
}
}
@@ -30398,8 +30910,8 @@
"kind": "method",
"computed": false,
"range": [
- 7154,
- 13156
+ 7150,
+ 13295
],
"loc": {
"start": {
@@ -30407,7 +30919,7 @@
"column": 4
},
"end": {
- "line": 338,
+ "line": 341,
"column": 5
}
},
@@ -30416,8 +30928,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 7107,
- 7149
+ 7103,
+ 7145
],
"loc": {
"start": {
@@ -30436,16 +30948,16 @@
"type": "Block",
"value": "*\n * Reset paging when filters are already instantiated\n * @param {Boolean} filterTable Execute filtering once paging instanciated\n ",
"range": [
- 13162,
- 13310
+ 13301,
+ 13449
],
"loc": {
"start": {
- "line": 340,
+ "line": 343,
"column": 4
},
"end": {
- "line": 343,
+ "line": 346,
"column": 7
}
}
@@ -30459,16 +30971,16 @@
"type": "Identifier",
"name": "reset",
"range": [
- 13315,
- 13320
+ 13454,
+ 13459
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 4
},
"end": {
- "line": 344,
+ "line": 347,
"column": 9
}
}
@@ -30483,16 +30995,16 @@
"type": "Identifier",
"name": "filterTable",
"range": [
- 13321,
- 13332
+ 13460,
+ 13471
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 10
},
"end": {
- "line": 344,
+ "line": 347,
"column": 21
}
}
@@ -30502,31 +31014,31 @@
"value": false,
"raw": "false",
"range": [
- 13333,
- 13338
+ 13472,
+ 13477
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 22
},
"end": {
- "line": 344,
+ "line": 347,
"column": 27
}
}
},
"range": [
- 13321,
- 13338
+ 13460,
+ 13477
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 10
},
"end": {
- "line": 344,
+ "line": 347,
"column": 27
}
}
@@ -30544,16 +31056,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13353,
- 13355
+ 13492,
+ 13494
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 12
},
"end": {
- "line": 345,
+ "line": 348,
"column": 14
}
}
@@ -30564,16 +31076,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13358,
- 13362
+ 13497,
+ 13501
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 17
},
"end": {
- "line": 345,
+ "line": 348,
"column": 21
}
}
@@ -30582,46 +31094,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13363,
- 13365
+ 13502,
+ 13504
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 22
},
"end": {
- "line": 345,
+ "line": 348,
"column": 24
}
}
},
"range": [
- 13358,
- 13365
+ 13497,
+ 13504
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 17
},
"end": {
- "line": 345,
+ "line": 348,
"column": 24
}
}
},
"range": [
- 13353,
- 13365
+ 13492,
+ 13504
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 12
},
"end": {
- "line": 345,
+ "line": 348,
"column": 24
}
}
@@ -30629,16 +31141,16 @@
],
"kind": "var",
"range": [
- 13349,
- 13366
+ 13488,
+ 13505
],
"loc": {
"start": {
- "line": 345,
+ "line": 348,
"column": 8
},
"end": {
- "line": 345,
+ "line": 348,
"column": 25
}
}
@@ -30646,182 +31158,73 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 13379,
- 13381
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 12
- },
- "end": {
- "line": 346,
- "column": 14
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasGrid",
- "range": [
- 13382,
- 13389
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 15
- },
- "end": {
- "line": 346,
- "column": 22
- }
- }
- },
- "range": [
- 13379,
- 13389
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 12
- },
- "end": {
- "line": 346,
- "column": 22
- }
- }
- },
- "arguments": [],
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 13379,
- 13391
+ 13517,
+ 13521
],
"loc": {
"start": {
- "line": 346,
- "column": 12
+ "line": 349,
+ "column": 11
},
"end": {
- "line": 346,
- "column": 24
+ "line": 349,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isEnabled",
+ "range": [
+ 13522,
+ 13531
+ ],
+ "loc": {
+ "start": {
+ "line": 349,
+ "column": 16
+ },
+ "end": {
+ "line": 349,
+ "column": 25
}
}
},
- "prefix": true,
"range": [
- 13378,
- 13391
+ 13517,
+ 13531
],
"loc": {
"start": {
- "line": 346,
+ "line": 349,
"column": 11
},
"end": {
- "line": 346,
- "column": 24
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 13395,
- 13399
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 28
- },
- "end": {
- "line": 346,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isEnabled",
- "range": [
- 13400,
- 13409
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 33
- },
- "end": {
- "line": 346,
- "column": 42
- }
- }
- },
- "range": [
- 13395,
- 13409
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 28
- },
- "end": {
- "line": 346,
- "column": 42
- }
- }
- },
- "arguments": [],
- "range": [
- 13395,
- 13411
- ],
- "loc": {
- "start": {
- "line": 346,
- "column": 28
- },
- "end": {
- "line": 346,
- "column": 44
+ "line": 349,
+ "column": 25
}
}
},
+ "arguments": [],
"range": [
- 13378,
- 13411
+ 13517,
+ 13533
],
"loc": {
"start": {
- "line": 346,
+ "line": 349,
"column": 11
},
"end": {
- "line": 346,
- "column": 44
+ "line": 349,
+ "column": 27
}
}
},
@@ -30832,48 +31235,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 13426,
- 13433
+ 13548,
+ 13555
],
"loc": {
"start": {
- "line": 347,
+ "line": 350,
"column": 12
},
"end": {
- "line": 347,
+ "line": 350,
"column": 19
}
}
}
],
"range": [
- 13412,
- 13443
+ 13534,
+ 13565
],
"loc": {
"start": {
- "line": 346,
- "column": 45
+ "line": 349,
+ "column": 28
},
"end": {
- "line": 348,
+ "line": 351,
"column": 9
}
}
},
"alternate": null,
"range": [
- 13375,
- 13443
+ 13514,
+ 13565
],
"loc": {
"start": {
- "line": 346,
+ "line": 349,
"column": 8
},
"end": {
- "line": 348,
+ "line": 351,
"column": 9
}
}
@@ -30888,16 +31291,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13452,
- 13456
+ 13574,
+ 13578
],
"loc": {
"start": {
- "line": 349,
+ "line": 352,
"column": 8
},
"end": {
- "line": 349,
+ "line": 352,
"column": 12
}
}
@@ -30906,62 +31309,62 @@
"type": "Identifier",
"name": "enable",
"range": [
- 13457,
- 13463
+ 13579,
+ 13585
],
"loc": {
"start": {
- "line": 349,
+ "line": 352,
"column": 13
},
"end": {
- "line": 349,
+ "line": 352,
"column": 19
}
}
},
"range": [
- 13452,
- 13463
+ 13574,
+ 13585
],
"loc": {
"start": {
- "line": 349,
+ "line": 352,
"column": 8
},
"end": {
- "line": 349,
+ "line": 352,
"column": 19
}
}
},
"arguments": [],
"range": [
- 13452,
- 13465
+ 13574,
+ 13587
],
"loc": {
"start": {
- "line": 349,
+ "line": 352,
"column": 8
},
"end": {
- "line": 349,
+ "line": 352,
"column": 21
}
}
},
"range": [
- 13452,
- 13466
+ 13574,
+ 13588
],
"loc": {
"start": {
- "line": 349,
+ "line": 352,
"column": 8
},
"end": {
- "line": 349,
+ "line": 352,
"column": 22
}
}
@@ -30976,16 +31379,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13475,
- 13479
+ 13597,
+ 13601
],
"loc": {
"start": {
- "line": 350,
+ "line": 353,
"column": 8
},
"end": {
- "line": 350,
+ "line": 353,
"column": 12
}
}
@@ -30994,154 +31397,85 @@
"type": "Identifier",
"name": "init",
"range": [
- 13480,
- 13484
+ 13602,
+ 13606
],
"loc": {
"start": {
- "line": 350,
+ "line": 353,
"column": 13
},
"end": {
- "line": 350,
+ "line": 353,
"column": 17
}
}
},
"range": [
- 13475,
- 13484
+ 13597,
+ 13606
],
"loc": {
"start": {
- "line": 350,
+ "line": 353,
"column": 8
},
"end": {
- "line": 350,
+ "line": 353,
"column": 17
}
}
},
"arguments": [],
"range": [
- 13475,
- 13486
+ 13597,
+ 13608
],
"loc": {
"start": {
- "line": 350,
+ "line": 353,
"column": 8
},
"end": {
- "line": 350,
+ "line": 353,
"column": 19
}
}
},
"range": [
- 13475,
- 13487
+ 13597,
+ 13609
],
"loc": {
"start": {
- "line": 350,
+ "line": 353,
"column": 8
},
"end": {
- "line": 350,
+ "line": 353,
"column": 20
}
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 13496,
- 13498
- ],
- "loc": {
- "start": {
- "line": 351,
- "column": 8
- },
- "end": {
- "line": 351,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetValues",
- "range": [
- 13499,
- 13510
- ],
- "loc": {
- "start": {
- "line": 351,
- "column": 11
- },
- "end": {
- "line": 351,
- "column": 22
- }
- }
- },
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " tf.resetValues();",
"range": [
- 13496,
- 13510
+ 13618,
+ 13638
],
"loc": {
"start": {
- "line": 351,
+ "line": 354,
"column": 8
},
"end": {
- "line": 351,
- "column": 22
+ "line": 354,
+ "column": 28
}
}
- },
- "arguments": [],
- "range": [
- 13496,
- 13512
- ],
- "loc": {
- "start": {
- "line": 351,
- "column": 8
- },
- "end": {
- "line": 351,
- "column": 24
- }
}
- },
- "range": [
- 13496,
- 13513
- ],
- "loc": {
- "start": {
- "line": 351,
- "column": 8
- },
- "end": {
- "line": 351,
- "column": 25
- }
- }
+ ]
},
{
"type": "IfStatement",
@@ -31149,16 +31483,16 @@
"type": "Identifier",
"name": "filterTable",
"range": [
- 13525,
- 13536
+ 13650,
+ 13661
],
"loc": {
"start": {
- "line": 352,
+ "line": 355,
"column": 11
},
"end": {
- "line": 352,
+ "line": 355,
"column": 22
}
}
@@ -31177,16 +31511,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13551,
- 13553
+ 13676,
+ 13678
],
"loc": {
"start": {
- "line": 353,
+ "line": 356,
"column": 12
},
"end": {
- "line": 353,
+ "line": 356,
"column": 14
}
}
@@ -31195,110 +31529,130 @@
"type": "Identifier",
"name": "filter",
"range": [
- 13554,
- 13560
+ 13679,
+ 13685
],
"loc": {
"start": {
- "line": 353,
+ "line": 356,
"column": 15
},
"end": {
- "line": 353,
+ "line": 356,
"column": 21
}
}
},
"range": [
- 13551,
- 13560
+ 13676,
+ 13685
],
"loc": {
"start": {
- "line": 353,
+ "line": 356,
"column": 12
},
"end": {
- "line": 353,
+ "line": 356,
"column": 21
}
}
},
"arguments": [],
"range": [
- 13551,
- 13562
+ 13676,
+ 13687
],
"loc": {
"start": {
- "line": 353,
+ "line": 356,
"column": 12
},
"end": {
- "line": 353,
+ "line": 356,
"column": 23
}
}
},
"range": [
- 13551,
- 13563
+ 13676,
+ 13688
],
"loc": {
"start": {
- "line": 353,
+ "line": 356,
"column": 12
},
"end": {
- "line": 353,
+ "line": 356,
"column": 24
}
}
}
],
"range": [
- 13537,
- 13573
+ 13662,
+ 13698
],
"loc": {
"start": {
- "line": 352,
+ "line": 355,
"column": 23
},
"end": {
- "line": 354,
+ "line": 357,
"column": 9
}
}
},
"alternate": null,
"range": [
- 13522,
- 13573
+ 13647,
+ 13698
],
"loc": {
"start": {
- "line": 352,
+ "line": 355,
"column": 8
},
"end": {
- "line": 354,
+ "line": 357,
"column": 9
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " tf.resetValues();",
+ "range": [
+ 13618,
+ 13638
+ ],
+ "loc": {
+ "start": {
+ "line": 354,
+ "column": 8
+ },
+ "end": {
+ "line": 354,
+ "column": 28
+ }
+ }
+ }
+ ]
}
],
"range": [
- 13339,
- 13579
+ 13478,
+ 13704
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 28
},
"end": {
- "line": 355,
+ "line": 358,
"column": 5
}
}
@@ -31306,16 +31660,16 @@
"generator": false,
"expression": false,
"range": [
- 13320,
- 13579
+ 13459,
+ 13704
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 9
},
"end": {
- "line": 355,
+ "line": 358,
"column": 5
}
}
@@ -31323,16 +31677,16 @@
"kind": "method",
"computed": false,
"range": [
- 13315,
- 13579
+ 13454,
+ 13704
],
"loc": {
"start": {
- "line": 344,
+ "line": 347,
"column": 4
},
"end": {
- "line": 355,
+ "line": 358,
"column": 5
}
},
@@ -31341,16 +31695,526 @@
"type": "Block",
"value": "*\n * Reset paging when filters are already instantiated\n * @param {Boolean} filterTable Execute filtering once paging instanciated\n ",
"range": [
- 13162,
- 13310
+ 13301,
+ 13449
],
"loc": {
"start": {
- "line": 340,
+ "line": 343,
"column": 4
},
"end": {
- "line": 343,
+ "line": 346,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Reset paging info from scratch after a filtering process\n ",
+ "range": [
+ 13710,
+ 13785
+ ],
+ "loc": {
+ "start": {
+ "line": 360,
+ "column": 4
+ },
+ "end": {
+ "line": 362,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "resetPagingInfo",
+ "range": [
+ 13790,
+ 13805
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 4
+ },
+ "end": {
+ "line": 363,
+ "column": 19
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13817,
+ 13821
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "startPagingRow",
+ "range": [
+ 13822,
+ 13836
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 13
+ },
+ "end": {
+ "line": 364,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 13817,
+ 13836
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 13839,
+ 13840
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 30
+ },
+ "end": {
+ "line": 364,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 13817,
+ 13840
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 13817,
+ 13841
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13850,
+ 13854
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "currentPageNb",
+ "range": [
+ 13855,
+ 13868
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 13
+ },
+ "end": {
+ "line": 365,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 13850,
+ 13868
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 13871,
+ 13872
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 29
+ },
+ "end": {
+ "line": 365,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 13850,
+ 13872
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 13850,
+ 13873
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13882,
+ 13886
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setPagingInfo",
+ "range": [
+ 13887,
+ 13900
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 13
+ },
+ "end": {
+ "line": 366,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 13882,
+ 13900
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13901,
+ 13905
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 27
+ },
+ "end": {
+ "line": 366,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 13906,
+ 13908
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 32
+ },
+ "end": {
+ "line": 366,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 13901,
+ 13908
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 27
+ },
+ "end": {
+ "line": 366,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 13909,
+ 13923
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 35
+ },
+ "end": {
+ "line": 366,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 13901,
+ 13923
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 27
+ },
+ "end": {
+ "line": 366,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 13882,
+ 13924
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 13882,
+ 13925
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 13807,
+ 13931
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 21
+ },
+ "end": {
+ "line": 367,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 13805,
+ 13931
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 19
+ },
+ "end": {
+ "line": 367,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 13790,
+ 13931
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 4
+ },
+ "end": {
+ "line": 367,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Reset paging info from scratch after a filtering process\n ",
+ "range": [
+ 13710,
+ 13785
+ ],
+ "loc": {
+ "start": {
+ "line": 360,
+ "column": 4
+ },
+ "end": {
+ "line": 362,
"column": 7
}
}
@@ -31361,16 +32225,16 @@
"type": "Block",
"value": "*\n * Calculate number of pages based on valid rows\n * Refresh paging select according to number of pages\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 13585,
- 13764
+ 13937,
+ 14116
],
"loc": {
"start": {
- "line": 357,
+ "line": 369,
"column": 4
},
"end": {
- "line": 361,
+ "line": 373,
"column": 7
}
}
@@ -31384,16 +32248,16 @@
"type": "Identifier",
"name": "setPagingInfo",
"range": [
- 13769,
- 13782
+ 14121,
+ 14134
],
"loc": {
"start": {
- "line": 362,
+ "line": 374,
"column": 4
},
"end": {
- "line": 362,
+ "line": 374,
"column": 17
}
}
@@ -31403,55 +32267,20 @@
"id": null,
"params": [
{
- "type": "AssignmentPattern",
- "left": {
- "type": "Identifier",
- "name": "validRows",
- "range": [
- 13783,
- 13792
- ],
- "loc": {
- "start": {
- "line": 362,
- "column": 18
- },
- "end": {
- "line": 362,
- "column": 27
- }
- }
- },
- "right": {
- "type": "ArrayExpression",
- "elements": [],
- "range": [
- 13793,
- 13795
- ],
- "loc": {
- "start": {
- "line": 362,
- "column": 28
- },
- "end": {
- "line": 362,
- "column": 30
- }
- }
- },
+ "type": "Identifier",
+ "name": "validRows",
"range": [
- 13783,
- 13795
+ 14135,
+ 14144
],
"loc": {
"start": {
- "line": 362,
+ "line": 374,
"column": 18
},
"end": {
- "line": 362,
- "column": 30
+ "line": 374,
+ "column": 27
}
}
}
@@ -31468,16 +32297,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13810,
- 13812
+ 14159,
+ 14161
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 12
},
"end": {
- "line": 363,
+ "line": 375,
"column": 14
}
}
@@ -31488,16 +32317,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13815,
- 13819
+ 14164,
+ 14168
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 17
},
"end": {
- "line": 363,
+ "line": 375,
"column": 21
}
}
@@ -31506,46 +32335,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13820,
- 13822
+ 14169,
+ 14171
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 22
},
"end": {
- "line": 363,
+ "line": 375,
"column": 24
}
}
},
"range": [
- 13815,
- 13822
+ 14164,
+ 14171
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 17
},
"end": {
- "line": 363,
+ "line": 375,
"column": 24
}
}
},
"range": [
- 13810,
- 13822
+ 14159,
+ 14171
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 12
},
"end": {
- "line": 363,
+ "line": 375,
"column": 24
}
}
@@ -31553,165 +32382,20 @@
],
"kind": "var",
"range": [
- 13806,
- 13823
+ 14155,
+ 14172
],
"loc": {
"start": {
- "line": 363,
+ "line": 375,
"column": 8
},
"end": {
- "line": 363,
+ "line": 375,
"column": 25
}
}
},
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 13836,
- 13840
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 12
- },
- "end": {
- "line": 364,
- "column": 16
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 13843,
- 13845
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 19
- },
- "end": {
- "line": 364,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 13846,
- 13849
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 22
- },
- "end": {
- "line": 364,
- "column": 25
- }
- }
- },
- "range": [
- 13843,
- 13849
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 19
- },
- "end": {
- "line": 364,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 13850,
- 13854
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 26
- },
- "end": {
- "line": 364,
- "column": 30
- }
- }
- },
- "range": [
- 13843,
- 13854
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 19
- },
- "end": {
- "line": 364,
- "column": 30
- }
- }
- },
- "range": [
- 13836,
- 13854
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 12
- },
- "end": {
- "line": 364,
- "column": 30
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 13832,
- 13855
- ],
- "loc": {
- "start": {
- "line": 364,
- "column": 8
- },
- "end": {
- "line": 364,
- "column": 31
- }
- }
- },
{
"type": "VariableDeclaration",
"declarations": [
@@ -31721,16 +32405,16 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 13868,
- 13872
+ 14185,
+ 14189
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 12
},
"end": {
- "line": 365,
+ "line": 376,
"column": 16
}
}
@@ -31746,16 +32430,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13876,
- 13880
+ 14193,
+ 14197
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 20
},
"end": {
- "line": 365,
+ "line": 376,
"column": 24
}
}
@@ -31764,47 +32448,47 @@
"type": "Identifier",
"name": "pagingTgtId",
"range": [
- 13881,
- 13892
+ 14198,
+ 14209
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 25
},
"end": {
- "line": 365,
+ "line": 376,
"column": 36
}
}
},
"range": [
- 13876,
- 13892
+ 14193,
+ 14209
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 20
},
"end": {
- "line": 365,
+ "line": 376,
"column": 36
}
}
},
"prefix": true,
"range": [
- 13875,
- 13892
+ 14192,
+ 14209
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 19
},
"end": {
- "line": 365,
+ "line": 376,
"column": 36
}
}
@@ -31816,16 +32500,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13895,
- 13897
+ 14212,
+ 14214
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 39
},
"end": {
- "line": 365,
+ "line": 376,
"column": 41
}
}
@@ -31834,31 +32518,31 @@
"type": "Identifier",
"name": "mDiv",
"range": [
- 13898,
- 13902
+ 14215,
+ 14219
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 42
},
"end": {
- "line": 365,
+ "line": 376,
"column": 46
}
}
},
"range": [
- 13895,
- 13902
+ 14212,
+ 14219
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 39
},
"end": {
- "line": 365,
+ "line": 376,
"column": 46
}
}
@@ -31872,16 +32556,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13905,
- 13908
+ 14222,
+ 14225
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 49
},
"end": {
- "line": 365,
+ "line": 376,
"column": 52
}
}
@@ -31890,31 +32574,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 13909,
- 13911
+ 14226,
+ 14228
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 53
},
"end": {
- "line": 365,
+ "line": 376,
"column": 55
}
}
},
"range": [
- 13905,
- 13911
+ 14222,
+ 14228
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 49
},
"end": {
- "line": 365,
+ "line": 376,
"column": 55
}
}
@@ -31926,16 +32610,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13912,
- 13916
+ 14229,
+ 14233
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 56
},
"end": {
- "line": 365,
+ "line": 376,
"column": 60
}
}
@@ -31944,77 +32628,77 @@
"type": "Identifier",
"name": "pagingTgtId",
"range": [
- 13917,
- 13928
+ 14234,
+ 14245
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 61
},
"end": {
- "line": 365,
+ "line": 376,
"column": 72
}
}
},
"range": [
- 13912,
- 13928
+ 14229,
+ 14245
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 56
},
"end": {
- "line": 365,
+ "line": 376,
"column": 72
}
}
}
],
"range": [
- 13905,
- 13929
+ 14222,
+ 14246
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 49
},
"end": {
- "line": 365,
+ "line": 376,
"column": 73
}
}
},
"range": [
- 13875,
- 13929
+ 14192,
+ 14246
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 19
},
"end": {
- "line": 365,
+ "line": 376,
"column": 73
}
}
},
"range": [
- 13868,
- 13929
+ 14185,
+ 14246
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 12
},
"end": {
- "line": 365,
+ "line": 376,
"column": 73
}
}
@@ -32022,16 +32706,16 @@
],
"kind": "var",
"range": [
- 13864,
- 13930
+ 14181,
+ 14247
],
"loc": {
"start": {
- "line": 365,
+ "line": 376,
"column": 8
},
"end": {
- "line": 365,
+ "line": 376,
"column": 74
}
}
@@ -32045,16 +32729,16 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 13943,
- 13949
+ 14260,
+ 14266
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 12
},
"end": {
- "line": 366,
+ "line": 377,
"column": 18
}
}
@@ -32068,16 +32752,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 13952,
- 13955
+ 14269,
+ 14272
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 21
},
"end": {
- "line": 366,
+ "line": 377,
"column": 24
}
}
@@ -32086,31 +32770,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 13956,
- 13958
+ 14273,
+ 14275
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 25
},
"end": {
- "line": 366,
+ "line": 377,
"column": 27
}
}
},
"range": [
- 13952,
- 13958
+ 14269,
+ 14275
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 21
},
"end": {
- "line": 366,
+ "line": 377,
"column": 27
}
}
@@ -32125,16 +32809,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13959,
- 13963
+ 14276,
+ 14280
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 28
},
"end": {
- "line": 366,
+ "line": 377,
"column": 32
}
}
@@ -32143,31 +32827,31 @@
"type": "Identifier",
"name": "prfxPgSpan",
"range": [
- 13964,
- 13974
+ 14281,
+ 14291
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 33
},
"end": {
- "line": 366,
+ "line": 377,
"column": 43
}
}
},
"range": [
- 13959,
- 13974
+ 14276,
+ 14291
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 28
},
"end": {
- "line": 366,
+ "line": 377,
"column": 43
}
}
@@ -32179,16 +32863,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 13975,
- 13977
+ 14292,
+ 14294
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 44
},
"end": {
- "line": 366,
+ "line": 377,
"column": 46
}
}
@@ -32197,77 +32881,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 13978,
- 13980
+ 14295,
+ 14297
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 47
},
"end": {
- "line": 366,
+ "line": 377,
"column": 49
}
}
},
"range": [
- 13975,
- 13980
+ 14292,
+ 14297
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 44
},
"end": {
- "line": 366,
+ "line": 377,
"column": 49
}
}
},
"range": [
- 13959,
- 13980
+ 14276,
+ 14297
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 28
},
"end": {
- "line": 366,
+ "line": 377,
"column": 49
}
}
}
],
"range": [
- 13952,
- 13981
+ 14269,
+ 14298
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 21
},
"end": {
- "line": 366,
+ "line": 377,
"column": 50
}
}
},
"range": [
- 13943,
- 13981
+ 14260,
+ 14298
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 12
},
"end": {
- "line": 366,
+ "line": 377,
"column": 50
}
}
@@ -32275,16 +32959,16 @@
],
"kind": "var",
"range": [
- 13939,
- 13982
+ 14256,
+ 14299
],
"loc": {
"start": {
- "line": 366,
+ "line": 377,
"column": 8
},
"end": {
- "line": 366,
+ "line": 377,
"column": 51
}
},
@@ -32293,16 +32977,16 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 13992,
- 14018
+ 14309,
+ 14335
],
"loc": {
"start": {
- "line": 368,
+ "line": 379,
"column": 8
},
"end": {
- "line": 368,
+ "line": 379,
"column": 34
}
}
@@ -32321,16 +33005,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14027,
- 14029
+ 14344,
+ 14346
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 8
},
"end": {
- "line": 369,
+ "line": 380,
"column": 10
}
}
@@ -32339,80 +33023,190 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 14030,
- 14044
+ 14347,
+ 14361
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 11
},
"end": {
- "line": 369,
+ "line": 380,
"column": 25
}
}
},
"range": [
- 14027,
- 14044
+ 14344,
+ 14361
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 8
},
"end": {
- "line": 369,
+ "line": 380,
"column": 25
}
}
},
"right": {
- "type": "Identifier",
- "name": "validRows",
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "Identifier",
+ "name": "validRows",
+ "range": [
+ 14364,
+ 14373
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 28
+ },
+ "end": {
+ "line": 380,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 14377,
+ 14379
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 41
+ },
+ "end": {
+ "line": 380,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getValidRows",
+ "range": [
+ 14380,
+ 14392
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 44
+ },
+ "end": {
+ "line": 380,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 14377,
+ 14392
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 41
+ },
+ "end": {
+ "line": 380,
+ "column": 56
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 14393,
+ 14397
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 57
+ },
+ "end": {
+ "line": 380,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 14377,
+ 14398
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 41
+ },
+ "end": {
+ "line": 380,
+ "column": 62
+ }
+ }
+ },
"range": [
- 14047,
- 14056
+ 14364,
+ 14398
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 28
},
"end": {
- "line": 369,
- "column": 37
+ "line": 380,
+ "column": 62
}
}
},
"range": [
- 14027,
- 14056
+ 14344,
+ 14398
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 8
},
"end": {
- "line": 369,
- "column": 37
+ "line": 380,
+ "column": 62
}
}
},
"range": [
- 14027,
- 14057
+ 14344,
+ 14399
],
"loc": {
"start": {
- "line": 369,
+ "line": 380,
"column": 8
},
"end": {
- "line": 369,
- "column": 38
+ "line": 380,
+ "column": 63
}
},
"leadingComments": [
@@ -32420,1186 +33214,36 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 13992,
- 14018
+ 14309,
+ 14335
],
"loc": {
"start": {
- "line": 368,
+ "line": 379,
"column": 8
},
"end": {
- "line": 368,
+ "line": 379,
"column": 34
}
}
}
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "validRows",
- "range": [
- 14070,
- 14079
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 11
- },
- "end": {
- "line": 371,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 14080,
- 14086
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 21
- },
- "end": {
- "line": 371,
- "column": 27
- }
- }
- },
- "range": [
- 14070,
- 14086
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 11
- },
- "end": {
- "line": 371,
- "column": 27
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 14091,
- 14092
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 32
- },
- "end": {
- "line": 371,
- "column": 33
- }
- }
- },
- "range": [
- 14070,
- 14092
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 11
- },
- "end": {
- "line": 371,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 14155,
- 14156
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 20
- },
- "end": {
- "line": 373,
- "column": 21
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 14157,
- 14159
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 22
- },
- "end": {
- "line": 373,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 14160,
- 14166
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 25
- },
- "end": {
- "line": 373,
- "column": 31
- }
- }
- },
- "range": [
- 14157,
- 14166
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 22
- },
- "end": {
- "line": 373,
- "column": 31
- }
- }
- },
- "range": [
- 14155,
- 14166
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 20
- },
- "end": {
- "line": 373,
- "column": 31
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 14151,
- 14166
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 16
- },
- "end": {
- "line": 373,
- "column": 31
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 14168,
- 14169
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 33
- },
- "end": {
- "line": 373,
- "column": 34
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 14170,
- 14172
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 35
- },
- "end": {
- "line": 373,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbRows",
- "range": [
- 14173,
- 14179
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 38
- },
- "end": {
- "line": 373,
- "column": 44
- }
- }
- },
- "range": [
- 14170,
- 14179
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 35
- },
- "end": {
- "line": 373,
- "column": 44
- }
- }
- },
- "range": [
- 14168,
- 14179
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 33
- },
- "end": {
- "line": 373,
- "column": 44
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 14181,
- 14182
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 46
- },
- "end": {
- "line": 373,
- "column": 47
- }
- }
- },
- "prefix": false,
- "range": [
- 14181,
- 14184
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 46
- },
- "end": {
- "line": 373,
- "column": 49
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "row",
- "range": [
- 14207,
- 14210
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 20
- },
- "end": {
- "line": 374,
- "column": 23
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 14213,
- 14217
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 26
- },
- "end": {
- "line": 374,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 14218,
- 14219
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 31
- },
- "end": {
- "line": 374,
- "column": 32
- }
- }
- },
- "range": [
- 14213,
- 14220
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 26
- },
- "end": {
- "line": 374,
- "column": 33
- }
- }
- },
- "range": [
- 14207,
- 14220
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 20
- },
- "end": {
- "line": 374,
- "column": 33
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 14203,
- 14221
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 16
- },
- "end": {
- "line": 374,
- "column": 34
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "Identifier",
- "name": "row",
- "range": [
- 14242,
- 14245
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 20
- },
- "end": {
- "line": 375,
- "column": 23
- }
- }
- },
- "prefix": true,
- "range": [
- 14241,
- 14245
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 19
- },
- "end": {
- "line": 375,
- "column": 23
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ContinueStatement",
- "label": null,
- "range": [
- 14268,
- 14277
- ],
- "loc": {
- "start": {
- "line": 376,
- "column": 20
- },
- "end": {
- "line": 376,
- "column": 29
- }
- }
- }
- ],
- "range": [
- 14246,
- 14295
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 24
- },
- "end": {
- "line": 377,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 14238,
- 14295
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 16
- },
- "end": {
- "line": 377,
- "column": 17
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 14317,
- 14327
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 20
- },
- "end": {
- "line": 379,
- "column": 30
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "row",
- "range": [
- 14330,
- 14333
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 33
- },
- "end": {
- "line": 379,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 14334,
- 14346
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 37
- },
- "end": {
- "line": 379,
- "column": 49
- }
- }
- },
- "range": [
- 14330,
- 14346
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 33
- },
- "end": {
- "line": 379,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "validRow",
- "raw": "'validRow'",
- "range": [
- 14347,
- 14357
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 50
- },
- "end": {
- "line": 379,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 14330,
- 14358
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 33
- },
- "end": {
- "line": 379,
- "column": 61
- }
- }
- },
- "range": [
- 14317,
- 14358
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 20
- },
- "end": {
- "line": 379,
- "column": 61
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 14313,
- 14359
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 16
- },
- "end": {
- "line": 379,
- "column": 62
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Types",
- "range": [
- 14379,
- 14384
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 19
- },
- "end": {
- "line": 380,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isNull",
- "range": [
- 14385,
- 14391
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 25
- },
- "end": {
- "line": 380,
- "column": 31
- }
- }
- },
- "range": [
- 14379,
- 14391
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 19
- },
- "end": {
- "line": 380,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 14392,
- 14402
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 32
- },
- "end": {
- "line": 380,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 14379,
- 14403
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 19
- },
- "end": {
- "line": 380,
- "column": 43
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "Boolean",
- "range": [
- 14407,
- 14414
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 47
- },
- "end": {
- "line": 380,
- "column": 54
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "isRowValid",
- "range": [
- 14415,
- 14425
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 55
- },
- "end": {
- "line": 380,
- "column": 65
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "true",
- "raw": "'true'",
- "range": [
- 14428,
- 14434
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 68
- },
- "end": {
- "line": 380,
- "column": 74
- }
- }
- },
- "range": [
- 14415,
- 14434
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 55
- },
- "end": {
- "line": 380,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 14407,
- 14435
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 47
- },
- "end": {
- "line": 380,
- "column": 75
- }
- }
- },
- "range": [
- 14379,
- 14435
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 19
- },
- "end": {
- "line": 380,
- "column": 75
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 14458,
- 14460
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 20
- },
- "end": {
- "line": 381,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 14461,
- 14475
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 23
- },
- "end": {
- "line": 381,
- "column": 37
- }
- }
- },
- "range": [
- 14458,
- 14475
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 20
- },
- "end": {
- "line": 381,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 14476,
- 14480
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 38
- },
- "end": {
- "line": 381,
- "column": 42
- }
- }
- },
- "range": [
- 14458,
- 14480
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 20
- },
- "end": {
- "line": 381,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 14481,
- 14482
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 43
- },
- "end": {
- "line": 381,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 14458,
- 14483
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 20
- },
- "end": {
- "line": 381,
- "column": 45
- }
- }
- },
- "range": [
- 14458,
- 14484
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 20
- },
- "end": {
- "line": 381,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 14436,
- 14502
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 76
- },
- "end": {
- "line": 382,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 14376,
- 14502
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 16
- },
- "end": {
- "line": 382,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 14185,
- 14516
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 50
- },
- "end": {
- "line": 383,
- "column": 13
- }
- }
- },
- "range": [
- 14147,
- 14516
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 12
- },
- "end": {
- "line": 383,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "counts rows to be grouped",
- "range": [
- 14107,
- 14134
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 12
- },
- "end": {
- "line": 372,
- "column": 39
- }
- }
- }
- ]
- }
- ],
- "range": [
- 14093,
- 14526
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 34
- },
- "end": {
- "line": 384,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 14067,
- 14526
],
- "loc": {
- "start": {
- "line": 371,
- "column": 8
- },
- "end": {
- "line": 384,
- "column": 9
- }
- },
"trailingComments": [
{
"type": "Line",
"value": "calculate nb of pages",
"range": [
- 14536,
- 14559
+ 14409,
+ 14432
],
"loc": {
"start": {
- "line": 386,
+ "line": 382,
"column": 8
},
"end": {
- "line": 386,
+ "line": 382,
"column": 31
}
}
@@ -33617,16 +33261,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14568,
- 14572
+ 14441,
+ 14445
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 8
},
"end": {
- "line": 387,
+ "line": 383,
"column": 12
}
}
@@ -33635,31 +33279,31 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 14573,
- 14580
+ 14446,
+ 14453
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 13
},
"end": {
- "line": 387,
+ "line": 383,
"column": 20
}
}
},
"range": [
- 14568,
- 14580
+ 14441,
+ 14453
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 8
},
"end": {
- "line": 387,
+ "line": 383,
"column": 20
}
}
@@ -33673,16 +33317,16 @@
"type": "Identifier",
"name": "Math",
"range": [
- 14583,
- 14587
+ 14456,
+ 14460
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 23
},
"end": {
- "line": 387,
+ "line": 383,
"column": 27
}
}
@@ -33691,31 +33335,31 @@
"type": "Identifier",
"name": "ceil",
"range": [
- 14588,
- 14592
+ 14461,
+ 14465
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 28
},
"end": {
- "line": 387,
+ "line": 383,
"column": 32
}
}
},
"range": [
- 14583,
- 14592
+ 14456,
+ 14465
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 23
},
"end": {
- "line": 387,
+ "line": 383,
"column": 32
}
}
@@ -33734,16 +33378,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14593,
- 14595
+ 14466,
+ 14468
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 33
},
"end": {
- "line": 387,
+ "line": 383,
"column": 35
}
}
@@ -33752,31 +33396,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 14596,
- 14610
+ 14469,
+ 14483
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 36
},
"end": {
- "line": 387,
+ "line": 383,
"column": 50
}
}
},
"range": [
- 14593,
- 14610
+ 14466,
+ 14483
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 33
},
"end": {
- "line": 387,
+ "line": 383,
"column": 50
}
}
@@ -33785,31 +33429,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 14611,
- 14617
+ 14484,
+ 14490
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 51
},
"end": {
- "line": 387,
+ "line": 383,
"column": 57
}
}
},
"range": [
- 14593,
- 14617
+ 14466,
+ 14490
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 33
},
"end": {
- "line": 387,
+ "line": 383,
"column": 57
}
}
@@ -33820,16 +33464,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14618,
- 14622
+ 14491,
+ 14495
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 58
},
"end": {
- "line": 387,
+ "line": 383,
"column": 62
}
}
@@ -33838,92 +33482,92 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 14623,
- 14635
+ 14496,
+ 14508
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 63
},
"end": {
- "line": 387,
+ "line": 383,
"column": 75
}
}
},
"range": [
- 14618,
- 14635
+ 14491,
+ 14508
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 58
},
"end": {
- "line": 387,
+ "line": 383,
"column": 75
}
}
},
"range": [
- 14593,
- 14635
+ 14466,
+ 14508
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 33
},
"end": {
- "line": 387,
+ "line": 383,
"column": 75
}
}
}
],
"range": [
- 14583,
- 14636
+ 14456,
+ 14509
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 23
},
"end": {
- "line": 387,
+ "line": 383,
"column": 76
}
}
},
"range": [
- 14568,
- 14636
+ 14441,
+ 14509
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 8
},
"end": {
- "line": 387,
+ "line": 383,
"column": 76
}
}
},
"range": [
- 14568,
- 14637
+ 14441,
+ 14510
],
"loc": {
"start": {
- "line": 387,
+ "line": 383,
"column": 8
},
"end": {
- "line": 387,
+ "line": 383,
"column": 77
}
},
@@ -33932,16 +33576,16 @@
"type": "Line",
"value": "calculate nb of pages",
"range": [
- 14536,
- 14559
+ 14409,
+ 14432
],
"loc": {
"start": {
- "line": 386,
+ "line": 382,
"column": 8
},
"end": {
- "line": 386,
+ "line": 382,
"column": 31
}
}
@@ -33952,16 +33596,16 @@
"type": "Line",
"value": "refresh page nb span",
"range": [
- 14646,
- 14668
+ 14519,
+ 14541
],
"loc": {
"start": {
- "line": 388,
+ "line": 384,
"column": 8
},
"end": {
- "line": 388,
+ "line": 384,
"column": 30
}
}
@@ -33980,16 +33624,16 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 14677,
- 14683
+ 14550,
+ 14556
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 8
},
"end": {
- "line": 389,
+ "line": 385,
"column": 14
}
}
@@ -33998,31 +33642,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 14684,
- 14693
+ 14557,
+ 14566
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 15
},
"end": {
- "line": 389,
+ "line": 385,
"column": 24
}
}
},
"range": [
- 14677,
- 14693
+ 14550,
+ 14566
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 8
},
"end": {
- "line": 389,
+ "line": 385,
"column": 24
}
}
@@ -34033,16 +33677,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14696,
- 14700
+ 14569,
+ 14573
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 27
},
"end": {
- "line": 389,
+ "line": 385,
"column": 31
}
}
@@ -34051,61 +33695,61 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 14701,
- 14708
+ 14574,
+ 14581
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 32
},
"end": {
- "line": 389,
+ "line": 385,
"column": 39
}
}
},
"range": [
- 14696,
- 14708
+ 14569,
+ 14581
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 27
},
"end": {
- "line": 389,
+ "line": 385,
"column": 39
}
}
},
"range": [
- 14677,
- 14708
+ 14550,
+ 14581
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 8
},
"end": {
- "line": 389,
+ "line": 385,
"column": 39
}
}
},
"range": [
- 14677,
- 14709
+ 14550,
+ 14582
],
"loc": {
"start": {
- "line": 389,
+ "line": 385,
"column": 8
},
"end": {
- "line": 389,
+ "line": 385,
"column": 40
}
},
@@ -34114,16 +33758,16 @@
"type": "Line",
"value": "refresh page nb span",
"range": [
- 14646,
- 14668
+ 14519,
+ 14541
],
"loc": {
"start": {
- "line": 388,
+ "line": 384,
"column": 8
},
"end": {
- "line": 388,
+ "line": 384,
"column": 30
}
}
@@ -34134,16 +33778,16 @@
"type": "Line",
"value": "select clearing shortcut",
"range": [
- 14718,
- 14744
+ 14591,
+ 14617
],
"loc": {
"start": {
- "line": 390,
+ "line": 386,
"column": 8
},
"end": {
- "line": 390,
+ "line": 386,
"column": 34
}
}
@@ -34161,16 +33805,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14756,
- 14760
+ 14629,
+ 14633
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 11
},
"end": {
- "line": 391,
+ "line": 387,
"column": 15
}
}
@@ -34179,31 +33823,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 14761,
- 14777
+ 14634,
+ 14650
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 16
},
"end": {
- "line": 391,
+ "line": 387,
"column": 32
}
}
},
"range": [
- 14756,
- 14777
+ 14629,
+ 14650
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 11
},
"end": {
- "line": 391,
+ "line": 387,
"column": 32
}
}
@@ -34215,16 +33859,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14782,
- 14784
+ 14655,
+ 14657
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 37
},
"end": {
- "line": 391,
+ "line": 387,
"column": 39
}
}
@@ -34233,46 +33877,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 14785,
- 14795
+ 14658,
+ 14668
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 40
},
"end": {
- "line": 391,
+ "line": 387,
"column": 50
}
}
},
"range": [
- 14782,
- 14795
+ 14655,
+ 14668
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 37
},
"end": {
- "line": 391,
+ "line": 387,
"column": 50
}
}
},
"range": [
- 14756,
- 14795
+ 14629,
+ 14668
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 11
},
"end": {
- "line": 391,
+ "line": 387,
"column": 50
}
}
@@ -34294,16 +33938,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14810,
- 14814
+ 14683,
+ 14687
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 12
},
"end": {
- "line": 392,
+ "line": 388,
"column": 16
}
}
@@ -34312,31 +33956,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 14815,
- 14824
+ 14688,
+ 14697
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 17
},
"end": {
- "line": 392,
+ "line": 388,
"column": 26
}
}
},
"range": [
- 14810,
- 14824
+ 14683,
+ 14697
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 12
},
"end": {
- "line": 392,
+ "line": 388,
"column": 26
}
}
@@ -34345,31 +33989,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 14825,
- 14834
+ 14698,
+ 14707
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 27
},
"end": {
- "line": 392,
+ "line": 388,
"column": 36
}
}
},
"range": [
- 14810,
- 14834
+ 14683,
+ 14707
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 12
},
"end": {
- "line": 392,
+ "line": 388,
"column": 36
}
}
@@ -34379,78 +34023,78 @@
"value": "",
"raw": "''",
"range": [
- 14837,
- 14839
+ 14710,
+ 14712
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 39
},
"end": {
- "line": 392,
+ "line": 388,
"column": 41
}
}
},
"range": [
- 14810,
- 14839
+ 14683,
+ 14712
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 12
},
"end": {
- "line": 392,
+ "line": 388,
"column": 41
}
}
},
"range": [
- 14810,
- 14840
+ 14683,
+ 14713
],
"loc": {
"start": {
- "line": 392,
+ "line": 388,
"column": 12
},
"end": {
- "line": 392,
+ "line": 388,
"column": 42
}
}
}
],
"range": [
- 14796,
- 14850
+ 14669,
+ 14723
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 51
},
"end": {
- "line": 393,
+ "line": 389,
"column": 9
}
}
},
"alternate": null,
"range": [
- 14753,
- 14850
+ 14626,
+ 14723
],
"loc": {
"start": {
- "line": 391,
+ "line": 387,
"column": 8
},
"end": {
- "line": 393,
+ "line": 389,
"column": 9
}
},
@@ -34459,16 +34103,16 @@
"type": "Line",
"value": "select clearing shortcut",
"range": [
- 14718,
- 14744
+ 14591,
+ 14617
],
"loc": {
"start": {
- "line": 390,
+ "line": 386,
"column": 8
},
"end": {
- "line": 390,
+ "line": 386,
"column": 34
}
}
@@ -34486,16 +34130,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14863,
- 14867
+ 14736,
+ 14740
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 11
},
"end": {
- "line": 395,
+ "line": 391,
"column": 15
}
}
@@ -34504,31 +34148,31 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 14868,
- 14875
+ 14741,
+ 14748
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 16
},
"end": {
- "line": 395,
+ "line": 391,
"column": 23
}
}
},
"range": [
- 14863,
- 14875
+ 14736,
+ 14748
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 11
},
"end": {
- "line": 395,
+ "line": 391,
"column": 23
}
}
@@ -34538,31 +34182,31 @@
"value": 0,
"raw": "0",
"range": [
- 14876,
- 14877
+ 14749,
+ 14750
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 24
},
"end": {
- "line": 395,
+ "line": 391,
"column": 25
}
}
},
"range": [
- 14863,
- 14877
+ 14736,
+ 14750
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 11
},
"end": {
- "line": 395,
+ "line": 391,
"column": 25
}
}
@@ -34585,16 +34229,16 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 14892,
- 14896
+ 14765,
+ 14769
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 12
},
"end": {
- "line": 396,
+ "line": 392,
"column": 16
}
}
@@ -34603,31 +34247,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 14897,
- 14902
+ 14770,
+ 14775
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 17
},
"end": {
- "line": 396,
+ "line": 392,
"column": 22
}
}
},
"range": [
- 14892,
- 14902
+ 14765,
+ 14775
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 12
},
"end": {
- "line": 396,
+ "line": 392,
"column": 22
}
}
@@ -34636,31 +34280,31 @@
"type": "Identifier",
"name": "visibility",
"range": [
- 14903,
- 14913
+ 14776,
+ 14786
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 23
},
"end": {
- "line": 396,
+ "line": 392,
"column": 33
}
}
},
"range": [
- 14892,
- 14913
+ 14765,
+ 14786
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 12
},
"end": {
- "line": 396,
+ "line": 392,
"column": 33
}
}
@@ -34670,46 +34314,46 @@
"value": "visible",
"raw": "'visible'",
"range": [
- 14916,
- 14925
+ 14789,
+ 14798
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 36
},
"end": {
- "line": 396,
+ "line": 392,
"column": 45
}
}
},
"range": [
- 14892,
- 14925
+ 14765,
+ 14798
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 12
},
"end": {
- "line": 396,
+ "line": 392,
"column": 45
}
}
},
"range": [
- 14892,
- 14926
+ 14765,
+ 14799
],
"loc": {
"start": {
- "line": 396,
+ "line": 392,
"column": 12
},
"end": {
- "line": 396,
+ "line": 392,
"column": 46
}
}
@@ -34725,16 +34369,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14942,
- 14946
+ 14815,
+ 14819
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 15
},
"end": {
- "line": 397,
+ "line": 393,
"column": 19
}
}
@@ -34743,31 +34387,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 14947,
- 14963
+ 14820,
+ 14836
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 20
},
"end": {
- "line": 397,
+ "line": 393,
"column": 36
}
}
},
"range": [
- 14942,
- 14963
+ 14815,
+ 14836
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 15
},
"end": {
- "line": 397,
+ "line": 393,
"column": 36
}
}
@@ -34779,16 +34423,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 14968,
- 14970
+ 14841,
+ 14843
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 41
},
"end": {
- "line": 397,
+ "line": 393,
"column": 43
}
}
@@ -34797,46 +34441,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 14971,
- 14981
+ 14844,
+ 14854
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 44
},
"end": {
- "line": 397,
+ "line": 393,
"column": 54
}
}
},
"range": [
- 14968,
- 14981
+ 14841,
+ 14854
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 41
},
"end": {
- "line": 397,
+ "line": 393,
"column": 54
}
}
},
"range": [
- 14942,
- 14981
+ 14815,
+ 14854
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 15
},
"end": {
- "line": 397,
+ "line": 393,
"column": 54
}
}
@@ -34855,16 +34499,16 @@
"type": "Identifier",
"name": "z",
"range": [
- 15008,
- 15009
+ 14881,
+ 14882
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 24
},
"end": {
- "line": 398,
+ "line": 394,
"column": 25
}
}
@@ -34874,31 +34518,31 @@
"value": 0,
"raw": "0",
"range": [
- 15010,
- 15011
+ 14883,
+ 14884
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 26
},
"end": {
- "line": 398,
+ "line": 394,
"column": 27
}
}
},
"range": [
- 15008,
- 15011
+ 14881,
+ 14884
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 24
},
"end": {
- "line": 398,
+ "line": 394,
"column": 27
}
}
@@ -34906,16 +34550,16 @@
],
"kind": "var",
"range": [
- 15004,
- 15011
+ 14877,
+ 14884
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 20
},
"end": {
- "line": 398,
+ "line": 394,
"column": 27
}
}
@@ -34927,16 +34571,16 @@
"type": "Identifier",
"name": "z",
"range": [
- 15013,
- 15014
+ 14886,
+ 14887
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 29
},
"end": {
- "line": 398,
+ "line": 394,
"column": 30
}
}
@@ -34947,16 +34591,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15015,
- 15019
+ 14888,
+ 14892
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 31
},
"end": {
- "line": 398,
+ "line": 394,
"column": 35
}
}
@@ -34965,46 +34609,46 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 15020,
- 15027
+ 14893,
+ 14900
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 36
},
"end": {
- "line": 398,
+ "line": 394,
"column": 43
}
}
},
"range": [
- 15015,
- 15027
+ 14888,
+ 14900
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 31
},
"end": {
- "line": 398,
+ "line": 394,
"column": 43
}
}
},
"range": [
- 15013,
- 15027
+ 14886,
+ 14900
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 29
},
"end": {
- "line": 398,
+ "line": 394,
"column": 43
}
}
@@ -35016,32 +34660,32 @@
"type": "Identifier",
"name": "z",
"range": [
- 15029,
- 15030
+ 14902,
+ 14903
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 45
},
"end": {
- "line": 398,
+ "line": 394,
"column": 46
}
}
},
"prefix": false,
"range": [
- 15029,
- 15032
+ 14902,
+ 14905
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 45
},
"end": {
- "line": 398,
+ "line": 394,
"column": 48
}
}
@@ -35058,16 +34702,16 @@
"type": "Identifier",
"name": "opt",
"range": [
- 15059,
- 15062
+ 14932,
+ 14935
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 24
},
"end": {
- "line": 399,
+ "line": 395,
"column": 27
}
}
@@ -35081,16 +34725,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 15065,
- 15068
+ 14938,
+ 14941
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 30
},
"end": {
- "line": 399,
+ "line": 395,
"column": 33
}
}
@@ -35099,31 +34743,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 15069,
- 15078
+ 14942,
+ 14951
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 34
},
"end": {
- "line": 399,
+ "line": 395,
"column": 43
}
}
},
"range": [
- 15065,
- 15078
+ 14938,
+ 14951
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 30
},
"end": {
- "line": 399,
+ "line": 395,
"column": 43
}
}
@@ -35136,16 +34780,16 @@
"type": "Identifier",
"name": "z",
"range": [
- 15079,
- 15080
+ 14952,
+ 14953
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 44
},
"end": {
- "line": 399,
+ "line": 395,
"column": 45
}
}
@@ -35155,31 +34799,31 @@
"value": 1,
"raw": "1",
"range": [
- 15081,
- 15082
+ 14954,
+ 14955
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 46
},
"end": {
- "line": 399,
+ "line": 395,
"column": 47
}
}
},
"range": [
- 15079,
- 15082
+ 14952,
+ 14955
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 44
},
"end": {
- "line": 399,
+ "line": 395,
"column": 47
}
}
@@ -35191,16 +34835,16 @@
"type": "Identifier",
"name": "z",
"range": [
- 15084,
- 15085
+ 14957,
+ 14958
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 49
},
"end": {
- "line": 399,
+ "line": 395,
"column": 50
}
}
@@ -35211,16 +34855,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15086,
- 15090
+ 14959,
+ 14963
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 51
},
"end": {
- "line": 399,
+ "line": 395,
"column": 55
}
}
@@ -35229,46 +34873,46 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 15091,
- 15103
+ 14964,
+ 14976
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 56
},
"end": {
- "line": 399,
+ "line": 395,
"column": 68
}
}
},
"range": [
- 15086,
- 15103
+ 14959,
+ 14976
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 51
},
"end": {
- "line": 399,
+ "line": 395,
"column": 68
}
}
},
"range": [
- 15084,
- 15103
+ 14957,
+ 14976
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 49
},
"end": {
- "line": 399,
+ "line": 395,
"column": 68
}
}
@@ -35278,47 +34922,47 @@
"value": false,
"raw": "false",
"range": [
- 15105,
- 15110
+ 14978,
+ 14983
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 70
},
"end": {
- "line": 399,
+ "line": 395,
"column": 75
}
}
}
],
"range": [
- 15065,
- 15111
+ 14938,
+ 14984
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 30
},
"end": {
- "line": 399,
+ "line": 395,
"column": 76
}
}
},
"range": [
- 15059,
- 15111
+ 14932,
+ 14984
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 24
},
"end": {
- "line": 399,
+ "line": 395,
"column": 76
}
}
@@ -35326,16 +34970,16 @@
],
"kind": "var",
"range": [
- 15055,
- 15112
+ 14928,
+ 14985
],
"loc": {
"start": {
- "line": 399,
+ "line": 395,
"column": 20
},
"end": {
- "line": 399,
+ "line": 395,
"column": 77
}
}
@@ -35357,16 +35001,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15133,
- 15137
+ 15006,
+ 15010
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 24
}
}
@@ -35375,31 +35019,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 15138,
- 15147
+ 15011,
+ 15020
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 25
},
"end": {
- "line": 400,
+ "line": 396,
"column": 34
}
}
},
"range": [
- 15133,
- 15147
+ 15006,
+ 15020
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 34
}
}
@@ -35408,31 +35052,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 15148,
- 15155
+ 15021,
+ 15028
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 35
},
"end": {
- "line": 400,
+ "line": 396,
"column": 42
}
}
},
"range": [
- 15133,
- 15155
+ 15006,
+ 15028
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 42
}
}
@@ -35441,31 +35085,31 @@
"type": "Identifier",
"name": "z",
"range": [
- 15156,
- 15157
+ 15029,
+ 15030
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 43
},
"end": {
- "line": 400,
+ "line": 396,
"column": 44
}
}
},
"range": [
- 15133,
- 15158
+ 15006,
+ 15031
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 45
}
}
@@ -35474,93 +35118,93 @@
"type": "Identifier",
"name": "opt",
"range": [
- 15161,
- 15164
+ 15034,
+ 15037
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 48
},
"end": {
- "line": 400,
+ "line": 396,
"column": 51
}
}
},
"range": [
- 15133,
- 15164
+ 15006,
+ 15037
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 51
}
}
},
"range": [
- 15133,
- 15165
+ 15006,
+ 15038
],
"loc": {
"start": {
- "line": 400,
+ "line": 396,
"column": 20
},
"end": {
- "line": 400,
+ "line": 396,
"column": 52
}
}
}
],
"range": [
- 15033,
- 15183
+ 14906,
+ 15056
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 49
},
"end": {
- "line": 401,
+ "line": 397,
"column": 17
}
}
},
"range": [
- 15000,
- 15183
+ 14873,
+ 15056
],
"loc": {
"start": {
- "line": 398,
+ "line": 394,
"column": 16
},
"end": {
- "line": 401,
+ "line": 397,
"column": 17
}
}
}
],
"range": [
- 14982,
- 15197
+ 14855,
+ 15070
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 55
},
"end": {
- "line": 402,
+ "line": 398,
"column": 13
}
}
@@ -35582,16 +35226,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15249,
- 15253
+ 15122,
+ 15126
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 16
},
"end": {
- "line": 404,
+ "line": 400,
"column": 20
}
}
@@ -35600,31 +35244,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 15254,
- 15263
+ 15127,
+ 15136
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 21
},
"end": {
- "line": 404,
+ "line": 400,
"column": 30
}
}
},
"range": [
- 15249,
- 15263
+ 15122,
+ 15136
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 16
},
"end": {
- "line": 404,
+ "line": 400,
"column": 30
}
}
@@ -35633,31 +35277,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 15264,
- 15269
+ 15137,
+ 15142
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 31
},
"end": {
- "line": 404,
+ "line": 400,
"column": 36
}
}
},
"range": [
- 15249,
- 15269
+ 15122,
+ 15142
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 16
},
"end": {
- "line": 404,
+ "line": 400,
"column": 36
}
}
@@ -35668,16 +35312,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15272,
- 15276
+ 15145,
+ 15149
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 39
},
"end": {
- "line": 404,
+ "line": 400,
"column": 43
}
}
@@ -35686,61 +35330,61 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 15277,
- 15290
+ 15150,
+ 15163
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 44
},
"end": {
- "line": 404,
+ "line": 400,
"column": 57
}
}
},
"range": [
- 15272,
- 15290
+ 15145,
+ 15163
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 39
},
"end": {
- "line": 404,
+ "line": 400,
"column": 57
}
}
},
"range": [
- 15249,
- 15290
+ 15122,
+ 15163
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 16
},
"end": {
- "line": 404,
+ "line": 400,
"column": 57
}
}
},
"range": [
- 15249,
- 15291
+ 15122,
+ 15164
],
"loc": {
"start": {
- "line": 404,
+ "line": 400,
"column": 16
},
"end": {
- "line": 404,
+ "line": 400,
"column": 58
}
},
@@ -35749,16 +35393,16 @@
"type": "Line",
"value": "input type",
"range": [
- 15220,
- 15232
+ 15093,
+ 15105
],
"loc": {
"start": {
- "line": 403,
+ "line": 399,
"column": 16
},
"end": {
- "line": 403,
+ "line": 399,
"column": 28
}
}
@@ -35767,47 +35411,47 @@
}
],
"range": [
- 15202,
- 15305
+ 15075,
+ 15178
],
"loc": {
"start": {
- "line": 402,
+ "line": 398,
"column": 18
},
"end": {
- "line": 405,
+ "line": 401,
"column": 13
}
}
},
"range": [
- 14939,
- 15305
+ 14812,
+ 15178
],
"loc": {
"start": {
- "line": 397,
+ "line": 393,
"column": 12
},
"end": {
- "line": 405,
+ "line": 401,
"column": 13
}
}
}
],
"range": [
- 14878,
- 15316
+ 14751,
+ 15189
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 26
},
"end": {
- "line": 407,
+ "line": 403,
"column": 9
}
}
@@ -35830,16 +35474,16 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 15409,
- 15413
+ 15282,
+ 15286
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 12
},
"end": {
- "line": 409,
+ "line": 405,
"column": 16
}
}
@@ -35848,31 +35492,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 15414,
- 15419
+ 15287,
+ 15292
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 17
},
"end": {
- "line": 409,
+ "line": 405,
"column": 22
}
}
},
"range": [
- 15409,
- 15419
+ 15282,
+ 15292
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 12
},
"end": {
- "line": 409,
+ "line": 405,
"column": 22
}
}
@@ -35881,31 +35525,31 @@
"type": "Identifier",
"name": "visibility",
"range": [
- 15420,
- 15430
+ 15293,
+ 15303
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 23
},
"end": {
- "line": 409,
+ "line": 405,
"column": 33
}
}
},
"range": [
- 15409,
- 15430
+ 15282,
+ 15303
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 12
},
"end": {
- "line": 409,
+ "line": 405,
"column": 33
}
}
@@ -35915,46 +35559,46 @@
"value": "hidden",
"raw": "'hidden'",
"range": [
- 15433,
- 15441
+ 15306,
+ 15314
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 36
},
"end": {
- "line": 409,
+ "line": 405,
"column": 44
}
}
},
"range": [
- 15409,
- 15441
+ 15282,
+ 15314
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 12
},
"end": {
- "line": 409,
+ "line": 405,
"column": 44
}
}
},
"range": [
- 15409,
- 15442
+ 15282,
+ 15315
],
"loc": {
"start": {
- "line": 409,
+ "line": 405,
"column": 12
},
"end": {
- "line": 409,
+ "line": 405,
"column": 45
}
},
@@ -35963,16 +35607,16 @@
"type": "Block",
"value": "** if no results paging select and buttons are hidden **",
"range": [
- 15336,
- 15396
+ 15209,
+ 15269
],
"loc": {
"start": {
- "line": 408,
+ "line": 404,
"column": 12
},
"end": {
- "line": 408,
+ "line": 404,
"column": 72
}
}
@@ -35981,31 +35625,31 @@
}
],
"range": [
- 15322,
- 15452
+ 15195,
+ 15325
],
"loc": {
"start": {
- "line": 407,
+ "line": 403,
"column": 15
},
"end": {
- "line": 410,
+ "line": 406,
"column": 9
}
}
},
"range": [
- 14860,
- 15452
+ 14733,
+ 15325
],
"loc": {
"start": {
- "line": 395,
+ "line": 391,
"column": 8
},
"end": {
- "line": 410,
+ "line": 406,
"column": 9
}
}
@@ -36020,16 +35664,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15461,
- 15465
+ 15334,
+ 15338
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 8
},
"end": {
- "line": 411,
+ "line": 407,
"column": 12
}
}
@@ -36038,31 +35682,31 @@
"type": "Identifier",
"name": "groupByPage",
"range": [
- 15466,
- 15477
+ 15339,
+ 15350
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 13
},
"end": {
- "line": 411,
+ "line": 407,
"column": 24
}
}
},
"range": [
- 15461,
- 15477
+ 15334,
+ 15350
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 8
},
"end": {
- "line": 411,
+ "line": 407,
"column": 24
}
}
@@ -36075,16 +35719,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 15478,
- 15480
+ 15351,
+ 15353
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 25
},
"end": {
- "line": 411,
+ "line": 407,
"column": 27
}
}
@@ -36093,78 +35737,78 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 15481,
- 15495
+ 15354,
+ 15368
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 28
},
"end": {
- "line": 411,
+ "line": 407,
"column": 42
}
}
},
"range": [
- 15478,
- 15495
+ 15351,
+ 15368
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 25
},
"end": {
- "line": 411,
+ "line": 407,
"column": 42
}
}
}
],
"range": [
- 15461,
- 15496
+ 15334,
+ 15369
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 8
},
"end": {
- "line": 411,
+ "line": 407,
"column": 43
}
}
},
"range": [
- 15461,
- 15497
+ 15334,
+ 15370
],
"loc": {
"start": {
- "line": 411,
+ "line": 407,
"column": 8
},
"end": {
- "line": 411,
+ "line": 407,
"column": 44
}
}
}
],
"range": [
- 13796,
- 15503
+ 14145,
+ 15376
],
"loc": {
"start": {
- "line": 362,
- "column": 31
+ "line": 374,
+ "column": 28
},
"end": {
- "line": 412,
+ "line": 408,
"column": 5
}
}
@@ -36172,16 +35816,16 @@
"generator": false,
"expression": false,
"range": [
- 13782,
- 15503
+ 14134,
+ 15376
],
"loc": {
"start": {
- "line": 362,
+ "line": 374,
"column": 17
},
"end": {
- "line": 412,
+ "line": 408,
"column": 5
}
}
@@ -36189,16 +35833,16 @@
"kind": "method",
"computed": false,
"range": [
- 13769,
- 15503
+ 14121,
+ 15376
],
"loc": {
"start": {
- "line": 362,
+ "line": 374,
"column": 4
},
"end": {
- "line": 412,
+ "line": 408,
"column": 5
}
},
@@ -36207,16 +35851,16 @@
"type": "Block",
"value": "*\n * Calculate number of pages based on valid rows\n * Refresh paging select according to number of pages\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 13585,
- 13764
+ 13937,
+ 14116
],
"loc": {
"start": {
- "line": 357,
+ "line": 369,
"column": 4
},
"end": {
- "line": 361,
+ "line": 373,
"column": 7
}
}
@@ -36227,16 +35871,16 @@
"type": "Block",
"value": "*\n * Group table rows by page and display valid rows\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 15509,
- 15633
+ 15382,
+ 15506
],
"loc": {
"start": {
- "line": 414,
+ "line": 410,
"column": 4
},
"end": {
- "line": 417,
+ "line": 413,
"column": 7
}
}
@@ -36250,16 +35894,16 @@
"type": "Identifier",
"name": "groupByPage",
"range": [
- 15638,
- 15649
+ 15511,
+ 15522
],
"loc": {
"start": {
- "line": 418,
+ "line": 414,
"column": 4
},
"end": {
- "line": 418,
+ "line": 414,
"column": 15
}
}
@@ -36272,16 +35916,16 @@
"type": "Identifier",
"name": "validRows",
"range": [
- 15650,
- 15659
+ 15523,
+ 15532
],
"loc": {
"start": {
- "line": 418,
+ "line": 414,
"column": 16
},
"end": {
- "line": 418,
+ "line": 414,
"column": 25
}
}
@@ -36299,16 +35943,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 15674,
- 15676
+ 15547,
+ 15549
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 12
},
"end": {
- "line": 419,
+ "line": 415,
"column": 14
}
}
@@ -36319,16 +35963,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15679,
- 15683
+ 15552,
+ 15556
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 17
},
"end": {
- "line": 419,
+ "line": 415,
"column": 21
}
}
@@ -36337,46 +35981,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 15684,
- 15686
+ 15557,
+ 15559
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 22
},
"end": {
- "line": 419,
+ "line": 415,
"column": 24
}
}
},
"range": [
- 15679,
- 15686
+ 15552,
+ 15559
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 17
},
"end": {
- "line": 419,
+ "line": 415,
"column": 24
}
}
},
"range": [
- 15674,
- 15686
+ 15547,
+ 15559
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 12
},
"end": {
- "line": 419,
+ "line": 415,
"column": 24
}
}
@@ -36384,167 +36028,20 @@
],
"kind": "var",
"range": [
- 15670,
- 15687
+ 15543,
+ 15560
],
"loc": {
"start": {
- "line": 419,
+ "line": 415,
"column": 8
},
"end": {
- "line": 419,
+ "line": 415,
"column": 25
}
}
},
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 15700,
- 15713
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 12
- },
- "end": {
- "line": 420,
- "column": 25
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 15716,
- 15718
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 28
- },
- "end": {
- "line": 420,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "feature",
- "range": [
- 15719,
- 15726
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 31
- },
- "end": {
- "line": 420,
- "column": 38
- }
- }
- },
- "range": [
- 15716,
- 15726
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 28
- },
- "end": {
- "line": 420,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "alternateRows",
- "raw": "'alternateRows'",
- "range": [
- 15727,
- 15742
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 39
- },
- "end": {
- "line": 420,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 15716,
- 15743
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 28
- },
- "end": {
- "line": 420,
- "column": 55
- }
- }
- },
- "range": [
- 15700,
- 15743
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 12
- },
- "end": {
- "line": 420,
- "column": 55
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 15696,
- 15744
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 8
- },
- "end": {
- "line": 420,
- "column": 56
- }
- }
- },
{
"type": "VariableDeclaration",
"declarations": [
@@ -36554,16 +36051,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 15757,
- 15761
+ 15573,
+ 15577
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 12
},
"end": {
- "line": 421,
+ "line": 416,
"column": 16
}
}
@@ -36578,16 +36075,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 15764,
- 15766
+ 15580,
+ 15582
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 19
},
"end": {
- "line": 421,
+ "line": 416,
"column": 21
}
}
@@ -36596,31 +36093,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 15767,
- 15770
+ 15583,
+ 15586
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 22
},
"end": {
- "line": 421,
+ "line": 416,
"column": 25
}
}
},
"range": [
- 15764,
- 15770
+ 15580,
+ 15586
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 19
},
"end": {
- "line": 421,
+ "line": 416,
"column": 25
}
}
@@ -36629,46 +36126,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 15771,
- 15775
+ 15587,
+ 15591
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 26
},
"end": {
- "line": 421,
+ "line": 416,
"column": 30
}
}
},
"range": [
- 15764,
- 15775
+ 15580,
+ 15591
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 19
},
"end": {
- "line": 421,
+ "line": 416,
"column": 30
}
}
},
"range": [
- 15757,
- 15775
+ 15573,
+ 15591
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 12
},
"end": {
- "line": 421,
+ "line": 416,
"column": 30
}
}
@@ -36676,16 +36173,16 @@
],
"kind": "var",
"range": [
- 15753,
- 15776
+ 15569,
+ 15592
],
"loc": {
"start": {
- "line": 421,
+ "line": 416,
"column": 8
},
"end": {
- "line": 421,
+ "line": 416,
"column": 31
}
}
@@ -36699,16 +36196,16 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 15789,
- 15803
+ 15605,
+ 15619
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 12
},
"end": {
- "line": 422,
+ "line": 417,
"column": 26
}
}
@@ -36719,16 +36216,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 15806,
- 15814
+ 15622,
+ 15630
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 29
},
"end": {
- "line": 422,
+ "line": 417,
"column": 37
}
}
@@ -36740,16 +36237,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15815,
- 15819
+ 15631,
+ 15635
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 38
},
"end": {
- "line": 422,
+ "line": 417,
"column": 42
}
}
@@ -36758,31 +36255,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 15820,
- 15834
+ 15636,
+ 15650
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 43
},
"end": {
- "line": 422,
+ "line": 417,
"column": 57
}
}
},
"range": [
- 15815,
- 15834
+ 15631,
+ 15650
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 38
},
"end": {
- "line": 422,
+ "line": 417,
"column": 57
}
}
@@ -36792,47 +36289,47 @@
"value": 10,
"raw": "10",
"range": [
- 15836,
- 15838
+ 15652,
+ 15654
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 59
},
"end": {
- "line": 422,
+ "line": 417,
"column": 61
}
}
}
],
"range": [
- 15806,
- 15839
+ 15622,
+ 15655
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 29
},
"end": {
- "line": 422,
+ "line": 417,
"column": 62
}
}
},
"range": [
- 15789,
- 15839
+ 15605,
+ 15655
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 12
},
"end": {
- "line": 422,
+ "line": 417,
"column": 62
}
}
@@ -36840,16 +36337,16 @@
],
"kind": "var",
"range": [
- 15785,
- 15840
+ 15601,
+ 15656
],
"loc": {
"start": {
- "line": 422,
+ "line": 417,
"column": 8
},
"end": {
- "line": 422,
+ "line": 417,
"column": 63
}
}
@@ -36863,16 +36360,16 @@
"type": "Identifier",
"name": "endPagingRow",
"range": [
- 15853,
- 15865
+ 15669,
+ 15681
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 12
},
"end": {
- "line": 423,
+ "line": 418,
"column": 24
}
}
@@ -36884,16 +36381,16 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 15868,
- 15882
+ 15684,
+ 15698
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 27
},
"end": {
- "line": 423,
+ "line": 418,
"column": 41
}
}
@@ -36904,16 +36401,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 15885,
- 15893
+ 15701,
+ 15709
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 44
},
"end": {
- "line": 423,
+ "line": 418,
"column": 52
}
}
@@ -36925,16 +36422,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15894,
- 15898
+ 15710,
+ 15714
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 53
},
"end": {
- "line": 423,
+ "line": 418,
"column": 57
}
}
@@ -36943,31 +36440,31 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 15899,
- 15911
+ 15715,
+ 15727
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 58
},
"end": {
- "line": 423,
+ "line": 418,
"column": 70
}
}
},
"range": [
- 15894,
- 15911
+ 15710,
+ 15727
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 53
},
"end": {
- "line": 423,
+ "line": 418,
"column": 70
}
}
@@ -36977,62 +36474,62 @@
"value": 10,
"raw": "10",
"range": [
- 15913,
- 15915
+ 15729,
+ 15731
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 72
},
"end": {
- "line": 423,
+ "line": 418,
"column": 74
}
}
}
],
"range": [
- 15885,
- 15916
+ 15701,
+ 15732
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 44
},
"end": {
- "line": 423,
+ "line": 418,
"column": 75
}
}
},
"range": [
- 15868,
- 15916
+ 15684,
+ 15732
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 27
},
"end": {
- "line": 423,
+ "line": 418,
"column": 75
}
}
},
"range": [
- 15853,
- 15916
+ 15669,
+ 15732
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 12
},
"end": {
- "line": 423,
+ "line": 418,
"column": 75
}
}
@@ -37040,16 +36537,16 @@
],
"kind": "var",
"range": [
- 15849,
- 15917
+ 15665,
+ 15733
],
"loc": {
"start": {
- "line": 423,
+ "line": 418,
"column": 8
},
"end": {
- "line": 423,
+ "line": 418,
"column": 76
}
},
@@ -37058,16 +36555,16 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 15927,
- 15953
+ 15743,
+ 15769
],
"loc": {
"start": {
- "line": 425,
+ "line": 420,
"column": 8
},
"end": {
- "line": 425,
+ "line": 420,
"column": 34
}
}
@@ -37080,16 +36577,16 @@
"type": "Identifier",
"name": "validRows",
"range": [
- 15965,
- 15974
+ 15781,
+ 15790
],
"loc": {
"start": {
- "line": 426,
+ "line": 421,
"column": 11
},
"end": {
- "line": 426,
+ "line": 421,
"column": 20
}
}
@@ -37109,16 +36606,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 15989,
- 15991
+ 15805,
+ 15807
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 12
},
"end": {
- "line": 427,
+ "line": 422,
"column": 14
}
}
@@ -37127,31 +36624,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 15992,
- 16006
+ 15808,
+ 15822
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 15
},
"end": {
- "line": 427,
+ "line": 422,
"column": 29
}
}
},
"range": [
- 15989,
- 16006
+ 15805,
+ 15822
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 12
},
"end": {
- "line": 427,
+ "line": 422,
"column": 29
}
}
@@ -37160,78 +36657,78 @@
"type": "Identifier",
"name": "validRows",
"range": [
- 16009,
- 16018
+ 15825,
+ 15834
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 32
},
"end": {
- "line": 427,
+ "line": 422,
"column": 41
}
}
},
"range": [
- 15989,
- 16018
+ 15805,
+ 15834
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 12
},
"end": {
- "line": 427,
+ "line": 422,
"column": 41
}
}
},
"range": [
- 15989,
- 16019
+ 15805,
+ 15835
],
"loc": {
"start": {
- "line": 427,
+ "line": 422,
"column": 12
},
"end": {
- "line": 427,
+ "line": 422,
"column": 42
}
}
}
],
"range": [
- 15975,
- 16029
+ 15791,
+ 15845
],
"loc": {
"start": {
- "line": 426,
+ "line": 421,
"column": 21
},
"end": {
- "line": 428,
+ "line": 423,
"column": 9
}
}
},
"alternate": null,
"range": [
- 15962,
- 16029
+ 15778,
+ 15845
],
"loc": {
"start": {
- "line": 426,
+ "line": 421,
"column": 8
},
"end": {
- "line": 428,
+ "line": 423,
"column": 9
}
},
@@ -37240,16 +36737,16 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 15927,
- 15953
+ 15743,
+ 15769
],
"loc": {
"start": {
- "line": 425,
+ "line": 420,
"column": 8
},
"end": {
- "line": 425,
+ "line": 420,
"column": 34
}
}
@@ -37260,16 +36757,16 @@
"type": "Line",
"value": "this loop shows valid rows of current page",
"range": [
- 16039,
- 16083
+ 15855,
+ 15899
],
"loc": {
"start": {
- "line": 430,
+ "line": 425,
"column": 8
},
"end": {
- "line": 430,
+ "line": 425,
"column": 52
}
}
@@ -37287,16 +36784,16 @@
"type": "Identifier",
"name": "h",
"range": [
- 16100,
- 16101
+ 15916,
+ 15917
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 16
},
"end": {
- "line": 431,
+ "line": 426,
"column": 17
}
}
@@ -37306,31 +36803,31 @@
"value": 0,
"raw": "0",
"range": [
- 16102,
- 16103
+ 15918,
+ 15919
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 18
},
"end": {
- "line": 431,
+ "line": 426,
"column": 19
}
}
},
"range": [
- 16100,
- 16103
+ 15916,
+ 15919
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 16
},
"end": {
- "line": 431,
+ "line": 426,
"column": 19
}
}
@@ -37341,16 +36838,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 16105,
- 16108
+ 15921,
+ 15924
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 21
},
"end": {
- "line": 431,
+ "line": 426,
"column": 24
}
}
@@ -37365,16 +36862,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 16109,
- 16111
+ 15925,
+ 15927
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 25
},
"end": {
- "line": 431,
+ "line": 426,
"column": 27
}
}
@@ -37383,31 +36880,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 16112,
- 16126
+ 15928,
+ 15942
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 28
},
"end": {
- "line": 431,
+ "line": 426,
"column": 42
}
}
},
"range": [
- 16109,
- 16126
+ 15925,
+ 15942
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 25
},
"end": {
- "line": 431,
+ "line": 426,
"column": 42
}
}
@@ -37416,46 +36913,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 16127,
- 16133
+ 15943,
+ 15949
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 43
},
"end": {
- "line": 431,
+ "line": 426,
"column": 49
}
}
},
"range": [
- 16109,
- 16133
+ 15925,
+ 15949
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 25
},
"end": {
- "line": 431,
+ "line": 426,
"column": 49
}
}
},
"range": [
- 16105,
- 16133
+ 15921,
+ 15949
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 21
},
"end": {
- "line": 431,
+ "line": 426,
"column": 49
}
}
@@ -37463,16 +36960,16 @@
],
"kind": "var",
"range": [
- 16096,
- 16133
+ 15912,
+ 15949
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 12
},
"end": {
- "line": 431,
+ "line": 426,
"column": 49
}
}
@@ -37484,16 +36981,16 @@
"type": "Identifier",
"name": "h",
"range": [
- 16135,
- 16136
+ 15951,
+ 15952
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 51
},
"end": {
- "line": 431,
+ "line": 426,
"column": 52
}
}
@@ -37502,31 +36999,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 16137,
- 16140
+ 15953,
+ 15956
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 53
},
"end": {
- "line": 431,
+ "line": 426,
"column": 56
}
}
},
"range": [
- 16135,
- 16140
+ 15951,
+ 15956
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 51
},
"end": {
- "line": 431,
+ "line": 426,
"column": 56
}
}
@@ -37538,32 +37035,32 @@
"type": "Identifier",
"name": "h",
"range": [
- 16142,
- 16143
+ 15958,
+ 15959
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 58
},
"end": {
- "line": 431,
+ "line": 426,
"column": 59
}
}
},
"prefix": false,
"range": [
- 16142,
- 16145
+ 15958,
+ 15961
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 58
},
"end": {
- "line": 431,
+ "line": 426,
"column": 61
}
}
@@ -37580,16 +37077,16 @@
"type": "Identifier",
"name": "validRowIdx",
"range": [
- 16164,
- 16175
+ 15980,
+ 15991
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 16
},
"end": {
- "line": 432,
+ "line": 427,
"column": 27
}
}
@@ -37604,16 +37101,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 16178,
- 16180
+ 15994,
+ 15996
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 30
},
"end": {
- "line": 432,
+ "line": 427,
"column": 32
}
}
@@ -37622,31 +37119,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 16181,
- 16195
+ 15997,
+ 16011
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 33
},
"end": {
- "line": 432,
+ "line": 427,
"column": 47
}
}
},
"range": [
- 16178,
- 16195
+ 15994,
+ 16011
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 30
},
"end": {
- "line": 432,
+ "line": 427,
"column": 47
}
}
@@ -37655,46 +37152,46 @@
"type": "Identifier",
"name": "h",
"range": [
- 16196,
- 16197
+ 16012,
+ 16013
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 48
},
"end": {
- "line": 432,
+ "line": 427,
"column": 49
}
}
},
"range": [
- 16178,
- 16198
+ 15994,
+ 16014
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 30
},
"end": {
- "line": 432,
+ "line": 427,
"column": 50
}
}
},
"range": [
- 16164,
- 16198
+ 15980,
+ 16014
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 16
},
"end": {
- "line": 432,
+ "line": 427,
"column": 50
}
}
@@ -37702,16 +37199,16 @@
],
"kind": "var",
"range": [
- 16160,
- 16199
+ 15976,
+ 16015
],
"loc": {
"start": {
- "line": 432,
+ "line": 427,
"column": 12
},
"end": {
- "line": 432,
+ "line": 427,
"column": 51
}
}
@@ -37725,16 +37222,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 16216,
- 16217
+ 16032,
+ 16033
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 16
},
"end": {
- "line": 433,
+ "line": 428,
"column": 17
}
}
@@ -37746,16 +37243,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 16220,
- 16224
+ 16036,
+ 16040
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 20
},
"end": {
- "line": 433,
+ "line": 428,
"column": 24
}
}
@@ -37764,46 +37261,46 @@
"type": "Identifier",
"name": "validRowIdx",
"range": [
- 16225,
- 16236
+ 16041,
+ 16052
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 25
},
"end": {
- "line": 433,
+ "line": 428,
"column": 36
}
}
},
"range": [
- 16220,
- 16237
+ 16036,
+ 16053
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 20
},
"end": {
- "line": 433,
+ "line": 428,
"column": 37
}
}
},
"range": [
- 16216,
- 16237
+ 16032,
+ 16053
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 16
},
"end": {
- "line": 433,
+ "line": 428,
"column": 37
}
}
@@ -37811,16 +37308,16 @@
],
"kind": "var",
"range": [
- 16212,
- 16238
+ 16028,
+ 16054
],
"loc": {
"start": {
- "line": 433,
+ "line": 428,
"column": 12
},
"end": {
- "line": 433,
+ "line": 428,
"column": 38
}
}
@@ -37834,16 +37331,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 16255,
- 16265
+ 16071,
+ 16081
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 16
},
"end": {
- "line": 434,
+ "line": 429,
"column": 26
}
}
@@ -37857,16 +37354,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 16268,
- 16269
+ 16084,
+ 16085
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 29
},
"end": {
- "line": 434,
+ "line": 429,
"column": 30
}
}
@@ -37875,31 +37372,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 16270,
- 16282
+ 16086,
+ 16098
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 31
},
"end": {
- "line": 434,
+ "line": 429,
"column": 43
}
}
},
"range": [
- 16268,
- 16282
+ 16084,
+ 16098
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 29
},
"end": {
- "line": 434,
+ "line": 429,
"column": 43
}
}
@@ -37910,47 +37407,47 @@
"value": "validRow",
"raw": "'validRow'",
"range": [
- 16283,
- 16293
+ 16099,
+ 16109
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 44
},
"end": {
- "line": 434,
+ "line": 429,
"column": 54
}
}
}
],
"range": [
- 16268,
- 16294
+ 16084,
+ 16110
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 29
},
"end": {
- "line": 434,
+ "line": 429,
"column": 55
}
}
},
"range": [
- 16255,
- 16294
+ 16071,
+ 16110
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 16
},
"end": {
- "line": 434,
+ "line": 429,
"column": 55
}
}
@@ -37958,20 +37455,94 @@
],
"kind": "var",
"range": [
- 16251,
- 16295
+ 16067,
+ 16111
],
"loc": {
"start": {
- "line": 434,
+ "line": 429,
"column": 12
},
"end": {
- "line": 434,
+ "line": 429,
"column": 56
}
}
},
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "rowDisplayed",
+ "range": [
+ 16128,
+ 16140
+ ],
+ "loc": {
+ "start": {
+ "line": 430,
+ "column": 16
+ },
+ "end": {
+ "line": 430,
+ "column": 28
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 16143,
+ 16148
+ ],
+ "loc": {
+ "start": {
+ "line": 430,
+ "column": 31
+ },
+ "end": {
+ "line": 430,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 16128,
+ 16148
+ ],
+ "loc": {
+ "start": {
+ "line": 430,
+ "column": 16
+ },
+ "end": {
+ "line": 430,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 16124,
+ 16149
+ ],
+ "loc": {
+ "start": {
+ "line": 430,
+ "column": 12
+ },
+ "end": {
+ "line": 430,
+ "column": 37
+ }
+ }
+ },
{
"type": "IfStatement",
"test": {
@@ -37984,16 +37555,16 @@
"type": "Identifier",
"name": "h",
"range": [
- 16312,
- 16313
+ 16166,
+ 16167
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 15
},
"end": {
- "line": 436,
+ "line": 432,
"column": 16
}
}
@@ -38002,31 +37573,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 16315,
- 16329
+ 16169,
+ 16183
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 18
},
"end": {
- "line": 436,
+ "line": 432,
"column": 32
}
}
},
"range": [
- 16312,
- 16329
+ 16166,
+ 16183
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 15
},
"end": {
- "line": 436,
+ "line": 432,
"column": 32
}
}
@@ -38038,16 +37609,16 @@
"type": "Identifier",
"name": "h",
"range": [
- 16333,
- 16334
+ 16187,
+ 16188
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 36
},
"end": {
- "line": 436,
+ "line": 432,
"column": 37
}
}
@@ -38056,46 +37627,46 @@
"type": "Identifier",
"name": "endPagingRow",
"range": [
- 16335,
- 16347
+ 16189,
+ 16201
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 38
},
"end": {
- "line": 436,
+ "line": 432,
"column": 50
}
}
},
"range": [
- 16333,
- 16347
+ 16187,
+ 16201
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 36
},
"end": {
- "line": 436,
+ "line": 432,
"column": 50
}
}
},
"range": [
- 16312,
- 16347
+ 16166,
+ 16201
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 15
},
"end": {
- "line": 436,
+ "line": 432,
"column": 50
}
}
@@ -38117,16 +37688,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 16369,
- 16374
+ 16223,
+ 16228
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 19
},
"end": {
- "line": 437,
+ "line": 433,
"column": 24
}
}
@@ -38135,31 +37706,31 @@
"type": "Identifier",
"name": "isNull",
"range": [
- 16375,
- 16381
+ 16229,
+ 16235
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 25
},
"end": {
- "line": 437,
+ "line": 433,
"column": 31
}
}
},
"range": [
- 16369,
- 16381
+ 16223,
+ 16235
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 19
},
"end": {
- "line": 437,
+ "line": 433,
"column": 31
}
}
@@ -38169,32 +37740,32 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 16382,
- 16392
+ 16236,
+ 16246
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 32
},
"end": {
- "line": 437,
+ "line": 433,
"column": 42
}
}
}
],
"range": [
- 16369,
- 16393
+ 16223,
+ 16247
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 19
},
"end": {
- "line": 437,
+ "line": 433,
"column": 43
}
}
@@ -38205,16 +37776,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 16397,
- 16404
+ 16251,
+ 16258
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 47
},
"end": {
- "line": 437,
+ "line": 433,
"column": 54
}
}
@@ -38227,16 +37798,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 16405,
- 16415
+ 16259,
+ 16269
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 55
},
"end": {
- "line": 437,
+ "line": 433,
"column": 65
}
}
@@ -38246,62 +37817,62 @@
"value": "true",
"raw": "'true'",
"range": [
- 16418,
- 16424
+ 16272,
+ 16278
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 68
},
"end": {
- "line": 437,
+ "line": 433,
"column": 74
}
}
},
"range": [
- 16405,
- 16424
+ 16259,
+ 16278
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 55
},
"end": {
- "line": 437,
+ "line": 433,
"column": 74
}
}
}
],
"range": [
- 16397,
- 16425
+ 16251,
+ 16279
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 47
},
"end": {
- "line": 437,
+ "line": 433,
"column": 75
}
}
},
"range": [
- 16369,
- 16425
+ 16223,
+ 16279
],
"loc": {
"start": {
- "line": 437,
+ "line": 433,
"column": 19
},
"end": {
- "line": 437,
+ "line": 433,
"column": 75
}
}
@@ -38324,16 +37895,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 16448,
- 16449
+ 16302,
+ 16303
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 20
},
"end": {
- "line": 438,
+ "line": 434,
"column": 21
}
}
@@ -38342,31 +37913,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 16450,
- 16455
+ 16304,
+ 16309
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 22
},
"end": {
- "line": 438,
+ "line": 434,
"column": 27
}
}
},
"range": [
- 16448,
- 16455
+ 16302,
+ 16309
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 20
},
"end": {
- "line": 438,
+ "line": 434,
"column": 27
}
}
@@ -38375,31 +37946,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 16456,
- 16463
+ 16310,
+ 16317
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 28
},
"end": {
- "line": 438,
+ "line": 434,
"column": 35
}
}
},
"range": [
- 16448,
- 16463
+ 16302,
+ 16317
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 20
},
"end": {
- "line": 438,
+ "line": 434,
"column": 35
}
}
@@ -38409,347 +37980,166 @@
"value": "",
"raw": "''",
"range": [
- 16466,
- 16468
+ 16320,
+ 16322
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 38
},
"end": {
- "line": 438,
+ "line": 434,
"column": 40
}
}
},
"range": [
- 16448,
- 16468
+ 16302,
+ 16322
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 20
},
"end": {
- "line": 438,
+ "line": 434,
"column": 40
}
}
},
"range": [
- 16448,
- 16469
+ 16302,
+ 16323
],
"loc": {
"start": {
- "line": 438,
+ "line": 434,
"column": 20
},
"end": {
- "line": 438,
+ "line": 434,
"column": 41
}
}
- }
- ],
- "range": [
- 16426,
- 16487
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 76
},
- "end": {
- "line": 439,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 16366,
- 16487
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 16
- },
- "end": {
- "line": 439,
- "column": 17
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 16507,
- 16509
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 19
- },
- "end": {
- "line": 440,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16510,
- 16523
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 22
- },
- "end": {
- "line": 440,
- "column": 35
- }
- }
- },
- "range": [
- 16507,
- 16523
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 19
- },
- "end": {
- "line": 440,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16527,
- 16540
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 39
- },
- "end": {
- "line": 440,
- "column": 52
- }
- }
- },
- "range": [
- 16507,
- 16540
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 19
- },
- "end": {
- "line": 440,
- "column": 52
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
{
"type": "ExpressionStatement",
"expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16563,
- 16576
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 20
- },
- "end": {
- "line": 441,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setRowBg",
- "range": [
- 16577,
- 16585
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 34
- },
- "end": {
- "line": 441,
- "column": 42
- }
- }
- },
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "rowDisplayed",
"range": [
- 16563,
- 16585
+ 16344,
+ 16356
],
"loc": {
"start": {
- "line": 441,
+ "line": 435,
"column": 20
},
"end": {
- "line": 441,
- "column": 42
+ "line": 435,
+ "column": 32
}
}
},
- "arguments": [
- {
- "type": "Identifier",
- "name": "validRowIdx",
- "range": [
- 16586,
- 16597
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 43
- },
- "end": {
- "line": 441,
- "column": 54
- }
- }
- },
- {
- "type": "Identifier",
- "name": "h",
- "range": [
- 16599,
- 16600
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 56
- },
- "end": {
- "line": 441,
- "column": 57
- }
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 16359,
+ 16363
+ ],
+ "loc": {
+ "start": {
+ "line": 435,
+ "column": 35
+ },
+ "end": {
+ "line": 435,
+ "column": 39
}
}
- ],
+ },
"range": [
- 16563,
- 16601
+ 16344,
+ 16363
],
"loc": {
"start": {
- "line": 441,
+ "line": 435,
"column": 20
},
"end": {
- "line": 441,
- "column": 58
+ "line": 435,
+ "column": 39
}
}
},
"range": [
- 16563,
- 16602
+ 16344,
+ 16364
],
"loc": {
"start": {
- "line": 441,
+ "line": 435,
"column": 20
},
"end": {
- "line": 441,
- "column": 59
+ "line": 435,
+ "column": 40
}
}
}
],
"range": [
- 16541,
- 16620
+ 16280,
+ 16382
],
"loc": {
"start": {
- "line": 440,
- "column": 53
+ "line": 433,
+ "column": 76
},
"end": {
- "line": 442,
+ "line": 436,
"column": 17
}
}
},
"alternate": null,
"range": [
- 16504,
- 16620
+ 16220,
+ 16382
],
"loc": {
"start": {
- "line": 440,
+ "line": 433,
"column": 16
},
"end": {
- "line": 442,
+ "line": 436,
"column": 17
}
}
}
],
"range": [
- 16348,
- 16634
+ 16202,
+ 16396
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 51
},
"end": {
- "line": 443,
+ "line": 437,
"column": 13
}
}
@@ -38772,16 +38162,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 16658,
- 16659
+ 16420,
+ 16421
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 16
},
"end": {
- "line": 444,
+ "line": 438,
"column": 17
}
}
@@ -38790,31 +38180,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 16660,
- 16665
+ 16422,
+ 16427
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 18
},
"end": {
- "line": 444,
+ "line": 438,
"column": 23
}
}
},
"range": [
- 16658,
- 16665
+ 16420,
+ 16427
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 16
},
"end": {
- "line": 444,
+ "line": 438,
"column": 23
}
}
@@ -38823,31 +38213,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 16666,
- 16673
+ 16428,
+ 16435
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 24
},
"end": {
- "line": 444,
+ "line": 438,
"column": 31
}
}
},
"range": [
- 16658,
- 16673
+ 16420,
+ 16435
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 16
},
"end": {
- "line": 444,
+ "line": 438,
"column": 31
}
}
@@ -38857,343 +38247,324 @@
"value": "none",
"raw": "'none'",
"range": [
- 16676,
- 16682
+ 16438,
+ 16444
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 34
},
"end": {
- "line": 444,
+ "line": 438,
"column": 40
}
}
},
"range": [
- 16658,
- 16682
+ 16420,
+ 16444
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 16
},
"end": {
- "line": 444,
+ "line": 438,
"column": 40
}
}
},
"range": [
- 16658,
- 16683
+ 16420,
+ 16445
],
"loc": {
"start": {
- "line": 444,
+ "line": 438,
"column": 16
},
"end": {
- "line": 444,
+ "line": 438,
"column": 41
}
}
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 16703,
- 16705
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 19
- },
- "end": {
- "line": 445,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16706,
- 16719
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 22
- },
- "end": {
- "line": 445,
- "column": 35
- }
- }
- },
- "range": [
- 16703,
- 16719
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 19
- },
- "end": {
- "line": 445,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16723,
- 16736
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 39
- },
- "end": {
- "line": 445,
- "column": 52
- }
- }
- },
- "range": [
- 16703,
- 16736
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 19
- },
- "end": {
- "line": 445,
- "column": 52
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 16759,
- 16772
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 20
- },
- "end": {
- "line": 446,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeRowBg",
- "range": [
- 16773,
- 16784
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 34
- },
- "end": {
- "line": 446,
- "column": 45
- }
- }
- },
- "range": [
- 16759,
- 16784
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 20
- },
- "end": {
- "line": 446,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "validRowIdx",
- "range": [
- 16785,
- 16796
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 46
- },
- "end": {
- "line": 446,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 16759,
- 16797
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 20
- },
- "end": {
- "line": 446,
- "column": 58
- }
- }
- },
- "range": [
- 16759,
- 16798
- ],
- "loc": {
- "start": {
- "line": 446,
- "column": 20
- },
- "end": {
- "line": 446,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 16737,
- 16816
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 53
- },
- "end": {
- "line": 447,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 16700,
- 16816
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 16
- },
- "end": {
- "line": 447,
- "column": 17
- }
- }
}
],
"range": [
- 16640,
- 16830
+ 16402,
+ 16459
],
"loc": {
"start": {
- "line": 443,
+ "line": 437,
"column": 19
},
"end": {
- "line": 448,
+ "line": 439,
"column": 13
}
}
},
"range": [
- 16309,
- 16830
+ 16163,
+ 16459
],
"loc": {
"start": {
- "line": 436,
+ "line": 432,
"column": 12
},
"end": {
- "line": 448,
+ "line": 439,
"column": 13
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16472,
+ 16476
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 12
+ },
+ "end": {
+ "line": 440,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 16477,
+ 16484
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 17
+ },
+ "end": {
+ "line": 440,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 16472,
+ 16484
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 12
+ },
+ "end": {
+ "line": 440,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 16485,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 25
+ },
+ "end": {
+ "line": 440,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 16472,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 12
+ },
+ "end": {
+ "line": 440,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "row-paged",
+ "raw": "'row-paged'",
+ "range": [
+ 16490,
+ 16501
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 30
+ },
+ "end": {
+ "line": 440,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16503,
+ 16505
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 43
+ },
+ "end": {
+ "line": 440,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "validRowIdx",
+ "range": [
+ 16507,
+ 16518
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 47
+ },
+ "end": {
+ "line": 440,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "h",
+ "range": [
+ 16520,
+ 16521
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 60
+ },
+ "end": {
+ "line": 440,
+ "column": 61
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "rowDisplayed",
+ "range": [
+ 16523,
+ 16535
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 63
+ },
+ "end": {
+ "line": 440,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 16472,
+ 16536
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 12
+ },
+ "end": {
+ "line": 440,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 16472,
+ 16537
+ ],
+ "loc": {
+ "start": {
+ "line": 440,
+ "column": 12
+ },
+ "end": {
+ "line": 440,
+ "column": 77
+ }
+ }
}
],
"range": [
- 16146,
- 16840
+ 15962,
+ 16547
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 62
},
"end": {
- "line": 449,
+ "line": 441,
"column": 9
}
}
},
"range": [
- 16092,
- 16840
+ 15908,
+ 16547
],
"loc": {
"start": {
- "line": 431,
+ "line": 426,
"column": 8
},
"end": {
- "line": 449,
+ "line": 441,
"column": 9
}
},
@@ -39202,16 +38573,16 @@
"type": "Line",
"value": "this loop shows valid rows of current page",
"range": [
- 16039,
- 16083
+ 15855,
+ 15899
],
"loc": {
"start": {
- "line": 430,
+ "line": 425,
"column": 8
},
"end": {
- "line": 430,
+ "line": 425,
"column": 52
}
}
@@ -39230,16 +38601,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 16850,
- 16852
+ 16557,
+ 16559
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 8
},
"end": {
- "line": 451,
+ "line": 443,
"column": 10
}
}
@@ -39248,31 +38619,31 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 16853,
- 16866
+ 16560,
+ 16573
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 11
},
"end": {
- "line": 451,
+ "line": 443,
"column": 24
}
}
},
"range": [
- 16850,
- 16866
+ 16557,
+ 16573
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 8
},
"end": {
- "line": 451,
+ "line": 443,
"column": 24
}
}
@@ -39287,16 +38658,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 16869,
- 16871
+ 16576,
+ 16578
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 27
},
"end": {
- "line": 451,
+ "line": 443,
"column": 29
}
}
@@ -39305,31 +38676,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 16872,
- 16886
+ 16579,
+ 16593
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 30
},
"end": {
- "line": 451,
+ "line": 443,
"column": 44
}
}
},
"range": [
- 16869,
- 16886
+ 16576,
+ 16593
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 27
},
"end": {
- "line": 451,
+ "line": 443,
"column": 44
}
}
@@ -39338,80 +38709,80 @@
"type": "Identifier",
"name": "length",
"range": [
- 16887,
- 16893
+ 16594,
+ 16600
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 45
},
"end": {
- "line": 451,
+ "line": 443,
"column": 51
}
}
},
"range": [
- 16869,
- 16893
+ 16576,
+ 16600
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 27
},
"end": {
- "line": 451,
+ "line": 443,
"column": 51
}
}
},
"range": [
- 16850,
- 16893
+ 16557,
+ 16600
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 8
},
"end": {
- "line": 451,
+ "line": 443,
"column": 51
}
}
},
"range": [
- 16850,
- 16894
+ 16557,
+ 16601
],
"loc": {
"start": {
- "line": 451,
+ "line": 443,
"column": 8
},
"end": {
- "line": 451,
+ "line": 443,
"column": 52
}
},
"trailingComments": [
{
"type": "Line",
- "value": "re-applies filter behaviours after filtering process",
+ "value": " broadcast grouping by page",
"range": [
- 16903,
- 16957
+ 16611,
+ 16640
],
"loc": {
"start": {
- "line": 452,
+ "line": 445,
"column": 8
},
"end": {
- "line": 452,
- "column": 62
+ "line": 445,
+ "column": 37
}
}
}
@@ -39425,102 +38796,192 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "tf",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16649,
+ 16653
+ ],
+ "loc": {
+ "start": {
+ "line": 446,
+ "column": 8
+ },
+ "end": {
+ "line": 446,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 16654,
+ 16661
+ ],
+ "loc": {
+ "start": {
+ "line": 446,
+ "column": 13
+ },
+ "end": {
+ "line": 446,
+ "column": 20
+ }
+ }
+ },
"range": [
- 16966,
- 16968
+ 16649,
+ 16661
],
"loc": {
"start": {
- "line": 453,
+ "line": 446,
"column": 8
},
"end": {
- "line": 453,
- "column": 10
+ "line": 446,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "applyProps",
+ "name": "emit",
"range": [
- 16969,
- 16979
+ 16662,
+ 16666
],
"loc": {
"start": {
- "line": 453,
- "column": 11
+ "line": 446,
+ "column": 21
},
"end": {
- "line": 453,
- "column": 21
+ "line": 446,
+ "column": 25
}
}
},
"range": [
- 16966,
- 16979
+ 16649,
+ 16666
],
"loc": {
"start": {
- "line": 453,
+ "line": 446,
"column": 8
},
"end": {
- "line": 453,
- "column": 21
+ "line": 446,
+ "column": 25
}
}
},
- "arguments": [],
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "grouped-by-page",
+ "raw": "'grouped-by-page'",
+ "range": [
+ 16667,
+ 16684
+ ],
+ "loc": {
+ "start": {
+ "line": 446,
+ "column": 26
+ },
+ "end": {
+ "line": 446,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 16686,
+ 16688
+ ],
+ "loc": {
+ "start": {
+ "line": 446,
+ "column": 45
+ },
+ "end": {
+ "line": 446,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 16690,
+ 16694
+ ],
+ "loc": {
+ "start": {
+ "line": 446,
+ "column": 49
+ },
+ "end": {
+ "line": 446,
+ "column": 53
+ }
+ }
+ }
+ ],
"range": [
- 16966,
- 16981
+ 16649,
+ 16695
],
"loc": {
"start": {
- "line": 453,
+ "line": 446,
"column": 8
},
"end": {
- "line": 453,
- "column": 23
+ "line": 446,
+ "column": 54
}
}
},
"range": [
- 16966,
- 16982
+ 16649,
+ 16696
],
"loc": {
"start": {
- "line": 453,
+ "line": 446,
"column": 8
},
"end": {
- "line": 453,
- "column": 24
+ "line": 446,
+ "column": 55
}
},
"leadingComments": [
{
"type": "Line",
- "value": "re-applies filter behaviours after filtering process",
+ "value": " broadcast grouping by page",
"range": [
- 16903,
- 16957
+ 16611,
+ 16640
],
"loc": {
"start": {
- "line": 452,
+ "line": 445,
"column": 8
},
"end": {
- "line": 452,
- "column": 62
+ "line": 445,
+ "column": 37
}
}
}
@@ -39528,16 +38989,16 @@
}
],
"range": [
- 15660,
- 16988
+ 15533,
+ 16702
],
"loc": {
"start": {
- "line": 418,
+ "line": 414,
"column": 26
},
"end": {
- "line": 454,
+ "line": 447,
"column": 5
}
}
@@ -39545,16 +39006,16 @@
"generator": false,
"expression": false,
"range": [
- 15649,
- 16988
+ 15522,
+ 16702
],
"loc": {
"start": {
- "line": 418,
+ "line": 414,
"column": 15
},
"end": {
- "line": 454,
+ "line": 447,
"column": 5
}
}
@@ -39562,16 +39023,16 @@
"kind": "method",
"computed": false,
"range": [
- 15638,
- 16988
+ 15511,
+ 16702
],
"loc": {
"start": {
- "line": 418,
+ "line": 414,
"column": 4
},
"end": {
- "line": 454,
+ "line": 447,
"column": 5
}
},
@@ -39580,16 +39041,16 @@
"type": "Block",
"value": "*\n * Group table rows by page and display valid rows\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 15509,
- 15633
+ 15382,
+ 15506
],
"loc": {
"start": {
- "line": 414,
+ "line": 410,
"column": 4
},
"end": {
- "line": 417,
+ "line": 413,
"column": 7
}
}
@@ -39600,16 +39061,16 @@
"type": "Block",
"value": "*\n * Return the current page number\n * @return {Number} Page number\n ",
"range": [
- 16994,
- 17079
+ 16708,
+ 16793
],
"loc": {
"start": {
- "line": 456,
+ "line": 449,
"column": 4
},
"end": {
- "line": 459,
+ "line": 452,
"column": 7
}
}
@@ -39623,16 +39084,16 @@
"type": "Identifier",
"name": "getPage",
"range": [
- 17084,
- 17091
+ 16798,
+ 16805
],
"loc": {
"start": {
- "line": 460,
+ "line": 453,
"column": 4
},
"end": {
- "line": 460,
+ "line": 453,
"column": 11
}
}
@@ -39652,16 +39113,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17110,
- 17114
+ 16824,
+ 16828
],
"loc": {
"start": {
- "line": 461,
+ "line": 454,
"column": 15
},
"end": {
- "line": 461,
+ "line": 454,
"column": 19
}
}
@@ -39670,62 +39131,62 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 17115,
- 17128
+ 16829,
+ 16842
],
"loc": {
"start": {
- "line": 461,
+ "line": 454,
"column": 20
},
"end": {
- "line": 461,
+ "line": 454,
"column": 33
}
}
},
"range": [
- 17110,
- 17128
+ 16824,
+ 16842
],
"loc": {
"start": {
- "line": 461,
+ "line": 454,
"column": 15
},
"end": {
- "line": 461,
+ "line": 454,
"column": 33
}
}
},
"range": [
- 17103,
- 17129
+ 16817,
+ 16843
],
"loc": {
"start": {
- "line": 461,
+ "line": 454,
"column": 8
},
"end": {
- "line": 461,
+ "line": 454,
"column": 34
}
}
}
],
"range": [
- 17093,
- 17135
+ 16807,
+ 16849
],
"loc": {
"start": {
- "line": 460,
+ "line": 453,
"column": 13
},
"end": {
- "line": 462,
+ "line": 455,
"column": 5
}
}
@@ -39733,16 +39194,16 @@
"generator": false,
"expression": false,
"range": [
- 17091,
- 17135
+ 16805,
+ 16849
],
"loc": {
"start": {
- "line": 460,
+ "line": 453,
"column": 11
},
"end": {
- "line": 462,
+ "line": 455,
"column": 5
}
}
@@ -39750,16 +39211,16 @@
"kind": "method",
"computed": false,
"range": [
- 17084,
- 17135
+ 16798,
+ 16849
],
"loc": {
"start": {
- "line": 460,
+ "line": 453,
"column": 4
},
"end": {
- "line": 462,
+ "line": 455,
"column": 5
}
},
@@ -39768,16 +39229,16 @@
"type": "Block",
"value": "*\n * Return the current page number\n * @return {Number} Page number\n ",
"range": [
- 16994,
- 17079
+ 16708,
+ 16793
],
"loc": {
"start": {
- "line": 456,
+ "line": 449,
"column": 4
},
"end": {
- "line": 459,
+ "line": 452,
"column": 7
}
}
@@ -39788,16 +39249,16 @@
"type": "Block",
"value": "*\n * Show page based on passed param value (string or number):\n * @param {String} or {Number} cmd possible string values: 'next',\n * 'previous', 'last', 'first' or page number as per param\n ",
"range": [
- 17141,
- 17351
+ 16855,
+ 17065
],
"loc": {
"start": {
- "line": 464,
+ "line": 457,
"column": 4
},
"end": {
- "line": 468,
+ "line": 461,
"column": 7
}
}
@@ -39811,16 +39272,16 @@
"type": "Identifier",
"name": "setPage",
"range": [
- 17356,
- 17363
+ 17070,
+ 17077
],
"loc": {
"start": {
- "line": 469,
+ "line": 462,
"column": 4
},
"end": {
- "line": 469,
+ "line": 462,
"column": 11
}
}
@@ -39833,16 +39294,16 @@
"type": "Identifier",
"name": "cmd",
"range": [
- 17364,
- 17367
+ 17078,
+ 17081
],
"loc": {
"start": {
- "line": 469,
+ "line": 462,
"column": 12
},
"end": {
- "line": 469,
+ "line": 462,
"column": 15
}
}
@@ -39860,16 +39321,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 17382,
- 17384
+ 17096,
+ 17098
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 12
},
"end": {
- "line": 470,
+ "line": 463,
"column": 14
}
}
@@ -39880,16 +39341,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17387,
- 17391
+ 17101,
+ 17105
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 17
},
"end": {
- "line": 470,
+ "line": 463,
"column": 21
}
}
@@ -39898,46 +39359,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 17392,
- 17394
+ 17106,
+ 17108
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 22
},
"end": {
- "line": 470,
+ "line": 463,
"column": 24
}
}
},
"range": [
- 17387,
- 17394
+ 17101,
+ 17108
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 17
},
"end": {
- "line": 470,
+ "line": 463,
"column": 24
}
}
},
"range": [
- 17382,
- 17394
+ 17096,
+ 17108
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 12
},
"end": {
- "line": 470,
+ "line": 463,
"column": 24
}
}
@@ -39945,16 +39406,16 @@
],
"kind": "var",
"range": [
- 17378,
- 17395
+ 17092,
+ 17109
],
"loc": {
"start": {
- "line": 470,
+ "line": 463,
"column": 8
},
"end": {
- "line": 470,
+ "line": 463,
"column": 25
}
}
@@ -39976,16 +39437,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 17408,
- 17410
+ 17122,
+ 17124
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 12
},
"end": {
- "line": 471,
+ "line": 464,
"column": 14
}
}
@@ -39994,63 +39455,63 @@
"type": "Identifier",
"name": "hasGrid",
"range": [
- 17411,
- 17418
+ 17125,
+ 17132
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 15
},
"end": {
- "line": 471,
+ "line": 464,
"column": 22
}
}
},
"range": [
- 17408,
- 17418
+ 17122,
+ 17132
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 12
},
"end": {
- "line": 471,
+ "line": 464,
"column": 22
}
}
},
"arguments": [],
"range": [
- 17408,
- 17420
+ 17122,
+ 17134
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 12
},
"end": {
- "line": 471,
+ "line": 464,
"column": 24
}
}
},
"prefix": true,
"range": [
- 17407,
- 17420
+ 17121,
+ 17134
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 11
},
"end": {
- "line": 471,
+ "line": 464,
"column": 24
}
}
@@ -40066,16 +39527,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17425,
- 17429
+ 17139,
+ 17143
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 29
},
"end": {
- "line": 471,
+ "line": 464,
"column": 33
}
}
@@ -40084,78 +39545,78 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 17430,
- 17439
+ 17144,
+ 17153
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 34
},
"end": {
- "line": 471,
+ "line": 464,
"column": 43
}
}
},
"range": [
- 17425,
- 17439
+ 17139,
+ 17153
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 29
},
"end": {
- "line": 471,
+ "line": 464,
"column": 43
}
}
},
"arguments": [],
"range": [
- 17425,
- 17441
+ 17139,
+ 17155
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 29
},
"end": {
- "line": 471,
+ "line": 464,
"column": 45
}
}
},
"prefix": true,
"range": [
- 17424,
- 17441
+ 17138,
+ 17155
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 28
},
"end": {
- "line": 471,
+ "line": 464,
"column": 45
}
}
},
"range": [
- 17407,
- 17441
+ 17121,
+ 17155
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 11
},
"end": {
- "line": 471,
+ "line": 464,
"column": 45
}
}
@@ -40167,48 +39628,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 17456,
- 17463
+ 17170,
+ 17177
],
"loc": {
"start": {
- "line": 472,
+ "line": 465,
"column": 12
},
"end": {
- "line": 472,
+ "line": 465,
"column": 19
}
}
}
],
"range": [
- 17442,
- 17473
+ 17156,
+ 17187
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 46
},
"end": {
- "line": 473,
+ "line": 466,
"column": 9
}
}
},
"alternate": null,
"range": [
- 17404,
- 17473
+ 17118,
+ 17187
],
"loc": {
"start": {
- "line": 471,
+ "line": 464,
"column": 8
},
"end": {
- "line": 473,
+ "line": 466,
"column": 9
}
}
@@ -40222,16 +39683,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 17486,
- 17492
+ 17200,
+ 17206
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 12
},
"end": {
- "line": 474,
+ "line": 467,
"column": 18
}
}
@@ -40242,16 +39703,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17495,
- 17499
+ 17209,
+ 17213
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 21
},
"end": {
- "line": 474,
+ "line": 467,
"column": 25
}
}
@@ -40260,46 +39721,46 @@
"type": "Identifier",
"name": "evt",
"range": [
- 17500,
- 17503
+ 17214,
+ 17217
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 26
},
"end": {
- "line": 474,
+ "line": 467,
"column": 29
}
}
},
"range": [
- 17495,
- 17503
+ 17209,
+ 17217
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 21
},
"end": {
- "line": 474,
+ "line": 467,
"column": 29
}
}
},
"range": [
- 17486,
- 17503
+ 17200,
+ 17217
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 12
},
"end": {
- "line": 474,
+ "line": 467,
"column": 29
}
}
@@ -40310,16 +39771,16 @@
"type": "Identifier",
"name": "cmdtype",
"range": [
- 17517,
- 17524
+ 17231,
+ 17238
],
"loc": {
"start": {
- "line": 475,
+ "line": 468,
"column": 12
},
"end": {
- "line": 475,
+ "line": 468,
"column": 19
}
}
@@ -40331,47 +39792,47 @@
"type": "Identifier",
"name": "cmd",
"range": [
- 17534,
- 17537
+ 17248,
+ 17251
],
"loc": {
"start": {
- "line": 475,
+ "line": 468,
"column": 29
},
"end": {
- "line": 475,
+ "line": 468,
"column": 32
}
}
},
"prefix": true,
"range": [
- 17527,
- 17537
+ 17241,
+ 17251
],
"loc": {
"start": {
- "line": 475,
+ "line": 468,
"column": 22
},
"end": {
- "line": 475,
+ "line": 468,
"column": 32
}
}
},
"range": [
- 17517,
- 17537
+ 17231,
+ 17251
],
"loc": {
"start": {
- "line": 475,
+ "line": 468,
"column": 12
},
"end": {
- "line": 475,
+ "line": 468,
"column": 32
}
}
@@ -40379,16 +39840,16 @@
],
"kind": "var",
"range": [
- 17482,
- 17538
+ 17196,
+ 17252
],
"loc": {
"start": {
- "line": 474,
+ "line": 467,
"column": 8
},
"end": {
- "line": 475,
+ "line": 468,
"column": 33
}
}
@@ -40402,16 +39863,16 @@
"type": "Identifier",
"name": "cmdtype",
"range": [
- 17550,
- 17557
+ 17264,
+ 17271
],
"loc": {
"start": {
- "line": 476,
+ "line": 469,
"column": 11
},
"end": {
- "line": 476,
+ "line": 469,
"column": 18
}
}
@@ -40421,31 +39882,31 @@
"value": "string",
"raw": "'string'",
"range": [
- 17562,
- 17570
+ 17276,
+ 17284
],
"loc": {
"start": {
- "line": 476,
+ "line": 469,
"column": 23
},
"end": {
- "line": 476,
+ "line": 469,
"column": 31
}
}
},
"range": [
- 17550,
- 17570
+ 17264,
+ 17284
],
"loc": {
"start": {
- "line": 476,
+ "line": 469,
"column": 11
},
"end": {
- "line": 476,
+ "line": 469,
"column": 31
}
}
@@ -40464,16 +39925,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 17592,
- 17595
+ 17306,
+ 17309
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 19
},
"end": {
- "line": 477,
+ "line": 470,
"column": 22
}
}
@@ -40482,31 +39943,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 17596,
- 17601
+ 17310,
+ 17315
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 23
},
"end": {
- "line": 477,
+ "line": 470,
"column": 28
}
}
},
"range": [
- 17592,
- 17601
+ 17306,
+ 17315
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 19
},
"end": {
- "line": 477,
+ "line": 470,
"column": 28
}
}
@@ -40516,32 +39977,32 @@
"type": "Identifier",
"name": "cmd",
"range": [
- 17602,
- 17605
+ 17316,
+ 17319
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 29
},
"end": {
- "line": 477,
+ "line": 470,
"column": 32
}
}
}
],
"range": [
- 17592,
- 17606
+ 17306,
+ 17320
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 19
},
"end": {
- "line": 477,
+ "line": 470,
"column": 33
}
}
@@ -40554,16 +40015,16 @@
"value": "next",
"raw": "'next'",
"range": [
- 17630,
- 17636
+ 17344,
+ 17350
],
"loc": {
"start": {
- "line": 478,
+ "line": 471,
"column": 21
},
"end": {
- "line": 478,
+ "line": 471,
"column": 27
}
}
@@ -40580,16 +40041,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 17658,
- 17664
+ 17372,
+ 17378
],
"loc": {
"start": {
- "line": 479,
+ "line": 472,
"column": 20
},
"end": {
- "line": 479,
+ "line": 472,
"column": 26
}
}
@@ -40598,62 +40059,62 @@
"type": "Identifier",
"name": "next",
"range": [
- 17665,
- 17669
+ 17379,
+ 17383
],
"loc": {
"start": {
- "line": 479,
+ "line": 472,
"column": 27
},
"end": {
- "line": 479,
+ "line": 472,
"column": 31
}
}
},
"range": [
- 17658,
- 17669
+ 17372,
+ 17383
],
"loc": {
"start": {
- "line": 479,
+ "line": 472,
"column": 20
},
"end": {
- "line": 479,
+ "line": 472,
"column": 31
}
}
},
"arguments": [],
"range": [
- 17658,
- 17671
+ 17372,
+ 17385
],
"loc": {
"start": {
- "line": 479,
+ "line": 472,
"column": 20
},
"end": {
- "line": 479,
+ "line": 472,
"column": 33
}
}
},
"range": [
- 17658,
- 17672
+ 17372,
+ 17386
],
"loc": {
"start": {
- "line": 479,
+ "line": 472,
"column": 20
},
"end": {
- "line": 479,
+ "line": 472,
"column": 34
}
}
@@ -40662,32 +40123,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 17689,
- 17695
+ 17403,
+ 17409
],
"loc": {
"start": {
- "line": 480,
+ "line": 473,
"column": 16
},
"end": {
- "line": 480,
+ "line": 473,
"column": 22
}
}
}
],
"range": [
- 17625,
- 17695
+ 17339,
+ 17409
],
"loc": {
"start": {
- "line": 478,
+ "line": 471,
"column": 16
},
"end": {
- "line": 480,
+ "line": 473,
"column": 22
}
}
@@ -40699,16 +40160,16 @@
"value": "previous",
"raw": "'previous'",
"range": [
- 17717,
- 17727
+ 17431,
+ 17441
],
"loc": {
"start": {
- "line": 481,
+ "line": 474,
"column": 21
},
"end": {
- "line": 481,
+ "line": 474,
"column": 31
}
}
@@ -40725,16 +40186,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 17749,
- 17755
+ 17463,
+ 17469
],
"loc": {
"start": {
- "line": 482,
+ "line": 475,
"column": 20
},
"end": {
- "line": 482,
+ "line": 475,
"column": 26
}
}
@@ -40743,62 +40204,62 @@
"type": "Identifier",
"name": "prev",
"range": [
- 17756,
- 17760
+ 17470,
+ 17474
],
"loc": {
"start": {
- "line": 482,
+ "line": 475,
"column": 27
},
"end": {
- "line": 482,
+ "line": 475,
"column": 31
}
}
},
"range": [
- 17749,
- 17760
+ 17463,
+ 17474
],
"loc": {
"start": {
- "line": 482,
+ "line": 475,
"column": 20
},
"end": {
- "line": 482,
+ "line": 475,
"column": 31
}
}
},
"arguments": [],
"range": [
- 17749,
- 17762
+ 17463,
+ 17476
],
"loc": {
"start": {
- "line": 482,
+ "line": 475,
"column": 20
},
"end": {
- "line": 482,
+ "line": 475,
"column": 33
}
}
},
"range": [
- 17749,
- 17763
+ 17463,
+ 17477
],
"loc": {
"start": {
- "line": 482,
+ "line": 475,
"column": 20
},
"end": {
- "line": 482,
+ "line": 475,
"column": 34
}
}
@@ -40807,32 +40268,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 17780,
- 17786
+ 17494,
+ 17500
],
"loc": {
"start": {
- "line": 483,
+ "line": 476,
"column": 16
},
"end": {
- "line": 483,
+ "line": 476,
"column": 22
}
}
}
],
"range": [
- 17712,
- 17786
+ 17426,
+ 17500
],
"loc": {
"start": {
- "line": 481,
+ "line": 474,
"column": 16
},
"end": {
- "line": 483,
+ "line": 476,
"column": 22
}
}
@@ -40844,16 +40305,16 @@
"value": "last",
"raw": "'last'",
"range": [
- 17808,
- 17814
+ 17522,
+ 17528
],
"loc": {
"start": {
- "line": 484,
+ "line": 477,
"column": 21
},
"end": {
- "line": 484,
+ "line": 477,
"column": 27
}
}
@@ -40870,16 +40331,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 17836,
- 17842
+ 17550,
+ 17556
],
"loc": {
"start": {
- "line": 485,
+ "line": 478,
"column": 20
},
"end": {
- "line": 485,
+ "line": 478,
"column": 26
}
}
@@ -40888,62 +40349,62 @@
"type": "Identifier",
"name": "last",
"range": [
- 17843,
- 17847
+ 17557,
+ 17561
],
"loc": {
"start": {
- "line": 485,
+ "line": 478,
"column": 27
},
"end": {
- "line": 485,
+ "line": 478,
"column": 31
}
}
},
"range": [
- 17836,
- 17847
+ 17550,
+ 17561
],
"loc": {
"start": {
- "line": 485,
+ "line": 478,
"column": 20
},
"end": {
- "line": 485,
+ "line": 478,
"column": 31
}
}
},
"arguments": [],
"range": [
- 17836,
- 17849
+ 17550,
+ 17563
],
"loc": {
"start": {
- "line": 485,
+ "line": 478,
"column": 20
},
"end": {
- "line": 485,
+ "line": 478,
"column": 33
}
}
},
"range": [
- 17836,
- 17850
+ 17550,
+ 17564
],
"loc": {
"start": {
- "line": 485,
+ "line": 478,
"column": 20
},
"end": {
- "line": 485,
+ "line": 478,
"column": 34
}
}
@@ -40952,32 +40413,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 17867,
- 17873
+ 17581,
+ 17587
],
"loc": {
"start": {
- "line": 486,
+ "line": 479,
"column": 16
},
"end": {
- "line": 486,
+ "line": 479,
"column": 22
}
}
}
],
"range": [
- 17803,
- 17873
+ 17517,
+ 17587
],
"loc": {
"start": {
- "line": 484,
+ "line": 477,
"column": 16
},
"end": {
- "line": 486,
+ "line": 479,
"column": 22
}
}
@@ -40989,16 +40450,16 @@
"value": "first",
"raw": "'first'",
"range": [
- 17895,
- 17902
+ 17609,
+ 17616
],
"loc": {
"start": {
- "line": 487,
+ "line": 480,
"column": 21
},
"end": {
- "line": 487,
+ "line": 480,
"column": 28
}
}
@@ -41015,16 +40476,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 17924,
- 17930
+ 17638,
+ 17644
],
"loc": {
"start": {
- "line": 488,
+ "line": 481,
"column": 20
},
"end": {
- "line": 488,
+ "line": 481,
"column": 26
}
}
@@ -41033,62 +40494,62 @@
"type": "Identifier",
"name": "first",
"range": [
- 17931,
- 17936
+ 17645,
+ 17650
],
"loc": {
"start": {
- "line": 488,
+ "line": 481,
"column": 27
},
"end": {
- "line": 488,
+ "line": 481,
"column": 32
}
}
},
"range": [
- 17924,
- 17936
+ 17638,
+ 17650
],
"loc": {
"start": {
- "line": 488,
+ "line": 481,
"column": 20
},
"end": {
- "line": 488,
+ "line": 481,
"column": 32
}
}
},
"arguments": [],
"range": [
- 17924,
- 17938
+ 17638,
+ 17652
],
"loc": {
"start": {
- "line": 488,
+ "line": 481,
"column": 20
},
"end": {
- "line": 488,
+ "line": 481,
"column": 34
}
}
},
"range": [
- 17924,
- 17939
+ 17638,
+ 17653
],
"loc": {
"start": {
- "line": 488,
+ "line": 481,
"column": 20
},
"end": {
- "line": 488,
+ "line": 481,
"column": 35
}
}
@@ -41097,32 +40558,32 @@
"type": "BreakStatement",
"label": null,
"range": [
- 17956,
- 17962
+ 17670,
+ 17676
],
"loc": {
"start": {
- "line": 489,
+ "line": 482,
"column": 16
},
"end": {
- "line": 489,
+ "line": 482,
"column": 22
}
}
}
],
"range": [
- 17890,
- 17962
+ 17604,
+ 17676
],
"loc": {
"start": {
- "line": 487,
+ "line": 480,
"column": 16
},
"end": {
- "line": 489,
+ "line": 482,
"column": 22
}
}
@@ -41142,16 +40603,16 @@
"type": "Identifier",
"name": "btnEvt",
"range": [
- 18008,
- 18014
+ 17722,
+ 17728
],
"loc": {
"start": {
- "line": 491,
+ "line": 484,
"column": 20
},
"end": {
- "line": 491,
+ "line": 484,
"column": 26
}
}
@@ -41160,62 +40621,62 @@
"type": "Identifier",
"name": "next",
"range": [
- 18015,
- 18019
+ 17729,
+ 17733
],
"loc": {
"start": {
- "line": 491,
+ "line": 484,
"column": 27
},
"end": {
- "line": 491,
+ "line": 484,
"column": 31
}
}
},
"range": [
- 18008,
- 18019
+ 17722,
+ 17733
],
"loc": {
"start": {
- "line": 491,
+ "line": 484,
"column": 20
},
"end": {
- "line": 491,
+ "line": 484,
"column": 31
}
}
},
"arguments": [],
"range": [
- 18008,
- 18021
+ 17722,
+ 17735
],
"loc": {
"start": {
- "line": 491,
+ "line": 484,
"column": 20
},
"end": {
- "line": 491,
+ "line": 484,
"column": 33
}
}
},
"range": [
- 18008,
- 18022
+ 17722,
+ 17736
],
"loc": {
"start": {
- "line": 491,
+ "line": 484,
"column": 20
},
"end": {
- "line": 491,
+ "line": 484,
"column": 34
}
}
@@ -41224,64 +40685,64 @@
"type": "BreakStatement",
"label": null,
"range": [
- 18039,
- 18045
+ 17753,
+ 17759
],
"loc": {
"start": {
- "line": 492,
+ "line": 485,
"column": 16
},
"end": {
- "line": 492,
+ "line": 485,
"column": 22
}
}
}
],
"range": [
- 17979,
- 18045
+ 17693,
+ 17759
],
"loc": {
"start": {
- "line": 490,
+ "line": 483,
"column": 16
},
"end": {
- "line": 492,
+ "line": 485,
"column": 22
}
}
}
],
"range": [
- 17585,
- 18059
+ 17299,
+ 17773
],
"loc": {
"start": {
- "line": 477,
+ "line": 470,
"column": 12
},
"end": {
- "line": 493,
+ "line": 486,
"column": 13
}
}
}
],
"range": [
- 17571,
- 18069
+ 17285,
+ 17783
],
"loc": {
"start": {
- "line": 476,
+ "line": 469,
"column": 32
},
"end": {
- "line": 494,
+ "line": 487,
"column": 9
}
}
@@ -41295,16 +40756,16 @@
"type": "Identifier",
"name": "cmdtype",
"range": [
- 18086,
- 18093
+ 17800,
+ 17807
],
"loc": {
"start": {
- "line": 495,
+ "line": 488,
"column": 16
},
"end": {
- "line": 495,
+ "line": 488,
"column": 23
}
}
@@ -41314,31 +40775,31 @@
"value": "number",
"raw": "'number'",
"range": [
- 18098,
- 18106
+ 17812,
+ 17820
],
"loc": {
"start": {
- "line": 495,
+ "line": 488,
"column": 28
},
"end": {
- "line": 495,
+ "line": 488,
"column": 36
}
}
},
"range": [
- 18086,
- 18106
+ 17800,
+ 17820
],
"loc": {
"start": {
- "line": 495,
+ "line": 488,
"column": 16
},
"end": {
- "line": 495,
+ "line": 488,
"column": 36
}
}
@@ -41356,16 +40817,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18121,
- 18125
+ 17835,
+ 17839
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 12
},
"end": {
- "line": 496,
+ "line": 489,
"column": 16
}
}
@@ -41374,31 +40835,31 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 18126,
- 18136
+ 17840,
+ 17850
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 17
},
"end": {
- "line": 496,
+ "line": 489,
"column": 27
}
}
},
"range": [
- 18121,
- 18136
+ 17835,
+ 17850
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 12
},
"end": {
- "line": 496,
+ "line": 489,
"column": 27
}
}
@@ -41411,16 +40872,16 @@
"type": "Identifier",
"name": "cmd",
"range": [
- 18137,
- 18140
+ 17851,
+ 17854
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 28
},
"end": {
- "line": 496,
+ "line": 489,
"column": 31
}
}
@@ -41430,125 +40891,125 @@
"value": 1,
"raw": "1",
"range": [
- 18141,
- 18142
+ 17855,
+ 17856
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 32
},
"end": {
- "line": 496,
+ "line": 489,
"column": 33
}
}
},
"range": [
- 18137,
- 18142
+ 17851,
+ 17856
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 28
},
"end": {
- "line": 496,
+ "line": 489,
"column": 33
}
}
}
],
"range": [
- 18121,
- 18143
+ 17835,
+ 17857
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 12
},
"end": {
- "line": 496,
+ "line": 489,
"column": 34
}
}
},
"range": [
- 18121,
- 18144
+ 17835,
+ 17858
],
"loc": {
"start": {
- "line": 496,
+ "line": 489,
"column": 12
},
"end": {
- "line": 496,
+ "line": 489,
"column": 35
}
}
}
],
"range": [
- 18107,
- 18154
+ 17821,
+ 17868
],
"loc": {
"start": {
- "line": 495,
+ "line": 488,
"column": 37
},
"end": {
- "line": 497,
+ "line": 490,
"column": 9
}
}
},
"alternate": null,
"range": [
- 18083,
- 18154
+ 17797,
+ 17868
],
"loc": {
"start": {
- "line": 495,
+ "line": 488,
"column": 13
},
"end": {
- "line": 497,
+ "line": 490,
"column": 9
}
}
},
"range": [
- 17547,
- 18154
+ 17261,
+ 17868
],
"loc": {
"start": {
- "line": 476,
+ "line": 469,
"column": 8
},
"end": {
- "line": 497,
+ "line": 490,
"column": 9
}
}
}
],
"range": [
- 17368,
- 18160
+ 17082,
+ 17874
],
"loc": {
"start": {
- "line": 469,
+ "line": 462,
"column": 16
},
"end": {
- "line": 498,
+ "line": 491,
"column": 5
}
}
@@ -41556,16 +41017,16 @@
"generator": false,
"expression": false,
"range": [
- 17363,
- 18160
+ 17077,
+ 17874
],
"loc": {
"start": {
- "line": 469,
+ "line": 462,
"column": 11
},
"end": {
- "line": 498,
+ "line": 491,
"column": 5
}
}
@@ -41573,16 +41034,16 @@
"kind": "method",
"computed": false,
"range": [
- 17356,
- 18160
+ 17070,
+ 17874
],
"loc": {
"start": {
- "line": 469,
+ "line": 462,
"column": 4
},
"end": {
- "line": 498,
+ "line": 491,
"column": 5
}
},
@@ -41591,16 +41052,16 @@
"type": "Block",
"value": "*\n * Show page based on passed param value (string or number):\n * @param {String} or {Number} cmd possible string values: 'next',\n * 'previous', 'last', 'first' or page number as per param\n ",
"range": [
- 17141,
- 17351
+ 16855,
+ 17065
],
"loc": {
"start": {
- "line": 464,
+ "line": 457,
"column": 4
},
"end": {
- "line": 468,
+ "line": 461,
"column": 7
}
}
@@ -41611,16 +41072,16 @@
"type": "Block",
"value": "*\n * Generates UI elements for the number of results per page drop-down\n ",
"range": [
- 18166,
- 18251
+ 17880,
+ 17965
],
"loc": {
"start": {
- "line": 500,
+ "line": 493,
"column": 4
},
"end": {
- "line": 502,
+ "line": 495,
"column": 7
}
}
@@ -41634,16 +41095,16 @@
"type": "Identifier",
"name": "setResultsPerPage",
"range": [
- 18256,
- 18273
+ 17970,
+ 17987
],
"loc": {
"start": {
- "line": 503,
+ "line": 496,
"column": 4
},
"end": {
- "line": 503,
+ "line": 496,
"column": 21
}
}
@@ -41664,16 +41125,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 18289,
- 18291
+ 18003,
+ 18005
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 12
},
"end": {
- "line": 504,
+ "line": 497,
"column": 14
}
}
@@ -41684,16 +41145,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18294,
- 18298
+ 18008,
+ 18012
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 17
},
"end": {
- "line": 504,
+ "line": 497,
"column": 21
}
}
@@ -41702,46 +41163,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 18299,
- 18301
+ 18013,
+ 18015
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 22
},
"end": {
- "line": 504,
+ "line": 497,
"column": 24
}
}
},
"range": [
- 18294,
- 18301
+ 18008,
+ 18015
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 17
},
"end": {
- "line": 504,
+ "line": 497,
"column": 24
}
}
},
"range": [
- 18289,
- 18301
+ 18003,
+ 18015
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 12
},
"end": {
- "line": 504,
+ "line": 497,
"column": 24
}
}
@@ -41749,16 +41210,16 @@
],
"kind": "var",
"range": [
- 18285,
- 18302
+ 17999,
+ 18016
],
"loc": {
"start": {
- "line": 504,
+ "line": 497,
"column": 8
},
"end": {
- "line": 504,
+ "line": 497,
"column": 25
}
}
@@ -41772,16 +41233,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 18315,
- 18318
+ 18029,
+ 18032
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 12
},
"end": {
- "line": 505,
+ "line": 498,
"column": 15
}
}
@@ -41792,16 +41253,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18321,
- 18325
+ 18035,
+ 18039
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 18
},
"end": {
- "line": 505,
+ "line": 498,
"column": 22
}
}
@@ -41810,46 +41271,46 @@
"type": "Identifier",
"name": "evt",
"range": [
- 18326,
- 18329
+ 18040,
+ 18043
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 23
},
"end": {
- "line": 505,
+ "line": 498,
"column": 26
}
}
},
"range": [
- 18321,
- 18329
+ 18035,
+ 18043
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 18
},
"end": {
- "line": 505,
+ "line": 498,
"column": 26
}
}
},
"range": [
- 18315,
- 18329
+ 18029,
+ 18043
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 12
},
"end": {
- "line": 505,
+ "line": 498,
"column": 26
}
}
@@ -41857,257 +41318,20 @@
],
"kind": "var",
"range": [
- 18311,
- 18330
+ 18025,
+ 18044
],
"loc": {
"start": {
- "line": 505,
+ "line": 498,
"column": 8
},
"end": {
- "line": 505,
+ "line": 498,
"column": 27
}
}
},
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 18344,
- 18346
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 12
- },
- "end": {
- "line": 507,
- "column": 14
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasGrid",
- "range": [
- 18347,
- 18354
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 15
- },
- "end": {
- "line": 507,
- "column": 22
- }
- }
- },
- "range": [
- 18344,
- 18354
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 12
- },
- "end": {
- "line": 507,
- "column": 22
- }
- }
- },
- "arguments": [],
- "range": [
- 18344,
- 18356
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 12
- },
- "end": {
- "line": 507,
- "column": 24
- }
- }
- },
- "prefix": true,
- "range": [
- 18343,
- 18356
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 11
- },
- "end": {
- "line": 507,
- "column": 24
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 18361,
- 18363
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 29
- },
- "end": {
- "line": 507,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 18364,
- 18375
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 32
- },
- "end": {
- "line": 507,
- "column": 43
- }
- }
- },
- "range": [
- 18361,
- 18375
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 29
- },
- "end": {
- "line": 507,
- "column": 43
- }
- }
- },
- "prefix": true,
- "range": [
- 18360,
- 18375
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 28
- },
- "end": {
- "line": 507,
- "column": 43
- }
- }
- },
- "range": [
- 18343,
- 18375
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 11
- },
- "end": {
- "line": 507,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ReturnStatement",
- "argument": null,
- "range": [
- 18390,
- 18397
- ],
- "loc": {
- "start": {
- "line": 508,
- "column": 12
- },
- "end": {
- "line": 508,
- "column": 19
- }
- }
- }
- ],
- "range": [
- 18376,
- 18407
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 44
- },
- "end": {
- "line": 509,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 18340,
- 18407
- ],
- "loc": {
- "start": {
- "line": 507,
- "column": 8
- },
- "end": {
- "line": 509,
- "column": 9
- }
- }
- },
{
"type": "IfStatement",
"test": {
@@ -42119,16 +41343,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18419,
- 18423
+ 18057,
+ 18061
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 11
},
"end": {
- "line": 510,
+ "line": 500,
"column": 15
}
}
@@ -42137,31 +41361,31 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 18424,
- 18441
+ 18062,
+ 18079
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 16
},
"end": {
- "line": 510,
+ "line": 500,
"column": 33
}
}
},
"range": [
- 18419,
- 18441
+ 18057,
+ 18079
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 11
},
"end": {
- "line": 510,
+ "line": 500,
"column": 33
}
}
@@ -42175,16 +41399,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18446,
- 18450
+ 18084,
+ 18088
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 38
},
"end": {
- "line": 510,
+ "line": 500,
"column": 42
}
}
@@ -42193,62 +41417,62 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 18451,
- 18465
+ 18089,
+ 18103
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 43
},
"end": {
- "line": 510,
+ "line": 500,
"column": 57
}
}
},
"range": [
- 18446,
- 18465
+ 18084,
+ 18103
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 38
},
"end": {
- "line": 510,
+ "line": 500,
"column": 57
}
}
},
"prefix": true,
"range": [
- 18445,
- 18465
+ 18083,
+ 18103
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 37
},
"end": {
- "line": 510,
+ "line": 500,
"column": 57
}
}
},
"range": [
- 18419,
- 18465
+ 18057,
+ 18103
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 11
},
"end": {
- "line": 510,
+ "line": 500,
"column": 57
}
}
@@ -42260,48 +41484,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 18480,
- 18487
+ 18118,
+ 18125
],
"loc": {
"start": {
- "line": 511,
+ "line": 501,
"column": 12
},
"end": {
- "line": 511,
+ "line": 501,
"column": 19
}
}
}
],
"range": [
- 18466,
- 18497
+ 18104,
+ 18135
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 58
},
"end": {
- "line": 512,
+ "line": 502,
"column": 9
}
}
},
"alternate": null,
"range": [
- 18416,
- 18497
+ 18054,
+ 18135
],
"loc": {
"start": {
- "line": 510,
+ "line": 500,
"column": 8
},
"end": {
- "line": 512,
+ "line": 502,
"column": 9
}
}
@@ -42318,16 +41542,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 18507,
- 18510
+ 18145,
+ 18148
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 8
},
"end": {
- "line": 514,
+ "line": 504,
"column": 11
}
}
@@ -42336,31 +41560,31 @@
"type": "Identifier",
"name": "slcResultsChange",
"range": [
- 18511,
- 18527
+ 18149,
+ 18165
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 12
},
"end": {
- "line": 514,
+ "line": 504,
"column": 28
}
}
},
"range": [
- 18507,
- 18527
+ 18145,
+ 18165
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 8
},
"end": {
- "line": 514,
+ "line": 504,
"column": 28
}
}
@@ -42373,16 +41597,16 @@
"type": "Identifier",
"name": "ev",
"range": [
- 18531,
- 18533
+ 18169,
+ 18171
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 32
},
"end": {
- "line": 514,
+ "line": 504,
"column": 34
}
}
@@ -42401,16 +41625,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18552,
- 18556
+ 18190,
+ 18194
],
"loc": {
"start": {
- "line": 515,
+ "line": 505,
"column": 12
},
"end": {
- "line": 515,
+ "line": 505,
"column": 16
}
}
@@ -42419,62 +41643,62 @@
"type": "Identifier",
"name": "changeResultsPerPage",
"range": [
- 18557,
- 18577
+ 18195,
+ 18215
],
"loc": {
"start": {
- "line": 515,
+ "line": 505,
"column": 17
},
"end": {
- "line": 515,
+ "line": 505,
"column": 37
}
}
},
"range": [
- 18552,
- 18577
+ 18190,
+ 18215
],
"loc": {
"start": {
- "line": 515,
+ "line": 505,
"column": 12
},
"end": {
- "line": 515,
+ "line": 505,
"column": 37
}
}
},
"arguments": [],
"range": [
- 18552,
- 18579
+ 18190,
+ 18217
],
"loc": {
"start": {
- "line": 515,
+ "line": 505,
"column": 12
},
"end": {
- "line": 515,
+ "line": 505,
"column": 39
}
}
},
"range": [
- 18552,
- 18580
+ 18190,
+ 18218
],
"loc": {
"start": {
- "line": 515,
+ "line": 505,
"column": 12
},
"end": {
- "line": 515,
+ "line": 505,
"column": 40
}
}
@@ -42493,16 +41717,16 @@
"type": "Identifier",
"name": "ev",
"range": [
- 18593,
- 18595
+ 18231,
+ 18233
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 12
},
"end": {
- "line": 516,
+ "line": 506,
"column": 14
}
}
@@ -42511,31 +41735,31 @@
"type": "Identifier",
"name": "target",
"range": [
- 18596,
- 18602
+ 18234,
+ 18240
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 15
},
"end": {
- "line": 516,
+ "line": 506,
"column": 21
}
}
},
"range": [
- 18593,
- 18602
+ 18231,
+ 18240
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 12
},
"end": {
- "line": 516,
+ "line": 506,
"column": 21
}
}
@@ -42544,78 +41768,78 @@
"type": "Identifier",
"name": "blur",
"range": [
- 18603,
- 18607
+ 18241,
+ 18245
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 22
},
"end": {
- "line": 516,
+ "line": 506,
"column": 26
}
}
},
"range": [
- 18593,
- 18607
+ 18231,
+ 18245
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 12
},
"end": {
- "line": 516,
+ "line": 506,
"column": 26
}
}
},
"arguments": [],
"range": [
- 18593,
- 18609
+ 18231,
+ 18247
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 12
},
"end": {
- "line": 516,
+ "line": 506,
"column": 28
}
}
},
"range": [
- 18593,
- 18610
+ 18231,
+ 18248
],
"loc": {
"start": {
- "line": 516,
+ "line": 506,
"column": 12
},
"end": {
- "line": 516,
+ "line": 506,
"column": 29
}
}
}
],
"range": [
- 18538,
- 18620
+ 18176,
+ 18258
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 39
},
"end": {
- "line": 517,
+ "line": 507,
"column": 9
}
}
@@ -42623,46 +41847,46 @@
"generator": false,
"expression": false,
"range": [
- 18530,
- 18620
+ 18168,
+ 18258
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 31
},
"end": {
- "line": 517,
+ "line": 507,
"column": 9
}
}
},
"range": [
- 18507,
- 18620
+ 18145,
+ 18258
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 8
},
"end": {
- "line": 517,
+ "line": 507,
"column": 9
}
}
},
"range": [
- 18507,
- 18621
+ 18145,
+ 18259
],
"loc": {
"start": {
- "line": 514,
+ "line": 504,
"column": 8
},
"end": {
- "line": 517,
+ "line": 507,
"column": 10
}
}
@@ -42676,16 +41900,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 18635,
- 18639
+ 18273,
+ 18277
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 12
},
"end": {
- "line": 519,
+ "line": 509,
"column": 16
}
}
@@ -42699,16 +41923,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 18642,
- 18645
+ 18280,
+ 18283
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 19
},
"end": {
- "line": 519,
+ "line": 509,
"column": 22
}
}
@@ -42717,31 +41941,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 18646,
- 18652
+ 18284,
+ 18290
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 23
},
"end": {
- "line": 519,
+ "line": 509,
"column": 29
}
}
},
"range": [
- 18642,
- 18652
+ 18280,
+ 18290
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 19
},
"end": {
- "line": 519,
+ "line": 509,
"column": 29
}
}
@@ -42754,16 +41978,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 18666,
- 18668
+ 18304,
+ 18306
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 12
},
"end": {
- "line": 520,
+ "line": 510,
"column": 14
}
}
@@ -42772,31 +41996,31 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 18669,
- 18679
+ 18307,
+ 18317
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 15
},
"end": {
- "line": 520,
+ "line": 510,
"column": 25
}
}
},
"range": [
- 18666,
- 18679
+ 18304,
+ 18317
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 12
},
"end": {
- "line": 520,
+ "line": 510,
"column": 25
}
}
@@ -42809,16 +42033,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 18682,
- 18686
+ 18320,
+ 18324
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 28
},
"end": {
- "line": 520,
+ "line": 510,
"column": 32
}
}
@@ -42832,16 +42056,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18688,
- 18692
+ 18326,
+ 18330
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 34
},
"end": {
- "line": 520,
+ "line": 510,
"column": 38
}
}
@@ -42850,31 +42074,31 @@
"type": "Identifier",
"name": "prfxSlcResults",
"range": [
- 18693,
- 18707
+ 18331,
+ 18345
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 39
},
"end": {
- "line": 520,
+ "line": 510,
"column": 53
}
}
},
"range": [
- 18688,
- 18707
+ 18326,
+ 18345
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 34
},
"end": {
- "line": 520,
+ "line": 510,
"column": 53
}
}
@@ -42886,16 +42110,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 18708,
- 18710
+ 18346,
+ 18348
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 54
},
"end": {
- "line": 520,
+ "line": 510,
"column": 56
}
}
@@ -42904,93 +42128,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 18711,
- 18713
+ 18349,
+ 18351
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 57
},
"end": {
- "line": 520,
+ "line": 510,
"column": 59
}
}
},
"range": [
- 18708,
- 18713
+ 18346,
+ 18351
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 54
},
"end": {
- "line": 520,
+ "line": 510,
"column": 59
}
}
},
"range": [
- 18688,
- 18713
+ 18326,
+ 18351
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 34
},
"end": {
- "line": 520,
+ "line": 510,
"column": 59
}
}
}
],
"range": [
- 18681,
- 18714
+ 18319,
+ 18352
],
"loc": {
"start": {
- "line": 520,
+ "line": 510,
"column": 27
},
"end": {
- "line": 520,
+ "line": 510,
"column": 60
}
}
}
],
"range": [
- 18642,
- 18715
+ 18280,
+ 18353
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 19
},
"end": {
- "line": 520,
+ "line": 510,
"column": 61
}
}
},
"range": [
- 18635,
- 18715
+ 18273,
+ 18353
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 12
},
"end": {
- "line": 520,
+ "line": 510,
"column": 61
}
}
@@ -42998,16 +42222,16 @@
],
"kind": "var",
"range": [
- 18631,
- 18716
+ 18269,
+ 18354
],
"loc": {
"start": {
- "line": 519,
+ "line": 509,
"column": 8
},
"end": {
- "line": 520,
+ "line": 510,
"column": 62
}
}
@@ -43024,16 +42248,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 18725,
- 18729
+ 18363,
+ 18367
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 8
},
"end": {
- "line": 521,
+ "line": 511,
"column": 12
}
}
@@ -43042,31 +42266,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 18730,
- 18739
+ 18368,
+ 18377
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 13
},
"end": {
- "line": 521,
+ "line": 511,
"column": 22
}
}
},
"range": [
- 18725,
- 18739
+ 18363,
+ 18377
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 8
},
"end": {
- "line": 521,
+ "line": 511,
"column": 22
}
}
@@ -43077,16 +42301,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18742,
- 18746
+ 18380,
+ 18384
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 25
},
"end": {
- "line": 521,
+ "line": 511,
"column": 29
}
}
@@ -43095,61 +42319,61 @@
"type": "Identifier",
"name": "resultsSlcCssClass",
"range": [
- 18747,
- 18765
+ 18385,
+ 18403
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 30
},
"end": {
- "line": 521,
+ "line": 511,
"column": 48
}
}
},
"range": [
- 18742,
- 18765
+ 18380,
+ 18403
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 25
},
"end": {
- "line": 521,
+ "line": 511,
"column": 48
}
}
},
"range": [
- 18725,
- 18765
+ 18363,
+ 18403
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 8
},
"end": {
- "line": 521,
+ "line": 511,
"column": 48
}
}
},
"range": [
- 18725,
- 18766
+ 18363,
+ 18404
],
"loc": {
"start": {
- "line": 521,
+ "line": 511,
"column": 8
},
"end": {
- "line": 521,
+ "line": 511,
"column": 49
}
}
@@ -43163,16 +42387,16 @@
"type": "Identifier",
"name": "slcRText",
"range": [
- 18779,
- 18787
+ 18417,
+ 18425
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 12
},
"end": {
- "line": 522,
+ "line": 512,
"column": 20
}
}
@@ -43186,16 +42410,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18790,
- 18794
+ 18428,
+ 18432
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 23
},
"end": {
- "line": 522,
+ "line": 512,
"column": 27
}
}
@@ -43204,31 +42428,31 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 18795,
- 18809
+ 18433,
+ 18447
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 28
},
"end": {
- "line": 522,
+ "line": 512,
"column": 42
}
}
},
"range": [
- 18790,
- 18809
+ 18428,
+ 18447
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 23
},
"end": {
- "line": 522,
+ "line": 512,
"column": 42
}
}
@@ -43238,46 +42462,46 @@
"value": 0,
"raw": "0",
"range": [
- 18810,
- 18811
+ 18448,
+ 18449
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 43
},
"end": {
- "line": 522,
+ "line": 512,
"column": 44
}
}
},
"range": [
- 18790,
- 18812
+ 18428,
+ 18450
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 23
},
"end": {
- "line": 522,
+ "line": 512,
"column": 45
}
}
},
"range": [
- 18779,
- 18812
+ 18417,
+ 18450
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 12
},
"end": {
- "line": 522,
+ "line": 512,
"column": 45
}
}
@@ -43288,16 +42512,16 @@
"type": "Identifier",
"name": "slcROpts",
"range": [
- 18826,
- 18834
+ 18464,
+ 18472
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 12
},
"end": {
- "line": 523,
+ "line": 513,
"column": 20
}
}
@@ -43311,16 +42535,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18837,
- 18841
+ 18475,
+ 18479
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 23
},
"end": {
- "line": 523,
+ "line": 513,
"column": 27
}
}
@@ -43329,31 +42553,31 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 18842,
- 18856
+ 18480,
+ 18494
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 28
},
"end": {
- "line": 523,
+ "line": 513,
"column": 42
}
}
},
"range": [
- 18837,
- 18856
+ 18475,
+ 18494
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 23
},
"end": {
- "line": 523,
+ "line": 513,
"column": 42
}
}
@@ -43363,46 +42587,46 @@
"value": 1,
"raw": "1",
"range": [
- 18857,
- 18858
+ 18495,
+ 18496
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 43
},
"end": {
- "line": 523,
+ "line": 513,
"column": 44
}
}
},
"range": [
- 18837,
- 18859
+ 18475,
+ 18497
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 23
},
"end": {
- "line": 523,
+ "line": 513,
"column": 45
}
}
},
"range": [
- 18826,
- 18859
+ 18464,
+ 18497
],
"loc": {
"start": {
- "line": 523,
+ "line": 513,
"column": 12
},
"end": {
- "line": 523,
+ "line": 513,
"column": 45
}
}
@@ -43410,16 +42634,16 @@
],
"kind": "var",
"range": [
- 18775,
- 18860
+ 18413,
+ 18498
],
"loc": {
"start": {
- "line": 522,
+ "line": 512,
"column": 8
},
"end": {
- "line": 523,
+ "line": 513,
"column": 46
}
}
@@ -43433,16 +42657,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 18873,
- 18881
+ 18511,
+ 18519
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 12
},
"end": {
- "line": 524,
+ "line": 514,
"column": 20
}
}
@@ -43456,16 +42680,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 18884,
- 18887
+ 18522,
+ 18525
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 23
},
"end": {
- "line": 524,
+ "line": 514,
"column": 26
}
}
@@ -43474,31 +42698,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 18888,
- 18894
+ 18526,
+ 18532
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 27
},
"end": {
- "line": 524,
+ "line": 514,
"column": 33
}
}
},
"range": [
- 18884,
- 18894
+ 18522,
+ 18532
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 23
},
"end": {
- "line": 524,
+ "line": 514,
"column": 33
}
}
@@ -43509,16 +42733,16 @@
"value": "span",
"raw": "'span'",
"range": [
- 18908,
- 18914
+ 18546,
+ 18552
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 12
},
"end": {
- "line": 525,
+ "line": 515,
"column": 18
}
}
@@ -43531,16 +42755,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 18916,
- 18920
+ 18554,
+ 18558
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 20
},
"end": {
- "line": 525,
+ "line": 515,
"column": 24
}
}
@@ -43554,16 +42778,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18922,
- 18926
+ 18560,
+ 18564
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 26
},
"end": {
- "line": 525,
+ "line": 515,
"column": 30
}
}
@@ -43572,31 +42796,31 @@
"type": "Identifier",
"name": "prfxSlcResultsTxt",
"range": [
- 18927,
- 18944
+ 18565,
+ 18582
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 31
},
"end": {
- "line": 525,
+ "line": 515,
"column": 48
}
}
},
"range": [
- 18922,
- 18944
+ 18560,
+ 18582
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 26
},
"end": {
- "line": 525,
+ "line": 515,
"column": 48
}
}
@@ -43608,16 +42832,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 18945,
- 18947
+ 18583,
+ 18585
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 49
},
"end": {
- "line": 525,
+ "line": 515,
"column": 51
}
}
@@ -43626,93 +42850,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 18948,
- 18950
+ 18586,
+ 18588
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 52
},
"end": {
- "line": 525,
+ "line": 515,
"column": 54
}
}
},
"range": [
- 18945,
- 18950
+ 18583,
+ 18588
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 49
},
"end": {
- "line": 525,
+ "line": 515,
"column": 54
}
}
},
"range": [
- 18922,
- 18950
+ 18560,
+ 18588
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 26
},
"end": {
- "line": 525,
+ "line": 515,
"column": 54
}
}
}
],
"range": [
- 18915,
- 18951
+ 18553,
+ 18589
],
"loc": {
"start": {
- "line": 525,
+ "line": 515,
"column": 19
},
"end": {
- "line": 525,
+ "line": 515,
"column": 55
}
}
}
],
"range": [
- 18884,
- 18952
+ 18522,
+ 18590
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 23
},
"end": {
- "line": 525,
+ "line": 515,
"column": 56
}
}
},
"range": [
- 18873,
- 18952
+ 18511,
+ 18590
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 12
},
"end": {
- "line": 525,
+ "line": 515,
"column": 56
}
}
@@ -43720,16 +42944,16 @@
],
"kind": "var",
"range": [
- 18869,
- 18953
+ 18507,
+ 18591
],
"loc": {
"start": {
- "line": 524,
+ "line": 514,
"column": 8
},
"end": {
- "line": 525,
+ "line": 515,
"column": 57
}
}
@@ -43746,16 +42970,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 18962,
- 18970
+ 18600,
+ 18608
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 8
},
"end": {
- "line": 526,
+ "line": 516,
"column": 16
}
}
@@ -43764,31 +42988,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 18971,
- 18980
+ 18609,
+ 18618
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 17
},
"end": {
- "line": 526,
+ "line": 516,
"column": 26
}
}
},
"range": [
- 18962,
- 18980
+ 18600,
+ 18618
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 8
},
"end": {
- "line": 526,
+ "line": 516,
"column": 26
}
}
@@ -43799,16 +43023,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18983,
- 18987
+ 18621,
+ 18625
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 29
},
"end": {
- "line": 526,
+ "line": 516,
"column": 33
}
}
@@ -43817,61 +43041,61 @@
"type": "Identifier",
"name": "resultsSpanCssClass",
"range": [
- 18988,
- 19007
+ 18626,
+ 18645
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 34
},
"end": {
- "line": 526,
+ "line": 516,
"column": 53
}
}
},
"range": [
- 18983,
- 19007
+ 18621,
+ 18645
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 29
},
"end": {
- "line": 526,
+ "line": 516,
"column": 53
}
}
},
"range": [
- 18962,
- 19007
+ 18600,
+ 18645
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 8
},
"end": {
- "line": 526,
+ "line": 516,
"column": 53
}
}
},
"range": [
- 18962,
- 19008
+ 18600,
+ 18646
],
"loc": {
"start": {
- "line": 526,
+ "line": 516,
"column": 8
},
"end": {
- "line": 526,
+ "line": 516,
"column": 54
}
},
@@ -43880,16 +43104,16 @@
"type": "Line",
"value": " results per page select is added to external element",
"range": [
- 19018,
- 19073
+ 18656,
+ 18711
],
"loc": {
"start": {
- "line": 528,
+ "line": 518,
"column": 8
},
"end": {
- "line": 528,
+ "line": 518,
"column": 63
}
}
@@ -43907,16 +43131,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19086,
- 19090
+ 18724,
+ 18728
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 12
},
"end": {
- "line": 529,
+ "line": 519,
"column": 16
}
}
@@ -43925,47 +43149,47 @@
"type": "Identifier",
"name": "resultsPerPageTgtId",
"range": [
- 19091,
- 19110
+ 18729,
+ 18748
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 17
},
"end": {
- "line": 529,
+ "line": 519,
"column": 36
}
}
},
"range": [
- 19086,
- 19110
+ 18724,
+ 18748
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 12
},
"end": {
- "line": 529,
+ "line": 519,
"column": 36
}
}
},
"prefix": true,
"range": [
- 19085,
- 19110
+ 18723,
+ 18748
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 11
},
"end": {
- "line": 529,
+ "line": 519,
"column": 36
}
}
@@ -43984,16 +43208,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 19125,
- 19127
+ 18763,
+ 18765
],
"loc": {
"start": {
- "line": 530,
+ "line": 520,
"column": 12
},
"end": {
- "line": 530,
+ "line": 520,
"column": 14
}
}
@@ -44002,94 +43226,94 @@
"type": "Identifier",
"name": "setToolbar",
"range": [
- 19128,
- 19138
+ 18766,
+ 18776
],
"loc": {
"start": {
- "line": 530,
+ "line": 520,
"column": 15
},
"end": {
- "line": 530,
+ "line": 520,
"column": 25
}
}
},
"range": [
- 19125,
- 19138
+ 18763,
+ 18776
],
"loc": {
"start": {
- "line": 530,
+ "line": 520,
"column": 12
},
"end": {
- "line": 530,
+ "line": 520,
"column": 25
}
}
},
"arguments": [],
"range": [
- 19125,
- 19140
+ 18763,
+ 18778
],
"loc": {
"start": {
- "line": 530,
+ "line": 520,
"column": 12
},
"end": {
- "line": 530,
+ "line": 520,
"column": 27
}
}
},
"range": [
- 19125,
- 19141
+ 18763,
+ 18779
],
"loc": {
"start": {
- "line": 530,
+ "line": 520,
"column": 12
},
"end": {
- "line": 530,
+ "line": 520,
"column": 28
}
}
}
],
"range": [
- 19111,
- 19151
+ 18749,
+ 18789
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 37
},
"end": {
- "line": 531,
+ "line": 521,
"column": 9
}
}
},
"alternate": null,
"range": [
- 19082,
- 19151
+ 18720,
+ 18789
],
"loc": {
"start": {
- "line": 529,
+ "line": 519,
"column": 8
},
"end": {
- "line": 531,
+ "line": 521,
"column": 9
}
},
@@ -44098,16 +43322,16 @@
"type": "Line",
"value": " results per page select is added to external element",
"range": [
- 19018,
- 19073
+ 18656,
+ 18711
],
"loc": {
"start": {
- "line": 528,
+ "line": 518,
"column": 8
},
"end": {
- "line": 528,
+ "line": 518,
"column": 63
}
}
@@ -44123,16 +43347,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 19164,
- 19172
+ 18802,
+ 18810
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 12
},
"end": {
- "line": 532,
+ "line": 522,
"column": 20
}
}
@@ -44148,16 +43372,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19176,
- 19180
+ 18814,
+ 18818
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 24
},
"end": {
- "line": 532,
+ "line": 522,
"column": 28
}
}
@@ -44166,47 +43390,47 @@
"type": "Identifier",
"name": "resultsPerPageTgtId",
"range": [
- 19181,
- 19200
+ 18819,
+ 18838
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 29
},
"end": {
- "line": 532,
+ "line": 522,
"column": 48
}
}
},
"range": [
- 19176,
- 19200
+ 18814,
+ 18838
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 24
},
"end": {
- "line": 532,
+ "line": 522,
"column": 48
}
}
},
"prefix": true,
"range": [
- 19175,
- 19200
+ 18813,
+ 18838
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 23
},
"end": {
- "line": 532,
+ "line": 522,
"column": 48
}
}
@@ -44218,16 +43442,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 19215,
- 19217
+ 18853,
+ 18855
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 12
},
"end": {
- "line": 533,
+ "line": 523,
"column": 14
}
}
@@ -44236,31 +43460,31 @@
"type": "Identifier",
"name": "rDiv",
"range": [
- 19218,
- 19222
+ 18856,
+ 18860
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 15
},
"end": {
- "line": 533,
+ "line": 523,
"column": 19
}
}
},
"range": [
- 19215,
- 19222
+ 18853,
+ 18860
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 12
},
"end": {
- "line": 533,
+ "line": 523,
"column": 19
}
}
@@ -44274,16 +43498,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 19225,
- 19228
+ 18863,
+ 18866
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 22
},
"end": {
- "line": 533,
+ "line": 523,
"column": 25
}
}
@@ -44292,31 +43516,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 19229,
- 19231
+ 18867,
+ 18869
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 26
},
"end": {
- "line": 533,
+ "line": 523,
"column": 28
}
}
},
"range": [
- 19225,
- 19231
+ 18863,
+ 18869
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 22
},
"end": {
- "line": 533,
+ "line": 523,
"column": 28
}
}
@@ -44328,16 +43552,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19232,
- 19236
+ 18870,
+ 18874
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 29
},
"end": {
- "line": 533,
+ "line": 523,
"column": 33
}
}
@@ -44346,77 +43570,77 @@
"type": "Identifier",
"name": "resultsPerPageTgtId",
"range": [
- 19237,
- 19256
+ 18875,
+ 18894
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 34
},
"end": {
- "line": 533,
+ "line": 523,
"column": 53
}
}
},
"range": [
- 19232,
- 19256
+ 18870,
+ 18894
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 29
},
"end": {
- "line": 533,
+ "line": 523,
"column": 53
}
}
}
],
"range": [
- 19225,
- 19257
+ 18863,
+ 18895
],
"loc": {
"start": {
- "line": 533,
+ "line": 523,
"column": 22
},
"end": {
- "line": 533,
+ "line": 523,
"column": 54
}
}
},
"range": [
- 19175,
- 19257
+ 18813,
+ 18895
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 23
},
"end": {
- "line": 533,
+ "line": 523,
"column": 54
}
}
},
"range": [
- 19164,
- 19257
+ 18802,
+ 18895
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 12
},
"end": {
- "line": 533,
+ "line": 523,
"column": 54
}
}
@@ -44424,16 +43648,16 @@
],
"kind": "var",
"range": [
- 19160,
- 19258
+ 18798,
+ 18896
],
"loc": {
"start": {
- "line": 532,
+ "line": 522,
"column": 8
},
"end": {
- "line": 533,
+ "line": 523,
"column": 55
}
}
@@ -44449,16 +43673,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 19267,
- 19275
+ 18905,
+ 18913
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 8
},
"end": {
- "line": 534,
+ "line": 524,
"column": 16
}
}
@@ -44467,31 +43691,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 19276,
- 19287
+ 18914,
+ 18925
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 17
},
"end": {
- "line": 534,
+ "line": 524,
"column": 28
}
}
},
"range": [
- 19267,
- 19287
+ 18905,
+ 18925
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 8
},
"end": {
- "line": 534,
+ "line": 524,
"column": 28
}
}
@@ -44506,16 +43730,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 19288,
- 19291
+ 18926,
+ 18929
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 29
},
"end": {
- "line": 534,
+ "line": 524,
"column": 32
}
}
@@ -44524,31 +43748,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 19292,
- 19296
+ 18930,
+ 18934
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 33
},
"end": {
- "line": 534,
+ "line": 524,
"column": 37
}
}
},
"range": [
- 19288,
- 19296
+ 18926,
+ 18934
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 29
},
"end": {
- "line": 534,
+ "line": 524,
"column": 37
}
}
@@ -44558,63 +43782,63 @@
"type": "Identifier",
"name": "slcRText",
"range": [
- 19297,
- 19305
+ 18935,
+ 18943
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 38
},
"end": {
- "line": 534,
+ "line": 524,
"column": 46
}
}
}
],
"range": [
- 19288,
- 19306
+ 18926,
+ 18944
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 29
},
"end": {
- "line": 534,
+ "line": 524,
"column": 47
}
}
}
],
"range": [
- 19267,
- 19307
+ 18905,
+ 18945
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 8
},
"end": {
- "line": 534,
+ "line": 524,
"column": 48
}
}
},
"range": [
- 19267,
- 19308
+ 18905,
+ 18946
],
"loc": {
"start": {
- "line": 534,
+ "line": 524,
"column": 8
},
"end": {
- "line": 534,
+ "line": 524,
"column": 49
}
}
@@ -44628,16 +43852,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19322,
- 19326
+ 18960,
+ 18964
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 12
},
"end": {
- "line": 536,
+ "line": 526,
"column": 16
}
}
@@ -44651,16 +43875,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 19329,
- 19331
+ 18967,
+ 18969
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 19
},
"end": {
- "line": 536,
+ "line": 526,
"column": 21
}
}
@@ -44669,31 +43893,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 19332,
- 19339
+ 18970,
+ 18977
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 22
},
"end": {
- "line": 536,
+ "line": 526,
"column": 29
}
}
},
"range": [
- 19329,
- 19339
+ 18967,
+ 18977
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 19
},
"end": {
- "line": 536,
+ "line": 526,
"column": 29
}
}
@@ -44704,47 +43928,47 @@
"value": "help",
"raw": "'help'",
"range": [
- 19340,
- 19346
+ 18978,
+ 18984
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 30
},
"end": {
- "line": 536,
+ "line": 526,
"column": 36
}
}
}
],
"range": [
- 19329,
- 19347
+ 18967,
+ 18985
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 19
},
"end": {
- "line": 536,
+ "line": 526,
"column": 37
}
}
},
"range": [
- 19322,
- 19347
+ 18960,
+ 18985
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 12
},
"end": {
- "line": 536,
+ "line": 526,
"column": 37
}
}
@@ -44752,16 +43976,16 @@
],
"kind": "var",
"range": [
- 19318,
- 19348
+ 18956,
+ 18986
],
"loc": {
"start": {
- "line": 536,
+ "line": 526,
"column": 8
},
"end": {
- "line": 536,
+ "line": 526,
"column": 38
}
}
@@ -44775,16 +43999,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19360,
- 19364
+ 18998,
+ 19002
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 11
},
"end": {
- "line": 537,
+ "line": 527,
"column": 15
}
}
@@ -44796,16 +44020,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19368,
- 19372
+ 19006,
+ 19010
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 19
},
"end": {
- "line": 537,
+ "line": 527,
"column": 23
}
}
@@ -44814,46 +44038,46 @@
"type": "Identifier",
"name": "btn",
"range": [
- 19373,
- 19376
+ 19011,
+ 19014
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 24
},
"end": {
- "line": 537,
+ "line": 527,
"column": 27
}
}
},
"range": [
- 19368,
- 19376
+ 19006,
+ 19014
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 19
},
"end": {
- "line": 537,
+ "line": 527,
"column": 27
}
}
},
"range": [
- 19360,
- 19376
+ 18998,
+ 19014
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 11
},
"end": {
- "line": 537,
+ "line": 527,
"column": 27
}
}
@@ -44878,16 +44102,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19391,
- 19395
+ 19029,
+ 19033
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 16
}
}
@@ -44896,31 +44120,31 @@
"type": "Identifier",
"name": "btn",
"range": [
- 19396,
- 19399
+ 19034,
+ 19037
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 17
},
"end": {
- "line": 538,
+ "line": 528,
"column": 20
}
}
},
"range": [
- 19391,
- 19399
+ 19029,
+ 19037
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 20
}
}
@@ -44929,31 +44153,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 19400,
- 19410
+ 19038,
+ 19048
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 21
},
"end": {
- "line": 538,
+ "line": 528,
"column": 31
}
}
},
"range": [
- 19391,
- 19410
+ 19029,
+ 19048
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 31
}
}
@@ -44962,31 +44186,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 19411,
- 19423
+ 19049,
+ 19061
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 32
},
"end": {
- "line": 538,
+ "line": 528,
"column": 44
}
}
},
"range": [
- 19391,
- 19423
+ 19029,
+ 19061
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 44
}
}
@@ -44996,16 +44220,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 19424,
- 19432
+ 19062,
+ 19070
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 45
},
"end": {
- "line": 538,
+ "line": 528,
"column": 53
}
}
@@ -45017,16 +44241,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19434,
- 19438
+ 19072,
+ 19076
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 55
},
"end": {
- "line": 538,
+ "line": 528,
"column": 59
}
}
@@ -45035,62 +44259,62 @@
"type": "Identifier",
"name": "btn",
"range": [
- 19439,
- 19442
+ 19077,
+ 19080
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 60
},
"end": {
- "line": 538,
+ "line": 528,
"column": 63
}
}
},
"range": [
- 19434,
- 19442
+ 19072,
+ 19080
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 55
},
"end": {
- "line": 538,
+ "line": 528,
"column": 63
}
}
}
],
"range": [
- 19391,
- 19443
+ 19029,
+ 19081
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 64
}
}
},
"range": [
- 19391,
- 19444
+ 19029,
+ 19082
],
"loc": {
"start": {
- "line": 538,
+ "line": 528,
"column": 12
},
"end": {
- "line": 538,
+ "line": 528,
"column": 65
}
}
@@ -45112,16 +44336,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19457,
- 19461
+ 19095,
+ 19099
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 16
}
}
@@ -45130,31 +44354,31 @@
"type": "Identifier",
"name": "btn",
"range": [
- 19462,
- 19465
+ 19100,
+ 19103
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 17
},
"end": {
- "line": 539,
+ "line": 529,
"column": 20
}
}
},
"range": [
- 19457,
- 19465
+ 19095,
+ 19103
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 20
}
}
@@ -45163,31 +44387,31 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 19466,
- 19476
+ 19104,
+ 19114
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 21
},
"end": {
- "line": 539,
+ "line": 529,
"column": 31
}
}
},
"range": [
- 19457,
- 19476
+ 19095,
+ 19114
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 31
}
}
@@ -45196,31 +44420,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 19477,
- 19489
+ 19115,
+ 19127
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 32
},
"end": {
- "line": 539,
+ "line": 529,
"column": 44
}
}
},
"range": [
- 19457,
- 19489
+ 19095,
+ 19127
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 44
}
}
@@ -45230,16 +44454,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 19490,
- 19494
+ 19128,
+ 19132
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 45
},
"end": {
- "line": 539,
+ "line": 529,
"column": 49
}
}
@@ -45251,16 +44475,16 @@
"type": "Identifier",
"name": "help",
"range": [
- 19496,
- 19500
+ 19134,
+ 19138
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 51
},
"end": {
- "line": 539,
+ "line": 529,
"column": 55
}
}
@@ -45269,78 +44493,78 @@
"type": "Identifier",
"name": "btn",
"range": [
- 19501,
- 19504
+ 19139,
+ 19142
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 56
},
"end": {
- "line": 539,
+ "line": 529,
"column": 59
}
}
},
"range": [
- 19496,
- 19504
+ 19134,
+ 19142
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 51
},
"end": {
- "line": 539,
+ "line": 529,
"column": 59
}
}
}
],
"range": [
- 19457,
- 19505
+ 19095,
+ 19143
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 60
}
}
},
"range": [
- 19457,
- 19506
+ 19095,
+ 19144
],
"loc": {
"start": {
- "line": 539,
+ "line": 529,
"column": 12
},
"end": {
- "line": 539,
+ "line": 529,
"column": 61
}
}
}
],
"range": [
- 19377,
- 19516
+ 19015,
+ 19154
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 28
},
"end": {
- "line": 540,
+ "line": 530,
"column": 9
}
}
@@ -45359,16 +44583,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 19536,
- 19544
+ 19174,
+ 19182
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 12
},
"end": {
- "line": 541,
+ "line": 531,
"column": 20
}
}
@@ -45377,31 +44601,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 19545,
- 19556
+ 19183,
+ 19194
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 21
},
"end": {
- "line": 541,
+ "line": 531,
"column": 32
}
}
},
"range": [
- 19536,
- 19556
+ 19174,
+ 19194
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 12
},
"end": {
- "line": 541,
+ "line": 531,
"column": 32
}
}
@@ -45411,47 +44635,47 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 19557,
- 19565
+ 19195,
+ 19203
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 33
},
"end": {
- "line": 541,
+ "line": 531,
"column": 41
}
}
}
],
"range": [
- 19536,
- 19566
+ 19174,
+ 19204
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 12
},
"end": {
- "line": 541,
+ "line": 531,
"column": 42
}
}
},
"range": [
- 19536,
- 19567
+ 19174,
+ 19205
],
"loc": {
"start": {
- "line": 541,
+ "line": 531,
"column": 12
},
"end": {
- "line": 541,
+ "line": 531,
"column": 43
}
}
@@ -45467,16 +44691,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 19580,
- 19588
+ 19218,
+ 19226
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 12
},
"end": {
- "line": 542,
+ "line": 532,
"column": 20
}
}
@@ -45485,31 +44709,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 19589,
- 19600
+ 19227,
+ 19238
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 21
},
"end": {
- "line": 542,
+ "line": 532,
"column": 32
}
}
},
"range": [
- 19580,
- 19600
+ 19218,
+ 19238
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 12
},
"end": {
- "line": 542,
+ "line": 532,
"column": 32
}
}
@@ -45519,78 +44743,78 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 19601,
- 19605
+ 19239,
+ 19243
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 33
},
"end": {
- "line": 542,
+ "line": 532,
"column": 37
}
}
}
],
"range": [
- 19580,
- 19606
+ 19218,
+ 19244
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 12
},
"end": {
- "line": 542,
+ "line": 532,
"column": 38
}
}
},
"range": [
- 19580,
- 19607
+ 19218,
+ 19245
],
"loc": {
"start": {
- "line": 542,
+ "line": 532,
"column": 12
},
"end": {
- "line": 542,
+ "line": 532,
"column": 39
}
}
}
],
"range": [
- 19522,
- 19617
+ 19160,
+ 19255
],
"loc": {
"start": {
- "line": 540,
+ "line": 530,
"column": 15
},
"end": {
- "line": 543,
+ "line": 533,
"column": 9
}
}
},
"range": [
- 19357,
- 19617
+ 18995,
+ 19255
],
"loc": {
"start": {
- "line": 537,
+ "line": 527,
"column": 8
},
"end": {
- "line": 543,
+ "line": 533,
"column": 9
}
}
@@ -45606,16 +44830,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 19635,
- 19636
+ 19273,
+ 19274
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 16
},
"end": {
- "line": 545,
+ "line": 535,
"column": 17
}
}
@@ -45625,31 +44849,31 @@
"value": 0,
"raw": "0",
"range": [
- 19637,
- 19638
+ 19275,
+ 19276
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 18
},
"end": {
- "line": 545,
+ "line": 535,
"column": 19
}
}
},
"range": [
- 19635,
- 19638
+ 19273,
+ 19276
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 16
},
"end": {
- "line": 545,
+ "line": 535,
"column": 19
}
}
@@ -45657,16 +44881,16 @@
],
"kind": "var",
"range": [
- 19631,
- 19638
+ 19269,
+ 19276
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 12
},
"end": {
- "line": 545,
+ "line": 535,
"column": 19
}
}
@@ -45678,16 +44902,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 19640,
- 19641
+ 19278,
+ 19279
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 21
},
"end": {
- "line": 545,
+ "line": 535,
"column": 22
}
}
@@ -45699,16 +44923,16 @@
"type": "Identifier",
"name": "slcROpts",
"range": [
- 19642,
- 19650
+ 19280,
+ 19288
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 23
},
"end": {
- "line": 545,
+ "line": 535,
"column": 31
}
}
@@ -45717,46 +44941,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 19651,
- 19657
+ 19289,
+ 19295
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 32
},
"end": {
- "line": 545,
+ "line": 535,
"column": 38
}
}
},
"range": [
- 19642,
- 19657
+ 19280,
+ 19295
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 23
},
"end": {
- "line": 545,
+ "line": 535,
"column": 38
}
}
},
"range": [
- 19640,
- 19657
+ 19278,
+ 19295
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 21
},
"end": {
- "line": 545,
+ "line": 535,
"column": 38
}
}
@@ -45768,32 +44992,32 @@
"type": "Identifier",
"name": "r",
"range": [
- 19659,
- 19660
+ 19297,
+ 19298
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 40
},
"end": {
- "line": 545,
+ "line": 535,
"column": 41
}
}
},
"prefix": false,
"range": [
- 19659,
- 19662
+ 19297,
+ 19300
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 40
},
"end": {
- "line": 545,
+ "line": 535,
"column": 43
}
}
@@ -45810,16 +45034,16 @@
"type": "Identifier",
"name": "currOpt",
"range": [
- 19681,
- 19688
+ 19319,
+ 19326
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 16
},
"end": {
- "line": 546,
+ "line": 536,
"column": 23
}
}
@@ -45830,16 +45054,16 @@
"type": "Identifier",
"name": "Option",
"range": [
- 19695,
- 19701
+ 19333,
+ 19339
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 30
},
"end": {
- "line": 546,
+ "line": 536,
"column": 36
}
}
@@ -45852,16 +45076,16 @@
"type": "Identifier",
"name": "slcROpts",
"range": [
- 19702,
- 19710
+ 19340,
+ 19348
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 37
},
"end": {
- "line": 546,
+ "line": 536,
"column": 45
}
}
@@ -45870,31 +45094,31 @@
"type": "Identifier",
"name": "r",
"range": [
- 19711,
- 19712
+ 19349,
+ 19350
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 46
},
"end": {
- "line": 546,
+ "line": 536,
"column": 47
}
}
},
"range": [
- 19702,
- 19713
+ 19340,
+ 19351
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 37
},
"end": {
- "line": 546,
+ "line": 536,
"column": 48
}
}
@@ -45906,16 +45130,16 @@
"type": "Identifier",
"name": "slcROpts",
"range": [
- 19715,
- 19723
+ 19353,
+ 19361
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 50
},
"end": {
- "line": 546,
+ "line": 536,
"column": 58
}
}
@@ -45924,31 +45148,31 @@
"type": "Identifier",
"name": "r",
"range": [
- 19724,
- 19725
+ 19362,
+ 19363
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 59
},
"end": {
- "line": 546,
+ "line": 536,
"column": 60
}
}
},
"range": [
- 19715,
- 19726
+ 19353,
+ 19364
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 50
},
"end": {
- "line": 546,
+ "line": 536,
"column": 61
}
}
@@ -45958,16 +45182,16 @@
"value": false,
"raw": "false",
"range": [
- 19728,
- 19733
+ 19366,
+ 19371
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 63
},
"end": {
- "line": 546,
+ "line": 536,
"column": 68
}
}
@@ -45977,47 +45201,47 @@
"value": false,
"raw": "false",
"range": [
- 19735,
- 19740
+ 19373,
+ 19378
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 70
},
"end": {
- "line": 546,
+ "line": 536,
"column": 75
}
}
}
],
"range": [
- 19691,
- 19741
+ 19329,
+ 19379
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 26
},
"end": {
- "line": 546,
+ "line": 536,
"column": 76
}
}
},
"range": [
- 19681,
- 19741
+ 19319,
+ 19379
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 16
},
"end": {
- "line": 546,
+ "line": 536,
"column": 76
}
}
@@ -46025,16 +45249,16 @@
],
"kind": "var",
"range": [
- 19677,
- 19742
+ 19315,
+ 19380
],
"loc": {
"start": {
- "line": 546,
+ "line": 536,
"column": 12
},
"end": {
- "line": 546,
+ "line": 536,
"column": 77
}
}
@@ -46054,16 +45278,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 19755,
- 19759
+ 19393,
+ 19397
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 12
},
"end": {
- "line": 547,
+ "line": 537,
"column": 16
}
}
@@ -46072,31 +45296,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 19760,
- 19767
+ 19398,
+ 19405
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 17
},
"end": {
- "line": 547,
+ "line": 537,
"column": 24
}
}
},
"range": [
- 19755,
- 19767
+ 19393,
+ 19405
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 12
},
"end": {
- "line": 547,
+ "line": 537,
"column": 24
}
}
@@ -46105,31 +45329,31 @@
"type": "Identifier",
"name": "r",
"range": [
- 19768,
- 19769
+ 19406,
+ 19407
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 25
},
"end": {
- "line": 547,
+ "line": 537,
"column": 26
}
}
},
"range": [
- 19755,
- 19770
+ 19393,
+ 19408
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 12
},
"end": {
- "line": 547,
+ "line": 537,
"column": 27
}
}
@@ -46138,77 +45362,77 @@
"type": "Identifier",
"name": "currOpt",
"range": [
- 19773,
- 19780
+ 19411,
+ 19418
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 30
},
"end": {
- "line": 547,
+ "line": 537,
"column": 37
}
}
},
"range": [
- 19755,
- 19780
+ 19393,
+ 19418
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 12
},
"end": {
- "line": 547,
+ "line": 537,
"column": 37
}
}
},
"range": [
- 19755,
- 19781
+ 19393,
+ 19419
],
"loc": {
"start": {
- "line": 547,
+ "line": 537,
"column": 12
},
"end": {
- "line": 547,
+ "line": 537,
"column": 38
}
}
}
],
"range": [
- 19663,
- 19791
+ 19301,
+ 19429
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 44
},
"end": {
- "line": 548,
+ "line": 538,
"column": 9
}
}
},
"range": [
- 19627,
- 19791
+ 19265,
+ 19429
],
"loc": {
"start": {
- "line": 545,
+ "line": 535,
"column": 8
},
"end": {
- "line": 548,
+ "line": 538,
"column": 9
}
}
@@ -46224,16 +45448,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 19800,
- 19805
+ 19438,
+ 19443
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 8
},
"end": {
- "line": 549,
+ "line": 539,
"column": 13
}
}
@@ -46242,31 +45466,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 19806,
- 19809
+ 19444,
+ 19447
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 14
},
"end": {
- "line": 549,
+ "line": 539,
"column": 17
}
}
},
"range": [
- 19800,
- 19809
+ 19438,
+ 19447
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 8
},
"end": {
- "line": 549,
+ "line": 539,
"column": 17
}
}
@@ -46276,16 +45500,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 19810,
- 19814
+ 19448,
+ 19452
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 18
},
"end": {
- "line": 549,
+ "line": 539,
"column": 22
}
}
@@ -46295,16 +45519,16 @@
"value": "change",
"raw": "'change'",
"range": [
- 19816,
- 19824
+ 19454,
+ 19462
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 24
},
"end": {
- "line": 549,
+ "line": 539,
"column": 32
}
}
@@ -46316,16 +45540,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 19826,
- 19829
+ 19464,
+ 19467
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 34
},
"end": {
- "line": 549,
+ "line": 539,
"column": 37
}
}
@@ -46334,62 +45558,62 @@
"type": "Identifier",
"name": "slcResultsChange",
"range": [
- 19830,
- 19846
+ 19468,
+ 19484
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 38
},
"end": {
- "line": 549,
+ "line": 539,
"column": 54
}
}
},
"range": [
- 19826,
- 19846
+ 19464,
+ 19484
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 34
},
"end": {
- "line": 549,
+ "line": 539,
"column": 54
}
}
}
],
"range": [
- 19800,
- 19847
+ 19438,
+ 19485
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 8
},
"end": {
- "line": 549,
+ "line": 539,
"column": 55
}
}
},
"range": [
- 19800,
- 19848
+ 19438,
+ 19486
],
"loc": {
"start": {
- "line": 549,
+ "line": 539,
"column": 8
},
"end": {
- "line": 549,
+ "line": 539,
"column": 56
}
}
@@ -46405,16 +45629,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19857,
- 19861
+ 19495,
+ 19499
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 8
},
"end": {
- "line": 550,
+ "line": 540,
"column": 12
}
}
@@ -46423,31 +45647,31 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 19862,
- 19879
+ 19500,
+ 19517
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 13
},
"end": {
- "line": 550,
+ "line": 540,
"column": 30
}
}
},
"range": [
- 19857,
- 19879
+ 19495,
+ 19517
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 8
},
"end": {
- "line": 550,
+ "line": 540,
"column": 30
}
}
@@ -46456,62 +45680,62 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 19882,
- 19886
+ 19520,
+ 19524
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 33
},
"end": {
- "line": 550,
+ "line": 540,
"column": 37
}
}
},
"range": [
- 19857,
- 19886
+ 19495,
+ 19524
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 8
},
"end": {
- "line": 550,
+ "line": 540,
"column": 37
}
}
},
"range": [
- 19857,
- 19887
+ 19495,
+ 19525
],
"loc": {
"start": {
- "line": 550,
+ "line": 540,
"column": 8
},
"end": {
- "line": 550,
+ "line": 540,
"column": 38
}
}
}
],
"range": [
- 18275,
- 19893
+ 17989,
+ 19531
],
"loc": {
"start": {
- "line": 503,
+ "line": 496,
"column": 23
},
"end": {
- "line": 551,
+ "line": 541,
"column": 5
}
}
@@ -46519,16 +45743,16 @@
"generator": false,
"expression": false,
"range": [
- 18273,
- 19893
+ 17987,
+ 19531
],
"loc": {
"start": {
- "line": 503,
+ "line": 496,
"column": 21
},
"end": {
- "line": 551,
+ "line": 541,
"column": 5
}
}
@@ -46536,16 +45760,16 @@
"kind": "method",
"computed": false,
"range": [
- 18256,
- 19893
+ 17970,
+ 19531
],
"loc": {
"start": {
- "line": 503,
+ "line": 496,
"column": 4
},
"end": {
- "line": 551,
+ "line": 541,
"column": 5
}
},
@@ -46554,16 +45778,16 @@
"type": "Block",
"value": "*\n * Generates UI elements for the number of results per page drop-down\n ",
"range": [
- 18166,
- 18251
+ 17880,
+ 17965
],
"loc": {
"start": {
- "line": 500,
+ "line": 493,
"column": 4
},
"end": {
- "line": 502,
+ "line": 495,
"column": 7
}
}
@@ -46574,16 +45798,16 @@
"type": "Block",
"value": "*\n * Remove number of results per page UI elements\n ",
"range": [
- 19899,
- 19963
+ 19537,
+ 19601
],
"loc": {
"start": {
- "line": 553,
+ "line": 543,
"column": 4
},
"end": {
- "line": 555,
+ "line": 545,
"column": 7
}
}
@@ -46597,16 +45821,16 @@
"type": "Identifier",
"name": "removeResultsPerPage",
"range": [
- 19968,
- 19988
+ 19606,
+ 19626
],
"loc": {
"start": {
- "line": 556,
+ "line": 546,
"column": 4
},
"end": {
- "line": 556,
+ "line": 546,
"column": 24
}
}
@@ -46627,16 +45851,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20004,
- 20006
+ 19642,
+ 19644
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 12
},
"end": {
- "line": 557,
+ "line": 547,
"column": 14
}
}
@@ -46647,16 +45871,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20009,
- 20013
+ 19647,
+ 19651
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 17
},
"end": {
- "line": 557,
+ "line": 547,
"column": 21
}
}
@@ -46665,46 +45889,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20014,
- 20016
+ 19652,
+ 19654
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 22
},
"end": {
- "line": 557,
+ "line": 547,
"column": 24
}
}
},
"range": [
- 20009,
- 20016
+ 19647,
+ 19654
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 17
},
"end": {
- "line": 557,
+ "line": 547,
"column": 24
}
}
},
"range": [
- 20004,
- 20016
+ 19642,
+ 19654
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 12
},
"end": {
- "line": 557,
+ "line": 547,
"column": 24
}
}
@@ -46712,16 +45936,16 @@
],
"kind": "var",
"range": [
- 20000,
- 20017
+ 19638,
+ 19655
],
"loc": {
"start": {
- "line": 557,
+ "line": 547,
"column": 8
},
"end": {
- "line": 557,
+ "line": 547,
"column": 25
}
}
@@ -46746,16 +45970,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20030,
- 20032
+ 19668,
+ 19670
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 12
},
"end": {
- "line": 558,
+ "line": 548,
"column": 14
}
}
@@ -46764,63 +45988,63 @@
"type": "Identifier",
"name": "hasGrid",
"range": [
- 20033,
- 20040
+ 19671,
+ 19678
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 15
},
"end": {
- "line": 558,
+ "line": 548,
"column": 22
}
}
},
"range": [
- 20030,
- 20040
+ 19668,
+ 19678
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 12
},
"end": {
- "line": 558,
+ "line": 548,
"column": 22
}
}
},
"arguments": [],
"range": [
- 20030,
- 20042
+ 19668,
+ 19680
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 12
},
"end": {
- "line": 558,
+ "line": 548,
"column": 24
}
}
},
"prefix": true,
"range": [
- 20029,
- 20042
+ 19667,
+ 19680
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 11
},
"end": {
- "line": 558,
+ "line": 548,
"column": 24
}
}
@@ -46834,16 +46058,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20047,
- 20051
+ 19685,
+ 19689
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 29
},
"end": {
- "line": 558,
+ "line": 548,
"column": 33
}
}
@@ -46852,62 +46076,62 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 20052,
- 20069
+ 19690,
+ 19707
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 34
},
"end": {
- "line": 558,
+ "line": 548,
"column": 51
}
}
},
"range": [
- 20047,
- 20069
+ 19685,
+ 19707
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 29
},
"end": {
- "line": 558,
+ "line": 548,
"column": 51
}
}
},
"prefix": true,
"range": [
- 20046,
- 20069
+ 19684,
+ 19707
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 28
},
"end": {
- "line": 558,
+ "line": 548,
"column": 51
}
}
},
"range": [
- 20029,
- 20069
+ 19667,
+ 19707
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 11
},
"end": {
- "line": 558,
+ "line": 548,
"column": 51
}
}
@@ -46921,16 +46145,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20074,
- 20078
+ 19712,
+ 19716
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 56
},
"end": {
- "line": 558,
+ "line": 548,
"column": 60
}
}
@@ -46939,62 +46163,62 @@
"type": "Identifier",
"name": "resultsPerPage",
"range": [
- 20079,
- 20093
+ 19717,
+ 19731
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 61
},
"end": {
- "line": 558,
+ "line": 548,
"column": 75
}
}
},
"range": [
- 20074,
- 20093
+ 19712,
+ 19731
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 56
},
"end": {
- "line": 558,
+ "line": 548,
"column": 75
}
}
},
"prefix": true,
"range": [
- 20073,
- 20093
+ 19711,
+ 19731
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 55
},
"end": {
- "line": 558,
+ "line": 548,
"column": 75
}
}
},
"range": [
- 20029,
- 20093
+ 19667,
+ 19731
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 11
},
"end": {
- "line": 558,
+ "line": 548,
"column": 75
}
}
@@ -47006,48 +46230,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 20108,
- 20115
+ 19746,
+ 19753
],
"loc": {
"start": {
- "line": 559,
+ "line": 549,
"column": 12
},
"end": {
- "line": 559,
+ "line": 549,
"column": 19
}
}
}
],
"range": [
- 20094,
- 20125
+ 19732,
+ 19763
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 76
},
"end": {
- "line": 560,
+ "line": 550,
"column": 9
}
}
},
"alternate": null,
"range": [
- 20026,
- 20125
+ 19664,
+ 19763
],
"loc": {
"start": {
- "line": 558,
+ "line": 548,
"column": 8
},
"end": {
- "line": 560,
+ "line": 550,
"column": 9
}
}
@@ -47061,16 +46285,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 20138,
- 20142
+ 19776,
+ 19780
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 12
},
"end": {
- "line": 561,
+ "line": 551,
"column": 16
}
}
@@ -47081,16 +46305,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20145,
- 20149
+ 19783,
+ 19787
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 19
},
"end": {
- "line": 561,
+ "line": 551,
"column": 23
}
}
@@ -47099,46 +46323,46 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 20150,
- 20167
+ 19788,
+ 19805
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 24
},
"end": {
- "line": 561,
+ "line": 551,
"column": 41
}
}
},
"range": [
- 20145,
- 20167
+ 19783,
+ 19805
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 19
},
"end": {
- "line": 561,
+ "line": 551,
"column": 41
}
}
},
"range": [
- 20138,
- 20167
+ 19776,
+ 19805
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 12
},
"end": {
- "line": 561,
+ "line": 551,
"column": 41
}
}
@@ -47149,16 +46373,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 20181,
- 20189
+ 19819,
+ 19827
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 12
},
"end": {
- "line": 562,
+ "line": 552,
"column": 20
}
}
@@ -47172,16 +46396,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 20192,
- 20195
+ 19830,
+ 19833
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 23
},
"end": {
- "line": 562,
+ "line": 552,
"column": 26
}
}
@@ -47190,31 +46414,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 20196,
- 20198
+ 19834,
+ 19836
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 27
},
"end": {
- "line": 562,
+ "line": 552,
"column": 29
}
}
},
"range": [
- 20192,
- 20198
+ 19830,
+ 19836
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 23
},
"end": {
- "line": 562,
+ "line": 552,
"column": 29
}
}
@@ -47229,16 +46453,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20199,
- 20203
+ 19837,
+ 19841
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 30
},
"end": {
- "line": 562,
+ "line": 552,
"column": 34
}
}
@@ -47247,31 +46471,31 @@
"type": "Identifier",
"name": "prfxSlcResultsTxt",
"range": [
- 20204,
- 20221
+ 19842,
+ 19859
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 35
},
"end": {
- "line": 562,
+ "line": 552,
"column": 52
}
}
},
"range": [
- 20199,
- 20221
+ 19837,
+ 19859
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 30
},
"end": {
- "line": 562,
+ "line": 552,
"column": 52
}
}
@@ -47283,16 +46507,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20222,
- 20224
+ 19860,
+ 19862
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 53
},
"end": {
- "line": 562,
+ "line": 552,
"column": 55
}
}
@@ -47301,77 +46525,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 20225,
- 20227
+ 19863,
+ 19865
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 56
},
"end": {
- "line": 562,
+ "line": 552,
"column": 58
}
}
},
"range": [
- 20222,
- 20227
+ 19860,
+ 19865
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 53
},
"end": {
- "line": 562,
+ "line": 552,
"column": 58
}
}
},
"range": [
- 20199,
- 20227
+ 19837,
+ 19865
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 30
},
"end": {
- "line": 562,
+ "line": 552,
"column": 58
}
}
}
],
"range": [
- 20192,
- 20228
+ 19830,
+ 19866
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 23
},
"end": {
- "line": 562,
+ "line": 552,
"column": 59
}
}
},
"range": [
- 20181,
- 20228
+ 19819,
+ 19866
],
"loc": {
"start": {
- "line": 562,
+ "line": 552,
"column": 12
},
"end": {
- "line": 562,
+ "line": 552,
"column": 59
}
}
@@ -47379,16 +46603,16 @@
],
"kind": "var",
"range": [
- 20134,
- 20229
+ 19772,
+ 19867
],
"loc": {
"start": {
- "line": 561,
+ "line": 551,
"column": 8
},
"end": {
- "line": 562,
+ "line": 552,
"column": 60
}
}
@@ -47399,16 +46623,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 20241,
- 20245
+ 19879,
+ 19883
],
"loc": {
"start": {
- "line": 563,
+ "line": 553,
"column": 11
},
"end": {
- "line": 563,
+ "line": 553,
"column": 15
}
}
@@ -47427,16 +46651,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 20260,
- 20263
+ 19898,
+ 19901
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 12
},
"end": {
- "line": 564,
+ "line": 554,
"column": 15
}
}
@@ -47445,31 +46669,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 20264,
- 20270
+ 19902,
+ 19908
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 16
},
"end": {
- "line": 564,
+ "line": 554,
"column": 22
}
}
},
"range": [
- 20260,
- 20270
+ 19898,
+ 19908
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 12
},
"end": {
- "line": 564,
+ "line": 554,
"column": 22
}
}
@@ -47479,79 +46703,79 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 20271,
- 20275
+ 19909,
+ 19913
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 23
},
"end": {
- "line": 564,
+ "line": 554,
"column": 27
}
}
}
],
"range": [
- 20260,
- 20276
+ 19898,
+ 19914
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 12
},
"end": {
- "line": 564,
+ "line": 554,
"column": 28
}
}
},
"range": [
- 20260,
- 20277
+ 19898,
+ 19915
],
"loc": {
"start": {
- "line": 564,
+ "line": 554,
"column": 12
},
"end": {
- "line": 564,
+ "line": 554,
"column": 29
}
}
}
],
"range": [
- 20246,
- 20287
+ 19884,
+ 19925
],
"loc": {
"start": {
- "line": 563,
+ "line": 553,
"column": 16
},
"end": {
- "line": 565,
+ "line": 555,
"column": 9
}
}
},
"alternate": null,
"range": [
- 20238,
- 20287
+ 19876,
+ 19925
],
"loc": {
"start": {
- "line": 563,
+ "line": 553,
"column": 8
},
"end": {
- "line": 565,
+ "line": 555,
"column": 9
}
}
@@ -47562,16 +46786,16 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 20299,
- 20307
+ 19937,
+ 19945
],
"loc": {
"start": {
- "line": 566,
+ "line": 556,
"column": 11
},
"end": {
- "line": 566,
+ "line": 556,
"column": 19
}
}
@@ -47590,16 +46814,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 20322,
- 20325
+ 19960,
+ 19963
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 12
},
"end": {
- "line": 567,
+ "line": 557,
"column": 15
}
}
@@ -47608,31 +46832,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 20326,
- 20332
+ 19964,
+ 19970
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 16
},
"end": {
- "line": 567,
+ "line": 557,
"column": 22
}
}
},
"range": [
- 20322,
- 20332
+ 19960,
+ 19970
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 12
},
"end": {
- "line": 567,
+ "line": 557,
"column": 22
}
}
@@ -47642,79 +46866,79 @@
"type": "Identifier",
"name": "slcRSpan",
"range": [
- 20333,
- 20341
+ 19971,
+ 19979
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 23
},
"end": {
- "line": 567,
+ "line": 557,
"column": 31
}
}
}
],
"range": [
- 20322,
- 20342
+ 19960,
+ 19980
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 12
},
"end": {
- "line": 567,
+ "line": 557,
"column": 32
}
}
},
"range": [
- 20322,
- 20343
+ 19960,
+ 19981
],
"loc": {
"start": {
- "line": 567,
+ "line": 557,
"column": 12
},
"end": {
- "line": 567,
+ "line": 557,
"column": 33
}
}
}
],
"range": [
- 20308,
- 20353
+ 19946,
+ 19991
],
"loc": {
"start": {
- "line": 566,
+ "line": 556,
"column": 20
},
"end": {
- "line": 568,
+ "line": 558,
"column": 9
}
}
},
"alternate": null,
"range": [
- 20296,
- 20353
+ 19934,
+ 19991
],
"loc": {
"start": {
- "line": 566,
+ "line": 556,
"column": 8
},
"end": {
- "line": 568,
+ "line": 558,
"column": 9
}
}
@@ -47730,16 +46954,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20362,
- 20366
+ 20000,
+ 20004
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 8
},
"end": {
- "line": 569,
+ "line": 559,
"column": 12
}
}
@@ -47748,31 +46972,31 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 20367,
- 20384
+ 20005,
+ 20022
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 13
},
"end": {
- "line": 569,
+ "line": 559,
"column": 30
}
}
},
"range": [
- 20362,
- 20384
+ 20000,
+ 20022
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 8
},
"end": {
- "line": 569,
+ "line": 559,
"column": 30
}
}
@@ -47782,62 +47006,62 @@
"value": null,
"raw": "null",
"range": [
- 20387,
- 20391
+ 20025,
+ 20029
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 33
},
"end": {
- "line": 569,
+ "line": 559,
"column": 37
}
}
},
"range": [
- 20362,
- 20391
+ 20000,
+ 20029
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 8
},
"end": {
- "line": 569,
+ "line": 559,
"column": 37
}
}
},
"range": [
- 20362,
- 20392
+ 20000,
+ 20030
],
"loc": {
"start": {
- "line": 569,
+ "line": 559,
"column": 8
},
"end": {
- "line": 569,
+ "line": 559,
"column": 38
}
}
}
],
"range": [
- 19990,
- 20398
+ 19628,
+ 20036
],
"loc": {
"start": {
- "line": 556,
+ "line": 546,
"column": 26
},
"end": {
- "line": 570,
+ "line": 560,
"column": 5
}
}
@@ -47845,16 +47069,16 @@
"generator": false,
"expression": false,
"range": [
- 19988,
- 20398
+ 19626,
+ 20036
],
"loc": {
"start": {
- "line": 556,
+ "line": 546,
"column": 24
},
"end": {
- "line": 570,
+ "line": 560,
"column": 5
}
}
@@ -47862,16 +47086,16 @@
"kind": "method",
"computed": false,
"range": [
- 19968,
- 20398
+ 19606,
+ 20036
],
"loc": {
"start": {
- "line": 556,
+ "line": 546,
"column": 4
},
"end": {
- "line": 570,
+ "line": 560,
"column": 5
}
},
@@ -47880,16 +47104,16 @@
"type": "Block",
"value": "*\n * Remove number of results per page UI elements\n ",
"range": [
- 19899,
- 19963
+ 19537,
+ 19601
],
"loc": {
"start": {
- "line": 553,
+ "line": 543,
"column": 4
},
"end": {
- "line": 555,
+ "line": 545,
"column": 7
}
}
@@ -47898,18 +47122,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Change the page asynchronously according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
+ "value": "*\n * Change the page according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
"range": [
- 20404,
- 20533
+ 20042,
+ 20156
],
"loc": {
"start": {
- "line": 572,
+ "line": 562,
"column": 4
},
"end": {
- "line": 575,
+ "line": 565,
"column": 7
}
}
@@ -47923,16 +47147,16 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 20538,
- 20548
+ 20161,
+ 20171
],
"loc": {
"start": {
- "line": 576,
+ "line": 566,
"column": 4
},
"end": {
- "line": 576,
+ "line": 566,
"column": 14
}
}
@@ -47945,16 +47169,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 20549,
- 20554
+ 20172,
+ 20177
],
"loc": {
"start": {
- "line": 576,
+ "line": 566,
"column": 15
},
"end": {
- "line": 576,
+ "line": 566,
"column": 20
}
}
@@ -47972,16 +47196,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20569,
- 20571
+ 20192,
+ 20194
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 12
},
"end": {
- "line": 577,
+ "line": 567,
"column": 14
}
}
@@ -47992,16 +47216,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20574,
- 20578
+ 20197,
+ 20201
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 17
},
"end": {
- "line": 577,
+ "line": 567,
"column": 21
}
}
@@ -48010,46 +47234,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 20579,
- 20581
+ 20202,
+ 20204
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 22
},
"end": {
- "line": 577,
+ "line": 567,
"column": 24
}
}
},
"range": [
- 20574,
- 20581
+ 20197,
+ 20204
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 17
},
"end": {
- "line": 577,
+ "line": 567,
"column": 24
}
}
},
"range": [
- 20569,
- 20581
+ 20192,
+ 20204
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 12
},
"end": {
- "line": 577,
+ "line": 567,
"column": 24
}
}
@@ -48057,2171 +47281,16 @@
],
"kind": "var",
"range": [
- 20565,
- 20582
+ 20188,
+ 20205
],
"loc": {
"start": {
- "line": 577,
+ "line": 567,
"column": 8
},
"end": {
- "line": 577,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 20595,
- 20598
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 12
- },
- "end": {
- "line": 578,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20601,
- 20603
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 18
- },
- "end": {
- "line": 578,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 20604,
- 20607
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 21
- },
- "end": {
- "line": 578,
- "column": 24
- }
- }
- },
- "range": [
- 20601,
- 20607
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 18
- },
- "end": {
- "line": 578,
- "column": 24
- }
- }
- },
- "range": [
- 20595,
- 20607
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 12
- },
- "end": {
- "line": 578,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 20591,
- 20608
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 8
- },
- "end": {
- "line": 578,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20617,
- 20619
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 8
- },
- "end": {
- "line": 579,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 20620,
- 20630
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 11
- },
- "end": {
- "line": 579,
- "column": 21
- }
- }
- },
- "range": [
- 20617,
- 20630
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 8
- },
- "end": {
- "line": 579,
- "column": 21
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 20631,
- 20634
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 22
- },
- "end": {
- "line": 579,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 20635,
- 20639
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 26
- },
- "end": {
- "line": 579,
- "column": 30
- }
- }
- },
- "range": [
- 20631,
- 20639
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 22
- },
- "end": {
- "line": 579,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "changepage",
- "range": [
- 20640,
- 20650
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 31
- },
- "end": {
- "line": 579,
- "column": 41
- }
- }
- },
- "range": [
- 20631,
- 20650
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 22
- },
- "end": {
- "line": 579,
- "column": 41
- }
- }
- },
- {
- "type": "ObjectExpression",
- "properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "pgIndex",
- "range": [
- 20654,
- 20661
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 45
- },
- "end": {
- "line": 579,
- "column": 52
- }
- }
- },
- "value": {
- "type": "Identifier",
- "name": "index",
- "range": [
- 20662,
- 20667
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 53
- },
- "end": {
- "line": 579,
- "column": 58
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 20654,
- 20667
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 45
- },
- "end": {
- "line": 579,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 20652,
- 20669
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 43
- },
- "end": {
- "line": 579,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 20617,
- 20670
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 8
- },
- "end": {
- "line": 579,
- "column": 61
- }
- }
- },
- "range": [
- 20617,
- 20671
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 8
- },
- "end": {
- "line": 579,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 20555,
- 20677
- ],
- "loc": {
- "start": {
- "line": 576,
- "column": 21
- },
- "end": {
- "line": 580,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 20548,
- 20677
- ],
- "loc": {
- "start": {
- "line": 576,
- "column": 14
- },
- "end": {
- "line": 580,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 20538,
- 20677
- ],
- "loc": {
- "start": {
- "line": 576,
- "column": 4
- },
- "end": {
- "line": 580,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Change the page asynchronously according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
- "range": [
- 20404,
- 20533
- ],
- "loc": {
- "start": {
- "line": 572,
- "column": 4
- },
- "end": {
- "line": 575,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Change rows asynchronously according to page results\n ",
- "range": [
- 20683,
- 20754
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 4
- },
- "end": {
- "line": 584,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "changeResultsPerPage",
- "range": [
- 20759,
- 20779
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 4
- },
- "end": {
- "line": 585,
- "column": 24
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20795,
- 20797
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 12
- },
- "end": {
- "line": 586,
- "column": 14
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 20800,
- 20804
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 17
- },
- "end": {
- "line": 586,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20805,
- 20807
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 22
- },
- "end": {
- "line": 586,
- "column": 24
- }
- }
- },
- "range": [
- 20800,
- 20807
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 17
- },
- "end": {
- "line": 586,
- "column": 24
- }
- }
- },
- "range": [
- 20795,
- 20807
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 12
- },
- "end": {
- "line": 586,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 20791,
- 20808
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 8
- },
- "end": {
- "line": 586,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 20821,
- 20824
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 12
- },
- "end": {
- "line": 587,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20827,
- 20829
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 18
- },
- "end": {
- "line": 587,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 20830,
- 20833
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 21
- },
- "end": {
- "line": 587,
- "column": 24
- }
- }
- },
- "range": [
- 20827,
- 20833
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 18
- },
- "end": {
- "line": 587,
- "column": 24
- }
- }
- },
- "range": [
- 20821,
- 20833
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 12
- },
- "end": {
- "line": 587,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 20817,
- 20834
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 8
- },
- "end": {
- "line": 587,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20843,
- 20845
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 8
- },
- "end": {
- "line": 588,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 20846,
- 20856
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 11
- },
- "end": {
- "line": 588,
- "column": 21
- }
- }
- },
- "range": [
- 20843,
- 20856
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 8
- },
- "end": {
- "line": 588,
- "column": 21
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 20857,
- 20860
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 22
- },
- "end": {
- "line": 588,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 20861,
- 20865
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 26
- },
- "end": {
- "line": 588,
- "column": 30
- }
- }
- },
- "range": [
- 20857,
- 20865
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 22
- },
- "end": {
- "line": 588,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "changeresultsperpage",
- "range": [
- 20866,
- 20886
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 31
- },
- "end": {
- "line": 588,
- "column": 51
- }
- }
- },
- "range": [
- 20857,
- 20886
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 22
- },
- "end": {
- "line": 588,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 20843,
- 20887
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 8
- },
- "end": {
- "line": 588,
- "column": 52
- }
- }
- },
- "range": [
- 20843,
- 20888
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 8
- },
- "end": {
- "line": 588,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 20781,
- 20894
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 26
- },
- "end": {
- "line": 589,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 20779,
- 20894
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 24
- },
- "end": {
- "line": 589,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 20759,
- 20894
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 4
- },
- "end": {
- "line": 589,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Change rows asynchronously according to page results\n ",
- "range": [
- 20683,
- 20754
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 4
- },
- "end": {
- "line": 584,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page nb at page re-load\n ",
- "range": [
- 20900,
- 20964
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 4
- },
- "end": {
- "line": 593,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "resetPage",
- "range": [
- 20969,
- 20978
- ],
- "loc": {
- "start": {
- "line": 594,
- "column": 4
- },
- "end": {
- "line": 594,
- "column": 13
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 20994,
- 20996
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 12
- },
- "end": {
- "line": 595,
- "column": 14
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 20999,
- 21003
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 17
- },
- "end": {
- "line": 595,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21004,
- 21006
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 22
- },
- "end": {
- "line": 595,
- "column": 24
- }
- }
- },
- "range": [
- 20999,
- 21006
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 17
- },
- "end": {
- "line": 595,
- "column": 24
- }
- }
- },
- "range": [
- 20994,
- 21006
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 12
- },
- "end": {
- "line": 595,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 20990,
- 21007
- ],
- "loc": {
- "start": {
- "line": 595,
- "column": 8
- },
- "end": {
- "line": 595,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 21020,
- 21023
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 12
- },
- "end": {
- "line": 596,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21026,
- 21028
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 18
- },
- "end": {
- "line": 596,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 21029,
- 21032
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 21
- },
- "end": {
- "line": 596,
- "column": 24
- }
- }
- },
- "range": [
- 21026,
- 21032
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 18
- },
- "end": {
- "line": 596,
- "column": 24
- }
- }
- },
- "range": [
- 21020,
- 21032
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 12
- },
- "end": {
- "line": 596,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 21016,
- 21033
- ],
- "loc": {
- "start": {
- "line": 596,
- "column": 8
- },
- "end": {
- "line": 596,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21042,
- 21044
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 8
- },
- "end": {
- "line": 597,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 21045,
- 21055
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 11
- },
- "end": {
- "line": 597,
- "column": 21
- }
- }
- },
- "range": [
- 21042,
- 21055
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 8
- },
- "end": {
- "line": 597,
- "column": 21
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 21056,
- 21059
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 22
- },
- "end": {
- "line": 597,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 21060,
- 21064
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 26
- },
- "end": {
- "line": 597,
- "column": 30
- }
- }
- },
- "range": [
- 21056,
- 21064
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 22
- },
- "end": {
- "line": 597,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetpage",
- "range": [
- 21065,
- 21074
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 31
- },
- "end": {
- "line": 597,
- "column": 40
- }
- }
- },
- "range": [
- 21056,
- 21074
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 22
- },
- "end": {
- "line": 597,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 21042,
- 21075
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 8
- },
- "end": {
- "line": 597,
- "column": 41
- }
- }
- },
- "range": [
- 21042,
- 21076
- ],
- "loc": {
- "start": {
- "line": 597,
- "column": 8
- },
- "end": {
- "line": 597,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 20980,
- 21082
- ],
- "loc": {
- "start": {
- "line": 594,
- "column": 15
- },
- "end": {
- "line": 598,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 20978,
- 21082
- ],
- "loc": {
- "start": {
- "line": 594,
- "column": 13
- },
- "end": {
- "line": 598,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 20969,
- 21082
- ],
- "loc": {
- "start": {
- "line": 594,
- "column": 4
- },
- "end": {
- "line": 598,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page nb at page re-load\n ",
- "range": [
- 20900,
- 20964
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 4
- },
- "end": {
- "line": 593,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page length at page re-load\n ",
- "range": [
- 21088,
- 21156
- ],
- "loc": {
- "start": {
- "line": 600,
- "column": 4
- },
- "end": {
- "line": 602,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "resetPageLength",
- "range": [
- 21161,
- 21176
- ],
- "loc": {
- "start": {
- "line": 603,
- "column": 4
- },
- "end": {
- "line": 603,
- "column": 19
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21192,
- 21194
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 12
- },
- "end": {
- "line": 604,
- "column": 14
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 21197,
- 21201
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 17
- },
- "end": {
- "line": 604,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21202,
- 21204
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 22
- },
- "end": {
- "line": 604,
- "column": 24
- }
- }
- },
- "range": [
- 21197,
- 21204
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 17
- },
- "end": {
- "line": 604,
- "column": 24
- }
- }
- },
- "range": [
- 21192,
- 21204
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 12
- },
- "end": {
- "line": 604,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 21188,
- 21205
- ],
- "loc": {
- "start": {
- "line": 604,
- "column": 8
- },
- "end": {
- "line": 604,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 21218,
- 21221
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 12
- },
- "end": {
- "line": 605,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21224,
- 21226
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 18
- },
- "end": {
- "line": 605,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 21227,
- 21230
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 21
- },
- "end": {
- "line": 605,
- "column": 24
- }
- }
- },
- "range": [
- 21224,
- 21230
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 18
- },
- "end": {
- "line": 605,
- "column": 24
- }
- }
- },
- "range": [
- 21218,
- 21230
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 12
- },
- "end": {
- "line": 605,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 21214,
- 21231
- ],
- "loc": {
- "start": {
- "line": 605,
- "column": 8
- },
- "end": {
- "line": 605,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21240,
- 21242
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 8
- },
- "end": {
- "line": 606,
- "column": 10
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 21243,
- 21253
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 11
- },
- "end": {
- "line": 606,
- "column": 21
- }
- }
- },
- "range": [
- 21240,
- 21253
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 8
- },
- "end": {
- "line": 606,
- "column": 21
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 21254,
- 21257
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 22
- },
- "end": {
- "line": 606,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 21258,
- 21262
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 26
- },
- "end": {
- "line": 606,
- "column": 30
- }
- }
- },
- "range": [
- 21254,
- 21262
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 22
- },
- "end": {
- "line": 606,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetpagelength",
- "range": [
- 21263,
- 21278
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 31
- },
- "end": {
- "line": 606,
- "column": 46
- }
- }
- },
- "range": [
- 21254,
- 21278
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 22
- },
- "end": {
- "line": 606,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 21240,
- 21279
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 8
- },
- "end": {
- "line": 606,
- "column": 47
- }
- }
- },
- "range": [
- 21240,
- 21280
- ],
- "loc": {
- "start": {
- "line": 606,
- "column": 8
- },
- "end": {
- "line": 606,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 21178,
- 21286
- ],
- "loc": {
- "start": {
- "line": 603,
- "column": 21
- },
- "end": {
- "line": 607,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 21176,
- 21286
- ],
- "loc": {
- "start": {
- "line": 603,
- "column": 19
- },
- "end": {
- "line": 607,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 21161,
- 21286
- ],
- "loc": {
- "start": {
- "line": 603,
- "column": 4
- },
- "end": {
- "line": 607,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page length at page re-load\n ",
- "range": [
- 21088,
- 21156
- ],
- "loc": {
- "start": {
- "line": 600,
- "column": 4
- },
- "end": {
- "line": 602,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Change the page according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
- "range": [
- 21292,
- 21406
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 4
- },
- "end": {
- "line": 612,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_changePage",
- "range": [
- 21411,
- 21422
- ],
- "loc": {
- "start": {
- "line": 613,
- "column": 4
- },
- "end": {
- "line": 613,
- "column": 15
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "index",
- "range": [
- 21423,
- 21428
- ],
- "loc": {
- "start": {
- "line": 613,
- "column": 16
- },
- "end": {
- "line": 613,
- "column": 21
- }
- }
- }
- ],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21443,
- 21445
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 12
- },
- "end": {
- "line": 614,
- "column": 14
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 21448,
- 21452
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 17
- },
- "end": {
- "line": 614,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 21453,
- 21455
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 22
- },
- "end": {
- "line": 614,
- "column": 24
- }
- }
- },
- "range": [
- 21448,
- 21455
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 17
- },
- "end": {
- "line": 614,
- "column": 24
- }
- }
- },
- "range": [
- 21443,
- 21455
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 12
- },
- "end": {
- "line": 614,
- "column": 24
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 21439,
- 21456
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 8
- },
- "end": {
- "line": 614,
+ "line": 567,
"column": 25
}
}
@@ -50239,16 +47308,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21470,
- 21474
+ 20219,
+ 20223
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 12
},
"end": {
- "line": 616,
+ "line": 569,
"column": 16
}
}
@@ -50257,63 +47326,63 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 21475,
- 21484
+ 20224,
+ 20233
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 17
},
"end": {
- "line": 616,
+ "line": 569,
"column": 26
}
}
},
"range": [
- 21470,
- 21484
+ 20219,
+ 20233
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 12
},
"end": {
- "line": 616,
+ "line": 569,
"column": 26
}
}
},
"arguments": [],
"range": [
- 21470,
- 21486
+ 20219,
+ 20235
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 12
},
"end": {
- "line": 616,
+ "line": 569,
"column": 28
}
}
},
"prefix": true,
"range": [
- 21469,
- 21486
+ 20218,
+ 20235
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 11
},
"end": {
- "line": 616,
+ "line": 569,
"column": 28
}
}
@@ -50325,52 +47394,232 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 21501,
- 21508
+ 20250,
+ 20257
],
"loc": {
"start": {
- "line": 617,
+ "line": 570,
"column": 12
},
"end": {
- "line": 617,
+ "line": 570,
"column": 19
}
}
}
],
"range": [
- 21487,
- 21518
+ 20236,
+ 20267
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 29
},
"end": {
- "line": 618,
+ "line": 571,
"column": 9
}
}
},
"alternate": null,
"range": [
- 21466,
- 21518
+ 20215,
+ 20267
],
"loc": {
"start": {
- "line": 616,
+ "line": 569,
"column": 8
},
"end": {
- "line": 618,
+ "line": 571,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20277,
+ 20281
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 8
+ },
+ "end": {
+ "line": 573,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 20282,
+ 20289
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 13
+ },
+ "end": {
+ "line": 573,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 20277,
+ 20289
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 8
+ },
+ "end": {
+ "line": 573,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 20290,
+ 20294
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 21
+ },
+ "end": {
+ "line": 573,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 20277,
+ 20294
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 8
+ },
+ "end": {
+ "line": 573,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-changing-page",
+ "raw": "'before-changing-page'",
+ "range": [
+ 20295,
+ 20317
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 26
+ },
+ "end": {
+ "line": 573,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 20319,
+ 20321
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 50
+ },
+ "end": {
+ "line": 573,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 20323,
+ 20328
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 54
+ },
+ "end": {
+ "line": 573,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 20277,
+ 20329
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 8
+ },
+ "end": {
+ "line": 573,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 20277,
+ 20330
+ ],
+ "loc": {
+ "start": {
+ "line": 573,
+ "column": 8
+ },
+ "end": {
+ "line": 573,
+ "column": 61
+ }
+ }
+ },
{
"type": "IfStatement",
"test": {
@@ -50380,16 +47629,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 21530,
- 21535
+ 20343,
+ 20348
],
"loc": {
"start": {
- "line": 619,
+ "line": 575,
"column": 11
},
"end": {
- "line": 619,
+ "line": 575,
"column": 16
}
}
@@ -50399,31 +47648,31 @@
"value": null,
"raw": "null",
"range": [
- 21540,
- 21544
+ 20353,
+ 20357
],
"loc": {
"start": {
- "line": 619,
+ "line": 575,
"column": 21
},
"end": {
- "line": 619,
+ "line": 575,
"column": 25
}
}
},
"range": [
- 21530,
- 21544
+ 20343,
+ 20357
],
"loc": {
"start": {
- "line": 619,
+ "line": 575,
"column": 11
},
"end": {
- "line": 619,
+ "line": 575,
"column": 25
}
}
@@ -50440,16 +47689,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 21559,
- 21564
+ 20372,
+ 20377
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 12
},
"end": {
- "line": 620,
+ "line": 576,
"column": 17
}
}
@@ -50465,16 +47714,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21567,
- 21571
+ 20380,
+ 20384
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 20
},
"end": {
- "line": 620,
+ "line": 576,
"column": 24
}
}
@@ -50483,31 +47732,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 21572,
- 21588
+ 20385,
+ 20401
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 25
},
"end": {
- "line": 620,
+ "line": 576,
"column": 41
}
}
},
"range": [
- 21567,
- 21588
+ 20380,
+ 20401
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 20
},
"end": {
- "line": 620,
+ "line": 576,
"column": 41
}
}
@@ -50519,16 +47768,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 21591,
- 21593
+ 20404,
+ 20406
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 44
},
"end": {
- "line": 620,
+ "line": 576,
"column": 46
}
}
@@ -50537,46 +47786,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 21594,
- 21604
+ 20407,
+ 20417
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 47
},
"end": {
- "line": 620,
+ "line": 576,
"column": 57
}
}
},
"range": [
- 21591,
- 21604
+ 20404,
+ 20417
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 44
},
"end": {
- "line": 620,
+ "line": 576,
"column": 57
}
}
},
"range": [
- 21567,
- 21604
+ 20380,
+ 20417
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 20
},
"end": {
- "line": 620,
+ "line": 576,
"column": 57
}
}
@@ -50593,16 +47842,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21623,
- 21627
+ 20436,
+ 20440
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 16
},
"end": {
- "line": 621,
+ "line": 577,
"column": 20
}
}
@@ -50611,31 +47860,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 21628,
- 21637
+ 20441,
+ 20450
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 21
},
"end": {
- "line": 621,
+ "line": 577,
"column": 30
}
}
},
"range": [
- 21623,
- 21637
+ 20436,
+ 20450
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 16
},
"end": {
- "line": 621,
+ "line": 577,
"column": 30
}
}
@@ -50644,31 +47893,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 21638,
- 21645
+ 20451,
+ 20458
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 31
},
"end": {
- "line": 621,
+ "line": 577,
"column": 38
}
}
},
"range": [
- 21623,
- 21645
+ 20436,
+ 20458
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 16
},
"end": {
- "line": 621,
+ "line": 577,
"column": 38
}
}
@@ -50677,31 +47926,31 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 21646,
- 21659
+ 20459,
+ 20472
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 39
},
"end": {
- "line": 621,
+ "line": 577,
"column": 52
}
}
},
"range": [
- 21623,
- 21659
+ 20436,
+ 20472
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 16
},
"end": {
- "line": 621,
+ "line": 577,
"column": 52
}
}
@@ -50718,16 +47967,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21663,
- 21667
+ 20476,
+ 20480
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 56
},
"end": {
- "line": 621,
+ "line": 577,
"column": 60
}
}
@@ -50736,31 +47985,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 21668,
- 21677
+ 20481,
+ 20490
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 61
},
"end": {
- "line": 621,
+ "line": 577,
"column": 70
}
}
},
"range": [
- 21663,
- 21677
+ 20476,
+ 20490
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 56
},
"end": {
- "line": 621,
+ "line": 577,
"column": 70
}
}
@@ -50769,31 +48018,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 21678,
- 21683
+ 20491,
+ 20496
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 71
},
"end": {
- "line": 621,
+ "line": 577,
"column": 76
}
}
},
"range": [
- 21663,
- 21683
+ 20476,
+ 20496
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 56
},
"end": {
- "line": 621,
+ "line": 577,
"column": 76
}
}
@@ -50803,108 +48052,108 @@
"value": 1,
"raw": "1",
"range": [
- 21684,
- 21685
+ 20497,
+ 20498
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 77
},
"end": {
- "line": 621,
+ "line": 577,
"column": 78
}
}
},
"range": [
- 21663,
- 21685
+ 20476,
+ 20498
],
"loc": {
"start": {
- "line": 621,
+ "line": 577,
"column": 56
},
"end": {
- "line": 621,
+ "line": 577,
"column": 78
}
}
},
"range": [
- 21567,
- 21686
+ 20380,
+ 20499
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 20
},
"end": {
- "line": 621,
+ "line": 577,
"column": 79
}
}
},
"range": [
- 21559,
- 21686
+ 20372,
+ 20499
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 12
},
"end": {
- "line": 621,
+ "line": 577,
"column": 79
}
}
},
"range": [
- 21559,
- 21687
+ 20372,
+ 20500
],
"loc": {
"start": {
- "line": 620,
+ "line": 576,
"column": 12
},
"end": {
- "line": 621,
+ "line": 577,
"column": 80
}
}
}
],
"range": [
- 21545,
- 21697
+ 20358,
+ 20510
],
"loc": {
"start": {
- "line": 619,
+ "line": 575,
"column": 26
},
"end": {
- "line": 622,
+ "line": 578,
"column": 9
}
}
},
"alternate": null,
"range": [
- 21527,
- 21697
+ 20340,
+ 20510
],
"loc": {
"start": {
- "line": 619,
+ "line": 575,
"column": 8
},
"end": {
- "line": 622,
+ "line": 578,
"column": 9
}
}
@@ -50921,16 +48170,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 21710,
- 21715
+ 20523,
+ 20528
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 12
},
"end": {
- "line": 623,
+ "line": 579,
"column": 17
}
}
@@ -50940,31 +48189,31 @@
"value": 0,
"raw": "0",
"range": [
- 21717,
- 21718
+ 20530,
+ 20531
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 19
},
"end": {
- "line": 623,
+ "line": 579,
"column": 20
}
}
},
"range": [
- 21710,
- 21718
+ 20523,
+ 20531
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 12
},
"end": {
- "line": 623,
+ "line": 579,
"column": 20
}
}
@@ -50976,16 +48225,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 21722,
- 21727
+ 20535,
+ 20540
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 24
},
"end": {
- "line": 623,
+ "line": 579,
"column": 29
}
}
@@ -50999,16 +48248,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21730,
- 21734
+ 20543,
+ 20547
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 32
},
"end": {
- "line": 623,
+ "line": 579,
"column": 36
}
}
@@ -51017,31 +48266,31 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 21735,
- 21742
+ 20548,
+ 20555
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 37
},
"end": {
- "line": 623,
+ "line": 579,
"column": 44
}
}
},
"range": [
- 21730,
- 21742
+ 20543,
+ 20555
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 32
},
"end": {
- "line": 623,
+ "line": 579,
"column": 44
}
}
@@ -51051,61 +48300,61 @@
"value": 1,
"raw": "1",
"range": [
- 21743,
- 21744
+ 20556,
+ 20557
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 45
},
"end": {
- "line": 623,
+ "line": 579,
"column": 46
}
}
},
"range": [
- 21730,
- 21744
+ 20543,
+ 20557
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 32
},
"end": {
- "line": 623,
+ "line": 579,
"column": 46
}
}
},
"range": [
- 21722,
- 21745
+ 20535,
+ 20558
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 24
},
"end": {
- "line": 623,
+ "line": 579,
"column": 47
}
}
},
"range": [
- 21710,
- 21745
+ 20523,
+ 20558
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 12
},
"end": {
- "line": 623,
+ "line": 579,
"column": 47
}
}
@@ -51121,16 +48370,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21764,
- 21768
+ 20577,
+ 20581
],
"loc": {
"start": {
- "line": 624,
+ "line": 580,
"column": 15
},
"end": {
- "line": 624,
+ "line": 580,
"column": 19
}
}
@@ -51139,31 +48388,31 @@
"type": "Identifier",
"name": "onBeforeChangePage",
"range": [
- 21769,
- 21787
+ 20582,
+ 20600
],
"loc": {
"start": {
- "line": 624,
+ "line": 580,
"column": 20
},
"end": {
- "line": 624,
+ "line": 580,
"column": 38
}
}
},
"range": [
- 21764,
- 21787
+ 20577,
+ 20600
],
"loc": {
"start": {
- "line": 624,
+ "line": 580,
"column": 15
},
"end": {
- "line": 624,
+ "line": 580,
"column": 38
}
}
@@ -51184,16 +48433,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21806,
- 21810
+ 20619,
+ 20623
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 16
},
"end": {
- "line": 625,
+ "line": 581,
"column": 20
}
}
@@ -51202,31 +48451,31 @@
"type": "Identifier",
"name": "onBeforeChangePage",
"range": [
- 21811,
- 21829
+ 20624,
+ 20642
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 21
},
"end": {
- "line": 625,
+ "line": 581,
"column": 39
}
}
},
"range": [
- 21806,
- 21829
+ 20619,
+ 20642
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 16
},
"end": {
- "line": 625,
+ "line": 581,
"column": 39
}
}
@@ -51235,31 +48484,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 21830,
- 21834
+ 20643,
+ 20647
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 40
},
"end": {
- "line": 625,
+ "line": 581,
"column": 44
}
}
},
"range": [
- 21806,
- 21834
+ 20619,
+ 20647
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 16
},
"end": {
- "line": 625,
+ "line": 581,
"column": 44
}
}
@@ -51270,16 +48519,16 @@
"value": null,
"raw": "null",
"range": [
- 21835,
- 21839
+ 20648,
+ 20652
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 45
},
"end": {
- "line": 625,
+ "line": 581,
"column": 49
}
}
@@ -51287,16 +48536,16 @@
{
"type": "ThisExpression",
"range": [
- 21841,
- 21845
+ 20654,
+ 20658
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 51
},
"end": {
- "line": 625,
+ "line": 581,
"column": 55
}
}
@@ -51305,79 +48554,79 @@
"type": "Identifier",
"name": "index",
"range": [
- 21847,
- 21852
+ 20660,
+ 20665
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 57
},
"end": {
- "line": 625,
+ "line": 581,
"column": 62
}
}
}
],
"range": [
- 21806,
- 21853
+ 20619,
+ 20666
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 16
},
"end": {
- "line": 625,
+ "line": 581,
"column": 63
}
}
},
"range": [
- 21806,
- 21854
+ 20619,
+ 20667
],
"loc": {
"start": {
- "line": 625,
+ "line": 581,
"column": 16
},
"end": {
- "line": 625,
+ "line": 581,
"column": 64
}
}
}
],
"range": [
- 21788,
- 21868
+ 20601,
+ 20681
],
"loc": {
"start": {
- "line": 624,
+ "line": 580,
"column": 39
},
"end": {
- "line": 626,
+ "line": 582,
"column": 13
}
}
},
"alternate": null,
"range": [
- 21761,
- 21868
+ 20574,
+ 20681
],
"loc": {
"start": {
- "line": 624,
+ "line": 580,
"column": 12
},
"end": {
- "line": 626,
+ "line": 582,
"column": 13
}
}
@@ -51393,16 +48642,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21881,
- 21885
+ 20694,
+ 20698
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 12
},
"end": {
- "line": 627,
+ "line": 583,
"column": 16
}
}
@@ -51411,31 +48660,31 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 21886,
- 21899
+ 20699,
+ 20712
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 17
},
"end": {
- "line": 627,
+ "line": 583,
"column": 30
}
}
},
"range": [
- 21881,
- 21899
+ 20694,
+ 20712
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 12
},
"end": {
- "line": 627,
+ "line": 583,
"column": 30
}
}
@@ -51449,16 +48698,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 21902,
- 21910
+ 20715,
+ 20723
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 33
},
"end": {
- "line": 627,
+ "line": 583,
"column": 41
}
}
@@ -51468,16 +48717,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 21911,
- 21916
+ 20724,
+ 20729
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 42
},
"end": {
- "line": 627,
+ "line": 583,
"column": 47
}
}
@@ -51487,32 +48736,32 @@
"value": 10,
"raw": "10",
"range": [
- 21918,
- 21920
+ 20731,
+ 20733
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 49
},
"end": {
- "line": 627,
+ "line": 583,
"column": 51
}
}
}
],
"range": [
- 21902,
- 21921
+ 20715,
+ 20734
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 33
},
"end": {
- "line": 627,
+ "line": 583,
"column": 52
}
}
@@ -51522,61 +48771,61 @@
"value": 1,
"raw": "1",
"range": [
- 21922,
- 21923
+ 20735,
+ 20736
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 53
},
"end": {
- "line": 627,
+ "line": 583,
"column": 54
}
}
},
"range": [
- 21902,
- 21923
+ 20715,
+ 20736
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 33
},
"end": {
- "line": 627,
+ "line": 583,
"column": 54
}
}
},
"range": [
- 21881,
- 21923
+ 20694,
+ 20736
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 12
},
"end": {
- "line": 627,
+ "line": 583,
"column": 54
}
}
},
"range": [
- 21881,
- 21924
+ 20694,
+ 20737
],
"loc": {
"start": {
- "line": 627,
+ "line": 583,
"column": 12
},
"end": {
- "line": 627,
+ "line": 583,
"column": 55
}
}
@@ -51592,16 +48841,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21940,
- 21944
+ 20753,
+ 20757
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 15
},
"end": {
- "line": 628,
+ "line": 584,
"column": 19
}
}
@@ -51610,31 +48859,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 21945,
- 21961
+ 20758,
+ 20774
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 20
},
"end": {
- "line": 628,
+ "line": 584,
"column": 36
}
}
},
"range": [
- 21940,
- 21961
+ 20753,
+ 20774
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 15
},
"end": {
- "line": 628,
+ "line": 584,
"column": 36
}
}
@@ -51646,16 +48895,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 21964,
- 21966
+ 20777,
+ 20779
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 39
},
"end": {
- "line": 628,
+ "line": 584,
"column": 41
}
}
@@ -51664,46 +48913,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 21967,
- 21977
+ 20780,
+ 20790
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 42
},
"end": {
- "line": 628,
+ "line": 584,
"column": 52
}
}
},
"range": [
- 21964,
- 21977
+ 20777,
+ 20790
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 39
},
"end": {
- "line": 628,
+ "line": 584,
"column": 52
}
}
},
"range": [
- 21940,
- 21977
+ 20753,
+ 20790
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 15
},
"end": {
- "line": 628,
+ "line": 584,
"column": 52
}
}
@@ -51731,16 +48980,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21996,
- 22000
+ 20809,
+ 20813
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 20
}
}
@@ -51749,31 +48998,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 22001,
- 22010
+ 20814,
+ 20823
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 21
},
"end": {
- "line": 629,
+ "line": 585,
"column": 30
}
}
},
"range": [
- 21996,
- 22010
+ 20809,
+ 20823
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 30
}
}
@@ -51782,31 +49031,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 22011,
- 22018
+ 20824,
+ 20831
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 31
},
"end": {
- "line": 629,
+ "line": 585,
"column": 38
}
}
},
"range": [
- 21996,
- 22018
+ 20809,
+ 20831
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 38
}
}
@@ -51815,31 +49064,31 @@
"type": "Identifier",
"name": "index",
"range": [
- 22019,
- 22024
+ 20832,
+ 20837
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 39
},
"end": {
- "line": 629,
+ "line": 585,
"column": 44
}
}
},
"range": [
- 21996,
- 22025
+ 20809,
+ 20838
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 45
}
}
@@ -51848,31 +49097,31 @@
"type": "Identifier",
"name": "selected",
"range": [
- 22026,
- 22034
+ 20839,
+ 20847
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 46
},
"end": {
- "line": 629,
+ "line": 585,
"column": 54
}
}
},
"range": [
- 21996,
- 22034
+ 20809,
+ 20847
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 54
}
}
@@ -51882,62 +49131,62 @@
"value": true,
"raw": "true",
"range": [
- 22037,
- 22041
+ 20850,
+ 20854
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 57
},
"end": {
- "line": 629,
+ "line": 585,
"column": 61
}
}
},
"range": [
- 21996,
- 22041
+ 20809,
+ 20854
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 61
}
}
},
"range": [
- 21996,
- 22042
+ 20809,
+ 20855
],
"loc": {
"start": {
- "line": 629,
+ "line": 585,
"column": 16
},
"end": {
- "line": 629,
+ "line": 585,
"column": 62
}
}
}
],
"range": [
- 21978,
- 22056
+ 20791,
+ 20869
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 53
},
"end": {
- "line": 630,
+ "line": 586,
"column": 13
}
}
@@ -51959,16 +49208,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22080,
- 22084
+ 20893,
+ 20897
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 16
},
"end": {
- "line": 631,
+ "line": 587,
"column": 20
}
}
@@ -51977,31 +49226,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 22085,
- 22094
+ 20898,
+ 20907
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 21
},
"end": {
- "line": 631,
+ "line": 587,
"column": 30
}
}
},
"range": [
- 22080,
- 22094
+ 20893,
+ 20907
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 16
},
"end": {
- "line": 631,
+ "line": 587,
"column": 30
}
}
@@ -52010,31 +49259,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 22095,
- 22100
+ 20908,
+ 20913
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 31
},
"end": {
- "line": 631,
+ "line": 587,
"column": 36
}
}
},
"range": [
- 22080,
- 22100
+ 20893,
+ 20913
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 16
},
"end": {
- "line": 631,
+ "line": 587,
"column": 36
}
}
@@ -52045,16 +49294,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22103,
- 22107
+ 20916,
+ 20920
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 39
},
"end": {
- "line": 631,
+ "line": 587,
"column": 43
}
}
@@ -52063,92 +49312,92 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 22108,
- 22121
+ 20921,
+ 20934
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 44
},
"end": {
- "line": 631,
+ "line": 587,
"column": 57
}
}
},
"range": [
- 22103,
- 22121
+ 20916,
+ 20934
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 39
},
"end": {
- "line": 631,
+ "line": 587,
"column": 57
}
}
},
"range": [
- 22080,
- 22121
+ 20893,
+ 20934
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 16
},
"end": {
- "line": 631,
+ "line": 587,
"column": 57
}
}
},
"range": [
- 22080,
- 22122
+ 20893,
+ 20935
],
"loc": {
"start": {
- "line": 631,
+ "line": 587,
"column": 16
},
"end": {
- "line": 631,
+ "line": 587,
"column": 58
}
}
}
],
"range": [
- 22062,
- 22136
+ 20875,
+ 20949
],
"loc": {
"start": {
- "line": 630,
+ "line": 586,
"column": 19
},
"end": {
- "line": 632,
+ "line": 588,
"column": 13
}
}
},
"range": [
- 21937,
- 22136
+ 20750,
+ 20949
],
"loc": {
"start": {
- "line": 628,
+ "line": 584,
"column": 12
},
"end": {
- "line": 632,
+ "line": 588,
"column": 13
}
}
@@ -52162,16 +49411,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22153,
- 22155
+ 20966,
+ 20968
],
"loc": {
"start": {
- "line": 634,
+ "line": 590,
"column": 15
},
"end": {
- "line": 634,
+ "line": 590,
"column": 17
}
}
@@ -52180,31 +49429,31 @@
"type": "Identifier",
"name": "rememberPageNb",
"range": [
- 22156,
- 22170
+ 20969,
+ 20983
],
"loc": {
"start": {
- "line": 634,
+ "line": 590,
"column": 18
},
"end": {
- "line": 634,
+ "line": 590,
"column": 32
}
}
},
"range": [
- 22153,
- 22170
+ 20966,
+ 20983
],
"loc": {
"start": {
- "line": 634,
+ "line": 590,
"column": 15
},
"end": {
- "line": 634,
+ "line": 590,
"column": 32
}
}
@@ -52228,16 +49477,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22189,
- 22191
+ 21002,
+ 21004
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 18
}
}
@@ -52246,31 +49495,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 22192,
- 22199
+ 21005,
+ 21012
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 19
},
"end": {
- "line": 635,
+ "line": 591,
"column": 26
}
}
},
"range": [
- 22189,
- 22199
+ 21002,
+ 21012
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 26
}
}
@@ -52281,32 +49530,32 @@
"value": "store",
"raw": "'store'",
"range": [
- 22200,
- 22207
+ 21013,
+ 21020
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 27
},
"end": {
- "line": 635,
+ "line": 591,
"column": 34
}
}
}
],
"range": [
- 22189,
- 22208
+ 21002,
+ 21021
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 35
}
}
@@ -52315,31 +49564,31 @@
"type": "Identifier",
"name": "savePageNb",
"range": [
- 22209,
- 22219
+ 21022,
+ 21032
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 36
},
"end": {
- "line": 635,
+ "line": 591,
"column": 46
}
}
},
"range": [
- 22189,
- 22219
+ 21002,
+ 21032
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 46
}
}
@@ -52352,16 +49601,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22220,
- 22222
+ 21033,
+ 21035
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 47
},
"end": {
- "line": 635,
+ "line": 591,
"column": 49
}
}
@@ -52370,94 +49619,94 @@
"type": "Identifier",
"name": "pgNbCookie",
"range": [
- 22223,
- 22233
+ 21036,
+ 21046
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 50
},
"end": {
- "line": 635,
+ "line": 591,
"column": 60
}
}
},
"range": [
- 22220,
- 22233
+ 21033,
+ 21046
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 47
},
"end": {
- "line": 635,
+ "line": 591,
"column": 60
}
}
}
],
"range": [
- 22189,
- 22234
+ 21002,
+ 21047
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 61
}
}
},
"range": [
- 22189,
- 22235
+ 21002,
+ 21048
],
"loc": {
"start": {
- "line": 635,
+ "line": 591,
"column": 16
},
"end": {
- "line": 635,
+ "line": 591,
"column": 62
}
}
}
],
"range": [
- 22171,
- 22249
+ 20984,
+ 21062
],
"loc": {
"start": {
- "line": 634,
+ "line": 590,
"column": 33
},
"end": {
- "line": 636,
+ "line": 592,
"column": 13
}
}
},
"alternate": null,
"range": [
- 22150,
- 22249
+ 20963,
+ 21062
],
"loc": {
"start": {
- "line": 634,
+ "line": 590,
"column": 12
},
"end": {
- "line": 636,
+ "line": 592,
"column": 13
}
}
@@ -52473,16 +49722,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22262,
- 22266
+ 21075,
+ 21079
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 12
},
"end": {
- "line": 637,
+ "line": 593,
"column": 16
}
}
@@ -52491,31 +49740,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 22267,
- 22281
+ 21080,
+ 21094
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 17
},
"end": {
- "line": 637,
+ "line": 593,
"column": 31
}
}
},
"range": [
- 22262,
- 22281
+ 21075,
+ 21094
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 12
},
"end": {
- "line": 637,
+ "line": 593,
"column": 31
}
}
@@ -52531,16 +49780,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22285,
- 22289
+ 21098,
+ 21102
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 35
},
"end": {
- "line": 637,
+ "line": 593,
"column": 39
}
}
@@ -52549,31 +49798,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 22290,
- 22306
+ 21103,
+ 21119
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 40
},
"end": {
- "line": 637,
+ "line": 593,
"column": 56
}
}
},
"range": [
- 22285,
- 22306
+ 21098,
+ 21119
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 35
},
"end": {
- "line": 637,
+ "line": 593,
"column": 56
}
}
@@ -52585,16 +49834,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22309,
- 22311
+ 21122,
+ 21124
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 59
},
"end": {
- "line": 637,
+ "line": 593,
"column": 61
}
}
@@ -52603,46 +49852,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 22312,
- 22322
+ 21125,
+ 21135
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 62
},
"end": {
- "line": 637,
+ "line": 593,
"column": 72
}
}
},
"range": [
- 22309,
- 22322
+ 21122,
+ 21135
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 59
},
"end": {
- "line": 637,
+ "line": 593,
"column": 72
}
}
},
"range": [
- 22285,
- 22322
+ 21098,
+ 21135
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 35
},
"end": {
- "line": 637,
+ "line": 593,
"column": 72
}
}
@@ -52656,16 +49905,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22342,
- 22346
+ 21155,
+ 21159
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 16
},
"end": {
- "line": 638,
+ "line": 594,
"column": 20
}
}
@@ -52674,31 +49923,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 22347,
- 22356
+ 21160,
+ 21169
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 21
},
"end": {
- "line": 638,
+ "line": 594,
"column": 30
}
}
},
"range": [
- 22342,
- 22356
+ 21155,
+ 21169
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 16
},
"end": {
- "line": 638,
+ "line": 594,
"column": 30
}
}
@@ -52707,31 +49956,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 22357,
- 22362
+ 21170,
+ 21175
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 31
},
"end": {
- "line": 638,
+ "line": 594,
"column": 36
}
}
},
"range": [
- 22342,
- 22362
+ 21155,
+ 21175
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 16
},
"end": {
- "line": 638,
+ "line": 594,
"column": 36
}
}
@@ -52743,16 +49992,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 22366,
- 22371
+ 21179,
+ 21184
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 40
},
"end": {
- "line": 638,
+ "line": 594,
"column": 45
}
}
@@ -52763,16 +50012,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22372,
- 22376
+ 21185,
+ 21189
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 46
},
"end": {
- "line": 638,
+ "line": 594,
"column": 50
}
}
@@ -52781,91 +50030,91 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 22377,
- 22389
+ 21190,
+ 21202
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 51
},
"end": {
- "line": 638,
+ "line": 594,
"column": 63
}
}
},
"range": [
- 22372,
- 22389
+ 21185,
+ 21202
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 46
},
"end": {
- "line": 638,
+ "line": 594,
"column": 63
}
}
},
"range": [
- 22366,
- 22389
+ 21179,
+ 21202
],
"loc": {
"start": {
- "line": 638,
+ "line": 594,
"column": 40
},
"end": {
- "line": 638,
+ "line": 594,
"column": 63
}
}
},
"range": [
- 22284,
- 22390
+ 21097,
+ 21203
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 34
},
"end": {
- "line": 638,
+ "line": 594,
"column": 64
}
}
},
"range": [
- 22262,
- 22390
+ 21075,
+ 21203
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 12
},
"end": {
- "line": 638,
+ "line": 594,
"column": 64
}
}
},
"range": [
- 22262,
- 22391
+ 21075,
+ 21204
],
"loc": {
"start": {
- "line": 637,
+ "line": 593,
"column": 12
},
"end": {
- "line": 638,
+ "line": 594,
"column": 65
}
}
@@ -52880,16 +50129,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22405,
- 22409
+ 21218,
+ 21222
],
"loc": {
"start": {
- "line": 640,
+ "line": 596,
"column": 12
},
"end": {
- "line": 640,
+ "line": 596,
"column": 16
}
}
@@ -52898,62 +50147,62 @@
"type": "Identifier",
"name": "groupByPage",
"range": [
- 22410,
- 22421
+ 21223,
+ 21234
],
"loc": {
"start": {
- "line": 640,
+ "line": 596,
"column": 17
},
"end": {
- "line": 640,
+ "line": 596,
"column": 28
}
}
},
"range": [
- 22405,
- 22421
+ 21218,
+ 21234
],
"loc": {
"start": {
- "line": 640,
+ "line": 596,
"column": 12
},
"end": {
- "line": 640,
+ "line": 596,
"column": 28
}
}
},
"arguments": [],
"range": [
- 22405,
- 22423
+ 21218,
+ 21236
],
"loc": {
"start": {
- "line": 640,
+ "line": 596,
"column": 12
},
"end": {
- "line": 640,
+ "line": 596,
"column": 30
}
}
},
"range": [
- 22405,
- 22424
+ 21218,
+ 21237
],
"loc": {
"start": {
- "line": 640,
+ "line": 596,
"column": 12
},
"end": {
- "line": 640,
+ "line": 596,
"column": 31
}
}
@@ -52966,16 +50215,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22441,
- 22445
+ 21254,
+ 21258
],
"loc": {
"start": {
- "line": 642,
+ "line": 598,
"column": 15
},
"end": {
- "line": 642,
+ "line": 598,
"column": 19
}
}
@@ -52984,31 +50233,31 @@
"type": "Identifier",
"name": "onAfterChangePage",
"range": [
- 22446,
- 22463
+ 21259,
+ 21276
],
"loc": {
"start": {
- "line": 642,
+ "line": 598,
"column": 20
},
"end": {
- "line": 642,
+ "line": 598,
"column": 37
}
}
},
"range": [
- 22441,
- 22463
+ 21254,
+ 21276
],
"loc": {
"start": {
- "line": 642,
+ "line": 598,
"column": 15
},
"end": {
- "line": 642,
+ "line": 598,
"column": 37
}
}
@@ -53029,16 +50278,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22482,
- 22486
+ 21295,
+ 21299
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 16
},
"end": {
- "line": 643,
+ "line": 599,
"column": 20
}
}
@@ -53047,31 +50296,31 @@
"type": "Identifier",
"name": "onAfterChangePage",
"range": [
- 22487,
- 22504
+ 21300,
+ 21317
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 21
},
"end": {
- "line": 643,
+ "line": 599,
"column": 38
}
}
},
"range": [
- 22482,
- 22504
+ 21295,
+ 21317
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 16
},
"end": {
- "line": 643,
+ "line": 599,
"column": 38
}
}
@@ -53080,31 +50329,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 22505,
- 22509
+ 21318,
+ 21322
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 39
},
"end": {
- "line": 643,
+ "line": 599,
"column": 43
}
}
},
"range": [
- 22482,
- 22509
+ 21295,
+ 21322
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 16
},
"end": {
- "line": 643,
+ "line": 599,
"column": 43
}
}
@@ -53115,16 +50364,16 @@
"value": null,
"raw": "null",
"range": [
- 22510,
- 22514
+ 21323,
+ 21327
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 44
},
"end": {
- "line": 643,
+ "line": 599,
"column": 48
}
}
@@ -53132,16 +50381,16 @@
{
"type": "ThisExpression",
"range": [
- 22516,
- 22520
+ 21329,
+ 21333
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 50
},
"end": {
- "line": 643,
+ "line": 599,
"column": 54
}
}
@@ -53150,127 +50399,307 @@
"type": "Identifier",
"name": "index",
"range": [
- 22522,
- 22527
+ 21335,
+ 21340
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 56
},
"end": {
- "line": 643,
+ "line": 599,
"column": 61
}
}
}
],
"range": [
- 22482,
- 22528
+ 21295,
+ 21341
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 16
},
"end": {
- "line": 643,
+ "line": 599,
"column": 62
}
}
},
"range": [
- 22482,
- 22529
+ 21295,
+ 21342
],
"loc": {
"start": {
- "line": 643,
+ "line": 599,
"column": 16
},
"end": {
- "line": 643,
+ "line": 599,
"column": 63
}
}
}
],
"range": [
- 22464,
- 22543
+ 21277,
+ 21356
],
"loc": {
"start": {
- "line": 642,
+ "line": 598,
"column": 38
},
"end": {
- "line": 644,
+ "line": 600,
"column": 13
}
}
},
"alternate": null,
"range": [
- 22438,
- 22543
+ 21251,
+ 21356
],
"loc": {
"start": {
- "line": 642,
+ "line": 598,
"column": 12
},
"end": {
- "line": 644,
+ "line": 600,
"column": 13
}
}
}
],
"range": [
- 21747,
- 22553
+ 20560,
+ 21366
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 49
},
"end": {
- "line": 645,
+ "line": 601,
"column": 9
}
}
},
"alternate": null,
"range": [
- 21706,
- 22553
+ 20519,
+ 21366
],
"loc": {
"start": {
- "line": 623,
+ "line": 579,
"column": 8
},
"end": {
- "line": 645,
+ "line": 601,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21376,
+ 21380
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 8
+ },
+ "end": {
+ "line": 603,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 21381,
+ 21388
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 13
+ },
+ "end": {
+ "line": 603,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 21376,
+ 21388
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 8
+ },
+ "end": {
+ "line": 603,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 21389,
+ 21393
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 21
+ },
+ "end": {
+ "line": 603,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 21376,
+ 21393
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 8
+ },
+ "end": {
+ "line": 603,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-changing-page",
+ "raw": "'after-changing-page'",
+ "range": [
+ 21394,
+ 21415
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 26
+ },
+ "end": {
+ "line": 603,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 21417,
+ 21419
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 49
+ },
+ "end": {
+ "line": 603,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 21421,
+ 21426
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 53
+ },
+ "end": {
+ "line": 603,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 21376,
+ 21427
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 8
+ },
+ "end": {
+ "line": 603,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 21376,
+ 21428
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 8
+ },
+ "end": {
+ "line": 603,
+ "column": 60
+ }
+ }
}
],
"range": [
- 21429,
- 22559
+ 20178,
+ 21434
],
"loc": {
"start": {
- "line": 613,
- "column": 22
+ "line": 566,
+ "column": 21
},
"end": {
- "line": 646,
+ "line": 604,
"column": 5
}
}
@@ -53278,16 +50707,16 @@
"generator": false,
"expression": false,
"range": [
- 21422,
- 22559
+ 20171,
+ 21434
],
"loc": {
"start": {
- "line": 613,
- "column": 15
+ "line": 566,
+ "column": 14
},
"end": {
- "line": 646,
+ "line": 604,
"column": 5
}
}
@@ -53295,16 +50724,16 @@
"kind": "method",
"computed": false,
"range": [
- 21411,
- 22559
+ 20161,
+ 21434
],
"loc": {
"start": {
- "line": 613,
+ "line": 566,
"column": 4
},
"end": {
- "line": 646,
+ "line": 604,
"column": 5
}
},
@@ -53313,16 +50742,16 @@
"type": "Block",
"value": "*\n * Change the page according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
"range": [
- 21292,
- 21406
+ 20042,
+ 20156
],
"loc": {
"start": {
- "line": 609,
+ "line": 562,
"column": 4
},
"end": {
- "line": 612,
+ "line": 565,
"column": 7
}
}
@@ -53333,16 +50762,16 @@
"type": "Block",
"value": "*\n * Change rows according to page results drop-down\n * TODO: accept a parameter setting the results per page length\n ",
"range": [
- 22565,
- 22699
+ 21440,
+ 21574
],
"loc": {
"start": {
- "line": 648,
+ "line": 606,
"column": 4
},
"end": {
- "line": 651,
+ "line": 609,
"column": 7
}
}
@@ -53354,19 +50783,19 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "_changeResultsPerPage",
+ "name": "changeResultsPerPage",
"range": [
- 22704,
- 22725
+ 21579,
+ 21599
],
"loc": {
"start": {
- "line": 652,
+ "line": 610,
"column": 4
},
"end": {
- "line": 652,
- "column": 25
+ "line": 610,
+ "column": 24
}
}
},
@@ -53386,16 +50815,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22741,
- 22743
+ 21615,
+ 21617
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 12
},
"end": {
- "line": 653,
+ "line": 611,
"column": 14
}
}
@@ -53406,16 +50835,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22746,
- 22750
+ 21620,
+ 21624
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 17
},
"end": {
- "line": 653,
+ "line": 611,
"column": 21
}
}
@@ -53424,46 +50853,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22751,
- 22753
+ 21625,
+ 21627
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 22
},
"end": {
- "line": 653,
+ "line": 611,
"column": 24
}
}
},
"range": [
- 22746,
- 22753
+ 21620,
+ 21627
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 17
},
"end": {
- "line": 653,
+ "line": 611,
"column": 24
}
}
},
"range": [
- 22741,
- 22753
+ 21615,
+ 21627
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 12
},
"end": {
- "line": 653,
+ "line": 611,
"column": 24
}
}
@@ -53471,16 +50900,16 @@
],
"kind": "var",
"range": [
- 22737,
- 22754
+ 21611,
+ 21628
],
"loc": {
"start": {
- "line": 653,
+ "line": 611,
"column": 8
},
"end": {
- "line": 653,
+ "line": 611,
"column": 25
}
}
@@ -53498,16 +50927,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22768,
- 22772
+ 21642,
+ 21646
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 12
},
"end": {
- "line": 655,
+ "line": 613,
"column": 16
}
}
@@ -53516,63 +50945,63 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 22773,
- 22782
+ 21647,
+ 21656
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 17
},
"end": {
- "line": 655,
+ "line": 613,
"column": 26
}
}
},
"range": [
- 22768,
- 22782
+ 21642,
+ 21656
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 12
},
"end": {
- "line": 655,
+ "line": 613,
"column": 26
}
}
},
"arguments": [],
"range": [
- 22768,
- 22784
+ 21642,
+ 21658
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 12
},
"end": {
- "line": 655,
+ "line": 613,
"column": 28
}
}
},
"prefix": true,
"range": [
- 22767,
- 22784
+ 21641,
+ 21658
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 11
},
"end": {
- "line": 655,
+ "line": 613,
"column": 28
}
}
@@ -53584,52 +51013,214 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 22799,
- 22806
+ 21673,
+ 21680
],
"loc": {
"start": {
- "line": 656,
+ "line": 614,
"column": 12
},
"end": {
- "line": 656,
+ "line": 614,
"column": 19
}
}
}
],
"range": [
- 22785,
- 22816
+ 21659,
+ 21690
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 29
},
"end": {
- "line": 657,
+ "line": 615,
"column": 9
}
}
},
"alternate": null,
"range": [
- 22764,
- 22816
+ 21638,
+ 21690
],
"loc": {
"start": {
- "line": 655,
+ "line": 613,
"column": 8
},
"end": {
- "line": 657,
+ "line": 615,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21700,
+ 21704
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 8
+ },
+ "end": {
+ "line": 617,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 21705,
+ 21712
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 13
+ },
+ "end": {
+ "line": 617,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 21700,
+ 21712
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 8
+ },
+ "end": {
+ "line": 617,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 21713,
+ 21717
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 21
+ },
+ "end": {
+ "line": 617,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 21700,
+ 21717
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 8
+ },
+ "end": {
+ "line": 617,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-changing-results-per-page",
+ "raw": "'before-changing-results-per-page'",
+ "range": [
+ 21718,
+ 21752
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 26
+ },
+ "end": {
+ "line": 617,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 21754,
+ 21756
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 62
+ },
+ "end": {
+ "line": 617,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 21700,
+ 21757
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 8
+ },
+ "end": {
+ "line": 617,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 21700,
+ 21758
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 8
+ },
+ "end": {
+ "line": 617,
+ "column": 66
+ }
+ }
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -53639,16 +51230,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 22829,
- 22833
+ 21772,
+ 21776
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 12
},
"end": {
- "line": 658,
+ "line": 619,
"column": 16
}
}
@@ -53659,16 +51250,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22836,
- 22840
+ 21779,
+ 21783
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 19
},
"end": {
- "line": 658,
+ "line": 619,
"column": 23
}
}
@@ -53677,46 +51268,46 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 22841,
- 22858
+ 21784,
+ 21801
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 24
},
"end": {
- "line": 658,
+ "line": 619,
"column": 41
}
}
},
"range": [
- 22836,
- 22858
+ 21779,
+ 21801
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 19
},
"end": {
- "line": 658,
+ "line": 619,
"column": 41
}
}
},
"range": [
- 22829,
- 22858
+ 21772,
+ 21801
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 12
},
"end": {
- "line": 658,
+ "line": 619,
"column": 41
}
}
@@ -53724,16 +51315,16 @@
],
"kind": "var",
"range": [
- 22825,
- 22859
+ 21768,
+ 21802
],
"loc": {
"start": {
- "line": 658,
+ "line": 619,
"column": 8
},
"end": {
- "line": 658,
+ "line": 619,
"column": 42
}
}
@@ -53747,16 +51338,16 @@
"type": "Identifier",
"name": "slcPagesSelIndex",
"range": [
- 22872,
- 22888
+ 21815,
+ 21831
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 12
},
"end": {
- "line": 659,
+ "line": 620,
"column": 28
}
}
@@ -53772,16 +51363,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22892,
- 22896
+ 21835,
+ 21839
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 32
},
"end": {
- "line": 659,
+ "line": 620,
"column": 36
}
}
@@ -53790,31 +51381,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 22897,
- 22913
+ 21840,
+ 21856
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 37
},
"end": {
- "line": 659,
+ "line": 620,
"column": 53
}
}
},
"range": [
- 22892,
- 22913
+ 21835,
+ 21856
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 32
},
"end": {
- "line": 659,
+ "line": 620,
"column": 53
}
}
@@ -53826,16 +51417,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 22916,
- 22918
+ 21859,
+ 21861
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 56
},
"end": {
- "line": 659,
+ "line": 620,
"column": 58
}
}
@@ -53844,46 +51435,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 22919,
- 22929
+ 21862,
+ 21872
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 59
},
"end": {
- "line": 659,
+ "line": 620,
"column": 69
}
}
},
"range": [
- 22916,
- 22929
+ 21859,
+ 21872
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 56
},
"end": {
- "line": 659,
+ "line": 620,
"column": 69
}
}
},
"range": [
- 22892,
- 22929
+ 21835,
+ 21872
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 32
},
"end": {
- "line": 659,
+ "line": 620,
"column": 69
}
}
@@ -53897,16 +51488,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22949,
- 22953
+ 21892,
+ 21896
],
"loc": {
"start": {
- "line": 660,
+ "line": 621,
"column": 16
},
"end": {
- "line": 660,
+ "line": 621,
"column": 20
}
}
@@ -53915,31 +51506,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 22954,
- 22963
+ 21897,
+ 21906
],
"loc": {
"start": {
- "line": 660,
+ "line": 621,
"column": 21
},
"end": {
- "line": 660,
+ "line": 621,
"column": 30
}
}
},
"range": [
- 22949,
- 22963
+ 21892,
+ 21906
],
"loc": {
"start": {
- "line": 660,
+ "line": 621,
"column": 16
},
"end": {
- "line": 660,
+ "line": 621,
"column": 30
}
}
@@ -53948,31 +51539,31 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 22964,
- 22977
+ 21907,
+ 21920
],
"loc": {
"start": {
- "line": 660,
+ "line": 621,
"column": 31
},
"end": {
- "line": 660,
+ "line": 621,
"column": 44
}
}
},
"range": [
- 22949,
- 22977
+ 21892,
+ 21920
],
"loc": {
"start": {
- "line": 660,
+ "line": 621,
"column": 16
},
"end": {
- "line": 660,
+ "line": 621,
"column": 44
}
}
@@ -53983,16 +51574,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 22996,
- 23004
+ 21939,
+ 21947
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 16
},
"end": {
- "line": 661,
+ "line": 622,
"column": 24
}
}
@@ -54010,16 +51601,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23005,
- 23009
+ 21948,
+ 21952
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 25
},
"end": {
- "line": 661,
+ "line": 622,
"column": 29
}
}
@@ -54028,31 +51619,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 23010,
- 23019
+ 21953,
+ 21962
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 30
},
"end": {
- "line": 661,
+ "line": 622,
"column": 39
}
}
},
"range": [
- 23005,
- 23019
+ 21948,
+ 21962
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 25
},
"end": {
- "line": 661,
+ "line": 622,
"column": 39
}
}
@@ -54061,31 +51652,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 23020,
- 23025
+ 21963,
+ 21968
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 40
},
"end": {
- "line": 661,
+ "line": 622,
"column": 45
}
}
},
"range": [
- 23005,
- 23025
+ 21948,
+ 21968
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 25
},
"end": {
- "line": 661,
+ "line": 622,
"column": 45
}
}
@@ -54095,31 +51686,31 @@
"value": 1,
"raw": "1",
"range": [
- 23026,
- 23027
+ 21969,
+ 21970
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 46
},
"end": {
- "line": 661,
+ "line": 622,
"column": 47
}
}
},
"range": [
- 23005,
- 23027
+ 21948,
+ 21970
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 25
},
"end": {
- "line": 661,
+ "line": 622,
"column": 47
}
}
@@ -54129,62 +51720,62 @@
"value": 10,
"raw": "10",
"range": [
- 23029,
- 23031
+ 21972,
+ 21974
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 49
},
"end": {
- "line": 661,
+ "line": 622,
"column": 51
}
}
}
],
"range": [
- 22996,
- 23032
+ 21939,
+ 21975
],
"loc": {
"start": {
- "line": 661,
+ "line": 622,
"column": 16
},
"end": {
- "line": 661,
+ "line": 622,
"column": 52
}
}
},
"range": [
- 22891,
- 23032
+ 21834,
+ 21975
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 31
},
"end": {
- "line": 661,
+ "line": 622,
"column": 52
}
}
},
"range": [
- 22872,
- 23032
+ 21815,
+ 21975
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 12
},
"end": {
- "line": 661,
+ "line": 622,
"column": 52
}
}
@@ -54192,16 +51783,16 @@
],
"kind": "var",
"range": [
- 22868,
- 23033
+ 21811,
+ 21976
],
"loc": {
"start": {
- "line": 659,
+ "line": 620,
"column": 8
},
"end": {
- "line": 661,
+ "line": 622,
"column": 53
}
}
@@ -54217,16 +51808,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23042,
- 23046
+ 21985,
+ 21989
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 8
},
"end": {
- "line": 662,
+ "line": 623,
"column": 12
}
}
@@ -54235,31 +51826,31 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 23047,
- 23059
+ 21990,
+ 22002
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 13
},
"end": {
- "line": 662,
+ "line": 623,
"column": 25
}
}
},
"range": [
- 23042,
- 23059
+ 21985,
+ 22002
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 8
},
"end": {
- "line": 662,
+ "line": 623,
"column": 25
}
}
@@ -54270,16 +51861,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 23062,
- 23070
+ 22005,
+ 22013
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 28
},
"end": {
- "line": 662,
+ "line": 623,
"column": 36
}
}
@@ -54298,16 +51889,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 23071,
- 23075
+ 22014,
+ 22018
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 37
},
"end": {
- "line": 662,
+ "line": 623,
"column": 41
}
}
@@ -54316,31 +51907,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 23076,
- 23083
+ 22019,
+ 22026
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 42
},
"end": {
- "line": 662,
+ "line": 623,
"column": 49
}
}
},
"range": [
- 23071,
- 23083
+ 22014,
+ 22026
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 37
},
"end": {
- "line": 662,
+ "line": 623,
"column": 49
}
}
@@ -54352,16 +51943,16 @@
"type": "Identifier",
"name": "slcR",
"range": [
- 23084,
- 23088
+ 22027,
+ 22031
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 50
},
"end": {
- "line": 662,
+ "line": 623,
"column": 54
}
}
@@ -54370,46 +51961,46 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 23089,
- 23102
+ 22032,
+ 22045
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 55
},
"end": {
- "line": 662,
+ "line": 623,
"column": 68
}
}
},
"range": [
- 23084,
- 23102
+ 22027,
+ 22045
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 50
},
"end": {
- "line": 662,
+ "line": 623,
"column": 68
}
}
},
"range": [
- 23071,
- 23103
+ 22014,
+ 22046
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 37
},
"end": {
- "line": 662,
+ "line": 623,
"column": 69
}
}
@@ -54418,31 +52009,31 @@
"type": "Identifier",
"name": "value",
"range": [
- 23104,
- 23109
+ 22047,
+ 22052
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 70
},
"end": {
- "line": 662,
+ "line": 623,
"column": 75
}
}
},
"range": [
- 23071,
- 23109
+ 22014,
+ 22052
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 37
},
"end": {
- "line": 662,
+ "line": 623,
"column": 75
}
}
@@ -54452,62 +52043,62 @@
"value": 10,
"raw": "10",
"range": [
- 23110,
- 23112
+ 22053,
+ 22055
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 76
},
"end": {
- "line": 662,
+ "line": 623,
"column": 78
}
}
}
],
"range": [
- 23062,
- 23113
+ 22005,
+ 22056
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 28
},
"end": {
- "line": 662,
+ "line": 623,
"column": 79
}
}
},
"range": [
- 23042,
- 23113
+ 21985,
+ 22056
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 8
},
"end": {
- "line": 662,
+ "line": 623,
"column": 79
}
}
},
"range": [
- 23042,
- 23114
+ 21985,
+ 22057
],
"loc": {
"start": {
- "line": 662,
+ "line": 623,
"column": 8
},
"end": {
- "line": 662,
+ "line": 623,
"column": 80
}
}
@@ -54523,16 +52114,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23123,
- 23127
+ 22066,
+ 22070
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 8
},
"end": {
- "line": 663,
+ "line": 624,
"column": 12
}
}
@@ -54541,31 +52132,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 23128,
- 23142
+ 22071,
+ 22085
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 13
},
"end": {
- "line": 663,
+ "line": 624,
"column": 27
}
}
},
"range": [
- 23123,
- 23142
+ 22066,
+ 22085
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 8
},
"end": {
- "line": 663,
+ "line": 624,
"column": 27
}
}
@@ -54579,16 +52170,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23145,
- 23149
+ 22088,
+ 22092
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 30
},
"end": {
- "line": 663,
+ "line": 624,
"column": 34
}
}
@@ -54597,31 +52188,31 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 23150,
- 23162
+ 22093,
+ 22105
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 35
},
"end": {
- "line": 663,
+ "line": 624,
"column": 47
}
}
},
"range": [
- 23145,
- 23162
+ 22088,
+ 22105
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 30
},
"end": {
- "line": 663,
+ "line": 624,
"column": 47
}
}
@@ -54630,61 +52221,61 @@
"type": "Identifier",
"name": "slcPagesSelIndex",
"range": [
- 23163,
- 23179
+ 22106,
+ 22122
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 48
},
"end": {
- "line": 663,
+ "line": 624,
"column": 64
}
}
},
"range": [
- 23145,
- 23179
+ 22088,
+ 22122
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 30
},
"end": {
- "line": 663,
+ "line": 624,
"column": 64
}
}
},
"range": [
- 23123,
- 23179
+ 22066,
+ 22122
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 8
},
"end": {
- "line": 663,
+ "line": 624,
"column": 64
}
}
},
"range": [
- 23123,
- 23180
+ 22066,
+ 22123
],
"loc": {
"start": {
- "line": 663,
+ "line": 624,
"column": 8
},
"end": {
- "line": 663,
+ "line": 624,
"column": 65
}
}
@@ -54700,16 +52291,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 23194,
- 23199
+ 22137,
+ 22142
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 12
},
"end": {
- "line": 665,
+ "line": 626,
"column": 17
}
}
@@ -54721,16 +52312,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23200,
- 23204
+ 22143,
+ 22147
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 18
},
"end": {
- "line": 665,
+ "line": 626,
"column": 22
}
}
@@ -54739,63 +52330,63 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 23205,
- 23217
+ 22148,
+ 22160
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 23
},
"end": {
- "line": 665,
+ "line": 626,
"column": 35
}
}
},
"range": [
- 23200,
- 23217
+ 22143,
+ 22160
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 18
},
"end": {
- "line": 665,
+ "line": 626,
"column": 35
}
}
}
],
"range": [
- 23194,
- 23218
+ 22137,
+ 22161
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 12
},
"end": {
- "line": 665,
+ "line": 626,
"column": 36
}
}
},
"prefix": true,
"range": [
- 23193,
- 23218
+ 22136,
+ 22161
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 11
},
"end": {
- "line": 665,
+ "line": 626,
"column": 36
}
}
@@ -54814,16 +52405,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23236,
- 23240
+ 22179,
+ 22183
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 15
},
"end": {
- "line": 666,
+ "line": 627,
"column": 19
}
}
@@ -54832,31 +52423,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 23241,
- 23255
+ 22184,
+ 22198
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 20
},
"end": {
- "line": 666,
+ "line": 627,
"column": 34
}
}
},
"range": [
- 23236,
- 23255
+ 22179,
+ 22198
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 15
},
"end": {
- "line": 666,
+ "line": 627,
"column": 34
}
}
@@ -54868,16 +52459,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23259,
- 23261
+ 22202,
+ 22204
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 38
},
"end": {
- "line": 666,
+ "line": 627,
"column": 40
}
}
@@ -54886,46 +52477,46 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 23262,
- 23278
+ 22205,
+ 22221
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 41
},
"end": {
- "line": 666,
+ "line": 627,
"column": 57
}
}
},
"range": [
- 23259,
- 23278
+ 22202,
+ 22221
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 38
},
"end": {
- "line": 666,
+ "line": 627,
"column": 57
}
}
},
"range": [
- 23236,
- 23278
+ 22179,
+ 22221
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 15
},
"end": {
- "line": 666,
+ "line": 627,
"column": 57
}
}
@@ -54944,16 +52535,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23297,
- 23301
+ 22240,
+ 22244
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 16
},
"end": {
- "line": 667,
+ "line": 628,
"column": 20
}
}
@@ -54962,31 +52553,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 23302,
- 23316
+ 22245,
+ 22259
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 21
},
"end": {
- "line": 667,
+ "line": 628,
"column": 35
}
}
},
"range": [
- 23297,
- 23316
+ 22240,
+ 22259
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 16
},
"end": {
- "line": 667,
+ "line": 628,
"column": 35
}
}
@@ -55001,16 +52592,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23320,
- 23322
+ 22263,
+ 22265
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 39
},
"end": {
- "line": 667,
+ "line": 628,
"column": 41
}
}
@@ -55019,31 +52610,31 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 23323,
- 23339
+ 22266,
+ 22282
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 42
},
"end": {
- "line": 667,
+ "line": 628,
"column": 58
}
}
},
"range": [
- 23320,
- 23339
+ 22263,
+ 22282
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 39
},
"end": {
- "line": 667,
+ "line": 628,
"column": 58
}
}
@@ -55054,16 +52645,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23340,
- 23344
+ 22283,
+ 22287
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 59
},
"end": {
- "line": 667,
+ "line": 628,
"column": 63
}
}
@@ -55072,108 +52663,108 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 23345,
- 23357
+ 22288,
+ 22300
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 64
},
"end": {
- "line": 667,
+ "line": 628,
"column": 76
}
}
},
"range": [
- 23340,
- 23357
+ 22283,
+ 22300
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 59
},
"end": {
- "line": 667,
+ "line": 628,
"column": 76
}
}
},
"range": [
- 23320,
- 23357
+ 22263,
+ 22300
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 39
},
"end": {
- "line": 667,
+ "line": 628,
"column": 76
}
}
},
"range": [
- 23297,
- 23358
+ 22240,
+ 22301
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 16
},
"end": {
- "line": 667,
+ "line": 628,
"column": 77
}
}
},
"range": [
- 23297,
- 23359
+ 22240,
+ 22302
],
"loc": {
"start": {
- "line": 667,
+ "line": 628,
"column": 16
},
"end": {
- "line": 667,
+ "line": 628,
"column": 78
}
}
}
],
"range": [
- 23279,
- 23373
+ 22222,
+ 22316
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 58
},
"end": {
- "line": 668,
+ "line": 629,
"column": 13
}
}
},
"alternate": null,
"range": [
- 23233,
- 23373
+ 22176,
+ 22316
],
"loc": {
"start": {
- "line": 666,
+ "line": 627,
"column": 12
},
"end": {
- "line": 668,
+ "line": 629,
"column": 13
}
}
@@ -55188,16 +52779,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23386,
- 23390
+ 22329,
+ 22333
],
"loc": {
"start": {
- "line": 669,
+ "line": 630,
"column": 12
},
"end": {
- "line": 669,
+ "line": 630,
"column": 16
}
}
@@ -55206,62 +52797,62 @@
"type": "Identifier",
"name": "setPagingInfo",
"range": [
- 23391,
- 23404
+ 22334,
+ 22347
],
"loc": {
"start": {
- "line": 669,
+ "line": 630,
"column": 17
},
"end": {
- "line": 669,
+ "line": 630,
"column": 30
}
}
},
"range": [
- 23386,
- 23404
+ 22329,
+ 22347
],
"loc": {
"start": {
- "line": 669,
+ "line": 630,
"column": 12
},
"end": {
- "line": 669,
+ "line": 630,
"column": 30
}
}
},
"arguments": [],
"range": [
- 23386,
- 23406
+ 22329,
+ 22349
],
"loc": {
"start": {
- "line": 669,
+ "line": 630,
"column": 12
},
"end": {
- "line": 669,
+ "line": 630,
"column": 32
}
}
},
"range": [
- 23386,
- 23407
+ 22329,
+ 22350
],
"loc": {
"start": {
- "line": 669,
+ "line": 630,
"column": 12
},
"end": {
- "line": 669,
+ "line": 630,
"column": 33
}
}
@@ -55277,16 +52868,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23424,
- 23428
+ 22367,
+ 22371
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 15
},
"end": {
- "line": 671,
+ "line": 632,
"column": 19
}
}
@@ -55295,31 +52886,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 23429,
- 23445
+ 22372,
+ 22388
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 20
},
"end": {
- "line": 671,
+ "line": 632,
"column": 36
}
}
},
"range": [
- 23424,
- 23445
+ 22367,
+ 22388
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 15
},
"end": {
- "line": 671,
+ "line": 632,
"column": 36
}
}
@@ -55331,16 +52922,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23448,
- 23450
+ 22391,
+ 22393
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 39
},
"end": {
- "line": 671,
+ "line": 632,
"column": 41
}
}
@@ -55349,46 +52940,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 23451,
- 23461
+ 22394,
+ 22404
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 42
},
"end": {
- "line": 671,
+ "line": 632,
"column": 52
}
}
},
"range": [
- 23448,
- 23461
+ 22391,
+ 22404
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 39
},
"end": {
- "line": 671,
+ "line": 632,
"column": 52
}
}
},
"range": [
- 23424,
- 23461
+ 22367,
+ 22404
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 15
},
"end": {
- "line": 671,
+ "line": 632,
"column": 52
}
}
@@ -55405,16 +52996,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 23484,
- 23492
+ 22427,
+ 22435
],
"loc": {
"start": {
- "line": 672,
+ "line": 633,
"column": 20
},
"end": {
- "line": 672,
+ "line": 633,
"column": 28
}
}
@@ -55439,16 +53030,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23516,
- 23520
+ 22459,
+ 22463
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 25
}
}
@@ -55457,31 +53048,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 23521,
- 23530
+ 22464,
+ 22473
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 26
},
"end": {
- "line": 673,
+ "line": 634,
"column": 35
}
}
},
"range": [
- 23516,
- 23530
+ 22459,
+ 22473
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 35
}
}
@@ -55490,31 +53081,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 23531,
- 23538
+ 22474,
+ 22481
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 36
},
"end": {
- "line": 673,
+ "line": 634,
"column": 43
}
}
},
"range": [
- 23516,
- 23538
+ 22459,
+ 22481
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 43
}
}
@@ -55523,31 +53114,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 23539,
- 23545
+ 22482,
+ 22488
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 44
},
"end": {
- "line": 673,
+ "line": 634,
"column": 50
}
}
},
"range": [
- 23516,
- 23545
+ 22459,
+ 22488
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 50
}
}
@@ -55557,31 +53148,31 @@
"value": 1,
"raw": "1",
"range": [
- 23546,
- 23547
+ 22489,
+ 22490
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 51
},
"end": {
- "line": 673,
+ "line": 634,
"column": 52
}
}
},
"range": [
- 23516,
- 23547
+ 22459,
+ 22490
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 52
}
}
@@ -55590,31 +53181,31 @@
"type": "Identifier",
"name": "slcPagesSelIndex",
"range": [
- 23549,
- 23565
+ 22492,
+ 22508
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 54
},
"end": {
- "line": 673,
+ "line": 634,
"column": 70
}
}
},
"range": [
- 23516,
- 23565
+ 22459,
+ 22508
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 21
},
"end": {
- "line": 673,
+ "line": 634,
"column": 70
}
}
@@ -55634,16 +53225,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23591,
- 23595
+ 22534,
+ 22538
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 21
},
"end": {
- "line": 674,
+ "line": 635,
"column": 25
}
}
@@ -55652,31 +53243,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 23596,
- 23605
+ 22539,
+ 22548
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 26
},
"end": {
- "line": 674,
+ "line": 635,
"column": 35
}
}
},
"range": [
- 23591,
- 23605
+ 22534,
+ 22548
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 21
},
"end": {
- "line": 674,
+ "line": 635,
"column": 35
}
}
@@ -55685,31 +53276,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 23606,
- 23613
+ 22549,
+ 22556
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 36
},
"end": {
- "line": 674,
+ "line": 635,
"column": 43
}
}
},
"range": [
- 23591,
- 23613
+ 22534,
+ 22556
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 21
},
"end": {
- "line": 674,
+ "line": 635,
"column": 43
}
}
@@ -55718,31 +53309,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 23614,
- 23620
+ 22557,
+ 22563
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 44
},
"end": {
- "line": 674,
+ "line": 635,
"column": 50
}
}
},
"range": [
- 23591,
- 23620
+ 22534,
+ 22563
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 21
},
"end": {
- "line": 674,
+ "line": 635,
"column": 50
}
}
@@ -55752,31 +53343,31 @@
"value": 1,
"raw": "1",
"range": [
- 23621,
- 23622
+ 22564,
+ 22565
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 51
},
"end": {
- "line": 674,
+ "line": 635,
"column": 52
}
}
},
"range": [
- 23591,
- 23622
+ 22534,
+ 22565
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 21
},
"end": {
- "line": 674,
+ "line": 635,
"column": 52
}
}
@@ -55785,46 +53376,46 @@
"type": "Identifier",
"name": "slcPagesSelIndex",
"range": [
- 23626,
- 23642
+ 22569,
+ 22585
],
"loc": {
"start": {
- "line": 674,
+ "line": 635,
"column": 56
},
"end": {
- "line": 674,
+ "line": 635,
"column": 72
}
}
},
"range": [
- 23515,
- 23642
+ 22458,
+ 22585
],
"loc": {
"start": {
- "line": 673,
+ "line": 634,
"column": 20
},
"end": {
- "line": 674,
+ "line": 635,
"column": 72
}
}
},
"range": [
- 23484,
- 23642
+ 22427,
+ 22585
],
"loc": {
"start": {
- "line": 672,
+ "line": 633,
"column": 20
},
"end": {
- "line": 674,
+ "line": 635,
"column": 72
}
}
@@ -55832,16 +53423,16 @@
],
"kind": "var",
"range": [
- 23480,
- 23643
+ 22423,
+ 22586
],
"loc": {
"start": {
- "line": 672,
+ "line": 633,
"column": 16
},
"end": {
- "line": 674,
+ "line": 635,
"column": 73
}
}
@@ -55866,16 +53457,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23660,
- 23664
+ 22603,
+ 22607
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 20
}
}
@@ -55884,31 +53475,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 23665,
- 23674
+ 22608,
+ 22617
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 21
},
"end": {
- "line": 675,
+ "line": 636,
"column": 30
}
}
},
"range": [
- 23660,
- 23674
+ 22603,
+ 22617
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 30
}
}
@@ -55917,31 +53508,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 23675,
- 23682
+ 22618,
+ 22625
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 31
},
"end": {
- "line": 675,
+ "line": 636,
"column": 38
}
}
},
"range": [
- 23660,
- 23682
+ 22603,
+ 22625
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 38
}
}
@@ -55950,31 +53541,31 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 23683,
- 23691
+ 22626,
+ 22634
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 39
},
"end": {
- "line": 675,
+ "line": 636,
"column": 47
}
}
},
"range": [
- 23660,
- 23692
+ 22603,
+ 22635
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 48
}
}
@@ -55983,31 +53574,31 @@
"type": "Identifier",
"name": "selected",
"range": [
- 23693,
- 23701
+ 22636,
+ 22644
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 49
},
"end": {
- "line": 675,
+ "line": 636,
"column": 57
}
}
},
"range": [
- 23660,
- 23701
+ 22603,
+ 22644
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 57
}
}
@@ -56017,78 +53608,78 @@
"value": true,
"raw": "true",
"range": [
- 23704,
- 23708
+ 22647,
+ 22651
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 60
},
"end": {
- "line": 675,
+ "line": 636,
"column": 64
}
}
},
"range": [
- 23660,
- 23708
+ 22603,
+ 22651
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 64
}
}
},
"range": [
- 23660,
- 23709
+ 22603,
+ 22652
],
"loc": {
"start": {
- "line": 675,
+ "line": 636,
"column": 16
},
"end": {
- "line": 675,
+ "line": 636,
"column": 65
}
}
}
],
"range": [
- 23462,
- 23723
+ 22405,
+ 22666
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 53
},
"end": {
- "line": 676,
+ "line": 637,
"column": 13
}
}
},
"alternate": null,
"range": [
- 23421,
- 23723
+ 22364,
+ 22666
],
"loc": {
"start": {
- "line": 671,
+ "line": 632,
"column": 12
},
"end": {
- "line": 676,
+ "line": 637,
"column": 13
}
}
@@ -56102,16 +53693,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23739,
- 23741
+ 22682,
+ 22684
],
"loc": {
"start": {
- "line": 677,
+ "line": 638,
"column": 15
},
"end": {
- "line": 677,
+ "line": 638,
"column": 17
}
}
@@ -56120,31 +53711,31 @@
"type": "Identifier",
"name": "rememberPageLen",
"range": [
- 23742,
- 23757
+ 22685,
+ 22700
],
"loc": {
"start": {
- "line": 677,
+ "line": 638,
"column": 18
},
"end": {
- "line": 677,
+ "line": 638,
"column": 33
}
}
},
"range": [
- 23739,
- 23757
+ 22682,
+ 22700
],
"loc": {
"start": {
- "line": 677,
+ "line": 638,
"column": 15
},
"end": {
- "line": 677,
+ "line": 638,
"column": 33
}
}
@@ -56168,16 +53759,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23776,
- 23778
+ 22719,
+ 22721
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 18
}
}
@@ -56186,31 +53777,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 23779,
- 23786
+ 22722,
+ 22729
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 19
},
"end": {
- "line": 678,
+ "line": 639,
"column": 26
}
}
},
"range": [
- 23776,
- 23786
+ 22719,
+ 22729
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 26
}
}
@@ -56221,32 +53812,32 @@
"value": "store",
"raw": "'store'",
"range": [
- 23787,
- 23794
+ 22730,
+ 22737
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 27
},
"end": {
- "line": 678,
+ "line": 639,
"column": 34
}
}
}
],
"range": [
- 23776,
- 23795
+ 22719,
+ 22738
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 35
}
}
@@ -56255,31 +53846,31 @@
"type": "Identifier",
"name": "savePageLength",
"range": [
- 23796,
- 23810
+ 22739,
+ 22753
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 36
},
"end": {
- "line": 678,
+ "line": 639,
"column": 50
}
}
},
"range": [
- 23776,
- 23810
+ 22719,
+ 22753
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 50
}
}
@@ -56292,16 +53883,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23811,
- 23813
+ 22754,
+ 22756
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 51
},
"end": {
- "line": 678,
+ "line": 639,
"column": 53
}
}
@@ -56310,142 +53901,304 @@
"type": "Identifier",
"name": "pgLenCookie",
"range": [
- 23814,
- 23825
+ 22757,
+ 22768
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 54
},
"end": {
- "line": 678,
+ "line": 639,
"column": 65
}
}
},
"range": [
- 23811,
- 23825
+ 22754,
+ 22768
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 51
},
"end": {
- "line": 678,
+ "line": 639,
"column": 65
}
}
}
],
"range": [
- 23776,
- 23826
+ 22719,
+ 22769
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 66
}
}
},
"range": [
- 23776,
- 23827
+ 22719,
+ 22770
],
"loc": {
"start": {
- "line": 678,
+ "line": 639,
"column": 16
},
"end": {
- "line": 678,
+ "line": 639,
"column": 67
}
}
}
],
"range": [
- 23758,
- 23841
+ 22701,
+ 22784
],
"loc": {
"start": {
- "line": 677,
+ "line": 638,
"column": 34
},
"end": {
- "line": 679,
+ "line": 640,
"column": 13
}
}
},
"alternate": null,
"range": [
- 23736,
- 23841
+ 22679,
+ 22784
],
"loc": {
"start": {
- "line": 677,
+ "line": 638,
"column": 12
},
"end": {
- "line": 679,
+ "line": 640,
"column": 13
}
}
}
],
"range": [
- 23219,
- 23851
+ 22162,
+ 22794
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 37
},
"end": {
- "line": 680,
+ "line": 641,
"column": 9
}
}
},
"alternate": null,
"range": [
- 23190,
- 23851
+ 22133,
+ 22794
],
"loc": {
"start": {
- "line": 665,
+ "line": 626,
"column": 8
},
"end": {
- "line": 680,
+ "line": 641,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22804,
+ 22808
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 8
+ },
+ "end": {
+ "line": 643,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 22809,
+ 22816
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 13
+ },
+ "end": {
+ "line": 643,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 22804,
+ 22816
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 8
+ },
+ "end": {
+ "line": 643,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 22817,
+ 22821
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 21
+ },
+ "end": {
+ "line": 643,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 22804,
+ 22821
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 8
+ },
+ "end": {
+ "line": 643,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-changing-results-per-page",
+ "raw": "'after-changing-results-per-page'",
+ "range": [
+ 22822,
+ 22855
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 26
+ },
+ "end": {
+ "line": 643,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 22857,
+ 22859
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 61
+ },
+ "end": {
+ "line": 643,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 22804,
+ 22860
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 8
+ },
+ "end": {
+ "line": 643,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 22804,
+ 22861
+ ],
+ "loc": {
+ "start": {
+ "line": 643,
+ "column": 8
+ },
+ "end": {
+ "line": 643,
+ "column": 65
+ }
+ }
}
],
"range": [
- 22727,
- 23857
+ 21601,
+ 22867
],
"loc": {
"start": {
- "line": 652,
- "column": 27
+ "line": 610,
+ "column": 26
},
"end": {
- "line": 681,
+ "line": 644,
"column": 5
}
}
@@ -56453,16 +54206,16 @@
"generator": false,
"expression": false,
"range": [
- 22725,
- 23857
+ 21599,
+ 22867
],
"loc": {
"start": {
- "line": 652,
- "column": 25
+ "line": 610,
+ "column": 24
},
"end": {
- "line": 681,
+ "line": 644,
"column": 5
}
}
@@ -56470,16 +54223,16 @@
"kind": "method",
"computed": false,
"range": [
- 22704,
- 23857
+ 21579,
+ 22867
],
"loc": {
"start": {
- "line": 652,
+ "line": 610,
"column": 4
},
"end": {
- "line": 681,
+ "line": 644,
"column": 5
}
},
@@ -56488,16 +54241,16 @@
"type": "Block",
"value": "*\n * Change rows according to page results drop-down\n * TODO: accept a parameter setting the results per page length\n ",
"range": [
- 22565,
- 22699
+ 21440,
+ 21574
],
"loc": {
"start": {
- "line": 648,
+ "line": 606,
"column": 4
},
"end": {
- "line": 651,
+ "line": 609,
"column": 7
}
}
@@ -56506,18 +54259,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Re-set page nb at page re-load\n ",
+ "value": "*\n * Re-set persisted pagination info\n ",
"range": [
- 23863,
- 23912
+ 22873,
+ 22924
],
"loc": {
"start": {
- "line": 683,
+ "line": 646,
"column": 4
},
"end": {
- "line": 685,
+ "line": 648,
"column": 7
}
}
@@ -56529,19 +54282,713 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "_resetPage",
+ "name": "resetValues",
"range": [
- 23917,
- 23927
+ 22929,
+ 22940
],
"loc": {
"start": {
- "line": 686,
+ "line": 649,
"column": 4
},
"end": {
- "line": 686,
- "column": 14
+ "line": 649,
+ "column": 15
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 22956,
+ 22958
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 12
+ },
+ "end": {
+ "line": 650,
+ "column": 14
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22961,
+ 22965
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 17
+ },
+ "end": {
+ "line": 650,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 22966,
+ 22968
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 22
+ },
+ "end": {
+ "line": 650,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 22961,
+ 22968
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 17
+ },
+ "end": {
+ "line": 650,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 22956,
+ 22968
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 12
+ },
+ "end": {
+ "line": 650,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "kind": "var",
+ "range": [
+ 22952,
+ 22969
+ ],
+ "loc": {
+ "start": {
+ "line": 650,
+ "column": 8
+ },
+ "end": {
+ "line": 650,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 22981,
+ 22983
+ ],
+ "loc": {
+ "start": {
+ "line": 651,
+ "column": 11
+ },
+ "end": {
+ "line": 651,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageLen",
+ "range": [
+ 22984,
+ 22999
+ ],
+ "loc": {
+ "start": {
+ "line": 651,
+ "column": 14
+ },
+ "end": {
+ "line": 651,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 22981,
+ 22999
+ ],
+ "loc": {
+ "start": {
+ "line": 651,
+ "column": 11
+ },
+ "end": {
+ "line": 651,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23014,
+ 23018
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 12
+ },
+ "end": {
+ "line": 652,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetPageLength",
+ "range": [
+ 23019,
+ 23034
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 17
+ },
+ "end": {
+ "line": 652,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 23014,
+ 23034
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 12
+ },
+ "end": {
+ "line": 652,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23035,
+ 23037
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 33
+ },
+ "end": {
+ "line": 652,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgLenCookie",
+ "range": [
+ 23038,
+ 23049
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 36
+ },
+ "end": {
+ "line": 652,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 23035,
+ 23049
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 33
+ },
+ "end": {
+ "line": 652,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 23014,
+ 23050
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 12
+ },
+ "end": {
+ "line": 652,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 23014,
+ 23051
+ ],
+ "loc": {
+ "start": {
+ "line": 652,
+ "column": 12
+ },
+ "end": {
+ "line": 652,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 23000,
+ 23061
+ ],
+ "loc": {
+ "start": {
+ "line": 651,
+ "column": 30
+ },
+ "end": {
+ "line": 653,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22978,
+ 23061
+ ],
+ "loc": {
+ "start": {
+ "line": 651,
+ "column": 8
+ },
+ "end": {
+ "line": 653,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23073,
+ 23075
+ ],
+ "loc": {
+ "start": {
+ "line": 654,
+ "column": 11
+ },
+ "end": {
+ "line": 654,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageNb",
+ "range": [
+ 23076,
+ 23090
+ ],
+ "loc": {
+ "start": {
+ "line": 654,
+ "column": 14
+ },
+ "end": {
+ "line": 654,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 23073,
+ 23090
+ ],
+ "loc": {
+ "start": {
+ "line": 654,
+ "column": 11
+ },
+ "end": {
+ "line": 654,
+ "column": 28
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23105,
+ 23109
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 12
+ },
+ "end": {
+ "line": 655,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetPage",
+ "range": [
+ 23110,
+ 23119
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 17
+ },
+ "end": {
+ "line": 655,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 23105,
+ 23119
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 12
+ },
+ "end": {
+ "line": 655,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23120,
+ 23122
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 27
+ },
+ "end": {
+ "line": 655,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgNbCookie",
+ "range": [
+ 23123,
+ 23133
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 30
+ },
+ "end": {
+ "line": 655,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 23120,
+ 23133
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 27
+ },
+ "end": {
+ "line": 655,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 23105,
+ 23134
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 12
+ },
+ "end": {
+ "line": 655,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 23105,
+ 23135
+ ],
+ "loc": {
+ "start": {
+ "line": 655,
+ "column": 12
+ },
+ "end": {
+ "line": 655,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 23091,
+ 23145
+ ],
+ "loc": {
+ "start": {
+ "line": 654,
+ "column": 29
+ },
+ "end": {
+ "line": 656,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23070,
+ 23145
+ ],
+ "loc": {
+ "start": {
+ "line": 654,
+ "column": 8
+ },
+ "end": {
+ "line": 656,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 22942,
+ 23151
+ ],
+ "loc": {
+ "start": {
+ "line": 649,
+ "column": 17
+ },
+ "end": {
+ "line": 657,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 22940,
+ 23151
+ ],
+ "loc": {
+ "start": {
+ "line": 649,
+ "column": 15
+ },
+ "end": {
+ "line": 657,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 22929,
+ 23151
+ ],
+ "loc": {
+ "start": {
+ "line": 649,
+ "column": 4
+ },
+ "end": {
+ "line": 657,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Re-set persisted pagination info\n ",
+ "range": [
+ 22873,
+ 22924
+ ],
+ "loc": {
+ "start": {
+ "line": 646,
+ "column": 4
+ },
+ "end": {
+ "line": 648,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Re-set page nb at page re-load\n ",
+ "range": [
+ 23157,
+ 23206
+ ],
+ "loc": {
+ "start": {
+ "line": 659,
+ "column": 4
+ },
+ "end": {
+ "line": 661,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "resetPage",
+ "range": [
+ 23211,
+ 23220
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 4
+ },
+ "end": {
+ "line": 662,
+ "column": 13
}
}
},
@@ -56553,17 +55000,17 @@
"type": "Identifier",
"name": "name",
"range": [
- 23928,
- 23932
+ 23221,
+ 23225
],
"loc": {
"start": {
- "line": 686,
- "column": 15
+ "line": 662,
+ "column": 14
},
"end": {
- "line": 686,
- "column": 19
+ "line": 662,
+ "column": 18
}
}
}
@@ -56580,16 +55027,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23947,
- 23949
+ 23240,
+ 23242
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 12
},
"end": {
- "line": 687,
+ "line": 663,
"column": 14
}
}
@@ -56600,16 +55047,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 23952,
- 23956
+ 23245,
+ 23249
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 17
},
"end": {
- "line": 687,
+ "line": 663,
"column": 21
}
}
@@ -56618,46 +55065,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23957,
- 23959
+ 23250,
+ 23252
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 22
},
"end": {
- "line": 687,
+ "line": 663,
"column": 24
}
}
},
"range": [
- 23952,
- 23959
+ 23245,
+ 23252
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 17
},
"end": {
- "line": 687,
+ "line": 663,
"column": 24
}
}
},
"range": [
- 23947,
- 23959
+ 23240,
+ 23252
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 12
},
"end": {
- "line": 687,
+ "line": 663,
"column": 24
}
}
@@ -56665,20 +55112,327 @@
],
"kind": "var",
"range": [
- 23943,
- 23960
+ 23236,
+ 23253
],
"loc": {
"start": {
- "line": 687,
+ "line": 663,
"column": 8
},
"end": {
- "line": 687,
+ "line": 663,
"column": 25
}
}
},
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23266,
+ 23270
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 12
+ },
+ "end": {
+ "line": 664,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isEnabled",
+ "range": [
+ 23271,
+ 23280
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 17
+ },
+ "end": {
+ "line": 664,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 23266,
+ 23280
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 12
+ },
+ "end": {
+ "line": 664,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 23266,
+ 23282
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 12
+ },
+ "end": {
+ "line": 664,
+ "column": 28
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 23265,
+ 23282
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 11
+ },
+ "end": {
+ "line": 664,
+ "column": 28
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 23297,
+ 23304
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 12
+ },
+ "end": {
+ "line": 665,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 23283,
+ 23314
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 29
+ },
+ "end": {
+ "line": 666,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23262,
+ 23314
+ ],
+ "loc": {
+ "start": {
+ "line": 664,
+ "column": 8
+ },
+ "end": {
+ "line": 666,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23323,
+ 23327
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 23328,
+ 23335
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 13
+ },
+ "end": {
+ "line": 667,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 23323,
+ 23335
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 23336,
+ 23340
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 21
+ },
+ "end": {
+ "line": 667,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23323,
+ 23340
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page",
+ "raw": "'before-reset-page'",
+ "range": [
+ 23341,
+ 23360
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 26
+ },
+ "end": {
+ "line": 667,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23362,
+ 23364
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 47
+ },
+ "end": {
+ "line": 667,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 23323,
+ 23365
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 23323,
+ 23366
+ ],
+ "loc": {
+ "start": {
+ "line": 667,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 51
+ }
+ }
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -56688,16 +55442,16 @@
"type": "Identifier",
"name": "pgnb",
"range": [
- 23973,
- 23977
+ 23379,
+ 23383
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 12
},
"end": {
- "line": 688,
+ "line": 668,
"column": 16
}
}
@@ -56716,16 +55470,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 23980,
- 23982
+ 23386,
+ 23388
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 19
},
"end": {
- "line": 688,
+ "line": 668,
"column": 21
}
}
@@ -56734,31 +55488,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 23983,
- 23990
+ 23389,
+ 23396
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 22
},
"end": {
- "line": 688,
+ "line": 668,
"column": 29
}
}
},
"range": [
- 23980,
- 23990
+ 23386,
+ 23396
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 19
},
"end": {
- "line": 688,
+ "line": 668,
"column": 29
}
}
@@ -56769,32 +55523,32 @@
"value": "store",
"raw": "'store'",
"range": [
- 23991,
- 23998
+ 23397,
+ 23404
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 30
},
"end": {
- "line": 688,
+ "line": 668,
"column": 37
}
}
}
],
"range": [
- 23980,
- 23999
+ 23386,
+ 23405
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 19
},
"end": {
- "line": 688,
+ "line": 668,
"column": 38
}
}
@@ -56803,31 +55557,31 @@
"type": "Identifier",
"name": "getPageNb",
"range": [
- 24000,
- 24009
+ 23406,
+ 23415
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 39
},
"end": {
- "line": 688,
+ "line": 668,
"column": 48
}
}
},
"range": [
- 23980,
- 24009
+ 23386,
+ 23415
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 19
},
"end": {
- "line": 688,
+ "line": 668,
"column": 48
}
}
@@ -56837,47 +55591,47 @@
"type": "Identifier",
"name": "name",
"range": [
- 24010,
- 24014
+ 23416,
+ 23420
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 49
},
"end": {
- "line": 688,
+ "line": 668,
"column": 53
}
}
}
],
"range": [
- 23980,
- 24015
+ 23386,
+ 23421
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 19
},
"end": {
- "line": 688,
+ "line": 668,
"column": 54
}
}
},
"range": [
- 23973,
- 24015
+ 23379,
+ 23421
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 12
},
"end": {
- "line": 688,
+ "line": 668,
"column": 54
}
}
@@ -56885,16 +55639,16 @@
],
"kind": "var",
"range": [
- 23969,
- 24016
+ 23375,
+ 23422
],
"loc": {
"start": {
- "line": 688,
+ "line": 668,
"column": 8
},
"end": {
- "line": 688,
+ "line": 668,
"column": 55
}
}
@@ -56908,16 +55662,16 @@
"type": "Identifier",
"name": "pgnb",
"range": [
- 24028,
- 24032
+ 23434,
+ 23438
],
"loc": {
"start": {
- "line": 689,
+ "line": 669,
"column": 11
},
"end": {
- "line": 689,
+ "line": 669,
"column": 15
}
}
@@ -56927,32 +55681,32 @@
"value": "",
"raw": "''",
"range": [
- 24035,
- 24037
+ 23443,
+ 23445
],
"loc": {
"start": {
- "line": 689,
- "column": 18
+ "line": 669,
+ "column": 20
},
"end": {
- "line": 689,
- "column": 20
+ "line": 669,
+ "column": 22
}
}
},
"range": [
- 24028,
- 24037
+ 23434,
+ 23445
],
"loc": {
"start": {
- "line": 689,
+ "line": 669,
"column": 11
},
"end": {
- "line": 689,
- "column": 20
+ "line": 669,
+ "column": 22
}
}
},
@@ -56969,16 +55723,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24052,
- 24056
+ 23460,
+ 23464
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 12
},
"end": {
- "line": 690,
+ "line": 670,
"column": 16
}
}
@@ -56987,31 +55741,31 @@
"type": "Identifier",
"name": "changePage",
"range": [
- 24057,
- 24067
+ 23465,
+ 23475
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 17
},
"end": {
- "line": 690,
+ "line": 670,
"column": 27
}
}
},
"range": [
- 24052,
- 24067
+ 23460,
+ 23475
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 12
},
"end": {
- "line": 690,
+ "line": 670,
"column": 27
}
}
@@ -57024,16 +55778,16 @@
"type": "Identifier",
"name": "pgnb",
"range": [
- 24069,
- 24073
+ 23477,
+ 23481
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 29
},
"end": {
- "line": 690,
+ "line": 670,
"column": 33
}
}
@@ -57043,110 +55797,290 @@
"value": 1,
"raw": "1",
"range": [
- 24074,
- 24075
+ 23482,
+ 23483
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 34
},
"end": {
- "line": 690,
+ "line": 670,
"column": 35
}
}
},
"range": [
- 24069,
- 24075
+ 23477,
+ 23483
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 29
},
"end": {
- "line": 690,
+ "line": 670,
"column": 35
}
}
}
],
"range": [
- 24052,
- 24077
+ 23460,
+ 23485
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 12
},
"end": {
- "line": 690,
+ "line": 670,
"column": 37
}
}
},
"range": [
- 24052,
- 24078
+ 23460,
+ 23486
],
"loc": {
"start": {
- "line": 690,
+ "line": 670,
"column": 12
},
"end": {
- "line": 690,
+ "line": 670,
"column": 38
}
}
}
],
"range": [
- 24038,
- 24088
+ 23446,
+ 23496
],
"loc": {
"start": {
- "line": 689,
- "column": 21
+ "line": 669,
+ "column": 23
},
"end": {
- "line": 691,
+ "line": 671,
"column": 9
}
}
},
"alternate": null,
"range": [
- 24025,
- 24088
+ 23431,
+ 23496
],
"loc": {
"start": {
- "line": 689,
+ "line": 669,
"column": 8
},
"end": {
- "line": 691,
+ "line": 671,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23505,
+ 23509
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 8
+ },
+ "end": {
+ "line": 672,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 23510,
+ 23517
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 13
+ },
+ "end": {
+ "line": 672,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 23505,
+ 23517
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 8
+ },
+ "end": {
+ "line": 672,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 23518,
+ 23522
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 21
+ },
+ "end": {
+ "line": 672,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23505,
+ 23522
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 8
+ },
+ "end": {
+ "line": 672,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-reset-page",
+ "raw": "'after-reset-page'",
+ "range": [
+ 23523,
+ 23541
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 26
+ },
+ "end": {
+ "line": 672,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23543,
+ 23545
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 46
+ },
+ "end": {
+ "line": 672,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "pgnb",
+ "range": [
+ 23547,
+ 23551
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 50
+ },
+ "end": {
+ "line": 672,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 23505,
+ 23552
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 8
+ },
+ "end": {
+ "line": 672,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 23505,
+ 23553
+ ],
+ "loc": {
+ "start": {
+ "line": 672,
+ "column": 8
+ },
+ "end": {
+ "line": 672,
+ "column": 56
+ }
+ }
}
],
"range": [
- 23933,
- 24094
+ 23226,
+ 23559
],
"loc": {
"start": {
- "line": 686,
- "column": 20
+ "line": 662,
+ "column": 19
},
"end": {
- "line": 692,
+ "line": 673,
"column": 5
}
}
@@ -57154,16 +56088,16 @@
"generator": false,
"expression": false,
"range": [
- 23927,
- 24094
+ 23220,
+ 23559
],
"loc": {
"start": {
- "line": 686,
- "column": 14
+ "line": 662,
+ "column": 13
},
"end": {
- "line": 692,
+ "line": 673,
"column": 5
}
}
@@ -57171,16 +56105,16 @@
"kind": "method",
"computed": false,
"range": [
- 23917,
- 24094
+ 23211,
+ 23559
],
"loc": {
"start": {
- "line": 686,
+ "line": 662,
"column": 4
},
"end": {
- "line": 692,
+ "line": 673,
"column": 5
}
},
@@ -57189,16 +56123,16 @@
"type": "Block",
"value": "*\n * Re-set page nb at page re-load\n ",
"range": [
- 23863,
- 23912
+ 23157,
+ 23206
],
"loc": {
"start": {
- "line": 683,
+ "line": 659,
"column": 4
},
"end": {
- "line": 685,
+ "line": 661,
"column": 7
}
}
@@ -57209,16 +56143,16 @@
"type": "Block",
"value": "*\n * Re-set page length value at page re-load\n ",
"range": [
- 24100,
- 24159
+ 23565,
+ 23624
],
"loc": {
"start": {
- "line": 694,
+ "line": 675,
"column": 4
},
"end": {
- "line": 696,
+ "line": 677,
"column": 7
}
}
@@ -57230,19 +56164,19 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "_resetPageLength",
+ "name": "resetPageLength",
"range": [
- 24164,
- 24180
+ 23629,
+ 23644
],
"loc": {
"start": {
- "line": 697,
+ "line": 678,
"column": 4
},
"end": {
- "line": 697,
- "column": 20
+ "line": 678,
+ "column": 19
}
}
},
@@ -57254,17 +56188,17 @@
"type": "Identifier",
"name": "name",
"range": [
- 24181,
- 24185
+ 23645,
+ 23649
],
"loc": {
"start": {
- "line": 697,
- "column": 21
+ "line": 678,
+ "column": 20
},
"end": {
- "line": 697,
- "column": 25
+ "line": 678,
+ "column": 24
}
}
}
@@ -57281,16 +56215,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24200,
- 24202
+ 23664,
+ 23666
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 12
},
"end": {
- "line": 698,
+ "line": 679,
"column": 14
}
}
@@ -57301,16 +56235,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24205,
- 24209
+ 23669,
+ 23673
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 17
},
"end": {
- "line": 698,
+ "line": 679,
"column": 21
}
}
@@ -57319,46 +56253,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24210,
- 24212
+ 23674,
+ 23676
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 22
},
"end": {
- "line": 698,
+ "line": 679,
"column": 24
}
}
},
"range": [
- 24205,
- 24212
+ 23669,
+ 23676
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 17
},
"end": {
- "line": 698,
+ "line": 679,
"column": 24
}
}
},
"range": [
- 24200,
- 24212
+ 23664,
+ 23676
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 12
},
"end": {
- "line": 698,
+ "line": 679,
"column": 24
}
}
@@ -57366,16 +56300,16 @@
],
"kind": "var",
"range": [
- 24196,
- 24213
+ 23660,
+ 23677
],
"loc": {
"start": {
- "line": 698,
+ "line": 679,
"column": 8
},
"end": {
- "line": 698,
+ "line": 679,
"column": 25
}
}
@@ -57393,16 +56327,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24226,
- 24230
+ 23690,
+ 23694
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 12
},
"end": {
- "line": 699,
+ "line": 680,
"column": 16
}
}
@@ -57411,63 +56345,63 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 24231,
- 24240
+ 23695,
+ 23704
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 17
},
"end": {
- "line": 699,
+ "line": 680,
"column": 26
}
}
},
"range": [
- 24226,
- 24240
+ 23690,
+ 23704
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 12
},
"end": {
- "line": 699,
+ "line": 680,
"column": 26
}
}
},
"arguments": [],
"range": [
- 24226,
- 24242
+ 23690,
+ 23706
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 12
},
"end": {
- "line": 699,
+ "line": 680,
"column": 28
}
}
},
"prefix": true,
"range": [
- 24225,
- 24242
+ 23689,
+ 23706
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 11
},
"end": {
- "line": 699,
+ "line": 680,
"column": 28
}
}
@@ -57479,52 +56413,214 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 24257,
- 24264
+ 23721,
+ 23728
],
"loc": {
"start": {
- "line": 700,
+ "line": 681,
"column": 12
},
"end": {
- "line": 700,
+ "line": 681,
"column": 19
}
}
}
],
"range": [
- 24243,
- 24274
+ 23707,
+ 23738
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 29
},
"end": {
- "line": 701,
+ "line": 682,
"column": 9
}
}
},
"alternate": null,
"range": [
- 24222,
- 24274
+ 23686,
+ 23738
],
"loc": {
"start": {
- "line": 699,
+ "line": 680,
"column": 8
},
"end": {
- "line": 701,
+ "line": 682,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23747,
+ 23751
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 23752,
+ 23759
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 13
+ },
+ "end": {
+ "line": 683,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 23747,
+ 23759
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 23760,
+ 23764
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 21
+ },
+ "end": {
+ "line": 683,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23747,
+ 23764
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page-length",
+ "raw": "'before-reset-page-length'",
+ "range": [
+ 23765,
+ 23791
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 26
+ },
+ "end": {
+ "line": 683,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 23793,
+ 23795
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 54
+ },
+ "end": {
+ "line": 683,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 23747,
+ 23796
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 23747,
+ 23797
+ ],
+ "loc": {
+ "start": {
+ "line": 683,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 58
+ }
+ }
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -57534,16 +56630,16 @@
"type": "Identifier",
"name": "pglenIndex",
"range": [
- 24287,
- 24297
+ 23810,
+ 23820
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 12
},
"end": {
- "line": 702,
+ "line": 684,
"column": 22
}
}
@@ -57562,16 +56658,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24300,
- 24302
+ 23823,
+ 23825
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 25
},
"end": {
- "line": 702,
+ "line": 684,
"column": 27
}
}
@@ -57580,31 +56676,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 24303,
- 24310
+ 23826,
+ 23833
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 28
},
"end": {
- "line": 702,
+ "line": 684,
"column": 35
}
}
},
"range": [
- 24300,
- 24310
+ 23823,
+ 23833
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 25
},
"end": {
- "line": 702,
+ "line": 684,
"column": 35
}
}
@@ -57615,32 +56711,32 @@
"value": "store",
"raw": "'store'",
"range": [
- 24311,
- 24318
+ 23834,
+ 23841
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 36
},
"end": {
- "line": 702,
+ "line": 684,
"column": 43
}
}
}
],
"range": [
- 24300,
- 24319
+ 23823,
+ 23842
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 25
},
"end": {
- "line": 702,
+ "line": 684,
"column": 44
}
}
@@ -57649,31 +56745,31 @@
"type": "Identifier",
"name": "getPageLength",
"range": [
- 24320,
- 24333
+ 23843,
+ 23856
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 45
},
"end": {
- "line": 702,
+ "line": 684,
"column": 58
}
}
},
"range": [
- 24300,
- 24333
+ 23823,
+ 23856
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 25
},
"end": {
- "line": 702,
+ "line": 684,
"column": 58
}
}
@@ -57683,47 +56779,47 @@
"type": "Identifier",
"name": "name",
"range": [
- 24334,
- 24338
+ 23857,
+ 23861
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 59
},
"end": {
- "line": 702,
+ "line": 684,
"column": 63
}
}
}
],
"range": [
- 24300,
- 24339
+ 23823,
+ 23862
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 25
},
"end": {
- "line": 702,
+ "line": 684,
"column": 64
}
}
},
"range": [
- 24287,
- 24339
+ 23810,
+ 23862
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 12
},
"end": {
- "line": 702,
+ "line": 684,
"column": 64
}
}
@@ -57731,16 +56827,16 @@
],
"kind": "var",
"range": [
- 24283,
- 24340
+ 23806,
+ 23863
],
"loc": {
"start": {
- "line": 702,
+ "line": 684,
"column": 8
},
"end": {
- "line": 702,
+ "line": 684,
"column": 65
}
}
@@ -57754,16 +56850,16 @@
"type": "Identifier",
"name": "pglenIndex",
"range": [
- 24353,
- 24363
+ 23876,
+ 23886
],
"loc": {
"start": {
- "line": 704,
+ "line": 686,
"column": 11
},
"end": {
- "line": 704,
+ "line": 686,
"column": 21
}
}
@@ -57773,31 +56869,31 @@
"value": "",
"raw": "''",
"range": [
- 24366,
- 24368
+ 23889,
+ 23891
],
"loc": {
"start": {
- "line": 704,
+ "line": 686,
"column": 24
},
"end": {
- "line": 704,
+ "line": 686,
"column": 26
}
}
},
"range": [
- 24353,
- 24368
+ 23876,
+ 23891
],
"loc": {
"start": {
- "line": 704,
+ "line": 686,
"column": 11
},
"end": {
- "line": 704,
+ "line": 686,
"column": 26
}
}
@@ -57825,16 +56921,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24383,
- 24387
+ 23906,
+ 23910
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 16
}
}
@@ -57843,31 +56939,31 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 24388,
- 24405
+ 23911,
+ 23928
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 17
},
"end": {
- "line": 705,
+ "line": 687,
"column": 34
}
}
},
"range": [
- 24383,
- 24405
+ 23906,
+ 23928
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 34
}
}
@@ -57876,31 +56972,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 24406,
- 24413
+ 23929,
+ 23936
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 35
},
"end": {
- "line": 705,
+ "line": 687,
"column": 42
}
}
},
"range": [
- 24383,
- 24413
+ 23906,
+ 23936
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 42
}
}
@@ -57909,31 +57005,31 @@
"type": "Identifier",
"name": "pglenIndex",
"range": [
- 24414,
- 24424
+ 23937,
+ 23947
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 43
},
"end": {
- "line": 705,
+ "line": 687,
"column": 53
}
}
},
"range": [
- 24383,
- 24425
+ 23906,
+ 23948
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 54
}
}
@@ -57942,31 +57038,31 @@
"type": "Identifier",
"name": "selected",
"range": [
- 24426,
- 24434
+ 23949,
+ 23957
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 55
},
"end": {
- "line": 705,
+ "line": 687,
"column": 63
}
}
},
"range": [
- 24383,
- 24434
+ 23906,
+ 23957
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 63
}
}
@@ -57976,46 +57072,46 @@
"value": true,
"raw": "true",
"range": [
- 24437,
- 24441
+ 23960,
+ 23964
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 66
},
"end": {
- "line": 705,
+ "line": 687,
"column": 70
}
}
},
"range": [
- 24383,
- 24441
+ 23906,
+ 23964
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 70
}
}
},
"range": [
- 24383,
- 24442
+ 23906,
+ 23965
],
"loc": {
"start": {
- "line": 705,
+ "line": 687,
"column": 12
},
"end": {
- "line": 705,
+ "line": 687,
"column": 71
}
}
@@ -58030,16 +57126,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24455,
- 24459
+ 23978,
+ 23982
],
"loc": {
"start": {
- "line": 706,
+ "line": 688,
"column": 12
},
"end": {
- "line": 706,
+ "line": 688,
"column": 16
}
}
@@ -58048,110 +57144,290 @@
"type": "Identifier",
"name": "changeResultsPerPage",
"range": [
- 24460,
- 24480
+ 23983,
+ 24003
],
"loc": {
"start": {
- "line": 706,
+ "line": 688,
"column": 17
},
"end": {
- "line": 706,
+ "line": 688,
"column": 37
}
}
},
"range": [
- 24455,
- 24480
+ 23978,
+ 24003
],
"loc": {
"start": {
- "line": 706,
+ "line": 688,
"column": 12
},
"end": {
- "line": 706,
+ "line": 688,
"column": 37
}
}
},
"arguments": [],
"range": [
- 24455,
- 24482
+ 23978,
+ 24005
],
"loc": {
"start": {
- "line": 706,
+ "line": 688,
"column": 12
},
"end": {
- "line": 706,
+ "line": 688,
"column": 39
}
}
},
"range": [
- 24455,
- 24483
+ 23978,
+ 24006
],
"loc": {
"start": {
- "line": 706,
+ "line": 688,
"column": 12
},
"end": {
- "line": 706,
+ "line": 688,
"column": 40
}
}
}
],
"range": [
- 24369,
- 24493
+ 23892,
+ 24016
],
"loc": {
"start": {
- "line": 704,
+ "line": 686,
"column": 27
},
"end": {
- "line": 707,
+ "line": 689,
"column": 9
}
}
},
"alternate": null,
"range": [
- 24350,
- 24493
+ 23873,
+ 24016
],
"loc": {
"start": {
- "line": 704,
+ "line": 686,
"column": 8
},
"end": {
- "line": 707,
+ "line": 689,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24025,
+ 24029
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 8
+ },
+ "end": {
+ "line": 690,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 24030,
+ 24037
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 13
+ },
+ "end": {
+ "line": 690,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 24025,
+ 24037
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 8
+ },
+ "end": {
+ "line": 690,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 24038,
+ 24042
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 21
+ },
+ "end": {
+ "line": 690,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 24025,
+ 24042
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 8
+ },
+ "end": {
+ "line": 690,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-reset-page-length",
+ "raw": "'after-reset-page-length'",
+ "range": [
+ 24043,
+ 24068
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 26
+ },
+ "end": {
+ "line": 690,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 24070,
+ 24072
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 53
+ },
+ "end": {
+ "line": 690,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "pglenIndex",
+ "range": [
+ 24074,
+ 24084
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 57
+ },
+ "end": {
+ "line": 690,
+ "column": 67
+ }
+ }
+ }
+ ],
+ "range": [
+ 24025,
+ 24085
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 8
+ },
+ "end": {
+ "line": 690,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 24025,
+ 24086
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 8
+ },
+ "end": {
+ "line": 690,
+ "column": 69
+ }
+ }
}
],
"range": [
- 24186,
- 24499
+ 23650,
+ 24092
],
"loc": {
"start": {
- "line": 697,
- "column": 26
+ "line": 678,
+ "column": 25
},
"end": {
- "line": 708,
+ "line": 691,
"column": 5
}
}
@@ -58159,16 +57435,16 @@
"generator": false,
"expression": false,
"range": [
- 24180,
- 24499
+ 23644,
+ 24092
],
"loc": {
"start": {
- "line": 697,
- "column": 20
+ "line": 678,
+ "column": 19
},
"end": {
- "line": 708,
+ "line": 691,
"column": 5
}
}
@@ -58176,16 +57452,16 @@
"kind": "method",
"computed": false,
"range": [
- 24164,
- 24499
+ 23629,
+ 24092
],
"loc": {
"start": {
- "line": 697,
+ "line": 678,
"column": 4
},
"end": {
- "line": 708,
+ "line": 691,
"column": 5
}
},
@@ -58194,16 +57470,16 @@
"type": "Block",
"value": "*\n * Re-set page length value at page re-load\n ",
"range": [
- 24100,
- 24159
+ 23565,
+ 23624
],
"loc": {
"start": {
- "line": 694,
+ "line": 675,
"column": 4
},
"end": {
- "line": 696,
+ "line": 677,
"column": 7
}
}
@@ -58214,16 +57490,16 @@
"type": "Block",
"value": "*\n * Remove paging feature\n ",
"range": [
- 24505,
- 24545
+ 24098,
+ 24138
],
"loc": {
"start": {
- "line": 710,
+ "line": 693,
"column": 4
},
"end": {
- "line": 712,
+ "line": 695,
"column": 7
}
}
@@ -58237,16 +57513,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 24550,
- 24557
+ 24143,
+ 24150
],
"loc": {
"start": {
- "line": 713,
+ "line": 696,
"column": 4
},
"end": {
- "line": 713,
+ "line": 696,
"column": 11
}
}
@@ -58267,16 +57543,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24573,
- 24575
+ 24166,
+ 24168
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 12
},
"end": {
- "line": 714,
+ "line": 697,
"column": 14
}
}
@@ -58287,16 +57563,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24578,
- 24582
+ 24171,
+ 24175
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 17
},
"end": {
- "line": 714,
+ "line": 697,
"column": 21
}
}
@@ -58305,46 +57581,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24583,
- 24585
+ 24176,
+ 24178
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 22
},
"end": {
- "line": 714,
+ "line": 697,
"column": 24
}
}
},
"range": [
- 24578,
- 24585
+ 24171,
+ 24178
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 17
},
"end": {
- "line": 714,
+ "line": 697,
"column": 24
}
}
},
"range": [
- 24573,
- 24585
+ 24166,
+ 24178
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 12
},
"end": {
- "line": 714,
+ "line": 697,
"column": 24
}
}
@@ -58352,16 +57628,16 @@
],
"kind": "var",
"range": [
- 24569,
- 24586
+ 24162,
+ 24179
],
"loc": {
"start": {
- "line": 714,
+ "line": 697,
"column": 8
},
"end": {
- "line": 714,
+ "line": 697,
"column": 25
}
}
@@ -58377,16 +57653,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24600,
- 24604
+ 24193,
+ 24197
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 12
},
"end": {
- "line": 716,
+ "line": 699,
"column": 16
}
}
@@ -58395,47 +57671,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 24605,
- 24616
+ 24198,
+ 24209
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 17
},
"end": {
- "line": 716,
+ "line": 699,
"column": 28
}
}
},
"range": [
- 24600,
- 24616
+ 24193,
+ 24209
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 12
},
"end": {
- "line": 716,
+ "line": 699,
"column": 28
}
}
},
"prefix": true,
"range": [
- 24599,
- 24616
+ 24192,
+ 24209
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 11
},
"end": {
- "line": 716,
+ "line": 699,
"column": 28
}
}
@@ -58447,48 +57723,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 24631,
- 24638
+ 24224,
+ 24231
],
"loc": {
"start": {
- "line": 717,
+ "line": 700,
"column": 12
},
"end": {
- "line": 717,
+ "line": 700,
"column": 19
}
}
}
],
"range": [
- 24617,
- 24648
+ 24210,
+ 24241
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 29
},
"end": {
- "line": 718,
+ "line": 701,
"column": 9
}
}
},
"alternate": null,
"range": [
- 24596,
- 24648
+ 24189,
+ 24241
],
"loc": {
"start": {
- "line": 716,
+ "line": 699,
"column": 8
},
"end": {
- "line": 718,
+ "line": 701,
"column": 9
}
},
@@ -58497,16 +57773,16 @@
"type": "Line",
"value": " btns containers",
"range": [
- 24657,
- 24675
+ 24250,
+ 24268
],
"loc": {
"start": {
- "line": 719,
+ "line": 702,
"column": 8
},
"end": {
- "line": 719,
+ "line": 702,
"column": 26
}
}
@@ -58522,16 +57798,16 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 24688,
- 24699
+ 24281,
+ 24292
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 12
},
"end": {
- "line": 720,
+ "line": 703,
"column": 23
}
}
@@ -58545,16 +57821,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 24702,
- 24705
+ 24295,
+ 24298
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 26
},
"end": {
- "line": 720,
+ "line": 703,
"column": 29
}
}
@@ -58563,31 +57839,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 24706,
- 24708
+ 24299,
+ 24301
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 30
},
"end": {
- "line": 720,
+ "line": 703,
"column": 32
}
}
},
"range": [
- 24702,
- 24708
+ 24295,
+ 24301
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 26
},
"end": {
- "line": 720,
+ "line": 703,
"column": 32
}
}
@@ -58602,16 +57878,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24709,
- 24713
+ 24302,
+ 24306
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 33
},
"end": {
- "line": 720,
+ "line": 703,
"column": 37
}
}
@@ -58620,31 +57896,31 @@
"type": "Identifier",
"name": "prfxBtnNextSpan",
"range": [
- 24714,
- 24729
+ 24307,
+ 24322
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 38
},
"end": {
- "line": 720,
+ "line": 703,
"column": 53
}
}
},
"range": [
- 24709,
- 24729
+ 24302,
+ 24322
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 33
},
"end": {
- "line": 720,
+ "line": 703,
"column": 53
}
}
@@ -58656,16 +57932,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24730,
- 24732
+ 24323,
+ 24325
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 54
},
"end": {
- "line": 720,
+ "line": 703,
"column": 56
}
}
@@ -58674,77 +57950,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 24733,
- 24735
+ 24326,
+ 24328
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 57
},
"end": {
- "line": 720,
+ "line": 703,
"column": 59
}
}
},
"range": [
- 24730,
- 24735
+ 24323,
+ 24328
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 54
},
"end": {
- "line": 720,
+ "line": 703,
"column": 59
}
}
},
"range": [
- 24709,
- 24735
+ 24302,
+ 24328
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 33
},
"end": {
- "line": 720,
+ "line": 703,
"column": 59
}
}
}
],
"range": [
- 24702,
- 24736
+ 24295,
+ 24329
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 26
},
"end": {
- "line": 720,
+ "line": 703,
"column": 60
}
}
},
"range": [
- 24688,
- 24736
+ 24281,
+ 24329
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 12
},
"end": {
- "line": 720,
+ "line": 703,
"column": 60
}
}
@@ -58752,16 +58028,16 @@
],
"kind": "var",
"range": [
- 24684,
- 24737
+ 24277,
+ 24330
],
"loc": {
"start": {
- "line": 720,
+ "line": 703,
"column": 8
},
"end": {
- "line": 720,
+ "line": 703,
"column": 61
}
},
@@ -58770,16 +58046,16 @@
"type": "Line",
"value": " btns containers",
"range": [
- 24657,
- 24675
+ 24250,
+ 24268
],
"loc": {
"start": {
- "line": 719,
+ "line": 702,
"column": 8
},
"end": {
- "line": 719,
+ "line": 702,
"column": 26
}
}
@@ -58795,16 +58071,16 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 24750,
- 24761
+ 24343,
+ 24354
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 12
},
"end": {
- "line": 721,
+ "line": 704,
"column": 23
}
}
@@ -58818,16 +58094,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 24764,
- 24767
+ 24357,
+ 24360
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 26
},
"end": {
- "line": 721,
+ "line": 704,
"column": 29
}
}
@@ -58836,31 +58112,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 24768,
- 24770
+ 24361,
+ 24363
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 30
},
"end": {
- "line": 721,
+ "line": 704,
"column": 32
}
}
},
"range": [
- 24764,
- 24770
+ 24357,
+ 24363
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 26
},
"end": {
- "line": 721,
+ "line": 704,
"column": 32
}
}
@@ -58875,16 +58151,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24771,
- 24775
+ 24364,
+ 24368
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 33
},
"end": {
- "line": 721,
+ "line": 704,
"column": 37
}
}
@@ -58893,31 +58169,31 @@
"type": "Identifier",
"name": "prfxBtnPrevSpan",
"range": [
- 24776,
- 24791
+ 24369,
+ 24384
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 38
},
"end": {
- "line": 721,
+ "line": 704,
"column": 53
}
}
},
"range": [
- 24771,
- 24791
+ 24364,
+ 24384
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 33
},
"end": {
- "line": 721,
+ "line": 704,
"column": 53
}
}
@@ -58929,16 +58205,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24792,
- 24794
+ 24385,
+ 24387
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 54
},
"end": {
- "line": 721,
+ "line": 704,
"column": 56
}
}
@@ -58947,77 +58223,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 24795,
- 24797
+ 24388,
+ 24390
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 57
},
"end": {
- "line": 721,
+ "line": 704,
"column": 59
}
}
},
"range": [
- 24792,
- 24797
+ 24385,
+ 24390
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 54
},
"end": {
- "line": 721,
+ "line": 704,
"column": 59
}
}
},
"range": [
- 24771,
- 24797
+ 24364,
+ 24390
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 33
},
"end": {
- "line": 721,
+ "line": 704,
"column": 59
}
}
}
],
"range": [
- 24764,
- 24798
+ 24357,
+ 24391
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 26
},
"end": {
- "line": 721,
+ "line": 704,
"column": 60
}
}
},
"range": [
- 24750,
- 24798
+ 24343,
+ 24391
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 12
},
"end": {
- "line": 721,
+ "line": 704,
"column": 60
}
}
@@ -59025,16 +58301,16 @@
],
"kind": "var",
"range": [
- 24746,
- 24799
+ 24339,
+ 24392
],
"loc": {
"start": {
- "line": 721,
+ "line": 704,
"column": 8
},
"end": {
- "line": 721,
+ "line": 704,
"column": 61
}
}
@@ -59048,16 +58324,16 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 24812,
- 24823
+ 24405,
+ 24416
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 12
},
"end": {
- "line": 722,
+ "line": 705,
"column": 23
}
}
@@ -59071,16 +58347,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 24826,
- 24829
+ 24419,
+ 24422
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 26
},
"end": {
- "line": 722,
+ "line": 705,
"column": 29
}
}
@@ -59089,31 +58365,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 24830,
- 24832
+ 24423,
+ 24425
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 30
},
"end": {
- "line": 722,
+ "line": 705,
"column": 32
}
}
},
"range": [
- 24826,
- 24832
+ 24419,
+ 24425
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 26
},
"end": {
- "line": 722,
+ "line": 705,
"column": 32
}
}
@@ -59128,16 +58404,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24833,
- 24837
+ 24426,
+ 24430
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 33
},
"end": {
- "line": 722,
+ "line": 705,
"column": 37
}
}
@@ -59146,31 +58422,31 @@
"type": "Identifier",
"name": "prfxBtnLastSpan",
"range": [
- 24838,
- 24853
+ 24431,
+ 24446
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 38
},
"end": {
- "line": 722,
+ "line": 705,
"column": 53
}
}
},
"range": [
- 24833,
- 24853
+ 24426,
+ 24446
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 33
},
"end": {
- "line": 722,
+ "line": 705,
"column": 53
}
}
@@ -59182,16 +58458,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24854,
- 24856
+ 24447,
+ 24449
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 54
},
"end": {
- "line": 722,
+ "line": 705,
"column": 56
}
}
@@ -59200,77 +58476,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 24857,
- 24859
+ 24450,
+ 24452
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 57
},
"end": {
- "line": 722,
+ "line": 705,
"column": 59
}
}
},
"range": [
- 24854,
- 24859
+ 24447,
+ 24452
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 54
},
"end": {
- "line": 722,
+ "line": 705,
"column": 59
}
}
},
"range": [
- 24833,
- 24859
+ 24426,
+ 24452
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 33
},
"end": {
- "line": 722,
+ "line": 705,
"column": 59
}
}
}
],
"range": [
- 24826,
- 24860
+ 24419,
+ 24453
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 26
},
"end": {
- "line": 722,
+ "line": 705,
"column": 60
}
}
},
"range": [
- 24812,
- 24860
+ 24405,
+ 24453
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 12
},
"end": {
- "line": 722,
+ "line": 705,
"column": 60
}
}
@@ -59278,16 +58554,16 @@
],
"kind": "var",
"range": [
- 24808,
- 24861
+ 24401,
+ 24454
],
"loc": {
"start": {
- "line": 722,
+ "line": 705,
"column": 8
},
"end": {
- "line": 722,
+ "line": 705,
"column": 61
}
}
@@ -59301,16 +58577,16 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 24874,
- 24886
+ 24467,
+ 24479
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 12
},
"end": {
- "line": 723,
+ "line": 706,
"column": 24
}
}
@@ -59324,16 +58600,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 24889,
- 24892
+ 24482,
+ 24485
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 27
},
"end": {
- "line": 723,
+ "line": 706,
"column": 30
}
}
@@ -59342,31 +58618,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 24893,
- 24895
+ 24486,
+ 24488
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 31
},
"end": {
- "line": 723,
+ "line": 706,
"column": 33
}
}
},
"range": [
- 24889,
- 24895
+ 24482,
+ 24488
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 27
},
"end": {
- "line": 723,
+ "line": 706,
"column": 33
}
}
@@ -59381,16 +58657,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24896,
- 24900
+ 24489,
+ 24493
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 34
},
"end": {
- "line": 723,
+ "line": 706,
"column": 38
}
}
@@ -59399,31 +58675,31 @@
"type": "Identifier",
"name": "prfxBtnFirstSpan",
"range": [
- 24901,
- 24917
+ 24494,
+ 24510
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 39
},
"end": {
- "line": 723,
+ "line": 706,
"column": 55
}
}
},
"range": [
- 24896,
- 24917
+ 24489,
+ 24510
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 34
},
"end": {
- "line": 723,
+ "line": 706,
"column": 55
}
}
@@ -59435,16 +58711,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 24918,
- 24920
+ 24511,
+ 24513
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 56
},
"end": {
- "line": 723,
+ "line": 706,
"column": 58
}
}
@@ -59453,77 +58729,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 24921,
- 24923
+ 24514,
+ 24516
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 59
},
"end": {
- "line": 723,
+ "line": 706,
"column": 61
}
}
},
"range": [
- 24918,
- 24923
+ 24511,
+ 24516
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 56
},
"end": {
- "line": 723,
+ "line": 706,
"column": 61
}
}
},
"range": [
- 24896,
- 24923
+ 24489,
+ 24516
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 34
},
"end": {
- "line": 723,
+ "line": 706,
"column": 61
}
}
}
],
"range": [
- 24889,
- 24924
+ 24482,
+ 24517
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 27
},
"end": {
- "line": 723,
+ "line": 706,
"column": 62
}
}
},
"range": [
- 24874,
- 24924
+ 24467,
+ 24517
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 12
},
"end": {
- "line": 723,
+ "line": 706,
"column": 62
}
}
@@ -59531,16 +58807,16 @@
],
"kind": "var",
"range": [
- 24870,
- 24925
+ 24463,
+ 24518
],
"loc": {
"start": {
- "line": 723,
+ "line": 706,
"column": 8
},
"end": {
- "line": 723,
+ "line": 706,
"column": 63
}
},
@@ -59549,16 +58825,16 @@
"type": "Line",
"value": "span containing 'Page' text",
"range": [
- 24934,
- 24963
+ 24527,
+ 24556
],
"loc": {
"start": {
- "line": 724,
+ "line": 707,
"column": 8
},
"end": {
- "line": 724,
+ "line": 707,
"column": 37
}
}
@@ -59574,16 +58850,16 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 24976,
- 24988
+ 24569,
+ 24581
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 12
},
"end": {
- "line": 725,
+ "line": 708,
"column": 24
}
}
@@ -59597,16 +58873,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 24991,
- 24994
+ 24584,
+ 24587
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 27
},
"end": {
- "line": 725,
+ "line": 708,
"column": 30
}
}
@@ -59615,31 +58891,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 24995,
- 24997
+ 24588,
+ 24590
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 31
},
"end": {
- "line": 725,
+ "line": 708,
"column": 33
}
}
},
"range": [
- 24991,
- 24997
+ 24584,
+ 24590
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 27
},
"end": {
- "line": 725,
+ "line": 708,
"column": 33
}
}
@@ -59654,16 +58930,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 24998,
- 25002
+ 24591,
+ 24595
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 34
},
"end": {
- "line": 725,
+ "line": 708,
"column": 38
}
}
@@ -59672,31 +58948,31 @@
"type": "Identifier",
"name": "prfxPgBeforeSpan",
"range": [
- 25003,
- 25019
+ 24596,
+ 24612
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 39
},
"end": {
- "line": 725,
+ "line": 708,
"column": 55
}
}
},
"range": [
- 24998,
- 25019
+ 24591,
+ 24612
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 34
},
"end": {
- "line": 725,
+ "line": 708,
"column": 55
}
}
@@ -59708,16 +58984,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 25020,
- 25022
+ 24613,
+ 24615
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 56
},
"end": {
- "line": 725,
+ "line": 708,
"column": 58
}
}
@@ -59726,77 +59002,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 25023,
- 25025
+ 24616,
+ 24618
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 59
},
"end": {
- "line": 725,
+ "line": 708,
"column": 61
}
}
},
"range": [
- 25020,
- 25025
+ 24613,
+ 24618
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 56
},
"end": {
- "line": 725,
+ "line": 708,
"column": 61
}
}
},
"range": [
- 24998,
- 25025
+ 24591,
+ 24618
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 34
},
"end": {
- "line": 725,
+ "line": 708,
"column": 61
}
}
}
],
"range": [
- 24991,
- 25026
+ 24584,
+ 24619
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 27
},
"end": {
- "line": 725,
+ "line": 708,
"column": 62
}
}
},
"range": [
- 24976,
- 25026
+ 24569,
+ 24619
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 12
},
"end": {
- "line": 725,
+ "line": 708,
"column": 62
}
}
@@ -59804,16 +59080,16 @@
],
"kind": "var",
"range": [
- 24972,
- 25027
+ 24565,
+ 24620
],
"loc": {
"start": {
- "line": 725,
+ "line": 708,
"column": 8
},
"end": {
- "line": 725,
+ "line": 708,
"column": 63
}
},
@@ -59822,16 +59098,16 @@
"type": "Line",
"value": "span containing 'Page' text",
"range": [
- 24934,
- 24963
+ 24527,
+ 24556
],
"loc": {
"start": {
- "line": 724,
+ "line": 707,
"column": 8
},
"end": {
- "line": 724,
+ "line": 707,
"column": 37
}
}
@@ -59842,16 +59118,16 @@
"type": "Line",
"value": "span containing 'of' text",
"range": [
- 25036,
- 25063
+ 24629,
+ 24656
],
"loc": {
"start": {
- "line": 726,
+ "line": 709,
"column": 8
},
"end": {
- "line": 726,
+ "line": 709,
"column": 35
}
}
@@ -59867,16 +59143,16 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 25076,
- 25087
+ 24669,
+ 24680
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 12
},
"end": {
- "line": 727,
+ "line": 710,
"column": 23
}
}
@@ -59890,16 +59166,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25090,
- 25093
+ 24683,
+ 24686
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 26
},
"end": {
- "line": 727,
+ "line": 710,
"column": 29
}
}
@@ -59908,31 +59184,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 25094,
- 25096
+ 24687,
+ 24689
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 30
},
"end": {
- "line": 727,
+ "line": 710,
"column": 32
}
}
},
"range": [
- 25090,
- 25096
+ 24683,
+ 24689
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 26
},
"end": {
- "line": 727,
+ "line": 710,
"column": 32
}
}
@@ -59947,16 +59223,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25097,
- 25101
+ 24690,
+ 24694
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 33
},
"end": {
- "line": 727,
+ "line": 710,
"column": 37
}
}
@@ -59965,31 +59241,31 @@
"type": "Identifier",
"name": "prfxPgAfterSpan",
"range": [
- 25102,
- 25117
+ 24695,
+ 24710
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 38
},
"end": {
- "line": 727,
+ "line": 710,
"column": 53
}
}
},
"range": [
- 25097,
- 25117
+ 24690,
+ 24710
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 33
},
"end": {
- "line": 727,
+ "line": 710,
"column": 53
}
}
@@ -60001,16 +59277,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 25118,
- 25120
+ 24711,
+ 24713
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 54
},
"end": {
- "line": 727,
+ "line": 710,
"column": 56
}
}
@@ -60019,77 +59295,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 25121,
- 25123
+ 24714,
+ 24716
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 57
},
"end": {
- "line": 727,
+ "line": 710,
"column": 59
}
}
},
"range": [
- 25118,
- 25123
+ 24711,
+ 24716
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 54
},
"end": {
- "line": 727,
+ "line": 710,
"column": 59
}
}
},
"range": [
- 25097,
- 25123
+ 24690,
+ 24716
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 33
},
"end": {
- "line": 727,
+ "line": 710,
"column": 59
}
}
}
],
"range": [
- 25090,
- 25124
+ 24683,
+ 24717
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 26
},
"end": {
- "line": 727,
+ "line": 710,
"column": 60
}
}
},
"range": [
- 25076,
- 25124
+ 24669,
+ 24717
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 12
},
"end": {
- "line": 727,
+ "line": 710,
"column": 60
}
}
@@ -60097,16 +59373,16 @@
],
"kind": "var",
"range": [
- 25072,
- 25125
+ 24665,
+ 24718
],
"loc": {
"start": {
- "line": 727,
+ "line": 710,
"column": 8
},
"end": {
- "line": 727,
+ "line": 710,
"column": 61
}
},
@@ -60115,16 +59391,16 @@
"type": "Line",
"value": "span containing 'of' text",
"range": [
- 25036,
- 25063
+ 24629,
+ 24656
],
"loc": {
"start": {
- "line": 726,
+ "line": 709,
"column": 8
},
"end": {
- "line": 726,
+ "line": 709,
"column": 35
}
}
@@ -60135,16 +59411,16 @@
"type": "Line",
"value": "span containing nb of pages",
"range": [
- 25134,
- 25163
+ 24727,
+ 24756
],
"loc": {
"start": {
- "line": 728,
+ "line": 711,
"column": 8
},
"end": {
- "line": 728,
+ "line": 711,
"column": 37
}
}
@@ -60160,16 +59436,16 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 25176,
- 25182
+ 24769,
+ 24775
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 12
},
"end": {
- "line": 729,
+ "line": 712,
"column": 18
}
}
@@ -60183,16 +59459,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25185,
- 25188
+ 24778,
+ 24781
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 21
},
"end": {
- "line": 729,
+ "line": 712,
"column": 24
}
}
@@ -60201,31 +59477,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 25189,
- 25191
+ 24782,
+ 24784
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 25
},
"end": {
- "line": 729,
+ "line": 712,
"column": 27
}
}
},
"range": [
- 25185,
- 25191
+ 24778,
+ 24784
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 21
},
"end": {
- "line": 729,
+ "line": 712,
"column": 27
}
}
@@ -60240,16 +59516,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25192,
- 25196
+ 24785,
+ 24789
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 28
},
"end": {
- "line": 729,
+ "line": 712,
"column": 32
}
}
@@ -60258,31 +59534,31 @@
"type": "Identifier",
"name": "prfxPgSpan",
"range": [
- 25197,
- 25207
+ 24790,
+ 24800
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 33
},
"end": {
- "line": 729,
+ "line": 712,
"column": 43
}
}
},
"range": [
- 25192,
- 25207
+ 24785,
+ 24800
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 28
},
"end": {
- "line": 729,
+ "line": 712,
"column": 43
}
}
@@ -60294,16 +59570,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 25208,
- 25210
+ 24801,
+ 24803
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 44
},
"end": {
- "line": 729,
+ "line": 712,
"column": 46
}
}
@@ -60312,77 +59588,77 @@
"type": "Identifier",
"name": "id",
"range": [
- 25211,
- 25213
+ 24804,
+ 24806
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 47
},
"end": {
- "line": 729,
+ "line": 712,
"column": 49
}
}
},
"range": [
- 25208,
- 25213
+ 24801,
+ 24806
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 44
},
"end": {
- "line": 729,
+ "line": 712,
"column": 49
}
}
},
"range": [
- 25192,
- 25213
+ 24785,
+ 24806
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 28
},
"end": {
- "line": 729,
+ "line": 712,
"column": 49
}
}
}
],
"range": [
- 25185,
- 25214
+ 24778,
+ 24807
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 21
},
"end": {
- "line": 729,
+ "line": 712,
"column": 50
}
}
},
"range": [
- 25176,
- 25214
+ 24769,
+ 24807
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 12
},
"end": {
- "line": 729,
+ "line": 712,
"column": 50
}
}
@@ -60390,16 +59666,16 @@
],
"kind": "var",
"range": [
- 25172,
- 25215
+ 24765,
+ 24808
],
"loc": {
"start": {
- "line": 729,
+ "line": 712,
"column": 8
},
"end": {
- "line": 729,
+ "line": 712,
"column": 51
}
},
@@ -60408,16 +59684,16 @@
"type": "Line",
"value": "span containing nb of pages",
"range": [
- 25134,
- 25163
+ 24727,
+ 24756
],
"loc": {
"start": {
- "line": 728,
+ "line": 711,
"column": 8
},
"end": {
- "line": 728,
+ "line": 711,
"column": 37
}
}
@@ -60433,16 +59709,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25229,
- 25232
+ 24822,
+ 24825
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 12
},
"end": {
- "line": 731,
+ "line": 714,
"column": 15
}
}
@@ -60453,16 +59729,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25235,
- 25239
+ 24828,
+ 24832
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 18
},
"end": {
- "line": 731,
+ "line": 714,
"column": 22
}
}
@@ -60471,46 +59747,46 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25240,
- 25243
+ 24833,
+ 24836
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 23
},
"end": {
- "line": 731,
+ "line": 714,
"column": 26
}
}
},
"range": [
- 25235,
- 25243
+ 24828,
+ 24836
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 18
},
"end": {
- "line": 731,
+ "line": 714,
"column": 26
}
}
},
"range": [
- 25229,
- 25243
+ 24822,
+ 24836
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 12
},
"end": {
- "line": 731,
+ "line": 714,
"column": 26
}
}
@@ -60518,16 +59794,16 @@
],
"kind": "var",
"range": [
- 25225,
- 25244
+ 24818,
+ 24837
],
"loc": {
"start": {
- "line": 731,
+ "line": 714,
"column": 8
},
"end": {
- "line": 731,
+ "line": 714,
"column": 27
}
}
@@ -60540,16 +59816,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25257,
- 25261
+ 24850,
+ 24854
],
"loc": {
"start": {
- "line": 733,
+ "line": 716,
"column": 11
},
"end": {
- "line": 733,
+ "line": 716,
"column": 15
}
}
@@ -60558,31 +59834,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 25262,
- 25271
+ 24855,
+ 24864
],
"loc": {
"start": {
- "line": 733,
+ "line": 716,
"column": 16
},
"end": {
- "line": 733,
+ "line": 716,
"column": 25
}
}
},
"range": [
- 25257,
- 25271
+ 24850,
+ 24864
],
"loc": {
"start": {
- "line": 733,
+ "line": 716,
"column": 11
},
"end": {
- "line": 733,
+ "line": 716,
"column": 25
}
}
@@ -60601,16 +59877,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25289,
- 25293
+ 24882,
+ 24886
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 15
},
"end": {
- "line": 734,
+ "line": 717,
"column": 19
}
}
@@ -60619,31 +59895,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 25294,
- 25310
+ 24887,
+ 24903
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 20
},
"end": {
- "line": 734,
+ "line": 717,
"column": 36
}
}
},
"range": [
- 25289,
- 25310
+ 24882,
+ 24903
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 15
},
"end": {
- "line": 734,
+ "line": 717,
"column": 36
}
}
@@ -60655,16 +59931,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 25315,
- 25317
+ 24908,
+ 24910
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 41
},
"end": {
- "line": 734,
+ "line": 717,
"column": 43
}
}
@@ -60673,46 +59949,46 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 25318,
- 25328
+ 24911,
+ 24921
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 44
},
"end": {
- "line": 734,
+ "line": 717,
"column": 54
}
}
},
"range": [
- 25315,
- 25328
+ 24908,
+ 24921
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 41
},
"end": {
- "line": 734,
+ "line": 717,
"column": 54
}
}
},
"range": [
- 25289,
- 25328
+ 24882,
+ 24921
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 15
},
"end": {
- "line": 734,
+ "line": 717,
"column": 54
}
}
@@ -60731,16 +60007,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 25347,
- 25352
+ 24940,
+ 24945
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 16
},
"end": {
- "line": 735,
+ "line": 718,
"column": 21
}
}
@@ -60749,31 +60025,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25353,
- 25359
+ 24946,
+ 24952
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 22
},
"end": {
- "line": 735,
+ "line": 718,
"column": 28
}
}
},
"range": [
- 25347,
- 25359
+ 24940,
+ 24952
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 16
},
"end": {
- "line": 735,
+ "line": 718,
"column": 28
}
}
@@ -60785,16 +60061,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25360,
- 25364
+ 24953,
+ 24957
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 29
},
"end": {
- "line": 735,
+ "line": 718,
"column": 33
}
}
@@ -60803,31 +60079,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 25365,
- 25374
+ 24958,
+ 24967
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 34
},
"end": {
- "line": 735,
+ "line": 718,
"column": 43
}
}
},
"range": [
- 25360,
- 25374
+ 24953,
+ 24967
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 29
},
"end": {
- "line": 735,
+ "line": 718,
"column": 43
}
}
@@ -60837,16 +60113,16 @@
"value": "change",
"raw": "'change'",
"range": [
- 25376,
- 25384
+ 24969,
+ 24977
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 45
},
"end": {
- "line": 735,
+ "line": 718,
"column": 53
}
}
@@ -60858,16 +60134,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25386,
- 25389
+ 24979,
+ 24982
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 55
},
"end": {
- "line": 735,
+ "line": 718,
"column": 58
}
}
@@ -60876,78 +60152,78 @@
"type": "Identifier",
"name": "slcPagesChange",
"range": [
- 25390,
- 25404
+ 24983,
+ 24997
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 59
},
"end": {
- "line": 735,
+ "line": 718,
"column": 73
}
}
},
"range": [
- 25386,
- 25404
+ 24979,
+ 24997
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 55
},
"end": {
- "line": 735,
+ "line": 718,
"column": 73
}
}
}
],
"range": [
- 25347,
- 25405
+ 24940,
+ 24998
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 16
},
"end": {
- "line": 735,
+ "line": 718,
"column": 74
}
}
},
"range": [
- 25347,
- 25406
+ 24940,
+ 24999
],
"loc": {
"start": {
- "line": 735,
+ "line": 718,
"column": 16
},
"end": {
- "line": 735,
+ "line": 718,
"column": 75
}
}
}
],
"range": [
- 25329,
- 25420
+ 24922,
+ 25013
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 55
},
"end": {
- "line": 736,
+ "line": 719,
"column": 13
}
}
@@ -60963,16 +60239,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25441,
- 25445
+ 25034,
+ 25038
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 20
},
"end": {
- "line": 737,
+ "line": 720,
"column": 24
}
}
@@ -60981,31 +60257,31 @@
"type": "Identifier",
"name": "pageSelectorType",
"range": [
- 25446,
- 25462
+ 25039,
+ 25055
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 25
},
"end": {
- "line": 737,
+ "line": 720,
"column": 41
}
}
},
"range": [
- 25441,
- 25462
+ 25034,
+ 25055
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 20
},
"end": {
- "line": 737,
+ "line": 720,
"column": 41
}
}
@@ -61017,16 +60293,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 25467,
- 25469
+ 25060,
+ 25062
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 46
},
"end": {
- "line": 737,
+ "line": 720,
"column": 48
}
}
@@ -61035,46 +60311,46 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 25470,
- 25480
+ 25063,
+ 25073
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 49
},
"end": {
- "line": 737,
+ "line": 720,
"column": 59
}
}
},
"range": [
- 25467,
- 25480
+ 25060,
+ 25073
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 46
},
"end": {
- "line": 737,
+ "line": 720,
"column": 59
}
}
},
"range": [
- 25441,
- 25480
+ 25034,
+ 25073
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 20
},
"end": {
- "line": 737,
+ "line": 720,
"column": 59
}
}
@@ -61093,16 +60369,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 25499,
- 25504
+ 25092,
+ 25097
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 16
},
"end": {
- "line": 738,
+ "line": 721,
"column": 21
}
}
@@ -61111,31 +60387,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25505,
- 25511
+ 25098,
+ 25104
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 22
},
"end": {
- "line": 738,
+ "line": 721,
"column": 28
}
}
},
"range": [
- 25499,
- 25511
+ 25092,
+ 25104
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 16
},
"end": {
- "line": 738,
+ "line": 721,
"column": 28
}
}
@@ -61147,16 +60423,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25512,
- 25516
+ 25105,
+ 25109
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 29
},
"end": {
- "line": 738,
+ "line": 721,
"column": 33
}
}
@@ -61165,31 +60441,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 25517,
- 25526
+ 25110,
+ 25119
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 34
},
"end": {
- "line": 738,
+ "line": 721,
"column": 43
}
}
},
"range": [
- 25512,
- 25526
+ 25105,
+ 25119
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 29
},
"end": {
- "line": 738,
+ "line": 721,
"column": 43
}
}
@@ -61199,16 +60475,16 @@
"value": "keypress",
"raw": "'keypress'",
"range": [
- 25528,
- 25538
+ 25121,
+ 25131
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 45
},
"end": {
- "line": 738,
+ "line": 721,
"column": 55
}
}
@@ -61220,16 +60496,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25540,
- 25543
+ 25133,
+ 25136
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 57
},
"end": {
- "line": 738,
+ "line": 721,
"column": 60
}
}
@@ -61238,109 +60514,109 @@
"type": "Identifier",
"name": "_detectKey",
"range": [
- 25544,
- 25554
+ 25137,
+ 25147
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 61
},
"end": {
- "line": 738,
+ "line": 721,
"column": 71
}
}
},
"range": [
- 25540,
- 25554
+ 25133,
+ 25147
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 57
},
"end": {
- "line": 738,
+ "line": 721,
"column": 71
}
}
}
],
"range": [
- 25499,
- 25555
+ 25092,
+ 25148
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 16
},
"end": {
- "line": 738,
+ "line": 721,
"column": 72
}
}
},
"range": [
- 25499,
- 25556
+ 25092,
+ 25149
],
"loc": {
"start": {
- "line": 738,
+ "line": 721,
"column": 16
},
"end": {
- "line": 738,
+ "line": 721,
"column": 73
}
}
}
],
"range": [
- 25481,
- 25570
+ 25074,
+ 25163
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 60
},
"end": {
- "line": 739,
+ "line": 722,
"column": 13
}
}
},
"alternate": null,
"range": [
- 25438,
- 25570
+ 25031,
+ 25163
],
"loc": {
"start": {
- "line": 737,
+ "line": 720,
"column": 17
},
"end": {
- "line": 739,
+ "line": 722,
"column": 13
}
}
},
"range": [
- 25286,
- 25570
+ 24879,
+ 25163
],
"loc": {
"start": {
- "line": 734,
+ "line": 717,
"column": 12
},
"end": {
- "line": 739,
+ "line": 722,
"column": 13
}
}
@@ -61356,16 +60632,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25583,
- 25586
+ 25176,
+ 25179
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 12
},
"end": {
- "line": 740,
+ "line": 723,
"column": 15
}
}
@@ -61374,31 +60650,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25587,
- 25593
+ 25180,
+ 25186
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 16
},
"end": {
- "line": 740,
+ "line": 723,
"column": 22
}
}
},
"range": [
- 25583,
- 25593
+ 25176,
+ 25186
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 12
},
"end": {
- "line": 740,
+ "line": 723,
"column": 22
}
}
@@ -61410,16 +60686,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25594,
- 25598
+ 25187,
+ 25191
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 23
},
"end": {
- "line": 740,
+ "line": 723,
"column": 27
}
}
@@ -61428,94 +60704,94 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 25599,
- 25608
+ 25192,
+ 25201
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 28
},
"end": {
- "line": 740,
+ "line": 723,
"column": 37
}
}
},
"range": [
- 25594,
- 25608
+ 25187,
+ 25201
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 23
},
"end": {
- "line": 740,
+ "line": 723,
"column": 37
}
}
}
],
"range": [
- 25583,
- 25609
+ 25176,
+ 25202
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 12
},
"end": {
- "line": 740,
+ "line": 723,
"column": 38
}
}
},
"range": [
- 25583,
- 25610
+ 25176,
+ 25203
],
"loc": {
"start": {
- "line": 740,
+ "line": 723,
"column": 12
},
"end": {
- "line": 740,
+ "line": 723,
"column": 39
}
}
}
],
"range": [
- 25272,
- 25620
+ 24865,
+ 25213
],
"loc": {
"start": {
- "line": 733,
+ "line": 716,
"column": 26
},
"end": {
- "line": 741,
+ "line": 724,
"column": 9
}
}
},
"alternate": null,
"range": [
- 25254,
- 25620
+ 24847,
+ 25213
],
"loc": {
"start": {
- "line": 733,
+ "line": 716,
"column": 8
},
"end": {
- "line": 741,
+ "line": 724,
"column": 9
}
}
@@ -61526,16 +60802,16 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 25633,
- 25644
+ 25226,
+ 25237
],
"loc": {
"start": {
- "line": 743,
+ "line": 726,
"column": 11
},
"end": {
- "line": 743,
+ "line": 726,
"column": 22
}
}
@@ -61554,16 +60830,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 25659,
- 25664
+ 25252,
+ 25257
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 12
},
"end": {
- "line": 744,
+ "line": 727,
"column": 17
}
}
@@ -61572,31 +60848,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25665,
- 25671
+ 25258,
+ 25264
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 18
},
"end": {
- "line": 744,
+ "line": 727,
"column": 24
}
}
},
"range": [
- 25659,
- 25671
+ 25252,
+ 25264
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 12
},
"end": {
- "line": 744,
+ "line": 727,
"column": 24
}
}
@@ -61606,16 +60882,16 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 25672,
- 25683
+ 25265,
+ 25276
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 25
},
"end": {
- "line": 744,
+ "line": 727,
"column": 36
}
}
@@ -61625,16 +60901,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 25685,
- 25692
+ 25278,
+ 25285
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 38
},
"end": {
- "line": 744,
+ "line": 727,
"column": 45
}
}
@@ -61646,16 +60922,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25694,
- 25697
+ 25287,
+ 25290
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 47
},
"end": {
- "line": 744,
+ "line": 727,
"column": 50
}
}
@@ -61664,62 +60940,62 @@
"type": "Identifier",
"name": "next",
"range": [
- 25698,
- 25702
+ 25291,
+ 25295
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 51
},
"end": {
- "line": 744,
+ "line": 727,
"column": 55
}
}
},
"range": [
- 25694,
- 25702
+ 25287,
+ 25295
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 47
},
"end": {
- "line": 744,
+ "line": 727,
"column": 55
}
}
}
],
"range": [
- 25659,
- 25703
+ 25252,
+ 25296
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 12
},
"end": {
- "line": 744,
+ "line": 727,
"column": 56
}
}
},
"range": [
- 25659,
- 25704
+ 25252,
+ 25297
],
"loc": {
"start": {
- "line": 744,
+ "line": 727,
"column": 12
},
"end": {
- "line": 744,
+ "line": 727,
"column": 57
}
}
@@ -61735,16 +61011,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25717,
- 25720
+ 25310,
+ 25313
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 12
},
"end": {
- "line": 745,
+ "line": 728,
"column": 15
}
}
@@ -61753,31 +61029,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25721,
- 25727
+ 25314,
+ 25320
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 16
},
"end": {
- "line": 745,
+ "line": 728,
"column": 22
}
}
},
"range": [
- 25717,
- 25727
+ 25310,
+ 25320
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 12
},
"end": {
- "line": 745,
+ "line": 728,
"column": 22
}
}
@@ -61787,79 +61063,79 @@
"type": "Identifier",
"name": "btnNextSpan",
"range": [
- 25728,
- 25739
+ 25321,
+ 25332
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 23
},
"end": {
- "line": 745,
+ "line": 728,
"column": 34
}
}
}
],
"range": [
- 25717,
- 25740
+ 25310,
+ 25333
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 12
},
"end": {
- "line": 745,
+ "line": 728,
"column": 35
}
}
},
"range": [
- 25717,
- 25741
+ 25310,
+ 25334
],
"loc": {
"start": {
- "line": 745,
+ "line": 728,
"column": 12
},
"end": {
- "line": 745,
+ "line": 728,
"column": 36
}
}
}
],
"range": [
- 25645,
- 25751
+ 25238,
+ 25344
],
"loc": {
"start": {
- "line": 743,
+ "line": 726,
"column": 23
},
"end": {
- "line": 746,
+ "line": 729,
"column": 9
}
}
},
"alternate": null,
"range": [
- 25630,
- 25751
+ 25223,
+ 25344
],
"loc": {
"start": {
- "line": 743,
+ "line": 726,
"column": 8
},
"end": {
- "line": 746,
+ "line": 729,
"column": 9
}
}
@@ -61870,16 +61146,16 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 25764,
- 25775
+ 25357,
+ 25368
],
"loc": {
"start": {
- "line": 748,
+ "line": 731,
"column": 11
},
"end": {
- "line": 748,
+ "line": 731,
"column": 22
}
}
@@ -61898,16 +61174,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 25790,
- 25795
+ 25383,
+ 25388
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 12
},
"end": {
- "line": 749,
+ "line": 732,
"column": 17
}
}
@@ -61916,31 +61192,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25796,
- 25802
+ 25389,
+ 25395
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 18
},
"end": {
- "line": 749,
+ "line": 732,
"column": 24
}
}
},
"range": [
- 25790,
- 25802
+ 25383,
+ 25395
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 12
},
"end": {
- "line": 749,
+ "line": 732,
"column": 24
}
}
@@ -61950,16 +61226,16 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 25803,
- 25814
+ 25396,
+ 25407
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 25
},
"end": {
- "line": 749,
+ "line": 732,
"column": 36
}
}
@@ -61969,16 +61245,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 25816,
- 25823
+ 25409,
+ 25416
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 38
},
"end": {
- "line": 749,
+ "line": 732,
"column": 45
}
}
@@ -61990,16 +61266,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25825,
- 25828
+ 25418,
+ 25421
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 47
},
"end": {
- "line": 749,
+ "line": 732,
"column": 50
}
}
@@ -62008,62 +61284,62 @@
"type": "Identifier",
"name": "prev",
"range": [
- 25829,
- 25833
+ 25422,
+ 25426
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 51
},
"end": {
- "line": 749,
+ "line": 732,
"column": 55
}
}
},
"range": [
- 25825,
- 25833
+ 25418,
+ 25426
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 47
},
"end": {
- "line": 749,
+ "line": 732,
"column": 55
}
}
}
],
"range": [
- 25790,
- 25834
+ 25383,
+ 25427
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 12
},
"end": {
- "line": 749,
+ "line": 732,
"column": 56
}
}
},
"range": [
- 25790,
- 25835
+ 25383,
+ 25428
],
"loc": {
"start": {
- "line": 749,
+ "line": 732,
"column": 12
},
"end": {
- "line": 749,
+ "line": 732,
"column": 57
}
}
@@ -62079,16 +61355,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25848,
- 25851
+ 25441,
+ 25444
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 12
},
"end": {
- "line": 750,
+ "line": 733,
"column": 15
}
}
@@ -62097,31 +61373,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25852,
- 25858
+ 25445,
+ 25451
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 16
},
"end": {
- "line": 750,
+ "line": 733,
"column": 22
}
}
},
"range": [
- 25848,
- 25858
+ 25441,
+ 25451
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 12
},
"end": {
- "line": 750,
+ "line": 733,
"column": 22
}
}
@@ -62131,79 +61407,79 @@
"type": "Identifier",
"name": "btnPrevSpan",
"range": [
- 25859,
- 25870
+ 25452,
+ 25463
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 23
},
"end": {
- "line": 750,
+ "line": 733,
"column": 34
}
}
}
],
"range": [
- 25848,
- 25871
+ 25441,
+ 25464
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 12
},
"end": {
- "line": 750,
+ "line": 733,
"column": 35
}
}
},
"range": [
- 25848,
- 25872
+ 25441,
+ 25465
],
"loc": {
"start": {
- "line": 750,
+ "line": 733,
"column": 12
},
"end": {
- "line": 750,
+ "line": 733,
"column": 36
}
}
}
],
"range": [
- 25776,
- 25882
+ 25369,
+ 25475
],
"loc": {
"start": {
- "line": 748,
+ "line": 731,
"column": 23
},
"end": {
- "line": 751,
+ "line": 734,
"column": 9
}
}
},
"alternate": null,
"range": [
- 25761,
- 25882
+ 25354,
+ 25475
],
"loc": {
"start": {
- "line": 748,
+ "line": 731,
"column": 8
},
"end": {
- "line": 751,
+ "line": 734,
"column": 9
}
}
@@ -62214,16 +61490,16 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 25895,
- 25906
+ 25488,
+ 25499
],
"loc": {
"start": {
- "line": 753,
+ "line": 736,
"column": 11
},
"end": {
- "line": 753,
+ "line": 736,
"column": 22
}
}
@@ -62242,16 +61518,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 25921,
- 25926
+ 25514,
+ 25519
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 12
},
"end": {
- "line": 754,
+ "line": 737,
"column": 17
}
}
@@ -62260,31 +61536,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25927,
- 25933
+ 25520,
+ 25526
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 18
},
"end": {
- "line": 754,
+ "line": 737,
"column": 24
}
}
},
"range": [
- 25921,
- 25933
+ 25514,
+ 25526
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 12
},
"end": {
- "line": 754,
+ "line": 737,
"column": 24
}
}
@@ -62294,16 +61570,16 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 25934,
- 25945
+ 25527,
+ 25538
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 25
},
"end": {
- "line": 754,
+ "line": 737,
"column": 36
}
}
@@ -62313,16 +61589,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 25947,
- 25954
+ 25540,
+ 25547
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 38
},
"end": {
- "line": 754,
+ "line": 737,
"column": 45
}
}
@@ -62334,16 +61610,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 25956,
- 25959
+ 25549,
+ 25552
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 47
},
"end": {
- "line": 754,
+ "line": 737,
"column": 50
}
}
@@ -62352,62 +61628,62 @@
"type": "Identifier",
"name": "last",
"range": [
- 25960,
- 25964
+ 25553,
+ 25557
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 51
},
"end": {
- "line": 754,
+ "line": 737,
"column": 55
}
}
},
"range": [
- 25956,
- 25964
+ 25549,
+ 25557
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 47
},
"end": {
- "line": 754,
+ "line": 737,
"column": 55
}
}
}
],
"range": [
- 25921,
- 25965
+ 25514,
+ 25558
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 12
},
"end": {
- "line": 754,
+ "line": 737,
"column": 56
}
}
},
"range": [
- 25921,
- 25966
+ 25514,
+ 25559
],
"loc": {
"start": {
- "line": 754,
+ "line": 737,
"column": 12
},
"end": {
- "line": 754,
+ "line": 737,
"column": 57
}
}
@@ -62423,16 +61699,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 25979,
- 25982
+ 25572,
+ 25575
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 12
},
"end": {
- "line": 755,
+ "line": 738,
"column": 15
}
}
@@ -62441,31 +61717,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 25983,
- 25989
+ 25576,
+ 25582
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 16
},
"end": {
- "line": 755,
+ "line": 738,
"column": 22
}
}
},
"range": [
- 25979,
- 25989
+ 25572,
+ 25582
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 12
},
"end": {
- "line": 755,
+ "line": 738,
"column": 22
}
}
@@ -62475,79 +61751,79 @@
"type": "Identifier",
"name": "btnLastSpan",
"range": [
- 25990,
- 26001
+ 25583,
+ 25594
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 23
},
"end": {
- "line": 755,
+ "line": 738,
"column": 34
}
}
}
],
"range": [
- 25979,
- 26002
+ 25572,
+ 25595
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 12
},
"end": {
- "line": 755,
+ "line": 738,
"column": 35
}
}
},
"range": [
- 25979,
- 26003
+ 25572,
+ 25596
],
"loc": {
"start": {
- "line": 755,
+ "line": 738,
"column": 12
},
"end": {
- "line": 755,
+ "line": 738,
"column": 36
}
}
}
],
"range": [
- 25907,
- 26013
+ 25500,
+ 25606
],
"loc": {
"start": {
- "line": 753,
+ "line": 736,
"column": 23
},
"end": {
- "line": 756,
+ "line": 739,
"column": 9
}
}
},
"alternate": null,
"range": [
- 25892,
- 26013
+ 25485,
+ 25606
],
"loc": {
"start": {
- "line": 753,
+ "line": 736,
"column": 8
},
"end": {
- "line": 756,
+ "line": 739,
"column": 9
}
}
@@ -62558,16 +61834,16 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 26026,
- 26038
+ 25619,
+ 25631
],
"loc": {
"start": {
- "line": 758,
+ "line": 741,
"column": 11
},
"end": {
- "line": 758,
+ "line": 741,
"column": 23
}
}
@@ -62586,16 +61862,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 26053,
- 26058
+ 25646,
+ 25651
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 12
},
"end": {
- "line": 759,
+ "line": 742,
"column": 17
}
}
@@ -62604,31 +61880,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 26059,
- 26065
+ 25652,
+ 25658
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 18
},
"end": {
- "line": 759,
+ "line": 742,
"column": 24
}
}
},
"range": [
- 26053,
- 26065
+ 25646,
+ 25658
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 12
},
"end": {
- "line": 759,
+ "line": 742,
"column": 24
}
}
@@ -62638,16 +61914,16 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 26066,
- 26078
+ 25659,
+ 25671
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 25
},
"end": {
- "line": 759,
+ "line": 742,
"column": 37
}
}
@@ -62657,16 +61933,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 26080,
- 26087
+ 25673,
+ 25680
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 39
},
"end": {
- "line": 759,
+ "line": 742,
"column": 46
}
}
@@ -62678,16 +61954,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 26089,
- 26092
+ 25682,
+ 25685
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 48
},
"end": {
- "line": 759,
+ "line": 742,
"column": 51
}
}
@@ -62696,62 +61972,62 @@
"type": "Identifier",
"name": "first",
"range": [
- 26093,
- 26098
+ 25686,
+ 25691
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 52
},
"end": {
- "line": 759,
+ "line": 742,
"column": 57
}
}
},
"range": [
- 26089,
- 26098
+ 25682,
+ 25691
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 48
},
"end": {
- "line": 759,
+ "line": 742,
"column": 57
}
}
}
],
"range": [
- 26053,
- 26099
+ 25646,
+ 25692
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 12
},
"end": {
- "line": 759,
+ "line": 742,
"column": 58
}
}
},
"range": [
- 26053,
- 26100
+ 25646,
+ 25693
],
"loc": {
"start": {
- "line": 759,
+ "line": 742,
"column": 12
},
"end": {
- "line": 759,
+ "line": 742,
"column": 59
}
}
@@ -62767,16 +62043,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 26113,
- 26116
+ 25706,
+ 25709
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 12
},
"end": {
- "line": 760,
+ "line": 743,
"column": 15
}
}
@@ -62785,31 +62061,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 26117,
- 26123
+ 25710,
+ 25716
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 16
},
"end": {
- "line": 760,
+ "line": 743,
"column": 22
}
}
},
"range": [
- 26113,
- 26123
+ 25706,
+ 25716
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 12
},
"end": {
- "line": 760,
+ "line": 743,
"column": 22
}
}
@@ -62819,79 +62095,79 @@
"type": "Identifier",
"name": "btnFirstSpan",
"range": [
- 26124,
- 26136
+ 25717,
+ 25729
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 23
},
"end": {
- "line": 760,
+ "line": 743,
"column": 35
}
}
}
],
"range": [
- 26113,
- 26137
+ 25706,
+ 25730
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 12
},
"end": {
- "line": 760,
+ "line": 743,
"column": 36
}
}
},
"range": [
- 26113,
- 26138
+ 25706,
+ 25731
],
"loc": {
"start": {
- "line": 760,
+ "line": 743,
"column": 12
},
"end": {
- "line": 760,
+ "line": 743,
"column": 37
}
}
}
],
"range": [
- 26039,
- 26148
+ 25632,
+ 25741
],
"loc": {
"start": {
- "line": 758,
+ "line": 741,
"column": 24
},
"end": {
- "line": 761,
+ "line": 744,
"column": 9
}
}
},
"alternate": null,
"range": [
- 26023,
- 26148
+ 25616,
+ 25741
],
"loc": {
"start": {
- "line": 758,
+ "line": 741,
"column": 8
},
"end": {
- "line": 761,
+ "line": 744,
"column": 9
}
}
@@ -62902,16 +62178,16 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 26161,
- 26173
+ 25754,
+ 25766
],
"loc": {
"start": {
- "line": 763,
+ "line": 746,
"column": 11
},
"end": {
- "line": 763,
+ "line": 746,
"column": 23
}
}
@@ -62930,16 +62206,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 26188,
- 26191
+ 25781,
+ 25784
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 12
},
"end": {
- "line": 764,
+ "line": 747,
"column": 15
}
}
@@ -62948,31 +62224,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 26192,
- 26198
+ 25785,
+ 25791
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 16
},
"end": {
- "line": 764,
+ "line": 747,
"column": 22
}
}
},
"range": [
- 26188,
- 26198
+ 25781,
+ 25791
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 12
},
"end": {
- "line": 764,
+ "line": 747,
"column": 22
}
}
@@ -62982,79 +62258,79 @@
"type": "Identifier",
"name": "pgBeforeSpan",
"range": [
- 26199,
- 26211
+ 25792,
+ 25804
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 23
},
"end": {
- "line": 764,
+ "line": 747,
"column": 35
}
}
}
],
"range": [
- 26188,
- 26212
+ 25781,
+ 25805
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 12
},
"end": {
- "line": 764,
+ "line": 747,
"column": 36
}
}
},
"range": [
- 26188,
- 26213
+ 25781,
+ 25806
],
"loc": {
"start": {
- "line": 764,
+ "line": 747,
"column": 12
},
"end": {
- "line": 764,
+ "line": 747,
"column": 37
}
}
}
],
"range": [
- 26174,
- 26223
+ 25767,
+ 25816
],
"loc": {
"start": {
- "line": 763,
+ "line": 746,
"column": 24
},
"end": {
- "line": 765,
+ "line": 748,
"column": 9
}
}
},
"alternate": null,
"range": [
- 26158,
- 26223
+ 25751,
+ 25816
],
"loc": {
"start": {
- "line": 763,
+ "line": 746,
"column": 8
},
"end": {
- "line": 765,
+ "line": 748,
"column": 9
}
}
@@ -63065,16 +62341,16 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 26236,
- 26247
+ 25829,
+ 25840
],
"loc": {
"start": {
- "line": 767,
+ "line": 750,
"column": 11
},
"end": {
- "line": 767,
+ "line": 750,
"column": 22
}
}
@@ -63093,16 +62369,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 26262,
- 26265
+ 25855,
+ 25858
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 12
},
"end": {
- "line": 768,
+ "line": 751,
"column": 15
}
}
@@ -63111,31 +62387,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 26266,
- 26272
+ 25859,
+ 25865
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 16
},
"end": {
- "line": 768,
+ "line": 751,
"column": 22
}
}
},
"range": [
- 26262,
- 26272
+ 25855,
+ 25865
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 12
},
"end": {
- "line": 768,
+ "line": 751,
"column": 22
}
}
@@ -63145,79 +62421,79 @@
"type": "Identifier",
"name": "pgAfterSpan",
"range": [
- 26273,
- 26284
+ 25866,
+ 25877
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 23
},
"end": {
- "line": 768,
+ "line": 751,
"column": 34
}
}
}
],
"range": [
- 26262,
- 26285
+ 25855,
+ 25878
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 12
},
"end": {
- "line": 768,
+ "line": 751,
"column": 35
}
}
},
"range": [
- 26262,
- 26286
+ 25855,
+ 25879
],
"loc": {
"start": {
- "line": 768,
+ "line": 751,
"column": 12
},
"end": {
- "line": 768,
+ "line": 751,
"column": 36
}
}
}
],
"range": [
- 26248,
- 26296
+ 25841,
+ 25889
],
"loc": {
"start": {
- "line": 767,
+ "line": 750,
"column": 23
},
"end": {
- "line": 769,
+ "line": 752,
"column": 9
}
}
},
"alternate": null,
"range": [
- 26233,
- 26296
+ 25826,
+ 25889
],
"loc": {
"start": {
- "line": 767,
+ "line": 750,
"column": 8
},
"end": {
- "line": 769,
+ "line": 752,
"column": 9
}
}
@@ -63228,16 +62504,16 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 26309,
- 26315
+ 25902,
+ 25908
],
"loc": {
"start": {
- "line": 771,
+ "line": 754,
"column": 11
},
"end": {
- "line": 771,
+ "line": 754,
"column": 17
}
}
@@ -63256,16 +62532,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 26330,
- 26333
+ 25923,
+ 25926
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 12
},
"end": {
- "line": 772,
+ "line": 755,
"column": 15
}
}
@@ -63274,31 +62550,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 26334,
- 26340
+ 25927,
+ 25933
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 16
},
"end": {
- "line": 772,
+ "line": 755,
"column": 22
}
}
},
"range": [
- 26330,
- 26340
+ 25923,
+ 25933
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 12
},
"end": {
- "line": 772,
+ "line": 755,
"column": 22
}
}
@@ -63308,79 +62584,79 @@
"type": "Identifier",
"name": "pgspan",
"range": [
- 26341,
- 26347
+ 25934,
+ 25940
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 23
},
"end": {
- "line": 772,
+ "line": 755,
"column": 29
}
}
}
],
"range": [
- 26330,
- 26348
+ 25923,
+ 25941
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 12
},
"end": {
- "line": 772,
+ "line": 755,
"column": 30
}
}
},
"range": [
- 26330,
- 26349
+ 25923,
+ 25942
],
"loc": {
"start": {
- "line": 772,
+ "line": 755,
"column": 12
},
"end": {
- "line": 772,
+ "line": 755,
"column": 31
}
}
}
],
"range": [
- 26316,
- 26359
+ 25909,
+ 25952
],
"loc": {
"start": {
- "line": 771,
+ "line": 754,
"column": 18
},
"end": {
- "line": 773,
+ "line": 756,
"column": 9
}
}
},
"alternate": null,
"range": [
- 26306,
- 26359
+ 25899,
+ 25952
],
"loc": {
"start": {
- "line": 771,
+ "line": 754,
"column": 8
},
"end": {
- "line": 773,
+ "line": 756,
"column": 9
}
}
@@ -63393,16 +62669,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26372,
- 26376
+ 25965,
+ 25969
],
"loc": {
"start": {
- "line": 775,
+ "line": 758,
"column": 11
},
"end": {
- "line": 775,
+ "line": 758,
"column": 15
}
}
@@ -63411,31 +62687,31 @@
"type": "Identifier",
"name": "hasResultsPerPage",
"range": [
- 26377,
- 26394
+ 25970,
+ 25987
],
"loc": {
"start": {
- "line": 775,
+ "line": 758,
"column": 16
},
"end": {
- "line": 775,
+ "line": 758,
"column": 33
}
}
},
"range": [
- 26372,
- 26394
+ 25965,
+ 25987
],
"loc": {
"start": {
- "line": 775,
+ "line": 758,
"column": 11
},
"end": {
- "line": 775,
+ "line": 758,
"column": 33
}
}
@@ -63453,16 +62729,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26409,
- 26413
+ 26002,
+ 26006
],
"loc": {
"start": {
- "line": 776,
+ "line": 759,
"column": 12
},
"end": {
- "line": 776,
+ "line": 759,
"column": 16
}
}
@@ -63471,98 +62747,608 @@
"type": "Identifier",
"name": "removeResultsPerPage",
"range": [
- 26414,
- 26434
+ 26007,
+ 26027
],
"loc": {
"start": {
- "line": 776,
+ "line": 759,
"column": 17
},
"end": {
- "line": 776,
+ "line": 759,
"column": 37
}
}
},
"range": [
- 26409,
- 26434
+ 26002,
+ 26027
],
"loc": {
"start": {
- "line": 776,
+ "line": 759,
"column": 12
},
"end": {
- "line": 776,
+ "line": 759,
"column": 37
}
}
},
"arguments": [],
"range": [
- 26409,
- 26436
+ 26002,
+ 26029
],
"loc": {
"start": {
- "line": 776,
+ "line": 759,
"column": 12
},
"end": {
- "line": 776,
+ "line": 759,
"column": 39
}
}
},
"range": [
- 26409,
- 26437
+ 26002,
+ 26030
],
"loc": {
"start": {
- "line": 776,
+ "line": 759,
"column": 12
},
"end": {
- "line": 776,
+ "line": 759,
"column": 40
}
}
}
],
"range": [
- 26395,
- 26447
+ 25988,
+ 26040
],
"loc": {
"start": {
- "line": 775,
+ "line": 758,
"column": 34
},
"end": {
- "line": 777,
+ "line": 760,
"column": 9
}
}
},
"alternate": null,
"range": [
- 26369,
- 26447
+ 25962,
+ 26040
],
"loc": {
"start": {
- "line": 775,
+ "line": 758,
"column": 8
},
"end": {
- "line": 777,
+ "line": 760,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26050,
+ 26054
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 8
+ },
+ "end": {
+ "line": 762,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 26055,
+ 26062
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 13
+ },
+ "end": {
+ "line": 762,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 26050,
+ 26062
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 8
+ },
+ "end": {
+ "line": 762,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 26063,
+ 26066
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 21
+ },
+ "end": {
+ "line": 762,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 26050,
+ 26066
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 8
+ },
+ "end": {
+ "line": 762,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 26068,
+ 26085
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 26
+ },
+ "end": {
+ "line": 762,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 26067,
+ 26086
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 25
+ },
+ "end": {
+ "line": 762,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26093,
+ 26097
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 51
+ },
+ "end": {
+ "line": 762,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetPagingInfo",
+ "range": [
+ 26098,
+ 26113
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 56
+ },
+ "end": {
+ "line": 762,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 26093,
+ 26113
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 51
+ },
+ "end": {
+ "line": 762,
+ "column": 71
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 26093,
+ 26115
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 51
+ },
+ "end": {
+ "line": 762,
+ "column": 73
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 26088,
+ 26115
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 46
+ },
+ "end": {
+ "line": 762,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 26050,
+ 26116
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 8
+ },
+ "end": {
+ "line": 762,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 26050,
+ 26117
+ ],
+ "loc": {
+ "start": {
+ "line": 762,
+ "column": 8
+ },
+ "end": {
+ "line": 762,
+ "column": 75
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26126,
+ 26130
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 8
+ },
+ "end": {
+ "line": 763,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 26131,
+ 26138
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 13
+ },
+ "end": {
+ "line": 763,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 26126,
+ 26138
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 8
+ },
+ "end": {
+ "line": 763,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 26139,
+ 26142
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 21
+ },
+ "end": {
+ "line": 763,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 26126,
+ 26142
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 8
+ },
+ "end": {
+ "line": 763,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "initialized",
+ "raw": "'initialized'",
+ "range": [
+ 26144,
+ 26157
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 26
+ },
+ "end": {
+ "line": 763,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 26143,
+ 26158
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 25
+ },
+ "end": {
+ "line": 763,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26165,
+ 26169
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 47
+ },
+ "end": {
+ "line": 763,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "resetValues",
+ "range": [
+ 26170,
+ 26181
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 52
+ },
+ "end": {
+ "line": 763,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 26165,
+ 26181
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 47
+ },
+ "end": {
+ "line": 763,
+ "column": 63
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 26165,
+ 26183
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 47
+ },
+ "end": {
+ "line": 763,
+ "column": 65
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 26160,
+ 26183
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 42
+ },
+ "end": {
+ "line": 763,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 26126,
+ 26184
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 8
+ },
+ "end": {
+ "line": 763,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 26126,
+ 26185
+ ],
+ "loc": {
+ "start": {
+ "line": 763,
+ "column": 8
+ },
+ "end": {
+ "line": 763,
+ "column": 67
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -63574,16 +63360,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26457,
- 26461
+ 26195,
+ 26199
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 8
},
"end": {
- "line": 779,
+ "line": 765,
"column": 12
}
}
@@ -63592,31 +63378,31 @@
"type": "Identifier",
"name": "pagingSlc",
"range": [
- 26462,
- 26471
+ 26200,
+ 26209
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 13
},
"end": {
- "line": 779,
+ "line": 765,
"column": 22
}
}
},
"range": [
- 26457,
- 26471
+ 26195,
+ 26209
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 8
},
"end": {
- "line": 779,
+ "line": 765,
"column": 22
}
}
@@ -63626,46 +63412,46 @@
"value": null,
"raw": "null",
"range": [
- 26474,
- 26478
+ 26212,
+ 26216
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 25
},
"end": {
- "line": 779,
+ "line": 765,
"column": 29
}
}
},
"range": [
- 26457,
- 26478
+ 26195,
+ 26216
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 8
},
"end": {
- "line": 779,
+ "line": 765,
"column": 29
}
}
},
"range": [
- 26457,
- 26479
+ 26195,
+ 26217
],
"loc": {
"start": {
- "line": 779,
+ "line": 765,
"column": 8
},
"end": {
- "line": 779,
+ "line": 765,
"column": 30
}
}
@@ -63681,16 +63467,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26488,
- 26492
+ 26226,
+ 26230
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 8
},
"end": {
- "line": 780,
+ "line": 766,
"column": 12
}
}
@@ -63699,31 +63485,31 @@
"type": "Identifier",
"name": "nbPages",
"range": [
- 26493,
- 26500
+ 26231,
+ 26238
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 13
},
"end": {
- "line": 780,
+ "line": 766,
"column": 20
}
}
},
"range": [
- 26488,
- 26500
+ 26226,
+ 26238
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 8
},
"end": {
- "line": 780,
+ "line": 766,
"column": 20
}
}
@@ -63733,46 +63519,46 @@
"value": 0,
"raw": "0",
"range": [
- 26503,
- 26504
+ 26241,
+ 26242
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 23
},
"end": {
- "line": 780,
+ "line": 766,
"column": 24
}
}
},
"range": [
- 26488,
- 26504
+ 26226,
+ 26242
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 8
},
"end": {
- "line": 780,
+ "line": 766,
"column": 24
}
}
},
"range": [
- 26488,
- 26505
+ 26226,
+ 26243
],
"loc": {
"start": {
- "line": 780,
+ "line": 766,
"column": 8
},
"end": {
- "line": 780,
+ "line": 766,
"column": 25
}
}
@@ -63787,16 +63573,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26514,
- 26518
+ 26252,
+ 26256
],
"loc": {
"start": {
- "line": 781,
+ "line": 767,
"column": 8
},
"end": {
- "line": 781,
+ "line": 767,
"column": 12
}
}
@@ -63805,62 +63591,62 @@
"type": "Identifier",
"name": "disable",
"range": [
- 26519,
- 26526
+ 26257,
+ 26264
],
"loc": {
"start": {
- "line": 781,
+ "line": 767,
"column": 13
},
"end": {
- "line": 781,
+ "line": 767,
"column": 20
}
}
},
"range": [
- 26514,
- 26526
+ 26252,
+ 26264
],
"loc": {
"start": {
- "line": 781,
+ "line": 767,
"column": 8
},
"end": {
- "line": 781,
+ "line": 767,
"column": 20
}
}
},
"arguments": [],
"range": [
- 26514,
- 26528
+ 26252,
+ 26266
],
"loc": {
"start": {
- "line": 781,
+ "line": 767,
"column": 8
},
"end": {
- "line": 781,
+ "line": 767,
"column": 22
}
}
},
"range": [
- 26514,
- 26529
+ 26252,
+ 26267
],
"loc": {
"start": {
- "line": 781,
+ "line": 767,
"column": 8
},
"end": {
- "line": 781,
+ "line": 767,
"column": 23
}
}
@@ -63876,16 +63662,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 26538,
- 26542
+ 26276,
+ 26280
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 8
},
"end": {
- "line": 782,
+ "line": 768,
"column": 12
}
}
@@ -63894,31 +63680,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 26543,
- 26554
+ 26281,
+ 26292
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 13
},
"end": {
- "line": 782,
+ "line": 768,
"column": 24
}
}
},
"range": [
- 26538,
- 26554
+ 26276,
+ 26292
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 8
},
"end": {
- "line": 782,
+ "line": 768,
"column": 24
}
}
@@ -63928,62 +63714,62 @@
"value": false,
"raw": "false",
"range": [
- 26557,
- 26562
+ 26295,
+ 26300
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 27
},
"end": {
- "line": 782,
+ "line": 768,
"column": 32
}
}
},
"range": [
- 26538,
- 26562
+ 26276,
+ 26300
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 8
},
"end": {
- "line": 782,
+ "line": 768,
"column": 32
}
}
},
"range": [
- 26538,
- 26563
+ 26276,
+ 26301
],
"loc": {
"start": {
- "line": 782,
+ "line": 768,
"column": 8
},
"end": {
- "line": 782,
+ "line": 768,
"column": 33
}
}
}
],
"range": [
- 24559,
- 26569
+ 24152,
+ 26307
],
"loc": {
"start": {
- "line": 713,
+ "line": 696,
"column": 13
},
"end": {
- "line": 783,
+ "line": 769,
"column": 5
}
}
@@ -63991,16 +63777,16 @@
"generator": false,
"expression": false,
"range": [
- 24557,
- 26569
+ 24150,
+ 26307
],
"loc": {
"start": {
- "line": 713,
+ "line": 696,
"column": 11
},
"end": {
- "line": 783,
+ "line": 769,
"column": 5
}
}
@@ -64008,16 +63794,16 @@
"kind": "method",
"computed": false,
"range": [
- 24550,
- 26569
+ 24143,
+ 26307
],
"loc": {
"start": {
- "line": 713,
+ "line": 696,
"column": 4
},
"end": {
- "line": 783,
+ "line": 769,
"column": 5
}
},
@@ -64026,16 +63812,16 @@
"type": "Block",
"value": "*\n * Remove paging feature\n ",
"range": [
- 24505,
- 24545
+ 24098,
+ 24138
],
"loc": {
"start": {
- "line": 710,
+ "line": 693,
"column": 4
},
"end": {
- "line": 712,
+ "line": 695,
"column": 7
}
}
@@ -64046,7 +63832,7 @@
],
"range": [
186,
- 26571
+ 26309
],
"loc": {
"start": {
@@ -64054,14 +63840,14 @@
"column": 35
},
"end": {
- "line": 784,
+ "line": 770,
"column": 1
}
}
},
"range": [
158,
- 26571
+ 26309
],
"loc": {
"start": {
@@ -64069,7 +63855,7 @@
"column": 7
},
"end": {
- "line": 784,
+ "line": 770,
"column": 1
}
},
@@ -64080,7 +63866,7 @@
"source": null,
"range": [
151,
- 26571
+ 26309
],
"loc": {
"start": {
@@ -64088,7 +63874,7 @@
"column": 0
},
"end": {
- "line": 784,
+ "line": 770,
"column": 1
}
}
@@ -64097,7 +63883,7 @@
"sourceType": "module",
"range": [
0,
- 26571
+ 26309
],
"loc": {
"start": {
@@ -64105,7 +63891,7 @@
"column": 0
},
"end": {
- "line": 784,
+ "line": 770,
"column": 1
}
},
@@ -64942,8 +64728,8 @@
"type": "Line",
"value": "calculates page nb",
"range": [
- 5425,
- 5445
+ 5421,
+ 5441
],
"loc": {
"start": {
@@ -64960,8 +64746,8 @@
"type": "Line",
"value": "Paging elements events",
"range": [
- 5526,
- 5550
+ 5522,
+ 5546
],
"loc": {
"start": {
@@ -64978,8 +64764,8 @@
"type": "Line",
"value": " Paging DOM events",
"range": [
- 5581,
- 5601
+ 5577,
+ 5597
],
"loc": {
"start": {
@@ -64996,8 +64782,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 7107,
- 7149
+ 7103,
+ 7145
],
"loc": {
"start": {
@@ -65014,8 +64800,8 @@
"type": "Line",
"value": " Check resultsPerPage is in expected format and initialise the",
"range": [
- 7308,
- 7372
+ 7304,
+ 7368
],
"loc": {
"start": {
@@ -65032,8 +64818,8 @@
"type": "Line",
"value": " results per page component",
"range": [
- 7381,
- 7410
+ 7377,
+ 7406
],
"loc": {
"start": {
@@ -65050,8 +64836,8 @@
"type": "Line",
"value": " Paging drop-down list selector",
"range": [
- 7838,
- 7871
+ 7834,
+ 7867
],
"loc": {
"start": {
@@ -65068,8 +64854,8 @@
"type": "Line",
"value": " Paging input selector",
"range": [
- 8160,
- 8184
+ 8156,
+ 8180
],
"loc": {
"start": {
@@ -65086,8 +64872,8 @@
"type": "Line",
"value": " btns containers",
"range": [
- 8547,
- 8565
+ 8543,
+ 8561
],
"loc": {
"start": {
@@ -65104,8 +64890,8 @@
"type": "Line",
"value": " Next button",
"range": [
- 8989,
- 9003
+ 8985,
+ 8999
],
"loc": {
"start": {
@@ -65122,8 +64908,8 @@
"type": "Line",
"value": " Previous button",
"range": [
- 9657,
- 9675
+ 9653,
+ 9671
],
"loc": {
"start": {
@@ -65140,8 +64926,8 @@
"type": "Line",
"value": " Last button",
"range": [
- 10333,
- 10347
+ 10329,
+ 10343
],
"loc": {
"start": {
@@ -65158,8 +64944,8 @@
"type": "Line",
"value": " First button",
"range": [
- 11001,
- 11016
+ 10997,
+ 11012
],
"loc": {
"start": {
@@ -65176,8 +64962,8 @@
"type": "Line",
"value": " paging elements (buttons+drop-down list) are added to defined element",
"range": [
- 11691,
- 11763
+ 11687,
+ 11759
],
"loc": {
"start": {
@@ -65194,16 +64980,52 @@
"type": "Block",
"value": "*\n * Reset paging when filters are already instantiated\n * @param {Boolean} filterTable Execute filtering once paging instanciated\n ",
"range": [
- 13162,
- 13310
+ 13301,
+ 13449
],
"loc": {
"start": {
- "line": 340,
+ "line": 343,
"column": 4
},
"end": {
- "line": 343,
+ "line": 346,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " tf.resetValues();",
+ "range": [
+ 13618,
+ 13638
+ ],
+ "loc": {
+ "start": {
+ "line": 354,
+ "column": 8
+ },
+ "end": {
+ "line": 354,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Reset paging info from scratch after a filtering process\n ",
+ "range": [
+ 13710,
+ 13785
+ ],
+ "loc": {
+ "start": {
+ "line": 360,
+ "column": 4
+ },
+ "end": {
+ "line": 362,
"column": 7
}
}
@@ -65212,16 +65034,16 @@
"type": "Block",
"value": "*\n * Calculate number of pages based on valid rows\n * Refresh paging select according to number of pages\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 13585,
- 13764
+ 13937,
+ 14116
],
"loc": {
"start": {
- "line": 357,
+ "line": 369,
"column": 4
},
"end": {
- "line": 361,
+ "line": 373,
"column": 7
}
}
@@ -65230,52 +65052,34 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 13992,
- 14018
+ 14309,
+ 14335
],
"loc": {
"start": {
- "line": 368,
+ "line": 379,
"column": 8
},
"end": {
- "line": 368,
+ "line": 379,
"column": 34
}
}
},
- {
- "type": "Line",
- "value": "counts rows to be grouped",
- "range": [
- 14107,
- 14134
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 12
- },
- "end": {
- "line": 372,
- "column": 39
- }
- }
- },
{
"type": "Line",
"value": "calculate nb of pages",
"range": [
- 14536,
- 14559
+ 14409,
+ 14432
],
"loc": {
"start": {
- "line": 386,
+ "line": 382,
"column": 8
},
"end": {
- "line": 386,
+ "line": 382,
"column": 31
}
}
@@ -65284,16 +65088,16 @@
"type": "Line",
"value": "refresh page nb span",
"range": [
- 14646,
- 14668
+ 14519,
+ 14541
],
"loc": {
"start": {
- "line": 388,
+ "line": 384,
"column": 8
},
"end": {
- "line": 388,
+ "line": 384,
"column": 30
}
}
@@ -65302,16 +65106,16 @@
"type": "Line",
"value": "select clearing shortcut",
"range": [
- 14718,
- 14744
+ 14591,
+ 14617
],
"loc": {
"start": {
- "line": 390,
+ "line": 386,
"column": 8
},
"end": {
- "line": 390,
+ "line": 386,
"column": 34
}
}
@@ -65320,16 +65124,16 @@
"type": "Line",
"value": "input type",
"range": [
- 15220,
- 15232
+ 15093,
+ 15105
],
"loc": {
"start": {
- "line": 403,
+ "line": 399,
"column": 16
},
"end": {
- "line": 403,
+ "line": 399,
"column": 28
}
}
@@ -65338,16 +65142,16 @@
"type": "Block",
"value": "** if no results paging select and buttons are hidden **",
"range": [
- 15336,
- 15396
+ 15209,
+ 15269
],
"loc": {
"start": {
- "line": 408,
+ "line": 404,
"column": 12
},
"end": {
- "line": 408,
+ "line": 404,
"column": 72
}
}
@@ -65356,16 +65160,16 @@
"type": "Block",
"value": "*\n * Group table rows by page and display valid rows\n * @param {Array} validRows Collection of valid rows\n ",
"range": [
- 15509,
- 15633
+ 15382,
+ 15506
],
"loc": {
"start": {
- "line": 414,
+ "line": 410,
"column": 4
},
"end": {
- "line": 417,
+ "line": 413,
"column": 7
}
}
@@ -65374,16 +65178,16 @@
"type": "Line",
"value": "store valid rows indexes",
"range": [
- 15927,
- 15953
+ 15743,
+ 15769
],
"loc": {
"start": {
- "line": 425,
+ "line": 420,
"column": 8
},
"end": {
- "line": 425,
+ "line": 420,
"column": 34
}
}
@@ -65392,35 +65196,35 @@
"type": "Line",
"value": "this loop shows valid rows of current page",
"range": [
- 16039,
- 16083
+ 15855,
+ 15899
],
"loc": {
"start": {
- "line": 430,
+ "line": 425,
"column": 8
},
"end": {
- "line": 430,
+ "line": 425,
"column": 52
}
}
},
{
"type": "Line",
- "value": "re-applies filter behaviours after filtering process",
+ "value": " broadcast grouping by page",
"range": [
- 16903,
- 16957
+ 16611,
+ 16640
],
"loc": {
"start": {
- "line": 452,
+ "line": 445,
"column": 8
},
"end": {
- "line": 452,
- "column": 62
+ "line": 445,
+ "column": 37
}
}
},
@@ -65428,16 +65232,16 @@
"type": "Block",
"value": "*\n * Return the current page number\n * @return {Number} Page number\n ",
"range": [
- 16994,
- 17079
+ 16708,
+ 16793
],
"loc": {
"start": {
- "line": 456,
+ "line": 449,
"column": 4
},
"end": {
- "line": 459,
+ "line": 452,
"column": 7
}
}
@@ -65446,16 +65250,16 @@
"type": "Block",
"value": "*\n * Show page based on passed param value (string or number):\n * @param {String} or {Number} cmd possible string values: 'next',\n * 'previous', 'last', 'first' or page number as per param\n ",
"range": [
- 17141,
- 17351
+ 16855,
+ 17065
],
"loc": {
"start": {
- "line": 464,
+ "line": 457,
"column": 4
},
"end": {
- "line": 468,
+ "line": 461,
"column": 7
}
}
@@ -65464,16 +65268,16 @@
"type": "Block",
"value": "*\n * Generates UI elements for the number of results per page drop-down\n ",
"range": [
- 18166,
- 18251
+ 17880,
+ 17965
],
"loc": {
"start": {
- "line": 500,
+ "line": 493,
"column": 4
},
"end": {
- "line": 502,
+ "line": 495,
"column": 7
}
}
@@ -65482,16 +65286,16 @@
"type": "Line",
"value": " results per page select is added to external element",
"range": [
- 19018,
- 19073
+ 18656,
+ 18711
],
"loc": {
"start": {
- "line": 528,
+ "line": 518,
"column": 8
},
"end": {
- "line": 528,
+ "line": 518,
"column": 63
}
}
@@ -65500,88 +65304,16 @@
"type": "Block",
"value": "*\n * Remove number of results per page UI elements\n ",
"range": [
- 19899,
- 19963
+ 19537,
+ 19601
],
"loc": {
"start": {
- "line": 553,
+ "line": 543,
"column": 4
},
"end": {
- "line": 555,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Change the page asynchronously according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
- "range": [
- 20404,
- 20533
- ],
- "loc": {
- "start": {
- "line": 572,
- "column": 4
- },
- "end": {
- "line": 575,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Change rows asynchronously according to page results\n ",
- "range": [
- 20683,
- 20754
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 4
- },
- "end": {
- "line": 584,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page nb at page re-load\n ",
- "range": [
- 20900,
- 20964
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 4
- },
- "end": {
- "line": 593,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Re-set asynchronously page length at page re-load\n ",
- "range": [
- 21088,
- 21156
- ],
- "loc": {
- "start": {
- "line": 600,
- "column": 4
- },
- "end": {
- "line": 602,
+ "line": 545,
"column": 7
}
}
@@ -65590,16 +65322,16 @@
"type": "Block",
"value": "*\n * Change the page according to passed index\n * @param {Number} index Index of the page (0-n)\n ",
"range": [
- 21292,
- 21406
+ 20042,
+ 20156
],
"loc": {
"start": {
- "line": 609,
+ "line": 562,
"column": 4
},
"end": {
- "line": 612,
+ "line": 565,
"column": 7
}
}
@@ -65608,16 +65340,34 @@
"type": "Block",
"value": "*\n * Change rows according to page results drop-down\n * TODO: accept a parameter setting the results per page length\n ",
"range": [
- 22565,
- 22699
+ 21440,
+ 21574
],
"loc": {
"start": {
- "line": 648,
+ "line": 606,
"column": 4
},
"end": {
- "line": 651,
+ "line": 609,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Re-set persisted pagination info\n ",
+ "range": [
+ 22873,
+ 22924
+ ],
+ "loc": {
+ "start": {
+ "line": 646,
+ "column": 4
+ },
+ "end": {
+ "line": 648,
"column": 7
}
}
@@ -65626,16 +65376,16 @@
"type": "Block",
"value": "*\n * Re-set page nb at page re-load\n ",
"range": [
- 23863,
- 23912
+ 23157,
+ 23206
],
"loc": {
"start": {
- "line": 683,
+ "line": 659,
"column": 4
},
"end": {
- "line": 685,
+ "line": 661,
"column": 7
}
}
@@ -65644,16 +65394,16 @@
"type": "Block",
"value": "*\n * Re-set page length value at page re-load\n ",
"range": [
- 24100,
- 24159
+ 23565,
+ 23624
],
"loc": {
"start": {
- "line": 694,
+ "line": 675,
"column": 4
},
"end": {
- "line": 696,
+ "line": 677,
"column": 7
}
}
@@ -65662,16 +65412,16 @@
"type": "Block",
"value": "*\n * Remove paging feature\n ",
"range": [
- 24505,
- 24545
+ 24098,
+ 24138
],
"loc": {
"start": {
- "line": 710,
+ "line": 693,
"column": 4
},
"end": {
- "line": 712,
+ "line": 695,
"column": 7
}
}
@@ -65680,16 +65430,16 @@
"type": "Line",
"value": " btns containers",
"range": [
- 24657,
- 24675
+ 24250,
+ 24268
],
"loc": {
"start": {
- "line": 719,
+ "line": 702,
"column": 8
},
"end": {
- "line": 719,
+ "line": 702,
"column": 26
}
}
@@ -65698,16 +65448,16 @@
"type": "Line",
"value": "span containing 'Page' text",
"range": [
- 24934,
- 24963
+ 24527,
+ 24556
],
"loc": {
"start": {
- "line": 724,
+ "line": 707,
"column": 8
},
"end": {
- "line": 724,
+ "line": 707,
"column": 37
}
}
@@ -65716,16 +65466,16 @@
"type": "Line",
"value": "span containing 'of' text",
"range": [
- 25036,
- 25063
+ 24629,
+ 24656
],
"loc": {
"start": {
- "line": 726,
+ "line": 709,
"column": 8
},
"end": {
- "line": 726,
+ "line": 709,
"column": 35
}
}
@@ -65734,16 +65484,16 @@
"type": "Line",
"value": "span containing nb of pages",
"range": [
- 25134,
- 25163
+ 24727,
+ 24756
],
"loc": {
"start": {
- "line": 728,
+ "line": 711,
"column": 8
},
"end": {
- "line": 728,
+ "line": 711,
"column": 37
}
}
diff --git a/docs/ast/source/src/modules/popupFilter.js.json b/docs/ast/source/src/modules/popupFilter.js.json
index dd67fe88..d121357e 100644
--- a/docs/ast/source/src/modules/popupFilter.js.json
+++ b/docs/ast/source/src/modules/popupFilter.js.json
@@ -640,10 +640,10 @@
"trailingComments": [
{
"type": "Line",
- "value": " Enable external filters behaviour",
+ "value": " Enable external filters",
"range": [
386,
- 422
+ 412
],
"loc": {
"start": {
@@ -652,7 +652,7 @@
},
"end": {
"line": 18,
- "column": 44
+ "column": 34
}
}
}
@@ -670,8 +670,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 431,
- 433
+ 421,
+ 423
],
"loc": {
"start": {
@@ -688,8 +688,8 @@
"type": "Identifier",
"name": "isExternalFlt",
"range": [
- 434,
- 447
+ 424,
+ 437
],
"loc": {
"start": {
@@ -703,8 +703,8 @@
}
},
"range": [
- 431,
- 447
+ 421,
+ 437
],
"loc": {
"start": {
@@ -722,8 +722,8 @@
"value": true,
"raw": "true",
"range": [
- 450,
- 454
+ 440,
+ 444
],
"loc": {
"start": {
@@ -737,8 +737,8 @@
}
},
"range": [
- 431,
- 454
+ 421,
+ 444
],
"loc": {
"start": {
@@ -752,8 +752,8 @@
}
},
"range": [
- 431,
- 455
+ 421,
+ 445
],
"loc": {
"start": {
@@ -768,10 +768,10 @@
"leadingComments": [
{
"type": "Line",
- "value": " Enable external filters behaviour",
+ "value": " Enable external filters",
"range": [
386,
- 422
+ 412
],
"loc": {
"start": {
@@ -780,7 +780,7 @@
},
"end": {
"line": 18,
- "column": 44
+ "column": 34
}
}
}
@@ -798,8 +798,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 464,
- 466
+ 454,
+ 456
],
"loc": {
"start": {
@@ -816,8 +816,8 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 467,
- 484
+ 457,
+ 474
],
"loc": {
"start": {
@@ -831,8 +831,8 @@
}
},
"range": [
- 464,
- 484
+ 454,
+ 474
],
"loc": {
"start": {
@@ -849,8 +849,8 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 487,
- 489
+ 477,
+ 479
],
"loc": {
"start": {
@@ -864,8 +864,8 @@
}
},
"range": [
- 464,
- 489
+ 454,
+ 479
],
"loc": {
"start": {
@@ -879,8 +879,8 @@
}
},
"range": [
- 464,
- 490
+ 454,
+ 480
],
"loc": {
"start": {
@@ -897,8 +897,8 @@
"type": "Line",
"value": "filter icon path",
"range": [
- 500,
- 518
+ 490,
+ 508
],
"loc": {
"start": {
@@ -924,8 +924,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 527,
- 531
+ 517,
+ 521
],
"loc": {
"start": {
@@ -942,8 +942,8 @@
"type": "Identifier",
"name": "popUpImgFlt",
"range": [
- 532,
- 543
+ 522,
+ 533
],
"loc": {
"start": {
@@ -957,8 +957,8 @@
}
},
"range": [
- 527,
- 543
+ 517,
+ 533
],
"loc": {
"start": {
@@ -981,8 +981,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 546,
- 547
+ 536,
+ 537
],
"loc": {
"start": {
@@ -999,8 +999,8 @@
"type": "Identifier",
"name": "popup_filters_image",
"range": [
- 548,
- 567
+ 538,
+ 557
],
"loc": {
"start": {
@@ -1014,8 +1014,8 @@
}
},
"range": [
- 546,
- 567
+ 536,
+ 557
],
"loc": {
"start": {
@@ -1038,8 +1038,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 583,
- 585
+ 573,
+ 575
],
"loc": {
"start": {
@@ -1056,8 +1056,8 @@
"type": "Identifier",
"name": "themesPath",
"range": [
- 586,
- 596
+ 576,
+ 586
],
"loc": {
"start": {
@@ -1071,8 +1071,8 @@
}
},
"range": [
- 583,
- 596
+ 573,
+ 586
],
"loc": {
"start": {
@@ -1090,8 +1090,8 @@
"value": "icn_filter.gif",
"raw": "'icn_filter.gif'",
"range": [
- 597,
- 613
+ 587,
+ 603
],
"loc": {
"start": {
@@ -1105,8 +1105,8 @@
}
},
"range": [
- 583,
- 613
+ 573,
+ 603
],
"loc": {
"start": {
@@ -1120,8 +1120,8 @@
}
},
"range": [
- 546,
- 613
+ 536,
+ 603
],
"loc": {
"start": {
@@ -1135,8 +1135,8 @@
}
},
"range": [
- 527,
- 613
+ 517,
+ 603
],
"loc": {
"start": {
@@ -1150,8 +1150,8 @@
}
},
"range": [
- 527,
- 614
+ 517,
+ 604
],
"loc": {
"start": {
@@ -1168,8 +1168,8 @@
"type": "Line",
"value": "filter icon path",
"range": [
- 500,
- 518
+ 490,
+ 508
],
"loc": {
"start": {
@@ -1188,8 +1188,8 @@
"type": "Line",
"value": "active filter icon path",
"range": [
- 623,
- 648
+ 613,
+ 638
],
"loc": {
"start": {
@@ -1215,8 +1215,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 657,
- 661
+ 647,
+ 651
],
"loc": {
"start": {
@@ -1233,8 +1233,8 @@
"type": "Identifier",
"name": "popUpImgFltActive",
"range": [
- 662,
- 679
+ 652,
+ 669
],
"loc": {
"start": {
@@ -1248,8 +1248,8 @@
}
},
"range": [
- 657,
- 679
+ 647,
+ 669
],
"loc": {
"start": {
@@ -1272,8 +1272,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 682,
- 683
+ 672,
+ 673
],
"loc": {
"start": {
@@ -1290,8 +1290,8 @@
"type": "Identifier",
"name": "popup_filters_image_active",
"range": [
- 684,
- 710
+ 674,
+ 700
],
"loc": {
"start": {
@@ -1305,8 +1305,8 @@
}
},
"range": [
- 682,
- 710
+ 672,
+ 700
],
"loc": {
"start": {
@@ -1329,8 +1329,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 726,
- 728
+ 716,
+ 718
],
"loc": {
"start": {
@@ -1347,8 +1347,8 @@
"type": "Identifier",
"name": "themesPath",
"range": [
- 729,
- 739
+ 719,
+ 729
],
"loc": {
"start": {
@@ -1362,8 +1362,8 @@
}
},
"range": [
- 726,
- 739
+ 716,
+ 729
],
"loc": {
"start": {
@@ -1381,8 +1381,8 @@
"value": "icn_filterActive.gif",
"raw": "'icn_filterActive.gif'",
"range": [
- 740,
- 762
+ 730,
+ 752
],
"loc": {
"start": {
@@ -1396,8 +1396,8 @@
}
},
"range": [
- 726,
- 762
+ 716,
+ 752
],
"loc": {
"start": {
@@ -1411,8 +1411,8 @@
}
},
"range": [
- 682,
- 762
+ 672,
+ 752
],
"loc": {
"start": {
@@ -1426,8 +1426,8 @@
}
},
"range": [
- 657,
- 762
+ 647,
+ 752
],
"loc": {
"start": {
@@ -1441,8 +1441,8 @@
}
},
"range": [
- 657,
- 763
+ 647,
+ 753
],
"loc": {
"start": {
@@ -1459,8 +1459,8 @@
"type": "Line",
"value": "active filter icon path",
"range": [
- 623,
- 648
+ 613,
+ 638
],
"loc": {
"start": {
@@ -1486,8 +1486,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 772,
- 776
+ 762,
+ 766
],
"loc": {
"start": {
@@ -1504,8 +1504,8 @@
"type": "Identifier",
"name": "popUpImgFltHtml",
"range": [
- 777,
- 792
+ 767,
+ 782
],
"loc": {
"start": {
@@ -1519,8 +1519,8 @@
}
},
"range": [
- 772,
- 792
+ 762,
+ 782
],
"loc": {
"start": {
@@ -1543,8 +1543,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 795,
- 796
+ 785,
+ 786
],
"loc": {
"start": {
@@ -1561,8 +1561,8 @@
"type": "Identifier",
"name": "popup_filters_image_html",
"range": [
- 797,
- 821
+ 787,
+ 811
],
"loc": {
"start": {
@@ -1576,8 +1576,8 @@
}
},
"range": [
- 795,
- 821
+ 785,
+ 811
],
"loc": {
"start": {
@@ -1601,8 +1601,8 @@
"value": " ",
"raw": "'\" alt=\"Column filter\" />'",
"range": [
- 869,
- 895
+ 859,
+ 885
],
"loc": {
"start": {
@@ -1703,8 +1703,8 @@
}
},
"range": [
- 837,
- 895
+ 827,
+ 885
],
"loc": {
"start": {
@@ -1718,8 +1718,8 @@
}
},
"range": [
- 795,
- 895
+ 785,
+ 885
],
"loc": {
"start": {
@@ -1733,8 +1733,8 @@
}
},
"range": [
- 772,
- 895
+ 762,
+ 885
],
"loc": {
"start": {
@@ -1748,8 +1748,8 @@
}
},
"range": [
- 772,
- 896
+ 762,
+ 886
],
"loc": {
"start": {
@@ -1766,8 +1766,8 @@
"type": "Line",
"value": "defines css class for popup div containing filter",
"range": [
- 905,
- 956
+ 895,
+ 946
],
"loc": {
"start": {
@@ -1793,8 +1793,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 965,
- 969
+ 955,
+ 959
],
"loc": {
"start": {
@@ -1811,8 +1811,8 @@
"type": "Identifier",
"name": "popUpDivCssClass",
"range": [
- 970,
- 986
+ 960,
+ 976
],
"loc": {
"start": {
@@ -1826,8 +1826,8 @@
}
},
"range": [
- 965,
- 986
+ 955,
+ 976
],
"loc": {
"start": {
@@ -1850,8 +1850,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 989,
- 990
+ 979,
+ 980
],
"loc": {
"start": {
@@ -1868,8 +1868,8 @@
"type": "Identifier",
"name": "popup_div_css_class",
"range": [
- 991,
- 1010
+ 981,
+ 1000
],
"loc": {
"start": {
@@ -1883,8 +1883,8 @@
}
},
"range": [
- 989,
- 1010
+ 979,
+ 1000
],
"loc": {
"start": {
@@ -1902,8 +1902,8 @@
"value": "popUpFilter",
"raw": "'popUpFilter'",
"range": [
- 1014,
- 1027
+ 1004,
+ 1017
],
"loc": {
"start": {
@@ -1917,8 +1917,8 @@
}
},
"range": [
- 989,
- 1027
+ 979,
+ 1017
],
"loc": {
"start": {
@@ -1932,8 +1932,8 @@
}
},
"range": [
- 965,
- 1027
+ 955,
+ 1017
],
"loc": {
"start": {
@@ -1947,8 +1947,8 @@
}
},
"range": [
- 965,
- 1028
+ 955,
+ 1018
],
"loc": {
"start": {
@@ -1965,8 +1965,8 @@
"type": "Line",
"value": "defines css class for popup div containing filter",
"range": [
- 905,
- 956
+ 895,
+ 946
],
"loc": {
"start": {
@@ -1985,8 +1985,8 @@
"type": "Line",
"value": "callback function before popup filtes is opened",
"range": [
- 1037,
- 1086
+ 1027,
+ 1076
],
"loc": {
"start": {
@@ -2012,8 +2012,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1095,
- 1099
+ 1085,
+ 1089
],
"loc": {
"start": {
@@ -2030,8 +2030,8 @@
"type": "Identifier",
"name": "onBeforePopUpOpen",
"range": [
- 1100,
- 1117
+ 1090,
+ 1107
],
"loc": {
"start": {
@@ -2045,8 +2045,8 @@
}
},
"range": [
- 1095,
- 1117
+ 1085,
+ 1107
],
"loc": {
"start": {
@@ -2070,8 +2070,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1120,
- 1125
+ 1110,
+ 1115
],
"loc": {
"start": {
@@ -2088,8 +2088,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 1126,
- 1130
+ 1116,
+ 1120
],
"loc": {
"start": {
@@ -2103,8 +2103,8 @@
}
},
"range": [
- 1120,
- 1130
+ 1110,
+ 1120
],
"loc": {
"start": {
@@ -2125,8 +2125,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1131,
- 1132
+ 1121,
+ 1122
],
"loc": {
"start": {
@@ -2143,8 +2143,8 @@
"type": "Identifier",
"name": "on_before_popup_filter_open",
"range": [
- 1133,
- 1160
+ 1123,
+ 1150
],
"loc": {
"start": {
@@ -2158,8 +2158,8 @@
}
},
"range": [
- 1131,
- 1160
+ 1121,
+ 1150
],
"loc": {
"start": {
@@ -2174,8 +2174,8 @@
}
],
"range": [
- 1120,
- 1161
+ 1110,
+ 1151
],
"loc": {
"start": {
@@ -2195,8 +2195,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1176,
- 1177
+ 1166,
+ 1167
],
"loc": {
"start": {
@@ -2213,8 +2213,8 @@
"type": "Identifier",
"name": "on_before_popup_filter_open",
"range": [
- 1178,
- 1205
+ 1168,
+ 1195
],
"loc": {
"start": {
@@ -2228,8 +2228,8 @@
}
},
"range": [
- 1176,
- 1205
+ 1166,
+ 1195
],
"loc": {
"start": {
@@ -2247,8 +2247,8 @@
"value": null,
"raw": "null",
"range": [
- 1208,
- 1212
+ 1198,
+ 1202
],
"loc": {
"start": {
@@ -2262,8 +2262,8 @@
}
},
"range": [
- 1120,
- 1212
+ 1110,
+ 1202
],
"loc": {
"start": {
@@ -2277,8 +2277,8 @@
}
},
"range": [
- 1095,
- 1212
+ 1085,
+ 1202
],
"loc": {
"start": {
@@ -2292,8 +2292,8 @@
}
},
"range": [
- 1095,
- 1213
+ 1085,
+ 1203
],
"loc": {
"start": {
@@ -2310,8 +2310,8 @@
"type": "Line",
"value": "callback function before popup filtes is opened",
"range": [
- 1037,
- 1086
+ 1027,
+ 1076
],
"loc": {
"start": {
@@ -2330,8 +2330,8 @@
"type": "Line",
"value": "callback function after popup filtes is opened",
"range": [
- 1222,
- 1270
+ 1212,
+ 1260
],
"loc": {
"start": {
@@ -2357,8 +2357,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1279,
- 1283
+ 1269,
+ 1273
],
"loc": {
"start": {
@@ -2375,8 +2375,8 @@
"type": "Identifier",
"name": "onAfterPopUpOpen",
"range": [
- 1284,
- 1300
+ 1274,
+ 1290
],
"loc": {
"start": {
@@ -2390,8 +2390,8 @@
}
},
"range": [
- 1279,
- 1300
+ 1269,
+ 1290
],
"loc": {
"start": {
@@ -2415,8 +2415,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1303,
- 1308
+ 1293,
+ 1298
],
"loc": {
"start": {
@@ -2433,8 +2433,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 1309,
- 1313
+ 1299,
+ 1303
],
"loc": {
"start": {
@@ -2448,8 +2448,8 @@
}
},
"range": [
- 1303,
- 1313
+ 1293,
+ 1303
],
"loc": {
"start": {
@@ -2470,8 +2470,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1314,
- 1315
+ 1304,
+ 1305
],
"loc": {
"start": {
@@ -2488,8 +2488,8 @@
"type": "Identifier",
"name": "on_after_popup_filter_open",
"range": [
- 1316,
- 1342
+ 1306,
+ 1332
],
"loc": {
"start": {
@@ -2503,8 +2503,8 @@
}
},
"range": [
- 1314,
- 1342
+ 1304,
+ 1332
],
"loc": {
"start": {
@@ -2519,8 +2519,8 @@
}
],
"range": [
- 1303,
- 1343
+ 1293,
+ 1333
],
"loc": {
"start": {
@@ -2540,8 +2540,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1358,
- 1359
+ 1348,
+ 1349
],
"loc": {
"start": {
@@ -2558,8 +2558,8 @@
"type": "Identifier",
"name": "on_after_popup_filter_open",
"range": [
- 1360,
- 1386
+ 1350,
+ 1376
],
"loc": {
"start": {
@@ -2573,8 +2573,8 @@
}
},
"range": [
- 1358,
- 1386
+ 1348,
+ 1376
],
"loc": {
"start": {
@@ -2592,8 +2592,8 @@
"value": null,
"raw": "null",
"range": [
- 1389,
- 1393
+ 1379,
+ 1383
],
"loc": {
"start": {
@@ -2607,8 +2607,8 @@
}
},
"range": [
- 1303,
- 1393
+ 1293,
+ 1383
],
"loc": {
"start": {
@@ -2622,8 +2622,8 @@
}
},
"range": [
- 1279,
- 1393
+ 1269,
+ 1383
],
"loc": {
"start": {
@@ -2637,8 +2637,8 @@
}
},
"range": [
- 1279,
- 1394
+ 1269,
+ 1384
],
"loc": {
"start": {
@@ -2655,8 +2655,8 @@
"type": "Line",
"value": "callback function after popup filtes is opened",
"range": [
- 1222,
- 1270
+ 1212,
+ 1260
],
"loc": {
"start": {
@@ -2675,8 +2675,8 @@
"type": "Line",
"value": "callback function before popup filtes is closed",
"range": [
- 1403,
- 1452
+ 1393,
+ 1442
],
"loc": {
"start": {
@@ -2702,8 +2702,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1461,
- 1465
+ 1451,
+ 1455
],
"loc": {
"start": {
@@ -2720,8 +2720,8 @@
"type": "Identifier",
"name": "onBeforePopUpClose",
"range": [
- 1466,
- 1484
+ 1456,
+ 1474
],
"loc": {
"start": {
@@ -2735,8 +2735,8 @@
}
},
"range": [
- 1461,
- 1484
+ 1451,
+ 1474
],
"loc": {
"start": {
@@ -2760,8 +2760,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1499,
- 1504
+ 1489,
+ 1494
],
"loc": {
"start": {
@@ -2778,8 +2778,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 1505,
- 1509
+ 1495,
+ 1499
],
"loc": {
"start": {
@@ -2793,8 +2793,8 @@
}
},
"range": [
- 1499,
- 1509
+ 1489,
+ 1499
],
"loc": {
"start": {
@@ -2815,8 +2815,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1510,
- 1511
+ 1500,
+ 1501
],
"loc": {
"start": {
@@ -2833,8 +2833,8 @@
"type": "Identifier",
"name": "on_before_popup_filter_close",
"range": [
- 1512,
- 1540
+ 1502,
+ 1530
],
"loc": {
"start": {
@@ -2848,8 +2848,8 @@
}
},
"range": [
- 1510,
- 1540
+ 1500,
+ 1530
],
"loc": {
"start": {
@@ -2864,8 +2864,8 @@
}
],
"range": [
- 1499,
- 1541
+ 1489,
+ 1531
],
"loc": {
"start": {
@@ -2885,8 +2885,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1556,
- 1557
+ 1546,
+ 1547
],
"loc": {
"start": {
@@ -2903,8 +2903,8 @@
"type": "Identifier",
"name": "on_before_popup_filter_close",
"range": [
- 1558,
- 1586
+ 1548,
+ 1576
],
"loc": {
"start": {
@@ -2918,8 +2918,8 @@
}
},
"range": [
- 1556,
- 1586
+ 1546,
+ 1576
],
"loc": {
"start": {
@@ -2937,8 +2937,8 @@
"value": null,
"raw": "null",
"range": [
- 1589,
- 1593
+ 1579,
+ 1583
],
"loc": {
"start": {
@@ -2952,8 +2952,8 @@
}
},
"range": [
- 1499,
- 1593
+ 1489,
+ 1583
],
"loc": {
"start": {
@@ -2967,8 +2967,8 @@
}
},
"range": [
- 1461,
- 1593
+ 1451,
+ 1583
],
"loc": {
"start": {
@@ -2982,8 +2982,8 @@
}
},
"range": [
- 1461,
- 1594
+ 1451,
+ 1584
],
"loc": {
"start": {
@@ -3000,8 +3000,8 @@
"type": "Line",
"value": "callback function before popup filtes is closed",
"range": [
- 1403,
- 1452
+ 1393,
+ 1442
],
"loc": {
"start": {
@@ -3020,8 +3020,8 @@
"type": "Line",
"value": "callback function after popup filtes is closed",
"range": [
- 1603,
- 1651
+ 1593,
+ 1641
],
"loc": {
"start": {
@@ -3047,8 +3047,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1660,
- 1664
+ 1650,
+ 1654
],
"loc": {
"start": {
@@ -3065,8 +3065,8 @@
"type": "Identifier",
"name": "onAfterPopUpClose",
"range": [
- 1665,
- 1682
+ 1655,
+ 1672
],
"loc": {
"start": {
@@ -3080,8 +3080,8 @@
}
},
"range": [
- 1660,
- 1682
+ 1650,
+ 1672
],
"loc": {
"start": {
@@ -3105,8 +3105,8 @@
"type": "Identifier",
"name": "Types",
"range": [
- 1685,
- 1690
+ 1675,
+ 1680
],
"loc": {
"start": {
@@ -3123,8 +3123,8 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 1691,
- 1695
+ 1681,
+ 1685
],
"loc": {
"start": {
@@ -3138,8 +3138,8 @@
}
},
"range": [
- 1685,
- 1695
+ 1675,
+ 1685
],
"loc": {
"start": {
@@ -3160,8 +3160,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1696,
- 1697
+ 1686,
+ 1687
],
"loc": {
"start": {
@@ -3178,8 +3178,8 @@
"type": "Identifier",
"name": "on_after_popup_filter_close",
"range": [
- 1698,
- 1725
+ 1688,
+ 1715
],
"loc": {
"start": {
@@ -3193,8 +3193,8 @@
}
},
"range": [
- 1696,
- 1725
+ 1686,
+ 1715
],
"loc": {
"start": {
@@ -3209,8 +3209,8 @@
}
],
"range": [
- 1685,
- 1726
+ 1675,
+ 1716
],
"loc": {
"start": {
@@ -3230,8 +3230,8 @@
"type": "Identifier",
"name": "f",
"range": [
- 1741,
- 1742
+ 1731,
+ 1732
],
"loc": {
"start": {
@@ -3248,8 +3248,8 @@
"type": "Identifier",
"name": "on_after_popup_filter_close",
"range": [
- 1743,
- 1770
+ 1733,
+ 1760
],
"loc": {
"start": {
@@ -3263,8 +3263,8 @@
}
},
"range": [
- 1741,
- 1770
+ 1731,
+ 1760
],
"loc": {
"start": {
@@ -3282,8 +3282,8 @@
"value": null,
"raw": "null",
"range": [
- 1773,
- 1777
+ 1763,
+ 1767
],
"loc": {
"start": {
@@ -3297,8 +3297,8 @@
}
},
"range": [
- 1685,
- 1777
+ 1675,
+ 1767
],
"loc": {
"start": {
@@ -3312,8 +3312,8 @@
}
},
"range": [
- 1660,
- 1777
+ 1650,
+ 1767
],
"loc": {
"start": {
@@ -3327,8 +3327,8 @@
}
},
"range": [
- 1660,
- 1778
+ 1650,
+ 1768
],
"loc": {
"start": {
@@ -3345,8 +3345,8 @@
"type": "Line",
"value": "callback function after popup filtes is closed",
"range": [
- 1603,
- 1651
+ 1593,
+ 1641
],
"loc": {
"start": {
@@ -3365,8 +3365,8 @@
"type": "Line",
"value": "stores filters spans",
"range": [
- 1788,
- 1810
+ 1778,
+ 1800
],
"loc": {
"start": {
@@ -3392,8 +3392,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1819,
- 1823
+ 1809,
+ 1813
],
"loc": {
"start": {
@@ -3410,8 +3410,8 @@
"type": "Identifier",
"name": "popUpFltSpans",
"range": [
- 1824,
- 1837
+ 1814,
+ 1827
],
"loc": {
"start": {
@@ -3425,8 +3425,8 @@
}
},
"range": [
- 1819,
- 1837
+ 1809,
+ 1827
],
"loc": {
"start": {
@@ -3443,8 +3443,8 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 1840,
- 1842
+ 1830,
+ 1832
],
"loc": {
"start": {
@@ -3458,8 +3458,8 @@
}
},
"range": [
- 1819,
- 1842
+ 1809,
+ 1832
],
"loc": {
"start": {
@@ -3473,8 +3473,8 @@
}
},
"range": [
- 1819,
- 1843
+ 1809,
+ 1833
],
"loc": {
"start": {
@@ -3491,8 +3491,8 @@
"type": "Line",
"value": "stores filters spans",
"range": [
- 1788,
- 1810
+ 1778,
+ 1800
],
"loc": {
"start": {
@@ -3511,8 +3511,8 @@
"type": "Line",
"value": "stores filters icons",
"range": [
- 1852,
- 1874
+ 1842,
+ 1864
],
"loc": {
"start": {
@@ -3538,8 +3538,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1883,
- 1887
+ 1873,
+ 1877
],
"loc": {
"start": {
@@ -3556,8 +3556,8 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 1888,
- 1900
+ 1878,
+ 1890
],
"loc": {
"start": {
@@ -3571,8 +3571,8 @@
}
},
"range": [
- 1883,
- 1900
+ 1873,
+ 1890
],
"loc": {
"start": {
@@ -3589,8 +3589,8 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 1903,
- 1905
+ 1893,
+ 1895
],
"loc": {
"start": {
@@ -3604,8 +3604,8 @@
}
},
"range": [
- 1883,
- 1905
+ 1873,
+ 1895
],
"loc": {
"start": {
@@ -3619,8 +3619,8 @@
}
},
"range": [
- 1883,
- 1906
+ 1873,
+ 1896
],
"loc": {
"start": {
@@ -3637,8 +3637,8 @@
"type": "Line",
"value": "stores filters icons",
"range": [
- 1852,
- 1874
+ 1842,
+ 1864
],
"loc": {
"start": {
@@ -3657,8 +3657,8 @@
"type": "Line",
"value": "stores filters containers",
"range": [
- 1915,
- 1942
+ 1905,
+ 1932
],
"loc": {
"start": {
@@ -3684,8 +3684,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1951,
- 1955
+ 1941,
+ 1945
],
"loc": {
"start": {
@@ -3702,8 +3702,8 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 1956,
- 1968
+ 1946,
+ 1958
],
"loc": {
"start": {
@@ -3717,8 +3717,8 @@
}
},
"range": [
- 1951,
- 1968
+ 1941,
+ 1958
],
"loc": {
"start": {
@@ -3740,8 +3740,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1971,
- 1975
+ 1961,
+ 1965
],
"loc": {
"start": {
@@ -3758,8 +3758,8 @@
"type": "Identifier",
"name": "popUpFltElmCache",
"range": [
- 1976,
- 1992
+ 1966,
+ 1982
],
"loc": {
"start": {
@@ -3773,8 +3773,8 @@
}
},
"range": [
- 1971,
- 1992
+ 1961,
+ 1982
],
"loc": {
"start": {
@@ -3791,8 +3791,8 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 1996,
- 1998
+ 1986,
+ 1988
],
"loc": {
"start": {
@@ -3806,8 +3806,8 @@
}
},
"range": [
- 1971,
- 1998
+ 1961,
+ 1988
],
"loc": {
"start": {
@@ -3821,8 +3821,8 @@
}
},
"range": [
- 1951,
- 1998
+ 1941,
+ 1988
],
"loc": {
"start": {
@@ -3836,8 +3836,8 @@
}
},
"range": [
- 1951,
- 1999
+ 1941,
+ 1989
],
"loc": {
"start": {
@@ -3854,8 +3854,8 @@
"type": "Line",
"value": "stores filters containers",
"range": [
- 1915,
- 1942
+ 1905,
+ 1932
],
"loc": {
"start": {
@@ -3881,8 +3881,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2008,
- 2012
+ 1998,
+ 2002
],
"loc": {
"start": {
@@ -3899,8 +3899,8 @@
"type": "Identifier",
"name": "popUpFltAdjustToContainer",
"range": [
- 2013,
- 2038
+ 2003,
+ 2028
],
"loc": {
"start": {
@@ -3914,8 +3914,8 @@
}
},
"range": [
- 2008,
- 2038
+ 1998,
+ 2028
],
"loc": {
"start": {
@@ -3933,8 +3933,8 @@
"value": true,
"raw": "true",
"range": [
- 2041,
- 2045
+ 2031,
+ 2035
],
"loc": {
"start": {
@@ -3948,8 +3948,8 @@
}
},
"range": [
- 2008,
- 2045
+ 1998,
+ 2035
],
"loc": {
"start": {
@@ -3963,8 +3963,8 @@
}
},
"range": [
- 2008,
- 2046
+ 1998,
+ 2036
],
"loc": {
"start": {
@@ -3981,8 +3981,8 @@
"type": "Line",
"value": "id prefix for pop-up filter span",
"range": [
- 2056,
- 2090
+ 2046,
+ 2080
],
"loc": {
"start": {
@@ -4008,8 +4008,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2099,
- 2103
+ 2089,
+ 2093
],
"loc": {
"start": {
@@ -4026,8 +4026,8 @@
"type": "Identifier",
"name": "prfxPopUpSpan",
"range": [
- 2104,
- 2117
+ 2094,
+ 2107
],
"loc": {
"start": {
@@ -4041,8 +4041,8 @@
}
},
"range": [
- 2099,
- 2117
+ 2089,
+ 2107
],
"loc": {
"start": {
@@ -4060,8 +4060,8 @@
"value": "popUpSpan_",
"raw": "'popUpSpan_'",
"range": [
- 2120,
- 2132
+ 2110,
+ 2122
],
"loc": {
"start": {
@@ -4075,8 +4075,8 @@
}
},
"range": [
- 2099,
- 2132
+ 2089,
+ 2122
],
"loc": {
"start": {
@@ -4090,8 +4090,8 @@
}
},
"range": [
- 2099,
- 2133
+ 2089,
+ 2123
],
"loc": {
"start": {
@@ -4108,8 +4108,8 @@
"type": "Line",
"value": "id prefix for pop-up filter span",
"range": [
- 2056,
- 2090
+ 2046,
+ 2080
],
"loc": {
"start": {
@@ -4128,8 +4128,8 @@
"type": "Line",
"value": "id prefix for pop-up div containing filter",
"range": [
- 2142,
- 2186
+ 2132,
+ 2176
],
"loc": {
"start": {
@@ -4155,8 +4155,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2195,
- 2199
+ 2185,
+ 2189
],
"loc": {
"start": {
@@ -4173,8 +4173,8 @@
"type": "Identifier",
"name": "prfxPopUpDiv",
"range": [
- 2200,
- 2212
+ 2190,
+ 2202
],
"loc": {
"start": {
@@ -4188,8 +4188,8 @@
}
},
"range": [
- 2195,
- 2212
+ 2185,
+ 2202
],
"loc": {
"start": {
@@ -4207,8 +4207,8 @@
"value": "popUpDiv_",
"raw": "'popUpDiv_'",
"range": [
- 2215,
- 2226
+ 2205,
+ 2216
],
"loc": {
"start": {
@@ -4222,8 +4222,8 @@
}
},
"range": [
- 2195,
- 2226
+ 2185,
+ 2216
],
"loc": {
"start": {
@@ -4237,8 +4237,8 @@
}
},
"range": [
- 2195,
- 2227
+ 2185,
+ 2217
],
"loc": {
"start": {
@@ -4255,8 +4255,8 @@
"type": "Line",
"value": "id prefix for pop-up div containing filter",
"range": [
- 2142,
- 2186
+ 2132,
+ 2176
],
"loc": {
"start": {
@@ -4274,7 +4274,7 @@
],
"range": [
278,
- 2233
+ 2223
],
"loc": {
"start": {
@@ -4291,7 +4291,7 @@
"expression": false,
"range": [
274,
- 2233
+ 2223
],
"loc": {
"start": {
@@ -4308,7 +4308,7 @@
"computed": false,
"range": [
263,
- 2233
+ 2223
],
"loc": {
"start": {
@@ -4348,8 +4348,8 @@
"type": "Identifier",
"name": "onClick",
"range": [
- 2239,
- 2246
+ 2229,
+ 2236
],
"loc": {
"start": {
@@ -4370,8 +4370,8 @@
"type": "Identifier",
"name": "e",
"range": [
- 2247,
- 2248
+ 2237,
+ 2238
],
"loc": {
"start": {
@@ -4397,8 +4397,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 2263,
- 2266
+ 2253,
+ 2256
],
"loc": {
"start": {
@@ -4418,8 +4418,8 @@
"type": "Identifier",
"name": "e",
"range": [
- 2269,
- 2270
+ 2259,
+ 2260
],
"loc": {
"start": {
@@ -4439,8 +4439,8 @@
"type": "Identifier",
"name": "global",
"range": [
- 2274,
- 2280
+ 2264,
+ 2270
],
"loc": {
"start": {
@@ -4457,8 +4457,8 @@
"type": "Identifier",
"name": "event",
"range": [
- 2281,
- 2286
+ 2271,
+ 2276
],
"loc": {
"start": {
@@ -4472,8 +4472,8 @@
}
},
"range": [
- 2274,
- 2286
+ 2264,
+ 2276
],
"loc": {
"start": {
@@ -4487,8 +4487,8 @@
}
},
"range": [
- 2269,
- 2286
+ 2259,
+ 2276
],
"loc": {
"start": {
@@ -4502,8 +4502,8 @@
}
},
"range": [
- 2263,
- 2286
+ 2253,
+ 2276
],
"loc": {
"start": {
@@ -4522,8 +4522,8 @@
"type": "Identifier",
"name": "elm",
"range": [
- 2300,
- 2303
+ 2290,
+ 2293
],
"loc": {
"start": {
@@ -4546,8 +4546,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 2306,
- 2309
+ 2296,
+ 2299
],
"loc": {
"start": {
@@ -4564,8 +4564,8 @@
"type": "Identifier",
"name": "target",
"range": [
- 2310,
- 2316
+ 2300,
+ 2306
],
"loc": {
"start": {
@@ -4579,8 +4579,8 @@
}
},
"range": [
- 2306,
- 2316
+ 2296,
+ 2306
],
"loc": {
"start": {
@@ -4597,8 +4597,8 @@
"type": "Identifier",
"name": "parentNode",
"range": [
- 2317,
- 2327
+ 2307,
+ 2317
],
"loc": {
"start": {
@@ -4612,8 +4612,8 @@
}
},
"range": [
- 2306,
- 2327
+ 2296,
+ 2317
],
"loc": {
"start": {
@@ -4627,8 +4627,8 @@
}
},
"range": [
- 2300,
- 2327
+ 2290,
+ 2317
],
"loc": {
"start": {
@@ -4647,8 +4647,8 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2341,
- 2349
+ 2331,
+ 2339
],
"loc": {
"start": {
@@ -4667,8 +4667,8 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 2352,
- 2360
+ 2342,
+ 2350
],
"loc": {
"start": {
@@ -4691,8 +4691,8 @@
"type": "Identifier",
"name": "elm",
"range": [
- 2361,
- 2364
+ 2351,
+ 2354
],
"loc": {
"start": {
@@ -4709,8 +4709,8 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 2365,
- 2377
+ 2355,
+ 2367
],
"loc": {
"start": {
@@ -4724,8 +4724,8 @@
}
},
"range": [
- 2361,
- 2377
+ 2351,
+ 2367
],
"loc": {
"start": {
@@ -4744,8 +4744,8 @@
"value": "ci",
"raw": "'ci'",
"range": [
- 2378,
- 2382
+ 2368,
+ 2372
],
"loc": {
"start": {
@@ -4760,8 +4760,8 @@
}
],
"range": [
- 2361,
- 2383
+ 2351,
+ 2373
],
"loc": {
"start": {
@@ -4779,8 +4779,8 @@
"value": 10,
"raw": "10",
"range": [
- 2385,
- 2387
+ 2375,
+ 2377
],
"loc": {
"start": {
@@ -4795,8 +4795,8 @@
}
],
"range": [
- 2352,
- 2388
+ 2342,
+ 2378
],
"loc": {
"start": {
@@ -4810,8 +4810,8 @@
}
},
"range": [
- 2341,
- 2388
+ 2331,
+ 2378
],
"loc": {
"start": {
@@ -4827,8 +4827,8 @@
],
"kind": "var",
"range": [
- 2259,
- 2389
+ 2249,
+ 2379
],
"loc": {
"start": {
@@ -4851,8 +4851,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2399,
- 2403
+ 2389,
+ 2393
],
"loc": {
"start": {
@@ -4869,8 +4869,8 @@
"type": "Identifier",
"name": "closeAll",
"range": [
- 2404,
- 2412
+ 2394,
+ 2402
],
"loc": {
"start": {
@@ -4884,8 +4884,8 @@
}
},
"range": [
- 2399,
- 2412
+ 2389,
+ 2402
],
"loc": {
"start": {
@@ -4903,8 +4903,8 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2413,
- 2421
+ 2403,
+ 2411
],
"loc": {
"start": {
@@ -4919,8 +4919,8 @@
}
],
"range": [
- 2399,
- 2422
+ 2389,
+ 2412
],
"loc": {
"start": {
@@ -4934,8 +4934,8 @@
}
},
"range": [
- 2399,
- 2423
+ 2389,
+ 2413
],
"loc": {
"start": {
@@ -4958,8 +4958,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2432,
- 2436
+ 2422,
+ 2426
],
"loc": {
"start": {
@@ -4976,8 +4976,8 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 2437,
- 2443
+ 2427,
+ 2433
],
"loc": {
"start": {
@@ -4991,8 +4991,8 @@
}
},
"range": [
- 2432,
- 2443
+ 2422,
+ 2433
],
"loc": {
"start": {
@@ -5010,8 +5010,8 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2444,
- 2452
+ 2434,
+ 2442
],
"loc": {
"start": {
@@ -5026,8 +5026,8 @@
}
],
"range": [
- 2432,
- 2453
+ 2422,
+ 2443
],
"loc": {
"start": {
@@ -5041,8 +5041,8 @@
}
},
"range": [
- 2432,
- 2454
+ 2422,
+ 2444
],
"loc": {
"start": {
@@ -5063,8 +5063,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2467,
- 2471
+ 2457,
+ 2461
],
"loc": {
"start": {
@@ -5081,8 +5081,8 @@
"type": "Identifier",
"name": "popUpFltAdjustToContainer",
"range": [
- 2472,
- 2497
+ 2462,
+ 2487
],
"loc": {
"start": {
@@ -5096,8 +5096,8 @@
}
},
"range": [
- 2467,
- 2497
+ 2457,
+ 2487
],
"loc": {
"start": {
@@ -5122,8 +5122,8 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 2516,
- 2524
+ 2506,
+ 2514
],
"loc": {
"start": {
@@ -5145,8 +5145,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2527,
- 2531
+ 2517,
+ 2521
],
"loc": {
"start": {
@@ -5163,8 +5163,8 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 2532,
- 2544
+ 2522,
+ 2534
],
"loc": {
"start": {
@@ -5178,8 +5178,8 @@
}
},
"range": [
- 2527,
- 2544
+ 2517,
+ 2534
],
"loc": {
"start": {
@@ -5196,8 +5196,8 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2545,
- 2553
+ 2535,
+ 2543
],
"loc": {
"start": {
@@ -5211,8 +5211,8 @@
}
},
"range": [
- 2527,
- 2554
+ 2517,
+ 2544
],
"loc": {
"start": {
@@ -5226,8 +5226,8 @@
}
},
"range": [
- 2516,
- 2554
+ 2506,
+ 2544
],
"loc": {
"start": {
@@ -5246,8 +5246,8 @@
"type": "Identifier",
"name": "header",
"range": [
- 2572,
- 2578
+ 2562,
+ 2568
],
"loc": {
"start": {
@@ -5271,8 +5271,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2581,
- 2585
+ 2571,
+ 2575
],
"loc": {
"start": {
@@ -5289,8 +5289,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2586,
- 2588
+ 2576,
+ 2578
],
"loc": {
"start": {
@@ -5304,8 +5304,8 @@
}
},
"range": [
- 2581,
- 2588
+ 2571,
+ 2578
],
"loc": {
"start": {
@@ -5322,8 +5322,8 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 2589,
- 2605
+ 2579,
+ 2595
],
"loc": {
"start": {
@@ -5337,8 +5337,8 @@
}
},
"range": [
- 2581,
- 2605
+ 2571,
+ 2595
],
"loc": {
"start": {
@@ -5356,8 +5356,8 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 2606,
- 2614
+ 2596,
+ 2604
],
"loc": {
"start": {
@@ -5372,8 +5372,8 @@
}
],
"range": [
- 2581,
- 2615
+ 2571,
+ 2605
],
"loc": {
"start": {
@@ -5387,8 +5387,8 @@
}
},
"range": [
- 2572,
- 2615
+ 2562,
+ 2605
],
"loc": {
"start": {
@@ -5407,8 +5407,8 @@
"type": "Identifier",
"name": "headerWidth",
"range": [
- 2633,
- 2644
+ 2623,
+ 2634
],
"loc": {
"start": {
@@ -5431,8 +5431,8 @@
"type": "Identifier",
"name": "header",
"range": [
- 2647,
- 2653
+ 2637,
+ 2643
],
"loc": {
"start": {
@@ -5449,8 +5449,8 @@
"type": "Identifier",
"name": "clientWidth",
"range": [
- 2654,
- 2665
+ 2644,
+ 2655
],
"loc": {
"start": {
@@ -5464,8 +5464,8 @@
}
},
"range": [
- 2647,
- 2665
+ 2637,
+ 2655
],
"loc": {
"start": {
@@ -5483,8 +5483,8 @@
"value": 0.95,
"raw": "0.95",
"range": [
- 2668,
- 2672
+ 2658,
+ 2662
],
"loc": {
"start": {
@@ -5498,8 +5498,8 @@
}
},
"range": [
- 2647,
- 2672
+ 2637,
+ 2662
],
"loc": {
"start": {
@@ -5513,8 +5513,8 @@
}
},
"range": [
- 2633,
- 2672
+ 2623,
+ 2662
],
"loc": {
"start": {
@@ -5530,8 +5530,8 @@
],
"kind": "var",
"range": [
- 2512,
- 2673
+ 2502,
+ 2663
],
"loc": {
"start": {
@@ -5559,8 +5559,8 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 2686,
- 2694
+ 2676,
+ 2684
],
"loc": {
"start": {
@@ -5577,8 +5577,8 @@
"type": "Identifier",
"name": "style",
"range": [
- 2695,
- 2700
+ 2685,
+ 2690
],
"loc": {
"start": {
@@ -5592,8 +5592,8 @@
}
},
"range": [
- 2686,
- 2700
+ 2676,
+ 2690
],
"loc": {
"start": {
@@ -5610,8 +5610,8 @@
"type": "Identifier",
"name": "width",
"range": [
- 2701,
- 2706
+ 2691,
+ 2696
],
"loc": {
"start": {
@@ -5625,8 +5625,8 @@
}
},
"range": [
- 2686,
- 2706
+ 2676,
+ 2696
],
"loc": {
"start": {
@@ -5648,8 +5648,8 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 2709,
- 2717
+ 2699,
+ 2707
],
"loc": {
"start": {
@@ -5667,8 +5667,8 @@
"type": "Identifier",
"name": "headerWidth",
"range": [
- 2718,
- 2729
+ 2708,
+ 2719
],
"loc": {
"start": {
@@ -5686,8 +5686,8 @@
"value": 10,
"raw": "10",
"range": [
- 2731,
- 2733
+ 2721,
+ 2723
],
"loc": {
"start": {
@@ -5702,8 +5702,8 @@
}
],
"range": [
- 2709,
- 2734
+ 2699,
+ 2724
],
"loc": {
"start": {
@@ -5721,8 +5721,8 @@
"value": "px",
"raw": "'px'",
"range": [
- 2738,
- 2742
+ 2728,
+ 2732
],
"loc": {
"start": {
@@ -5736,8 +5736,8 @@
}
},
"range": [
- 2709,
- 2742
+ 2699,
+ 2732
],
"loc": {
"start": {
@@ -5751,8 +5751,8 @@
}
},
"range": [
- 2686,
- 2742
+ 2676,
+ 2732
],
"loc": {
"start": {
@@ -5766,8 +5766,8 @@
}
},
"range": [
- 2686,
- 2743
+ 2676,
+ 2733
],
"loc": {
"start": {
@@ -5782,8 +5782,8 @@
}
],
"range": [
- 2498,
- 2753
+ 2488,
+ 2743
],
"loc": {
"start": {
@@ -5798,8 +5798,8 @@
},
"alternate": null,
"range": [
- 2464,
- 2753
+ 2454,
+ 2743
],
"loc": {
"start": {
@@ -5823,8 +5823,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 2762,
- 2767
+ 2752,
+ 2757
],
"loc": {
"start": {
@@ -5841,8 +5841,8 @@
"type": "Identifier",
"name": "cancel",
"range": [
- 2768,
- 2774
+ 2758,
+ 2764
],
"loc": {
"start": {
@@ -5856,8 +5856,8 @@
}
},
"range": [
- 2762,
- 2774
+ 2752,
+ 2764
],
"loc": {
"start": {
@@ -5875,8 +5875,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 2775,
- 2778
+ 2765,
+ 2768
],
"loc": {
"start": {
@@ -5891,8 +5891,8 @@
}
],
"range": [
- 2762,
- 2779
+ 2752,
+ 2769
],
"loc": {
"start": {
@@ -5906,8 +5906,8 @@
}
},
"range": [
- 2762,
- 2780
+ 2752,
+ 2770
],
"loc": {
"start": {
@@ -5931,8 +5931,8 @@
"type": "Identifier",
"name": "Event",
"range": [
- 2789,
- 2794
+ 2779,
+ 2784
],
"loc": {
"start": {
@@ -5949,8 +5949,8 @@
"type": "Identifier",
"name": "stop",
"range": [
- 2795,
- 2799
+ 2785,
+ 2789
],
"loc": {
"start": {
@@ -5964,8 +5964,8 @@
}
},
"range": [
- 2789,
- 2799
+ 2779,
+ 2789
],
"loc": {
"start": {
@@ -5983,8 +5983,8 @@
"type": "Identifier",
"name": "evt",
"range": [
- 2800,
- 2803
+ 2790,
+ 2793
],
"loc": {
"start": {
@@ -5999,8 +5999,8 @@
}
],
"range": [
- 2789,
- 2804
+ 2779,
+ 2794
],
"loc": {
"start": {
@@ -6014,8 +6014,8 @@
}
},
"range": [
- 2789,
- 2805
+ 2779,
+ 2795
],
"loc": {
"start": {
@@ -6030,8 +6030,8 @@
}
],
"range": [
- 2249,
- 2811
+ 2239,
+ 2801
],
"loc": {
"start": {
@@ -6047,8 +6047,8 @@
"generator": false,
"expression": false,
"range": [
- 2246,
- 2811
+ 2236,
+ 2801
],
"loc": {
"start": {
@@ -6064,8 +6064,8 @@
"kind": "method",
"computed": false,
"range": [
- 2239,
- 2811
+ 2229,
+ 2801
],
"loc": {
"start": {
@@ -6082,8 +6082,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 2817,
- 2859
+ 2807,
+ 2849
],
"loc": {
"start": {
@@ -6105,8 +6105,8 @@
"type": "Identifier",
"name": "init",
"range": [
- 2864,
- 2868
+ 2854,
+ 2858
],
"loc": {
"start": {
@@ -6134,8 +6134,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2883,
- 2887
+ 2873,
+ 2877
],
"loc": {
"start": {
@@ -6152,8 +6152,8 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2888,
- 2899
+ 2878,
+ 2889
],
"loc": {
"start": {
@@ -6167,8 +6167,8 @@
}
},
"range": [
- 2883,
- 2899
+ 2873,
+ 2889
],
"loc": {
"start": {
@@ -6188,8 +6188,8 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2914,
- 2921
+ 2904,
+ 2911
],
"loc": {
"start": {
@@ -6204,8 +6204,8 @@
}
],
"range": [
- 2900,
- 2931
+ 2890,
+ 2921
],
"loc": {
"start": {
@@ -6220,8 +6220,8 @@
},
"alternate": null,
"range": [
- 2880,
- 2931
+ 2870,
+ 2921
],
"loc": {
"start": {
@@ -6243,8 +6243,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2945,
- 2947
+ 2935,
+ 2937
],
"loc": {
"start": {
@@ -6263,8 +6263,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2950,
- 2954
+ 2940,
+ 2944
],
"loc": {
"start": {
@@ -6281,8 +6281,8 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2955,
- 2957
+ 2945,
+ 2947
],
"loc": {
"start": {
@@ -6296,8 +6296,8 @@
}
},
"range": [
- 2950,
- 2957
+ 2940,
+ 2947
],
"loc": {
"start": {
@@ -6311,8 +6311,8 @@
}
},
"range": [
- 2945,
- 2957
+ 2935,
+ 2947
],
"loc": {
"start": {
@@ -6328,8 +6328,8 @@
],
"kind": "var",
"range": [
- 2941,
- 2958
+ 2931,
+ 2948
],
"loc": {
"start": {
@@ -6340,7 +6340,283 @@
"line": 86,
"column": 25
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Override headers row index if no grouped headers",
+ "range": [
+ 2958,
+ 3009
+ ],
+ "loc": {
+ "start": {
+ "line": 88,
+ "column": 8
+ },
+ "end": {
+ "line": 88,
+ "column": 59
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "<=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3021,
+ 3023
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 11
+ },
+ "end": {
+ "line": 89,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 3024,
+ 3034
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 14
+ },
+ "end": {
+ "line": 89,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3021,
+ 3034
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 11
+ },
+ "end": {
+ "line": 89,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 3038,
+ 3039
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 28
+ },
+ "end": {
+ "line": 89,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3021,
+ 3039
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 11
+ },
+ "end": {
+ "line": 89,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3054,
+ 3056
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 12
+ },
+ "end": {
+ "line": 90,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 3057,
+ 3067
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 15
+ },
+ "end": {
+ "line": 90,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 3054,
+ 3067
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 12
+ },
+ "end": {
+ "line": 90,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 3070,
+ 3071
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 28
+ },
+ "end": {
+ "line": 90,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3054,
+ 3071
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 12
+ },
+ "end": {
+ "line": 90,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3054,
+ 3072
+ ],
+ "loc": {
+ "start": {
+ "line": 90,
+ "column": 12
+ },
+ "end": {
+ "line": 90,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 3040,
+ 3082
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 30
+ },
+ "end": {
+ "line": 91,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 3018,
+ 3082
+ ],
+ "loc": {
+ "start": {
+ "line": 89,
+ "column": 8
+ },
+ "end": {
+ "line": 91,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Override headers row index if no grouped headers",
+ "range": [
+ 2958,
+ 3009
+ ],
+ "loc": {
+ "start": {
+ "line": 88,
+ "column": 8
+ },
+ "end": {
+ "line": 88,
+ "column": 59
+ }
+ }
+ }
+ ]
},
{
"type": "ForStatement",
@@ -6353,16 +6629,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 2975,
- 2976
+ 3100,
+ 3101
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 16
},
"end": {
- "line": 87,
+ "line": 93,
"column": 17
}
}
@@ -6372,31 +6648,31 @@
"value": 0,
"raw": "0",
"range": [
- 2977,
- 2978
+ 3102,
+ 3103
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 18
},
"end": {
- "line": 87,
+ "line": 93,
"column": 19
}
}
},
"range": [
- 2975,
- 2978
+ 3100,
+ 3103
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 16
},
"end": {
- "line": 87,
+ "line": 93,
"column": 19
}
}
@@ -6404,16 +6680,16 @@
],
"kind": "var",
"range": [
- 2971,
- 2978
+ 3096,
+ 3103
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 12
},
"end": {
- "line": 87,
+ "line": 93,
"column": 19
}
}
@@ -6425,16 +6701,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 2980,
- 2981
+ 3105,
+ 3106
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 21
},
"end": {
- "line": 87,
+ "line": 93,
"column": 22
}
}
@@ -6446,16 +6722,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2982,
- 2984
+ 3107,
+ 3109
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 23
},
"end": {
- "line": 87,
+ "line": 93,
"column": 25
}
}
@@ -6464,46 +6740,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 2985,
- 2992
+ 3110,
+ 3117
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 26
},
"end": {
- "line": 87,
+ "line": 93,
"column": 33
}
}
},
"range": [
- 2982,
- 2992
+ 3107,
+ 3117
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 23
},
"end": {
- "line": 87,
+ "line": 93,
"column": 33
}
}
},
"range": [
- 2980,
- 2992
+ 3105,
+ 3117
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 21
},
"end": {
- "line": 87,
+ "line": 93,
"column": 33
}
}
@@ -6515,32 +6791,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 2994,
- 2995
+ 3119,
+ 3120
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 35
},
"end": {
- "line": 87,
+ "line": 93,
"column": 36
}
}
},
"prefix": false,
"range": [
- 2994,
- 2997
+ 3119,
+ 3122
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 35
},
"end": {
- "line": 87,
+ "line": 93,
"column": 38
}
}
@@ -6562,16 +6838,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3015,
- 3017
+ 3140,
+ 3142
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 15
},
"end": {
- "line": 88,
+ "line": 94,
"column": 17
}
}
@@ -6580,31 +6856,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 3018,
- 3031
+ 3143,
+ 3156
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 18
},
"end": {
- "line": 88,
+ "line": 94,
"column": 31
}
}
},
"range": [
- 3015,
- 3031
+ 3140,
+ 3156
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 15
},
"end": {
- "line": 88,
+ "line": 94,
"column": 31
}
}
@@ -6614,32 +6890,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 3032,
- 3033
+ 3157,
+ 3158
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 32
},
"end": {
- "line": 88,
+ "line": 94,
"column": 33
}
}
}
],
"range": [
- 3015,
- 3034
+ 3140,
+ 3159
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 15
},
"end": {
- "line": 88,
+ "line": 94,
"column": 34
}
}
@@ -6651,16 +6927,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3039,
- 3041
+ 3164,
+ 3166
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 39
},
"end": {
- "line": 88,
+ "line": 94,
"column": 41
}
}
@@ -6669,46 +6945,46 @@
"type": "Identifier",
"name": "fltTypeNone",
"range": [
- 3042,
- 3053
+ 3167,
+ 3178
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 42
},
"end": {
- "line": 88,
+ "line": 94,
"column": 53
}
}
},
"range": [
- 3039,
- 3053
+ 3164,
+ 3178
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 39
},
"end": {
- "line": 88,
+ "line": 94,
"column": 53
}
}
},
"range": [
- 3015,
- 3053
+ 3140,
+ 3178
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 15
},
"end": {
- "line": 88,
+ "line": 94,
"column": 53
}
}
@@ -6720,48 +6996,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 3072,
- 3081
+ 3197,
+ 3206
],
"loc": {
"start": {
- "line": 89,
+ "line": 95,
"column": 16
},
"end": {
- "line": 89,
+ "line": 95,
"column": 25
}
}
}
],
"range": [
- 3054,
- 3095
+ 3179,
+ 3220
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 54
},
"end": {
- "line": 90,
+ "line": 96,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3012,
- 3095
+ 3137,
+ 3220
],
"loc": {
"start": {
- "line": 88,
+ "line": 94,
"column": 12
},
"end": {
- "line": 90,
+ "line": 96,
"column": 13
}
}
@@ -6775,16 +7051,16 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3112,
- 3121
+ 3237,
+ 3246
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 16
},
"end": {
- "line": 91,
+ "line": 97,
"column": 25
}
}
@@ -6798,16 +7074,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 3124,
- 3127
+ 3249,
+ 3252
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 28
},
"end": {
- "line": 91,
+ "line": 97,
"column": 31
}
}
@@ -6816,31 +7092,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 3128,
- 3134
+ 3253,
+ 3259
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 32
},
"end": {
- "line": 91,
+ "line": 97,
"column": 38
}
}
},
"range": [
- 3124,
- 3134
+ 3249,
+ 3259
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 28
},
"end": {
- "line": 91,
+ "line": 97,
"column": 38
}
}
@@ -6851,16 +7127,16 @@
"value": "span",
"raw": "'span'",
"range": [
- 3152,
- 3158
+ 3277,
+ 3283
],
"loc": {
"start": {
- "line": 92,
+ "line": 98,
"column": 16
},
"end": {
- "line": 92,
+ "line": 98,
"column": 22
}
}
@@ -6873,16 +7149,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 3177,
- 3181
+ 3302,
+ 3306
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 17
},
"end": {
- "line": 93,
+ "line": 99,
"column": 21
}
}
@@ -6902,16 +7178,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3183,
- 3187
+ 3308,
+ 3312
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 23
},
"end": {
- "line": 93,
+ "line": 99,
"column": 27
}
}
@@ -6920,31 +7196,31 @@
"type": "Identifier",
"name": "prfxPopUpSpan",
"range": [
- 3188,
- 3201
+ 3313,
+ 3326
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 28
},
"end": {
- "line": 93,
+ "line": 99,
"column": 41
}
}
},
"range": [
- 3183,
- 3201
+ 3308,
+ 3326
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 23
},
"end": {
- "line": 93,
+ "line": 99,
"column": 41
}
}
@@ -6956,16 +7232,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3202,
- 3204
+ 3327,
+ 3329
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 42
},
"end": {
- "line": 93,
+ "line": 99,
"column": 44
}
}
@@ -6974,46 +7250,46 @@
"type": "Identifier",
"name": "id",
"range": [
- 3205,
- 3207
+ 3330,
+ 3332
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 45
},
"end": {
- "line": 93,
+ "line": 99,
"column": 47
}
}
},
"range": [
- 3202,
- 3207
+ 3327,
+ 3332
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 42
},
"end": {
- "line": 93,
+ "line": 99,
"column": 47
}
}
},
"range": [
- 3183,
- 3207
+ 3308,
+ 3332
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 23
},
"end": {
- "line": 93,
+ "line": 99,
"column": 47
}
}
@@ -7023,31 +7299,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 3208,
- 3211
+ 3333,
+ 3336
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 48
},
"end": {
- "line": 93,
+ "line": 99,
"column": 51
}
}
},
"range": [
- 3183,
- 3211
+ 3308,
+ 3336
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 23
},
"end": {
- "line": 93,
+ "line": 99,
"column": 51
}
}
@@ -7056,47 +7332,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 3212,
- 3213
+ 3337,
+ 3338
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 52
},
"end": {
- "line": 93,
+ "line": 99,
"column": 53
}
}
},
"range": [
- 3183,
- 3213
+ 3308,
+ 3338
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 23
},
"end": {
- "line": 93,
+ "line": 99,
"column": 53
}
}
}
],
"range": [
- 3176,
- 3214
+ 3301,
+ 3339
],
"loc": {
"start": {
- "line": 93,
+ "line": 99,
"column": 16
},
"end": {
- "line": 93,
+ "line": 99,
"column": 54
}
}
@@ -7109,16 +7385,16 @@
"value": "ci",
"raw": "'ci'",
"range": [
- 3233,
- 3237
+ 3358,
+ 3362
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 17
},
"end": {
- "line": 94,
+ "line": 100,
"column": 21
}
}
@@ -7127,63 +7403,63 @@
"type": "Identifier",
"name": "i",
"range": [
- 3239,
- 3240
+ 3364,
+ 3365
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 23
},
"end": {
- "line": 94,
+ "line": 100,
"column": 24
}
}
}
],
"range": [
- 3232,
- 3241
+ 3357,
+ 3366
],
"loc": {
"start": {
- "line": 94,
+ "line": 100,
"column": 16
},
"end": {
- "line": 94,
+ "line": 100,
"column": 25
}
}
}
],
"range": [
- 3124,
- 3255
+ 3249,
+ 3380
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 28
},
"end": {
- "line": 95,
+ "line": 101,
"column": 13
}
}
},
"range": [
- 3112,
- 3255
+ 3237,
+ 3380
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 16
},
"end": {
- "line": 95,
+ "line": 101,
"column": 13
}
}
@@ -7191,16 +7467,16 @@
],
"kind": "var",
"range": [
- 3108,
- 3256
+ 3233,
+ 3381
],
"loc": {
"start": {
- "line": 91,
+ "line": 97,
"column": 12
},
"end": {
- "line": 95,
+ "line": 101,
"column": 14
}
}
@@ -7217,16 +7493,16 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3269,
- 3278
+ 3394,
+ 3403
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 12
},
"end": {
- "line": 96,
+ "line": 102,
"column": 21
}
}
@@ -7235,31 +7511,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3279,
- 3288
+ 3404,
+ 3413
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 22
},
"end": {
- "line": 96,
+ "line": 102,
"column": 31
}
}
},
"range": [
- 3269,
- 3288
+ 3394,
+ 3413
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 12
},
"end": {
- "line": 96,
+ "line": 102,
"column": 31
}
}
@@ -7270,16 +7546,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3291,
- 3295
+ 3416,
+ 3420
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 34
},
"end": {
- "line": 96,
+ "line": 102,
"column": 38
}
}
@@ -7288,61 +7564,61 @@
"type": "Identifier",
"name": "popUpImgFltHtml",
"range": [
- 3296,
- 3311
+ 3421,
+ 3436
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 39
},
"end": {
- "line": 96,
+ "line": 102,
"column": 54
}
}
},
"range": [
- 3291,
- 3311
+ 3416,
+ 3436
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 34
},
"end": {
- "line": 96,
+ "line": 102,
"column": 54
}
}
},
"range": [
- 3269,
- 3311
+ 3394,
+ 3436
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 12
},
"end": {
- "line": 96,
+ "line": 102,
"column": 54
}
}
},
"range": [
- 3269,
- 3312
+ 3394,
+ 3437
],
"loc": {
"start": {
- "line": 96,
+ "line": 102,
"column": 12
},
"end": {
- "line": 96,
+ "line": 102,
"column": 55
}
}
@@ -7356,16 +7632,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 3329,
- 3335
+ 3454,
+ 3460
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 16
},
"end": {
- "line": 97,
+ "line": 103,
"column": 22
}
}
@@ -7379,16 +7655,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3338,
- 3340
+ 3463,
+ 3465
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 25
},
"end": {
- "line": 97,
+ "line": 103,
"column": 27
}
}
@@ -7397,31 +7673,31 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 3341,
- 3357
+ 3466,
+ 3482
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 28
},
"end": {
- "line": 97,
+ "line": 103,
"column": 44
}
}
},
"range": [
- 3338,
- 3357
+ 3463,
+ 3482
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 25
},
"end": {
- "line": 97,
+ "line": 103,
"column": 44
}
}
@@ -7431,47 +7707,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 3358,
- 3359
+ 3483,
+ 3484
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 45
},
"end": {
- "line": 97,
+ "line": 103,
"column": 46
}
}
}
],
"range": [
- 3338,
- 3360
+ 3463,
+ 3485
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 25
},
"end": {
- "line": 97,
+ "line": 103,
"column": 47
}
}
},
"range": [
- 3329,
- 3360
+ 3454,
+ 3485
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 16
},
"end": {
- "line": 97,
+ "line": 103,
"column": 47
}
}
@@ -7479,16 +7755,16 @@
],
"kind": "var",
"range": [
- 3325,
- 3361
+ 3450,
+ 3486
],
"loc": {
"start": {
- "line": 97,
+ "line": 103,
"column": 12
},
"end": {
- "line": 97,
+ "line": 103,
"column": 48
}
}
@@ -7504,16 +7780,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 3374,
- 3380
+ 3499,
+ 3505
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 12
},
"end": {
- "line": 98,
+ "line": 104,
"column": 18
}
}
@@ -7522,31 +7798,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 3381,
- 3392
+ 3506,
+ 3517
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 19
},
"end": {
- "line": 98,
+ "line": 104,
"column": 30
}
}
},
"range": [
- 3374,
- 3392
+ 3499,
+ 3517
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 12
},
"end": {
- "line": 98,
+ "line": 104,
"column": 30
}
}
@@ -7556,47 +7832,47 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3393,
- 3402
+ 3518,
+ 3527
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 31
},
"end": {
- "line": 98,
+ "line": 104,
"column": 40
}
}
}
],
"range": [
- 3374,
- 3403
+ 3499,
+ 3528
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 12
},
"end": {
- "line": 98,
+ "line": 104,
"column": 41
}
}
},
"range": [
- 3374,
- 3404
+ 3499,
+ 3529
],
"loc": {
"start": {
- "line": 98,
+ "line": 104,
"column": 12
},
"end": {
- "line": 98,
+ "line": 104,
"column": 42
}
}
@@ -7612,16 +7888,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 3417,
- 3422
+ 3542,
+ 3547
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 12
},
"end": {
- "line": 99,
+ "line": 105,
"column": 17
}
}
@@ -7630,31 +7906,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 3423,
- 3426
+ 3548,
+ 3551
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 18
},
"end": {
- "line": 99,
+ "line": 105,
"column": 21
}
}
},
"range": [
- 3417,
- 3426
+ 3542,
+ 3551
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 12
},
"end": {
- "line": 99,
+ "line": 105,
"column": 21
}
}
@@ -7664,16 +7940,16 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3427,
- 3436
+ 3552,
+ 3561
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 22
},
"end": {
- "line": 99,
+ "line": 105,
"column": 31
}
}
@@ -7683,16 +7959,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 3438,
- 3445
+ 3563,
+ 3570
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 33
},
"end": {
- "line": 99,
+ "line": 105,
"column": 40
}
}
@@ -7705,16 +7981,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 3448,
- 3451
+ 3573,
+ 3576
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 43
},
"end": {
- "line": 99,
+ "line": 105,
"column": 46
}
}
@@ -7733,16 +8009,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3458,
- 3462
+ 3583,
+ 3587
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 53
},
"end": {
- "line": 99,
+ "line": 105,
"column": 57
}
}
@@ -7751,31 +8027,31 @@
"type": "Identifier",
"name": "onClick",
"range": [
- 3463,
- 3470
+ 3588,
+ 3595
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 58
},
"end": {
- "line": 99,
+ "line": 105,
"column": 65
}
}
},
"range": [
- 3458,
- 3470
+ 3583,
+ 3595
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 53
},
"end": {
- "line": 99,
+ "line": 105,
"column": 65
}
}
@@ -7785,63 +8061,63 @@
"type": "Identifier",
"name": "evt",
"range": [
- 3471,
- 3474
+ 3596,
+ 3599
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 66
},
"end": {
- "line": 99,
+ "line": 105,
"column": 69
}
}
}
],
"range": [
- 3458,
- 3475
+ 3583,
+ 3600
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 53
},
"end": {
- "line": 99,
+ "line": 105,
"column": 70
}
}
},
"range": [
- 3458,
- 3476
+ 3583,
+ 3601
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 53
},
"end": {
- "line": 99,
+ "line": 105,
"column": 71
}
}
}
],
"range": [
- 3456,
- 3478
+ 3581,
+ 3603
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 51
},
"end": {
- "line": 99,
+ "line": 105,
"column": 73
}
}
@@ -7849,47 +8125,47 @@
"generator": false,
"expression": false,
"range": [
- 3447,
- 3478
+ 3572,
+ 3603
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 42
},
"end": {
- "line": 99,
+ "line": 105,
"column": 73
}
}
}
],
"range": [
- 3417,
- 3479
+ 3542,
+ 3604
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 12
},
"end": {
- "line": 99,
+ "line": 105,
"column": 74
}
}
},
"range": [
- 3417,
- 3480
+ 3542,
+ 3605
],
"loc": {
"start": {
- "line": 99,
+ "line": 105,
"column": 12
},
"end": {
- "line": 99,
+ "line": 105,
"column": 75
}
}
@@ -7908,16 +8184,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3493,
- 3497
+ 3618,
+ 3622
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 12
},
"end": {
- "line": 100,
+ "line": 106,
"column": 16
}
}
@@ -7926,31 +8202,31 @@
"type": "Identifier",
"name": "popUpFltSpans",
"range": [
- 3498,
- 3511
+ 3623,
+ 3636
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 17
},
"end": {
- "line": 100,
+ "line": 106,
"column": 30
}
}
},
"range": [
- 3493,
- 3511
+ 3618,
+ 3636
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 12
},
"end": {
- "line": 100,
+ "line": 106,
"column": 30
}
}
@@ -7959,31 +8235,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 3512,
- 3513
+ 3637,
+ 3638
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 31
},
"end": {
- "line": 100,
+ "line": 106,
"column": 32
}
}
},
"range": [
- 3493,
- 3514
+ 3618,
+ 3639
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 12
},
"end": {
- "line": 100,
+ "line": 106,
"column": 33
}
}
@@ -7992,46 +8268,46 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3517,
- 3526
+ 3642,
+ 3651
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 36
},
"end": {
- "line": 100,
+ "line": 106,
"column": 45
}
}
},
"range": [
- 3493,
- 3526
+ 3618,
+ 3651
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 12
},
"end": {
- "line": 100,
+ "line": 106,
"column": 45
}
}
},
"range": [
- 3493,
- 3527
+ 3618,
+ 3652
],
"loc": {
"start": {
- "line": 100,
+ "line": 106,
"column": 12
},
"end": {
- "line": 100,
+ "line": 106,
"column": 46
}
}
@@ -8050,16 +8326,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3540,
- 3544
+ 3665,
+ 3669
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 12
},
"end": {
- "line": 101,
+ "line": 107,
"column": 16
}
}
@@ -8068,31 +8344,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 3545,
- 3557
+ 3670,
+ 3682
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 17
},
"end": {
- "line": 101,
+ "line": 107,
"column": 29
}
}
},
"range": [
- 3540,
- 3557
+ 3665,
+ 3682
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 12
},
"end": {
- "line": 101,
+ "line": 107,
"column": 29
}
}
@@ -8101,31 +8377,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 3558,
- 3559
+ 3683,
+ 3684
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 30
},
"end": {
- "line": 101,
+ "line": 107,
"column": 31
}
}
},
"range": [
- 3540,
- 3560
+ 3665,
+ 3685
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 12
},
"end": {
- "line": 101,
+ "line": 107,
"column": 32
}
}
@@ -8137,16 +8413,16 @@
"type": "Identifier",
"name": "popUpSpan",
"range": [
- 3563,
- 3572
+ 3688,
+ 3697
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 35
},
"end": {
- "line": 101,
+ "line": 107,
"column": 44
}
}
@@ -8155,94 +8431,1577 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 3573,
- 3583
+ 3698,
+ 3708
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 45
},
"end": {
- "line": 101,
+ "line": 107,
"column": 55
}
}
},
"range": [
- 3563,
- 3583
+ 3688,
+ 3708
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 35
},
"end": {
- "line": 101,
+ "line": 107,
"column": 55
}
}
},
"range": [
- 3540,
- 3583
+ 3665,
+ 3708
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 12
},
"end": {
- "line": 101,
+ "line": 107,
"column": 55
}
}
},
"range": [
- 3540,
- 3584
+ 3665,
+ 3709
],
"loc": {
"start": {
- "line": 101,
+ "line": 107,
"column": 12
},
"end": {
- "line": 101,
+ "line": 107,
"column": 56
}
}
}
],
"range": [
- 2998,
- 3594
+ 3123,
+ 3719
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 39
},
"end": {
- "line": 102,
+ "line": 108,
"column": 9
}
}
},
"range": [
- 2967,
- 3594
+ 3092,
+ 3719
],
"loc": {
"start": {
- "line": 87,
+ "line": 93,
"column": 8
},
"end": {
- "line": 102,
+ "line": 108,
"column": 9
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to events",
+ "range": [
+ 3729,
+ 3751
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 8
+ },
+ "end": {
+ "line": 110,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3760,
+ 3764
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3765,
+ 3772
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 13
+ },
+ "end": {
+ "line": 111,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3760,
+ 3772
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3773,
+ 3775
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 21
+ },
+ "end": {
+ "line": 111,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3760,
+ 3775
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 3777,
+ 3795
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 25
+ },
+ "end": {
+ "line": 111,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 3776,
+ 3796
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 24
+ },
+ "end": {
+ "line": 111,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3803,
+ 3807
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 51
+ },
+ "end": {
+ "line": 111,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "buildIcons",
+ "range": [
+ 3808,
+ 3818
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 56
+ },
+ "end": {
+ "line": 111,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 3803,
+ 3818
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 51
+ },
+ "end": {
+ "line": 111,
+ "column": 66
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3803,
+ 3820
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 51
+ },
+ "end": {
+ "line": 111,
+ "column": 68
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3798,
+ 3820
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 46
+ },
+ "end": {
+ "line": 111,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "range": [
+ 3760,
+ 3821
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 69
+ }
+ }
+ },
+ "range": [
+ 3760,
+ 3822
+ ],
+ "loc": {
+ "start": {
+ "line": 111,
+ "column": 8
+ },
+ "end": {
+ "line": 111,
+ "column": 70
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to events",
+ "range": [
+ 3729,
+ 3751
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 8
+ },
+ "end": {
+ "line": 110,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3831,
+ 3835
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3836,
+ 3843
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 13
+ },
+ "end": {
+ "line": 112,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3831,
+ 3843
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3844,
+ 3846
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 21
+ },
+ "end": {
+ "line": 112,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3831,
+ 3846
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 3848,
+ 3865
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 25
+ },
+ "end": {
+ "line": 112,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 3847,
+ 3866
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 24
+ },
+ "end": {
+ "line": 112,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3873,
+ 3877
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 50
+ },
+ "end": {
+ "line": 112,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "closeAll",
+ "range": [
+ 3878,
+ 3886
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 55
+ },
+ "end": {
+ "line": 112,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 3873,
+ 3886
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 50
+ },
+ "end": {
+ "line": 112,
+ "column": 63
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3873,
+ 3888
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 50
+ },
+ "end": {
+ "line": 112,
+ "column": 65
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3868,
+ 3888
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 45
+ },
+ "end": {
+ "line": 112,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 3831,
+ 3889
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 3831,
+ 3890
+ ],
+ "loc": {
+ "start": {
+ "line": 112,
+ "column": 8
+ },
+ "end": {
+ "line": 112,
+ "column": 67
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3899,
+ 3903
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3904,
+ 3911
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 13
+ },
+ "end": {
+ "line": 113,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3899,
+ 3911
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 3912,
+ 3914
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 21
+ },
+ "end": {
+ "line": 113,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 3899,
+ 3914
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 113,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "cell-processed",
+ "raw": "'cell-processed'",
+ "range": [
+ 3916,
+ 3932
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 25
+ },
+ "end": {
+ "line": 113,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 3915,
+ 3933
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 24
+ },
+ "end": {
+ "line": 113,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3948,
+ 3950
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 13
+ },
+ "end": {
+ "line": 114,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cellIndex",
+ "range": [
+ 3952,
+ 3961
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 17
+ },
+ "end": {
+ "line": 114,
+ "column": 26
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3965,
+ 3969
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 30
+ },
+ "end": {
+ "line": 114,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "buildIcon",
+ "range": [
+ 3970,
+ 3979
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 35
+ },
+ "end": {
+ "line": 114,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 3965,
+ 3979
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 30
+ },
+ "end": {
+ "line": 114,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "cellIndex",
+ "range": [
+ 3980,
+ 3989
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 45
+ },
+ "end": {
+ "line": 114,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 3991,
+ 3995
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 56
+ },
+ "end": {
+ "line": 114,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 3965,
+ 3996
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 30
+ },
+ "end": {
+ "line": 114,
+ "column": 61
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3947,
+ 3996
+ ],
+ "loc": {
+ "start": {
+ "line": 114,
+ "column": 12
+ },
+ "end": {
+ "line": 114,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 3899,
+ 3997
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 114,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 3899,
+ 3998
+ ],
+ "loc": {
+ "start": {
+ "line": 113,
+ "column": 8
+ },
+ "end": {
+ "line": 114,
+ "column": 63
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4007,
+ 4011
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4012,
+ 4019
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 13
+ },
+ "end": {
+ "line": 115,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4007,
+ 4019
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4020,
+ 4022
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 21
+ },
+ "end": {
+ "line": 115,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 4007,
+ 4022
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filters-row-inserted",
+ "raw": "'filters-row-inserted'",
+ "range": [
+ 4024,
+ 4046
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 25
+ },
+ "end": {
+ "line": 115,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 4023,
+ 4047
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 24
+ },
+ "end": {
+ "line": 115,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4054,
+ 4058
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 55
+ },
+ "end": {
+ "line": 115,
+ "column": 59
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4059,
+ 4061
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 60
+ },
+ "end": {
+ "line": 115,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 4054,
+ 4061
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 55
+ },
+ "end": {
+ "line": 115,
+ "column": 62
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 4062,
+ 4072
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 63
+ },
+ "end": {
+ "line": 115,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 4054,
+ 4072
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 55
+ },
+ "end": {
+ "line": 115,
+ "column": 73
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 4054,
+ 4074
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 55
+ },
+ "end": {
+ "line": 115,
+ "column": 75
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4049,
+ 4074
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 50
+ },
+ "end": {
+ "line": 115,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 4007,
+ 4075
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 4007,
+ 4076
+ ],
+ "loc": {
+ "start": {
+ "line": 115,
+ "column": 8
+ },
+ "end": {
+ "line": 115,
+ "column": 77
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4085,
+ 4089
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 116,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4090,
+ 4097
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 13
+ },
+ "end": {
+ "line": 116,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4085,
+ 4097
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 116,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4098,
+ 4100
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 21
+ },
+ "end": {
+ "line": 116,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 4085,
+ 4100
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 116,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filter-init",
+ "raw": "'before-filter-init'",
+ "range": [
+ 4102,
+ 4122
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 25
+ },
+ "end": {
+ "line": 116,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 4101,
+ 4123
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 24
+ },
+ "end": {
+ "line": 116,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4138,
+ 4140
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 13
+ },
+ "end": {
+ "line": 117,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4142,
+ 4150
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 17
+ },
+ "end": {
+ "line": 117,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4154,
+ 4158
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 29
+ },
+ "end": {
+ "line": 117,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 4159,
+ 4164
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 34
+ },
+ "end": {
+ "line": 117,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 4154,
+ 4164
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 29
+ },
+ "end": {
+ "line": 117,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 4165,
+ 4173
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 40
+ },
+ "end": {
+ "line": 117,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 4154,
+ 4174
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 29
+ },
+ "end": {
+ "line": 117,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4137,
+ 4174
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 12
+ },
+ "end": {
+ "line": 117,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 4085,
+ 4175
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 4085,
+ 4176
+ ],
+ "loc": {
+ "start": {
+ "line": 116,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 51
+ }
}
},
{
@@ -8256,16 +10015,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3604,
- 3608
+ 4186,
+ 4190
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 8
},
"end": {
- "line": 104,
+ "line": 119,
"column": 12
}
}
@@ -8274,31 +10033,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 3609,
- 3620
+ 4191,
+ 4202
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 13
},
"end": {
- "line": 104,
+ "line": 119,
"column": 24
}
}
},
"range": [
- 3604,
- 3620
+ 4186,
+ 4202
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 8
},
"end": {
- "line": 104,
+ "line": 119,
"column": 24
}
}
@@ -8308,54 +10067,54 @@
"value": true,
"raw": "true",
"range": [
- 3623,
- 3627
+ 4205,
+ 4209
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 27
},
"end": {
- "line": 104,
+ "line": 119,
"column": 31
}
}
},
"range": [
- 3604,
- 3627
+ 4186,
+ 4209
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 8
},
"end": {
- "line": 104,
+ "line": 119,
"column": 31
}
}
},
"range": [
- 3604,
- 3628
+ 4186,
+ 4210
],
"loc": {
"start": {
- "line": 104,
+ "line": 119,
"column": 8
},
"end": {
- "line": 104,
+ "line": 119,
"column": 32
}
}
}
],
"range": [
- 2870,
- 3634
+ 2860,
+ 4216
],
"loc": {
"start": {
@@ -8363,7 +10122,7 @@
"column": 10
},
"end": {
- "line": 105,
+ "line": 120,
"column": 5
}
}
@@ -8371,8 +10130,8 @@
"generator": false,
"expression": false,
"range": [
- 2868,
- 3634
+ 2858,
+ 4216
],
"loc": {
"start": {
@@ -8380,7 +10139,7 @@
"column": 8
},
"end": {
- "line": 105,
+ "line": 120,
"column": 5
}
}
@@ -8388,8 +10147,8 @@
"kind": "method",
"computed": false,
"range": [
- 2864,
- 3634
+ 2854,
+ 4216
],
"loc": {
"start": {
@@ -8397,7 +10156,7 @@
"column": 4
},
"end": {
- "line": 105,
+ "line": 120,
"column": 5
}
},
@@ -8406,8 +10165,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 2817,
- 2859
+ 2807,
+ 2849
],
"loc": {
"start": {
@@ -8426,16 +10185,16 @@
"type": "Block",
"value": "*\n * Reset previously destroyed feature\n ",
"range": [
- 3640,
- 3693
+ 4222,
+ 4275
],
"loc": {
"start": {
- "line": 107,
+ "line": 122,
"column": 4
},
"end": {
- "line": 109,
+ "line": 124,
"column": 7
}
}
@@ -8449,16 +10208,16 @@
"type": "Identifier",
"name": "reset",
"range": [
- 3698,
- 3703
+ 4280,
+ 4285
],
"loc": {
"start": {
- "line": 110,
+ "line": 125,
"column": 4
},
"end": {
- "line": 110,
+ "line": 125,
"column": 9
}
}
@@ -8480,16 +10239,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3715,
- 3719
+ 4297,
+ 4301
],
"loc": {
"start": {
- "line": 111,
+ "line": 126,
"column": 8
},
"end": {
- "line": 111,
+ "line": 126,
"column": 12
}
}
@@ -8498,62 +10257,62 @@
"type": "Identifier",
"name": "enable",
"range": [
- 3720,
- 3726
+ 4302,
+ 4308
],
"loc": {
"start": {
- "line": 111,
+ "line": 126,
"column": 13
},
"end": {
- "line": 111,
+ "line": 126,
"column": 19
}
}
},
"range": [
- 3715,
- 3726
+ 4297,
+ 4308
],
"loc": {
"start": {
- "line": 111,
+ "line": 126,
"column": 8
},
"end": {
- "line": 111,
+ "line": 126,
"column": 19
}
}
},
"arguments": [],
"range": [
- 3715,
- 3728
+ 4297,
+ 4310
],
"loc": {
"start": {
- "line": 111,
+ "line": 126,
"column": 8
},
"end": {
- "line": 111,
+ "line": 126,
"column": 21
}
}
},
"range": [
- 3715,
- 3729
+ 4297,
+ 4311
],
"loc": {
"start": {
- "line": 111,
+ "line": 126,
"column": 8
},
"end": {
- "line": 111,
+ "line": 126,
"column": 22
}
}
@@ -8568,16 +10327,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3738,
- 3742
+ 4320,
+ 4324
],
"loc": {
"start": {
- "line": 112,
+ "line": 127,
"column": 8
},
"end": {
- "line": 112,
+ "line": 127,
"column": 12
}
}
@@ -8586,62 +10345,62 @@
"type": "Identifier",
"name": "init",
"range": [
- 3743,
- 3747
+ 4325,
+ 4329
],
"loc": {
"start": {
- "line": 112,
+ "line": 127,
"column": 13
},
"end": {
- "line": 112,
+ "line": 127,
"column": 17
}
}
},
"range": [
- 3738,
- 3747
+ 4320,
+ 4329
],
"loc": {
"start": {
- "line": 112,
+ "line": 127,
"column": 8
},
"end": {
- "line": 112,
+ "line": 127,
"column": 17
}
}
},
"arguments": [],
"range": [
- 3738,
- 3749
+ 4320,
+ 4331
],
"loc": {
"start": {
- "line": 112,
+ "line": 127,
"column": 8
},
"end": {
- "line": 112,
+ "line": 127,
"column": 19
}
}
},
"range": [
- 3738,
- 3750
+ 4320,
+ 4332
],
"loc": {
"start": {
- "line": 112,
+ "line": 127,
"column": 8
},
"end": {
- "line": 112,
+ "line": 127,
"column": 20
}
}
@@ -8656,16 +10415,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3759,
- 3763
+ 4341,
+ 4345
],
"loc": {
"start": {
- "line": 113,
+ "line": 128,
"column": 8
},
"end": {
- "line": 113,
+ "line": 128,
"column": 12
}
}
@@ -8674,78 +10433,78 @@
"type": "Identifier",
"name": "buildAll",
"range": [
- 3764,
- 3772
+ 4346,
+ 4354
],
"loc": {
"start": {
- "line": 113,
+ "line": 128,
"column": 13
},
"end": {
- "line": 113,
+ "line": 128,
"column": 21
}
}
},
"range": [
- 3759,
- 3772
+ 4341,
+ 4354
],
"loc": {
"start": {
- "line": 113,
+ "line": 128,
"column": 8
},
"end": {
- "line": 113,
+ "line": 128,
"column": 21
}
}
},
"arguments": [],
"range": [
- 3759,
- 3774
+ 4341,
+ 4356
],
"loc": {
"start": {
- "line": 113,
+ "line": 128,
"column": 8
},
"end": {
- "line": 113,
+ "line": 128,
"column": 23
}
}
},
"range": [
- 3759,
- 3775
+ 4341,
+ 4357
],
"loc": {
"start": {
- "line": 113,
+ "line": 128,
"column": 8
},
"end": {
- "line": 113,
+ "line": 128,
"column": 24
}
}
}
],
"range": [
- 3705,
- 3781
+ 4287,
+ 4363
],
"loc": {
"start": {
- "line": 110,
+ "line": 125,
"column": 11
},
"end": {
- "line": 114,
+ "line": 129,
"column": 5
}
}
@@ -8753,16 +10512,16 @@
"generator": false,
"expression": false,
"range": [
- 3703,
- 3781
+ 4285,
+ 4363
],
"loc": {
"start": {
- "line": 110,
+ "line": 125,
"column": 9
},
"end": {
- "line": 114,
+ "line": 129,
"column": 5
}
}
@@ -8770,16 +10529,16 @@
"kind": "method",
"computed": false,
"range": [
- 3698,
- 3781
+ 4280,
+ 4363
],
"loc": {
"start": {
- "line": 110,
+ "line": 125,
"column": 4
},
"end": {
- "line": 114,
+ "line": 129,
"column": 5
}
},
@@ -8788,16 +10547,16 @@
"type": "Block",
"value": "*\n * Reset previously destroyed feature\n ",
"range": [
- 3640,
- 3693
+ 4222,
+ 4275
],
"loc": {
"start": {
- "line": 107,
+ "line": 122,
"column": 4
},
"end": {
- "line": 109,
+ "line": 124,
"column": 7
}
}
@@ -8808,16 +10567,16 @@
"type": "Block",
"value": "*\n * Build all pop-up filters elements\n ",
"range": [
- 3787,
- 3839
+ 4369,
+ 4421
],
"loc": {
"start": {
- "line": 116,
+ "line": 131,
"column": 4
},
"end": {
- "line": 118,
+ "line": 133,
"column": 7
}
}
@@ -8831,16 +10590,16 @@
"type": "Identifier",
"name": "buildAll",
"range": [
- 3844,
- 3852
+ 4426,
+ 4434
],
"loc": {
"start": {
- "line": 119,
+ "line": 134,
"column": 4
},
"end": {
- "line": 119,
+ "line": 134,
"column": 12
}
}
@@ -8863,16 +10622,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 3872,
- 3873
+ 4454,
+ 4455
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 16
},
"end": {
- "line": 120,
+ "line": 135,
"column": 17
}
}
@@ -8882,31 +10641,31 @@
"value": 0,
"raw": "0",
"range": [
- 3874,
- 3875
+ 4456,
+ 4457
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 18
},
"end": {
- "line": 120,
+ "line": 135,
"column": 19
}
}
},
"range": [
- 3872,
- 3875
+ 4454,
+ 4457
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 16
},
"end": {
- "line": 120,
+ "line": 135,
"column": 19
}
}
@@ -8914,16 +10673,16 @@
],
"kind": "var",
"range": [
- 3868,
- 3875
+ 4450,
+ 4457
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 12
},
"end": {
- "line": 120,
+ "line": 135,
"column": 19
}
}
@@ -8935,16 +10694,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 3877,
- 3878
+ 4459,
+ 4460
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 21
},
"end": {
- "line": 120,
+ "line": 135,
"column": 22
}
}
@@ -8958,16 +10717,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3879,
- 3883
+ 4461,
+ 4465
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 23
},
"end": {
- "line": 120,
+ "line": 135,
"column": 27
}
}
@@ -8976,31 +10735,31 @@
"type": "Identifier",
"name": "popUpFltElmCache",
"range": [
- 3884,
- 3900
+ 4466,
+ 4482
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 28
},
"end": {
- "line": 120,
+ "line": 135,
"column": 44
}
}
},
"range": [
- 3879,
- 3900
+ 4461,
+ 4482
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 23
},
"end": {
- "line": 120,
+ "line": 135,
"column": 44
}
}
@@ -9009,46 +10768,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 3901,
- 3907
+ 4483,
+ 4489
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 45
},
"end": {
- "line": 120,
+ "line": 135,
"column": 51
}
}
},
"range": [
- 3879,
- 3907
+ 4461,
+ 4489
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 23
},
"end": {
- "line": 120,
+ "line": 135,
"column": 51
}
}
},
"range": [
- 3877,
- 3907
+ 4459,
+ 4489
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 21
},
"end": {
- "line": 120,
+ "line": 135,
"column": 51
}
}
@@ -9060,32 +10819,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 3909,
- 3910
+ 4491,
+ 4492
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 53
},
"end": {
- "line": 120,
+ "line": 135,
"column": 54
}
}
},
"prefix": false,
"range": [
- 3909,
- 3912
+ 4491,
+ 4494
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 53
},
"end": {
- "line": 120,
+ "line": 135,
"column": 56
}
}
@@ -9103,16 +10862,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3927,
- 3931
+ 4509,
+ 4513
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 12
},
"end": {
- "line": 121,
+ "line": 136,
"column": 16
}
}
@@ -9121,31 +10880,31 @@
"type": "Identifier",
"name": "build",
"range": [
- 3932,
- 3937
+ 4514,
+ 4519
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 17
},
"end": {
- "line": 121,
+ "line": 136,
"column": 22
}
}
},
"range": [
- 3927,
- 3937
+ 4509,
+ 4519
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 12
},
"end": {
- "line": 121,
+ "line": 136,
"column": 22
}
}
@@ -9155,16 +10914,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 3938,
- 3939
+ 4520,
+ 4521
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 23
},
"end": {
- "line": 121,
+ "line": 136,
"column": 24
}
}
@@ -9178,16 +10937,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3941,
- 3945
+ 4523,
+ 4527
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 26
},
"end": {
- "line": 121,
+ "line": 136,
"column": 30
}
}
@@ -9196,31 +10955,31 @@
"type": "Identifier",
"name": "popUpFltElmCache",
"range": [
- 3946,
- 3962
+ 4528,
+ 4544
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 31
},
"end": {
- "line": 121,
+ "line": 136,
"column": 47
}
}
},
"range": [
- 3941,
- 3962
+ 4523,
+ 4544
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 26
},
"end": {
- "line": 121,
+ "line": 136,
"column": 47
}
}
@@ -9229,109 +10988,109 @@
"type": "Identifier",
"name": "i",
"range": [
- 3963,
- 3964
+ 4545,
+ 4546
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 48
},
"end": {
- "line": 121,
+ "line": 136,
"column": 49
}
}
},
"range": [
- 3941,
- 3965
+ 4523,
+ 4547
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 26
},
"end": {
- "line": 121,
+ "line": 136,
"column": 50
}
}
}
],
"range": [
- 3927,
- 3966
+ 4509,
+ 4548
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 12
},
"end": {
- "line": 121,
+ "line": 136,
"column": 51
}
}
},
"range": [
- 3927,
- 3967
+ 4509,
+ 4549
],
"loc": {
"start": {
- "line": 121,
+ "line": 136,
"column": 12
},
"end": {
- "line": 121,
+ "line": 136,
"column": 52
}
}
}
],
"range": [
- 3913,
- 3977
+ 4495,
+ 4559
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 57
},
"end": {
- "line": 122,
+ "line": 137,
"column": 9
}
}
},
"range": [
- 3864,
- 3977
+ 4446,
+ 4559
],
"loc": {
"start": {
- "line": 120,
+ "line": 135,
"column": 8
},
"end": {
- "line": 122,
+ "line": 137,
"column": 9
}
}
}
],
"range": [
- 3854,
- 3983
+ 4436,
+ 4565
],
"loc": {
"start": {
- "line": 119,
+ "line": 134,
"column": 14
},
"end": {
- "line": 123,
+ "line": 138,
"column": 5
}
}
@@ -9339,16 +11098,16 @@
"generator": false,
"expression": false,
"range": [
- 3852,
- 3983
+ 4434,
+ 4565
],
"loc": {
"start": {
- "line": 119,
+ "line": 134,
"column": 12
},
"end": {
- "line": 123,
+ "line": 138,
"column": 5
}
}
@@ -9356,16 +11115,16 @@
"kind": "method",
"computed": false,
"range": [
- 3844,
- 3983
+ 4426,
+ 4565
],
"loc": {
"start": {
- "line": 119,
+ "line": 134,
"column": 4
},
"end": {
- "line": 123,
+ "line": 138,
"column": 5
}
},
@@ -9374,16 +11133,16 @@
"type": "Block",
"value": "*\n * Build all pop-up filters elements\n ",
"range": [
- 3787,
- 3839
+ 4369,
+ 4421
],
"loc": {
"start": {
- "line": 116,
+ "line": 131,
"column": 4
},
"end": {
- "line": 118,
+ "line": 133,
"column": 7
}
}
@@ -9394,16 +11153,16 @@
"type": "Block",
"value": "*\n * Build a specified pop-up filter elements\n * @param {Number} colIndex Column index\n * @param {Object} div Optional container DOM element\n ",
"range": [
- 3989,
- 4158
+ 4571,
+ 4740
],
"loc": {
"start": {
- "line": 125,
+ "line": 140,
"column": 4
},
"end": {
- "line": 129,
+ "line": 144,
"column": 7
}
}
@@ -9417,16 +11176,16 @@
"type": "Identifier",
"name": "build",
"range": [
- 4163,
- 4168
+ 4745,
+ 4750
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 4
},
"end": {
- "line": 130,
+ "line": 145,
"column": 9
}
}
@@ -9439,16 +11198,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4169,
- 4177
+ 4751,
+ 4759
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 10
},
"end": {
- "line": 130,
+ "line": 145,
"column": 18
}
}
@@ -9457,16 +11216,16 @@
"type": "Identifier",
"name": "div",
"range": [
- 4179,
- 4182
+ 4761,
+ 4764
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 20
},
"end": {
- "line": 130,
+ "line": 145,
"column": 23
}
}
@@ -9484,16 +11243,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4197,
- 4199
+ 4779,
+ 4781
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 12
},
"end": {
- "line": 131,
+ "line": 146,
"column": 14
}
}
@@ -9504,16 +11263,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4202,
- 4206
+ 4784,
+ 4788
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 17
},
"end": {
- "line": 131,
+ "line": 146,
"column": 21
}
}
@@ -9522,46 +11281,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4207,
- 4209
+ 4789,
+ 4791
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 22
},
"end": {
- "line": 131,
+ "line": 146,
"column": 24
}
}
},
"range": [
- 4202,
- 4209
+ 4784,
+ 4791
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 17
},
"end": {
- "line": 131,
+ "line": 146,
"column": 24
}
}
},
"range": [
- 4197,
- 4209
+ 4779,
+ 4791
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 12
},
"end": {
- "line": 131,
+ "line": 146,
"column": 24
}
}
@@ -9569,16 +11328,16 @@
],
"kind": "var",
"range": [
- 4193,
- 4210
+ 4775,
+ 4792
],
"loc": {
"start": {
- "line": 131,
+ "line": 146,
"column": 8
},
"end": {
- "line": 131,
+ "line": 146,
"column": 25
}
}
@@ -9592,16 +11351,16 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4223,
- 4231
+ 4805,
+ 4813
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 12
},
"end": {
- "line": 132,
+ "line": 147,
"column": 20
}
}
@@ -9615,32 +11374,32 @@
"type": "Identifier",
"name": "div",
"range": [
- 4235,
- 4238
+ 4817,
+ 4820
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 24
},
"end": {
- "line": 132,
+ "line": 147,
"column": 27
}
}
},
"prefix": true,
"range": [
- 4234,
- 4238
+ 4816,
+ 4820
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 23
},
"end": {
- "line": 132,
+ "line": 147,
"column": 27
}
}
@@ -9654,16 +11413,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4253,
- 4256
+ 4835,
+ 4838
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 12
},
"end": {
- "line": 133,
+ "line": 148,
"column": 15
}
}
@@ -9672,31 +11431,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 4257,
- 4263
+ 4839,
+ 4845
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 16
},
"end": {
- "line": 133,
+ "line": 148,
"column": 22
}
}
},
"range": [
- 4253,
- 4263
+ 4835,
+ 4845
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 12
},
"end": {
- "line": 133,
+ "line": 148,
"column": 22
}
}
@@ -9707,16 +11466,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 4264,
- 4269
+ 4846,
+ 4851
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 23
},
"end": {
- "line": 133,
+ "line": 148,
"column": 28
}
}
@@ -9729,16 +11488,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 4272,
- 4276
+ 4854,
+ 4858
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 31
},
"end": {
- "line": 133,
+ "line": 148,
"column": 35
}
}
@@ -9758,16 +11517,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4278,
- 4282
+ 4860,
+ 4864
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 37
},
"end": {
- "line": 133,
+ "line": 148,
"column": 41
}
}
@@ -9776,31 +11535,31 @@
"type": "Identifier",
"name": "prfxPopUpDiv",
"range": [
- 4283,
- 4295
+ 4865,
+ 4877
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 42
},
"end": {
- "line": 133,
+ "line": 148,
"column": 54
}
}
},
"range": [
- 4278,
- 4295
+ 4860,
+ 4877
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 37
},
"end": {
- "line": 133,
+ "line": 148,
"column": 54
}
}
@@ -9812,16 +11571,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4296,
- 4298
+ 4878,
+ 4880
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 55
},
"end": {
- "line": 133,
+ "line": 148,
"column": 57
}
}
@@ -9830,46 +11589,46 @@
"type": "Identifier",
"name": "id",
"range": [
- 4299,
- 4301
+ 4881,
+ 4883
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 58
},
"end": {
- "line": 133,
+ "line": 148,
"column": 60
}
}
},
"range": [
- 4296,
- 4301
+ 4878,
+ 4883
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 55
},
"end": {
- "line": 133,
+ "line": 148,
"column": 60
}
}
},
"range": [
- 4278,
- 4301
+ 4860,
+ 4883
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 37
},
"end": {
- "line": 133,
+ "line": 148,
"column": 60
}
}
@@ -9879,31 +11638,31 @@
"value": "_",
"raw": "'_'",
"range": [
- 4302,
- 4305
+ 4884,
+ 4887
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 61
},
"end": {
- "line": 133,
+ "line": 148,
"column": 64
}
}
},
"range": [
- 4278,
- 4305
+ 4860,
+ 4887
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 37
},
"end": {
- "line": 133,
+ "line": 148,
"column": 64
}
}
@@ -9912,63 +11671,63 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4306,
- 4314
+ 4888,
+ 4896
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 65
},
"end": {
- "line": 133,
+ "line": 148,
"column": 73
}
}
},
"range": [
- 4278,
- 4314
+ 4860,
+ 4896
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 37
},
"end": {
- "line": 133,
+ "line": 148,
"column": 73
}
}
}
],
"range": [
- 4271,
- 4315
+ 4853,
+ 4897
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 30
},
"end": {
- "line": 133,
+ "line": 148,
"column": 74
}
}
}
],
"range": [
- 4253,
- 4316
+ 4835,
+ 4898
],
"loc": {
"start": {
- "line": 133,
+ "line": 148,
"column": 12
},
"end": {
- "line": 133,
+ "line": 148,
"column": 75
}
}
@@ -9977,46 +11736,46 @@
"type": "Identifier",
"name": "div",
"range": [
- 4331,
- 4334
+ 4913,
+ 4916
],
"loc": {
"start": {
- "line": 134,
+ "line": 149,
"column": 12
},
"end": {
- "line": 134,
+ "line": 149,
"column": 15
}
}
},
"range": [
- 4234,
- 4334
+ 4816,
+ 4916
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 23
},
"end": {
- "line": 134,
+ "line": 149,
"column": 15
}
}
},
"range": [
- 4223,
- 4334
+ 4805,
+ 4916
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 12
},
"end": {
- "line": 134,
+ "line": 149,
"column": 15
}
}
@@ -10024,16 +11783,16 @@
],
"kind": "var",
"range": [
- 4219,
- 4335
+ 4801,
+ 4917
],
"loc": {
"start": {
- "line": 132,
+ "line": 147,
"column": 8
},
"end": {
- "line": 134,
+ "line": 149,
"column": 16
}
}
@@ -10050,16 +11809,16 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4344,
- 4352
+ 4926,
+ 4934
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 8
},
"end": {
- "line": 135,
+ "line": 150,
"column": 16
}
}
@@ -10068,31 +11827,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 4353,
- 4362
+ 4935,
+ 4944
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 17
},
"end": {
- "line": 135,
+ "line": 150,
"column": 26
}
}
},
"range": [
- 4344,
- 4362
+ 4926,
+ 4944
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 8
},
"end": {
- "line": 135,
+ "line": 150,
"column": 26
}
}
@@ -10103,16 +11862,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4365,
- 4369
+ 4947,
+ 4951
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 29
},
"end": {
- "line": 135,
+ "line": 150,
"column": 33
}
}
@@ -10121,61 +11880,61 @@
"type": "Identifier",
"name": "popUpDivCssClass",
"range": [
- 4370,
- 4386
+ 4952,
+ 4968
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 34
},
"end": {
- "line": 135,
+ "line": 150,
"column": 50
}
}
},
"range": [
- 4365,
- 4386
+ 4947,
+ 4968
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 29
},
"end": {
- "line": 135,
+ "line": 150,
"column": 50
}
}
},
"range": [
- 4344,
- 4386
+ 4926,
+ 4968
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 8
},
"end": {
- "line": 135,
+ "line": 150,
"column": 50
}
}
},
"range": [
- 4344,
- 4387
+ 4926,
+ 4969
],
"loc": {
"start": {
- "line": 135,
+ "line": 150,
"column": 8
},
"end": {
- "line": 135,
+ "line": 150,
"column": 51
}
}
@@ -10194,16 +11953,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4396,
- 4398
+ 4978,
+ 4980
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 8
},
"end": {
- "line": 136,
+ "line": 151,
"column": 10
}
}
@@ -10212,31 +11971,31 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 4399,
- 4416
+ 4981,
+ 4998
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 11
},
"end": {
- "line": 136,
+ "line": 151,
"column": 28
}
}
},
"range": [
- 4396,
- 4416
+ 4978,
+ 4998
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 8
},
"end": {
- "line": 136,
+ "line": 151,
"column": 28
}
}
@@ -10245,31 +12004,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 4417,
- 4421
+ 4999,
+ 5003
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 29
},
"end": {
- "line": 136,
+ "line": 151,
"column": 33
}
}
},
"range": [
- 4396,
- 4421
+ 4978,
+ 5003
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 8
},
"end": {
- "line": 136,
+ "line": 151,
"column": 33
}
}
@@ -10282,16 +12041,16 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4422,
- 4430
+ 5004,
+ 5012
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 34
},
"end": {
- "line": 136,
+ "line": 151,
"column": 42
}
}
@@ -10300,62 +12059,62 @@
"type": "Identifier",
"name": "id",
"range": [
- 4431,
- 4433
+ 5013,
+ 5015
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 43
},
"end": {
- "line": 136,
+ "line": 151,
"column": 45
}
}
},
"range": [
- 4422,
- 4433
+ 5004,
+ 5015
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 34
},
"end": {
- "line": 136,
+ "line": 151,
"column": 45
}
}
}
],
"range": [
- 4396,
- 4434
+ 4978,
+ 5016
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 8
},
"end": {
- "line": 136,
+ "line": 151,
"column": 46
}
}
},
"range": [
- 4396,
- 4435
+ 4978,
+ 5017
],
"loc": {
"start": {
- "line": 136,
+ "line": 151,
"column": 8
},
"end": {
- "line": 136,
+ "line": 151,
"column": 47
}
}
@@ -10369,16 +12128,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 4448,
- 4454
+ 5030,
+ 5036
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 12
},
"end": {
- "line": 137,
+ "line": 152,
"column": 18
}
}
@@ -10392,16 +12151,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4457,
- 4459
+ 5039,
+ 5041
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 21
},
"end": {
- "line": 137,
+ "line": 152,
"column": 23
}
}
@@ -10410,31 +12169,31 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 4460,
- 4476
+ 5042,
+ 5058
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 24
},
"end": {
- "line": 137,
+ "line": 152,
"column": 40
}
}
},
"range": [
- 4457,
- 4476
+ 5039,
+ 5058
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 21
},
"end": {
- "line": 137,
+ "line": 152,
"column": 40
}
}
@@ -10444,47 +12203,47 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4477,
- 4485
+ 5059,
+ 5067
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 41
},
"end": {
- "line": 137,
+ "line": 152,
"column": 49
}
}
}
],
"range": [
- 4457,
- 4486
+ 5039,
+ 5068
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 21
},
"end": {
- "line": 137,
+ "line": 152,
"column": 50
}
}
},
"range": [
- 4448,
- 4486
+ 5030,
+ 5068
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 12
},
"end": {
- "line": 137,
+ "line": 152,
"column": 50
}
}
@@ -10492,16 +12251,16 @@
],
"kind": "var",
"range": [
- 4444,
- 4487
+ 5026,
+ 5069
],
"loc": {
"start": {
- "line": 137,
+ "line": 152,
"column": 8
},
"end": {
- "line": 137,
+ "line": 152,
"column": 51
}
}
@@ -10517,16 +12276,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 4496,
- 4502
+ 5078,
+ 5084
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 8
},
"end": {
- "line": 138,
+ "line": 153,
"column": 14
}
}
@@ -10535,31 +12294,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 4503,
- 4515
+ 5085,
+ 5097
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 15
},
"end": {
- "line": 138,
+ "line": 153,
"column": 27
}
}
},
"range": [
- 4496,
- 4515
+ 5078,
+ 5097
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 8
},
"end": {
- "line": 138,
+ "line": 153,
"column": 27
}
}
@@ -10569,16 +12328,16 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4516,
- 4524
+ 5098,
+ 5106
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 28
},
"end": {
- "line": 138,
+ "line": 153,
"column": 36
}
}
@@ -10590,16 +12349,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 4526,
- 4532
+ 5108,
+ 5114
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 38
},
"end": {
- "line": 138,
+ "line": 153,
"column": 44
}
}
@@ -10608,62 +12367,62 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 4533,
- 4543
+ 5115,
+ 5125
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 45
},
"end": {
- "line": 138,
+ "line": 153,
"column": 55
}
}
},
"range": [
- 4526,
- 4543
+ 5108,
+ 5125
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 38
},
"end": {
- "line": 138,
+ "line": 153,
"column": 55
}
}
}
],
"range": [
- 4496,
- 4544
+ 5078,
+ 5126
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 8
},
"end": {
- "line": 138,
+ "line": 153,
"column": 56
}
}
},
"range": [
- 4496,
- 4545
+ 5078,
+ 5127
],
"loc": {
"start": {
- "line": 138,
+ "line": 153,
"column": 8
},
"end": {
- "line": 138,
+ "line": 153,
"column": 57
}
}
@@ -10679,16 +12438,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 4554,
- 4559
+ 5136,
+ 5141
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 8
},
"end": {
- "line": 139,
+ "line": 154,
"column": 13
}
}
@@ -10697,31 +12456,31 @@
"type": "Identifier",
"name": "add",
"range": [
- 4560,
- 4563
+ 5142,
+ 5145
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 14
},
"end": {
- "line": 139,
+ "line": 154,
"column": 17
}
}
},
"range": [
- 4554,
- 4563
+ 5136,
+ 5145
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 8
},
"end": {
- "line": 139,
+ "line": 154,
"column": 17
}
}
@@ -10731,16 +12490,16 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4564,
- 4572
+ 5146,
+ 5154
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 18
},
"end": {
- "line": 139,
+ "line": 154,
"column": 26
}
}
@@ -10750,16 +12509,16 @@
"value": "click",
"raw": "'click'",
"range": [
- 4574,
- 4581
+ 5156,
+ 5163
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 28
},
"end": {
- "line": 139,
+ "line": 154,
"column": 35
}
}
@@ -10772,16 +12531,16 @@
"type": "Identifier",
"name": "evt",
"range": [
- 4584,
- 4587
+ 5166,
+ 5169
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 38
},
"end": {
- "line": 139,
+ "line": 154,
"column": 41
}
}
@@ -10801,16 +12560,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 4594,
- 4599
+ 5176,
+ 5181
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 48
},
"end": {
- "line": 139,
+ "line": 154,
"column": 53
}
}
@@ -10819,31 +12578,31 @@
"type": "Identifier",
"name": "stop",
"range": [
- 4600,
- 4604
+ 5182,
+ 5186
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 54
},
"end": {
- "line": 139,
+ "line": 154,
"column": 58
}
}
},
"range": [
- 4594,
- 4604
+ 5176,
+ 5186
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 48
},
"end": {
- "line": 139,
+ "line": 154,
"column": 58
}
}
@@ -10853,63 +12612,63 @@
"type": "Identifier",
"name": "evt",
"range": [
- 4605,
- 4608
+ 5187,
+ 5190
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 59
},
"end": {
- "line": 139,
+ "line": 154,
"column": 62
}
}
}
],
"range": [
- 4594,
- 4609
+ 5176,
+ 5191
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 48
},
"end": {
- "line": 139,
+ "line": 154,
"column": 63
}
}
},
"range": [
- 4594,
- 4610
+ 5176,
+ 5192
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 48
},
"end": {
- "line": 139,
+ "line": 154,
"column": 64
}
}
}
],
"range": [
- 4592,
- 4612
+ 5174,
+ 5194
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 46
},
"end": {
- "line": 139,
+ "line": 154,
"column": 66
}
}
@@ -10917,47 +12676,47 @@
"generator": false,
"expression": false,
"range": [
- 4583,
- 4612
+ 5165,
+ 5194
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 37
},
"end": {
- "line": 139,
+ "line": 154,
"column": 66
}
}
}
],
"range": [
- 4554,
- 4613
+ 5136,
+ 5195
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 8
},
"end": {
- "line": 139,
+ "line": 154,
"column": 67
}
}
},
"range": [
- 4554,
- 4614
+ 5136,
+ 5196
],
"loc": {
"start": {
- "line": 139,
+ "line": 154,
"column": 8
},
"end": {
- "line": 139,
+ "line": 154,
"column": 68
}
}
@@ -10976,16 +12735,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4623,
- 4627
+ 5205,
+ 5209
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 8
},
"end": {
- "line": 140,
+ "line": 155,
"column": 12
}
}
@@ -10994,31 +12753,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 4628,
- 4640
+ 5210,
+ 5222
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 13
},
"end": {
- "line": 140,
+ "line": 155,
"column": 25
}
}
},
"range": [
- 4623,
- 4640
+ 5205,
+ 5222
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 8
},
"end": {
- "line": 140,
+ "line": 155,
"column": 25
}
}
@@ -11027,31 +12786,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4641,
- 4649
+ 5223,
+ 5231
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 26
},
"end": {
- "line": 140,
+ "line": 155,
"column": 34
}
}
},
"range": [
- 4623,
- 4650
+ 5205,
+ 5232
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 8
},
"end": {
- "line": 140,
+ "line": 155,
"column": 35
}
}
@@ -11060,62 +12819,62 @@
"type": "Identifier",
"name": "popUpDiv",
"range": [
- 4653,
- 4661
+ 5235,
+ 5243
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 38
},
"end": {
- "line": 140,
+ "line": 155,
"column": 46
}
}
},
"range": [
- 4623,
- 4661
+ 5205,
+ 5243
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 8
},
"end": {
- "line": 140,
+ "line": 155,
"column": 46
}
}
},
"range": [
- 4623,
- 4662
+ 5205,
+ 5244
],
"loc": {
"start": {
- "line": 140,
+ "line": 155,
"column": 8
},
"end": {
- "line": 140,
+ "line": 155,
"column": 47
}
}
}
],
"range": [
- 4183,
- 4668
+ 4765,
+ 5250
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 24
},
"end": {
- "line": 141,
+ "line": 156,
"column": 5
}
}
@@ -11123,16 +12882,16 @@
"generator": false,
"expression": false,
"range": [
- 4168,
- 4668
+ 4750,
+ 5250
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 9
},
"end": {
- "line": 141,
+ "line": 156,
"column": 5
}
}
@@ -11140,16 +12899,16 @@
"kind": "method",
"computed": false,
"range": [
- 4163,
- 4668
+ 4745,
+ 5250
],
"loc": {
"start": {
- "line": 130,
+ "line": 145,
"column": 4
},
"end": {
- "line": 141,
+ "line": 156,
"column": 5
}
},
@@ -11158,16 +12917,16 @@
"type": "Block",
"value": "*\n * Build a specified pop-up filter elements\n * @param {Number} colIndex Column index\n * @param {Object} div Optional container DOM element\n ",
"range": [
- 3989,
- 4158
+ 4571,
+ 4740
],
"loc": {
"start": {
- "line": 125,
+ "line": 140,
"column": 4
},
"end": {
- "line": 129,
+ "line": 144,
"column": 7
}
}
@@ -11178,16 +12937,16 @@
"type": "Block",
"value": "*\n * Toogle visibility of specified filter\n * @param {Number} colIndex Column index\n ",
"range": [
- 4674,
- 4776
+ 5256,
+ 5358
],
"loc": {
"start": {
- "line": 143,
+ "line": 158,
"column": 4
},
"end": {
- "line": 146,
+ "line": 161,
"column": 7
}
}
@@ -11201,16 +12960,16 @@
"type": "Identifier",
"name": "toggle",
"range": [
- 4781,
- 4787
+ 5363,
+ 5369
],
"loc": {
"start": {
- "line": 147,
+ "line": 162,
"column": 4
},
"end": {
- "line": 147,
+ "line": 162,
"column": 10
}
}
@@ -11223,16 +12982,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4788,
- 4796
+ 5370,
+ 5378
],
"loc": {
"start": {
- "line": 147,
+ "line": 162,
"column": 11
},
"end": {
- "line": 147,
+ "line": 162,
"column": 19
}
}
@@ -11250,16 +13009,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4811,
- 4813
+ 5393,
+ 5395
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 12
},
"end": {
- "line": 148,
+ "line": 163,
"column": 14
}
}
@@ -11270,16 +13029,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4816,
- 4820
+ 5398,
+ 5402
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 17
},
"end": {
- "line": 148,
+ "line": 163,
"column": 21
}
}
@@ -11288,46 +13047,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4821,
- 4823
+ 5403,
+ 5405
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 22
},
"end": {
- "line": 148,
+ "line": 163,
"column": 24
}
}
},
"range": [
- 4816,
- 4823
+ 5398,
+ 5405
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 17
},
"end": {
- "line": 148,
+ "line": 163,
"column": 24
}
}
},
"range": [
- 4811,
- 4823
+ 5393,
+ 5405
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 12
},
"end": {
- "line": 148,
+ "line": 163,
"column": 24
}
}
@@ -11338,16 +13097,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 4837,
- 4848
+ 5419,
+ 5430
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 12
},
"end": {
- "line": 149,
+ "line": 164,
"column": 23
}
}
@@ -11361,16 +13120,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4851,
- 4855
+ 5433,
+ 5437
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 26
},
"end": {
- "line": 149,
+ "line": 164,
"column": 30
}
}
@@ -11379,31 +13138,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 4856,
- 4868
+ 5438,
+ 5450
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 31
},
"end": {
- "line": 149,
+ "line": 164,
"column": 43
}
}
},
"range": [
- 4851,
- 4868
+ 5433,
+ 5450
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 26
},
"end": {
- "line": 149,
+ "line": 164,
"column": 43
}
}
@@ -11412,46 +13171,46 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 4869,
- 4877
+ 5451,
+ 5459
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 44
},
"end": {
- "line": 149,
+ "line": 164,
"column": 52
}
}
},
"range": [
- 4851,
- 4878
+ 5433,
+ 5460
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 26
},
"end": {
- "line": 149,
+ "line": 164,
"column": 53
}
}
},
"range": [
- 4837,
- 4878
+ 5419,
+ 5460
],
"loc": {
"start": {
- "line": 149,
+ "line": 164,
"column": 12
},
"end": {
- "line": 149,
+ "line": 164,
"column": 53
}
}
@@ -11459,16 +13218,16 @@
],
"kind": "var",
"range": [
- 4807,
- 4879
+ 5389,
+ 5461
],
"loc": {
"start": {
- "line": 148,
+ "line": 163,
"column": 8
},
"end": {
- "line": 149,
+ "line": 164,
"column": 54
}
}
@@ -11491,16 +13250,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 4892,
- 4903
+ 5474,
+ 5485
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 11
},
"end": {
- "line": 151,
+ "line": 166,
"column": 22
}
}
@@ -11509,31 +13268,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4904,
- 4909
+ 5486,
+ 5491
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 23
},
"end": {
- "line": 151,
+ "line": 166,
"column": 28
}
}
},
"range": [
- 4892,
- 4909
+ 5474,
+ 5491
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 11
},
"end": {
- "line": 151,
+ "line": 166,
"column": 28
}
}
@@ -11542,31 +13301,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4910,
- 4917
+ 5492,
+ 5499
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 29
},
"end": {
- "line": 151,
+ "line": 166,
"column": 36
}
}
},
"range": [
- 4892,
- 4917
+ 5474,
+ 5499
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 11
},
"end": {
- "line": 151,
+ "line": 166,
"column": 36
}
}
@@ -11576,31 +13335,31 @@
"value": "none",
"raw": "'none'",
"range": [
- 4922,
- 4928
+ 5504,
+ 5510
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 41
},
"end": {
- "line": 151,
+ "line": 166,
"column": 47
}
}
},
"range": [
- 4892,
- 4928
+ 5474,
+ 5510
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 11
},
"end": {
- "line": 151,
+ "line": 166,
"column": 47
}
}
@@ -11618,16 +13377,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 4944,
- 4955
+ 5526,
+ 5537
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 12
},
"end": {
- "line": 152,
+ "line": 167,
"column": 23
}
}
@@ -11636,31 +13395,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 4956,
- 4961
+ 5538,
+ 5543
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 24
},
"end": {
- "line": 152,
+ "line": 167,
"column": 29
}
}
},
"range": [
- 4944,
- 4961
+ 5526,
+ 5543
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 12
},
"end": {
- "line": 152,
+ "line": 167,
"column": 29
}
}
@@ -11669,31 +13428,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 4962,
- 4969
+ 5544,
+ 5551
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 30
},
"end": {
- "line": 152,
+ "line": 167,
"column": 37
}
}
},
"range": [
- 4944,
- 4969
+ 5526,
+ 5551
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 12
},
"end": {
- "line": 152,
+ "line": 167,
"column": 37
}
}
@@ -11703,46 +13462,46 @@
"value": "",
"raw": "''",
"range": [
- 4974,
- 4976
+ 5556,
+ 5558
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 42
},
"end": {
- "line": 152,
+ "line": 167,
"column": 44
}
}
},
"range": [
- 4944,
- 4976
+ 5526,
+ 5558
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 12
},
"end": {
- "line": 152,
+ "line": 167,
"column": 44
}
}
},
"range": [
- 4892,
- 4976
+ 5474,
+ 5558
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 11
},
"end": {
- "line": 152,
+ "line": 167,
"column": 44
}
}
@@ -11758,16 +13517,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4994,
- 4998
+ 5576,
+ 5580
],
"loc": {
"start": {
- "line": 153,
+ "line": 168,
"column": 15
},
"end": {
- "line": 153,
+ "line": 168,
"column": 19
}
}
@@ -11776,31 +13535,31 @@
"type": "Identifier",
"name": "onBeforePopUpOpen",
"range": [
- 4999,
- 5016
+ 5581,
+ 5598
],
"loc": {
"start": {
- "line": 153,
+ "line": 168,
"column": 20
},
"end": {
- "line": 153,
+ "line": 168,
"column": 37
}
}
},
"range": [
- 4994,
- 5016
+ 5576,
+ 5598
],
"loc": {
"start": {
- "line": 153,
+ "line": 168,
"column": 15
},
"end": {
- "line": 153,
+ "line": 168,
"column": 37
}
}
@@ -11821,16 +13580,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5035,
- 5039
+ 5617,
+ 5621
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 16
},
"end": {
- "line": 154,
+ "line": 169,
"column": 20
}
}
@@ -11839,31 +13598,31 @@
"type": "Identifier",
"name": "onBeforePopUpOpen",
"range": [
- 5040,
- 5057
+ 5622,
+ 5639
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 21
},
"end": {
- "line": 154,
+ "line": 169,
"column": 38
}
}
},
"range": [
- 5035,
- 5057
+ 5617,
+ 5639
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 16
},
"end": {
- "line": 154,
+ "line": 169,
"column": 38
}
}
@@ -11872,31 +13631,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 5058,
- 5062
+ 5640,
+ 5644
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 39
},
"end": {
- "line": 154,
+ "line": 169,
"column": 43
}
}
},
"range": [
- 5035,
- 5062
+ 5617,
+ 5644
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 16
},
"end": {
- "line": 154,
+ "line": 169,
"column": 43
}
}
@@ -11907,16 +13666,16 @@
"value": null,
"raw": "null",
"range": [
- 5084,
- 5088
+ 5666,
+ 5670
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 20
},
"end": {
- "line": 155,
+ "line": 170,
"column": 24
}
}
@@ -11924,16 +13683,16 @@
{
"type": "ThisExpression",
"range": [
- 5090,
- 5094
+ 5672,
+ 5676
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 26
},
"end": {
- "line": 155,
+ "line": 170,
"column": 30
}
}
@@ -11947,16 +13706,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5096,
- 5100
+ 5678,
+ 5682
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 32
},
"end": {
- "line": 155,
+ "line": 170,
"column": 36
}
}
@@ -11965,31 +13724,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 5101,
- 5113
+ 5683,
+ 5695
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 37
},
"end": {
- "line": 155,
+ "line": 170,
"column": 49
}
}
},
"range": [
- 5096,
- 5113
+ 5678,
+ 5695
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 32
},
"end": {
- "line": 155,
+ "line": 170,
"column": 49
}
}
@@ -11998,31 +13757,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5114,
- 5122
+ 5696,
+ 5704
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 50
},
"end": {
- "line": 155,
+ "line": 170,
"column": 58
}
}
},
"range": [
- 5096,
- 5123
+ 5678,
+ 5705
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 32
},
"end": {
- "line": 155,
+ "line": 170,
"column": 59
}
}
@@ -12031,79 +13790,79 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5125,
- 5133
+ 5707,
+ 5715
],
"loc": {
"start": {
- "line": 155,
+ "line": 170,
"column": 61
},
"end": {
- "line": 155,
+ "line": 170,
"column": 69
}
}
}
],
"range": [
- 5035,
- 5134
+ 5617,
+ 5716
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 16
},
"end": {
- "line": 155,
+ "line": 170,
"column": 70
}
}
},
"range": [
- 5035,
- 5135
+ 5617,
+ 5717
],
"loc": {
"start": {
- "line": 154,
+ "line": 169,
"column": 16
},
"end": {
- "line": 155,
+ "line": 170,
"column": 71
}
}
}
],
"range": [
- 5017,
- 5149
+ 5599,
+ 5731
],
"loc": {
"start": {
- "line": 153,
+ "line": 168,
"column": 38
},
"end": {
- "line": 156,
+ "line": 171,
"column": 13
}
}
},
"alternate": null,
"range": [
- 4991,
- 5149
+ 5573,
+ 5731
],
"loc": {
"start": {
- "line": 153,
+ "line": 168,
"column": 12
},
"end": {
- "line": 156,
+ "line": 171,
"column": 13
}
}
@@ -12123,16 +13882,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 5162,
- 5173
+ 5744,
+ 5755
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 12
},
"end": {
- "line": 157,
+ "line": 172,
"column": 23
}
}
@@ -12141,31 +13900,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 5174,
- 5179
+ 5756,
+ 5761
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 24
},
"end": {
- "line": 157,
+ "line": 172,
"column": 29
}
}
},
"range": [
- 5162,
- 5179
+ 5744,
+ 5761
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 12
},
"end": {
- "line": 157,
+ "line": 172,
"column": 29
}
}
@@ -12174,31 +13933,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 5180,
- 5187
+ 5762,
+ 5769
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 30
},
"end": {
- "line": 157,
+ "line": 172,
"column": 37
}
}
},
"range": [
- 5162,
- 5187
+ 5744,
+ 5769
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 12
},
"end": {
- "line": 157,
+ "line": 172,
"column": 37
}
}
@@ -12208,46 +13967,46 @@
"value": "block",
"raw": "'block'",
"range": [
- 5190,
- 5197
+ 5772,
+ 5779
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 40
},
"end": {
- "line": 157,
+ "line": 172,
"column": 47
}
}
},
"range": [
- 5162,
- 5197
+ 5744,
+ 5779
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 12
},
"end": {
- "line": 157,
+ "line": 172,
"column": 47
}
}
},
"range": [
- 5162,
- 5198
+ 5744,
+ 5780
],
"loc": {
"start": {
- "line": 157,
+ "line": 172,
"column": 12
},
"end": {
- "line": 157,
+ "line": 172,
"column": 48
}
}
@@ -12266,16 +14025,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5214,
- 5216
+ 5796,
+ 5798
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 15
},
"end": {
- "line": 158,
+ "line": 173,
"column": 17
}
}
@@ -12284,31 +14043,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 5217,
- 5230
+ 5799,
+ 5812
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 18
},
"end": {
- "line": 158,
+ "line": 173,
"column": 31
}
}
},
"range": [
- 5214,
- 5230
+ 5796,
+ 5812
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 15
},
"end": {
- "line": 158,
+ "line": 173,
"column": 31
}
}
@@ -12318,32 +14077,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5231,
- 5239
+ 5813,
+ 5821
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 32
},
"end": {
- "line": 158,
+ "line": 173,
"column": 40
}
}
}
],
"range": [
- 5214,
- 5240
+ 5796,
+ 5822
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 15
},
"end": {
- "line": 158,
+ "line": 173,
"column": 41
}
}
@@ -12355,16 +14114,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5245,
- 5247
+ 5827,
+ 5829
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 46
},
"end": {
- "line": 158,
+ "line": 173,
"column": 48
}
}
@@ -12373,46 +14132,46 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 5248,
- 5258
+ 5830,
+ 5840
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 49
},
"end": {
- "line": 158,
+ "line": 173,
"column": 59
}
}
},
"range": [
- 5245,
- 5258
+ 5827,
+ 5840
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 46
},
"end": {
- "line": 158,
+ "line": 173,
"column": 59
}
}
},
"range": [
- 5214,
- 5258
+ 5796,
+ 5840
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 15
},
"end": {
- "line": 158,
+ "line": 173,
"column": 59
}
}
@@ -12429,16 +14188,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 5281,
- 5284
+ 5863,
+ 5866
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 20
},
"end": {
- "line": 159,
+ "line": 174,
"column": 23
}
}
@@ -12452,16 +14211,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 5287,
- 5289
+ 5869,
+ 5871
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 26
},
"end": {
- "line": 159,
+ "line": 174,
"column": 28
}
}
@@ -12470,31 +14229,31 @@
"type": "Identifier",
"name": "getFilterElement",
"range": [
- 5290,
- 5306
+ 5872,
+ 5888
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 29
},
"end": {
- "line": 159,
+ "line": 174,
"column": 45
}
}
},
"range": [
- 5287,
- 5306
+ 5869,
+ 5888
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 26
},
"end": {
- "line": 159,
+ "line": 174,
"column": 45
}
}
@@ -12504,47 +14263,47 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5307,
- 5315
+ 5889,
+ 5897
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 46
},
"end": {
- "line": 159,
+ "line": 174,
"column": 54
}
}
}
],
"range": [
- 5287,
- 5316
+ 5869,
+ 5898
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 26
},
"end": {
- "line": 159,
+ "line": 174,
"column": 55
}
}
},
"range": [
- 5281,
- 5316
+ 5863,
+ 5898
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 20
},
"end": {
- "line": 159,
+ "line": 174,
"column": 55
}
}
@@ -12552,16 +14311,16 @@
],
"kind": "var",
"range": [
- 5277,
- 5317
+ 5859,
+ 5899
],
"loc": {
"start": {
- "line": 159,
+ "line": 174,
"column": 16
},
"end": {
- "line": 159,
+ "line": 174,
"column": 56
}
}
@@ -12572,16 +14331,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 5337,
- 5340
+ 5919,
+ 5922
],
"loc": {
"start": {
- "line": 160,
+ "line": 175,
"column": 19
},
"end": {
- "line": 160,
+ "line": 175,
"column": 22
}
}
@@ -12600,16 +14359,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 5363,
- 5366
+ 5945,
+ 5948
],
"loc": {
"start": {
- "line": 161,
+ "line": 176,
"column": 20
},
"end": {
- "line": 161,
+ "line": 176,
"column": 23
}
}
@@ -12618,126 +14377,126 @@
"type": "Identifier",
"name": "focus",
"range": [
- 5367,
- 5372
+ 5949,
+ 5954
],
"loc": {
"start": {
- "line": 161,
+ "line": 176,
"column": 24
},
"end": {
- "line": 161,
+ "line": 176,
"column": 29
}
}
},
"range": [
- 5363,
- 5372
+ 5945,
+ 5954
],
"loc": {
"start": {
- "line": 161,
+ "line": 176,
"column": 20
},
"end": {
- "line": 161,
+ "line": 176,
"column": 29
}
}
},
"arguments": [],
"range": [
- 5363,
- 5374
+ 5945,
+ 5956
],
"loc": {
"start": {
- "line": 161,
+ "line": 176,
"column": 20
},
"end": {
- "line": 161,
+ "line": 176,
"column": 31
}
}
},
"range": [
- 5363,
- 5375
+ 5945,
+ 5957
],
"loc": {
"start": {
- "line": 161,
+ "line": 176,
"column": 20
},
"end": {
- "line": 161,
+ "line": 176,
"column": 32
}
}
}
],
"range": [
- 5341,
- 5393
+ 5923,
+ 5975
],
"loc": {
"start": {
- "line": 160,
+ "line": 175,
"column": 23
},
"end": {
- "line": 162,
+ "line": 177,
"column": 17
}
}
},
"alternate": null,
"range": [
- 5334,
- 5393
+ 5916,
+ 5975
],
"loc": {
"start": {
- "line": 160,
+ "line": 175,
"column": 16
},
"end": {
- "line": 162,
+ "line": 177,
"column": 17
}
}
}
],
"range": [
- 5259,
- 5407
+ 5841,
+ 5989
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 60
},
"end": {
- "line": 163,
+ "line": 178,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5211,
- 5407
+ 5793,
+ 5989
],
"loc": {
"start": {
- "line": 158,
+ "line": 173,
"column": 12
},
"end": {
- "line": 163,
+ "line": 178,
"column": 13
}
}
@@ -12750,16 +14509,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5423,
- 5427
+ 6005,
+ 6009
],
"loc": {
"start": {
- "line": 164,
+ "line": 179,
"column": 15
},
"end": {
- "line": 164,
+ "line": 179,
"column": 19
}
}
@@ -12768,31 +14527,31 @@
"type": "Identifier",
"name": "onAfterPopUpOpen",
"range": [
- 5428,
- 5444
+ 6010,
+ 6026
],
"loc": {
"start": {
- "line": 164,
+ "line": 179,
"column": 20
},
"end": {
- "line": 164,
+ "line": 179,
"column": 36
}
}
},
"range": [
- 5423,
- 5444
+ 6005,
+ 6026
],
"loc": {
"start": {
- "line": 164,
+ "line": 179,
"column": 15
},
"end": {
- "line": 164,
+ "line": 179,
"column": 36
}
}
@@ -12813,16 +14572,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5463,
- 5467
+ 6045,
+ 6049
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 16
},
"end": {
- "line": 165,
+ "line": 180,
"column": 20
}
}
@@ -12831,31 +14590,31 @@
"type": "Identifier",
"name": "onAfterPopUpOpen",
"range": [
- 5468,
- 5484
+ 6050,
+ 6066
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 21
},
"end": {
- "line": 165,
+ "line": 180,
"column": 37
}
}
},
"range": [
- 5463,
- 5484
+ 6045,
+ 6066
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 16
},
"end": {
- "line": 165,
+ "line": 180,
"column": 37
}
}
@@ -12864,31 +14623,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 5485,
- 5489
+ 6067,
+ 6071
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 38
},
"end": {
- "line": 165,
+ "line": 180,
"column": 42
}
}
},
"range": [
- 5463,
- 5489
+ 6045,
+ 6071
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 16
},
"end": {
- "line": 165,
+ "line": 180,
"column": 42
}
}
@@ -12899,16 +14658,16 @@
"value": null,
"raw": "null",
"range": [
- 5511,
- 5515
+ 6093,
+ 6097
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 20
},
"end": {
- "line": 166,
+ "line": 181,
"column": 24
}
}
@@ -12916,16 +14675,16 @@
{
"type": "ThisExpression",
"range": [
- 5517,
- 5521
+ 6099,
+ 6103
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 26
},
"end": {
- "line": 166,
+ "line": 181,
"column": 30
}
}
@@ -12939,16 +14698,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5523,
- 5527
+ 6105,
+ 6109
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 32
},
"end": {
- "line": 166,
+ "line": 181,
"column": 36
}
}
@@ -12957,31 +14716,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 5528,
- 5540
+ 6110,
+ 6122
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 37
},
"end": {
- "line": 166,
+ "line": 181,
"column": 49
}
}
},
"range": [
- 5523,
- 5540
+ 6105,
+ 6122
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 32
},
"end": {
- "line": 166,
+ "line": 181,
"column": 49
}
}
@@ -12990,31 +14749,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5541,
- 5549
+ 6123,
+ 6131
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 50
},
"end": {
- "line": 166,
+ "line": 181,
"column": 58
}
}
},
"range": [
- 5523,
- 5550
+ 6105,
+ 6132
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 32
},
"end": {
- "line": 166,
+ "line": 181,
"column": 59
}
}
@@ -13023,95 +14782,95 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5552,
- 5560
+ 6134,
+ 6142
],
"loc": {
"start": {
- "line": 166,
+ "line": 181,
"column": 61
},
"end": {
- "line": 166,
+ "line": 181,
"column": 69
}
}
}
],
"range": [
- 5463,
- 5561
+ 6045,
+ 6143
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 16
},
"end": {
- "line": 166,
+ "line": 181,
"column": 70
}
}
},
"range": [
- 5463,
- 5562
+ 6045,
+ 6144
],
"loc": {
"start": {
- "line": 165,
+ "line": 180,
"column": 16
},
"end": {
- "line": 166,
+ "line": 181,
"column": 71
}
}
}
],
"range": [
- 5445,
- 5576
+ 6027,
+ 6158
],
"loc": {
"start": {
- "line": 164,
+ "line": 179,
"column": 37
},
"end": {
- "line": 167,
+ "line": 182,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5420,
- 5576
+ 6002,
+ 6158
],
"loc": {
"start": {
- "line": 164,
+ "line": 179,
"column": 12
},
"end": {
- "line": 167,
+ "line": 182,
"column": 13
}
}
}
],
"range": [
- 4977,
- 5586
+ 5559,
+ 6168
],
"loc": {
"start": {
- "line": 152,
+ "line": 167,
"column": 45
},
"end": {
- "line": 168,
+ "line": 183,
"column": 9
}
}
@@ -13127,16 +14886,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5609,
- 5613
+ 6191,
+ 6195
],
"loc": {
"start": {
- "line": 169,
+ "line": 184,
"column": 15
},
"end": {
- "line": 169,
+ "line": 184,
"column": 19
}
}
@@ -13145,31 +14904,31 @@
"type": "Identifier",
"name": "onBeforePopUpClose",
"range": [
- 5614,
- 5632
+ 6196,
+ 6214
],
"loc": {
"start": {
- "line": 169,
+ "line": 184,
"column": 20
},
"end": {
- "line": 169,
+ "line": 184,
"column": 38
}
}
},
"range": [
- 5609,
- 5632
+ 6191,
+ 6214
],
"loc": {
"start": {
- "line": 169,
+ "line": 184,
"column": 15
},
"end": {
- "line": 169,
+ "line": 184,
"column": 38
}
}
@@ -13190,16 +14949,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5651,
- 5655
+ 6233,
+ 6237
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 16
},
"end": {
- "line": 170,
+ "line": 185,
"column": 20
}
}
@@ -13208,31 +14967,31 @@
"type": "Identifier",
"name": "onBeforePopUpClose",
"range": [
- 5656,
- 5674
+ 6238,
+ 6256
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 21
},
"end": {
- "line": 170,
+ "line": 185,
"column": 39
}
}
},
"range": [
- 5651,
- 5674
+ 6233,
+ 6256
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 16
},
"end": {
- "line": 170,
+ "line": 185,
"column": 39
}
}
@@ -13241,31 +15000,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 5675,
- 5679
+ 6257,
+ 6261
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 40
},
"end": {
- "line": 170,
+ "line": 185,
"column": 44
}
}
},
"range": [
- 5651,
- 5679
+ 6233,
+ 6261
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 16
},
"end": {
- "line": 170,
+ "line": 185,
"column": 44
}
}
@@ -13276,16 +15035,16 @@
"value": null,
"raw": "null",
"range": [
- 5701,
- 5705
+ 6283,
+ 6287
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 20
},
"end": {
- "line": 171,
+ "line": 186,
"column": 24
}
}
@@ -13293,16 +15052,16 @@
{
"type": "ThisExpression",
"range": [
- 5707,
- 5711
+ 6289,
+ 6293
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 26
},
"end": {
- "line": 171,
+ "line": 186,
"column": 30
}
}
@@ -13316,16 +15075,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5713,
- 5717
+ 6295,
+ 6299
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 32
},
"end": {
- "line": 171,
+ "line": 186,
"column": 36
}
}
@@ -13334,31 +15093,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 5718,
- 5730
+ 6300,
+ 6312
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 37
},
"end": {
- "line": 171,
+ "line": 186,
"column": 49
}
}
},
"range": [
- 5713,
- 5730
+ 6295,
+ 6312
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 32
},
"end": {
- "line": 171,
+ "line": 186,
"column": 49
}
}
@@ -13367,31 +15126,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5731,
- 5739
+ 6313,
+ 6321
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 50
},
"end": {
- "line": 171,
+ "line": 186,
"column": 58
}
}
},
"range": [
- 5713,
- 5740
+ 6295,
+ 6322
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 32
},
"end": {
- "line": 171,
+ "line": 186,
"column": 59
}
}
@@ -13400,79 +15159,79 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5742,
- 5750
+ 6324,
+ 6332
],
"loc": {
"start": {
- "line": 171,
+ "line": 186,
"column": 61
},
"end": {
- "line": 171,
+ "line": 186,
"column": 69
}
}
}
],
"range": [
- 5651,
- 5751
+ 6233,
+ 6333
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 16
},
"end": {
- "line": 171,
+ "line": 186,
"column": 70
}
}
},
"range": [
- 5651,
- 5752
+ 6233,
+ 6334
],
"loc": {
"start": {
- "line": 170,
+ "line": 185,
"column": 16
},
"end": {
- "line": 171,
+ "line": 186,
"column": 71
}
}
}
],
"range": [
- 5633,
- 5766
+ 6215,
+ 6348
],
"loc": {
"start": {
- "line": 169,
+ "line": 184,
"column": 39
},
"end": {
- "line": 172,
+ "line": 187,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5606,
- 5766
+ 6188,
+ 6348
],
"loc": {
"start": {
- "line": 169,
+ "line": 184,
"column": 12
},
"end": {
- "line": 172,
+ "line": 187,
"column": 13
}
}
@@ -13492,16 +15251,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 5779,
- 5790
+ 6361,
+ 6372
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 12
},
"end": {
- "line": 173,
+ "line": 188,
"column": 23
}
}
@@ -13510,31 +15269,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 5791,
- 5796
+ 6373,
+ 6378
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 24
},
"end": {
- "line": 173,
+ "line": 188,
"column": 29
}
}
},
"range": [
- 5779,
- 5796
+ 6361,
+ 6378
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 12
},
"end": {
- "line": 173,
+ "line": 188,
"column": 29
}
}
@@ -13543,31 +15302,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 5797,
- 5804
+ 6379,
+ 6386
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 30
},
"end": {
- "line": 173,
+ "line": 188,
"column": 37
}
}
},
"range": [
- 5779,
- 5804
+ 6361,
+ 6386
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 12
},
"end": {
- "line": 173,
+ "line": 188,
"column": 37
}
}
@@ -13577,46 +15336,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 5807,
- 5813
+ 6389,
+ 6395
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 40
},
"end": {
- "line": 173,
+ "line": 188,
"column": 46
}
}
},
"range": [
- 5779,
- 5813
+ 6361,
+ 6395
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 12
},
"end": {
- "line": 173,
+ "line": 188,
"column": 46
}
}
},
"range": [
- 5779,
- 5814
+ 6361,
+ 6396
],
"loc": {
"start": {
- "line": 173,
+ "line": 188,
"column": 12
},
"end": {
- "line": 173,
+ "line": 188,
"column": 47
}
}
@@ -13629,16 +15388,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5830,
- 5834
+ 6412,
+ 6416
],
"loc": {
"start": {
- "line": 174,
+ "line": 189,
"column": 15
},
"end": {
- "line": 174,
+ "line": 189,
"column": 19
}
}
@@ -13647,31 +15406,31 @@
"type": "Identifier",
"name": "onAfterPopUpClose",
"range": [
- 5835,
- 5852
+ 6417,
+ 6434
],
"loc": {
"start": {
- "line": 174,
+ "line": 189,
"column": 20
},
"end": {
- "line": 174,
+ "line": 189,
"column": 37
}
}
},
"range": [
- 5830,
- 5852
+ 6412,
+ 6434
],
"loc": {
"start": {
- "line": 174,
+ "line": 189,
"column": 15
},
"end": {
- "line": 174,
+ "line": 189,
"column": 37
}
}
@@ -13692,16 +15451,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5871,
- 5875
+ 6453,
+ 6457
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 16
},
"end": {
- "line": 175,
+ "line": 190,
"column": 20
}
}
@@ -13710,31 +15469,31 @@
"type": "Identifier",
"name": "onAfterPopUpClose",
"range": [
- 5876,
- 5893
+ 6458,
+ 6475
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 21
},
"end": {
- "line": 175,
+ "line": 190,
"column": 38
}
}
},
"range": [
- 5871,
- 5893
+ 6453,
+ 6475
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 16
},
"end": {
- "line": 175,
+ "line": 190,
"column": 38
}
}
@@ -13743,31 +15502,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 5894,
- 5898
+ 6476,
+ 6480
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 39
},
"end": {
- "line": 175,
+ "line": 190,
"column": 43
}
}
},
"range": [
- 5871,
- 5898
+ 6453,
+ 6480
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 16
},
"end": {
- "line": 175,
+ "line": 190,
"column": 43
}
}
@@ -13778,16 +15537,16 @@
"value": null,
"raw": "null",
"range": [
- 5920,
- 5924
+ 6502,
+ 6506
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 20
},
"end": {
- "line": 176,
+ "line": 191,
"column": 24
}
}
@@ -13795,16 +15554,16 @@
{
"type": "ThisExpression",
"range": [
- 5926,
- 5930
+ 6508,
+ 6512
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 26
},
"end": {
- "line": 176,
+ "line": 191,
"column": 30
}
}
@@ -13818,16 +15577,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5932,
- 5936
+ 6514,
+ 6518
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 32
},
"end": {
- "line": 176,
+ "line": 191,
"column": 36
}
}
@@ -13836,31 +15595,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 5937,
- 5949
+ 6519,
+ 6531
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 37
},
"end": {
- "line": 176,
+ "line": 191,
"column": 49
}
}
},
"range": [
- 5932,
- 5949
+ 6514,
+ 6531
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 32
},
"end": {
- "line": 176,
+ "line": 191,
"column": 49
}
}
@@ -13869,31 +15628,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5950,
- 5958
+ 6532,
+ 6540
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 50
},
"end": {
- "line": 176,
+ "line": 191,
"column": 58
}
}
},
"range": [
- 5932,
- 5959
+ 6514,
+ 6541
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 32
},
"end": {
- "line": 176,
+ "line": 191,
"column": 59
}
}
@@ -13902,126 +15661,126 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 5961,
- 5969
+ 6543,
+ 6551
],
"loc": {
"start": {
- "line": 176,
+ "line": 191,
"column": 61
},
"end": {
- "line": 176,
+ "line": 191,
"column": 69
}
}
}
],
"range": [
- 5871,
- 5970
+ 6453,
+ 6552
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 16
},
"end": {
- "line": 176,
+ "line": 191,
"column": 70
}
}
},
"range": [
- 5871,
- 5971
+ 6453,
+ 6553
],
"loc": {
"start": {
- "line": 175,
+ "line": 190,
"column": 16
},
"end": {
- "line": 176,
+ "line": 191,
"column": 71
}
}
}
],
"range": [
- 5853,
- 5985
+ 6435,
+ 6567
],
"loc": {
"start": {
- "line": 174,
+ "line": 189,
"column": 38
},
"end": {
- "line": 177,
+ "line": 192,
"column": 13
}
}
},
"alternate": null,
"range": [
- 5827,
- 5985
+ 6409,
+ 6567
],
"loc": {
"start": {
- "line": 174,
+ "line": 189,
"column": 12
},
"end": {
- "line": 177,
+ "line": 192,
"column": 13
}
}
}
],
"range": [
- 5592,
- 5995
+ 6174,
+ 6577
],
"loc": {
"start": {
- "line": 168,
+ "line": 183,
"column": 15
},
"end": {
- "line": 178,
+ "line": 193,
"column": 9
}
}
},
"range": [
- 4889,
- 5995
+ 5471,
+ 6577
],
"loc": {
"start": {
- "line": 151,
+ "line": 166,
"column": 8
},
"end": {
- "line": 178,
+ "line": 193,
"column": 9
}
}
}
],
"range": [
- 4797,
- 6001
+ 5379,
+ 6583
],
"loc": {
"start": {
- "line": 147,
+ "line": 162,
"column": 20
},
"end": {
- "line": 179,
+ "line": 194,
"column": 5
}
}
@@ -14029,16 +15788,16 @@
"generator": false,
"expression": false,
"range": [
- 4787,
- 6001
+ 5369,
+ 6583
],
"loc": {
"start": {
- "line": 147,
+ "line": 162,
"column": 10
},
"end": {
- "line": 179,
+ "line": 194,
"column": 5
}
}
@@ -14046,16 +15805,16 @@
"kind": "method",
"computed": false,
"range": [
- 4781,
- 6001
+ 5363,
+ 6583
],
"loc": {
"start": {
- "line": 147,
+ "line": 162,
"column": 4
},
"end": {
- "line": 179,
+ "line": 194,
"column": 5
}
},
@@ -14064,16 +15823,16 @@
"type": "Block",
"value": "*\n * Toogle visibility of specified filter\n * @param {Number} colIndex Column index\n ",
"range": [
- 4674,
- 4776
+ 5256,
+ 5358
],
"loc": {
"start": {
- "line": 143,
+ "line": 158,
"column": 4
},
"end": {
- "line": 146,
+ "line": 161,
"column": 7
}
}
@@ -14084,16 +15843,16 @@
"type": "Block",
"value": "*\n * Close all filters excepted for the specified one if any\n * @param {Number} exceptIdx Column index of the filter to not close\n ",
"range": [
- 6007,
- 6155
+ 6589,
+ 6737
],
"loc": {
"start": {
- "line": 181,
+ "line": 196,
"column": 4
},
"end": {
- "line": 184,
+ "line": 199,
"column": 7
}
}
@@ -14107,16 +15866,16 @@
"type": "Identifier",
"name": "closeAll",
"range": [
- 6160,
- 6168
+ 6742,
+ 6750
],
"loc": {
"start": {
- "line": 185,
+ "line": 200,
"column": 4
},
"end": {
- "line": 185,
+ "line": 200,
"column": 12
}
}
@@ -14129,16 +15888,16 @@
"type": "Identifier",
"name": "exceptIdx",
"range": [
- 6169,
- 6178
+ 6751,
+ 6760
],
"loc": {
"start": {
- "line": 185,
+ "line": 200,
"column": 13
},
"end": {
- "line": 185,
+ "line": 200,
"column": 22
}
}
@@ -14158,16 +15917,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6197,
- 6198
+ 6779,
+ 6780
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 16
},
"end": {
- "line": 186,
+ "line": 201,
"column": 17
}
}
@@ -14177,31 +15936,31 @@
"value": 0,
"raw": "0",
"range": [
- 6199,
- 6200
+ 6781,
+ 6782
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 18
},
"end": {
- "line": 186,
+ "line": 201,
"column": 19
}
}
},
"range": [
- 6197,
- 6200
+ 6779,
+ 6782
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 16
},
"end": {
- "line": 186,
+ "line": 201,
"column": 19
}
}
@@ -14209,16 +15968,16 @@
],
"kind": "var",
"range": [
- 6193,
- 6200
+ 6775,
+ 6782
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 12
},
"end": {
- "line": 186,
+ "line": 201,
"column": 19
}
}
@@ -14230,16 +15989,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6202,
- 6203
+ 6784,
+ 6785
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 21
},
"end": {
- "line": 186,
+ "line": 201,
"column": 22
}
}
@@ -14253,16 +16012,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6204,
- 6208
+ 6786,
+ 6790
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 23
},
"end": {
- "line": 186,
+ "line": 201,
"column": 27
}
}
@@ -14271,31 +16030,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 6209,
- 6221
+ 6791,
+ 6803
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 28
},
"end": {
- "line": 186,
+ "line": 201,
"column": 40
}
}
},
"range": [
- 6204,
- 6221
+ 6786,
+ 6803
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 23
},
"end": {
- "line": 186,
+ "line": 201,
"column": 40
}
}
@@ -14304,46 +16063,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 6222,
- 6228
+ 6804,
+ 6810
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 41
},
"end": {
- "line": 186,
+ "line": 201,
"column": 47
}
}
},
"range": [
- 6204,
- 6228
+ 6786,
+ 6810
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 23
},
"end": {
- "line": 186,
+ "line": 201,
"column": 47
}
}
},
"range": [
- 6202,
- 6228
+ 6784,
+ 6810
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 21
},
"end": {
- "line": 186,
+ "line": 201,
"column": 47
}
}
@@ -14355,32 +16114,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6230,
- 6231
+ 6812,
+ 6813
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 49
},
"end": {
- "line": 186,
+ "line": 201,
"column": 50
}
}
},
"prefix": false,
"range": [
- 6230,
- 6233
+ 6812,
+ 6815
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 49
},
"end": {
- "line": 186,
+ "line": 201,
"column": 52
}
}
@@ -14397,16 +16156,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6251,
- 6252
+ 6833,
+ 6834
],
"loc": {
"start": {
- "line": 187,
+ "line": 202,
"column": 15
},
"end": {
- "line": 187,
+ "line": 202,
"column": 16
}
}
@@ -14415,31 +16174,31 @@
"type": "Identifier",
"name": "exceptIdx",
"range": [
- 6257,
- 6266
+ 6839,
+ 6848
],
"loc": {
"start": {
- "line": 187,
+ "line": 202,
"column": 21
},
"end": {
- "line": 187,
+ "line": 202,
"column": 30
}
}
},
"range": [
- 6251,
- 6266
+ 6833,
+ 6848
],
"loc": {
"start": {
- "line": 187,
+ "line": 202,
"column": 15
},
"end": {
- "line": 187,
+ "line": 202,
"column": 30
}
}
@@ -14451,48 +16210,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 6285,
- 6294
+ 6867,
+ 6876
],
"loc": {
"start": {
- "line": 188,
+ "line": 203,
"column": 16
},
"end": {
- "line": 188,
+ "line": 203,
"column": 25
}
}
}
],
"range": [
- 6267,
- 6308
+ 6849,
+ 6890
],
"loc": {
"start": {
- "line": 187,
+ "line": 202,
"column": 31
},
"end": {
- "line": 189,
+ "line": 204,
"column": 13
}
}
},
"alternate": null,
"range": [
- 6248,
- 6308
+ 6830,
+ 6890
],
"loc": {
"start": {
- "line": 187,
+ "line": 202,
"column": 12
},
"end": {
- "line": 189,
+ "line": 204,
"column": 13
}
}
@@ -14506,16 +16265,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 6325,
- 6336
+ 6907,
+ 6918
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 16
},
"end": {
- "line": 190,
+ "line": 205,
"column": 27
}
}
@@ -14529,16 +16288,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6339,
- 6343
+ 6921,
+ 6925
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 30
},
"end": {
- "line": 190,
+ "line": 205,
"column": 34
}
}
@@ -14547,31 +16306,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 6344,
- 6356
+ 6926,
+ 6938
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 35
},
"end": {
- "line": 190,
+ "line": 205,
"column": 47
}
}
},
"range": [
- 6339,
- 6356
+ 6921,
+ 6938
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 30
},
"end": {
- "line": 190,
+ "line": 205,
"column": 47
}
}
@@ -14580,46 +16339,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 6357,
- 6358
+ 6939,
+ 6940
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 48
},
"end": {
- "line": 190,
+ "line": 205,
"column": 49
}
}
},
"range": [
- 6339,
- 6359
+ 6921,
+ 6941
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 30
},
"end": {
- "line": 190,
+ "line": 205,
"column": 50
}
}
},
"range": [
- 6325,
- 6359
+ 6907,
+ 6941
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 16
},
"end": {
- "line": 190,
+ "line": 205,
"column": 50
}
}
@@ -14627,16 +16386,16 @@
],
"kind": "var",
"range": [
- 6321,
- 6360
+ 6903,
+ 6942
],
"loc": {
"start": {
- "line": 190,
+ "line": 205,
"column": 12
},
"end": {
- "line": 190,
+ "line": 205,
"column": 51
}
}
@@ -14647,16 +16406,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 6376,
- 6387
+ 6958,
+ 6969
],
"loc": {
"start": {
- "line": 191,
+ "line": 206,
"column": 15
},
"end": {
- "line": 191,
+ "line": 206,
"column": 26
}
}
@@ -14679,16 +16438,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 6406,
- 6417
+ 6988,
+ 6999
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 16
},
"end": {
- "line": 192,
+ "line": 207,
"column": 27
}
}
@@ -14697,31 +16456,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 6418,
- 6423
+ 7000,
+ 7005
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 28
},
"end": {
- "line": 192,
+ "line": 207,
"column": 33
}
}
},
"range": [
- 6406,
- 6423
+ 6988,
+ 7005
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 16
},
"end": {
- "line": 192,
+ "line": 207,
"column": 33
}
}
@@ -14730,31 +16489,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 6424,
- 6431
+ 7006,
+ 7013
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 34
},
"end": {
- "line": 192,
+ "line": 207,
"column": 41
}
}
},
"range": [
- 6406,
- 6431
+ 6988,
+ 7013
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 16
},
"end": {
- "line": 192,
+ "line": 207,
"column": 41
}
}
@@ -14764,125 +16523,125 @@
"value": "none",
"raw": "'none'",
"range": [
- 6434,
- 6440
+ 7016,
+ 7022
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 44
},
"end": {
- "line": 192,
+ "line": 207,
"column": 50
}
}
},
"range": [
- 6406,
- 6440
+ 6988,
+ 7022
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 16
},
"end": {
- "line": 192,
+ "line": 207,
"column": 50
}
}
},
"range": [
- 6406,
- 6441
+ 6988,
+ 7023
],
"loc": {
"start": {
- "line": 192,
+ "line": 207,
"column": 16
},
"end": {
- "line": 192,
+ "line": 207,
"column": 51
}
}
}
],
"range": [
- 6388,
- 6455
+ 6970,
+ 7037
],
"loc": {
"start": {
- "line": 191,
+ "line": 206,
"column": 27
},
"end": {
- "line": 193,
+ "line": 208,
"column": 13
}
}
},
"alternate": null,
"range": [
- 6373,
- 6455
+ 6955,
+ 7037
],
"loc": {
"start": {
- "line": 191,
+ "line": 206,
"column": 12
},
"end": {
- "line": 193,
+ "line": 208,
"column": 13
}
}
}
],
"range": [
- 6234,
- 6465
+ 6816,
+ 7047
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 53
},
"end": {
- "line": 194,
+ "line": 209,
"column": 9
}
}
},
"range": [
- 6189,
- 6465
+ 6771,
+ 7047
],
"loc": {
"start": {
- "line": 186,
+ "line": 201,
"column": 8
},
"end": {
- "line": 194,
+ "line": 209,
"column": 9
}
}
}
],
"range": [
- 6179,
- 6471
+ 6761,
+ 7053
],
"loc": {
"start": {
- "line": 185,
+ "line": 200,
"column": 23
},
"end": {
- "line": 195,
+ "line": 210,
"column": 5
}
}
@@ -14890,16 +16649,16 @@
"generator": false,
"expression": false,
"range": [
- 6168,
- 6471
+ 6750,
+ 7053
],
"loc": {
"start": {
- "line": 185,
+ "line": 200,
"column": 12
},
"end": {
- "line": 195,
+ "line": 210,
"column": 5
}
}
@@ -14907,16 +16666,16 @@
"kind": "method",
"computed": false,
"range": [
- 6160,
- 6471
+ 6742,
+ 7053
],
"loc": {
"start": {
- "line": 185,
+ "line": 200,
"column": 4
},
"end": {
- "line": 195,
+ "line": 210,
"column": 5
}
},
@@ -14925,16 +16684,16 @@
"type": "Block",
"value": "*\n * Close all filters excepted for the specified one if any\n * @param {Number} exceptIdx Column index of the filter to not close\n ",
"range": [
- 6007,
- 6155
+ 6589,
+ 6737
],
"loc": {
"start": {
- "line": 181,
+ "line": 196,
"column": 4
},
"end": {
- "line": 184,
+ "line": 199,
"column": 7
}
}
@@ -14945,16 +16704,16 @@
"type": "Block",
"value": "*\n * Build all the icons representing the pop-up filters\n ",
"range": [
- 6477,
- 6547
+ 7059,
+ 7129
],
"loc": {
"start": {
- "line": 197,
+ "line": 212,
"column": 4
},
"end": {
- "line": 199,
+ "line": 214,
"column": 7
}
}
@@ -14968,16 +16727,16 @@
"type": "Identifier",
"name": "buildIcons",
"range": [
- 6552,
- 6562
+ 7134,
+ 7144
],
"loc": {
"start": {
- "line": 200,
+ "line": 215,
"column": 4
},
"end": {
- "line": 200,
+ "line": 215,
"column": 14
}
}
@@ -15000,16 +16759,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6582,
- 6583
+ 7164,
+ 7165
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 16
},
"end": {
- "line": 201,
+ "line": 216,
"column": 17
}
}
@@ -15019,31 +16778,31 @@
"value": 0,
"raw": "0",
"range": [
- 6584,
- 6585
+ 7166,
+ 7167
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 18
},
"end": {
- "line": 201,
+ "line": 216,
"column": 19
}
}
},
"range": [
- 6582,
- 6585
+ 7164,
+ 7167
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 16
},
"end": {
- "line": 201,
+ "line": 216,
"column": 19
}
}
@@ -15051,16 +16810,16 @@
],
"kind": "var",
"range": [
- 6578,
- 6585
+ 7160,
+ 7167
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 12
},
"end": {
- "line": 201,
+ "line": 216,
"column": 19
}
}
@@ -15072,16 +16831,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6587,
- 6588
+ 7169,
+ 7170
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 21
},
"end": {
- "line": 201,
+ "line": 216,
"column": 22
}
}
@@ -15095,16 +16854,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6589,
- 6593
+ 7171,
+ 7175
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 23
},
"end": {
- "line": 201,
+ "line": 216,
"column": 27
}
}
@@ -15113,31 +16872,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 6594,
- 6606
+ 7176,
+ 7188
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 28
},
"end": {
- "line": 201,
+ "line": 216,
"column": 40
}
}
},
"range": [
- 6589,
- 6606
+ 7171,
+ 7188
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 23
},
"end": {
- "line": 201,
+ "line": 216,
"column": 40
}
}
@@ -15146,46 +16905,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 6607,
- 6613
+ 7189,
+ 7195
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 41
},
"end": {
- "line": 201,
+ "line": 216,
"column": 47
}
}
},
"range": [
- 6589,
- 6613
+ 7171,
+ 7195
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 23
},
"end": {
- "line": 201,
+ "line": 216,
"column": 47
}
}
},
"range": [
- 6587,
- 6613
+ 7169,
+ 7195
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 21
},
"end": {
- "line": 201,
+ "line": 216,
"column": 47
}
}
@@ -15197,32 +16956,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 6615,
- 6616
+ 7197,
+ 7198
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 49
},
"end": {
- "line": 201,
+ "line": 216,
"column": 50
}
}
},
"prefix": false,
"range": [
- 6615,
- 6618
+ 7197,
+ 7200
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 49
},
"end": {
- "line": 201,
+ "line": 216,
"column": 52
}
}
@@ -15240,16 +16999,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6633,
- 6637
+ 7215,
+ 7219
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 12
},
"end": {
- "line": 202,
+ "line": 217,
"column": 16
}
}
@@ -15258,31 +17017,31 @@
"type": "Identifier",
"name": "buildIcon",
"range": [
- 6638,
- 6647
+ 7220,
+ 7229
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 17
},
"end": {
- "line": 202,
+ "line": 217,
"column": 26
}
}
},
"range": [
- 6633,
- 6647
+ 7215,
+ 7229
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 12
},
"end": {
- "line": 202,
+ "line": 217,
"column": 26
}
}
@@ -15292,16 +17051,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 6648,
- 6649
+ 7230,
+ 7231
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 27
},
"end": {
- "line": 202,
+ "line": 217,
"column": 28
}
}
@@ -15311,94 +17070,94 @@
"value": false,
"raw": "false",
"range": [
- 6651,
- 6656
+ 7233,
+ 7238
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 30
},
"end": {
- "line": 202,
+ "line": 217,
"column": 35
}
}
}
],
"range": [
- 6633,
- 6657
+ 7215,
+ 7239
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 12
},
"end": {
- "line": 202,
+ "line": 217,
"column": 36
}
}
},
"range": [
- 6633,
- 6658
+ 7215,
+ 7240
],
"loc": {
"start": {
- "line": 202,
+ "line": 217,
"column": 12
},
"end": {
- "line": 202,
+ "line": 217,
"column": 37
}
}
}
],
"range": [
- 6619,
- 6668
+ 7201,
+ 7250
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 53
},
"end": {
- "line": 203,
+ "line": 218,
"column": 9
}
}
},
"range": [
- 6574,
- 6668
+ 7156,
+ 7250
],
"loc": {
"start": {
- "line": 201,
+ "line": 216,
"column": 8
},
"end": {
- "line": 203,
+ "line": 218,
"column": 9
}
}
}
],
"range": [
- 6564,
- 6674
+ 7146,
+ 7256
],
"loc": {
"start": {
- "line": 200,
+ "line": 215,
"column": 16
},
"end": {
- "line": 204,
+ "line": 219,
"column": 5
}
}
@@ -15406,16 +17165,16 @@
"generator": false,
"expression": false,
"range": [
- 6562,
- 6674
+ 7144,
+ 7256
],
"loc": {
"start": {
- "line": 200,
+ "line": 215,
"column": 14
},
"end": {
- "line": 204,
+ "line": 219,
"column": 5
}
}
@@ -15423,16 +17182,16 @@
"kind": "method",
"computed": false,
"range": [
- 6552,
- 6674
+ 7134,
+ 7256
],
"loc": {
"start": {
- "line": 200,
+ "line": 215,
"column": 4
},
"end": {
- "line": 204,
+ "line": 219,
"column": 5
}
},
@@ -15441,16 +17200,16 @@
"type": "Block",
"value": "*\n * Build all the icons representing the pop-up filters\n ",
"range": [
- 6477,
- 6547
+ 7059,
+ 7129
],
"loc": {
"start": {
- "line": 197,
+ "line": 212,
"column": 4
},
"end": {
- "line": 199,
+ "line": 214,
"column": 7
}
}
@@ -15459,18 +17218,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Build specified icon\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
+ "value": "*\n * Apply specified icon state\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
"range": [
- 6680,
- 6818
+ 7262,
+ 7406
],
"loc": {
"start": {
- "line": 206,
+ "line": 221,
"column": 4
},
"end": {
- "line": 210,
+ "line": 225,
"column": 7
}
}
@@ -15484,16 +17243,16 @@
"type": "Identifier",
"name": "buildIcon",
"range": [
- 6823,
- 6832
+ 7411,
+ 7420
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 4
},
"end": {
- "line": 211,
+ "line": 226,
"column": 13
}
}
@@ -15506,16 +17265,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6833,
- 6841
+ 7421,
+ 7429
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 14
},
"end": {
- "line": 211,
+ "line": 226,
"column": 22
}
}
@@ -15524,16 +17283,16 @@
"type": "Identifier",
"name": "active",
"range": [
- 6843,
- 6849
+ 7431,
+ 7437
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 24
},
"end": {
- "line": 211,
+ "line": 226,
"column": 30
}
}
@@ -15553,16 +17312,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6863,
- 6867
+ 7451,
+ 7455
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 11
},
"end": {
- "line": 212,
+ "line": 227,
"column": 15
}
}
@@ -15571,31 +17330,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 6868,
- 6880
+ 7456,
+ 7468
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 16
},
"end": {
- "line": 212,
+ "line": 227,
"column": 28
}
}
},
"range": [
- 6863,
- 6880
+ 7451,
+ 7468
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 11
},
"end": {
- "line": 212,
+ "line": 227,
"column": 28
}
}
@@ -15604,31 +17363,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6881,
- 6889
+ 7469,
+ 7477
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 29
},
"end": {
- "line": 212,
+ "line": 227,
"column": 37
}
}
},
"range": [
- 6863,
- 6890
+ 7451,
+ 7478
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 11
},
"end": {
- "line": 212,
+ "line": 227,
"column": 38
}
}
@@ -15653,16 +17412,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6905,
- 6909
+ 7493,
+ 7497
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 213,
+ "line": 228,
"column": 16
}
}
@@ -15671,31 +17430,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 6910,
- 6922
+ 7498,
+ 7510
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 17
},
"end": {
- "line": 213,
+ "line": 228,
"column": 29
}
}
},
"range": [
- 6905,
- 6922
+ 7493,
+ 7510
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 213,
+ "line": 228,
"column": 29
}
}
@@ -15704,31 +17463,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 6923,
- 6931
+ 7511,
+ 7519
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 30
},
"end": {
- "line": 213,
+ "line": 228,
"column": 38
}
}
},
"range": [
- 6905,
- 6932
+ 7493,
+ 7520
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 213,
+ "line": 228,
"column": 39
}
}
@@ -15737,31 +17496,31 @@
"type": "Identifier",
"name": "src",
"range": [
- 6933,
- 6936
+ 7521,
+ 7524
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 40
},
"end": {
- "line": 213,
+ "line": 228,
"column": 43
}
}
},
"range": [
- 6905,
- 6936
+ 7493,
+ 7524
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 213,
+ "line": 228,
"column": 43
}
}
@@ -15772,16 +17531,16 @@
"type": "Identifier",
"name": "active",
"range": [
- 6939,
- 6945
+ 7527,
+ 7533
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 46
},
"end": {
- "line": 213,
+ "line": 228,
"column": 52
}
}
@@ -15792,16 +17551,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6964,
- 6968
+ 7552,
+ 7556
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 16
},
"end": {
- "line": 214,
+ "line": 229,
"column": 20
}
}
@@ -15810,31 +17569,31 @@
"type": "Identifier",
"name": "popUpImgFltActive",
"range": [
- 6969,
- 6986
+ 7557,
+ 7574
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 21
},
"end": {
- "line": 214,
+ "line": 229,
"column": 38
}
}
},
"range": [
- 6964,
- 6986
+ 7552,
+ 7574
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 16
},
"end": {
- "line": 214,
+ "line": 229,
"column": 38
}
}
@@ -15845,16 +17604,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6989,
- 6993
+ 7577,
+ 7581
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 41
},
"end": {
- "line": 214,
+ "line": 229,
"column": 45
}
}
@@ -15863,124 +17622,124 @@
"type": "Identifier",
"name": "popUpImgFlt",
"range": [
- 6994,
- 7005
+ 7582,
+ 7593
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 46
},
"end": {
- "line": 214,
+ "line": 229,
"column": 57
}
}
},
"range": [
- 6989,
- 7005
+ 7577,
+ 7593
],
"loc": {
"start": {
- "line": 214,
+ "line": 229,
"column": 41
},
"end": {
- "line": 214,
+ "line": 229,
"column": 57
}
}
},
"range": [
- 6939,
- 7005
+ 7527,
+ 7593
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 46
},
"end": {
- "line": 214,
+ "line": 229,
"column": 57
}
}
},
"range": [
- 6905,
- 7005
+ 7493,
+ 7593
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 214,
+ "line": 229,
"column": 57
}
}
},
"range": [
- 6905,
- 7006
+ 7493,
+ 7594
],
"loc": {
"start": {
- "line": 213,
+ "line": 228,
"column": 12
},
"end": {
- "line": 214,
+ "line": 229,
"column": 58
}
}
}
],
"range": [
- 6891,
- 7016
+ 7479,
+ 7604
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 39
},
"end": {
- "line": 215,
+ "line": 230,
"column": 9
}
}
},
"alternate": null,
"range": [
- 6860,
- 7016
+ 7448,
+ 7604
],
"loc": {
"start": {
- "line": 212,
+ "line": 227,
"column": 8
},
"end": {
- "line": 215,
+ "line": 230,
"column": 9
}
}
}
],
"range": [
- 6850,
- 7022
+ 7438,
+ 7610
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 31
},
"end": {
- "line": 216,
+ "line": 231,
"column": 5
}
}
@@ -15988,16 +17747,16 @@
"generator": false,
"expression": false,
"range": [
- 6832,
- 7022
+ 7420,
+ 7610
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 13
},
"end": {
- "line": 216,
+ "line": 231,
"column": 5
}
}
@@ -16005,34 +17764,34 @@
"kind": "method",
"computed": false,
"range": [
- 6823,
- 7022
+ 7411,
+ 7610
],
"loc": {
"start": {
- "line": 211,
+ "line": 226,
"column": 4
},
"end": {
- "line": 216,
+ "line": 231,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Build specified icon\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
+ "value": "*\n * Apply specified icon state\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
"range": [
- 6680,
- 6818
+ 7262,
+ 7406
],
"loc": {
"start": {
- "line": 206,
+ "line": 221,
"column": 4
},
"end": {
- "line": 210,
+ "line": 225,
"column": 7
}
}
@@ -16043,16 +17802,16 @@
"type": "Block",
"value": "*\n * Remove pop-up filters\n ",
"range": [
- 7028,
- 7068
+ 7616,
+ 7656
],
"loc": {
"start": {
- "line": 218,
+ "line": 233,
"column": 4
},
"end": {
- "line": 220,
+ "line": 235,
"column": 7
}
}
@@ -16066,16 +17825,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 7073,
- 7080
+ 7661,
+ 7668
],
"loc": {
"start": {
- "line": 221,
+ "line": 236,
"column": 4
},
"end": {
- "line": 221,
+ "line": 236,
"column": 11
}
}
@@ -16098,16 +17857,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7096,
- 7100
+ 7684,
+ 7688
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 12
},
"end": {
- "line": 222,
+ "line": 237,
"column": 16
}
}
@@ -16116,47 +17875,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 7101,
- 7112
+ 7689,
+ 7700
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 17
},
"end": {
- "line": 222,
+ "line": 237,
"column": 28
}
}
},
"range": [
- 7096,
- 7112
+ 7684,
+ 7700
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 12
},
"end": {
- "line": 222,
+ "line": 237,
"column": 28
}
}
},
"prefix": true,
"range": [
- 7095,
- 7112
+ 7683,
+ 7700
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 11
},
"end": {
- "line": 222,
+ "line": 237,
"column": 28
}
}
@@ -16168,48 +17927,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 7127,
- 7134
+ 7715,
+ 7722
],
"loc": {
"start": {
- "line": 223,
+ "line": 238,
"column": 12
},
"end": {
- "line": 223,
+ "line": 238,
"column": 19
}
}
}
],
"range": [
- 7113,
- 7144
+ 7701,
+ 7732
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 29
},
"end": {
- "line": 224,
+ "line": 239,
"column": 9
}
}
},
"alternate": null,
"range": [
- 7092,
- 7144
+ 7680,
+ 7732
],
"loc": {
"start": {
- "line": 222,
+ "line": 237,
"column": 8
},
"end": {
- "line": 224,
+ "line": 239,
"column": 9
}
}
@@ -16225,16 +17984,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7154,
- 7158
+ 7742,
+ 7746
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 8
},
"end": {
- "line": 226,
+ "line": 241,
"column": 12
}
}
@@ -16243,31 +18002,31 @@
"type": "Identifier",
"name": "popUpFltElmCache",
"range": [
- 7159,
- 7175
+ 7747,
+ 7763
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 13
},
"end": {
- "line": 226,
+ "line": 241,
"column": 29
}
}
},
"range": [
- 7154,
- 7175
+ 7742,
+ 7763
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 8
},
"end": {
- "line": 226,
+ "line": 241,
"column": 29
}
}
@@ -16276,46 +18035,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7178,
- 7180
+ 7766,
+ 7768
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 32
},
"end": {
- "line": 226,
+ "line": 241,
"column": 34
}
}
},
"range": [
- 7154,
- 7180
+ 7742,
+ 7768
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 8
},
"end": {
- "line": 226,
+ "line": 241,
"column": 34
}
}
},
"range": [
- 7154,
- 7181
+ 7742,
+ 7769
],
"loc": {
"start": {
- "line": 226,
+ "line": 241,
"column": 8
},
"end": {
- "line": 226,
+ "line": 241,
"column": 35
}
}
@@ -16331,16 +18090,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 7198,
- 7199
+ 7786,
+ 7787
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 16
},
"end": {
- "line": 227,
+ "line": 242,
"column": 17
}
}
@@ -16350,31 +18109,31 @@
"value": 0,
"raw": "0",
"range": [
- 7200,
- 7201
+ 7788,
+ 7789
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 18
},
"end": {
- "line": 227,
+ "line": 242,
"column": 19
}
}
},
"range": [
- 7198,
- 7201
+ 7786,
+ 7789
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 16
},
"end": {
- "line": 227,
+ "line": 242,
"column": 19
}
}
@@ -16382,16 +18141,16 @@
],
"kind": "var",
"range": [
- 7194,
- 7201
+ 7782,
+ 7789
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 12
},
"end": {
- "line": 227,
+ "line": 242,
"column": 19
}
}
@@ -16403,16 +18162,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 7203,
- 7204
+ 7791,
+ 7792
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 21
},
"end": {
- "line": 227,
+ "line": 242,
"column": 22
}
}
@@ -16426,16 +18185,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7205,
- 7209
+ 7793,
+ 7797
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 23
},
"end": {
- "line": 227,
+ "line": 242,
"column": 27
}
}
@@ -16444,31 +18203,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 7210,
- 7222
+ 7798,
+ 7810
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 28
},
"end": {
- "line": 227,
+ "line": 242,
"column": 40
}
}
},
"range": [
- 7205,
- 7222
+ 7793,
+ 7810
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 23
},
"end": {
- "line": 227,
+ "line": 242,
"column": 40
}
}
@@ -16477,46 +18236,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 7223,
- 7229
+ 7811,
+ 7817
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 41
},
"end": {
- "line": 227,
+ "line": 242,
"column": 47
}
}
},
"range": [
- 7205,
- 7229
+ 7793,
+ 7817
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 23
},
"end": {
- "line": 227,
+ "line": 242,
"column": 47
}
}
},
"range": [
- 7203,
- 7229
+ 7791,
+ 7817
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 21
},
"end": {
- "line": 227,
+ "line": 242,
"column": 47
}
}
@@ -16528,32 +18287,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 7231,
- 7232
+ 7819,
+ 7820
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 49
},
"end": {
- "line": 227,
+ "line": 242,
"column": 50
}
}
},
"prefix": false,
"range": [
- 7231,
- 7234
+ 7819,
+ 7822
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 49
},
"end": {
- "line": 227,
+ "line": 242,
"column": 52
}
}
@@ -16570,16 +18329,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 7253,
- 7264
+ 7841,
+ 7852
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 16
},
"end": {
- "line": 228,
+ "line": 243,
"column": 27
}
}
@@ -16593,16 +18352,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7267,
- 7271
+ 7855,
+ 7859
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 30
},
"end": {
- "line": 228,
+ "line": 243,
"column": 34
}
}
@@ -16611,31 +18370,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 7272,
- 7284
+ 7860,
+ 7872
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 35
},
"end": {
- "line": 228,
+ "line": 243,
"column": 47
}
}
},
"range": [
- 7267,
- 7284
+ 7855,
+ 7872
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 30
},
"end": {
- "line": 228,
+ "line": 243,
"column": 47
}
}
@@ -16644,46 +18403,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 7285,
- 7286
+ 7873,
+ 7874
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 48
},
"end": {
- "line": 228,
+ "line": 243,
"column": 49
}
}
},
"range": [
- 7267,
- 7287
+ 7855,
+ 7875
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 30
},
"end": {
- "line": 228,
+ "line": 243,
"column": 50
}
}
},
"range": [
- 7253,
- 7287
+ 7841,
+ 7875
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 16
},
"end": {
- "line": 228,
+ "line": 243,
"column": 50
}
}
@@ -16694,16 +18453,16 @@
"type": "Identifier",
"name": "popUpFltSpan",
"range": [
- 7305,
- 7317
+ 7893,
+ 7905
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 16
},
"end": {
- "line": 229,
+ "line": 244,
"column": 28
}
}
@@ -16717,16 +18476,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7320,
- 7324
+ 7908,
+ 7912
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 31
},
"end": {
- "line": 229,
+ "line": 244,
"column": 35
}
}
@@ -16735,31 +18494,31 @@
"type": "Identifier",
"name": "popUpFltSpans",
"range": [
- 7325,
- 7338
+ 7913,
+ 7926
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 36
},
"end": {
- "line": 229,
+ "line": 244,
"column": 49
}
}
},
"range": [
- 7320,
- 7338
+ 7908,
+ 7926
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 31
},
"end": {
- "line": 229,
+ "line": 244,
"column": 49
}
}
@@ -16768,46 +18527,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 7339,
- 7340
+ 7927,
+ 7928
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 50
},
"end": {
- "line": 229,
+ "line": 244,
"column": 51
}
}
},
"range": [
- 7320,
- 7341
+ 7908,
+ 7929
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 31
},
"end": {
- "line": 229,
+ "line": 244,
"column": 52
}
}
},
"range": [
- 7305,
- 7341
+ 7893,
+ 7929
],
"loc": {
"start": {
- "line": 229,
+ "line": 244,
"column": 16
},
"end": {
- "line": 229,
+ "line": 244,
"column": 52
}
}
@@ -16818,16 +18577,16 @@
"type": "Identifier",
"name": "popUpFltImg",
"range": [
- 7359,
- 7370
+ 7947,
+ 7958
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 16
},
"end": {
- "line": 230,
+ "line": 245,
"column": 27
}
}
@@ -16841,16 +18600,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7373,
- 7377
+ 7961,
+ 7965
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 30
},
"end": {
- "line": 230,
+ "line": 245,
"column": 34
}
}
@@ -16859,31 +18618,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 7378,
- 7390
+ 7966,
+ 7978
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 35
},
"end": {
- "line": 230,
+ "line": 245,
"column": 47
}
}
},
"range": [
- 7373,
- 7390
+ 7961,
+ 7978
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 30
},
"end": {
- "line": 230,
+ "line": 245,
"column": 47
}
}
@@ -16892,46 +18651,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 7391,
- 7392
+ 7979,
+ 7980
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 48
},
"end": {
- "line": 230,
+ "line": 245,
"column": 49
}
}
},
"range": [
- 7373,
- 7393
+ 7961,
+ 7981
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 30
},
"end": {
- "line": 230,
+ "line": 245,
"column": 50
}
}
},
"range": [
- 7359,
- 7393
+ 7947,
+ 7981
],
"loc": {
"start": {
- "line": 230,
+ "line": 245,
"column": 16
},
"end": {
- "line": 230,
+ "line": 245,
"column": 50
}
}
@@ -16939,16 +18698,16 @@
],
"kind": "var",
"range": [
- 7249,
- 7394
+ 7837,
+ 7982
],
"loc": {
"start": {
- "line": 228,
+ "line": 243,
"column": 12
},
"end": {
- "line": 230,
+ "line": 245,
"column": 51
}
}
@@ -16959,16 +18718,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 7410,
- 7421
+ 7998,
+ 8009
],
"loc": {
"start": {
- "line": 231,
+ "line": 246,
"column": 15
},
"end": {
- "line": 231,
+ "line": 246,
"column": 26
}
}
@@ -16987,16 +18746,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7440,
- 7443
+ 8028,
+ 8031
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 16
},
"end": {
- "line": 232,
+ "line": 247,
"column": 19
}
}
@@ -17005,31 +18764,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 7444,
- 7450
+ 8032,
+ 8038
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 20
},
"end": {
- "line": 232,
+ "line": 247,
"column": 26
}
}
},
"range": [
- 7440,
- 7450
+ 8028,
+ 8038
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 16
},
"end": {
- "line": 232,
+ "line": 247,
"column": 26
}
}
@@ -17039,47 +18798,47 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 7451,
- 7462
+ 8039,
+ 8050
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 27
},
"end": {
- "line": 232,
+ "line": 247,
"column": 38
}
}
}
],
"range": [
- 7440,
- 7463
+ 8028,
+ 8051
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 16
},
"end": {
- "line": 232,
+ "line": 247,
"column": 39
}
}
},
"range": [
- 7440,
- 7464
+ 8028,
+ 8052
],
"loc": {
"start": {
- "line": 232,
+ "line": 247,
"column": 16
},
"end": {
- "line": 232,
+ "line": 247,
"column": 40
}
}
@@ -17098,16 +18857,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7481,
- 7485
+ 8069,
+ 8073
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 16
},
"end": {
- "line": 233,
+ "line": 248,
"column": 20
}
}
@@ -17116,31 +18875,31 @@
"type": "Identifier",
"name": "popUpFltElmCache",
"range": [
- 7486,
- 7502
+ 8074,
+ 8090
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 21
},
"end": {
- "line": 233,
+ "line": 248,
"column": 37
}
}
},
"range": [
- 7481,
- 7502
+ 8069,
+ 8090
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 16
},
"end": {
- "line": 233,
+ "line": 248,
"column": 37
}
}
@@ -17149,31 +18908,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 7503,
- 7504
+ 8091,
+ 8092
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 38
},
"end": {
- "line": 233,
+ "line": 248,
"column": 39
}
}
},
"range": [
- 7481,
- 7505
+ 8069,
+ 8093
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 16
},
"end": {
- "line": 233,
+ "line": 248,
"column": 40
}
}
@@ -17182,78 +18941,78 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 7508,
- 7519
+ 8096,
+ 8107
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 43
},
"end": {
- "line": 233,
+ "line": 248,
"column": 54
}
}
},
"range": [
- 7481,
- 7519
+ 8069,
+ 8107
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 16
},
"end": {
- "line": 233,
+ "line": 248,
"column": 54
}
}
},
"range": [
- 7481,
- 7520
+ 8069,
+ 8108
],
"loc": {
"start": {
- "line": 233,
+ "line": 248,
"column": 16
},
"end": {
- "line": 233,
+ "line": 248,
"column": 55
}
}
}
],
"range": [
- 7422,
- 7534
+ 8010,
+ 8122
],
"loc": {
"start": {
- "line": 231,
+ "line": 246,
"column": 27
},
"end": {
- "line": 234,
+ "line": 249,
"column": 13
}
}
},
"alternate": null,
"range": [
- 7407,
- 7534
+ 7995,
+ 8122
],
"loc": {
"start": {
- "line": 231,
+ "line": 246,
"column": 12
},
"end": {
- "line": 234,
+ "line": 249,
"column": 13
}
}
@@ -17267,16 +19026,16 @@
"type": "Identifier",
"name": "popUpFltElm",
"range": [
- 7547,
- 7558
+ 8135,
+ 8146
],
"loc": {
"start": {
- "line": 235,
+ "line": 250,
"column": 12
},
"end": {
- "line": 235,
+ "line": 250,
"column": 23
}
}
@@ -17286,46 +19045,46 @@
"value": null,
"raw": "null",
"range": [
- 7561,
- 7565
+ 8149,
+ 8153
],
"loc": {
"start": {
- "line": 235,
+ "line": 250,
"column": 26
},
"end": {
- "line": 235,
+ "line": 250,
"column": 30
}
}
},
"range": [
- 7547,
- 7565
+ 8135,
+ 8153
],
"loc": {
"start": {
- "line": 235,
+ "line": 250,
"column": 12
},
"end": {
- "line": 235,
+ "line": 250,
"column": 30
}
}
},
"range": [
- 7547,
- 7566
+ 8135,
+ 8154
],
"loc": {
"start": {
- "line": 235,
+ "line": 250,
"column": 12
},
"end": {
- "line": 235,
+ "line": 250,
"column": 31
}
}
@@ -17336,16 +19095,16 @@
"type": "Identifier",
"name": "popUpFltSpan",
"range": [
- 7582,
- 7594
+ 8170,
+ 8182
],
"loc": {
"start": {
- "line": 236,
+ "line": 251,
"column": 15
},
"end": {
- "line": 236,
+ "line": 251,
"column": 27
}
}
@@ -17364,16 +19123,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7613,
- 7616
+ 8201,
+ 8204
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 16
},
"end": {
- "line": 237,
+ "line": 252,
"column": 19
}
}
@@ -17382,31 +19141,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 7617,
- 7623
+ 8205,
+ 8211
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 20
},
"end": {
- "line": 237,
+ "line": 252,
"column": 26
}
}
},
"range": [
- 7613,
- 7623
+ 8201,
+ 8211
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 16
},
"end": {
- "line": 237,
+ "line": 252,
"column": 26
}
}
@@ -17416,79 +19175,79 @@
"type": "Identifier",
"name": "popUpFltSpan",
"range": [
- 7624,
- 7636
+ 8212,
+ 8224
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 27
},
"end": {
- "line": 237,
+ "line": 252,
"column": 39
}
}
}
],
"range": [
- 7613,
- 7637
+ 8201,
+ 8225
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 16
},
"end": {
- "line": 237,
+ "line": 252,
"column": 40
}
}
},
"range": [
- 7613,
- 7638
+ 8201,
+ 8226
],
"loc": {
"start": {
- "line": 237,
+ "line": 252,
"column": 16
},
"end": {
- "line": 237,
+ "line": 252,
"column": 41
}
}
}
],
"range": [
- 7595,
- 7652
+ 8183,
+ 8240
],
"loc": {
"start": {
- "line": 236,
+ "line": 251,
"column": 28
},
"end": {
- "line": 238,
+ "line": 253,
"column": 13
}
}
},
"alternate": null,
"range": [
- 7579,
- 7652
+ 8167,
+ 8240
],
"loc": {
"start": {
- "line": 236,
+ "line": 251,
"column": 12
},
"end": {
- "line": 238,
+ "line": 253,
"column": 13
}
}
@@ -17502,16 +19261,16 @@
"type": "Identifier",
"name": "popUpFltSpan",
"range": [
- 7665,
- 7677
+ 8253,
+ 8265
],
"loc": {
"start": {
- "line": 239,
+ "line": 254,
"column": 12
},
"end": {
- "line": 239,
+ "line": 254,
"column": 24
}
}
@@ -17521,46 +19280,46 @@
"value": null,
"raw": "null",
"range": [
- 7680,
- 7684
+ 8268,
+ 8272
],
"loc": {
"start": {
- "line": 239,
+ "line": 254,
"column": 27
},
"end": {
- "line": 239,
+ "line": 254,
"column": 31
}
}
},
"range": [
- 7665,
- 7684
+ 8253,
+ 8272
],
"loc": {
"start": {
- "line": 239,
+ "line": 254,
"column": 12
},
"end": {
- "line": 239,
+ "line": 254,
"column": 31
}
}
},
"range": [
- 7665,
- 7685
+ 8253,
+ 8273
],
"loc": {
"start": {
- "line": 239,
+ "line": 254,
"column": 12
},
"end": {
- "line": 239,
+ "line": 254,
"column": 32
}
}
@@ -17571,16 +19330,16 @@
"type": "Identifier",
"name": "popUpFltImg",
"range": [
- 7701,
- 7712
+ 8289,
+ 8300
],
"loc": {
"start": {
- "line": 240,
+ "line": 255,
"column": 15
},
"end": {
- "line": 240,
+ "line": 255,
"column": 26
}
}
@@ -17599,16 +19358,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 7731,
- 7734
+ 8319,
+ 8322
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 16
},
"end": {
- "line": 241,
+ "line": 256,
"column": 19
}
}
@@ -17617,31 +19376,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 7735,
- 7741
+ 8323,
+ 8329
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 20
},
"end": {
- "line": 241,
+ "line": 256,
"column": 26
}
}
},
"range": [
- 7731,
- 7741
+ 8319,
+ 8329
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 16
},
"end": {
- "line": 241,
+ "line": 256,
"column": 26
}
}
@@ -17651,79 +19410,79 @@
"type": "Identifier",
"name": "popUpFltImg",
"range": [
- 7742,
- 7753
+ 8330,
+ 8341
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 27
},
"end": {
- "line": 241,
+ "line": 256,
"column": 38
}
}
}
],
"range": [
- 7731,
- 7754
+ 8319,
+ 8342
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 16
},
"end": {
- "line": 241,
+ "line": 256,
"column": 39
}
}
},
"range": [
- 7731,
- 7755
+ 8319,
+ 8343
],
"loc": {
"start": {
- "line": 241,
+ "line": 256,
"column": 16
},
"end": {
- "line": 241,
+ "line": 256,
"column": 40
}
}
}
],
"range": [
- 7713,
- 7769
+ 8301,
+ 8357
],
"loc": {
"start": {
- "line": 240,
+ "line": 255,
"column": 27
},
"end": {
- "line": 242,
+ "line": 257,
"column": 13
}
}
},
"alternate": null,
"range": [
- 7698,
- 7769
+ 8286,
+ 8357
],
"loc": {
"start": {
- "line": 240,
+ "line": 255,
"column": 12
},
"end": {
- "line": 242,
+ "line": 257,
"column": 13
}
}
@@ -17737,16 +19496,16 @@
"type": "Identifier",
"name": "popUpFltImg",
"range": [
- 7782,
- 7793
+ 8370,
+ 8381
],
"loc": {
"start": {
- "line": 243,
+ "line": 258,
"column": 12
},
"end": {
- "line": 243,
+ "line": 258,
"column": 23
}
}
@@ -17756,77 +19515,77 @@
"value": null,
"raw": "null",
"range": [
- 7796,
- 7800
+ 8384,
+ 8388
],
"loc": {
"start": {
- "line": 243,
+ "line": 258,
"column": 26
},
"end": {
- "line": 243,
+ "line": 258,
"column": 30
}
}
},
"range": [
- 7782,
- 7800
+ 8370,
+ 8388
],
"loc": {
"start": {
- "line": 243,
+ "line": 258,
"column": 12
},
"end": {
- "line": 243,
+ "line": 258,
"column": 30
}
}
},
"range": [
- 7782,
- 7801
+ 8370,
+ 8389
],
"loc": {
"start": {
- "line": 243,
+ "line": 258,
"column": 12
},
"end": {
- "line": 243,
+ "line": 258,
"column": 31
}
}
}
],
"range": [
- 7235,
- 7811
+ 7823,
+ 8399
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 53
},
"end": {
- "line": 244,
+ "line": 259,
"column": 9
}
}
},
"range": [
- 7190,
- 7811
+ 7778,
+ 8399
],
"loc": {
"start": {
- "line": 227,
+ "line": 242,
"column": 8
},
"end": {
- "line": 244,
+ "line": 259,
"column": 9
}
}
@@ -17842,16 +19601,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7820,
- 7824
+ 8408,
+ 8412
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 8
},
"end": {
- "line": 245,
+ "line": 260,
"column": 12
}
}
@@ -17860,31 +19619,31 @@
"type": "Identifier",
"name": "popUpFltElms",
"range": [
- 7825,
- 7837
+ 8413,
+ 8425
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 13
},
"end": {
- "line": 245,
+ "line": 260,
"column": 25
}
}
},
"range": [
- 7820,
- 7837
+ 8408,
+ 8425
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 8
},
"end": {
- "line": 245,
+ "line": 260,
"column": 25
}
}
@@ -17893,46 +19652,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7840,
- 7842
+ 8428,
+ 8430
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 28
},
"end": {
- "line": 245,
+ "line": 260,
"column": 30
}
}
},
"range": [
- 7820,
- 7842
+ 8408,
+ 8430
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 8
},
"end": {
- "line": 245,
+ "line": 260,
"column": 30
}
}
},
"range": [
- 7820,
- 7843
+ 8408,
+ 8431
],
"loc": {
"start": {
- "line": 245,
+ "line": 260,
"column": 8
},
"end": {
- "line": 245,
+ "line": 260,
"column": 31
}
}
@@ -17948,16 +19707,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7852,
- 7856
+ 8440,
+ 8444
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 8
},
"end": {
- "line": 246,
+ "line": 261,
"column": 12
}
}
@@ -17966,31 +19725,31 @@
"type": "Identifier",
"name": "popUpFltSpans",
"range": [
- 7857,
- 7870
+ 8445,
+ 8458
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 13
},
"end": {
- "line": 246,
+ "line": 261,
"column": 26
}
}
},
"range": [
- 7852,
- 7870
+ 8440,
+ 8458
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 8
},
"end": {
- "line": 246,
+ "line": 261,
"column": 26
}
}
@@ -17999,46 +19758,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7873,
- 7875
+ 8461,
+ 8463
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 29
},
"end": {
- "line": 246,
+ "line": 261,
"column": 31
}
}
},
"range": [
- 7852,
- 7875
+ 8440,
+ 8463
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 8
},
"end": {
- "line": 246,
+ "line": 261,
"column": 31
}
}
},
"range": [
- 7852,
- 7876
+ 8440,
+ 8464
],
"loc": {
"start": {
- "line": 246,
+ "line": 261,
"column": 8
},
"end": {
- "line": 246,
+ "line": 261,
"column": 32
}
}
@@ -18054,16 +19813,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7885,
- 7889
+ 8473,
+ 8477
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 8
},
"end": {
- "line": 247,
+ "line": 262,
"column": 12
}
}
@@ -18072,31 +19831,31 @@
"type": "Identifier",
"name": "popUpFltImgs",
"range": [
- 7890,
- 7902
+ 8478,
+ 8490
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 13
},
"end": {
- "line": 247,
+ "line": 262,
"column": 25
}
}
},
"range": [
- 7885,
- 7902
+ 8473,
+ 8490
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 8
},
"end": {
- "line": 247,
+ "line": 262,
"column": 25
}
}
@@ -18105,48 +19864,1531 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7905,
- 7907
+ 8493,
+ 8495
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 28
},
"end": {
- "line": 247,
+ "line": 262,
"column": 30
}
}
},
"range": [
- 7885,
- 7907
+ 8473,
+ 8495
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 8
},
"end": {
- "line": 247,
+ "line": 262,
"column": 30
}
}
},
"range": [
- 7885,
- 7908
+ 8473,
+ 8496
],
"loc": {
"start": {
- "line": 247,
+ "line": 262,
"column": 8
},
"end": {
- "line": 247,
+ "line": 262,
"column": 31
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 8506,
+ 8530
+ ],
+ "loc": {
+ "start": {
+ "line": 264,
+ "column": 8
+ },
+ "end": {
+ "line": 264,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8539,
+ 8543
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 8
+ },
+ "end": {
+ "line": 265,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 8544,
+ 8551
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 13
+ },
+ "end": {
+ "line": 265,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 8539,
+ 8551
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 8
+ },
+ "end": {
+ "line": 265,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 8552,
+ 8555
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 21
+ },
+ "end": {
+ "line": 265,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 8539,
+ 8555
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 8
+ },
+ "end": {
+ "line": 265,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 8557,
+ 8575
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 26
+ },
+ "end": {
+ "line": 265,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 8556,
+ 8576
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 25
+ },
+ "end": {
+ "line": 265,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8583,
+ 8587
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 52
+ },
+ "end": {
+ "line": 265,
+ "column": 56
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "buildIcons",
+ "range": [
+ 8588,
+ 8598
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 57
+ },
+ "end": {
+ "line": 265,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 8583,
+ 8598
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 52
+ },
+ "end": {
+ "line": 265,
+ "column": 67
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 8583,
+ 8600
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 52
+ },
+ "end": {
+ "line": 265,
+ "column": 69
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 8578,
+ 8600
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 47
+ },
+ "end": {
+ "line": 265,
+ "column": 69
+ }
+ }
+ }
+ ],
+ "range": [
+ 8539,
+ 8601
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 8
+ },
+ "end": {
+ "line": 265,
+ "column": 70
+ }
+ }
+ },
+ "range": [
+ 8539,
+ 8602
+ ],
+ "loc": {
+ "start": {
+ "line": 265,
+ "column": 8
+ },
+ "end": {
+ "line": 265,
+ "column": 71
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 8506,
+ 8530
+ ],
+ "loc": {
+ "start": {
+ "line": 264,
+ "column": 8
+ },
+ "end": {
+ "line": 264,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8611,
+ 8615
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 8
+ },
+ "end": {
+ "line": 266,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 8616,
+ 8623
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 13
+ },
+ "end": {
+ "line": 266,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 8611,
+ 8623
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 8
+ },
+ "end": {
+ "line": 266,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 8624,
+ 8627
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 21
+ },
+ "end": {
+ "line": 266,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 8611,
+ 8627
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 8
+ },
+ "end": {
+ "line": 266,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 8629,
+ 8646
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 26
+ },
+ "end": {
+ "line": 266,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 8628,
+ 8647
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 25
+ },
+ "end": {
+ "line": 266,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8654,
+ 8658
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 51
+ },
+ "end": {
+ "line": 266,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "closeAll",
+ "range": [
+ 8659,
+ 8667
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 56
+ },
+ "end": {
+ "line": 266,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 8654,
+ 8667
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 51
+ },
+ "end": {
+ "line": 266,
+ "column": 64
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 8654,
+ 8669
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 51
+ },
+ "end": {
+ "line": 266,
+ "column": 66
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 8649,
+ 8669
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 46
+ },
+ "end": {
+ "line": 266,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 8611,
+ 8670
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 8
+ },
+ "end": {
+ "line": 266,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 8611,
+ 8671
+ ],
+ "loc": {
+ "start": {
+ "line": 266,
+ "column": 8
+ },
+ "end": {
+ "line": 266,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8680,
+ 8684
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 8
+ },
+ "end": {
+ "line": 267,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 8685,
+ 8692
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 13
+ },
+ "end": {
+ "line": 267,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 8680,
+ 8692
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 8
+ },
+ "end": {
+ "line": 267,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 8693,
+ 8696
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 21
+ },
+ "end": {
+ "line": 267,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 8680,
+ 8696
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 8
+ },
+ "end": {
+ "line": 267,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "cell-processed",
+ "raw": "'cell-processed'",
+ "range": [
+ 8698,
+ 8714
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 26
+ },
+ "end": {
+ "line": 267,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 8697,
+ 8715
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 25
+ },
+ "end": {
+ "line": 267,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 8730,
+ 8732
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 13
+ },
+ "end": {
+ "line": 268,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cellIndex",
+ "range": [
+ 8734,
+ 8743
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 17
+ },
+ "end": {
+ "line": 268,
+ "column": 26
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8747,
+ 8751
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 30
+ },
+ "end": {
+ "line": 268,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "buildIcon",
+ "range": [
+ 8752,
+ 8761
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 35
+ },
+ "end": {
+ "line": 268,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 8747,
+ 8761
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 30
+ },
+ "end": {
+ "line": 268,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "cellIndex",
+ "range": [
+ 8762,
+ 8771
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 45
+ },
+ "end": {
+ "line": 268,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 8773,
+ 8777
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 56
+ },
+ "end": {
+ "line": 268,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 8747,
+ 8778
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 30
+ },
+ "end": {
+ "line": 268,
+ "column": 61
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 8729,
+ 8778
+ ],
+ "loc": {
+ "start": {
+ "line": 268,
+ "column": 12
+ },
+ "end": {
+ "line": 268,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 8680,
+ 8779
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 8
+ },
+ "end": {
+ "line": 268,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 8680,
+ 8780
+ ],
+ "loc": {
+ "start": {
+ "line": 267,
+ "column": 8
+ },
+ "end": {
+ "line": 268,
+ "column": 63
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8789,
+ 8793
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 8
+ },
+ "end": {
+ "line": 269,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 8794,
+ 8801
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 13
+ },
+ "end": {
+ "line": 269,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 8789,
+ 8801
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 8
+ },
+ "end": {
+ "line": 269,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 8802,
+ 8805
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 21
+ },
+ "end": {
+ "line": 269,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 8789,
+ 8805
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 8
+ },
+ "end": {
+ "line": 269,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "filters-row-inserted",
+ "raw": "'filters-row-inserted'",
+ "range": [
+ 8807,
+ 8829
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 26
+ },
+ "end": {
+ "line": 269,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 8806,
+ 8830
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 25
+ },
+ "end": {
+ "line": 269,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8837,
+ 8841
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 56
+ },
+ "end": {
+ "line": 269,
+ "column": 60
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 8842,
+ 8844
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 61
+ },
+ "end": {
+ "line": 269,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 8837,
+ 8844
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 56
+ },
+ "end": {
+ "line": 269,
+ "column": 63
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 8845,
+ 8855
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 64
+ },
+ "end": {
+ "line": 269,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 8837,
+ 8855
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 56
+ },
+ "end": {
+ "line": 269,
+ "column": 74
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 8837,
+ 8857
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 56
+ },
+ "end": {
+ "line": 269,
+ "column": 76
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 8832,
+ 8857
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 51
+ },
+ "end": {
+ "line": 269,
+ "column": 76
+ }
+ }
+ }
+ ],
+ "range": [
+ 8789,
+ 8858
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 8
+ },
+ "end": {
+ "line": 269,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 8789,
+ 8859
+ ],
+ "loc": {
+ "start": {
+ "line": 269,
+ "column": 8
+ },
+ "end": {
+ "line": 269,
+ "column": 78
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8868,
+ 8872
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 8
+ },
+ "end": {
+ "line": 270,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 8873,
+ 8880
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 13
+ },
+ "end": {
+ "line": 270,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 8868,
+ 8880
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 8
+ },
+ "end": {
+ "line": 270,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 8881,
+ 8884
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 21
+ },
+ "end": {
+ "line": 270,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 8868,
+ 8884
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 8
+ },
+ "end": {
+ "line": 270,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filter-init",
+ "raw": "'before-filter-init'",
+ "range": [
+ 8886,
+ 8906
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 26
+ },
+ "end": {
+ "line": 270,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 8885,
+ 8907
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 25
+ },
+ "end": {
+ "line": 270,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 8922,
+ 8924
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 13
+ },
+ "end": {
+ "line": 271,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 8926,
+ 8934
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 17
+ },
+ "end": {
+ "line": 271,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 8938,
+ 8942
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 29
+ },
+ "end": {
+ "line": 271,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "build",
+ "range": [
+ 8943,
+ 8948
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 34
+ },
+ "end": {
+ "line": 271,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 8938,
+ 8948
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 29
+ },
+ "end": {
+ "line": 271,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 8949,
+ 8957
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 40
+ },
+ "end": {
+ "line": 271,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 8938,
+ 8958
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 29
+ },
+ "end": {
+ "line": 271,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 8921,
+ 8958
+ ],
+ "loc": {
+ "start": {
+ "line": 271,
+ "column": 12
+ },
+ "end": {
+ "line": 271,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 8868,
+ 8959
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 8
+ },
+ "end": {
+ "line": 271,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 8868,
+ 8960
+ ],
+ "loc": {
+ "start": {
+ "line": 270,
+ "column": 8
+ },
+ "end": {
+ "line": 271,
+ "column": 51
+ }
}
},
{
@@ -18160,16 +21402,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7917,
- 7921
+ 8970,
+ 8974
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 8
},
"end": {
- "line": 248,
+ "line": 273,
"column": 12
}
}
@@ -18178,31 +21420,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 7922,
- 7933
+ 8975,
+ 8986
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 13
},
"end": {
- "line": 248,
+ "line": 273,
"column": 24
}
}
},
"range": [
- 7917,
- 7933
+ 8970,
+ 8986
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 8
},
"end": {
- "line": 248,
+ "line": 273,
"column": 24
}
}
@@ -18212,62 +21454,62 @@
"value": false,
"raw": "false",
"range": [
- 7936,
- 7941
+ 8989,
+ 8994
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 27
},
"end": {
- "line": 248,
+ "line": 273,
"column": 32
}
}
},
"range": [
- 7917,
- 7941
+ 8970,
+ 8994
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 8
},
"end": {
- "line": 248,
+ "line": 273,
"column": 32
}
}
},
"range": [
- 7917,
- 7942
+ 8970,
+ 8995
],
"loc": {
"start": {
- "line": 248,
+ "line": 273,
"column": 8
},
"end": {
- "line": 248,
+ "line": 273,
"column": 33
}
}
}
],
"range": [
- 7082,
- 7948
+ 7670,
+ 9001
],
"loc": {
"start": {
- "line": 221,
+ "line": 236,
"column": 13
},
"end": {
- "line": 249,
+ "line": 274,
"column": 5
}
}
@@ -18275,16 +21517,16 @@
"generator": false,
"expression": false,
"range": [
- 7080,
- 7948
+ 7668,
+ 9001
],
"loc": {
"start": {
- "line": 221,
+ "line": 236,
"column": 11
},
"end": {
- "line": 249,
+ "line": 274,
"column": 5
}
}
@@ -18292,16 +21534,16 @@
"kind": "method",
"computed": false,
"range": [
- 7073,
- 7948
+ 7661,
+ 9001
],
"loc": {
"start": {
- "line": 221,
+ "line": 236,
"column": 4
},
"end": {
- "line": 249,
+ "line": 274,
"column": 5
}
},
@@ -18310,16 +21552,16 @@
"type": "Block",
"value": "*\n * Remove pop-up filters\n ",
"range": [
- 7028,
- 7068
+ 7616,
+ 7656
],
"loc": {
"start": {
- "line": 218,
+ "line": 233,
"column": 4
},
"end": {
- "line": 220,
+ "line": 235,
"column": 7
}
}
@@ -18330,7 +21572,7 @@
],
"range": [
162,
- 7951
+ 9004
],
"loc": {
"start": {
@@ -18338,14 +21580,14 @@
"column": 40
},
"end": {
- "line": 251,
+ "line": 276,
"column": 1
}
}
},
"range": [
129,
- 7951
+ 9004
],
"loc": {
"start": {
@@ -18353,7 +21595,7 @@
"column": 7
},
"end": {
- "line": 251,
+ "line": 276,
"column": 1
}
},
@@ -18364,7 +21606,7 @@
"source": null,
"range": [
122,
- 7951
+ 9004
],
"loc": {
"start": {
@@ -18372,7 +21614,7 @@
"column": 0
},
"end": {
- "line": 251,
+ "line": 276,
"column": 1
}
}
@@ -18381,7 +21623,7 @@
"sourceType": "module",
"range": [
0,
- 7951
+ 9004
],
"loc": {
"start": {
@@ -18389,7 +21631,7 @@
"column": 0
},
"end": {
- "line": 251,
+ "line": 276,
"column": 1
}
},
@@ -18432,10 +21674,10 @@
},
{
"type": "Line",
- "value": " Enable external filters behaviour",
+ "value": " Enable external filters",
"range": [
386,
- 422
+ 412
],
"loc": {
"start": {
@@ -18444,7 +21686,7 @@
},
"end": {
"line": 18,
- "column": 44
+ "column": 34
}
}
},
@@ -18452,8 +21694,8 @@
"type": "Line",
"value": "filter icon path",
"range": [
- 500,
- 518
+ 490,
+ 508
],
"loc": {
"start": {
@@ -18470,8 +21712,8 @@
"type": "Line",
"value": "active filter icon path",
"range": [
- 623,
- 648
+ 613,
+ 638
],
"loc": {
"start": {
@@ -18488,8 +21730,8 @@
"type": "Line",
"value": "defines css class for popup div containing filter",
"range": [
- 905,
- 956
+ 895,
+ 946
],
"loc": {
"start": {
@@ -18506,8 +21748,8 @@
"type": "Line",
"value": "callback function before popup filtes is opened",
"range": [
- 1037,
- 1086
+ 1027,
+ 1076
],
"loc": {
"start": {
@@ -18524,8 +21766,8 @@
"type": "Line",
"value": "callback function after popup filtes is opened",
"range": [
- 1222,
- 1270
+ 1212,
+ 1260
],
"loc": {
"start": {
@@ -18542,8 +21784,8 @@
"type": "Line",
"value": "callback function before popup filtes is closed",
"range": [
- 1403,
- 1452
+ 1393,
+ 1442
],
"loc": {
"start": {
@@ -18560,8 +21802,8 @@
"type": "Line",
"value": "callback function after popup filtes is closed",
"range": [
- 1603,
- 1651
+ 1593,
+ 1641
],
"loc": {
"start": {
@@ -18578,8 +21820,8 @@
"type": "Line",
"value": "stores filters spans",
"range": [
- 1788,
- 1810
+ 1778,
+ 1800
],
"loc": {
"start": {
@@ -18596,8 +21838,8 @@
"type": "Line",
"value": "stores filters icons",
"range": [
- 1852,
- 1874
+ 1842,
+ 1864
],
"loc": {
"start": {
@@ -18614,8 +21856,8 @@
"type": "Line",
"value": "stores filters containers",
"range": [
- 1915,
- 1942
+ 1905,
+ 1932
],
"loc": {
"start": {
@@ -18632,8 +21874,8 @@
"type": "Line",
"value": "id prefix for pop-up filter span",
"range": [
- 2056,
- 2090
+ 2046,
+ 2080
],
"loc": {
"start": {
@@ -18650,8 +21892,8 @@
"type": "Line",
"value": "id prefix for pop-up div containing filter",
"range": [
- 2142,
- 2186
+ 2132,
+ 2176
],
"loc": {
"start": {
@@ -18668,8 +21910,8 @@
"type": "Block",
"value": "*\n * Initialize DOM elements\n ",
"range": [
- 2817,
- 2859
+ 2807,
+ 2849
],
"loc": {
"start": {
@@ -18683,19 +21925,55 @@
}
},
{
- "type": "Block",
- "value": "*\n * Reset previously destroyed feature\n ",
+ "type": "Line",
+ "value": " Override headers row index if no grouped headers",
"range": [
- 3640,
- 3693
+ 2958,
+ 3009
],
"loc": {
"start": {
- "line": 107,
+ "line": 88,
+ "column": 8
+ },
+ "end": {
+ "line": 88,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " subscribe to events",
+ "range": [
+ 3729,
+ 3751
+ ],
+ "loc": {
+ "start": {
+ "line": 110,
+ "column": 8
+ },
+ "end": {
+ "line": 110,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Reset previously destroyed feature\n ",
+ "range": [
+ 4222,
+ 4275
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
"column": 4
},
"end": {
- "line": 109,
+ "line": 124,
"column": 7
}
}
@@ -18704,16 +21982,16 @@
"type": "Block",
"value": "*\n * Build all pop-up filters elements\n ",
"range": [
- 3787,
- 3839
+ 4369,
+ 4421
],
"loc": {
"start": {
- "line": 116,
+ "line": 131,
"column": 4
},
"end": {
- "line": 118,
+ "line": 133,
"column": 7
}
}
@@ -18722,16 +22000,16 @@
"type": "Block",
"value": "*\n * Build a specified pop-up filter elements\n * @param {Number} colIndex Column index\n * @param {Object} div Optional container DOM element\n ",
"range": [
- 3989,
- 4158
+ 4571,
+ 4740
],
"loc": {
"start": {
- "line": 125,
+ "line": 140,
"column": 4
},
"end": {
- "line": 129,
+ "line": 144,
"column": 7
}
}
@@ -18740,16 +22018,16 @@
"type": "Block",
"value": "*\n * Toogle visibility of specified filter\n * @param {Number} colIndex Column index\n ",
"range": [
- 4674,
- 4776
+ 5256,
+ 5358
],
"loc": {
"start": {
- "line": 143,
+ "line": 158,
"column": 4
},
"end": {
- "line": 146,
+ "line": 161,
"column": 7
}
}
@@ -18758,30 +22036,12 @@
"type": "Block",
"value": "*\n * Close all filters excepted for the specified one if any\n * @param {Number} exceptIdx Column index of the filter to not close\n ",
"range": [
- 6007,
- 6155
+ 6589,
+ 6737
],
"loc": {
"start": {
- "line": 181,
- "column": 4
- },
- "end": {
- "line": 184,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Build all the icons representing the pop-up filters\n ",
- "range": [
- 6477,
- 6547
- ],
- "loc": {
- "start": {
- "line": 197,
+ "line": 196,
"column": 4
},
"end": {
@@ -18792,18 +22052,36 @@
},
{
"type": "Block",
- "value": "*\n * Build specified icon\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
+ "value": "*\n * Build all the icons representing the pop-up filters\n ",
"range": [
- 6680,
- 6818
+ 7059,
+ 7129
],
"loc": {
"start": {
- "line": 206,
+ "line": 212,
"column": 4
},
"end": {
- "line": 210,
+ "line": 214,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Apply specified icon state\n * @param {Number} colIndex Column index\n * @param {Boolean} active Apply active state\n ",
+ "range": [
+ 7262,
+ 7406
+ ],
+ "loc": {
+ "start": {
+ "line": 221,
+ "column": 4
+ },
+ "end": {
+ "line": 225,
"column": 7
}
}
@@ -18812,19 +22090,37 @@
"type": "Block",
"value": "*\n * Remove pop-up filters\n ",
"range": [
- 7028,
- 7068
+ 7616,
+ 7656
],
"loc": {
"start": {
- "line": 218,
+ "line": 233,
"column": 4
},
"end": {
- "line": 220,
+ "line": 235,
"column": 7
}
}
+ },
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 8506,
+ 8530
+ ],
+ "loc": {
+ "start": {
+ "line": 264,
+ "column": 8
+ },
+ "end": {
+ "line": 264,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/rowsCounter.js.json b/docs/ast/source/src/modules/rowsCounter.js.json
index 2c53dba1..bbefbb5b 100644
--- a/docs/ast/source/src/modules/rowsCounter.js.json
+++ b/docs/ast/source/src/modules/rowsCounter.js.json
@@ -6186,6 +6186,630 @@
"line": 77,
"column": 41
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to events",
+ "range": [
+ 2744,
+ 2766
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2775,
+ 2779
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2780,
+ 2787
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 13
+ },
+ "end": {
+ "line": 80,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2775,
+ 2787
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2788,
+ 2790
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 21
+ },
+ "end": {
+ "line": 80,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2775,
+ 2790
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 2792,
+ 2809
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 25
+ },
+ "end": {
+ "line": 80,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "grouped-by-page",
+ "raw": "'grouped-by-page'",
+ "range": [
+ 2811,
+ 2828
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 44
+ },
+ "end": {
+ "line": 80,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 2791,
+ 2829
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 24
+ },
+ "end": {
+ "line": 80,
+ "column": 62
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2848,
+ 2852
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 17
+ },
+ "end": {
+ "line": 81,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refresh",
+ "range": [
+ 2853,
+ 2860
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 22
+ },
+ "end": {
+ "line": 81,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 2848,
+ 2860
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 17
+ },
+ "end": {
+ "line": 81,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2861,
+ 2863
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 30
+ },
+ "end": {
+ "line": 81,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 2864,
+ 2877
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 33
+ },
+ "end": {
+ "line": 81,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 2861,
+ 2877
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 30
+ },
+ "end": {
+ "line": 81,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 2848,
+ 2878
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 17
+ },
+ "end": {
+ "line": 81,
+ "column": 47
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2843,
+ 2878
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 12
+ },
+ "end": {
+ "line": 81,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 2775,
+ 2879
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 81,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 2775,
+ 2880
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 81,
+ "column": 49
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " subscribe to events",
+ "range": [
+ 2744,
+ 2766
+ ],
+ "loc": {
+ "start": {
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2889,
+ 2893
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2894,
+ 2901
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 13
+ },
+ "end": {
+ "line": 82,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2889,
+ 2901
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 2902,
+ 2904
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 21
+ },
+ "end": {
+ "line": 82,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2889,
+ 2904
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "rows-changed",
+ "raw": "'rows-changed'",
+ "range": [
+ 2906,
+ 2920
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 25
+ },
+ "end": {
+ "line": 82,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 2905,
+ 2921
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 24
+ },
+ "end": {
+ "line": 82,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2928,
+ 2932
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 47
+ },
+ "end": {
+ "line": 82,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refresh",
+ "range": [
+ 2933,
+ 2940
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 52
+ },
+ "end": {
+ "line": 82,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 2928,
+ 2940
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 47
+ },
+ "end": {
+ "line": 82,
+ "column": 59
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2928,
+ 2942
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 47
+ },
+ "end": {
+ "line": 82,
+ "column": 61
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 2923,
+ 2942
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 42
+ },
+ "end": {
+ "line": 82,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 2889,
+ 2943
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 2889,
+ 2944
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 63
+ }
}
},
{
@@ -6199,16 +6823,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2744,
- 2748
+ 2954,
+ 2958
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 8
},
"end": {
- "line": 79,
+ "line": 84,
"column": 12
}
}
@@ -6217,31 +6841,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2749,
- 2760
+ 2959,
+ 2970
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 13
},
"end": {
- "line": 79,
+ "line": 84,
"column": 24
}
}
},
"range": [
- 2744,
- 2760
+ 2954,
+ 2970
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 8
},
"end": {
- "line": 79,
+ "line": 84,
"column": 24
}
}
@@ -6251,46 +6875,46 @@
"value": true,
"raw": "true",
"range": [
- 2763,
- 2767
+ 2973,
+ 2977
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 27
},
"end": {
- "line": 79,
+ "line": 84,
"column": 31
}
}
},
"range": [
- 2744,
- 2767
+ 2954,
+ 2977
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 8
},
"end": {
- "line": 79,
+ "line": 84,
"column": 31
}
}
},
"range": [
- 2744,
- 2768
+ 2954,
+ 2978
],
"loc": {
"start": {
- "line": 79,
+ "line": 84,
"column": 8
},
"end": {
- "line": 79,
+ "line": 84,
"column": 32
}
}
@@ -6305,16 +6929,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2777,
- 2781
+ 2987,
+ 2991
],
"loc": {
"start": {
- "line": 80,
+ "line": 85,
"column": 8
},
"end": {
- "line": 80,
+ "line": 85,
"column": 12
}
}
@@ -6323,62 +6947,62 @@
"type": "Identifier",
"name": "refresh",
"range": [
- 2782,
- 2789
+ 2992,
+ 2999
],
"loc": {
"start": {
- "line": 80,
+ "line": 85,
"column": 13
},
"end": {
- "line": 80,
+ "line": 85,
"column": 20
}
}
},
"range": [
- 2777,
- 2789
+ 2987,
+ 2999
],
"loc": {
"start": {
- "line": 80,
+ "line": 85,
"column": 8
},
"end": {
- "line": 80,
+ "line": 85,
"column": 20
}
}
},
"arguments": [],
"range": [
- 2777,
- 2791
+ 2987,
+ 3001
],
"loc": {
"start": {
- "line": 80,
+ "line": 85,
"column": 8
},
"end": {
- "line": 80,
+ "line": 85,
"column": 22
}
}
},
"range": [
- 2777,
- 2792
+ 2987,
+ 3002
],
"loc": {
"start": {
- "line": 80,
+ "line": 85,
"column": 8
},
"end": {
- "line": 80,
+ "line": 85,
"column": 23
}
}
@@ -6386,7 +7010,7 @@
],
"range": [
1537,
- 2798
+ 3008
],
"loc": {
"start": {
@@ -6394,7 +7018,7 @@
"column": 10
},
"end": {
- "line": 81,
+ "line": 86,
"column": 5
}
}
@@ -6403,7 +7027,7 @@
"expression": false,
"range": [
1535,
- 2798
+ 3008
],
"loc": {
"start": {
@@ -6411,7 +7035,7 @@
"column": 8
},
"end": {
- "line": 81,
+ "line": 86,
"column": 5
}
}
@@ -6420,7 +7044,7 @@
"computed": false,
"range": [
1531,
- 2798
+ 3008
],
"loc": {
"start": {
@@ -6428,7 +7052,7 @@
"column": 4
},
"end": {
- "line": 81,
+ "line": 86,
"column": 5
}
},
@@ -6440,16 +7064,16 @@
"type": "Identifier",
"name": "refresh",
"range": [
- 2804,
- 2811
+ 3014,
+ 3021
],
"loc": {
"start": {
- "line": 83,
+ "line": 88,
"column": 4
},
"end": {
- "line": 83,
+ "line": 88,
"column": 11
}
}
@@ -6462,16 +7086,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 2812,
- 2813
+ 3022,
+ 3023
],
"loc": {
"start": {
- "line": 83,
+ "line": 88,
"column": 12
},
"end": {
- "line": 83,
+ "line": 88,
"column": 13
}
}
@@ -6494,16 +7118,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2828,
- 2832
+ 3038,
+ 3042
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 12
},
"end": {
- "line": 84,
+ "line": 89,
"column": 16
}
}
@@ -6512,47 +7136,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2833,
- 2844
+ 3043,
+ 3054
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 17
},
"end": {
- "line": 84,
+ "line": 89,
"column": 28
}
}
},
"range": [
- 2828,
- 2844
+ 3038,
+ 3054
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 12
},
"end": {
- "line": 84,
+ "line": 89,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2827,
- 2844
+ 3037,
+ 3054
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 11
},
"end": {
- "line": 84,
+ "line": 89,
"column": 28
}
}
@@ -6568,16 +7192,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2849,
- 2853
+ 3059,
+ 3063
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 33
},
"end": {
- "line": 84,
+ "line": 89,
"column": 37
}
}
@@ -6586,78 +7210,78 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 2854,
- 2863
+ 3064,
+ 3073
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 38
},
"end": {
- "line": 84,
+ "line": 89,
"column": 47
}
}
},
"range": [
- 2849,
- 2863
+ 3059,
+ 3073
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 33
},
"end": {
- "line": 84,
+ "line": 89,
"column": 47
}
}
},
"arguments": [],
"range": [
- 2849,
- 2865
+ 3059,
+ 3075
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 33
},
"end": {
- "line": 84,
+ "line": 89,
"column": 49
}
}
},
"prefix": true,
"range": [
- 2848,
- 2865
+ 3058,
+ 3075
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 32
},
"end": {
- "line": 84,
+ "line": 89,
"column": 49
}
}
},
"range": [
- 2827,
- 2865
+ 3037,
+ 3075
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 11
},
"end": {
- "line": 84,
+ "line": 89,
"column": 49
}
}
@@ -6669,48 +7293,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2880,
- 2887
+ 3090,
+ 3097
],
"loc": {
"start": {
- "line": 85,
+ "line": 90,
"column": 12
},
"end": {
- "line": 85,
+ "line": 90,
"column": 19
}
}
}
],
"range": [
- 2866,
- 2897
+ 3076,
+ 3107
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 50
},
"end": {
- "line": 86,
+ "line": 91,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2824,
- 2897
+ 3034,
+ 3107
],
"loc": {
"start": {
- "line": 84,
+ "line": 89,
"column": 8
},
"end": {
- "line": 86,
+ "line": 91,
"column": 9
}
}
@@ -6724,16 +7348,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2911,
- 2913
+ 3121,
+ 3123
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 12
},
"end": {
- "line": 88,
+ "line": 93,
"column": 14
}
}
@@ -6744,16 +7368,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2916,
- 2920
+ 3126,
+ 3130
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 17
},
"end": {
- "line": 88,
+ "line": 93,
"column": 21
}
}
@@ -6762,46 +7386,46 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2921,
- 2923
+ 3131,
+ 3133
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 22
},
"end": {
- "line": 88,
+ "line": 93,
"column": 24
}
}
},
"range": [
- 2916,
- 2923
+ 3126,
+ 3133
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 17
},
"end": {
- "line": 88,
+ "line": 93,
"column": 24
}
}
},
"range": [
- 2911,
- 2923
+ 3121,
+ 3133
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 12
},
"end": {
- "line": 88,
+ "line": 93,
"column": 24
}
}
@@ -6809,16 +7433,16 @@
],
"kind": "var",
"range": [
- 2907,
- 2924
+ 3117,
+ 3134
],
"loc": {
"start": {
- "line": 88,
+ "line": 93,
"column": 8
},
"end": {
- "line": 88,
+ "line": 93,
"column": 25
}
}
@@ -6831,16 +7455,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2937,
- 2941
+ 3147,
+ 3151
],
"loc": {
"start": {
- "line": 90,
+ "line": 95,
"column": 11
},
"end": {
- "line": 90,
+ "line": 95,
"column": 15
}
}
@@ -6849,31 +7473,31 @@
"type": "Identifier",
"name": "onBeforeRefreshCounter",
"range": [
- 2942,
- 2964
+ 3152,
+ 3174
],
"loc": {
"start": {
- "line": 90,
+ "line": 95,
"column": 16
},
"end": {
- "line": 90,
+ "line": 95,
"column": 38
}
}
},
"range": [
- 2937,
- 2964
+ 3147,
+ 3174
],
"loc": {
"start": {
- "line": 90,
+ "line": 95,
"column": 11
},
"end": {
- "line": 90,
+ "line": 95,
"column": 38
}
}
@@ -6894,16 +7518,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2979,
- 2983
+ 3189,
+ 3193
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 12
},
"end": {
- "line": 91,
+ "line": 96,
"column": 16
}
}
@@ -6912,31 +7536,31 @@
"type": "Identifier",
"name": "onBeforeRefreshCounter",
"range": [
- 2984,
- 3006
+ 3194,
+ 3216
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 17
},
"end": {
- "line": 91,
+ "line": 96,
"column": 39
}
}
},
"range": [
- 2979,
- 3006
+ 3189,
+ 3216
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 12
},
"end": {
- "line": 91,
+ "line": 96,
"column": 39
}
}
@@ -6945,31 +7569,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 3007,
- 3011
+ 3217,
+ 3221
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 40
},
"end": {
- "line": 91,
+ "line": 96,
"column": 44
}
}
},
"range": [
- 2979,
- 3011
+ 3189,
+ 3221
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 12
},
"end": {
- "line": 91,
+ "line": 96,
"column": 44
}
}
@@ -6980,16 +7604,16 @@
"value": null,
"raw": "null",
"range": [
- 3012,
- 3016
+ 3222,
+ 3226
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 45
},
"end": {
- "line": 91,
+ "line": 96,
"column": 49
}
}
@@ -6998,16 +7622,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3018,
- 3020
+ 3228,
+ 3230
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 51
},
"end": {
- "line": 91,
+ "line": 96,
"column": 53
}
}
@@ -7018,16 +7642,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3022,
- 3026
+ 3232,
+ 3236
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 55
},
"end": {
- "line": 91,
+ "line": 96,
"column": 59
}
}
@@ -7036,94 +7660,94 @@
"type": "Identifier",
"name": "rowsCounterSpan",
"range": [
- 3027,
- 3042
+ 3237,
+ 3252
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 60
},
"end": {
- "line": 91,
+ "line": 96,
"column": 75
}
}
},
"range": [
- 3022,
- 3042
+ 3232,
+ 3252
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 55
},
"end": {
- "line": 91,
+ "line": 96,
"column": 75
}
}
}
],
"range": [
- 2979,
- 3043
+ 3189,
+ 3253
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 12
},
"end": {
- "line": 91,
+ "line": 96,
"column": 76
}
}
},
"range": [
- 2979,
- 3044
+ 3189,
+ 3254
],
"loc": {
"start": {
- "line": 91,
+ "line": 96,
"column": 12
},
"end": {
- "line": 91,
+ "line": 96,
"column": 77
}
}
}
],
"range": [
- 2965,
- 3054
+ 3175,
+ 3264
],
"loc": {
"start": {
- "line": 90,
+ "line": 95,
"column": 39
},
"end": {
- "line": 92,
+ "line": 97,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2934,
- 3054
+ 3144,
+ 3264
],
"loc": {
"start": {
- "line": 90,
+ "line": 95,
"column": 8
},
"end": {
- "line": 92,
+ "line": 97,
"column": 9
}
}
@@ -7137,32 +7761,32 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 3068,
- 3074
+ 3278,
+ 3284
],
"loc": {
"start": {
- "line": 94,
+ "line": 99,
"column": 12
},
"end": {
- "line": 94,
+ "line": 99,
"column": 18
}
}
},
"init": null,
"range": [
- 3068,
- 3074
+ 3278,
+ 3284
],
"loc": {
"start": {
- "line": 94,
+ "line": 99,
"column": 12
},
"end": {
- "line": 94,
+ "line": 99,
"column": 18
}
}
@@ -7170,16 +7794,16 @@
],
"kind": "var",
"range": [
- 3064,
- 3075
+ 3274,
+ 3285
],
"loc": {
"start": {
- "line": 94,
+ "line": 99,
"column": 8
},
"end": {
- "line": 94,
+ "line": 99,
"column": 19
}
}
@@ -7196,16 +7820,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3088,
- 3090
+ 3298,
+ 3300
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 12
},
"end": {
- "line": 95,
+ "line": 100,
"column": 14
}
}
@@ -7214,47 +7838,47 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3091,
- 3097
+ 3301,
+ 3307
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 15
},
"end": {
- "line": 95,
+ "line": 100,
"column": 21
}
}
},
"range": [
- 3088,
- 3097
+ 3298,
+ 3307
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 12
},
"end": {
- "line": 95,
+ "line": 100,
"column": 21
}
}
},
"prefix": true,
"range": [
- 3087,
- 3097
+ 3297,
+ 3307
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 11
},
"end": {
- "line": 95,
+ "line": 100,
"column": 21
}
}
@@ -7271,16 +7895,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 3115,
- 3116
+ 3325,
+ 3326
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 15
},
"end": {
- "line": 96,
+ "line": 101,
"column": 16
}
}
@@ -7292,16 +7916,16 @@
"type": "Identifier",
"name": "p",
"range": [
- 3120,
- 3121
+ 3330,
+ 3331
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 20
},
"end": {
- "line": 96,
+ "line": 101,
"column": 21
}
}
@@ -7311,46 +7935,46 @@
"value": "",
"raw": "''",
"range": [
- 3126,
- 3128
+ 3336,
+ 3338
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 26
},
"end": {
- "line": 96,
+ "line": 101,
"column": 28
}
}
},
"range": [
- 3120,
- 3128
+ 3330,
+ 3338
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 20
},
"end": {
- "line": 96,
+ "line": 101,
"column": 28
}
}
},
"range": [
- 3115,
- 3128
+ 3325,
+ 3338
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 15
},
"end": {
- "line": 96,
+ "line": 101,
"column": 28
}
}
@@ -7367,16 +7991,16 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 3147,
- 3153
+ 3357,
+ 3363
],
"loc": {
"start": {
- "line": 97,
+ "line": 102,
"column": 16
},
"end": {
- "line": 97,
+ "line": 102,
"column": 22
}
}
@@ -7385,62 +8009,62 @@
"type": "Identifier",
"name": "p",
"range": [
- 3156,
- 3157
+ 3366,
+ 3367
],
"loc": {
"start": {
- "line": 97,
+ "line": 102,
"column": 25
},
"end": {
- "line": 97,
+ "line": 102,
"column": 26
}
}
},
"range": [
- 3147,
- 3157
+ 3357,
+ 3367
],
"loc": {
"start": {
- "line": 97,
+ "line": 102,
"column": 16
},
"end": {
- "line": 97,
+ "line": 102,
"column": 26
}
}
},
"range": [
- 3147,
- 3158
+ 3357,
+ 3368
],
"loc": {
"start": {
- "line": 97,
+ "line": 102,
"column": 16
},
"end": {
- "line": 97,
+ "line": 102,
"column": 27
}
}
}
],
"range": [
- 3129,
- 3172
+ 3339,
+ 3382
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 29
},
"end": {
- "line": 98,
+ "line": 103,
"column": 13
}
}
@@ -7457,16 +8081,16 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 3195,
- 3201
+ 3405,
+ 3411
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 16
},
"end": {
- "line": 99,
+ "line": 104,
"column": 22
}
}
@@ -7481,16 +8105,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3204,
- 3206
+ 3414,
+ 3416
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 25
},
"end": {
- "line": 99,
+ "line": 104,
"column": 27
}
}
@@ -7499,31 +8123,31 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 3207,
- 3223
+ 3417,
+ 3433
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 28
},
"end": {
- "line": 99,
+ "line": 104,
"column": 44
}
}
},
"range": [
- 3204,
- 3223
+ 3414,
+ 3433
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 25
},
"end": {
- "line": 99,
+ "line": 104,
"column": 44
}
}
@@ -7535,16 +8159,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3226,
- 3228
+ 3436,
+ 3438
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 47
},
"end": {
- "line": 99,
+ "line": 104,
"column": 49
}
}
@@ -7553,123 +8177,123 @@
"type": "Identifier",
"name": "nbHiddenRows",
"range": [
- 3229,
- 3241
+ 3439,
+ 3451
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 50
},
"end": {
- "line": 99,
+ "line": 104,
"column": 62
}
}
},
"range": [
- 3226,
- 3241
+ 3436,
+ 3451
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 47
},
"end": {
- "line": 99,
+ "line": 104,
"column": 62
}
}
},
"range": [
- 3204,
- 3241
+ 3414,
+ 3451
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 25
},
"end": {
- "line": 99,
+ "line": 104,
"column": 62
}
}
},
"range": [
- 3195,
- 3241
+ 3405,
+ 3451
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 16
},
"end": {
- "line": 99,
+ "line": 104,
"column": 62
}
}
},
"range": [
- 3195,
- 3242
+ 3405,
+ 3452
],
"loc": {
"start": {
- "line": 99,
+ "line": 104,
"column": 16
},
"end": {
- "line": 99,
+ "line": 104,
"column": 63
}
}
}
],
"range": [
- 3177,
- 3256
+ 3387,
+ 3466
],
"loc": {
"start": {
- "line": 98,
+ "line": 103,
"column": 18
},
"end": {
- "line": 100,
+ "line": 105,
"column": 13
}
}
},
"range": [
- 3112,
- 3256
+ 3322,
+ 3466
],
"loc": {
"start": {
- "line": 96,
+ "line": 101,
"column": 12
},
"end": {
- "line": 100,
+ "line": 105,
"column": 13
}
}
}
],
"range": [
- 3098,
- 3266
+ 3308,
+ 3476
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 22
},
"end": {
- "line": 101,
+ "line": 106,
"column": 9
}
}
@@ -7686,16 +8310,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3290,
- 3296
+ 3500,
+ 3506
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 16
},
"end": {
- "line": 102,
+ "line": 107,
"column": 22
}
}
@@ -7709,16 +8333,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3299,
- 3301
+ 3509,
+ 3511
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 25
},
"end": {
- "line": 102,
+ "line": 107,
"column": 27
}
}
@@ -7727,31 +8351,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 3302,
- 3309
+ 3512,
+ 3519
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 28
},
"end": {
- "line": 102,
+ "line": 107,
"column": 35
}
}
},
"range": [
- 3299,
- 3309
+ 3509,
+ 3519
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 25
},
"end": {
- "line": 102,
+ "line": 107,
"column": 35
}
}
@@ -7762,47 +8386,47 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 3310,
- 3318
+ 3520,
+ 3528
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 36
},
"end": {
- "line": 102,
+ "line": 107,
"column": 44
}
}
}
],
"range": [
- 3299,
- 3319
+ 3509,
+ 3529
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 25
},
"end": {
- "line": 102,
+ "line": 107,
"column": 45
}
}
},
"range": [
- 3290,
- 3319
+ 3500,
+ 3529
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 16
},
"end": {
- "line": 102,
+ "line": 107,
"column": 45
}
}
@@ -7810,16 +8434,16 @@
],
"kind": "var",
"range": [
- 3286,
- 3320
+ 3496,
+ 3530
],
"loc": {
"start": {
- "line": 102,
+ "line": 107,
"column": 12
},
"end": {
- "line": 102,
+ "line": 107,
"column": 46
}
}
@@ -7830,16 +8454,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3336,
- 3342
+ 3546,
+ 3552
],
"loc": {
"start": {
- "line": 103,
+ "line": 108,
"column": 15
},
"end": {
- "line": 103,
+ "line": 108,
"column": 21
}
}
@@ -7856,16 +8480,16 @@
"type": "Identifier",
"name": "paging_start_row",
"range": [
- 3400,
- 3416
+ 3610,
+ 3626
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 20
},
"end": {
- "line": 105,
+ "line": 110,
"column": 36
}
}
@@ -7879,16 +8503,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 3419,
- 3427
+ 3629,
+ 3637
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 39
},
"end": {
- "line": 105,
+ "line": 110,
"column": 47
}
}
@@ -7901,16 +8525,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3428,
- 3434
+ 3638,
+ 3644
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 48
},
"end": {
- "line": 105,
+ "line": 110,
"column": 54
}
}
@@ -7919,31 +8543,31 @@
"type": "Identifier",
"name": "startPagingRow",
"range": [
- 3435,
- 3449
+ 3645,
+ 3659
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 55
},
"end": {
- "line": 105,
+ "line": 110,
"column": 69
}
}
},
"range": [
- 3428,
- 3449
+ 3638,
+ 3659
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 48
},
"end": {
- "line": 105,
+ "line": 110,
"column": 69
}
}
@@ -7953,32 +8577,32 @@
"value": 10,
"raw": "10",
"range": [
- 3451,
- 3453
+ 3661,
+ 3663
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 71
},
"end": {
- "line": 105,
+ "line": 110,
"column": 73
}
}
}
],
"range": [
- 3419,
- 3454
+ 3629,
+ 3664
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 39
},
"end": {
- "line": 105,
+ "line": 110,
"column": 74
}
}
@@ -7995,16 +8619,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3483,
- 3485
+ 3693,
+ 3695
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 26
},
"end": {
- "line": 106,
+ "line": 111,
"column": 28
}
}
@@ -8013,31 +8637,31 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 3486,
- 3499
+ 3696,
+ 3709
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 29
},
"end": {
- "line": 106,
+ "line": 111,
"column": 42
}
}
},
"range": [
- 3483,
- 3499
+ 3693,
+ 3709
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 26
},
"end": {
- "line": 106,
+ "line": 111,
"column": 42
}
}
@@ -8047,31 +8671,31 @@
"value": 0,
"raw": "0",
"range": [
- 3500,
- 3501
+ 3710,
+ 3711
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 43
},
"end": {
- "line": 106,
+ "line": 111,
"column": 44
}
}
},
"range": [
- 3483,
- 3501
+ 3693,
+ 3711
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 26
},
"end": {
- "line": 106,
+ "line": 111,
"column": 44
}
}
@@ -8081,16 +8705,16 @@
"value": 1,
"raw": "1",
"range": [
- 3505,
- 3506
+ 3715,
+ 3716
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 48
},
"end": {
- "line": 106,
+ "line": 111,
"column": 49
}
}
@@ -8100,61 +8724,61 @@
"value": 0,
"raw": "0",
"range": [
- 3509,
- 3510
+ 3719,
+ 3720
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 52
},
"end": {
- "line": 106,
+ "line": 111,
"column": 53
}
}
},
"range": [
- 3482,
- 3510
+ 3692,
+ 3720
],
"loc": {
"start": {
- "line": 106,
+ "line": 111,
"column": 25
},
"end": {
- "line": 106,
+ "line": 111,
"column": 53
}
}
},
"range": [
- 3419,
- 3511
+ 3629,
+ 3721
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 39
},
"end": {
- "line": 106,
+ "line": 111,
"column": 54
}
}
},
"range": [
- 3400,
- 3511
+ 3610,
+ 3721
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 20
},
"end": {
- "line": 106,
+ "line": 111,
"column": 54
}
}
@@ -8162,16 +8786,16 @@
],
"kind": "var",
"range": [
- 3396,
- 3512
+ 3606,
+ 3722
],
"loc": {
"start": {
- "line": 105,
+ "line": 110,
"column": 16
},
"end": {
- "line": 106,
+ "line": 111,
"column": 55
}
},
@@ -8180,16 +8804,16 @@
"type": "Line",
"value": "paging start row",
"range": [
- 3361,
- 3379
+ 3571,
+ 3589
],
"loc": {
"start": {
- "line": 104,
+ "line": 109,
"column": 16
},
"end": {
- "line": 104,
+ "line": 109,
"column": 34
}
}
@@ -8205,16 +8829,16 @@
"type": "Identifier",
"name": "paging_end_row",
"range": [
- 3533,
- 3547
+ 3743,
+ 3757
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 20
},
"end": {
- "line": 107,
+ "line": 112,
"column": 34
}
}
@@ -8234,16 +8858,16 @@
"type": "Identifier",
"name": "paging_start_row",
"range": [
- 3551,
- 3567
+ 3761,
+ 3777
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 38
},
"end": {
- "line": 107,
+ "line": 112,
"column": 54
}
}
@@ -8255,16 +8879,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3568,
- 3574
+ 3778,
+ 3784
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 55
},
"end": {
- "line": 107,
+ "line": 112,
"column": 61
}
}
@@ -8273,46 +8897,46 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 3575,
- 3587
+ 3785,
+ 3797
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 62
},
"end": {
- "line": 107,
+ "line": 112,
"column": 74
}
}
},
"range": [
- 3568,
- 3587
+ 3778,
+ 3797
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 55
},
"end": {
- "line": 107,
+ "line": 112,
"column": 74
}
}
},
"range": [
- 3551,
- 3587
+ 3761,
+ 3797
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 38
},
"end": {
- "line": 107,
+ "line": 112,
"column": 74
}
}
@@ -8322,31 +8946,31 @@
"value": 1,
"raw": "1",
"range": [
- 3589,
- 3590
+ 3799,
+ 3800
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 76
},
"end": {
- "line": 107,
+ "line": 112,
"column": 77
}
}
},
"range": [
- 3550,
- 3590
+ 3760,
+ 3800
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 37
},
"end": {
- "line": 107,
+ "line": 112,
"column": 77
}
}
@@ -8358,16 +8982,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3618,
- 3620
+ 3828,
+ 3830
],
"loc": {
"start": {
- "line": 108,
+ "line": 113,
"column": 24
},
"end": {
- "line": 108,
+ "line": 113,
"column": 26
}
}
@@ -8376,46 +9000,46 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 3621,
- 3634
+ 3831,
+ 3844
],
"loc": {
"start": {
- "line": 108,
+ "line": 113,
"column": 27
},
"end": {
- "line": 108,
+ "line": 113,
"column": 40
}
}
},
"range": [
- 3618,
- 3634
+ 3828,
+ 3844
],
"loc": {
"start": {
- "line": 108,
+ "line": 113,
"column": 24
},
"end": {
- "line": 108,
+ "line": 113,
"column": 40
}
}
},
"range": [
- 3550,
- 3634
+ 3760,
+ 3844
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 37
},
"end": {
- "line": 108,
+ "line": 113,
"column": 40
}
}
@@ -8430,16 +9054,16 @@
"type": "Identifier",
"name": "paging_start_row",
"range": [
- 3661,
- 3677
+ 3871,
+ 3887
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 24
},
"end": {
- "line": 109,
+ "line": 114,
"column": 40
}
}
@@ -8451,16 +9075,16 @@
"type": "Identifier",
"name": "paging",
"range": [
- 3678,
- 3684
+ 3888,
+ 3894
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 41
},
"end": {
- "line": 109,
+ "line": 114,
"column": 47
}
}
@@ -8469,46 +9093,46 @@
"type": "Identifier",
"name": "pagingLength",
"range": [
- 3685,
- 3697
+ 3895,
+ 3907
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 48
},
"end": {
- "line": 109,
+ "line": 114,
"column": 60
}
}
},
"range": [
- 3678,
- 3697
+ 3888,
+ 3907
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 41
},
"end": {
- "line": 109,
+ "line": 114,
"column": 60
}
}
},
"range": [
- 3661,
- 3697
+ 3871,
+ 3907
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 24
},
"end": {
- "line": 109,
+ "line": 114,
"column": 60
}
}
@@ -8518,31 +9142,31 @@
"value": 1,
"raw": "1",
"range": [
- 3698,
- 3699
+ 3908,
+ 3909
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 61
},
"end": {
- "line": 109,
+ "line": 114,
"column": 62
}
}
},
"range": [
- 3661,
- 3699
+ 3871,
+ 3909
],
"loc": {
"start": {
- "line": 109,
+ "line": 114,
"column": 24
},
"end": {
- "line": 109,
+ "line": 114,
"column": 62
}
}
@@ -8554,16 +9178,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3726,
- 3728
+ 3936,
+ 3938
],
"loc": {
"start": {
- "line": 110,
+ "line": 115,
"column": 24
},
"end": {
- "line": 110,
+ "line": 115,
"column": 26
}
}
@@ -8572,61 +9196,61 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 3729,
- 3742
+ 3939,
+ 3952
],
"loc": {
"start": {
- "line": 110,
+ "line": 115,
"column": 27
},
"end": {
- "line": 110,
+ "line": 115,
"column": 40
}
}
},
"range": [
- 3726,
- 3742
+ 3936,
+ 3952
],
"loc": {
"start": {
- "line": 110,
+ "line": 115,
"column": 24
},
"end": {
- "line": 110,
+ "line": 115,
"column": 40
}
}
},
"range": [
- 3550,
- 3742
+ 3760,
+ 3952
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 37
},
"end": {
- "line": 110,
+ "line": 115,
"column": 40
}
}
},
"range": [
- 3533,
- 3742
+ 3743,
+ 3952
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 20
},
"end": {
- "line": 110,
+ "line": 115,
"column": 40
}
}
@@ -8634,16 +9258,16 @@
],
"kind": "var",
"range": [
- 3529,
- 3743
+ 3739,
+ 3953
],
"loc": {
"start": {
- "line": 107,
+ "line": 112,
"column": 16
},
"end": {
- "line": 110,
+ "line": 115,
"column": 41
}
}
@@ -8657,16 +9281,16 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 3760,
- 3766
+ 3970,
+ 3976
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 16
},
"end": {
- "line": 111,
+ "line": 116,
"column": 22
}
}
@@ -8687,16 +9311,16 @@
"type": "Identifier",
"name": "paging_start_row",
"range": [
- 3769,
- 3785
+ 3979,
+ 3995
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 25
},
"end": {
- "line": 111,
+ "line": 116,
"column": 41
}
}
@@ -8707,16 +9331,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3788,
- 3792
+ 3998,
+ 4002
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 44
},
"end": {
- "line": 111,
+ "line": 116,
"column": 48
}
}
@@ -8725,46 +9349,46 @@
"type": "Identifier",
"name": "fromToTextSeparator",
"range": [
- 3793,
- 3812
+ 4003,
+ 4022
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 49
},
"end": {
- "line": 111,
+ "line": 116,
"column": 68
}
}
},
"range": [
- 3788,
- 3812
+ 3998,
+ 4022
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 44
},
"end": {
- "line": 111,
+ "line": 116,
"column": 68
}
}
},
"range": [
- 3769,
- 3812
+ 3979,
+ 4022
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 25
},
"end": {
- "line": 111,
+ "line": 116,
"column": 68
}
}
@@ -8773,31 +9397,31 @@
"type": "Identifier",
"name": "paging_end_row",
"range": [
- 3835,
- 3849
+ 4045,
+ 4059
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 20
},
"end": {
- "line": 112,
+ "line": 117,
"column": 34
}
}
},
"range": [
- 3769,
- 3849
+ 3979,
+ 4059
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 25
},
"end": {
- "line": 112,
+ "line": 117,
"column": 34
}
}
@@ -8808,16 +9432,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3852,
- 3856
+ 4062,
+ 4066
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 37
},
"end": {
- "line": 112,
+ "line": 117,
"column": 41
}
}
@@ -8826,46 +9450,46 @@
"type": "Identifier",
"name": "overText",
"range": [
- 3857,
- 3865
+ 4067,
+ 4075
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 42
},
"end": {
- "line": 112,
+ "line": 117,
"column": 50
}
}
},
"range": [
- 3852,
- 3865
+ 4062,
+ 4075
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 37
},
"end": {
- "line": 112,
+ "line": 117,
"column": 50
}
}
},
"range": [
- 3769,
- 3865
+ 3979,
+ 4075
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 25
},
"end": {
- "line": 112,
+ "line": 117,
"column": 50
}
}
@@ -8877,16 +9501,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3868,
- 3870
+ 4078,
+ 4080
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 53
},
"end": {
- "line": 112,
+ "line": 117,
"column": 55
}
}
@@ -8895,139 +9519,139 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 3871,
- 3884
+ 4081,
+ 4094
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 56
},
"end": {
- "line": 112,
+ "line": 117,
"column": 69
}
}
},
"range": [
- 3868,
- 3884
+ 4078,
+ 4094
],
"loc": {
"start": {
- "line": 112,
+ "line": 117,
"column": 53
},
"end": {
- "line": 112,
+ "line": 117,
"column": 69
}
}
},
"range": [
- 3769,
- 3884
+ 3979,
+ 4094
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 25
},
"end": {
- "line": 112,
+ "line": 117,
"column": 69
}
}
},
"range": [
- 3760,
- 3884
+ 3970,
+ 4094
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 16
},
"end": {
- "line": 112,
+ "line": 117,
"column": 69
}
}
},
"range": [
- 3760,
- 3885
+ 3970,
+ 4095
],
"loc": {
"start": {
- "line": 111,
+ "line": 116,
"column": 16
},
"end": {
- "line": 112,
+ "line": 117,
"column": 70
}
}
}
],
"range": [
- 3343,
- 3899
+ 3553,
+ 4109
],
"loc": {
"start": {
- "line": 103,
+ "line": 108,
"column": 22
},
"end": {
- "line": 113,
+ "line": 118,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3333,
- 3899
+ 3543,
+ 4109
],
"loc": {
"start": {
- "line": 103,
+ "line": 108,
"column": 12
},
"end": {
- "line": 113,
+ "line": 118,
"column": 13
}
}
}
],
"range": [
- 3272,
- 3909
+ 3482,
+ 4119
],
"loc": {
"start": {
- "line": 101,
+ "line": 106,
"column": 15
},
"end": {
- "line": 114,
+ "line": 119,
"column": 9
}
}
},
"range": [
- 3084,
- 3909
+ 3294,
+ 4119
],
"loc": {
"start": {
- "line": 95,
+ "line": 100,
"column": 8
},
"end": {
- "line": 114,
+ "line": 119,
"column": 9
}
}
@@ -9046,16 +9670,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3919,
- 3923
+ 4129,
+ 4133
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 8
},
"end": {
- "line": 116,
+ "line": 121,
"column": 12
}
}
@@ -9064,31 +9688,31 @@
"type": "Identifier",
"name": "rowsCounterSpan",
"range": [
- 3924,
- 3939
+ 4134,
+ 4149
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 13
},
"end": {
- "line": 116,
+ "line": 121,
"column": 28
}
}
},
"range": [
- 3919,
- 3939
+ 4129,
+ 4149
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 8
},
"end": {
- "line": 116,
+ "line": 121,
"column": 28
}
}
@@ -9097,31 +9721,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3940,
- 3949
+ 4150,
+ 4159
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 29
},
"end": {
- "line": 116,
+ "line": 121,
"column": 38
}
}
},
"range": [
- 3919,
- 3949
+ 4129,
+ 4159
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 8
},
"end": {
- "line": 116,
+ "line": 121,
"column": 38
}
}
@@ -9130,46 +9754,46 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 3952,
- 3958
+ 4162,
+ 4168
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 41
},
"end": {
- "line": 116,
+ "line": 121,
"column": 47
}
}
},
"range": [
- 3919,
- 3958
+ 4129,
+ 4168
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 8
},
"end": {
- "line": 116,
+ "line": 121,
"column": 47
}
}
},
"range": [
- 3919,
- 3959
+ 4129,
+ 4169
],
"loc": {
"start": {
- "line": 116,
+ "line": 121,
"column": 8
},
"end": {
- "line": 116,
+ "line": 121,
"column": 48
}
}
@@ -9182,16 +9806,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3971,
- 3975
+ 4181,
+ 4185
],
"loc": {
"start": {
- "line": 117,
+ "line": 122,
"column": 11
},
"end": {
- "line": 117,
+ "line": 122,
"column": 15
}
}
@@ -9200,31 +9824,31 @@
"type": "Identifier",
"name": "onAfterRefreshCounter",
"range": [
- 3976,
- 3997
+ 4186,
+ 4207
],
"loc": {
"start": {
- "line": 117,
+ "line": 122,
"column": 16
},
"end": {
- "line": 117,
+ "line": 122,
"column": 37
}
}
},
"range": [
- 3971,
- 3997
+ 4181,
+ 4207
],
"loc": {
"start": {
- "line": 117,
+ "line": 122,
"column": 11
},
"end": {
- "line": 117,
+ "line": 122,
"column": 37
}
}
@@ -9245,16 +9869,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4012,
- 4016
+ 4222,
+ 4226
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 12
},
"end": {
- "line": 118,
+ "line": 123,
"column": 16
}
}
@@ -9263,31 +9887,31 @@
"type": "Identifier",
"name": "onAfterRefreshCounter",
"range": [
- 4017,
- 4038
+ 4227,
+ 4248
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 17
},
"end": {
- "line": 118,
+ "line": 123,
"column": 38
}
}
},
"range": [
- 4012,
- 4038
+ 4222,
+ 4248
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 12
},
"end": {
- "line": 118,
+ "line": 123,
"column": 38
}
}
@@ -9296,31 +9920,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 4039,
- 4043
+ 4249,
+ 4253
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 39
},
"end": {
- "line": 118,
+ "line": 123,
"column": 43
}
}
},
"range": [
- 4012,
- 4043
+ 4222,
+ 4253
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 12
},
"end": {
- "line": 118,
+ "line": 123,
"column": 43
}
}
@@ -9331,16 +9955,16 @@
"value": null,
"raw": "null",
"range": [
- 4061,
- 4065
+ 4271,
+ 4275
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 16
},
"end": {
- "line": 119,
+ "line": 124,
"column": 20
}
}
@@ -9349,16 +9973,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 4067,
- 4069
+ 4277,
+ 4279
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 22
},
"end": {
- "line": 119,
+ "line": 124,
"column": 24
}
}
@@ -9369,16 +9993,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4071,
- 4075
+ 4281,
+ 4285
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 26
},
"end": {
- "line": 119,
+ "line": 124,
"column": 30
}
}
@@ -9387,31 +10011,31 @@
"type": "Identifier",
"name": "rowsCounterSpan",
"range": [
- 4076,
- 4091
+ 4286,
+ 4301
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 31
},
"end": {
- "line": 119,
+ "line": 124,
"column": 46
}
}
},
"range": [
- 4071,
- 4091
+ 4281,
+ 4301
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 26
},
"end": {
- "line": 119,
+ "line": 124,
"column": 46
}
}
@@ -9420,95 +10044,95 @@
"type": "Identifier",
"name": "totTxt",
"range": [
- 4093,
- 4099
+ 4303,
+ 4309
],
"loc": {
"start": {
- "line": 119,
+ "line": 124,
"column": 48
},
"end": {
- "line": 119,
+ "line": 124,
"column": 54
}
}
}
],
"range": [
- 4012,
- 4100
+ 4222,
+ 4310
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 12
},
"end": {
- "line": 119,
+ "line": 124,
"column": 55
}
}
},
"range": [
- 4012,
- 4101
+ 4222,
+ 4311
],
"loc": {
"start": {
- "line": 118,
+ "line": 123,
"column": 12
},
"end": {
- "line": 119,
+ "line": 124,
"column": 56
}
}
}
],
"range": [
- 3998,
- 4111
+ 4208,
+ 4321
],
"loc": {
"start": {
- "line": 117,
+ "line": 122,
"column": 38
},
"end": {
- "line": 120,
+ "line": 125,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3968,
- 4111
+ 4178,
+ 4321
],
"loc": {
"start": {
- "line": 117,
+ "line": 122,
"column": 8
},
"end": {
- "line": 120,
+ "line": 125,
"column": 9
}
}
}
],
"range": [
- 2814,
- 4117
+ 3024,
+ 4327
],
"loc": {
"start": {
- "line": 83,
+ "line": 88,
"column": 14
},
"end": {
- "line": 121,
+ "line": 126,
"column": 5
}
}
@@ -9516,16 +10140,16 @@
"generator": false,
"expression": false,
"range": [
- 2811,
- 4117
+ 3021,
+ 4327
],
"loc": {
"start": {
- "line": 83,
+ "line": 88,
"column": 11
},
"end": {
- "line": 121,
+ "line": 126,
"column": 5
}
}
@@ -9533,16 +10157,16 @@
"kind": "method",
"computed": false,
"range": [
- 2804,
- 4117
+ 3014,
+ 4327
],
"loc": {
"start": {
- "line": 83,
+ "line": 88,
"column": 4
},
"end": {
- "line": 121,
+ "line": 126,
"column": 5
}
},
@@ -9554,16 +10178,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 4123,
- 4130
+ 4333,
+ 4340
],
"loc": {
"start": {
- "line": 123,
+ "line": 128,
"column": 4
},
"end": {
- "line": 123,
+ "line": 128,
"column": 11
}
}
@@ -9586,16 +10210,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4146,
- 4150
+ 4356,
+ 4360
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 12
},
"end": {
- "line": 124,
+ "line": 129,
"column": 16
}
}
@@ -9604,47 +10228,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 4151,
- 4162
+ 4361,
+ 4372
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 17
},
"end": {
- "line": 124,
+ "line": 129,
"column": 28
}
}
},
"range": [
- 4146,
- 4162
+ 4356,
+ 4372
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 12
},
"end": {
- "line": 124,
+ "line": 129,
"column": 28
}
}
},
"prefix": true,
"range": [
- 4145,
- 4162
+ 4355,
+ 4372
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 11
},
"end": {
- "line": 124,
+ "line": 129,
"column": 28
}
}
@@ -9656,48 +10280,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 4177,
- 4184
+ 4387,
+ 4394
],
"loc": {
"start": {
- "line": 125,
+ "line": 130,
"column": 12
},
"end": {
- "line": 125,
+ "line": 130,
"column": 19
}
}
}
],
"range": [
- 4163,
- 4194
+ 4373,
+ 4404
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 29
},
"end": {
- "line": 126,
+ "line": 131,
"column": 9
}
}
},
"alternate": null,
"range": [
- 4142,
- 4194
+ 4352,
+ 4404
],
"loc": {
"start": {
- "line": 124,
+ "line": 129,
"column": 8
},
"end": {
- "line": 126,
+ "line": 131,
"column": 9
}
}
@@ -9716,16 +10340,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4208,
- 4212
+ 4418,
+ 4422
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 12
},
"end": {
- "line": 128,
+ "line": 133,
"column": 16
}
}
@@ -9734,47 +10358,47 @@
"type": "Identifier",
"name": "rowsCounterTgtId",
"range": [
- 4213,
- 4229
+ 4423,
+ 4439
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 17
},
"end": {
- "line": 128,
+ "line": 133,
"column": 33
}
}
},
"range": [
- 4208,
- 4229
+ 4418,
+ 4439
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 12
},
"end": {
- "line": 128,
+ "line": 133,
"column": 33
}
}
},
"prefix": true,
"range": [
- 4207,
- 4229
+ 4417,
+ 4439
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 11
},
"end": {
- "line": 128,
+ "line": 133,
"column": 33
}
}
@@ -9785,16 +10409,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4233,
- 4237
+ 4443,
+ 4447
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 37
},
"end": {
- "line": 128,
+ "line": 133,
"column": 41
}
}
@@ -9803,46 +10427,46 @@
"type": "Identifier",
"name": "rowsCounterDiv",
"range": [
- 4238,
- 4252
+ 4448,
+ 4462
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 42
},
"end": {
- "line": 128,
+ "line": 133,
"column": 56
}
}
},
"range": [
- 4233,
- 4252
+ 4443,
+ 4462
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 37
},
"end": {
- "line": 128,
+ "line": 133,
"column": 56
}
}
},
"range": [
- 4207,
- 4252
+ 4417,
+ 4462
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 11
},
"end": {
- "line": 128,
+ "line": 133,
"column": 56
}
}
@@ -9861,16 +10485,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4267,
- 4270
+ 4477,
+ 4480
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 12
},
"end": {
- "line": 129,
+ "line": 134,
"column": 15
}
}
@@ -9879,31 +10503,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 4271,
- 4277
+ 4481,
+ 4487
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 16
},
"end": {
- "line": 129,
+ "line": 134,
"column": 22
}
}
},
"range": [
- 4267,
- 4277
+ 4477,
+ 4487
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 12
},
"end": {
- "line": 129,
+ "line": 134,
"column": 22
}
}
@@ -9915,16 +10539,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4278,
- 4282
+ 4488,
+ 4492
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 23
},
"end": {
- "line": 129,
+ "line": 134,
"column": 27
}
}
@@ -9933,78 +10557,78 @@
"type": "Identifier",
"name": "rowsCounterDiv",
"range": [
- 4283,
- 4297
+ 4493,
+ 4507
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 28
},
"end": {
- "line": 129,
+ "line": 134,
"column": 42
}
}
},
"range": [
- 4278,
- 4297
+ 4488,
+ 4507
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 23
},
"end": {
- "line": 129,
+ "line": 134,
"column": 42
}
}
}
],
"range": [
- 4267,
- 4298
+ 4477,
+ 4508
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 12
},
"end": {
- "line": 129,
+ "line": 134,
"column": 43
}
}
},
"range": [
- 4267,
- 4299
+ 4477,
+ 4509
],
"loc": {
"start": {
- "line": 129,
+ "line": 134,
"column": 12
},
"end": {
- "line": 129,
+ "line": 134,
"column": 44
}
}
}
],
"range": [
- 4253,
- 4309
+ 4463,
+ 4519
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 57
},
"end": {
- "line": 130,
+ "line": 135,
"column": 9
}
}
@@ -10029,16 +10653,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 4329,
- 4332
+ 4539,
+ 4542
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 15
}
}
@@ -10047,31 +10671,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 4333,
- 4335
+ 4543,
+ 4545
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 16
},
"end": {
- "line": 131,
+ "line": 136,
"column": 18
}
}
},
"range": [
- 4329,
- 4335
+ 4539,
+ 4545
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 18
}
}
@@ -10083,16 +10707,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4336,
- 4340
+ 4546,
+ 4550
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 19
},
"end": {
- "line": 131,
+ "line": 136,
"column": 23
}
}
@@ -10101,47 +10725,47 @@
"type": "Identifier",
"name": "rowsCounterTgtId",
"range": [
- 4341,
- 4357
+ 4551,
+ 4567
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 24
},
"end": {
- "line": 131,
+ "line": 136,
"column": 40
}
}
},
"range": [
- 4336,
- 4357
+ 4546,
+ 4567
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 19
},
"end": {
- "line": 131,
+ "line": 136,
"column": 40
}
}
}
],
"range": [
- 4329,
- 4358
+ 4539,
+ 4568
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 41
}
}
@@ -10150,31 +10774,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 4359,
- 4368
+ 4569,
+ 4578
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 42
},
"end": {
- "line": 131,
+ "line": 136,
"column": 51
}
}
},
"range": [
- 4329,
- 4368
+ 4539,
+ 4578
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 51
}
}
@@ -10184,77 +10808,77 @@
"value": "",
"raw": "''",
"range": [
- 4371,
- 4373
+ 4581,
+ 4583
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 54
},
"end": {
- "line": 131,
+ "line": 136,
"column": 56
}
}
},
"range": [
- 4329,
- 4373
+ 4539,
+ 4583
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 56
}
}
},
"range": [
- 4329,
- 4374
+ 4539,
+ 4584
],
"loc": {
"start": {
- "line": 131,
+ "line": 136,
"column": 12
},
"end": {
- "line": 131,
+ "line": 136,
"column": 57
}
}
}
],
"range": [
- 4315,
- 4384
+ 4525,
+ 4594
],
"loc": {
"start": {
- "line": 130,
+ "line": 135,
"column": 15
},
"end": {
- "line": 132,
+ "line": 137,
"column": 9
}
}
},
"range": [
- 4204,
- 4384
+ 4414,
+ 4594
],
"loc": {
"start": {
- "line": 128,
+ "line": 133,
"column": 8
},
"end": {
- "line": 132,
+ "line": 137,
"column": 9
}
}
@@ -10270,16 +10894,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4393,
- 4397
+ 4603,
+ 4607
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 8
},
"end": {
- "line": 133,
+ "line": 138,
"column": 12
}
}
@@ -10288,31 +10912,31 @@
"type": "Identifier",
"name": "rowsCounterSpan",
"range": [
- 4398,
- 4413
+ 4608,
+ 4623
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 13
},
"end": {
- "line": 133,
+ "line": 138,
"column": 28
}
}
},
"range": [
- 4393,
- 4413
+ 4603,
+ 4623
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 8
},
"end": {
- "line": 133,
+ "line": 138,
"column": 28
}
}
@@ -10322,46 +10946,46 @@
"value": null,
"raw": "null",
"range": [
- 4416,
- 4420
+ 4626,
+ 4630
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 31
},
"end": {
- "line": 133,
+ "line": 138,
"column": 35
}
}
},
"range": [
- 4393,
- 4420
+ 4603,
+ 4630
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 8
},
"end": {
- "line": 133,
+ "line": 138,
"column": 35
}
}
},
"range": [
- 4393,
- 4421
+ 4603,
+ 4631
],
"loc": {
"start": {
- "line": 133,
+ "line": 138,
"column": 8
},
"end": {
- "line": 133,
+ "line": 138,
"column": 36
}
}
@@ -10377,16 +11001,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4430,
- 4434
+ 4640,
+ 4644
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 8
},
"end": {
- "line": 134,
+ "line": 139,
"column": 12
}
}
@@ -10395,31 +11019,31 @@
"type": "Identifier",
"name": "rowsCounterDiv",
"range": [
- 4435,
- 4449
+ 4645,
+ 4659
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 13
},
"end": {
- "line": 134,
+ "line": 139,
"column": 27
}
}
},
"range": [
- 4430,
- 4449
+ 4640,
+ 4659
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 8
},
"end": {
- "line": 134,
+ "line": 139,
"column": 27
}
}
@@ -10429,48 +11053,672 @@
"value": null,
"raw": "null",
"range": [
- 4452,
- 4456
+ 4662,
+ 4666
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 30
},
"end": {
- "line": 134,
+ "line": 139,
"column": 34
}
}
},
"range": [
- 4430,
- 4456
+ 4640,
+ 4666
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 8
},
"end": {
- "line": 134,
+ "line": 139,
"column": 34
}
}
},
"range": [
- 4430,
- 4457
+ 4640,
+ 4667
],
"loc": {
"start": {
- "line": 134,
+ "line": 139,
"column": 8
},
"end": {
- "line": 134,
+ "line": 139,
"column": 35
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 4677,
+ 4701
+ ],
+ "loc": {
+ "start": {
+ "line": 141,
+ "column": 8
+ },
+ "end": {
+ "line": 141,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4710,
+ 4714
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 142,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4715,
+ 4722
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 13
+ },
+ "end": {
+ "line": 142,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4710,
+ 4722
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 142,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 4723,
+ 4726
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 21
+ },
+ "end": {
+ "line": 142,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4710,
+ 4726
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 142,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 4728,
+ 4745
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 26
+ },
+ "end": {
+ "line": 142,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "grouped-by-page",
+ "raw": "'grouped-by-page'",
+ "range": [
+ 4747,
+ 4764
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 45
+ },
+ "end": {
+ "line": 142,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 4727,
+ 4765
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 25
+ },
+ "end": {
+ "line": 142,
+ "column": 63
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4784,
+ 4788
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refresh",
+ "range": [
+ 4789,
+ 4796
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 22
+ },
+ "end": {
+ "line": 143,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4784,
+ 4796
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 4797,
+ 4799
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 30
+ },
+ "end": {
+ "line": 143,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 4800,
+ 4813
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 33
+ },
+ "end": {
+ "line": 143,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 4797,
+ 4813
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 30
+ },
+ "end": {
+ "line": 143,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 4784,
+ 4814
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 17
+ },
+ "end": {
+ "line": 143,
+ "column": 47
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4779,
+ 4814
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 12
+ },
+ "end": {
+ "line": 143,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 4710,
+ 4815
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 143,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 4710,
+ 4816
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 8
+ },
+ "end": {
+ "line": 143,
+ "column": 49
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 4677,
+ 4701
+ ],
+ "loc": {
+ "start": {
+ "line": 141,
+ "column": 8
+ },
+ "end": {
+ "line": 141,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4825,
+ 4829
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4830,
+ 4837
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 13
+ },
+ "end": {
+ "line": 144,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 4825,
+ 4837
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 4838,
+ 4841
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 21
+ },
+ "end": {
+ "line": 144,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4825,
+ 4841
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "rows-changed",
+ "raw": "'rows-changed'",
+ "range": [
+ 4843,
+ 4857
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 26
+ },
+ "end": {
+ "line": 144,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 4842,
+ 4858
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 25
+ },
+ "end": {
+ "line": 144,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4865,
+ 4869
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 48
+ },
+ "end": {
+ "line": 144,
+ "column": 52
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refresh",
+ "range": [
+ 4870,
+ 4877
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 53
+ },
+ "end": {
+ "line": 144,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 4865,
+ 4877
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 48
+ },
+ "end": {
+ "line": 144,
+ "column": 60
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 4865,
+ 4879
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 48
+ },
+ "end": {
+ "line": 144,
+ "column": 62
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4860,
+ 4879
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 43
+ },
+ "end": {
+ "line": 144,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 4825,
+ 4880
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 4825,
+ 4881
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 8
+ },
+ "end": {
+ "line": 144,
+ "column": 64
+ }
}
},
{
@@ -10484,16 +11732,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4466,
- 4470
+ 4891,
+ 4895
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 8
},
"end": {
- "line": 135,
+ "line": 146,
"column": 12
}
}
@@ -10502,31 +11750,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 4471,
- 4482
+ 4896,
+ 4907
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 13
},
"end": {
- "line": 135,
+ "line": 146,
"column": 24
}
}
},
"range": [
- 4466,
- 4482
+ 4891,
+ 4907
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 8
},
"end": {
- "line": 135,
+ "line": 146,
"column": 24
}
}
@@ -10536,62 +11784,62 @@
"value": false,
"raw": "false",
"range": [
- 4485,
- 4490
+ 4910,
+ 4915
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 27
},
"end": {
- "line": 135,
+ "line": 146,
"column": 32
}
}
},
"range": [
- 4466,
- 4490
+ 4891,
+ 4915
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 8
},
"end": {
- "line": 135,
+ "line": 146,
"column": 32
}
}
},
"range": [
- 4466,
- 4491
+ 4891,
+ 4916
],
"loc": {
"start": {
- "line": 135,
+ "line": 146,
"column": 8
},
"end": {
- "line": 135,
+ "line": 146,
"column": 33
}
}
}
],
"range": [
- 4132,
- 4497
+ 4342,
+ 4922
],
"loc": {
"start": {
- "line": 123,
+ "line": 128,
"column": 13
},
"end": {
- "line": 136,
+ "line": 147,
"column": 5
}
}
@@ -10599,16 +11847,16 @@
"generator": false,
"expression": false,
"range": [
- 4130,
- 4497
+ 4340,
+ 4922
],
"loc": {
"start": {
- "line": 123,
+ "line": 128,
"column": 11
},
"end": {
- "line": 136,
+ "line": 147,
"column": 5
}
}
@@ -10616,16 +11864,16 @@
"kind": "method",
"computed": false,
"range": [
- 4123,
- 4497
+ 4333,
+ 4922
],
"loc": {
"start": {
- "line": 123,
+ "line": 128,
"column": 4
},
"end": {
- "line": 136,
+ "line": 147,
"column": 5
}
},
@@ -10634,7 +11882,7 @@
],
"range": [
132,
- 4499
+ 4924
],
"loc": {
"start": {
@@ -10642,14 +11890,14 @@
"column": 40
},
"end": {
- "line": 137,
+ "line": 148,
"column": 1
}
}
},
"range": [
99,
- 4499
+ 4924
],
"loc": {
"start": {
@@ -10657,7 +11905,7 @@
"column": 7
},
"end": {
- "line": 137,
+ "line": 148,
"column": 1
}
},
@@ -10668,7 +11916,7 @@
"source": null,
"range": [
92,
- 4499
+ 4924
],
"loc": {
"start": {
@@ -10676,7 +11924,7 @@
"column": 0
},
"end": {
- "line": 137,
+ "line": 148,
"column": 1
}
}
@@ -10685,7 +11933,7 @@
"sourceType": "module",
"range": [
0,
- 4499
+ 4924
],
"loc": {
"start": {
@@ -10693,7 +11941,7 @@
"column": 0
},
"end": {
- "line": 137,
+ "line": 148,
"column": 1
}
},
@@ -11006,21 +12254,57 @@
},
{
"type": "Line",
- "value": "paging start row",
+ "value": " subscribe to events",
"range": [
- 3361,
- 3379
+ 2744,
+ 2766
],
"loc": {
"start": {
- "line": 104,
+ "line": 79,
+ "column": 8
+ },
+ "end": {
+ "line": 79,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "paging start row",
+ "range": [
+ 3571,
+ 3589
+ ],
+ "loc": {
+ "start": {
+ "line": 109,
"column": 16
},
"end": {
- "line": 104,
+ "line": 109,
"column": 34
}
}
+ },
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 4677,
+ 4701
+ ],
+ "loc": {
+ "start": {
+ "line": 141,
+ "column": 8
+ },
+ "end": {
+ "line": 141,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/statusBar.js.json b/docs/ast/source/src/modules/statusBar.js.json
index ce63e346..7daed925 100644
--- a/docs/ast/source/src/modules/statusBar.js.json
+++ b/docs/ast/source/src/modules/statusBar.js.json
@@ -295,7 +295,7 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
92,
112
@@ -602,7 +602,7 @@
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
343,
363
@@ -2575,7 +2575,7 @@
"trailingComments": [
{
"type": "Line",
- "value": " status bar div",
+ "value": "status messages",
"range": [
1273,
1290
@@ -2620,10 +2620,10 @@
},
"property": {
"type": "Identifier",
- "name": "prfxStatus",
+ "name": "msgFilter",
"range": [
1304,
- 1314
+ 1313
],
"loc": {
"start": {
@@ -2632,13 +2632,13 @@
},
"end": {
"line": 42,
- "column": 23
+ "column": 22
}
}
},
"range": [
1299,
- 1314
+ 1313
],
"loc": {
"start": {
@@ -2647,32 +2647,104 @@
},
"end": {
"line": 42,
- "column": 23
+ "column": 22
}
}
},
"right": {
- "type": "Literal",
- "value": "status_",
- "raw": "'status_'",
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1316,
+ 1317
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 25
+ },
+ "end": {
+ "line": 42,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_filter",
+ "range": [
+ 1318,
+ 1328
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 27
+ },
+ "end": {
+ "line": 42,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1316,
+ 1328
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 25
+ },
+ "end": {
+ "line": 42,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Filtering data...",
+ "raw": "'Filtering data...'",
+ "range": [
+ 1332,
+ 1351
+ ],
+ "loc": {
+ "start": {
+ "line": 42,
+ "column": 41
+ },
+ "end": {
+ "line": 42,
+ "column": 60
+ }
+ }
+ },
"range": [
- 1317,
- 1326
+ 1316,
+ 1351
],
"loc": {
"start": {
"line": 42,
- "column": 26
+ "column": 25
},
"end": {
"line": 42,
- "column": 35
+ "column": 60
}
}
},
"range": [
1299,
- 1326
+ 1351
],
"loc": {
"start": {
@@ -2681,13 +2753,13 @@
},
"end": {
"line": 42,
- "column": 35
+ "column": 60
}
}
},
"range": [
1299,
- 1327
+ 1352
],
"loc": {
"start": {
@@ -2696,13 +2768,13 @@
},
"end": {
"line": 42,
- "column": 36
+ "column": 61
}
},
"leadingComments": [
{
"type": "Line",
- "value": " status bar div",
+ "value": "status messages",
"range": [
1273,
1290
@@ -2722,10 +2794,10 @@
"trailingComments": [
{
"type": "Line",
- "value": " status bar label",
+ "value": "populating drop-downs",
"range": [
- 1336,
- 1355
+ 1361,
+ 1384
],
"loc": {
"start": {
@@ -2734,6 +2806,2343 @@
},
"end": {
"line": 43,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1393,
+ 1397
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgPopulate",
+ "range": [
+ 1398,
+ 1409
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 13
+ },
+ "end": {
+ "line": 44,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 1393,
+ 1409
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1412,
+ 1413
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 27
+ },
+ "end": {
+ "line": 44,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_populate",
+ "range": [
+ 1414,
+ 1426
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 29
+ },
+ "end": {
+ "line": 44,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 1412,
+ 1426
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 27
+ },
+ "end": {
+ "line": 44,
+ "column": 41
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Populating filter...",
+ "raw": "'Populating filter...'",
+ "range": [
+ 1430,
+ 1452
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 45
+ },
+ "end": {
+ "line": 44,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1412,
+ 1452
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 27
+ },
+ "end": {
+ "line": 44,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1393,
+ 1452
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1393,
+ 1453
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 68
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "populating drop-downs",
+ "range": [
+ 1361,
+ 1384
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 8
+ },
+ "end": {
+ "line": 43,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "populating drop-downs",
+ "range": [
+ 1462,
+ 1485
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 8
+ },
+ "end": {
+ "line": 45,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1494,
+ 1498
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 46,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgPopulateCheckList",
+ "range": [
+ 1499,
+ 1519
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 13
+ },
+ "end": {
+ "line": 46,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 1494,
+ 1519
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 46,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1522,
+ 1523
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 36
+ },
+ "end": {
+ "line": 46,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_populate_checklist",
+ "range": [
+ 1524,
+ 1546
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 38
+ },
+ "end": {
+ "line": 46,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1522,
+ 1546
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 36
+ },
+ "end": {
+ "line": 46,
+ "column": 60
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Populating list...",
+ "raw": "'Populating list...'",
+ "range": [
+ 1562,
+ 1582
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 12
+ },
+ "end": {
+ "line": 47,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 1522,
+ 1582
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 36
+ },
+ "end": {
+ "line": 47,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 1494,
+ 1582
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 47,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 1494,
+ 1583
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 8
+ },
+ "end": {
+ "line": 47,
+ "column": 33
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "populating drop-downs",
+ "range": [
+ 1462,
+ 1485
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 8
+ },
+ "end": {
+ "line": 45,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "changing paging page",
+ "range": [
+ 1592,
+ 1614
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1623,
+ 1627
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangePage",
+ "range": [
+ 1628,
+ 1641
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 13
+ },
+ "end": {
+ "line": 49,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 1623,
+ 1641
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1644,
+ 1645
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 29
+ },
+ "end": {
+ "line": 49,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_change_page",
+ "range": [
+ 1646,
+ 1661
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 31
+ },
+ "end": {
+ "line": 49,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 1644,
+ 1661
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 29
+ },
+ "end": {
+ "line": 49,
+ "column": 46
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Collecting paging data...",
+ "raw": "'Collecting paging data...'",
+ "range": [
+ 1665,
+ 1692
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 50
+ },
+ "end": {
+ "line": 49,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 1644,
+ 1692
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 29
+ },
+ "end": {
+ "line": 49,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 1623,
+ 1692
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 1623,
+ 1693
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 8
+ },
+ "end": {
+ "line": 49,
+ "column": 78
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "changing paging page",
+ "range": [
+ 1592,
+ 1614
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "clearing filters",
+ "range": [
+ 1702,
+ 1720
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 26
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1729,
+ 1733
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgClear",
+ "range": [
+ 1734,
+ 1742
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 13
+ },
+ "end": {
+ "line": 51,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 1729,
+ 1742
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1745,
+ 1746
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 24
+ },
+ "end": {
+ "line": 51,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_clear",
+ "range": [
+ 1747,
+ 1756
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 26
+ },
+ "end": {
+ "line": 51,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 1745,
+ 1756
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 24
+ },
+ "end": {
+ "line": 51,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Clearing filters...",
+ "raw": "'Clearing filters...'",
+ "range": [
+ 1760,
+ 1781
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 39
+ },
+ "end": {
+ "line": 51,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1745,
+ 1781
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 24
+ },
+ "end": {
+ "line": 51,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1729,
+ 1781
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1729,
+ 1782
+ ],
+ "loc": {
+ "start": {
+ "line": 51,
+ "column": 8
+ },
+ "end": {
+ "line": 51,
+ "column": 61
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "clearing filters",
+ "range": [
+ 1702,
+ 1720
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 26
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "changing nb results/page",
+ "range": [
+ 1791,
+ 1817
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 8
+ },
+ "end": {
+ "line": 52,
+ "column": 34
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1826,
+ 1830
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 8
+ },
+ "end": {
+ "line": 53,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangeResults",
+ "range": [
+ 1831,
+ 1847
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 13
+ },
+ "end": {
+ "line": 53,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 1826,
+ 1847
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 8
+ },
+ "end": {
+ "line": 53,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1850,
+ 1851
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 32
+ },
+ "end": {
+ "line": 53,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_change_results",
+ "range": [
+ 1852,
+ 1870
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 34
+ },
+ "end": {
+ "line": 53,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 1850,
+ 1870
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 32
+ },
+ "end": {
+ "line": 53,
+ "column": 52
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Changing results per page...",
+ "raw": "'Changing results per page...'",
+ "range": [
+ 1886,
+ 1916
+ ],
+ "loc": {
+ "start": {
+ "line": 54,
+ "column": 12
+ },
+ "end": {
+ "line": 54,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 1850,
+ 1916
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 32
+ },
+ "end": {
+ "line": 54,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 1826,
+ 1916
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 1826,
+ 1917
+ ],
+ "loc": {
+ "start": {
+ "line": 53,
+ "column": 8
+ },
+ "end": {
+ "line": 54,
+ "column": 43
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "changing nb results/page",
+ "range": [
+ 1791,
+ 1817
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 8
+ },
+ "end": {
+ "line": 52,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "re-setting page",
+ "range": [
+ 1926,
+ 1943
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 8
+ },
+ "end": {
+ "line": 55,
+ "column": 25
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1952,
+ 1956
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPage",
+ "range": [
+ 1957,
+ 1969
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 13
+ },
+ "end": {
+ "line": 56,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1952,
+ 1969
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 1972,
+ 1973
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 28
+ },
+ "end": {
+ "line": 56,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_reset_page",
+ "range": [
+ 1974,
+ 1988
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 30
+ },
+ "end": {
+ "line": 56,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 1972,
+ 1988
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 28
+ },
+ "end": {
+ "line": 56,
+ "column": 44
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Re-setting page...",
+ "raw": "'Re-setting page...'",
+ "range": [
+ 1992,
+ 2012
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 48
+ },
+ "end": {
+ "line": 56,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 1972,
+ 2012
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 28
+ },
+ "end": {
+ "line": 56,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 1952,
+ 2012
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 1952,
+ 2013
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 69
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "re-setting page",
+ "range": [
+ 1926,
+ 1943
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 8
+ },
+ "end": {
+ "line": 55,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "re-setting page length",
+ "range": [
+ 2022,
+ 2046
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 8
+ },
+ "end": {
+ "line": 57,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2055,
+ 2059
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 58,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPageLength",
+ "range": [
+ 2060,
+ 2078
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 13
+ },
+ "end": {
+ "line": 58,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 2055,
+ 2078
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 58,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 2081,
+ 2082
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 34
+ },
+ "end": {
+ "line": 58,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_reset_page_length",
+ "range": [
+ 2083,
+ 2104
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 36
+ },
+ "end": {
+ "line": 58,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 2081,
+ 2104
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 34
+ },
+ "end": {
+ "line": 58,
+ "column": 57
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Re-setting page length...",
+ "raw": "'Re-setting page length...'",
+ "range": [
+ 2120,
+ 2147
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 12
+ },
+ "end": {
+ "line": 59,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 2081,
+ 2147
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 34
+ },
+ "end": {
+ "line": 59,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 2055,
+ 2147
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 2055,
+ 2148
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 40
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "re-setting page length",
+ "range": [
+ 2022,
+ 2046
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 8
+ },
+ "end": {
+ "line": 57,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "table sorting",
+ "range": [
+ 2157,
+ 2172
+ ],
+ "loc": {
+ "start": {
+ "line": 60,
+ "column": 8
+ },
+ "end": {
+ "line": 60,
+ "column": 23
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2181,
+ 2185
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgSort",
+ "range": [
+ 2186,
+ 2193
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 13
+ },
+ "end": {
+ "line": 61,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2181,
+ 2193
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 2196,
+ 2197
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 23
+ },
+ "end": {
+ "line": 61,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_sort",
+ "range": [
+ 2198,
+ 2206
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 25
+ },
+ "end": {
+ "line": 61,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 2196,
+ 2206
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 23
+ },
+ "end": {
+ "line": 61,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Sorting data...",
+ "raw": "'Sorting data...'",
+ "range": [
+ 2210,
+ 2227
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 37
+ },
+ "end": {
+ "line": 61,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 2196,
+ 2227
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 23
+ },
+ "end": {
+ "line": 61,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 2181,
+ 2227
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 2181,
+ 2228
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 55
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "table sorting",
+ "range": [
+ 2157,
+ 2172
+ ],
+ "loc": {
+ "start": {
+ "line": 60,
+ "column": 8
+ },
+ "end": {
+ "line": 60,
+ "column": 23
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "extensions loading",
+ "range": [
+ 2237,
+ 2257
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 8
+ },
+ "end": {
+ "line": 62,
+ "column": 28
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2266,
+ 2270
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadExtensions",
+ "range": [
+ 2271,
+ 2288
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 13
+ },
+ "end": {
+ "line": 63,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 2266,
+ 2288
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 63,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 2291,
+ 2292
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 33
+ },
+ "end": {
+ "line": 63,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_load_extensions",
+ "range": [
+ 2293,
+ 2312
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 35
+ },
+ "end": {
+ "line": 63,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 2291,
+ 2312
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 33
+ },
+ "end": {
+ "line": 63,
+ "column": 54
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Loading extensions...",
+ "raw": "'Loading extensions...'",
+ "range": [
+ 2328,
+ 2351
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 12
+ },
+ "end": {
+ "line": 64,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2291,
+ 2351
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 33
+ },
+ "end": {
+ "line": 64,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2266,
+ 2351
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2266,
+ 2352
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 8
+ },
+ "end": {
+ "line": 64,
+ "column": 36
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "extensions loading",
+ "range": [
+ 2237,
+ 2257
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 8
+ },
+ "end": {
+ "line": 62,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "themes loading",
+ "range": [
+ 2361,
+ 2377
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 8
+ },
+ "end": {
+ "line": 65,
+ "column": 24
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2386,
+ 2390
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 8
+ },
+ "end": {
+ "line": 66,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadThemes",
+ "range": [
+ 2391,
+ 2404
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 13
+ },
+ "end": {
+ "line": 66,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 2386,
+ 2404
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 8
+ },
+ "end": {
+ "line": 66,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 2407,
+ 2408
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 29
+ },
+ "end": {
+ "line": 66,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msg_load_themes",
+ "range": [
+ 2409,
+ 2424
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 31
+ },
+ "end": {
+ "line": 66,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 2407,
+ 2424
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 29
+ },
+ "end": {
+ "line": 66,
+ "column": 46
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "Loading theme(s)...",
+ "raw": "'Loading theme(s)...'",
+ "range": [
+ 2428,
+ 2449
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 50
+ },
+ "end": {
+ "line": 66,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 2407,
+ 2449
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 29
+ },
+ "end": {
+ "line": 66,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 2386,
+ 2449
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 8
+ },
+ "end": {
+ "line": 66,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 2386,
+ 2450
+ ],
+ "loc": {
+ "start": {
+ "line": 66,
+ "column": 8
+ },
+ "end": {
+ "line": 66,
+ "column": 72
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "themes loading",
+ "range": [
+ 2361,
+ 2377
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 8
+ },
+ "end": {
+ "line": 65,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " status bar div",
+ "range": [
+ 2460,
+ 2477
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 25
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2486,
+ 2490
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxStatus",
+ "range": [
+ 2491,
+ 2501
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 13
+ },
+ "end": {
+ "line": 69,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 2486,
+ 2501
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "status_",
+ "raw": "'status_'",
+ "range": [
+ 2504,
+ 2513
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 26
+ },
+ "end": {
+ "line": 69,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2486,
+ 2513
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2486,
+ 2514
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 36
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " status bar div",
+ "range": [
+ 2460,
+ 2477
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " status bar label",
+ "range": [
+ 2523,
+ 2542
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 8
+ },
+ "end": {
+ "line": 70,
"column": 27
}
}
@@ -2751,16 +5160,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1364,
- 1368
+ 2551,
+ 2555
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 8
},
"end": {
- "line": 44,
+ "line": 71,
"column": 12
}
}
@@ -2769,31 +5178,31 @@
"type": "Identifier",
"name": "prfxStatusSpan",
"range": [
- 1369,
- 1383
+ 2556,
+ 2570
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 13
},
"end": {
- "line": 44,
+ "line": 71,
"column": 27
}
}
},
"range": [
- 1364,
- 1383
+ 2551,
+ 2570
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 8
},
"end": {
- "line": 44,
+ "line": 71,
"column": 27
}
}
@@ -2803,46 +5212,46 @@
"value": "statusSpan_",
"raw": "'statusSpan_'",
"range": [
- 1386,
- 1399
+ 2573,
+ 2586
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 30
},
"end": {
- "line": 44,
+ "line": 71,
"column": 43
}
}
},
"range": [
- 1364,
- 1399
+ 2551,
+ 2586
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 8
},
"end": {
- "line": 44,
+ "line": 71,
"column": 43
}
}
},
"range": [
- 1364,
- 1400
+ 2551,
+ 2587
],
"loc": {
"start": {
- "line": 44,
+ "line": 71,
"column": 8
},
"end": {
- "line": 44,
+ "line": 71,
"column": 44
}
},
@@ -2851,16 +5260,16 @@
"type": "Line",
"value": " status bar label",
"range": [
- 1336,
- 1355
+ 2523,
+ 2542
],
"loc": {
"start": {
- "line": 43,
+ "line": 70,
"column": 8
},
"end": {
- "line": 43,
+ "line": 70,
"column": 27
}
}
@@ -2871,16 +5280,16 @@
"type": "Line",
"value": " text preceding status bar label",
"range": [
- 1409,
- 1443
+ 2596,
+ 2630
],
"loc": {
"start": {
- "line": 45,
+ "line": 72,
"column": 8
},
"end": {
- "line": 45,
+ "line": 72,
"column": 42
}
}
@@ -2898,16 +5307,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1452,
- 1456
+ 2639,
+ 2643
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 8
},
"end": {
- "line": 46,
+ "line": 73,
"column": 12
}
}
@@ -2916,31 +5325,31 @@
"type": "Identifier",
"name": "prfxStatusTxt",
"range": [
- 1457,
- 1470
+ 2644,
+ 2657
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 13
},
"end": {
- "line": 46,
+ "line": 73,
"column": 26
}
}
},
"range": [
- 1452,
- 1470
+ 2639,
+ 2657
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 8
},
"end": {
- "line": 46,
+ "line": 73,
"column": 26
}
}
@@ -2950,46 +5359,46 @@
"value": "statusText_",
"raw": "'statusText_'",
"range": [
- 1473,
- 1486
+ 2660,
+ 2673
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 29
},
"end": {
- "line": 46,
+ "line": 73,
"column": 42
}
}
},
"range": [
- 1452,
- 1486
+ 2639,
+ 2673
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 8
},
"end": {
- "line": 46,
+ "line": 73,
"column": 42
}
}
},
"range": [
- 1452,
- 1487
+ 2639,
+ 2674
],
"loc": {
"start": {
- "line": 46,
+ "line": 73,
"column": 8
},
"end": {
- "line": 46,
+ "line": 73,
"column": 43
}
},
@@ -2998,16 +5407,16 @@
"type": "Line",
"value": " text preceding status bar label",
"range": [
- 1409,
- 1443
+ 2596,
+ 2630
],
"loc": {
"start": {
- "line": 45,
+ "line": 72,
"column": 8
},
"end": {
- "line": 45,
+ "line": 72,
"column": 42
}
}
@@ -3017,7 +5426,7 @@
],
"range": [
268,
- 1493
+ 2680
],
"loc": {
"start": {
@@ -3025,7 +5434,7 @@
"column": 19
},
"end": {
- "line": 47,
+ "line": 74,
"column": 5
}
}
@@ -3034,7 +5443,7 @@
"expression": false,
"range": [
264,
- 1493
+ 2680
],
"loc": {
"start": {
@@ -3042,7 +5451,7 @@
"column": 15
},
"end": {
- "line": 47,
+ "line": 74,
"column": 5
}
}
@@ -3051,7 +5460,7 @@
"computed": false,
"range": [
253,
- 1493
+ 2680
],
"loc": {
"start": {
@@ -3059,7 +5468,7 @@
"column": 4
},
"end": {
- "line": 47,
+ "line": 74,
"column": 5
}
},
@@ -3091,16 +5500,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 1499,
- 1503
+ 2686,
+ 2690
],
"loc": {
"start": {
- "line": 49,
+ "line": 76,
"column": 4
},
"end": {
- "line": 49,
+ "line": 76,
"column": 8
}
}
@@ -3120,16 +5529,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1518,
- 1522
+ 2705,
+ 2709
],
"loc": {
"start": {
- "line": 50,
+ "line": 77,
"column": 11
},
"end": {
- "line": 50,
+ "line": 77,
"column": 15
}
}
@@ -3138,31 +5547,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 1523,
- 1534
+ 2710,
+ 2721
],
"loc": {
"start": {
- "line": 50,
+ "line": 77,
"column": 16
},
"end": {
- "line": 50,
+ "line": 77,
"column": 27
}
}
},
"range": [
- 1518,
- 1534
+ 2705,
+ 2721
],
"loc": {
"start": {
- "line": 50,
+ "line": 77,
"column": 11
},
"end": {
- "line": 50,
+ "line": 77,
"column": 27
}
}
@@ -3174,48 +5583,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1549,
- 1556
+ 2736,
+ 2743
],
"loc": {
"start": {
- "line": 51,
+ "line": 78,
"column": 12
},
"end": {
- "line": 51,
+ "line": 78,
"column": 19
}
}
}
],
"range": [
- 1535,
- 1566
+ 2722,
+ 2753
],
"loc": {
"start": {
- "line": 50,
+ "line": 77,
"column": 28
},
"end": {
- "line": 52,
+ "line": 79,
"column": 9
}
}
},
"alternate": null,
"range": [
- 1515,
- 1566
+ 2702,
+ 2753
],
"loc": {
"start": {
- "line": 50,
+ "line": 77,
"column": 8
},
"end": {
- "line": 52,
+ "line": 79,
"column": 9
}
}
@@ -3229,16 +5638,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1580,
- 1582
+ 2767,
+ 2769
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 12
},
"end": {
- "line": 54,
+ "line": 81,
"column": 14
}
}
@@ -3249,16 +5658,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1585,
- 1589
+ 2772,
+ 2776
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 17
},
"end": {
- "line": 54,
+ "line": 81,
"column": 21
}
}
@@ -3267,81 +5676,189 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1590,
- 1592
+ 2777,
+ 2779
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 22
},
"end": {
- "line": 54,
+ "line": 81,
"column": 24
}
}
},
"range": [
- 1585,
- 1592
+ 2772,
+ 2779
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 17
},
"end": {
- "line": 54,
+ "line": 81,
"column": 24
}
}
},
"range": [
- 1580,
- 1592
+ 2767,
+ 2779
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 12
},
"end": {
- "line": 54,
+ "line": 81,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1576,
- 1593
+ 2763,
+ 2780
],
"loc": {
"start": {
- "line": 54,
+ "line": 81,
"column": 8
},
"end": {
- "line": 54,
+ "line": 81,
"column": 25
}
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2793,
+ 2800
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2803,
+ 2807
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 22
+ },
+ "end": {
+ "line": 82,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2808,
+ 2815
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 27
+ },
+ "end": {
+ "line": 82,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2803,
+ 2815
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 22
+ },
+ "end": {
+ "line": 82,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2793,
+ 2815
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 12
+ },
+ "end": {
+ "line": 82,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 2789,
+ 2816
+ ],
+ "loc": {
+ "start": {
+ "line": 82,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 35
+ }
},
"trailingComments": [
{
"type": "Line",
"value": "status bar container",
"range": [
- 1603,
- 1625
+ 2826,
+ 2848
],
"loc": {
"start": {
- "line": 56,
+ "line": 84,
"column": 8
},
"end": {
- "line": 56,
+ "line": 84,
"column": 30
}
}
@@ -3357,16 +5874,16 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 1638,
- 1647
+ 2861,
+ 2870
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 12
},
"end": {
- "line": 57,
+ "line": 85,
"column": 21
}
}
@@ -3380,16 +5897,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1650,
- 1653
+ 2873,
+ 2876
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 24
},
"end": {
- "line": 57,
+ "line": 85,
"column": 27
}
}
@@ -3398,31 +5915,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 1654,
- 1660
+ 2877,
+ 2883
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 28
},
"end": {
- "line": 57,
+ "line": 85,
"column": 34
}
}
},
"range": [
- 1650,
- 1660
+ 2873,
+ 2883
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 24
},
"end": {
- "line": 57,
+ "line": 85,
"column": 34
}
}
@@ -3433,16 +5950,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 1661,
- 1666
+ 2884,
+ 2889
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 35
},
"end": {
- "line": 57,
+ "line": 85,
"column": 40
}
}
@@ -3455,16 +5972,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 1669,
- 1673
+ 2892,
+ 2896
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 43
},
"end": {
- "line": 57,
+ "line": 85,
"column": 47
}
}
@@ -3478,16 +5995,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1675,
- 1679
+ 2898,
+ 2902
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 49
},
"end": {
- "line": 57,
+ "line": 85,
"column": 53
}
}
@@ -3496,31 +6013,31 @@
"type": "Identifier",
"name": "prfxStatus",
"range": [
- 1680,
- 1690
+ 2903,
+ 2913
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 54
},
"end": {
- "line": 57,
+ "line": 85,
"column": 64
}
}
},
"range": [
- 1675,
- 1690
+ 2898,
+ 2913
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 49
},
"end": {
- "line": 57,
+ "line": 85,
"column": 64
}
}
@@ -3532,16 +6049,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1691,
- 1693
+ 2914,
+ 2916
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 65
},
"end": {
- "line": 57,
+ "line": 85,
"column": 67
}
}
@@ -3550,110 +6067,110 @@
"type": "Identifier",
"name": "id",
"range": [
- 1694,
- 1696
+ 2917,
+ 2919
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 68
},
"end": {
- "line": 57,
+ "line": 85,
"column": 70
}
}
},
"range": [
- 1691,
- 1696
+ 2914,
+ 2919
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 65
},
"end": {
- "line": 57,
+ "line": 85,
"column": 70
}
}
},
"range": [
- 1675,
- 1696
+ 2898,
+ 2919
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 49
},
"end": {
- "line": 57,
+ "line": 85,
"column": 70
}
}
}
],
"range": [
- 1668,
- 1697
+ 2891,
+ 2920
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 42
},
"end": {
- "line": 57,
+ "line": 85,
"column": 71
}
}
}
],
"range": [
- 1650,
- 1698
+ 2873,
+ 2921
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 24
},
"end": {
- "line": 57,
+ "line": 85,
"column": 72
}
}
},
"range": [
- 1638,
- 1698
+ 2861,
+ 2921
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 12
},
"end": {
- "line": 57,
+ "line": 85,
"column": 72
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1634,
- 1699
+ 2857,
+ 2922
],
"loc": {
"start": {
- "line": 57,
+ "line": 85,
"column": 8
},
"end": {
- "line": 57,
+ "line": 85,
"column": 73
}
},
@@ -3662,16 +6179,16 @@
"type": "Line",
"value": "status bar container",
"range": [
- 1603,
- 1625
+ 2826,
+ 2848
],
"loc": {
"start": {
- "line": 56,
+ "line": 84,
"column": 8
},
"end": {
- "line": 56,
+ "line": 84,
"column": 30
}
}
@@ -3690,16 +6207,16 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 1708,
- 1717
+ 2931,
+ 2940
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 8
},
"end": {
- "line": 58,
+ "line": 86,
"column": 17
}
}
@@ -3708,31 +6225,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 1718,
- 1727
+ 2941,
+ 2950
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 18
},
"end": {
- "line": 58,
+ "line": 86,
"column": 27
}
}
},
"range": [
- 1708,
- 1727
+ 2931,
+ 2950
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 8
},
"end": {
- "line": 58,
+ "line": 86,
"column": 27
}
}
@@ -3743,16 +6260,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1730,
- 1734
+ 2953,
+ 2957
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 30
},
"end": {
- "line": 58,
+ "line": 86,
"column": 34
}
}
@@ -3761,61 +6278,61 @@
"type": "Identifier",
"name": "statusBarCssClass",
"range": [
- 1735,
- 1752
+ 2958,
+ 2975
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 35
},
"end": {
- "line": 58,
+ "line": 86,
"column": 52
}
}
},
"range": [
- 1730,
- 1752
+ 2953,
+ 2975
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 30
},
"end": {
- "line": 58,
+ "line": 86,
"column": 52
}
}
},
"range": [
- 1708,
- 1752
+ 2931,
+ 2975
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 8
},
"end": {
- "line": 58,
+ "line": 86,
"column": 52
}
}
},
"range": [
- 1708,
- 1753
+ 2931,
+ 2976
],
"loc": {
"start": {
- "line": 58,
+ "line": 86,
"column": 8
},
"end": {
- "line": 58,
+ "line": 86,
"column": 53
}
},
@@ -3824,16 +6341,16 @@
"type": "Line",
"value": "status bar label",
"range": [
- 1763,
- 1781
+ 2986,
+ 3004
],
"loc": {
"start": {
- "line": 60,
+ "line": 88,
"column": 8
},
"end": {
- "line": 60,
+ "line": 88,
"column": 26
}
}
@@ -3849,16 +6366,16 @@
"type": "Identifier",
"name": "statusSpan",
"range": [
- 1794,
- 1804
+ 3017,
+ 3027
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 12
},
"end": {
- "line": 61,
+ "line": 89,
"column": 22
}
}
@@ -3872,16 +6389,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1807,
- 1810
+ 3030,
+ 3033
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 25
},
"end": {
- "line": 61,
+ "line": 89,
"column": 28
}
}
@@ -3890,31 +6407,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 1811,
- 1817
+ 3034,
+ 3040
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 29
},
"end": {
- "line": 61,
+ "line": 89,
"column": 35
}
}
},
"range": [
- 1807,
- 1817
+ 3030,
+ 3040
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 25
},
"end": {
- "line": 61,
+ "line": 89,
"column": 35
}
}
@@ -3925,16 +6442,16 @@
"value": "span",
"raw": "'span'",
"range": [
- 1818,
- 1824
+ 3041,
+ 3047
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 36
},
"end": {
- "line": 61,
+ "line": 89,
"column": 42
}
}
@@ -3947,16 +6464,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 1827,
- 1831
+ 3050,
+ 3054
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 45
},
"end": {
- "line": 61,
+ "line": 89,
"column": 49
}
}
@@ -3970,16 +6487,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1833,
- 1837
+ 3056,
+ 3060
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 51
},
"end": {
- "line": 61,
+ "line": 89,
"column": 55
}
}
@@ -3988,31 +6505,31 @@
"type": "Identifier",
"name": "prfxStatusSpan",
"range": [
- 1838,
- 1852
+ 3061,
+ 3075
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 56
},
"end": {
- "line": 61,
+ "line": 89,
"column": 70
}
}
},
"range": [
- 1833,
- 1852
+ 3056,
+ 3075
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 51
},
"end": {
- "line": 61,
+ "line": 89,
"column": 70
}
}
@@ -4024,16 +6541,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1853,
- 1855
+ 3076,
+ 3078
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 71
},
"end": {
- "line": 61,
+ "line": 89,
"column": 73
}
}
@@ -4042,110 +6559,110 @@
"type": "Identifier",
"name": "id",
"range": [
- 1856,
- 1858
+ 3079,
+ 3081
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 74
},
"end": {
- "line": 61,
+ "line": 89,
"column": 76
}
}
},
"range": [
- 1853,
- 1858
+ 3076,
+ 3081
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 71
},
"end": {
- "line": 61,
+ "line": 89,
"column": 76
}
}
},
"range": [
- 1833,
- 1858
+ 3056,
+ 3081
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 51
},
"end": {
- "line": 61,
+ "line": 89,
"column": 76
}
}
}
],
"range": [
- 1826,
- 1859
+ 3049,
+ 3082
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 44
},
"end": {
- "line": 61,
+ "line": 89,
"column": 77
}
}
}
],
"range": [
- 1807,
- 1860
+ 3030,
+ 3083
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 25
},
"end": {
- "line": 61,
+ "line": 89,
"column": 78
}
}
},
"range": [
- 1794,
- 1860
+ 3017,
+ 3083
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 12
},
"end": {
- "line": 61,
+ "line": 89,
"column": 78
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1790,
- 1861
+ 3013,
+ 3084
],
"loc": {
"start": {
- "line": 61,
+ "line": 89,
"column": 8
},
"end": {
- "line": 61,
+ "line": 89,
"column": 79
}
},
@@ -4154,16 +6671,16 @@
"type": "Line",
"value": "status bar label",
"range": [
- 1763,
- 1781
+ 2986,
+ 3004
],
"loc": {
"start": {
- "line": 60,
+ "line": 88,
"column": 8
},
"end": {
- "line": 60,
+ "line": 88,
"column": 26
}
}
@@ -4174,16 +6691,16 @@
"type": "Line",
"value": "preceding text",
"range": [
- 1870,
- 1886
+ 3093,
+ 3109
],
"loc": {
"start": {
- "line": 62,
+ "line": 90,
"column": 8
},
"end": {
- "line": 62,
+ "line": 90,
"column": 24
}
}
@@ -4199,16 +6716,16 @@
"type": "Identifier",
"name": "statusSpanText",
"range": [
- 1899,
- 1913
+ 3122,
+ 3136
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 12
},
"end": {
- "line": 63,
+ "line": 91,
"column": 26
}
}
@@ -4222,16 +6739,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 1916,
- 1919
+ 3139,
+ 3142
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 29
},
"end": {
- "line": 63,
+ "line": 91,
"column": 32
}
}
@@ -4240,31 +6757,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 1920,
- 1926
+ 3143,
+ 3149
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 33
},
"end": {
- "line": 63,
+ "line": 91,
"column": 39
}
}
},
"range": [
- 1916,
- 1926
+ 3139,
+ 3149
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 29
},
"end": {
- "line": 63,
+ "line": 91,
"column": 39
}
}
@@ -4275,16 +6792,16 @@
"value": "span",
"raw": "'span'",
"range": [
- 1927,
- 1933
+ 3150,
+ 3156
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 40
},
"end": {
- "line": 63,
+ "line": 91,
"column": 46
}
}
@@ -4297,16 +6814,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 1948,
- 1952
+ 3171,
+ 3175
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 13
},
"end": {
- "line": 64,
+ "line": 92,
"column": 17
}
}
@@ -4320,16 +6837,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1954,
- 1958
+ 3177,
+ 3181
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 19
},
"end": {
- "line": 64,
+ "line": 92,
"column": 23
}
}
@@ -4338,31 +6855,31 @@
"type": "Identifier",
"name": "prfxStatusTxt",
"range": [
- 1959,
- 1972
+ 3182,
+ 3195
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 24
},
"end": {
- "line": 64,
+ "line": 92,
"column": 37
}
}
},
"range": [
- 1954,
- 1972
+ 3177,
+ 3195
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 19
},
"end": {
- "line": 64,
+ "line": 92,
"column": 37
}
}
@@ -4374,16 +6891,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1973,
- 1975
+ 3196,
+ 3198
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 38
},
"end": {
- "line": 64,
+ "line": 92,
"column": 40
}
}
@@ -4392,110 +6909,110 @@
"type": "Identifier",
"name": "id",
"range": [
- 1976,
- 1978
+ 3199,
+ 3201
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 41
},
"end": {
- "line": 64,
+ "line": 92,
"column": 43
}
}
},
"range": [
- 1973,
- 1978
+ 3196,
+ 3201
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 38
},
"end": {
- "line": 64,
+ "line": 92,
"column": 43
}
}
},
"range": [
- 1954,
- 1978
+ 3177,
+ 3201
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 19
},
"end": {
- "line": 64,
+ "line": 92,
"column": 43
}
}
}
],
"range": [
- 1947,
- 1979
+ 3170,
+ 3202
],
"loc": {
"start": {
- "line": 64,
+ "line": 92,
"column": 12
},
"end": {
- "line": 64,
+ "line": 92,
"column": 44
}
}
}
],
"range": [
- 1916,
- 1980
+ 3139,
+ 3203
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 29
},
"end": {
- "line": 64,
+ "line": 92,
"column": 45
}
}
},
"range": [
- 1899,
- 1980
+ 3122,
+ 3203
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 12
},
"end": {
- "line": 64,
+ "line": 92,
"column": 45
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1895,
- 1981
+ 3118,
+ 3204
],
"loc": {
"start": {
- "line": 63,
+ "line": 91,
"column": 8
},
"end": {
- "line": 64,
+ "line": 92,
"column": 46
}
},
@@ -4504,16 +7021,16 @@
"type": "Line",
"value": "preceding text",
"range": [
- 1870,
- 1886
+ 3093,
+ 3109
],
"loc": {
"start": {
- "line": 62,
+ "line": 90,
"column": 8
},
"end": {
- "line": 62,
+ "line": 90,
"column": 24
}
}
@@ -4531,16 +7048,16 @@
"type": "Identifier",
"name": "statusSpanText",
"range": [
- 1990,
- 2004
+ 3213,
+ 3227
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 8
},
"end": {
- "line": 65,
+ "line": 93,
"column": 22
}
}
@@ -4549,31 +7066,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2005,
- 2016
+ 3228,
+ 3239
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 23
},
"end": {
- "line": 65,
+ "line": 93,
"column": 34
}
}
},
"range": [
- 1990,
- 2016
+ 3213,
+ 3239
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 8
},
"end": {
- "line": 65,
+ "line": 93,
"column": 34
}
}
@@ -4588,16 +7105,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2017,
- 2020
+ 3240,
+ 3243
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 35
},
"end": {
- "line": 65,
+ "line": 93,
"column": 38
}
}
@@ -4606,31 +7123,31 @@
"type": "Identifier",
"name": "text",
"range": [
- 2021,
- 2025
+ 3244,
+ 3248
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 39
},
"end": {
- "line": 65,
+ "line": 93,
"column": 43
}
}
},
"range": [
- 2017,
- 2025
+ 3240,
+ 3248
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 35
},
"end": {
- "line": 65,
+ "line": 93,
"column": 43
}
}
@@ -4642,16 +7159,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2026,
- 2030
+ 3249,
+ 3253
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 44
},
"end": {
- "line": 65,
+ "line": 93,
"column": 48
}
}
@@ -4660,78 +7177,78 @@
"type": "Identifier",
"name": "statusBarText",
"range": [
- 2031,
- 2044
+ 3254,
+ 3267
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 49
},
"end": {
- "line": 65,
+ "line": 93,
"column": 62
}
}
},
"range": [
- 2026,
- 2044
+ 3249,
+ 3267
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 44
},
"end": {
- "line": 65,
+ "line": 93,
"column": 62
}
}
}
],
"range": [
- 2017,
- 2045
+ 3240,
+ 3268
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 35
},
"end": {
- "line": 65,
+ "line": 93,
"column": 63
}
}
}
],
"range": [
- 1990,
- 2046
+ 3213,
+ 3269
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 8
},
"end": {
- "line": 65,
+ "line": 93,
"column": 64
}
}
},
"range": [
- 1990,
- 2047
+ 3213,
+ 3270
],
"loc": {
"start": {
- "line": 65,
+ "line": 93,
"column": 8
},
"end": {
- "line": 65,
+ "line": 93,
"column": 65
}
},
@@ -4740,16 +7257,16 @@
"type": "Line",
"value": " target element container",
"range": [
- 2057,
- 2084
+ 3280,
+ 3307
],
"loc": {
"start": {
- "line": 67,
+ "line": 95,
"column": 8
},
"end": {
- "line": 67,
+ "line": 95,
"column": 35
}
}
@@ -4767,16 +7284,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2097,
- 2101
+ 3320,
+ 3324
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 12
},
"end": {
- "line": 68,
+ "line": 96,
"column": 16
}
}
@@ -4785,47 +7302,47 @@
"type": "Identifier",
"name": "statusBarTgtId",
"range": [
- 2102,
- 2116
+ 3325,
+ 3339
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 17
},
"end": {
- "line": 68,
+ "line": 96,
"column": 31
}
}
},
"range": [
- 2097,
- 2116
+ 3320,
+ 3339
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 12
},
"end": {
- "line": 68,
+ "line": 96,
"column": 31
}
}
},
"prefix": true,
"range": [
- 2096,
- 2116
+ 3319,
+ 3339
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 11
},
"end": {
- "line": 68,
+ "line": 96,
"column": 31
}
}
@@ -4844,16 +7361,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2131,
- 2133
+ 3354,
+ 3356
],
"loc": {
"start": {
- "line": 69,
+ "line": 97,
"column": 12
},
"end": {
- "line": 69,
+ "line": 97,
"column": 14
}
}
@@ -4862,94 +7379,94 @@
"type": "Identifier",
"name": "setToolbar",
"range": [
- 2134,
- 2144
+ 3357,
+ 3367
],
"loc": {
"start": {
- "line": 69,
+ "line": 97,
"column": 15
},
"end": {
- "line": 69,
+ "line": 97,
"column": 25
}
}
},
"range": [
- 2131,
- 2144
+ 3354,
+ 3367
],
"loc": {
"start": {
- "line": 69,
+ "line": 97,
"column": 12
},
"end": {
- "line": 69,
+ "line": 97,
"column": 25
}
}
},
"arguments": [],
"range": [
- 2131,
- 2146
+ 3354,
+ 3369
],
"loc": {
"start": {
- "line": 69,
+ "line": 97,
"column": 12
},
"end": {
- "line": 69,
+ "line": 97,
"column": 27
}
}
},
"range": [
- 2131,
- 2147
+ 3354,
+ 3370
],
"loc": {
"start": {
- "line": 69,
+ "line": 97,
"column": 12
},
"end": {
- "line": 69,
+ "line": 97,
"column": 28
}
}
}
],
"range": [
- 2117,
- 2157
+ 3340,
+ 3380
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 32
},
"end": {
- "line": 70,
+ "line": 98,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2093,
- 2157
+ 3316,
+ 3380
],
"loc": {
"start": {
- "line": 68,
+ "line": 96,
"column": 8
},
"end": {
- "line": 70,
+ "line": 98,
"column": 9
}
},
@@ -4958,16 +7475,16 @@
"type": "Line",
"value": " target element container",
"range": [
- 2057,
- 2084
+ 3280,
+ 3307
],
"loc": {
"start": {
- "line": 67,
+ "line": 95,
"column": 8
},
"end": {
- "line": 67,
+ "line": 95,
"column": 35
}
}
@@ -4983,16 +7500,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 2170,
- 2178
+ 3393,
+ 3401
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 12
},
"end": {
- "line": 71,
+ "line": 99,
"column": 20
}
}
@@ -5008,16 +7525,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2183,
- 2187
+ 3406,
+ 3410
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 25
},
"end": {
- "line": 71,
+ "line": 99,
"column": 29
}
}
@@ -5026,47 +7543,47 @@
"type": "Identifier",
"name": "statusBarTgtId",
"range": [
- 2188,
- 2202
+ 3411,
+ 3425
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 30
},
"end": {
- "line": 71,
+ "line": 99,
"column": 44
}
}
},
"range": [
- 2183,
- 2202
+ 3406,
+ 3425
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 25
},
"end": {
- "line": 71,
+ "line": 99,
"column": 44
}
}
},
"prefix": true,
"range": [
- 2182,
- 2202
+ 3405,
+ 3425
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 24
},
"end": {
- "line": 71,
+ "line": 99,
"column": 44
}
}
@@ -5078,16 +7595,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2222,
- 2224
+ 3445,
+ 3447
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 16
},
"end": {
- "line": 72,
+ "line": 100,
"column": 18
}
}
@@ -5096,31 +7613,31 @@
"type": "Identifier",
"name": "lDiv",
"range": [
- 2225,
- 2229
+ 3448,
+ 3452
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 19
},
"end": {
- "line": 72,
+ "line": 100,
"column": 23
}
}
},
"range": [
- 2222,
- 2229
+ 3445,
+ 3452
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 16
},
"end": {
- "line": 72,
+ "line": 100,
"column": 23
}
}
@@ -5134,16 +7651,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2232,
- 2235
+ 3455,
+ 3458
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 26
},
"end": {
- "line": 72,
+ "line": 100,
"column": 29
}
}
@@ -5152,31 +7669,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 2236,
- 2238
+ 3459,
+ 3461
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 30
},
"end": {
- "line": 72,
+ "line": 100,
"column": 32
}
}
},
"range": [
- 2232,
- 2238
+ 3455,
+ 3461
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 26
},
"end": {
- "line": 72,
+ "line": 100,
"column": 32
}
}
@@ -5188,16 +7705,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2239,
- 2243
+ 3462,
+ 3466
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 33
},
"end": {
- "line": 72,
+ "line": 100,
"column": 37
}
}
@@ -5206,94 +7723,94 @@
"type": "Identifier",
"name": "statusBarTgtId",
"range": [
- 2244,
- 2258
+ 3467,
+ 3481
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 38
},
"end": {
- "line": 72,
+ "line": 100,
"column": 52
}
}
},
"range": [
- 2239,
- 2258
+ 3462,
+ 3481
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 33
},
"end": {
- "line": 72,
+ "line": 100,
"column": 52
}
}
}
],
"range": [
- 2232,
- 2259
+ 3455,
+ 3482
],
"loc": {
"start": {
- "line": 72,
+ "line": 100,
"column": 26
},
"end": {
- "line": 72,
+ "line": 100,
"column": 53
}
}
},
"range": [
- 2181,
- 2259
+ 3404,
+ 3482
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 23
},
"end": {
- "line": 72,
+ "line": 100,
"column": 53
}
}
},
"range": [
- 2170,
- 2259
+ 3393,
+ 3482
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 12
},
"end": {
- "line": 72,
+ "line": 100,
"column": 53
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 2166,
- 2260
+ 3389,
+ 3483
],
"loc": {
"start": {
- "line": 71,
+ "line": 99,
"column": 8
},
"end": {
- "line": 72,
+ "line": 100,
"column": 54
}
},
@@ -5302,16 +7819,16 @@
"type": "Line",
"value": "default container: 'lDiv'",
"range": [
- 2270,
- 2297
+ 3493,
+ 3520
],
"loc": {
"start": {
- "line": 74,
+ "line": 102,
"column": 8
},
"end": {
- "line": 74,
+ "line": 102,
"column": 35
}
}
@@ -5329,16 +7846,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2310,
- 2314
+ 3533,
+ 3537
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 12
},
"end": {
- "line": 75,
+ "line": 103,
"column": 16
}
}
@@ -5347,47 +7864,47 @@
"type": "Identifier",
"name": "statusBarTgtId",
"range": [
- 2315,
- 2329
+ 3538,
+ 3552
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 17
},
"end": {
- "line": 75,
+ "line": 103,
"column": 31
}
}
},
"range": [
- 2310,
- 2329
+ 3533,
+ 3552
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 12
},
"end": {
- "line": 75,
+ "line": 103,
"column": 31
}
}
},
"prefix": true,
"range": [
- 2309,
- 2329
+ 3532,
+ 3552
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 11
},
"end": {
- "line": 75,
+ "line": 103,
"column": 31
}
}
@@ -5406,16 +7923,16 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 2344,
- 2353
+ 3567,
+ 3576
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 12
},
"end": {
- "line": 76,
+ "line": 104,
"column": 21
}
}
@@ -5424,31 +7941,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2354,
- 2365
+ 3577,
+ 3588
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 22
},
"end": {
- "line": 76,
+ "line": 104,
"column": 33
}
}
},
"range": [
- 2344,
- 2365
+ 3567,
+ 3588
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 12
},
"end": {
- "line": 76,
+ "line": 104,
"column": 33
}
}
@@ -5458,47 +7975,47 @@
"type": "Identifier",
"name": "statusSpanText",
"range": [
- 2366,
- 2380
+ 3589,
+ 3603
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 34
},
"end": {
- "line": 76,
+ "line": 104,
"column": 48
}
}
}
],
"range": [
- 2344,
- 2381
+ 3567,
+ 3604
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 12
},
"end": {
- "line": 76,
+ "line": 104,
"column": 49
}
}
},
"range": [
- 2344,
- 2382
+ 3567,
+ 3605
],
"loc": {
"start": {
- "line": 76,
+ "line": 104,
"column": 12
},
"end": {
- "line": 76,
+ "line": 104,
"column": 50
}
}
@@ -5514,16 +8031,16 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 2395,
- 2404
+ 3618,
+ 3627
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 12
},
"end": {
- "line": 77,
+ "line": 105,
"column": 21
}
}
@@ -5532,31 +8049,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2405,
- 2416
+ 3628,
+ 3639
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 22
},
"end": {
- "line": 77,
+ "line": 105,
"column": 33
}
}
},
"range": [
- 2395,
- 2416
+ 3618,
+ 3639
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 12
},
"end": {
- "line": 77,
+ "line": 105,
"column": 33
}
}
@@ -5566,47 +8083,47 @@
"type": "Identifier",
"name": "statusSpan",
"range": [
- 2417,
- 2427
+ 3640,
+ 3650
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 34
},
"end": {
- "line": 77,
+ "line": 105,
"column": 44
}
}
}
],
"range": [
- 2395,
- 2428
+ 3618,
+ 3651
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 12
},
"end": {
- "line": 77,
+ "line": 105,
"column": 45
}
}
},
"range": [
- 2395,
- 2429
+ 3618,
+ 3652
],
"loc": {
"start": {
- "line": 77,
+ "line": 105,
"column": 12
},
"end": {
- "line": 77,
+ "line": 105,
"column": 46
}
}
@@ -5622,16 +8139,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 2442,
- 2450
+ 3665,
+ 3673
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 12
},
"end": {
- "line": 78,
+ "line": 106,
"column": 20
}
}
@@ -5640,31 +8157,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2451,
- 2462
+ 3674,
+ 3685
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 21
},
"end": {
- "line": 78,
+ "line": 106,
"column": 32
}
}
},
"range": [
- 2442,
- 2462
+ 3665,
+ 3685
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 12
},
"end": {
- "line": 78,
+ "line": 106,
"column": 32
}
}
@@ -5674,63 +8191,63 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 2463,
- 2472
+ 3686,
+ 3695
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 33
},
"end": {
- "line": 78,
+ "line": 106,
"column": 42
}
}
}
],
"range": [
- 2442,
- 2473
+ 3665,
+ 3696
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 12
},
"end": {
- "line": 78,
+ "line": 106,
"column": 43
}
}
},
"range": [
- 2442,
- 2474
+ 3665,
+ 3697
],
"loc": {
"start": {
- "line": 78,
+ "line": 106,
"column": 12
},
"end": {
- "line": 78,
+ "line": 106,
"column": 44
}
}
}
],
"range": [
- 2330,
- 2484
+ 3553,
+ 3707
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 32
},
"end": {
- "line": 79,
+ "line": 107,
"column": 9
}
}
@@ -5749,16 +8266,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 2565,
- 2573
+ 3788,
+ 3796
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 12
},
"end": {
- "line": 81,
+ "line": 109,
"column": 20
}
}
@@ -5767,31 +8284,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2574,
- 2585
+ 3797,
+ 3808
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 21
},
"end": {
- "line": 81,
+ "line": 109,
"column": 32
}
}
},
"range": [
- 2565,
- 2585
+ 3788,
+ 3808
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 12
},
"end": {
- "line": 81,
+ "line": 109,
"column": 32
}
}
@@ -5801,47 +8318,47 @@
"type": "Identifier",
"name": "statusSpanText",
"range": [
- 2586,
- 2600
+ 3809,
+ 3823
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 33
},
"end": {
- "line": 81,
+ "line": 109,
"column": 47
}
}
}
],
"range": [
- 2565,
- 2601
+ 3788,
+ 3824
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 12
},
"end": {
- "line": 81,
+ "line": 109,
"column": 48
}
}
},
"range": [
- 2565,
- 2602
+ 3788,
+ 3825
],
"loc": {
"start": {
- "line": 81,
+ "line": 109,
"column": 12
},
"end": {
- "line": 81,
+ "line": 109,
"column": 49
}
},
@@ -5850,16 +8367,16 @@
"type": "Line",
"value": " custom container, no need to append statusDiv",
"range": [
- 2504,
- 2552
+ 3727,
+ 3775
],
"loc": {
"start": {
- "line": 80,
+ "line": 108,
"column": 12
},
"end": {
- "line": 80,
+ "line": 108,
"column": 60
}
}
@@ -5877,16 +8394,16 @@
"type": "Identifier",
"name": "targetEl",
"range": [
- 2615,
- 2623
+ 3838,
+ 3846
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 12
},
"end": {
- "line": 82,
+ "line": 110,
"column": 20
}
}
@@ -5895,31 +8412,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 2624,
- 2635
+ 3847,
+ 3858
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 21
},
"end": {
- "line": 82,
+ "line": 110,
"column": 32
}
}
},
"range": [
- 2615,
- 2635
+ 3838,
+ 3858
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 12
},
"end": {
- "line": 82,
+ "line": 110,
"column": 32
}
}
@@ -5929,78 +8446,78 @@
"type": "Identifier",
"name": "statusSpan",
"range": [
- 2636,
- 2646
+ 3859,
+ 3869
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 33
},
"end": {
- "line": 82,
+ "line": 110,
"column": 43
}
}
}
],
"range": [
- 2615,
- 2647
+ 3838,
+ 3870
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 12
},
"end": {
- "line": 82,
+ "line": 110,
"column": 44
}
}
},
"range": [
- 2615,
- 2648
+ 3838,
+ 3871
],
"loc": {
"start": {
- "line": 82,
+ "line": 110,
"column": 12
},
"end": {
- "line": 82,
+ "line": 110,
"column": 45
}
}
}
],
"range": [
- 2490,
- 2658
+ 3713,
+ 3881
],
"loc": {
"start": {
- "line": 79,
+ "line": 107,
"column": 15
},
"end": {
- "line": 83,
+ "line": 111,
"column": 9
}
}
},
"range": [
- 2306,
- 2658
+ 3529,
+ 3881
],
"loc": {
"start": {
- "line": 75,
+ "line": 103,
"column": 8
},
"end": {
- "line": 83,
+ "line": 111,
"column": 9
}
},
@@ -6009,16 +8526,16 @@
"type": "Line",
"value": "default container: 'lDiv'",
"range": [
- 2270,
- 2297
+ 3493,
+ 3520
],
"loc": {
"start": {
- "line": 74,
+ "line": 102,
"column": 8
},
"end": {
- "line": 74,
+ "line": 102,
"column": 35
}
}
@@ -6036,16 +8553,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2668,
- 2672
+ 3891,
+ 3895
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 8
},
"end": {
- "line": 85,
+ "line": 113,
"column": 12
}
}
@@ -6054,31 +8571,31 @@
"type": "Identifier",
"name": "statusBarDiv",
"range": [
- 2673,
- 2685
+ 3896,
+ 3908
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 13
},
"end": {
- "line": 85,
+ "line": 113,
"column": 25
}
}
},
"range": [
- 2668,
- 2685
+ 3891,
+ 3908
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 8
},
"end": {
- "line": 85,
+ "line": 113,
"column": 25
}
}
@@ -6087,46 +8604,46 @@
"type": "Identifier",
"name": "statusDiv",
"range": [
- 2688,
- 2697
+ 3911,
+ 3920
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 28
},
"end": {
- "line": 85,
+ "line": 113,
"column": 37
}
}
},
"range": [
- 2668,
- 2697
+ 3891,
+ 3920
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 8
},
"end": {
- "line": 85,
+ "line": 113,
"column": 37
}
}
},
"range": [
- 2668,
- 2698
+ 3891,
+ 3921
],
"loc": {
"start": {
- "line": 85,
+ "line": 113,
"column": 8
},
"end": {
- "line": 85,
+ "line": 113,
"column": 38
}
}
@@ -6142,16 +8659,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2707,
- 2711
+ 3930,
+ 3934
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 8
},
"end": {
- "line": 86,
+ "line": 114,
"column": 12
}
}
@@ -6160,31 +8677,31 @@
"type": "Identifier",
"name": "statusBarSpan",
"range": [
- 2712,
- 2725
+ 3935,
+ 3948
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 13
},
"end": {
- "line": 86,
+ "line": 114,
"column": 26
}
}
},
"range": [
- 2707,
- 2725
+ 3930,
+ 3948
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 8
},
"end": {
- "line": 86,
+ "line": 114,
"column": 26
}
}
@@ -6193,46 +8710,46 @@
"type": "Identifier",
"name": "statusSpan",
"range": [
- 2728,
- 2738
+ 3951,
+ 3961
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 29
},
"end": {
- "line": 86,
+ "line": 114,
"column": 39
}
}
},
"range": [
- 2707,
- 2738
+ 3930,
+ 3961
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 8
},
"end": {
- "line": 86,
+ "line": 114,
"column": 39
}
}
},
"range": [
- 2707,
- 2739
+ 3930,
+ 3962
],
"loc": {
"start": {
- "line": 86,
+ "line": 114,
"column": 8
},
"end": {
- "line": 86,
+ "line": 114,
"column": 40
}
}
@@ -6248,16 +8765,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2748,
- 2752
+ 3971,
+ 3975
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 8
},
"end": {
- "line": 87,
+ "line": 115,
"column": 12
}
}
@@ -6266,31 +8783,31 @@
"type": "Identifier",
"name": "statusBarSpanText",
"range": [
- 2753,
- 2770
+ 3976,
+ 3993
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 13
},
"end": {
- "line": 87,
+ "line": 115,
"column": 30
}
}
},
"range": [
- 2748,
- 2770
+ 3971,
+ 3993
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 8
},
"end": {
- "line": 87,
+ "line": 115,
"column": 30
}
}
@@ -6299,48 +8816,2946 @@
"type": "Identifier",
"name": "statusSpanText",
"range": [
- 2773,
- 2787
+ 3996,
+ 4010
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 33
},
"end": {
- "line": 87,
+ "line": 115,
"column": 47
}
}
},
"range": [
- 2748,
- 2787
+ 3971,
+ 4010
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 8
},
"end": {
- "line": 87,
+ "line": 115,
"column": 47
}
}
},
"range": [
- 2748,
- 2788
+ 3971,
+ 4011
],
"loc": {
"start": {
- "line": 87,
+ "line": 115,
"column": 8
},
"end": {
- "line": 87,
+ "line": 115,
"column": 48
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 4021,
+ 4043
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4052,
+ 4059
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 8
+ },
+ "end": {
+ "line": 118,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4060,
+ 4062
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 16
+ },
+ "end": {
+ "line": 118,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4052,
+ 4062
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 8
+ },
+ "end": {
+ "line": 118,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 4064,
+ 4082
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 20
+ },
+ "end": {
+ "line": 118,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 4063,
+ 4083
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 19
+ },
+ "end": {
+ "line": 118,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4090,
+ 4094
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 46
+ },
+ "end": {
+ "line": 118,
+ "column": 50
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4095,
+ 4102
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 51
+ },
+ "end": {
+ "line": 118,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 4090,
+ 4102
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 46
+ },
+ "end": {
+ "line": 118,
+ "column": 58
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4103,
+ 4107
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 59
+ },
+ "end": {
+ "line": 118,
+ "column": 63
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgFilter",
+ "range": [
+ 4108,
+ 4117
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 64
+ },
+ "end": {
+ "line": 118,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 4103,
+ 4117
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 59
+ },
+ "end": {
+ "line": 118,
+ "column": 73
+ }
+ }
+ }
+ ],
+ "range": [
+ 4090,
+ 4118
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 46
+ },
+ "end": {
+ "line": 118,
+ "column": 74
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4085,
+ 4118
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 41
+ },
+ "end": {
+ "line": 118,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 4052,
+ 4119
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 8
+ },
+ "end": {
+ "line": 118,
+ "column": 75
+ }
+ }
+ },
+ "range": [
+ 4052,
+ 4120
+ ],
+ "loc": {
+ "start": {
+ "line": 118,
+ "column": 8
+ },
+ "end": {
+ "line": 118,
+ "column": 76
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 4021,
+ 4043
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4129,
+ 4136
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 119,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4137,
+ 4139
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 16
+ },
+ "end": {
+ "line": 119,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4129,
+ 4139
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 119,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 4141,
+ 4167
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 20
+ },
+ "end": {
+ "line": 119,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 4140,
+ 4168
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 19
+ },
+ "end": {
+ "line": 119,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4187,
+ 4191
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 17
+ },
+ "end": {
+ "line": 120,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4192,
+ 4199
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 22
+ },
+ "end": {
+ "line": 120,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4187,
+ 4199
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 17
+ },
+ "end": {
+ "line": 120,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4200,
+ 4204
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 30
+ },
+ "end": {
+ "line": 120,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgPopulate",
+ "range": [
+ 4205,
+ 4216
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 35
+ },
+ "end": {
+ "line": 120,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 4200,
+ 4216
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 30
+ },
+ "end": {
+ "line": 120,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 4187,
+ 4217
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 17
+ },
+ "end": {
+ "line": 120,
+ "column": 47
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4182,
+ 4217
+ ],
+ "loc": {
+ "start": {
+ "line": 120,
+ "column": 12
+ },
+ "end": {
+ "line": 120,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 4129,
+ 4218
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 120,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 4129,
+ 4219
+ ],
+ "loc": {
+ "start": {
+ "line": 119,
+ "column": 8
+ },
+ "end": {
+ "line": 120,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4228,
+ 4235
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 8
+ },
+ "end": {
+ "line": 121,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4236,
+ 4238
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 16
+ },
+ "end": {
+ "line": 121,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4228,
+ 4238
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 8
+ },
+ "end": {
+ "line": 121,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-changing-page",
+ "raw": "'before-changing-page'",
+ "range": [
+ 4240,
+ 4262
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 20
+ },
+ "end": {
+ "line": 121,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 4239,
+ 4263
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 19
+ },
+ "end": {
+ "line": 121,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4282,
+ 4286
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 17
+ },
+ "end": {
+ "line": 122,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4287,
+ 4294
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 22
+ },
+ "end": {
+ "line": 122,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4282,
+ 4294
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 17
+ },
+ "end": {
+ "line": 122,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4295,
+ 4299
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 30
+ },
+ "end": {
+ "line": 122,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangePage",
+ "range": [
+ 4300,
+ 4313
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 35
+ },
+ "end": {
+ "line": 122,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 4295,
+ 4313
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 30
+ },
+ "end": {
+ "line": 122,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 4282,
+ 4314
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 17
+ },
+ "end": {
+ "line": 122,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4277,
+ 4314
+ ],
+ "loc": {
+ "start": {
+ "line": 122,
+ "column": 12
+ },
+ "end": {
+ "line": 122,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 4228,
+ 4315
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 8
+ },
+ "end": {
+ "line": 122,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 4228,
+ 4316
+ ],
+ "loc": {
+ "start": {
+ "line": 121,
+ "column": 8
+ },
+ "end": {
+ "line": 122,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4325,
+ 4332
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4333,
+ 4335
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 16
+ },
+ "end": {
+ "line": 123,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4325,
+ 4335
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 123,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-clearing-filters",
+ "raw": "'before-clearing-filters'",
+ "range": [
+ 4337,
+ 4362
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 20
+ },
+ "end": {
+ "line": 123,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 4336,
+ 4363
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 19
+ },
+ "end": {
+ "line": 123,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4382,
+ 4386
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 12
+ },
+ "end": {
+ "line": 124,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4387,
+ 4394
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 17
+ },
+ "end": {
+ "line": 124,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 4382,
+ 4394
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 12
+ },
+ "end": {
+ "line": 124,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4395,
+ 4399
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 25
+ },
+ "end": {
+ "line": 124,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgClear",
+ "range": [
+ 4400,
+ 4408
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 30
+ },
+ "end": {
+ "line": 124,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 4395,
+ 4408
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 25
+ },
+ "end": {
+ "line": 124,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 4382,
+ 4409
+ ],
+ "loc": {
+ "start": {
+ "line": 124,
+ "column": 12
+ },
+ "end": {
+ "line": 124,
+ "column": 39
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4365,
+ 4409
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 48
+ },
+ "end": {
+ "line": 124,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 4325,
+ 4410
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 124,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 4325,
+ 4411
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 8
+ },
+ "end": {
+ "line": 124,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4420,
+ 4427
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 125,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4428,
+ 4430
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 16
+ },
+ "end": {
+ "line": 125,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4420,
+ 4430
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 125,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-changing-results-per-page",
+ "raw": "'before-changing-results-per-page'",
+ "range": [
+ 4432,
+ 4466
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 20
+ },
+ "end": {
+ "line": 125,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 4431,
+ 4467
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 19
+ },
+ "end": {
+ "line": 125,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4486,
+ 4490
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 17
+ },
+ "end": {
+ "line": 126,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4491,
+ 4498
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 22
+ },
+ "end": {
+ "line": 126,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4486,
+ 4498
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 17
+ },
+ "end": {
+ "line": 126,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4499,
+ 4503
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 30
+ },
+ "end": {
+ "line": 126,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangeResults",
+ "range": [
+ 4504,
+ 4520
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 35
+ },
+ "end": {
+ "line": 126,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 4499,
+ 4520
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 30
+ },
+ "end": {
+ "line": 126,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 4486,
+ 4521
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 17
+ },
+ "end": {
+ "line": 126,
+ "column": 52
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4481,
+ 4521
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 12
+ },
+ "end": {
+ "line": 126,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 4420,
+ 4522
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 126,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 4420,
+ 4523
+ ],
+ "loc": {
+ "start": {
+ "line": 125,
+ "column": 8
+ },
+ "end": {
+ "line": 126,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4532,
+ 4539
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4540,
+ 4542
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 16
+ },
+ "end": {
+ "line": 127,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4532,
+ 4542
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page",
+ "raw": "'before-reset-page'",
+ "range": [
+ 4544,
+ 4563
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 20
+ },
+ "end": {
+ "line": 127,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 4543,
+ 4564
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 19
+ },
+ "end": {
+ "line": 127,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4571,
+ 4575
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 47
+ },
+ "end": {
+ "line": 127,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4576,
+ 4583
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 52
+ },
+ "end": {
+ "line": 127,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 4571,
+ 4583
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 47
+ },
+ "end": {
+ "line": 127,
+ "column": 59
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4584,
+ 4588
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 60
+ },
+ "end": {
+ "line": 127,
+ "column": 64
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPage",
+ "range": [
+ 4589,
+ 4601
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 65
+ },
+ "end": {
+ "line": 127,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 4584,
+ 4601
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 60
+ },
+ "end": {
+ "line": 127,
+ "column": 77
+ }
+ }
+ }
+ ],
+ "range": [
+ 4571,
+ 4602
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 47
+ },
+ "end": {
+ "line": 127,
+ "column": 78
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4566,
+ 4602
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 42
+ },
+ "end": {
+ "line": 127,
+ "column": 78
+ }
+ }
+ }
+ ],
+ "range": [
+ 4532,
+ 4603
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 79
+ }
+ }
+ },
+ "range": [
+ 4532,
+ 4604
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 80
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4613,
+ 4620
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4621,
+ 4623
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 16
+ },
+ "end": {
+ "line": 128,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4613,
+ 4623
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page-length",
+ "raw": "'before-reset-page-length'",
+ "range": [
+ 4625,
+ 4651
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 20
+ },
+ "end": {
+ "line": 128,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 4624,
+ 4652
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 19
+ },
+ "end": {
+ "line": 128,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4671,
+ 4675
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 17
+ },
+ "end": {
+ "line": 129,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4676,
+ 4683
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 22
+ },
+ "end": {
+ "line": 129,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4671,
+ 4683
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 17
+ },
+ "end": {
+ "line": 129,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4684,
+ 4688
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 30
+ },
+ "end": {
+ "line": 129,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPageLength",
+ "range": [
+ 4689,
+ 4707
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 35
+ },
+ "end": {
+ "line": 129,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 4684,
+ 4707
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 30
+ },
+ "end": {
+ "line": 129,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 4671,
+ 4708
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 17
+ },
+ "end": {
+ "line": 129,
+ "column": 54
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4666,
+ 4708
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 12
+ },
+ "end": {
+ "line": 129,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 4613,
+ 4709
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 4613,
+ 4710
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4719,
+ 4726
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4727,
+ 4729
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 16
+ },
+ "end": {
+ "line": 130,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4719,
+ 4729
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 130,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-loading-extensions",
+ "raw": "'before-loading-extensions'",
+ "range": [
+ 4731,
+ 4758
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 20
+ },
+ "end": {
+ "line": 130,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 4730,
+ 4759
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 19
+ },
+ "end": {
+ "line": 130,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4778,
+ 4782
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4783,
+ 4790
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 22
+ },
+ "end": {
+ "line": 131,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4778,
+ 4790
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4791,
+ 4795
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 30
+ },
+ "end": {
+ "line": 131,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadExtensions",
+ "range": [
+ 4796,
+ 4813
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 35
+ },
+ "end": {
+ "line": 131,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 4791,
+ 4813
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 30
+ },
+ "end": {
+ "line": 131,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 4778,
+ 4814
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 17
+ },
+ "end": {
+ "line": 131,
+ "column": 53
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4773,
+ 4814
+ ],
+ "loc": {
+ "start": {
+ "line": 131,
+ "column": 12
+ },
+ "end": {
+ "line": 131,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 4719,
+ 4815
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 4719,
+ 4816
+ ],
+ "loc": {
+ "start": {
+ "line": 130,
+ "column": 8
+ },
+ "end": {
+ "line": 131,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4825,
+ 4832
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4833,
+ 4835
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 16
+ },
+ "end": {
+ "line": 132,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4825,
+ 4835
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 132,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-loading-themes",
+ "raw": "'before-loading-themes'",
+ "range": [
+ 4837,
+ 4860
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 20
+ },
+ "end": {
+ "line": 132,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 4836,
+ 4861
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 19
+ },
+ "end": {
+ "line": 132,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4880,
+ 4884
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 17
+ },
+ "end": {
+ "line": 133,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 4885,
+ 4892
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 22
+ },
+ "end": {
+ "line": 133,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 4880,
+ 4892
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 17
+ },
+ "end": {
+ "line": 133,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 4893,
+ 4897
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 30
+ },
+ "end": {
+ "line": 133,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadThemes",
+ "range": [
+ 4898,
+ 4911
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 35
+ },
+ "end": {
+ "line": 133,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 4893,
+ 4911
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 30
+ },
+ "end": {
+ "line": 133,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 4880,
+ 4912
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 17
+ },
+ "end": {
+ "line": 133,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 4875,
+ 4912
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 12
+ },
+ "end": {
+ "line": 133,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 4825,
+ 4913
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 4825,
+ 4914
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 4924,
+ 4931
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 4932,
+ 4934
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 16
+ },
+ "end": {
+ "line": 135,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 4924,
+ 4934
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 4953,
+ 4970
+ ],
+ "loc": {
+ "start": {
+ "line": 136,
+ "column": 16
+ },
+ "end": {
+ "line": 136,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 4988,
+ 5013
+ ],
+ "loc": {
+ "start": {
+ "line": 137,
+ "column": 16
+ },
+ "end": {
+ "line": 137,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-page",
+ "raw": "'after-changing-page'",
+ "range": [
+ 5031,
+ 5052
+ ],
+ "loc": {
+ "start": {
+ "line": 138,
+ "column": 16
+ },
+ "end": {
+ "line": 138,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 5070,
+ 5094
+ ],
+ "loc": {
+ "start": {
+ "line": 139,
+ "column": 16
+ },
+ "end": {
+ "line": 139,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-results-per-page",
+ "raw": "'after-changing-results-per-page'",
+ "range": [
+ 5112,
+ 5145
+ ],
+ "loc": {
+ "start": {
+ "line": 140,
+ "column": 16
+ },
+ "end": {
+ "line": 140,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page",
+ "raw": "'after-reset-page'",
+ "range": [
+ 5163,
+ 5181
+ ],
+ "loc": {
+ "start": {
+ "line": 141,
+ "column": 16
+ },
+ "end": {
+ "line": 141,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page-length",
+ "raw": "'after-reset-page-length'",
+ "range": [
+ 5199,
+ 5224
+ ],
+ "loc": {
+ "start": {
+ "line": 142,
+ "column": 16
+ },
+ "end": {
+ "line": 142,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-extensions",
+ "raw": "'after-loading-extensions'",
+ "range": [
+ 5242,
+ 5268
+ ],
+ "loc": {
+ "start": {
+ "line": 143,
+ "column": 16
+ },
+ "end": {
+ "line": 143,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-themes",
+ "raw": "'after-loading-themes'",
+ "range": [
+ 5286,
+ 5308
+ ],
+ "loc": {
+ "start": {
+ "line": 144,
+ "column": 16
+ },
+ "end": {
+ "line": 144,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 4935,
+ 5322
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 19
+ },
+ "end": {
+ "line": 145,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 5341,
+ 5345
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 17
+ },
+ "end": {
+ "line": 146,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 5346,
+ 5353
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 22
+ },
+ "end": {
+ "line": 146,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 5341,
+ 5353
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 17
+ },
+ "end": {
+ "line": 146,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 5354,
+ 5356
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 30
+ },
+ "end": {
+ "line": 146,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 5341,
+ 5357
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 17
+ },
+ "end": {
+ "line": 146,
+ "column": 33
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 5336,
+ 5357
+ ],
+ "loc": {
+ "start": {
+ "line": 146,
+ "column": 12
+ },
+ "end": {
+ "line": 146,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 4924,
+ 5367
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 147,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 4924,
+ 5368
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 147,
+ "column": 10
+ }
}
},
{
@@ -6354,16 +11769,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2798,
- 2802
+ 5378,
+ 5382
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 8
},
"end": {
- "line": 89,
+ "line": 149,
"column": 12
}
}
@@ -6372,31 +11787,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 2803,
- 2814
+ 5383,
+ 5394
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 13
},
"end": {
- "line": 89,
+ "line": 149,
"column": 24
}
}
},
"range": [
- 2798,
- 2814
+ 5378,
+ 5394
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 8
},
"end": {
- "line": 89,
+ "line": 149,
"column": 24
}
}
@@ -6406,62 +11821,62 @@
"value": true,
"raw": "true",
"range": [
- 2817,
- 2821
+ 5397,
+ 5401
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 27
},
"end": {
- "line": 89,
+ "line": 149,
"column": 31
}
}
},
"range": [
- 2798,
- 2821
+ 5378,
+ 5401
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 8
},
"end": {
- "line": 89,
+ "line": 149,
"column": 31
}
}
},
"range": [
- 2798,
- 2822
+ 5378,
+ 5402
],
"loc": {
"start": {
- "line": 89,
+ "line": 149,
"column": 8
},
"end": {
- "line": 89,
+ "line": 149,
"column": 32
}
}
}
],
"range": [
- 1505,
- 2828
+ 2692,
+ 5408
],
"loc": {
"start": {
- "line": 49,
+ "line": 76,
"column": 10
},
"end": {
- "line": 90,
+ "line": 150,
"column": 5
}
}
@@ -6469,16 +11884,16 @@
"generator": false,
"expression": false,
"range": [
- 1503,
- 2828
+ 2690,
+ 5408
],
"loc": {
"start": {
- "line": 49,
+ "line": 76,
"column": 8
},
"end": {
- "line": 90,
+ "line": 150,
"column": 5
}
}
@@ -6486,16 +11901,16 @@
"kind": "method",
"computed": false,
"range": [
- 1499,
- 2828
+ 2686,
+ 5408
],
"loc": {
"start": {
- "line": 49,
+ "line": 76,
"column": 4
},
"end": {
- "line": 90,
+ "line": 150,
"column": 5
}
},
@@ -6507,16 +11922,16 @@
"type": "Identifier",
"name": "message",
"range": [
- 2834,
- 2841
+ 5414,
+ 5421
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 4
},
"end": {
- "line": 92,
+ "line": 152,
"column": 11
}
}
@@ -6531,16 +11946,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 2842,
- 2843
+ 5422,
+ 5423
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 12
},
"end": {
- "line": 92,
+ "line": 152,
"column": 13
}
}
@@ -6550,31 +11965,31 @@
"value": "",
"raw": "''",
"range": [
- 2844,
- 2846
+ 5424,
+ 5426
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 14
},
"end": {
- "line": 92,
+ "line": 152,
"column": 16
}
}
},
"range": [
- 2842,
- 2846
+ 5422,
+ 5426
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 12
},
"end": {
- "line": 92,
+ "line": 152,
"column": 16
}
}
@@ -6596,16 +12011,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2861,
- 2865
+ 5441,
+ 5445
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 12
},
"end": {
- "line": 93,
+ "line": 153,
"column": 16
}
}
@@ -6614,63 +12029,63 @@
"type": "Identifier",
"name": "isEnabled",
"range": [
- 2866,
- 2875
+ 5446,
+ 5455
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 17
},
"end": {
- "line": 93,
+ "line": 153,
"column": 26
}
}
},
"range": [
- 2861,
- 2875
+ 5441,
+ 5455
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 12
},
"end": {
- "line": 93,
+ "line": 153,
"column": 26
}
}
},
"arguments": [],
"range": [
- 2861,
- 2877
+ 5441,
+ 5457
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 12
},
"end": {
- "line": 93,
+ "line": 153,
"column": 28
}
}
},
"prefix": true,
"range": [
- 2860,
- 2877
+ 5440,
+ 5457
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 11
},
"end": {
- "line": 93,
+ "line": 153,
"column": 28
}
}
@@ -6682,48 +12097,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 2892,
- 2899
+ 5472,
+ 5479
],
"loc": {
"start": {
- "line": 94,
+ "line": 154,
"column": 12
},
"end": {
- "line": 94,
+ "line": 154,
"column": 19
}
}
}
],
"range": [
- 2878,
- 2909
+ 5458,
+ 5489
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 29
},
"end": {
- "line": 95,
+ "line": 155,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2857,
- 2909
+ 5437,
+ 5489
],
"loc": {
"start": {
- "line": 93,
+ "line": 153,
"column": 8
},
"end": {
- "line": 95,
+ "line": 155,
"column": 9
}
}
@@ -6736,16 +12151,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2922,
- 2926
+ 5502,
+ 5506
],
"loc": {
"start": {
- "line": 97,
+ "line": 157,
"column": 11
},
"end": {
- "line": 97,
+ "line": 157,
"column": 15
}
}
@@ -6754,31 +12169,31 @@
"type": "Identifier",
"name": "onBeforeShowMsg",
"range": [
- 2927,
- 2942
+ 5507,
+ 5522
],
"loc": {
"start": {
- "line": 97,
+ "line": 157,
"column": 16
},
"end": {
- "line": 97,
+ "line": 157,
"column": 31
}
}
},
"range": [
- 2922,
- 2942
+ 5502,
+ 5522
],
"loc": {
"start": {
- "line": 97,
+ "line": 157,
"column": 11
},
"end": {
- "line": 97,
+ "line": 157,
"column": 31
}
}
@@ -6799,16 +12214,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2957,
- 2961
+ 5537,
+ 5541
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 12
},
"end": {
- "line": 98,
+ "line": 158,
"column": 16
}
}
@@ -6817,31 +12232,31 @@
"type": "Identifier",
"name": "onBeforeShowMsg",
"range": [
- 2962,
- 2977
+ 5542,
+ 5557
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 17
},
"end": {
- "line": 98,
+ "line": 158,
"column": 32
}
}
},
"range": [
- 2957,
- 2977
+ 5537,
+ 5557
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 12
},
"end": {
- "line": 98,
+ "line": 158,
"column": 32
}
}
@@ -6850,31 +12265,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 2978,
- 2982
+ 5558,
+ 5562
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 33
},
"end": {
- "line": 98,
+ "line": 158,
"column": 37
}
}
},
"range": [
- 2957,
- 2982
+ 5537,
+ 5562
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 12
},
"end": {
- "line": 98,
+ "line": 158,
"column": 37
}
}
@@ -6885,16 +12300,16 @@
"value": null,
"raw": "null",
"range": [
- 2983,
- 2987
+ 5563,
+ 5567
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 38
},
"end": {
- "line": 98,
+ "line": 158,
"column": 42
}
}
@@ -6905,16 +12320,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2989,
- 2993
+ 5569,
+ 5573
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 44
},
"end": {
- "line": 98,
+ "line": 158,
"column": 48
}
}
@@ -6923,31 +12338,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 2994,
- 2996
+ 5574,
+ 5576
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 49
},
"end": {
- "line": 98,
+ "line": 158,
"column": 51
}
}
},
"range": [
- 2989,
- 2996
+ 5569,
+ 5576
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 44
},
"end": {
- "line": 98,
+ "line": 158,
"column": 51
}
}
@@ -6956,79 +12371,79 @@
"type": "Identifier",
"name": "t",
"range": [
- 2998,
- 2999
+ 5578,
+ 5579
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 53
},
"end": {
- "line": 98,
+ "line": 158,
"column": 54
}
}
}
],
"range": [
- 2957,
- 3000
+ 5537,
+ 5580
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 12
},
"end": {
- "line": 98,
+ "line": 158,
"column": 55
}
}
},
"range": [
- 2957,
- 3001
+ 5537,
+ 5581
],
"loc": {
"start": {
- "line": 98,
+ "line": 158,
"column": 12
},
"end": {
- "line": 98,
+ "line": 158,
"column": 56
}
}
}
],
"range": [
- 2943,
- 3011
+ 5523,
+ 5591
],
"loc": {
"start": {
- "line": 97,
+ "line": 157,
"column": 32
},
"end": {
- "line": 99,
+ "line": 159,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2919,
- 3011
+ 5499,
+ 5591
],
"loc": {
"start": {
- "line": 97,
+ "line": 157,
"column": 8
},
"end": {
- "line": 99,
+ "line": 159,
"column": 9
}
}
@@ -7042,16 +12457,16 @@
"type": "Identifier",
"name": "d",
"range": [
- 3025,
- 3026
+ 5605,
+ 5606
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 12
},
"end": {
- "line": 101,
+ "line": 161,
"column": 13
}
}
@@ -7065,16 +12480,16 @@
"type": "Identifier",
"name": "t",
"range": [
- 3029,
- 3030
+ 5609,
+ 5610
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 16
},
"end": {
- "line": 101,
+ "line": 161,
"column": 17
}
}
@@ -7084,31 +12499,31 @@
"value": "",
"raw": "''",
"range": [
- 3033,
- 3035
+ 5613,
+ 5615
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 20
},
"end": {
- "line": 101,
+ "line": 161,
"column": 22
}
}
},
"range": [
- 3029,
- 3035
+ 5609,
+ 5615
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 16
},
"end": {
- "line": 101,
+ "line": 161,
"column": 22
}
}
@@ -7119,16 +12534,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3038,
- 3042
+ 5618,
+ 5622
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 25
},
"end": {
- "line": 101,
+ "line": 161,
"column": 29
}
}
@@ -7137,31 +12552,31 @@
"type": "Identifier",
"name": "statusBarCloseDelay",
"range": [
- 3043,
- 3062
+ 5623,
+ 5642
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 30
},
"end": {
- "line": 101,
+ "line": 161,
"column": 49
}
}
},
"range": [
- 3038,
- 3062
+ 5618,
+ 5642
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 25
},
"end": {
- "line": 101,
+ "line": 161,
"column": 49
}
}
@@ -7171,63 +12586,63 @@
"value": 1,
"raw": "1",
"range": [
- 3065,
- 3066
+ 5645,
+ 5646
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 52
},
"end": {
- "line": 101,
+ "line": 161,
"column": 53
}
}
},
"range": [
- 3029,
- 3066
+ 5609,
+ 5646
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 16
},
"end": {
- "line": 101,
+ "line": 161,
"column": 53
}
}
},
"range": [
- 3025,
- 3066
+ 5605,
+ 5646
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 12
},
"end": {
- "line": 101,
+ "line": 161,
"column": 53
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 3021,
- 3067
+ 5601,
+ 5647
],
"loc": {
"start": {
- "line": 101,
+ "line": 161,
"column": 8
},
"end": {
- "line": 101,
+ "line": 161,
"column": 54
}
}
@@ -7243,16 +12658,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 3076,
- 3082
+ 5656,
+ 5662
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 8
},
"end": {
- "line": 102,
+ "line": 162,
"column": 14
}
}
@@ -7261,31 +12676,31 @@
"type": "Identifier",
"name": "setTimeout",
"range": [
- 3083,
- 3093
+ 5663,
+ 5673
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 15
},
"end": {
- "line": 102,
+ "line": 162,
"column": 25
}
}
},
"range": [
- 3076,
- 3093
+ 5656,
+ 5673
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 8
},
"end": {
- "line": 102,
+ "line": 162,
"column": 25
}
}
@@ -7298,6 +12713,133 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 5698,
+ 5702
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 16
+ },
+ "end": {
+ "line": 163,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 5703,
+ 5714
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 21
+ },
+ "end": {
+ "line": 163,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 5698,
+ 5714
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 16
+ },
+ "end": {
+ "line": 163,
+ "column": 32
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 5697,
+ 5714
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 15
+ },
+ "end": {
+ "line": 163,
+ "column": 32
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 5733,
+ 5740
+ ],
+ "loc": {
+ "start": {
+ "line": 164,
+ "column": 16
+ },
+ "end": {
+ "line": 164,
+ "column": 23
+ }
+ }
+ }
+ ],
+ "range": [
+ 5715,
+ 5754
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 33
+ },
+ "end": {
+ "line": 165,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 5694,
+ 5754
+ ],
+ "loc": {
+ "start": {
+ "line": 163,
+ "column": 12
+ },
+ "end": {
+ "line": 165,
+ "column": 13
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -7312,16 +12854,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3114,
- 3118
+ 5767,
+ 5771
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 12
},
"end": {
- "line": 103,
+ "line": 166,
"column": 16
}
}
@@ -7330,31 +12872,31 @@
"type": "Identifier",
"name": "statusBarSpan",
"range": [
- 3119,
- 3132
+ 5772,
+ 5785
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 17
},
"end": {
- "line": 103,
+ "line": 166,
"column": 30
}
}
},
"range": [
- 3114,
- 3132
+ 5767,
+ 5785
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 12
},
"end": {
- "line": 103,
+ "line": 166,
"column": 30
}
}
@@ -7363,31 +12905,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3133,
- 3142
+ 5786,
+ 5795
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 31
},
"end": {
- "line": 103,
+ "line": 166,
"column": 40
}
}
},
"range": [
- 3114,
- 3142
+ 5767,
+ 5795
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 12
},
"end": {
- "line": 103,
+ "line": 166,
"column": 40
}
}
@@ -7396,46 +12938,46 @@
"type": "Identifier",
"name": "t",
"range": [
- 3145,
- 3146
+ 5798,
+ 5799
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 43
},
"end": {
- "line": 103,
+ "line": 166,
"column": 44
}
}
},
"range": [
- 3114,
- 3146
+ 5767,
+ 5799
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 12
},
"end": {
- "line": 103,
+ "line": 166,
"column": 44
}
}
},
"range": [
- 3114,
- 3147
+ 5767,
+ 5800
],
"loc": {
"start": {
- "line": 103,
+ "line": 166,
"column": 12
},
"end": {
- "line": 103,
+ "line": 166,
"column": 45
}
}
@@ -7448,16 +12990,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3163,
- 3167
+ 5816,
+ 5820
],
"loc": {
"start": {
- "line": 104,
+ "line": 167,
"column": 15
},
"end": {
- "line": 104,
+ "line": 167,
"column": 19
}
}
@@ -7466,31 +13008,31 @@
"type": "Identifier",
"name": "onAfterShowMsg",
"range": [
- 3168,
- 3182
+ 5821,
+ 5835
],
"loc": {
"start": {
- "line": 104,
+ "line": 167,
"column": 20
},
"end": {
- "line": 104,
+ "line": 167,
"column": 34
}
}
},
"range": [
- 3163,
- 3182
+ 5816,
+ 5835
],
"loc": {
"start": {
- "line": 104,
+ "line": 167,
"column": 15
},
"end": {
- "line": 104,
+ "line": 167,
"column": 34
}
}
@@ -7511,16 +13053,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3201,
- 3205
+ 5854,
+ 5858
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 16
},
"end": {
- "line": 105,
+ "line": 168,
"column": 20
}
}
@@ -7529,31 +13071,31 @@
"type": "Identifier",
"name": "onAfterShowMsg",
"range": [
- 3206,
- 3220
+ 5859,
+ 5873
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 21
},
"end": {
- "line": 105,
+ "line": 168,
"column": 35
}
}
},
"range": [
- 3201,
- 3220
+ 5854,
+ 5873
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 16
},
"end": {
- "line": 105,
+ "line": 168,
"column": 35
}
}
@@ -7562,31 +13104,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 3221,
- 3225
+ 5874,
+ 5878
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 36
},
"end": {
- "line": 105,
+ "line": 168,
"column": 40
}
}
},
"range": [
- 3201,
- 3225
+ 5854,
+ 5878
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 16
},
"end": {
- "line": 105,
+ "line": 168,
"column": 40
}
}
@@ -7597,16 +13139,16 @@
"value": null,
"raw": "null",
"range": [
- 3226,
- 3230
+ 5879,
+ 5883
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 41
},
"end": {
- "line": 105,
+ "line": 168,
"column": 45
}
}
@@ -7617,16 +13159,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3232,
- 3236
+ 5885,
+ 5889
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 47
},
"end": {
- "line": 105,
+ "line": 168,
"column": 51
}
}
@@ -7635,31 +13177,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 3237,
- 3239
+ 5890,
+ 5892
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 52
},
"end": {
- "line": 105,
+ "line": 168,
"column": 54
}
}
},
"range": [
- 3232,
- 3239
+ 5885,
+ 5892
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 47
},
"end": {
- "line": 105,
+ "line": 168,
"column": 54
}
}
@@ -7668,95 +13210,95 @@
"type": "Identifier",
"name": "t",
"range": [
- 3241,
- 3242
+ 5894,
+ 5895
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 56
},
"end": {
- "line": 105,
+ "line": 168,
"column": 57
}
}
}
],
"range": [
- 3201,
- 3243
+ 5854,
+ 5896
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 16
},
"end": {
- "line": 105,
+ "line": 168,
"column": 58
}
}
},
"range": [
- 3201,
- 3244
+ 5854,
+ 5897
],
"loc": {
"start": {
- "line": 105,
+ "line": 168,
"column": 16
},
"end": {
- "line": 105,
+ "line": 168,
"column": 59
}
}
}
],
"range": [
- 3183,
- 3258
+ 5836,
+ 5911
],
"loc": {
"start": {
- "line": 104,
+ "line": 167,
"column": 35
},
"end": {
- "line": 106,
+ "line": 169,
"column": 13
}
}
},
"alternate": null,
"range": [
- 3160,
- 3258
+ 5813,
+ 5911
],
"loc": {
"start": {
- "line": 104,
+ "line": 167,
"column": 12
},
"end": {
- "line": 106,
+ "line": 169,
"column": 13
}
}
}
],
"range": [
- 3100,
- 3268
+ 5680,
+ 5921
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 32
},
"end": {
- "line": 107,
+ "line": 170,
"column": 9
}
}
@@ -7764,16 +13306,16 @@
"generator": false,
"expression": false,
"range": [
- 3094,
- 3268
+ 5674,
+ 5921
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 26
},
"end": {
- "line": 107,
+ "line": 170,
"column": 9
}
}
@@ -7782,63 +13324,63 @@
"type": "Identifier",
"name": "d",
"range": [
- 3270,
- 3271
+ 5923,
+ 5924
],
"loc": {
"start": {
- "line": 107,
+ "line": 170,
"column": 11
},
"end": {
- "line": 107,
+ "line": 170,
"column": 12
}
}
}
],
"range": [
- 3076,
- 3272
+ 5656,
+ 5925
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 8
},
"end": {
- "line": 107,
+ "line": 170,
"column": 13
}
}
},
"range": [
- 3076,
- 3273
+ 5656,
+ 5926
],
"loc": {
"start": {
- "line": 102,
+ "line": 162,
"column": 8
},
"end": {
- "line": 107,
+ "line": 170,
"column": 14
}
}
}
],
"range": [
- 2847,
- 3279
+ 5427,
+ 5932
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 17
},
"end": {
- "line": 108,
+ "line": 171,
"column": 5
}
}
@@ -7846,16 +13388,16 @@
"generator": false,
"expression": false,
"range": [
- 2841,
- 3279
+ 5421,
+ 5932
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 11
},
"end": {
- "line": 108,
+ "line": 171,
"column": 5
}
}
@@ -7863,16 +13405,16 @@
"kind": "method",
"computed": false,
"range": [
- 2834,
- 3279
+ 5414,
+ 5932
],
"loc": {
"start": {
- "line": 92,
+ "line": 152,
"column": 4
},
"end": {
- "line": 108,
+ "line": 171,
"column": 5
}
},
@@ -7884,16 +13426,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 3285,
- 3292
+ 5938,
+ 5945
],
"loc": {
"start": {
- "line": 110,
+ "line": 173,
"column": 4
},
"end": {
- "line": 110,
+ "line": 173,
"column": 11
}
}
@@ -7916,16 +13458,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3308,
- 3312
+ 5961,
+ 5965
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 12
},
"end": {
- "line": 111,
+ "line": 174,
"column": 16
}
}
@@ -7934,47 +13476,47 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 3313,
- 3324
+ 5966,
+ 5977
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 17
},
"end": {
- "line": 111,
+ "line": 174,
"column": 28
}
}
},
"range": [
- 3308,
- 3324
+ 5961,
+ 5977
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 12
},
"end": {
- "line": 111,
+ "line": 174,
"column": 28
}
}
},
"prefix": true,
"range": [
- 3307,
- 3324
+ 5960,
+ 5977
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 11
},
"end": {
- "line": 111,
+ "line": 174,
"column": 28
}
}
@@ -7986,52 +13528,160 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 3339,
- 3346
+ 5992,
+ 5999
],
"loc": {
"start": {
- "line": 112,
+ "line": 175,
"column": 12
},
"end": {
- "line": 112,
+ "line": 175,
"column": 19
}
}
}
],
"range": [
- 3325,
- 3356
+ 5978,
+ 6009
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 29
},
"end": {
- "line": 113,
+ "line": 176,
"column": 9
}
}
},
"alternate": null,
"range": [
- 3304,
- 3356
+ 5957,
+ 6009
],
"loc": {
"start": {
- "line": 111,
+ "line": 174,
"column": 8
},
"end": {
- "line": 113,
+ "line": 176,
"column": 9
}
}
},
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6023,
+ 6030
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 12
+ },
+ "end": {
+ "line": 178,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6033,
+ 6037
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 22
+ },
+ "end": {
+ "line": 178,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6038,
+ 6045
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 27
+ },
+ "end": {
+ "line": 178,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 6033,
+ 6045
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 22
+ },
+ "end": {
+ "line": 178,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 6023,
+ 6045
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 12
+ },
+ "end": {
+ "line": 178,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 6019,
+ 6046
+ ],
+ "loc": {
+ "start": {
+ "line": 178,
+ "column": 8
+ },
+ "end": {
+ "line": 178,
+ "column": 35
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -8046,16 +13696,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3366,
- 3370
+ 6056,
+ 6060
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 8
},
"end": {
- "line": 115,
+ "line": 180,
"column": 12
}
}
@@ -8064,31 +13714,31 @@
"type": "Identifier",
"name": "statusBarDiv",
"range": [
- 3371,
- 3383
+ 6061,
+ 6073
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 13
},
"end": {
- "line": 115,
+ "line": 180,
"column": 25
}
}
},
"range": [
- 3366,
- 3383
+ 6056,
+ 6073
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 8
},
"end": {
- "line": 115,
+ "line": 180,
"column": 25
}
}
@@ -8097,31 +13747,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 3384,
- 3393
+ 6074,
+ 6083
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 26
},
"end": {
- "line": 115,
+ "line": 180,
"column": 35
}
}
},
"range": [
- 3366,
- 3393
+ 6056,
+ 6083
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 8
},
"end": {
- "line": 115,
+ "line": 180,
"column": 35
}
}
@@ -8131,190 +13781,299 @@
"value": "",
"raw": "''",
"range": [
- 3396,
- 3398
+ 6086,
+ 6088
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 38
},
"end": {
- "line": 115,
+ "line": 180,
"column": 40
}
}
},
"range": [
- 3366,
- 3398
+ 6056,
+ 6088
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 8
},
"end": {
- "line": 115,
+ "line": 180,
"column": 40
}
}
},
"range": [
- 3366,
- 3399
+ 6056,
+ 6089
],
"loc": {
"start": {
- "line": 115,
+ "line": 180,
"column": 8
},
"end": {
- "line": 115,
+ "line": 180,
"column": 41
}
}
},
{
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "Dom",
+ "type": "ThisExpression",
"range": [
- 3408,
- 3411
+ 6102,
+ 6106
],
"loc": {
"start": {
- "line": 116,
- "column": 8
+ "line": 181,
+ "column": 12
},
"end": {
- "line": 116,
- "column": 11
+ "line": 181,
+ "column": 16
}
}
},
"property": {
"type": "Identifier",
- "name": "remove",
+ "name": "statusBarTgtId",
"range": [
- 3412,
- 3418
+ 6107,
+ 6121
],
"loc": {
"start": {
- "line": 116,
- "column": 12
+ "line": 181,
+ "column": 17
},
"end": {
- "line": 116,
- "column": 18
+ "line": 181,
+ "column": 31
}
}
},
"range": [
- 3408,
- 3418
+ 6102,
+ 6121
],
"loc": {
"start": {
- "line": 116,
- "column": 8
+ "line": 181,
+ "column": 12
},
"end": {
- "line": 116,
- "column": 18
+ "line": 181,
+ "column": 31
}
}
},
- "arguments": [
+ "prefix": true,
+ "range": [
+ 6101,
+ 6121
+ ],
+ "loc": {
+ "start": {
+ "line": 181,
+ "column": 11
+ },
+ "end": {
+ "line": 181,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
{
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3419,
- 3423
- ],
- "loc": {
- "start": {
- "line": 116,
- "column": 19
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 6136,
+ 6139
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 12
+ },
+ "end": {
+ "line": 182,
+ "column": 15
+ }
+ }
},
- "end": {
- "line": 116,
- "column": 23
+ "property": {
+ "type": "Identifier",
+ "name": "remove",
+ "range": [
+ 6140,
+ 6146
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 16
+ },
+ "end": {
+ "line": 182,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 6136,
+ 6146
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 12
+ },
+ "end": {
+ "line": 182,
+ "column": 22
+ }
}
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBarDiv",
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6147,
+ 6151
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 23
+ },
+ "end": {
+ "line": 182,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "statusBarDiv",
+ "range": [
+ 6152,
+ 6164
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 28
+ },
+ "end": {
+ "line": 182,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 6147,
+ 6164
+ ],
+ "loc": {
+ "start": {
+ "line": 182,
+ "column": 23
+ },
+ "end": {
+ "line": 182,
+ "column": 40
+ }
+ }
+ }
+ ],
"range": [
- 3424,
- 3436
+ 6136,
+ 6165
],
"loc": {
"start": {
- "line": 116,
- "column": 24
+ "line": 182,
+ "column": 12
},
"end": {
- "line": 116,
- "column": 36
+ "line": 182,
+ "column": 41
}
}
},
"range": [
- 3419,
- 3436
+ 6136,
+ 6166
],
"loc": {
"start": {
- "line": 116,
- "column": 19
+ "line": 182,
+ "column": 12
},
"end": {
- "line": 116,
- "column": 36
+ "line": 182,
+ "column": 42
}
}
}
],
"range": [
- 3408,
- 3437
+ 6122,
+ 6176
],
"loc": {
"start": {
- "line": 116,
- "column": 8
+ "line": 181,
+ "column": 32
},
"end": {
- "line": 116,
- "column": 37
+ "line": 183,
+ "column": 9
}
}
},
+ "alternate": null,
"range": [
- 3408,
- 3438
+ 6098,
+ 6176
],
"loc": {
"start": {
- "line": 116,
+ "line": 181,
"column": 8
},
"end": {
- "line": 116,
- "column": 38
+ "line": 183,
+ "column": 9
}
}
},
@@ -8329,16 +14088,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3447,
- 3451
+ 6185,
+ 6189
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 8
},
"end": {
- "line": 117,
+ "line": 184,
"column": 12
}
}
@@ -8347,31 +14106,31 @@
"type": "Identifier",
"name": "statusBarSpan",
"range": [
- 3452,
- 3465
+ 6190,
+ 6203
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 13
},
"end": {
- "line": 117,
+ "line": 184,
"column": 26
}
}
},
"range": [
- 3447,
- 3465
+ 6185,
+ 6203
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 8
},
"end": {
- "line": 117,
+ "line": 184,
"column": 26
}
}
@@ -8381,46 +14140,46 @@
"value": null,
"raw": "null",
"range": [
- 3468,
- 3472
+ 6206,
+ 6210
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 29
},
"end": {
- "line": 117,
+ "line": 184,
"column": 33
}
}
},
"range": [
- 3447,
- 3472
+ 6185,
+ 6210
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 8
},
"end": {
- "line": 117,
+ "line": 184,
"column": 33
}
}
},
"range": [
- 3447,
- 3473
+ 6185,
+ 6211
],
"loc": {
"start": {
- "line": 117,
+ "line": 184,
"column": 8
},
"end": {
- "line": 117,
+ "line": 184,
"column": 34
}
}
@@ -8436,16 +14195,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3482,
- 3486
+ 6220,
+ 6224
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 8
},
"end": {
- "line": 118,
+ "line": 185,
"column": 12
}
}
@@ -8454,31 +14213,31 @@
"type": "Identifier",
"name": "statusBarSpanText",
"range": [
- 3487,
- 3504
+ 6225,
+ 6242
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 13
},
"end": {
- "line": 118,
+ "line": 185,
"column": 30
}
}
},
"range": [
- 3482,
- 3504
+ 6220,
+ 6242
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 8
},
"end": {
- "line": 118,
+ "line": 185,
"column": 30
}
}
@@ -8488,46 +14247,46 @@
"value": null,
"raw": "null",
"range": [
- 3507,
- 3511
+ 6245,
+ 6249
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 33
},
"end": {
- "line": 118,
+ "line": 185,
"column": 37
}
}
},
"range": [
- 3482,
- 3511
+ 6220,
+ 6249
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 8
},
"end": {
- "line": 118,
+ "line": 185,
"column": 37
}
}
},
"range": [
- 3482,
- 3512
+ 6220,
+ 6250
],
"loc": {
"start": {
- "line": 118,
+ "line": 185,
"column": 8
},
"end": {
- "line": 118,
+ "line": 185,
"column": 38
}
}
@@ -8543,16 +14302,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3521,
- 3525
+ 6259,
+ 6263
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 8
},
"end": {
- "line": 119,
+ "line": 186,
"column": 12
}
}
@@ -8561,31 +14320,31 @@
"type": "Identifier",
"name": "statusBarDiv",
"range": [
- 3526,
- 3538
+ 6264,
+ 6276
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 13
},
"end": {
- "line": 119,
+ "line": 186,
"column": 25
}
}
},
"range": [
- 3521,
- 3538
+ 6259,
+ 6276
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 8
},
"end": {
- "line": 119,
+ "line": 186,
"column": 25
}
}
@@ -8595,48 +14354,2946 @@
"value": null,
"raw": "null",
"range": [
- 3541,
- 3545
+ 6279,
+ 6283
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 28
},
"end": {
- "line": 119,
+ "line": 186,
"column": 32
}
}
},
"range": [
- 3521,
- 3545
+ 6259,
+ 6283
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 8
},
"end": {
- "line": 119,
+ "line": 186,
"column": 32
}
}
},
"range": [
- 3521,
- 3546
+ 6259,
+ 6284
],
"loc": {
"start": {
- "line": 119,
+ "line": 186,
"column": 8
},
"end": {
- "line": 119,
+ "line": 186,
"column": 33
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 6294,
+ 6318
+ ],
+ "loc": {
+ "start": {
+ "line": 188,
+ "column": 8
+ },
+ "end": {
+ "line": 188,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6327,
+ 6334
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 8
+ },
+ "end": {
+ "line": 189,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6335,
+ 6338
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 16
+ },
+ "end": {
+ "line": 189,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6327,
+ 6338
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 8
+ },
+ "end": {
+ "line": 189,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 6340,
+ 6358
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 21
+ },
+ "end": {
+ "line": 189,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 6339,
+ 6359
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 20
+ },
+ "end": {
+ "line": 189,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6366,
+ 6370
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 47
+ },
+ "end": {
+ "line": 189,
+ "column": 51
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6371,
+ 6378
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 52
+ },
+ "end": {
+ "line": 189,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 6366,
+ 6378
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 47
+ },
+ "end": {
+ "line": 189,
+ "column": 59
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6379,
+ 6383
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 60
+ },
+ "end": {
+ "line": 189,
+ "column": 64
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgFilter",
+ "range": [
+ 6384,
+ 6393
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 65
+ },
+ "end": {
+ "line": 189,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 6379,
+ 6393
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 60
+ },
+ "end": {
+ "line": 189,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 6366,
+ 6394
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 47
+ },
+ "end": {
+ "line": 189,
+ "column": 75
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6361,
+ 6394
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 42
+ },
+ "end": {
+ "line": 189,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 6327,
+ 6395
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 8
+ },
+ "end": {
+ "line": 189,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 6327,
+ 6396
+ ],
+ "loc": {
+ "start": {
+ "line": 189,
+ "column": 8
+ },
+ "end": {
+ "line": 189,
+ "column": 77
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 6294,
+ 6318
+ ],
+ "loc": {
+ "start": {
+ "line": 188,
+ "column": 8
+ },
+ "end": {
+ "line": 188,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6405,
+ 6412
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 8
+ },
+ "end": {
+ "line": 190,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6413,
+ 6416
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 16
+ },
+ "end": {
+ "line": 190,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6405,
+ 6416
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 8
+ },
+ "end": {
+ "line": 190,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-populating-filter",
+ "raw": "'before-populating-filter'",
+ "range": [
+ 6418,
+ 6444
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 21
+ },
+ "end": {
+ "line": 190,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 6417,
+ 6445
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 20
+ },
+ "end": {
+ "line": 190,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6464,
+ 6468
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 17
+ },
+ "end": {
+ "line": 191,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6469,
+ 6476
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 22
+ },
+ "end": {
+ "line": 191,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 6464,
+ 6476
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 17
+ },
+ "end": {
+ "line": 191,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6477,
+ 6481
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 30
+ },
+ "end": {
+ "line": 191,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgPopulate",
+ "range": [
+ 6482,
+ 6493
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 35
+ },
+ "end": {
+ "line": 191,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 6477,
+ 6493
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 30
+ },
+ "end": {
+ "line": 191,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 6464,
+ 6494
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 17
+ },
+ "end": {
+ "line": 191,
+ "column": 47
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6459,
+ 6494
+ ],
+ "loc": {
+ "start": {
+ "line": 191,
+ "column": 12
+ },
+ "end": {
+ "line": 191,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 6405,
+ 6495
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 8
+ },
+ "end": {
+ "line": 191,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 6405,
+ 6496
+ ],
+ "loc": {
+ "start": {
+ "line": 190,
+ "column": 8
+ },
+ "end": {
+ "line": 191,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6505,
+ 6512
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 8
+ },
+ "end": {
+ "line": 192,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6513,
+ 6516
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 16
+ },
+ "end": {
+ "line": 192,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6505,
+ 6516
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 8
+ },
+ "end": {
+ "line": 192,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-changing-page",
+ "raw": "'before-changing-page'",
+ "range": [
+ 6518,
+ 6540
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 21
+ },
+ "end": {
+ "line": 192,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 6517,
+ 6541
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 20
+ },
+ "end": {
+ "line": 192,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6560,
+ 6564
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 17
+ },
+ "end": {
+ "line": 193,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6565,
+ 6572
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 22
+ },
+ "end": {
+ "line": 193,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 6560,
+ 6572
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 17
+ },
+ "end": {
+ "line": 193,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6573,
+ 6577
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 30
+ },
+ "end": {
+ "line": 193,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangePage",
+ "range": [
+ 6578,
+ 6591
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 35
+ },
+ "end": {
+ "line": 193,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 6573,
+ 6591
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 30
+ },
+ "end": {
+ "line": 193,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 6560,
+ 6592
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 17
+ },
+ "end": {
+ "line": 193,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6555,
+ 6592
+ ],
+ "loc": {
+ "start": {
+ "line": 193,
+ "column": 12
+ },
+ "end": {
+ "line": 193,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 6505,
+ 6593
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 8
+ },
+ "end": {
+ "line": 193,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 6505,
+ 6594
+ ],
+ "loc": {
+ "start": {
+ "line": 192,
+ "column": 8
+ },
+ "end": {
+ "line": 193,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6603,
+ 6610
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 8
+ },
+ "end": {
+ "line": 194,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6611,
+ 6614
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 16
+ },
+ "end": {
+ "line": 194,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6603,
+ 6614
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 8
+ },
+ "end": {
+ "line": 194,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-clearing-filters",
+ "raw": "'before-clearing-filters'",
+ "range": [
+ 6616,
+ 6641
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 21
+ },
+ "end": {
+ "line": 194,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 6615,
+ 6642
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 20
+ },
+ "end": {
+ "line": 194,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6661,
+ 6665
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 17
+ },
+ "end": {
+ "line": 195,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6666,
+ 6673
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 22
+ },
+ "end": {
+ "line": 195,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 6661,
+ 6673
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 17
+ },
+ "end": {
+ "line": 195,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6674,
+ 6678
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 30
+ },
+ "end": {
+ "line": 195,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgClear",
+ "range": [
+ 6679,
+ 6687
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 35
+ },
+ "end": {
+ "line": 195,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 6674,
+ 6687
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 30
+ },
+ "end": {
+ "line": 195,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 6661,
+ 6688
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 17
+ },
+ "end": {
+ "line": 195,
+ "column": 44
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6656,
+ 6688
+ ],
+ "loc": {
+ "start": {
+ "line": 195,
+ "column": 12
+ },
+ "end": {
+ "line": 195,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 6603,
+ 6689
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 8
+ },
+ "end": {
+ "line": 195,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 6603,
+ 6690
+ ],
+ "loc": {
+ "start": {
+ "line": 194,
+ "column": 8
+ },
+ "end": {
+ "line": 195,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6699,
+ 6706
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 8
+ },
+ "end": {
+ "line": 196,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6707,
+ 6710
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 16
+ },
+ "end": {
+ "line": 196,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6699,
+ 6710
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 8
+ },
+ "end": {
+ "line": 196,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-changing-results-per-page",
+ "raw": "'before-changing-results-per-page'",
+ "range": [
+ 6712,
+ 6746
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 21
+ },
+ "end": {
+ "line": 196,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 6711,
+ 6747
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 20
+ },
+ "end": {
+ "line": 196,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6766,
+ 6770
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 17
+ },
+ "end": {
+ "line": 197,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6771,
+ 6778
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 22
+ },
+ "end": {
+ "line": 197,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 6766,
+ 6778
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 17
+ },
+ "end": {
+ "line": 197,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6779,
+ 6783
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 30
+ },
+ "end": {
+ "line": 197,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgChangeResults",
+ "range": [
+ 6784,
+ 6800
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 35
+ },
+ "end": {
+ "line": 197,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 6779,
+ 6800
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 30
+ },
+ "end": {
+ "line": 197,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 6766,
+ 6801
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 17
+ },
+ "end": {
+ "line": 197,
+ "column": 52
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6761,
+ 6801
+ ],
+ "loc": {
+ "start": {
+ "line": 197,
+ "column": 12
+ },
+ "end": {
+ "line": 197,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 6699,
+ 6802
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 8
+ },
+ "end": {
+ "line": 197,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 6699,
+ 6803
+ ],
+ "loc": {
+ "start": {
+ "line": 196,
+ "column": 8
+ },
+ "end": {
+ "line": 197,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6812,
+ 6819
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 8
+ },
+ "end": {
+ "line": 198,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6820,
+ 6823
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 16
+ },
+ "end": {
+ "line": 198,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6812,
+ 6823
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 8
+ },
+ "end": {
+ "line": 198,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page",
+ "raw": "'before-reset-page'",
+ "range": [
+ 6825,
+ 6844
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 21
+ },
+ "end": {
+ "line": 198,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 6824,
+ 6845
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 20
+ },
+ "end": {
+ "line": 198,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6864,
+ 6868
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 12
+ },
+ "end": {
+ "line": 199,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6869,
+ 6876
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 17
+ },
+ "end": {
+ "line": 199,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 6864,
+ 6876
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 12
+ },
+ "end": {
+ "line": 199,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6877,
+ 6881
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 25
+ },
+ "end": {
+ "line": 199,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPage",
+ "range": [
+ 6882,
+ 6894
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 30
+ },
+ "end": {
+ "line": 199,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 6877,
+ 6894
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 25
+ },
+ "end": {
+ "line": 199,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 6864,
+ 6895
+ ],
+ "loc": {
+ "start": {
+ "line": 199,
+ "column": 12
+ },
+ "end": {
+ "line": 199,
+ "column": 43
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6847,
+ 6895
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 43
+ },
+ "end": {
+ "line": 199,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 6812,
+ 6896
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 8
+ },
+ "end": {
+ "line": 199,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 6812,
+ 6897
+ ],
+ "loc": {
+ "start": {
+ "line": 198,
+ "column": 8
+ },
+ "end": {
+ "line": 199,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 6906,
+ 6913
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 8
+ },
+ "end": {
+ "line": 200,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 6914,
+ 6917
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 16
+ },
+ "end": {
+ "line": 200,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 6906,
+ 6917
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 8
+ },
+ "end": {
+ "line": 200,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-reset-page-length",
+ "raw": "'before-reset-page-length'",
+ "range": [
+ 6919,
+ 6945
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 21
+ },
+ "end": {
+ "line": 200,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 6918,
+ 6946
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 20
+ },
+ "end": {
+ "line": 200,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6965,
+ 6969
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 17
+ },
+ "end": {
+ "line": 201,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 6970,
+ 6977
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 22
+ },
+ "end": {
+ "line": 201,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 6965,
+ 6977
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 17
+ },
+ "end": {
+ "line": 201,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 6978,
+ 6982
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 30
+ },
+ "end": {
+ "line": 201,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgResetPageLength",
+ "range": [
+ 6983,
+ 7001
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 35
+ },
+ "end": {
+ "line": 201,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 6978,
+ 7001
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 30
+ },
+ "end": {
+ "line": 201,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 6965,
+ 7002
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 17
+ },
+ "end": {
+ "line": 201,
+ "column": 54
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 6960,
+ 7002
+ ],
+ "loc": {
+ "start": {
+ "line": 201,
+ "column": 12
+ },
+ "end": {
+ "line": 201,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 6906,
+ 7003
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 8
+ },
+ "end": {
+ "line": 201,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 6906,
+ 7004
+ ],
+ "loc": {
+ "start": {
+ "line": 200,
+ "column": 8
+ },
+ "end": {
+ "line": 201,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 7013,
+ 7020
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 8
+ },
+ "end": {
+ "line": 202,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 7021,
+ 7024
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 16
+ },
+ "end": {
+ "line": 202,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 7013,
+ 7024
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 8
+ },
+ "end": {
+ "line": 202,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-loading-extensions",
+ "raw": "'before-loading-extensions'",
+ "range": [
+ 7026,
+ 7053
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 21
+ },
+ "end": {
+ "line": 202,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 7025,
+ 7054
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 20
+ },
+ "end": {
+ "line": 202,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7073,
+ 7077
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 17
+ },
+ "end": {
+ "line": 203,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 7078,
+ 7085
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 22
+ },
+ "end": {
+ "line": 203,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 7073,
+ 7085
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 17
+ },
+ "end": {
+ "line": 203,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7086,
+ 7090
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 30
+ },
+ "end": {
+ "line": 203,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadExtensions",
+ "range": [
+ 7091,
+ 7108
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 35
+ },
+ "end": {
+ "line": 203,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 7086,
+ 7108
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 30
+ },
+ "end": {
+ "line": 203,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 7073,
+ 7109
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 17
+ },
+ "end": {
+ "line": 203,
+ "column": 53
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 7068,
+ 7109
+ ],
+ "loc": {
+ "start": {
+ "line": 203,
+ "column": 12
+ },
+ "end": {
+ "line": 203,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 7013,
+ 7110
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 8
+ },
+ "end": {
+ "line": 203,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 7013,
+ 7111
+ ],
+ "loc": {
+ "start": {
+ "line": 202,
+ "column": 8
+ },
+ "end": {
+ "line": 203,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 7120,
+ 7127
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 8
+ },
+ "end": {
+ "line": 204,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 7128,
+ 7131
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 16
+ },
+ "end": {
+ "line": 204,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 7120,
+ 7131
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 8
+ },
+ "end": {
+ "line": 204,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-loading-themes",
+ "raw": "'before-loading-themes'",
+ "range": [
+ 7133,
+ 7156
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 21
+ },
+ "end": {
+ "line": 204,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 7132,
+ 7157
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 20
+ },
+ "end": {
+ "line": 204,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7176,
+ 7180
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 17
+ },
+ "end": {
+ "line": 205,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 7181,
+ 7188
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 22
+ },
+ "end": {
+ "line": 205,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 7176,
+ 7188
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 17
+ },
+ "end": {
+ "line": 205,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7189,
+ 7193
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 30
+ },
+ "end": {
+ "line": 205,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "msgLoadThemes",
+ "range": [
+ 7194,
+ 7207
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 35
+ },
+ "end": {
+ "line": 205,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 7189,
+ 7207
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 30
+ },
+ "end": {
+ "line": 205,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 7176,
+ 7208
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 17
+ },
+ "end": {
+ "line": 205,
+ "column": 49
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 7171,
+ 7208
+ ],
+ "loc": {
+ "start": {
+ "line": 205,
+ "column": 12
+ },
+ "end": {
+ "line": 205,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 7120,
+ 7209
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 8
+ },
+ "end": {
+ "line": 205,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 7120,
+ 7210
+ ],
+ "loc": {
+ "start": {
+ "line": 204,
+ "column": 8
+ },
+ "end": {
+ "line": 205,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 7220,
+ 7227
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 8
+ },
+ "end": {
+ "line": 207,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 7228,
+ 7231
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 16
+ },
+ "end": {
+ "line": 207,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 7220,
+ 7231
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 8
+ },
+ "end": {
+ "line": 207,
+ "column": 19
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 7250,
+ 7267
+ ],
+ "loc": {
+ "start": {
+ "line": 208,
+ "column": 16
+ },
+ "end": {
+ "line": 208,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-populating-filter",
+ "raw": "'after-populating-filter'",
+ "range": [
+ 7285,
+ 7310
+ ],
+ "loc": {
+ "start": {
+ "line": 209,
+ "column": 16
+ },
+ "end": {
+ "line": 209,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-page",
+ "raw": "'after-changing-page'",
+ "range": [
+ 7328,
+ 7349
+ ],
+ "loc": {
+ "start": {
+ "line": 210,
+ "column": 16
+ },
+ "end": {
+ "line": 210,
+ "column": 37
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 7367,
+ 7391
+ ],
+ "loc": {
+ "start": {
+ "line": 211,
+ "column": 16
+ },
+ "end": {
+ "line": 211,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-changing-results-per-page",
+ "raw": "'after-changing-results-per-page'",
+ "range": [
+ 7409,
+ 7442
+ ],
+ "loc": {
+ "start": {
+ "line": 212,
+ "column": 16
+ },
+ "end": {
+ "line": 212,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page",
+ "raw": "'after-reset-page'",
+ "range": [
+ 7460,
+ 7478
+ ],
+ "loc": {
+ "start": {
+ "line": 213,
+ "column": 16
+ },
+ "end": {
+ "line": 213,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-reset-page-length",
+ "raw": "'after-reset-page-length'",
+ "range": [
+ 7496,
+ 7521
+ ],
+ "loc": {
+ "start": {
+ "line": 214,
+ "column": 16
+ },
+ "end": {
+ "line": 214,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-extensions",
+ "raw": "'after-loading-extensions'",
+ "range": [
+ 7539,
+ 7565
+ ],
+ "loc": {
+ "start": {
+ "line": 215,
+ "column": 16
+ },
+ "end": {
+ "line": 215,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "after-loading-themes",
+ "raw": "'after-loading-themes'",
+ "range": [
+ 7583,
+ 7605
+ ],
+ "loc": {
+ "start": {
+ "line": 216,
+ "column": 16
+ },
+ "end": {
+ "line": 216,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 7232,
+ 7619
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 20
+ },
+ "end": {
+ "line": 217,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 7638,
+ 7642
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 17
+ },
+ "end": {
+ "line": 218,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "message",
+ "range": [
+ 7643,
+ 7650
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 22
+ },
+ "end": {
+ "line": 218,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 7638,
+ 7650
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 17
+ },
+ "end": {
+ "line": 218,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 7651,
+ 7653
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 30
+ },
+ "end": {
+ "line": 218,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 7638,
+ 7654
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 17
+ },
+ "end": {
+ "line": 218,
+ "column": 33
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 7633,
+ 7654
+ ],
+ "loc": {
+ "start": {
+ "line": 218,
+ "column": 12
+ },
+ "end": {
+ "line": 218,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 7220,
+ 7664
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 8
+ },
+ "end": {
+ "line": 219,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 7220,
+ 7665
+ ],
+ "loc": {
+ "start": {
+ "line": 207,
+ "column": 8
+ },
+ "end": {
+ "line": 219,
+ "column": 10
+ }
}
},
{
@@ -8650,16 +17307,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3555,
- 3559
+ 7675,
+ 7679
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 8
},
"end": {
- "line": 120,
+ "line": 221,
"column": 12
}
}
@@ -8668,31 +17325,31 @@
"type": "Identifier",
"name": "initialized",
"range": [
- 3560,
- 3571
+ 7680,
+ 7691
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 13
},
"end": {
- "line": 120,
+ "line": 221,
"column": 24
}
}
},
"range": [
- 3555,
- 3571
+ 7675,
+ 7691
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 8
},
"end": {
- "line": 120,
+ "line": 221,
"column": 24
}
}
@@ -8702,62 +17359,62 @@
"value": false,
"raw": "false",
"range": [
- 3574,
- 3579
+ 7694,
+ 7699
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 27
},
"end": {
- "line": 120,
+ "line": 221,
"column": 32
}
}
},
"range": [
- 3555,
- 3579
+ 7675,
+ 7699
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 8
},
"end": {
- "line": 120,
+ "line": 221,
"column": 32
}
}
},
"range": [
- 3555,
- 3580
+ 7675,
+ 7700
],
"loc": {
"start": {
- "line": 120,
+ "line": 221,
"column": 8
},
"end": {
- "line": 120,
+ "line": 221,
"column": 33
}
}
}
],
"range": [
- 3294,
- 3586
+ 5947,
+ 7706
],
"loc": {
"start": {
- "line": 110,
+ "line": 173,
"column": 13
},
"end": {
- "line": 121,
+ "line": 222,
"column": 5
}
}
@@ -8765,16 +17422,16 @@
"generator": false,
"expression": false,
"range": [
- 3292,
- 3586
+ 5945,
+ 7706
],
"loc": {
"start": {
- "line": 110,
+ "line": 173,
"column": 11
},
"end": {
- "line": 121,
+ "line": 222,
"column": 5
}
}
@@ -8782,16 +17439,16 @@
"kind": "method",
"computed": false,
"range": [
- 3285,
- 3586
+ 5938,
+ 7706
],
"loc": {
"start": {
- "line": 110,
+ "line": 173,
"column": 4
},
"end": {
- "line": 121,
+ "line": 222,
"column": 5
}
},
@@ -8800,7 +17457,7 @@
],
"range": [
152,
- 3589
+ 7709
],
"loc": {
"start": {
@@ -8808,14 +17465,14 @@
"column": 38
},
"end": {
- "line": 123,
+ "line": 224,
"column": 1
}
}
},
"range": [
121,
- 3589
+ 7709
],
"loc": {
"start": {
@@ -8823,7 +17480,7 @@
"column": 7
},
"end": {
- "line": 123,
+ "line": 224,
"column": 1
}
},
@@ -8834,7 +17491,7 @@
"source": null,
"range": [
114,
- 3589
+ 7709
],
"loc": {
"start": {
@@ -8842,7 +17499,7 @@
"column": 0
},
"end": {
- "line": 123,
+ "line": 224,
"column": 1
}
}
@@ -8851,7 +17508,7 @@
"sourceType": "module",
"range": [
0,
- 3589
+ 7709
],
"loc": {
"start": {
@@ -8859,7 +17516,7 @@
"column": 0
},
"end": {
- "line": 123,
+ "line": 224,
"column": 1
}
},
@@ -9064,7 +17721,7 @@
},
{
"type": "Line",
- "value": " status bar div",
+ "value": "status messages",
"range": [
1273,
1290
@@ -9082,10 +17739,10 @@
},
{
"type": "Line",
- "value": " status bar label",
+ "value": "populating drop-downs",
"range": [
- 1336,
- 1355
+ 1361,
+ 1384
],
"loc": {
"start": {
@@ -9094,6 +17751,204 @@
},
"end": {
"line": 43,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "populating drop-downs",
+ "range": [
+ 1462,
+ 1485
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 8
+ },
+ "end": {
+ "line": 45,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "changing paging page",
+ "range": [
+ 1592,
+ 1614
+ ],
+ "loc": {
+ "start": {
+ "line": 48,
+ "column": 8
+ },
+ "end": {
+ "line": 48,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "clearing filters",
+ "range": [
+ 1702,
+ 1720
+ ],
+ "loc": {
+ "start": {
+ "line": 50,
+ "column": 8
+ },
+ "end": {
+ "line": 50,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "changing nb results/page",
+ "range": [
+ 1791,
+ 1817
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 8
+ },
+ "end": {
+ "line": 52,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "re-setting page",
+ "range": [
+ 1926,
+ 1943
+ ],
+ "loc": {
+ "start": {
+ "line": 55,
+ "column": 8
+ },
+ "end": {
+ "line": 55,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "re-setting page length",
+ "range": [
+ 2022,
+ 2046
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 8
+ },
+ "end": {
+ "line": 57,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "table sorting",
+ "range": [
+ 2157,
+ 2172
+ ],
+ "loc": {
+ "start": {
+ "line": 60,
+ "column": 8
+ },
+ "end": {
+ "line": 60,
+ "column": 23
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "extensions loading",
+ "range": [
+ 2237,
+ 2257
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 8
+ },
+ "end": {
+ "line": 62,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "themes loading",
+ "range": [
+ 2361,
+ 2377
+ ],
+ "loc": {
+ "start": {
+ "line": 65,
+ "column": 8
+ },
+ "end": {
+ "line": 65,
+ "column": 24
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " status bar div",
+ "range": [
+ 2460,
+ 2477
+ ],
+ "loc": {
+ "start": {
+ "line": 68,
+ "column": 8
+ },
+ "end": {
+ "line": 68,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " status bar label",
+ "range": [
+ 2523,
+ 2542
+ ],
+ "loc": {
+ "start": {
+ "line": 70,
+ "column": 8
+ },
+ "end": {
+ "line": 70,
"column": 27
}
}
@@ -9102,16 +17957,16 @@
"type": "Line",
"value": " text preceding status bar label",
"range": [
- 1409,
- 1443
+ 2596,
+ 2630
],
"loc": {
"start": {
- "line": 45,
+ "line": 72,
"column": 8
},
"end": {
- "line": 45,
+ "line": 72,
"column": 42
}
}
@@ -9120,16 +17975,16 @@
"type": "Line",
"value": "status bar container",
"range": [
- 1603,
- 1625
+ 2826,
+ 2848
],
"loc": {
"start": {
- "line": 56,
+ "line": 84,
"column": 8
},
"end": {
- "line": 56,
+ "line": 84,
"column": 30
}
}
@@ -9138,16 +17993,16 @@
"type": "Line",
"value": "status bar label",
"range": [
- 1763,
- 1781
+ 2986,
+ 3004
],
"loc": {
"start": {
- "line": 60,
+ "line": 88,
"column": 8
},
"end": {
- "line": 60,
+ "line": 88,
"column": 26
}
}
@@ -9156,16 +18011,16 @@
"type": "Line",
"value": "preceding text",
"range": [
- 1870,
- 1886
+ 3093,
+ 3109
],
"loc": {
"start": {
- "line": 62,
+ "line": 90,
"column": 8
},
"end": {
- "line": 62,
+ "line": 90,
"column": 24
}
}
@@ -9174,16 +18029,16 @@
"type": "Line",
"value": " target element container",
"range": [
- 2057,
- 2084
+ 3280,
+ 3307
],
"loc": {
"start": {
- "line": 67,
+ "line": 95,
"column": 8
},
"end": {
- "line": 67,
+ "line": 95,
"column": 35
}
}
@@ -9192,16 +18047,16 @@
"type": "Line",
"value": "default container: 'lDiv'",
"range": [
- 2270,
- 2297
+ 3493,
+ 3520
],
"loc": {
"start": {
- "line": 74,
+ "line": 102,
"column": 8
},
"end": {
- "line": 74,
+ "line": 102,
"column": 35
}
}
@@ -9210,19 +18065,55 @@
"type": "Line",
"value": " custom container, no need to append statusDiv",
"range": [
- 2504,
- 2552
+ 3727,
+ 3775
],
"loc": {
"start": {
- "line": 80,
+ "line": 108,
"column": 12
},
"end": {
- "line": 80,
+ "line": 108,
"column": 60
}
}
+ },
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 4021,
+ 4043
+ ],
+ "loc": {
+ "start": {
+ "line": 117,
+ "column": 8
+ },
+ "end": {
+ "line": 117,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Unsubscribe to events",
+ "range": [
+ 6294,
+ 6318
+ ],
+ "loc": {
+ "start": {
+ "line": 188,
+ "column": 8
+ },
+ "end": {
+ "line": 188,
+ "column": 32
+ }
+ }
}
]
}
\ No newline at end of file
diff --git a/docs/ast/source/src/modules/store.js.json b/docs/ast/source/src/modules/store.js.json
index fcf8588b..74485c9c 100644
--- a/docs/ast/source/src/modules/store.js.json
+++ b/docs/ast/source/src/modules/store.js.json
@@ -74,6 +74,79 @@
}
}
},
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 39,
+ 44
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 39,
+ 44
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 12
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "../types",
+ "raw": "'../types'",
+ "range": [
+ 50,
+ 60
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 18
+ },
+ "end": {
+ "line": 2,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 32,
+ 61
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 29
+ }
+ }
+ },
{
"type": "ExportNamedDeclaration",
"declaration": {
@@ -82,16 +155,16 @@
"type": "Identifier",
"name": "Store",
"range": [
- 46,
- 51
+ 76,
+ 81
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 13
},
"end": {
- "line": 3,
+ "line": 4,
"column": 18
}
}
@@ -106,16 +179,16 @@
"type": "Identifier",
"name": "constructor",
"range": [
- 227,
- 238
+ 257,
+ 268
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 4
},
"end": {
- "line": 11,
+ "line": 12,
"column": 15
}
}
@@ -128,16 +201,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 239,
- 241
+ 269,
+ 271
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 16
},
"end": {
- "line": 11,
+ "line": 12,
"column": 18
}
}
@@ -155,16 +228,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 257,
- 258
+ 286,
+ 287
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 12
},
"end": {
- "line": 12,
+ "line": 13,
"column": 13
}
}
@@ -178,16 +251,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 261,
- 263
+ 290,
+ 292
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 16
},
"end": {
- "line": 12,
+ "line": 13,
"column": 18
}
}
@@ -196,79 +269,79 @@
"type": "Identifier",
"name": "config",
"range": [
- 264,
- 270
+ 293,
+ 299
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 19
},
"end": {
- "line": 12,
+ "line": 13,
"column": 25
}
}
},
"range": [
- 261,
- 270
+ 290,
+ 299
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 16
},
"end": {
- "line": 12,
+ "line": 13,
"column": 25
}
}
},
"arguments": [],
"range": [
- 261,
- 272
+ 290,
+ 301
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 16
},
"end": {
- "line": 12,
+ "line": 13,
"column": 27
}
}
},
"range": [
- 257,
- 272
+ 286,
+ 301
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 12
},
"end": {
- "line": 12,
+ "line": 13,
"column": 27
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 253,
- 273
+ 282,
+ 302
],
"loc": {
"start": {
- "line": 12,
+ "line": 13,
"column": 8
},
"end": {
- "line": 12,
+ "line": 13,
"column": 28
}
}
@@ -284,16 +357,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 283,
- 287
+ 312,
+ 316
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 12
}
}
@@ -302,31 +375,31 @@
"type": "Identifier",
"name": "duration",
"range": [
- 288,
- 296
+ 317,
+ 325
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 13
},
"end": {
- "line": 14,
+ "line": 15,
"column": 21
}
}
},
"range": [
- 283,
- 296
+ 312,
+ 325
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 14,
+ "line": 15,
"column": 21
}
}
@@ -342,16 +415,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 300,
- 305
+ 329,
+ 334
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 25
},
"end": {
- "line": 14,
+ "line": 15,
"column": 30
}
}
@@ -364,16 +437,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 306,
- 307
+ 335,
+ 336
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 31
},
"end": {
- "line": 14,
+ "line": 15,
"column": 32
}
}
@@ -382,63 +455,63 @@
"type": "Identifier",
"name": "set_cookie_duration",
"range": [
- 308,
- 327
+ 337,
+ 356
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 33
},
"end": {
- "line": 14,
+ "line": 15,
"column": 52
}
}
},
"range": [
- 306,
- 327
+ 335,
+ 356
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 31
},
"end": {
- "line": 14,
+ "line": 15,
"column": 52
}
}
}
],
"range": [
- 300,
- 328
+ 329,
+ 357
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 25
},
"end": {
- "line": 14,
+ "line": 15,
"column": 53
}
}
},
"prefix": true,
"range": [
- 299,
- 328
+ 328,
+ 357
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 24
},
"end": {
- "line": 14,
+ "line": 15,
"column": 53
}
}
@@ -449,16 +522,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 343,
- 351
+ 372,
+ 380
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 12
},
"end": {
- "line": 15,
+ "line": 16,
"column": 20
}
}
@@ -471,16 +544,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 352,
- 353
+ 381,
+ 382
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 21
},
"end": {
- "line": 15,
+ "line": 16,
"column": 22
}
}
@@ -489,31 +562,31 @@
"type": "Identifier",
"name": "set_cookie_duration",
"range": [
- 354,
- 373
+ 383,
+ 402
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 23
},
"end": {
- "line": 15,
+ "line": 16,
"column": 42
}
}
},
"range": [
- 352,
- 373
+ 381,
+ 402
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 21
},
"end": {
- "line": 15,
+ "line": 16,
"column": 42
}
}
@@ -523,32 +596,32 @@
"value": 10,
"raw": "10",
"range": [
- 375,
- 377
+ 404,
+ 406
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 44
},
"end": {
- "line": 15,
+ "line": 16,
"column": 46
}
}
}
],
"range": [
- 343,
- 378
+ 372,
+ 407
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 12
},
"end": {
- "line": 15,
+ "line": 16,
"column": 47
}
}
@@ -558,61 +631,61 @@
"value": 100000,
"raw": "100000",
"range": [
- 381,
- 387
+ 410,
+ 416
],
"loc": {
"start": {
- "line": 15,
+ "line": 16,
"column": 50
},
"end": {
- "line": 15,
+ "line": 16,
"column": 56
}
}
},
"range": [
- 299,
- 387
+ 328,
+ 416
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 24
},
"end": {
- "line": 15,
+ "line": 16,
"column": 56
}
}
},
"range": [
- 283,
- 387
+ 312,
+ 416
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 15,
+ "line": 16,
"column": 56
}
}
},
"range": [
- 283,
- 388
+ 312,
+ 417
],
"loc": {
"start": {
- "line": 14,
+ "line": 15,
"column": 8
},
"end": {
- "line": 15,
+ "line": 16,
"column": 57
}
}
@@ -628,16 +701,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 398,
- 402
+ 427,
+ 431
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 8
},
"end": {
- "line": 17,
+ "line": 18,
"column": 12
}
}
@@ -646,31 +719,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 403,
- 405
+ 432,
+ 434
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 13
},
"end": {
- "line": 17,
+ "line": 18,
"column": 15
}
}
},
"range": [
- 398,
- 405
+ 427,
+ 434
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 8
},
"end": {
- "line": 17,
+ "line": 18,
"column": 15
}
}
@@ -679,62 +752,204 @@
"type": "Identifier",
"name": "tf",
"range": [
- 408,
- 410
+ 437,
+ 439
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 18
},
"end": {
- "line": 17,
+ "line": 18,
"column": 20
}
}
},
"range": [
- 398,
- 410
+ 427,
+ 439
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 8
},
"end": {
- "line": 17,
+ "line": 18,
"column": 20
}
}
},
"range": [
- 398,
- 411
+ 427,
+ 440
],
"loc": {
"start": {
- "line": 17,
+ "line": 18,
"column": 8
},
"end": {
- "line": 17,
+ "line": 18,
"column": 21
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 449,
+ 453
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 454,
+ 461
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 13
+ },
+ "end": {
+ "line": 19,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 449,
+ 461
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 464,
+ 466
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 23
+ },
+ "end": {
+ "line": 19,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 467,
+ 474
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 26
+ },
+ "end": {
+ "line": 19,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 464,
+ 474
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 23
+ },
+ "end": {
+ "line": 19,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 449,
+ 474
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 449,
+ 475
+ ],
+ "loc": {
+ "start": {
+ "line": 19,
+ "column": 8
+ },
+ "end": {
+ "line": 19,
+ "column": 34
+ }
+ }
}
],
"range": [
- 243,
- 417
+ 272,
+ 481
],
"loc": {
"start": {
- "line": 11,
- "column": 20
+ "line": 12,
+ "column": 19
},
"end": {
- "line": 18,
+ "line": 20,
"column": 5
}
}
@@ -742,16 +957,16 @@
"generator": false,
"expression": false,
"range": [
- 238,
- 417
+ 268,
+ 481
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 15
},
"end": {
- "line": 18,
+ "line": 20,
"column": 5
}
}
@@ -759,16 +974,16 @@
"kind": "constructor",
"computed": false,
"range": [
- 227,
- 417
+ 257,
+ 481
],
"loc": {
"start": {
- "line": 11,
+ "line": 12,
"column": 4
},
"end": {
- "line": 18,
+ "line": 20,
"column": 5
}
},
@@ -777,36 +992,714 @@
"type": "Block",
"value": "*\n * Store, persistence manager\n * @param {Object} tf TableFilter instance\n *\n * TODO: use localStorage and fallback to cookie persistence\n ",
"range": [
- 58,
- 222
+ 88,
+ 252
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 4
},
"end": {
- "line": 10,
+ "line": 11,
"column": 7
}
}
}
],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 487,
+ 491
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 4
+ },
+ "end": {
+ "line": 22,
+ "column": 8
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 503,
+ 507
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 8
+ },
+ "end": {
+ "line": 23,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 508,
+ 515
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 13
+ },
+ "end": {
+ "line": 23,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 503,
+ 515
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 8
+ },
+ "end": {
+ "line": 23,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 516,
+ 518
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 21
+ },
+ "end": {
+ "line": 23,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 503,
+ 518
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 8
+ },
+ "end": {
+ "line": 23,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 520,
+ 537
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 25
+ },
+ "end": {
+ "line": 23,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 519,
+ 538
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 24
+ },
+ "end": {
+ "line": 23,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 557,
+ 561
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "saveFilterValues",
+ "range": [
+ 562,
+ 578
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 22
+ },
+ "end": {
+ "line": 24,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 557,
+ 578
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 579,
+ 583
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 39
+ },
+ "end": {
+ "line": 24,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 584,
+ 586
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 44
+ },
+ "end": {
+ "line": 24,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 579,
+ 586
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 39
+ },
+ "end": {
+ "line": 24,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltsValuesCookie",
+ "range": [
+ 587,
+ 603
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 47
+ },
+ "end": {
+ "line": 24,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 579,
+ 603
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 39
+ },
+ "end": {
+ "line": 24,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 557,
+ 604
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 17
+ },
+ "end": {
+ "line": 24,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 552,
+ 604
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 12
+ },
+ "end": {
+ "line": 24,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 503,
+ 605
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 8
+ },
+ "end": {
+ "line": 24,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 503,
+ 606
+ ],
+ "loc": {
+ "start": {
+ "line": 23,
+ "column": 8
+ },
+ "end": {
+ "line": 24,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 615,
+ 619
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 620,
+ 627
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 13
+ },
+ "end": {
+ "line": 25,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 615,
+ 627
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 628,
+ 630
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 21
+ },
+ "end": {
+ "line": 25,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 615,
+ 630
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 632,
+ 656
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 25
+ },
+ "end": {
+ "line": 25,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 631,
+ 657
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 24
+ },
+ "end": {
+ "line": 25,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 664,
+ 668
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 57
+ },
+ "end": {
+ "line": 25,
+ "column": 61
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearCookies",
+ "range": [
+ 669,
+ 681
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 62
+ },
+ "end": {
+ "line": 25,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 664,
+ 681
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 57
+ },
+ "end": {
+ "line": 25,
+ "column": 74
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 664,
+ 683
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 57
+ },
+ "end": {
+ "line": 25,
+ "column": 76
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 659,
+ 683
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 52
+ },
+ "end": {
+ "line": 25,
+ "column": 76
+ }
+ }
+ }
+ ],
+ "range": [
+ 615,
+ 684
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 615,
+ 685
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 78
+ }
+ }
+ }
+ ],
+ "range": [
+ 493,
+ 691
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 10
+ },
+ "end": {
+ "line": 26,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 491,
+ 691
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 8
+ },
+ "end": {
+ "line": 26,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 487,
+ 691
+ ],
+ "loc": {
+ "start": {
+ "line": 22,
+ "column": 4
+ },
+ "end": {
+ "line": 26,
+ "column": 5
+ }
+ },
"trailingComments": [
{
"type": "Block",
"value": "*\n * Store filters' values in cookie\n * @param {String} cookie name\n ",
"range": [
- 423,
- 508
+ 697,
+ 782
],
"loc": {
"start": {
- "line": 20,
+ "line": 28,
"column": 4
},
"end": {
- "line": 23,
+ "line": 31,
"column": 7
}
}
@@ -820,16 +1713,16 @@
"type": "Identifier",
"name": "saveFilterValues",
"range": [
- 513,
- 529
+ 787,
+ 803
],
"loc": {
"start": {
- "line": 24,
+ "line": 32,
"column": 4
},
"end": {
- "line": 24,
+ "line": 32,
"column": 20
}
}
@@ -842,16 +1735,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 530,
- 534
+ 804,
+ 808
],
"loc": {
"start": {
- "line": 24,
+ "line": 32,
"column": 21
},
"end": {
- "line": 24,
+ "line": 32,
"column": 25
}
}
@@ -869,16 +1762,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 549,
- 551
+ 823,
+ 825
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 12
},
"end": {
- "line": 25,
+ "line": 33,
"column": 14
}
}
@@ -889,16 +1782,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 554,
- 558
+ 828,
+ 832
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 17
},
"end": {
- "line": 25,
+ "line": 33,
"column": 21
}
}
@@ -907,63 +1800,63 @@
"type": "Identifier",
"name": "tf",
"range": [
- 559,
- 561
+ 833,
+ 835
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 22
},
"end": {
- "line": 25,
+ "line": 33,
"column": 24
}
}
},
"range": [
- 554,
- 561
+ 828,
+ 835
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 17
},
"end": {
- "line": 25,
+ "line": 33,
"column": 24
}
}
},
"range": [
- 549,
- 561
+ 823,
+ 835
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 12
},
"end": {
- "line": 25,
+ "line": 33,
"column": 24
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 545,
- 562
+ 819,
+ 836
],
"loc": {
"start": {
- "line": 25,
+ "line": 33,
"column": 8
},
"end": {
- "line": 25,
+ "line": 33,
"column": 25
}
}
@@ -977,16 +1870,16 @@
"type": "Identifier",
"name": "fltValues",
"range": [
- 575,
- 584
+ 849,
+ 858
],
"loc": {
"start": {
- "line": 26,
+ "line": 34,
"column": 12
},
"end": {
- "line": 26,
+ "line": 34,
"column": 21
}
}
@@ -995,66 +1888,194 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 587,
- 589
+ 861,
+ 863
],
"loc": {
"start": {
- "line": 26,
+ "line": 34,
"column": 24
},
"end": {
- "line": 26,
+ "line": 34,
"column": 26
}
}
},
"range": [
- 575,
- 589
+ 849,
+ 863
],
"loc": {
"start": {
- "line": 26,
+ "line": 34,
"column": 12
},
"end": {
- "line": 26,
+ "line": 34,
"column": 26
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 571,
- 590
+ 845,
+ 864
],
"loc": {
"start": {
- "line": 26,
+ "line": 34,
"column": 8
},
"end": {
- "line": 26,
+ "line": 34,
"column": 27
}
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 878,
+ 880
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 12
+ },
+ "end": {
+ "line": 36,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberGridValues",
+ "range": [
+ 881,
+ 899
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 15
+ },
+ "end": {
+ "line": 36,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 878,
+ 899
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 12
+ },
+ "end": {
+ "line": 36,
+ "column": 33
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 877,
+ 899
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 11
+ },
+ "end": {
+ "line": 36,
+ "column": 33
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 914,
+ 921
+ ],
+ "loc": {
+ "start": {
+ "line": 37,
+ "column": 12
+ },
+ "end": {
+ "line": 37,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 900,
+ 931
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 34
+ },
+ "end": {
+ "line": 38,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 874,
+ 931
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 8
+ },
+ "end": {
+ "line": 38,
+ "column": 9
+ }
},
"trailingComments": [
{
"type": "Line",
"value": "store filters' values",
"range": [
- 599,
- 622
+ 941,
+ 964
],
"loc": {
"start": {
- "line": 27,
+ "line": 40,
"column": 8
},
"end": {
- "line": 27,
+ "line": 40,
"column": 31
}
}
@@ -1072,16 +2093,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 639,
- 640
+ 981,
+ 982
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 16
},
"end": {
- "line": 28,
+ "line": 41,
"column": 17
}
}
@@ -1091,48 +2112,48 @@
"value": 0,
"raw": "0",
"range": [
- 641,
- 642
+ 983,
+ 984
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 18
},
"end": {
- "line": 28,
+ "line": 41,
"column": 19
}
}
},
"range": [
- 639,
- 642
+ 981,
+ 984
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 16
},
"end": {
- "line": 28,
+ "line": 41,
"column": 19
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 635,
- 642
+ 977,
+ 984
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 12
},
"end": {
- "line": 28,
+ "line": 41,
"column": 19
}
}
@@ -1144,16 +2165,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 644,
- 645
+ 986,
+ 987
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 21
},
"end": {
- "line": 28,
+ "line": 41,
"column": 22
}
}
@@ -1168,16 +2189,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 646,
- 648
+ 988,
+ 990
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 23
},
"end": {
- "line": 28,
+ "line": 41,
"column": 25
}
}
@@ -1186,31 +2207,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 649,
- 655
+ 991,
+ 997
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 26
},
"end": {
- "line": 28,
+ "line": 41,
"column": 32
}
}
},
"range": [
- 646,
- 655
+ 988,
+ 997
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 23
},
"end": {
- "line": 28,
+ "line": 41,
"column": 32
}
}
@@ -1219,46 +2240,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 656,
- 662
+ 998,
+ 1004
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 33
},
"end": {
- "line": 28,
+ "line": 41,
"column": 39
}
}
},
"range": [
- 646,
- 662
+ 988,
+ 1004
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 23
},
"end": {
- "line": 28,
+ "line": 41,
"column": 39
}
}
},
"range": [
- 644,
- 662
+ 986,
+ 1004
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 21
},
"end": {
- "line": 28,
+ "line": 41,
"column": 39
}
}
@@ -1270,32 +2291,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 664,
- 665
+ 1006,
+ 1007
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 41
},
"end": {
- "line": 28,
+ "line": 41,
"column": 42
}
}
},
"prefix": false,
"range": [
- 664,
- 667
+ 1006,
+ 1009
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 41
},
"end": {
- "line": 28,
+ "line": 41,
"column": 44
}
}
@@ -1312,16 +2333,16 @@
"type": "Identifier",
"name": "value",
"range": [
- 686,
- 691
+ 1028,
+ 1033
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 16
},
"end": {
- "line": 29,
+ "line": 42,
"column": 21
}
}
@@ -1335,16 +2356,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 694,
- 696
+ 1036,
+ 1038
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 24
},
"end": {
- "line": 29,
+ "line": 42,
"column": 26
}
}
@@ -1353,31 +2374,31 @@
"type": "Identifier",
"name": "getFilterValue",
"range": [
- 697,
- 711
+ 1039,
+ 1053
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 27
},
"end": {
- "line": 29,
+ "line": 42,
"column": 41
}
}
},
"range": [
- 694,
- 711
+ 1036,
+ 1053
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 24
},
"end": {
- "line": 29,
+ "line": 42,
"column": 41
}
}
@@ -1387,67 +2408,726 @@
"type": "Identifier",
"name": "i",
"range": [
- 712,
- 713
+ 1054,
+ 1055
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 42
},
"end": {
- "line": 29,
+ "line": 42,
"column": 43
}
}
}
],
"range": [
- 694,
- 714
+ 1036,
+ 1056
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 24
},
"end": {
- "line": 29,
+ "line": 42,
"column": 44
}
}
},
"range": [
- 686,
- 714
+ 1028,
+ 1056
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 16
},
"end": {
- "line": 29,
+ "line": 42,
"column": 44
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 682,
- 715
+ 1024,
+ 1057
],
"loc": {
"start": {
- "line": 29,
+ "line": 42,
"column": 12
},
"end": {
- "line": 29,
+ "line": 42,
"column": 45
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "convert array to a || separated values",
+ "range": [
+ 1070,
+ 1110
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 12
+ },
+ "end": {
+ "line": 43,
+ "column": 52
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 1126,
+ 1131
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 15
+ },
+ "end": {
+ "line": 44,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 1132,
+ 1139
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 21
+ },
+ "end": {
+ "line": 44,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1126,
+ 1139
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 15
+ },
+ "end": {
+ "line": 44,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 1140,
+ 1145
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 29
+ },
+ "end": {
+ "line": 44,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 1126,
+ 1146
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 15
+ },
+ "end": {
+ "line": 44,
+ "column": 35
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "rgx",
+ "range": [
+ 1169,
+ 1172
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 20
+ },
+ "end": {
+ "line": 45,
+ "column": 23
+ }
+ }
+ },
+ "init": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "RegExp",
+ "range": [
+ 1179,
+ 1185
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 30
+ },
+ "end": {
+ "line": 45,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1186,
+ 1188
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 37
+ },
+ "end": {
+ "line": 45,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "separator",
+ "range": [
+ 1189,
+ 1198
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 40
+ },
+ "end": {
+ "line": 45,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 1186,
+ 1198
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 37
+ },
+ "end": {
+ "line": 45,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "g",
+ "raw": "'g'",
+ "range": [
+ 1200,
+ 1203
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 51
+ },
+ "end": {
+ "line": 45,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 1175,
+ 1204
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 26
+ },
+ "end": {
+ "line": 45,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1204
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 20
+ },
+ "end": {
+ "line": 45,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1165,
+ 1205
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 16
+ },
+ "end": {
+ "line": 45,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 1222,
+ 1227
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 46,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "value",
+ "range": [
+ 1230,
+ 1235
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 24
+ },
+ "end": {
+ "line": 46,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toString",
+ "range": [
+ 1236,
+ 1244
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 30
+ },
+ "end": {
+ "line": 46,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 1230,
+ 1244
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 24
+ },
+ "end": {
+ "line": 46,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 1230,
+ 1246
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 24
+ },
+ "end": {
+ "line": 46,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "replace",
+ "range": [
+ 1268,
+ 1275
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 21
+ },
+ "end": {
+ "line": 47,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1230,
+ 1275
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 24
+ },
+ "end": {
+ "line": 47,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rgx",
+ "range": [
+ 1276,
+ 1279
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 29
+ },
+ "end": {
+ "line": 47,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 1281,
+ 1284
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 34
+ },
+ "end": {
+ "line": 47,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 1287,
+ 1289
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 40
+ },
+ "end": {
+ "line": 47,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "orOperator",
+ "range": [
+ 1290,
+ 1300
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 43
+ },
+ "end": {
+ "line": 47,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 1287,
+ 1300
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 40
+ },
+ "end": {
+ "line": 47,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 1281,
+ 1300
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 34
+ },
+ "end": {
+ "line": 47,
+ "column": 53
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 1303,
+ 1306
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 56
+ },
+ "end": {
+ "line": 47,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 1281,
+ 1306
+ ],
+ "loc": {
+ "start": {
+ "line": 47,
+ "column": 34
+ },
+ "end": {
+ "line": 47,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 1230,
+ 1307
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 24
+ },
+ "end": {
+ "line": 47,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1222,
+ 1307
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 47,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 1222,
+ 1308
+ ],
+ "loc": {
+ "start": {
+ "line": 46,
+ "column": 16
+ },
+ "end": {
+ "line": 47,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 1147,
+ 1322
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 36
+ },
+ "end": {
+ "line": 48,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 1123,
+ 1322
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 12
+ },
+ "end": {
+ "line": 48,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "convert array to a || separated values",
+ "range": [
+ 1070,
+ 1110
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 12
+ },
+ "end": {
+ "line": 43,
+ "column": 52
+ }
+ }
+ }
+ ]
},
{
"type": "IfStatement",
@@ -1458,16 +3138,16 @@
"type": "Identifier",
"name": "value",
"range": [
- 732,
- 737
+ 1339,
+ 1344
],
"loc": {
"start": {
- "line": 30,
+ "line": 49,
"column": 16
},
"end": {
- "line": 30,
+ "line": 49,
"column": 21
}
}
@@ -1477,31 +3157,31 @@
"value": "",
"raw": "''",
"range": [
- 742,
- 744
+ 1349,
+ 1351
],
"loc": {
"start": {
- "line": 30,
+ "line": 49,
"column": 26
},
"end": {
- "line": 30,
+ "line": 49,
"column": 28
}
}
},
"range": [
- 732,
- 744
+ 1339,
+ 1351
],
"loc": {
"start": {
- "line": 30,
+ "line": 49,
"column": 16
},
"end": {
- "line": 30,
+ "line": 49,
"column": 28
}
}
@@ -1518,16 +3198,16 @@
"type": "Identifier",
"name": "value",
"range": [
- 763,
- 768
+ 1370,
+ 1375
],
"loc": {
"start": {
- "line": 31,
+ "line": 50,
"column": 16
},
"end": {
- "line": 31,
+ "line": 50,
"column": 21
}
}
@@ -1537,78 +3217,78 @@
"value": " ",
"raw": "' '",
"range": [
- 771,
- 774
+ 1378,
+ 1381
],
"loc": {
"start": {
- "line": 31,
+ "line": 50,
"column": 24
},
"end": {
- "line": 31,
+ "line": 50,
"column": 27
}
}
},
"range": [
- 763,
- 774
+ 1370,
+ 1381
],
"loc": {
"start": {
- "line": 31,
+ "line": 50,
"column": 16
},
"end": {
- "line": 31,
+ "line": 50,
"column": 27
}
}
},
"range": [
- 763,
- 775
+ 1370,
+ 1382
],
"loc": {
"start": {
- "line": 31,
+ "line": 50,
"column": 16
},
"end": {
- "line": 31,
+ "line": 50,
"column": 28
}
}
}
],
"range": [
- 745,
- 789
+ 1352,
+ 1396
],
"loc": {
"start": {
- "line": 30,
+ "line": 49,
"column": 29
},
"end": {
- "line": 32,
+ "line": 51,
"column": 13
}
}
},
"alternate": null,
"range": [
- 728,
- 789
+ 1335,
+ 1396
],
"loc": {
"start": {
- "line": 30,
+ "line": 49,
"column": 12
},
"end": {
- "line": 32,
+ "line": 51,
"column": 13
}
}
@@ -1624,16 +3304,16 @@
"type": "Identifier",
"name": "fltValues",
"range": [
- 802,
- 811
+ 1409,
+ 1418
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 12
},
"end": {
- "line": 33,
+ "line": 52,
"column": 21
}
}
@@ -1642,31 +3322,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 812,
- 816
+ 1419,
+ 1423
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 22
},
"end": {
- "line": 33,
+ "line": 52,
"column": 26
}
}
},
"range": [
- 802,
- 816
+ 1409,
+ 1423
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 12
},
"end": {
- "line": 33,
+ "line": 52,
"column": 26
}
}
@@ -1676,78 +3356,78 @@
"type": "Identifier",
"name": "value",
"range": [
- 817,
- 822
+ 1424,
+ 1429
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 27
},
"end": {
- "line": 33,
+ "line": 52,
"column": 32
}
}
}
],
"range": [
- 802,
- 823
+ 1409,
+ 1430
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 12
},
"end": {
- "line": 33,
+ "line": 52,
"column": 33
}
}
},
"range": [
- 802,
- 824
+ 1409,
+ 1431
],
"loc": {
"start": {
- "line": 33,
+ "line": 52,
"column": 12
},
"end": {
- "line": 33,
+ "line": 52,
"column": 34
}
}
}
],
"range": [
- 668,
- 834
+ 1010,
+ 1441
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 45
},
"end": {
- "line": 34,
+ "line": 53,
"column": 9
}
}
},
"range": [
- 631,
- 834
+ 973,
+ 1441
],
"loc": {
"start": {
- "line": 28,
+ "line": 41,
"column": 8
},
"end": {
- "line": 34,
+ "line": 53,
"column": 9
}
},
@@ -1756,16 +3436,16 @@
"type": "Line",
"value": "store filters' values",
"range": [
- 599,
- 622
+ 941,
+ 964
],
"loc": {
"start": {
- "line": 27,
+ "line": 40,
"column": 8
},
"end": {
- "line": 27,
+ "line": 40,
"column": 31
}
}
@@ -1774,241 +3454,21 @@
"trailingComments": [
{
"type": "Line",
- "value": "adds array size",
+ "value": "write cookie",
"range": [
- 843,
- 860
+ 1451,
+ 1465
],
"loc": {
"start": {
- "line": 35,
+ "line": 55,
"column": 8
},
"end": {
- "line": 35,
- "column": 25
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltValues",
- "range": [
- 869,
- 878
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 8
- },
- "end": {
- "line": 36,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 879,
- 883
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 18
- },
- "end": {
- "line": 36,
- "column": 22
- }
- }
- },
- "range": [
- 869,
- 883
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 8
- },
- "end": {
- "line": 36,
+ "line": 55,
"column": 22
}
}
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tf",
- "range": [
- 884,
- 886
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 23
- },
- "end": {
- "line": 36,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 887,
- 893
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 26
- },
- "end": {
- "line": 36,
- "column": 32
- }
- }
- },
- "range": [
- 884,
- 893
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 23
- },
- "end": {
- "line": 36,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 894,
- 900
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 33
- },
- "end": {
- "line": 36,
- "column": 39
- }
- }
- },
- "range": [
- 884,
- 900
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 23
- },
- "end": {
- "line": 36,
- "column": 39
- }
- }
- }
- ],
- "range": [
- 869,
- 901
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 8
- },
- "end": {
- "line": 36,
- "column": 40
- }
- }
- },
- "range": [
- 869,
- 902
- ],
- "loc": {
- "start": {
- "line": 36,
- "column": 8
- },
- "end": {
- "line": 36,
- "column": 41
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "adds array size",
- "range": [
- 843,
- 860
- ],
- "loc": {
- "start": {
- "line": 35,
- "column": 8
- },
- "end": {
- "line": 35,
- "column": 25
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "writes cookie",
- "range": [
- 912,
- 927
- ],
- "loc": {
- "start": {
- "line": 38,
- "column": 8
- },
- "end": {
- "line": 38,
- "column": 23
- }
- }
}
]
},
@@ -2023,16 +3483,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 936,
- 942
+ 1474,
+ 1480
],
"loc": {
"start": {
- "line": 39,
+ "line": 56,
"column": 8
},
"end": {
- "line": 39,
+ "line": 56,
"column": 14
}
}
@@ -2041,31 +3501,31 @@
"type": "Identifier",
"name": "write",
"range": [
- 943,
- 948
+ 1481,
+ 1486
],
"loc": {
"start": {
- "line": 39,
+ "line": 56,
"column": 15
},
"end": {
- "line": 39,
+ "line": 56,
"column": 20
}
}
},
"range": [
- 936,
- 948
+ 1474,
+ 1486
],
"loc": {
"start": {
- "line": 39,
+ "line": 56,
"column": 8
},
"end": {
- "line": 39,
+ "line": 56,
"column": 20
}
}
@@ -2075,16 +3535,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 962,
- 966
+ 1500,
+ 1504
],
"loc": {
"start": {
- "line": 40,
+ "line": 57,
"column": 12
},
"end": {
- "line": 40,
+ "line": 57,
"column": 16
}
}
@@ -2098,16 +3558,16 @@
"type": "Identifier",
"name": "fltValues",
"range": [
- 980,
- 989
+ 1518,
+ 1527
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 12
},
"end": {
- "line": 41,
+ "line": 58,
"column": 21
}
}
@@ -2116,31 +3576,31 @@
"type": "Identifier",
"name": "join",
"range": [
- 990,
- 994
+ 1528,
+ 1532
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 22
},
"end": {
- "line": 41,
+ "line": 58,
"column": 26
}
}
},
"range": [
- 980,
- 994
+ 1518,
+ 1532
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 12
},
"end": {
- "line": 41,
+ "line": 58,
"column": 26
}
}
@@ -2153,16 +3613,16 @@
"type": "Identifier",
"name": "tf",
"range": [
- 995,
- 997
+ 1533,
+ 1535
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 27
},
"end": {
- "line": 41,
+ "line": 58,
"column": 29
}
}
@@ -2171,47 +3631,47 @@
"type": "Identifier",
"name": "separator",
"range": [
- 998,
- 1007
+ 1536,
+ 1545
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 30
},
"end": {
- "line": 41,
+ "line": 58,
"column": 39
}
}
},
"range": [
- 995,
- 1007
+ 1533,
+ 1545
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 27
},
"end": {
- "line": 41,
+ "line": 58,
"column": 39
}
}
}
],
"range": [
- 980,
- 1008
+ 1518,
+ 1546
],
"loc": {
"start": {
- "line": 41,
+ "line": 58,
"column": 12
},
"end": {
- "line": 41,
+ "line": 58,
"column": 40
}
}
@@ -2222,16 +3682,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1022,
- 1026
+ 1560,
+ 1564
],
"loc": {
"start": {
- "line": 42,
+ "line": 59,
"column": 12
},
"end": {
- "line": 42,
+ "line": 59,
"column": 16
}
}
@@ -2240,81 +3700,81 @@
"type": "Identifier",
"name": "duration",
"range": [
- 1027,
- 1035
+ 1565,
+ 1573
],
"loc": {
"start": {
- "line": 42,
+ "line": 59,
"column": 17
},
"end": {
- "line": 42,
+ "line": 59,
"column": 25
}
}
},
"range": [
- 1022,
- 1035
+ 1560,
+ 1573
],
"loc": {
"start": {
- "line": 42,
+ "line": 59,
"column": 12
},
"end": {
- "line": 42,
+ "line": 59,
"column": 25
}
}
}
],
"range": [
- 936,
- 1045
+ 1474,
+ 1583
],
"loc": {
"start": {
- "line": 39,
+ "line": 56,
"column": 8
},
"end": {
- "line": 43,
+ "line": 60,
"column": 9
}
}
},
"range": [
- 936,
- 1046
+ 1474,
+ 1584
],
"loc": {
"start": {
- "line": 39,
+ "line": 56,
"column": 8
},
"end": {
- "line": 43,
+ "line": 60,
"column": 10
}
},
"leadingComments": [
{
"type": "Line",
- "value": "writes cookie",
+ "value": "write cookie",
"range": [
- 912,
- 927
+ 1451,
+ 1465
],
"loc": {
"start": {
- "line": 38,
+ "line": 55,
"column": 8
},
"end": {
- "line": 38,
- "column": 23
+ "line": 55,
+ "column": 22
}
}
}
@@ -2322,16 +3782,16 @@
}
],
"range": [
- 535,
- 1052
+ 809,
+ 1590
],
"loc": {
"start": {
- "line": 24,
+ "line": 32,
"column": 26
},
"end": {
- "line": 44,
+ "line": 61,
"column": 5
}
}
@@ -2339,16 +3799,16 @@
"generator": false,
"expression": false,
"range": [
- 529,
- 1052
+ 803,
+ 1590
],
"loc": {
"start": {
- "line": 24,
+ "line": 32,
"column": 20
},
"end": {
- "line": 44,
+ "line": 61,
"column": 5
}
}
@@ -2356,16 +3816,16 @@
"kind": "method",
"computed": false,
"range": [
- 513,
- 1052
+ 787,
+ 1590
],
"loc": {
"start": {
- "line": 24,
+ "line": 32,
"column": 4
},
"end": {
- "line": 44,
+ "line": 61,
"column": 5
}
},
@@ -2374,16 +3834,16 @@
"type": "Block",
"value": "*\n * Store filters' values in cookie\n * @param {String} cookie name\n ",
"range": [
- 423,
- 508
+ 697,
+ 782
],
"loc": {
"start": {
- "line": 20,
+ "line": 28,
"column": 4
},
"end": {
- "line": 23,
+ "line": 31,
"column": 7
}
}
@@ -2394,16 +3854,16 @@
"type": "Block",
"value": "*\n * Retrieve filters' values from cookie\n * @param {String} cookie name\n * @return {Array}\n ",
"range": [
- 1058,
- 1171
+ 1596,
+ 1709
],
"loc": {
"start": {
- "line": 46,
+ "line": 63,
"column": 4
},
"end": {
- "line": 50,
+ "line": 67,
"column": 7
}
}
@@ -2417,16 +3877,16 @@
"type": "Identifier",
"name": "getFilterValues",
"range": [
- 1176,
- 1191
+ 1714,
+ 1729
],
"loc": {
"start": {
- "line": 51,
+ "line": 68,
"column": 4
},
"end": {
- "line": 51,
+ "line": 68,
"column": 19
}
}
@@ -2439,16 +3899,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1192,
- 1196
+ 1730,
+ 1734
],
"loc": {
"start": {
- "line": 51,
+ "line": 68,
"column": 20
},
"end": {
- "line": 51,
+ "line": 68,
"column": 24
}
}
@@ -2466,16 +3926,16 @@
"type": "Identifier",
"name": "flts",
"range": [
- 1211,
- 1215
+ 1749,
+ 1753
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 12
},
"end": {
- "line": 52,
+ "line": 69,
"column": 16
}
}
@@ -2489,16 +3949,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 1218,
- 1224
+ 1756,
+ 1762
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 19
},
"end": {
- "line": 52,
+ "line": 69,
"column": 25
}
}
@@ -2507,31 +3967,31 @@
"type": "Identifier",
"name": "read",
"range": [
- 1225,
- 1229
+ 1763,
+ 1767
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 26
},
"end": {
- "line": 52,
+ "line": 69,
"column": 30
}
}
},
"range": [
- 1218,
- 1229
+ 1756,
+ 1767
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 19
},
"end": {
- "line": 52,
+ "line": 69,
"column": 30
}
}
@@ -2541,64 +4001,64 @@
"type": "Identifier",
"name": "name",
"range": [
- 1230,
- 1234
+ 1768,
+ 1772
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 31
},
"end": {
- "line": 52,
+ "line": 69,
"column": 35
}
}
}
],
"range": [
- 1218,
- 1235
+ 1756,
+ 1773
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 19
},
"end": {
- "line": 52,
+ "line": 69,
"column": 36
}
}
},
"range": [
- 1211,
- 1235
+ 1749,
+ 1773
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 12
},
"end": {
- "line": 52,
+ "line": 69,
"column": 36
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1207,
- 1236
+ 1745,
+ 1774
],
"loc": {
"start": {
- "line": 52,
+ "line": 69,
"column": 8
},
"end": {
- "line": 52,
+ "line": 69,
"column": 37
}
}
@@ -2612,16 +4072,16 @@
"type": "Identifier",
"name": "rgx",
"range": [
- 1249,
- 1252
+ 1787,
+ 1790
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 12
},
"end": {
- "line": 53,
+ "line": 70,
"column": 15
}
}
@@ -2632,16 +4092,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 1259,
- 1265
+ 1797,
+ 1803
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 22
},
"end": {
- "line": 53,
+ "line": 70,
"column": 28
}
}
@@ -2656,16 +4116,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1266,
- 1270
+ 1804,
+ 1808
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 29
},
"end": {
- "line": 53,
+ "line": 70,
"column": 33
}
}
@@ -2674,31 +4134,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1271,
- 1273
+ 1809,
+ 1811
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 34
},
"end": {
- "line": 53,
+ "line": 70,
"column": 36
}
}
},
"range": [
- 1266,
- 1273
+ 1804,
+ 1811
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 29
},
"end": {
- "line": 53,
+ "line": 70,
"column": 36
}
}
@@ -2707,31 +4167,31 @@
"type": "Identifier",
"name": "separator",
"range": [
- 1274,
- 1283
+ 1812,
+ 1821
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 37
},
"end": {
- "line": 53,
+ "line": 70,
"column": 46
}
}
},
"range": [
- 1266,
- 1283
+ 1804,
+ 1821
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 29
},
"end": {
- "line": 53,
+ "line": 70,
"column": 46
}
}
@@ -2741,64 +4201,64 @@
"value": "g",
"raw": "'g'",
"range": [
- 1285,
- 1288
+ 1823,
+ 1826
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 48
},
"end": {
- "line": 53,
+ "line": 70,
"column": 51
}
}
}
],
"range": [
- 1255,
- 1289
+ 1793,
+ 1827
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 18
},
"end": {
- "line": 53,
+ "line": 70,
"column": 52
}
}
},
"range": [
- 1249,
- 1289
+ 1787,
+ 1827
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 12
},
"end": {
- "line": 53,
+ "line": 70,
"column": 52
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 1245,
- 1290
+ 1783,
+ 1828
],
"loc": {
"start": {
- "line": 53,
+ "line": 70,
"column": 8
},
"end": {
- "line": 53,
+ "line": 70,
"column": 53
}
},
@@ -2807,16 +4267,16 @@
"type": "Line",
"value": " filters' values array",
"range": [
- 1299,
- 1323
+ 1837,
+ 1861
],
"loc": {
"start": {
- "line": 54,
+ "line": 71,
"column": 8
},
"end": {
- "line": 54,
+ "line": 71,
"column": 32
}
}
@@ -2834,16 +4294,16 @@
"type": "Identifier",
"name": "flts",
"range": [
- 1339,
- 1343
+ 1877,
+ 1881
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 15
},
"end": {
- "line": 55,
+ "line": 72,
"column": 19
}
}
@@ -2852,31 +4312,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 1344,
- 1349
+ 1882,
+ 1887
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 20
},
"end": {
- "line": 55,
+ "line": 72,
"column": 25
}
}
},
"range": [
- 1339,
- 1349
+ 1877,
+ 1887
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 15
},
"end": {
- "line": 55,
+ "line": 72,
"column": 25
}
}
@@ -2886,47 +4346,47 @@
"type": "Identifier",
"name": "rgx",
"range": [
- 1350,
- 1353
+ 1888,
+ 1891
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 26
},
"end": {
- "line": 55,
+ "line": 72,
"column": 29
}
}
}
],
"range": [
- 1339,
- 1354
+ 1877,
+ 1892
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 15
},
"end": {
- "line": 55,
+ "line": 72,
"column": 30
}
}
},
"range": [
- 1332,
- 1355
+ 1870,
+ 1893
],
"loc": {
"start": {
- "line": 55,
+ "line": 72,
"column": 8
},
"end": {
- "line": 55,
+ "line": 72,
"column": 31
}
},
@@ -2935,16 +4395,16 @@
"type": "Line",
"value": " filters' values array",
"range": [
- 1299,
- 1323
+ 1837,
+ 1861
],
"loc": {
"start": {
- "line": 54,
+ "line": 71,
"column": 8
},
"end": {
- "line": 54,
+ "line": 71,
"column": 32
}
}
@@ -2953,16 +4413,16 @@
}
],
"range": [
- 1197,
- 1361
+ 1735,
+ 1899
],
"loc": {
"start": {
- "line": 51,
+ "line": 68,
"column": 25
},
"end": {
- "line": 56,
+ "line": 73,
"column": 5
}
}
@@ -2970,16 +4430,16 @@
"generator": false,
"expression": false,
"range": [
- 1191,
- 1361
+ 1729,
+ 1899
],
"loc": {
"start": {
- "line": 51,
+ "line": 68,
"column": 19
},
"end": {
- "line": 56,
+ "line": 73,
"column": 5
}
}
@@ -2987,16 +4447,16 @@
"kind": "method",
"computed": false,
"range": [
- 1176,
- 1361
+ 1714,
+ 1899
],
"loc": {
"start": {
- "line": 51,
+ "line": 68,
"column": 4
},
"end": {
- "line": 56,
+ "line": 73,
"column": 5
}
},
@@ -3005,16 +4465,16 @@
"type": "Block",
"value": "*\n * Retrieve filters' values from cookie\n * @param {String} cookie name\n * @return {Array}\n ",
"range": [
- 1058,
- 1171
+ 1596,
+ 1709
],
"loc": {
"start": {
- "line": 46,
+ "line": 63,
"column": 4
},
"end": {
- "line": 50,
+ "line": 67,
"column": 7
}
}
@@ -3025,16 +4485,16 @@
"type": "Block",
"value": "*\n * Store page number in cookie\n * @param {String} cookie name\n ",
"range": [
- 1367,
- 1448
+ 1905,
+ 1986
],
"loc": {
"start": {
- "line": 58,
+ "line": 75,
"column": 4
},
"end": {
- "line": 61,
+ "line": 78,
"column": 7
}
}
@@ -3048,16 +4508,16 @@
"type": "Identifier",
"name": "savePageNb",
"range": [
- 1453,
- 1463
+ 1991,
+ 2001
],
"loc": {
"start": {
- "line": 62,
+ "line": 79,
"column": 4
},
"end": {
- "line": 62,
+ "line": 79,
"column": 14
}
}
@@ -3070,16 +4530,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1464,
- 1468
+ 2002,
+ 2006
],
"loc": {
"start": {
- "line": 62,
+ "line": 79,
"column": 15
},
"end": {
- "line": 62,
+ "line": 79,
"column": 19
}
}
@@ -3088,6 +4548,169 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2021,
+ 2025
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2026,
+ 2028
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 17
+ },
+ "end": {
+ "line": 80,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 2021,
+ 2028
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageNb",
+ "range": [
+ 2029,
+ 2043
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 20
+ },
+ "end": {
+ "line": 80,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 2021,
+ 2043
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 12
+ },
+ "end": {
+ "line": 80,
+ "column": 34
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 2020,
+ 2043
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 11
+ },
+ "end": {
+ "line": 80,
+ "column": 34
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 2058,
+ 2065
+ ],
+ "loc": {
+ "start": {
+ "line": 81,
+ "column": 12
+ },
+ "end": {
+ "line": 81,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 2044,
+ 2075
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 35
+ },
+ "end": {
+ "line": 82,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 2017,
+ 2075
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 82,
+ "column": 9
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -3099,16 +4722,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 1479,
- 1485
+ 2084,
+ 2090
],
"loc": {
"start": {
- "line": 63,
+ "line": 83,
"column": 8
},
"end": {
- "line": 63,
+ "line": 83,
"column": 14
}
}
@@ -3117,31 +4740,31 @@
"type": "Identifier",
"name": "write",
"range": [
- 1486,
- 1491
+ 2091,
+ 2096
],
"loc": {
"start": {
- "line": 63,
+ "line": 83,
"column": 15
},
"end": {
- "line": 63,
+ "line": 83,
"column": 20
}
}
},
"range": [
- 1479,
- 1491
+ 2084,
+ 2096
],
"loc": {
"start": {
- "line": 63,
+ "line": 83,
"column": 8
},
"end": {
- "line": 63,
+ "line": 83,
"column": 20
}
}
@@ -3151,16 +4774,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1505,
- 1509
+ 2110,
+ 2114
],
"loc": {
"start": {
- "line": 64,
+ "line": 84,
"column": 12
},
"end": {
- "line": 64,
+ "line": 84,
"column": 16
}
}
@@ -3179,16 +4802,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1523,
- 1527
+ 2128,
+ 2132
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 12
},
"end": {
- "line": 65,
+ "line": 85,
"column": 16
}
}
@@ -3197,31 +4820,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1528,
- 1530
+ 2133,
+ 2135
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 17
},
"end": {
- "line": 65,
+ "line": 85,
"column": 19
}
}
},
"range": [
- 1523,
- 1530
+ 2128,
+ 2135
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 12
},
"end": {
- "line": 65,
+ "line": 85,
"column": 19
}
}
@@ -3230,31 +4853,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 1531,
- 1538
+ 2136,
+ 2143
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 20
},
"end": {
- "line": 65,
+ "line": 85,
"column": 27
}
}
},
"range": [
- 1523,
- 1538
+ 2128,
+ 2143
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 12
},
"end": {
- "line": 65,
+ "line": 85,
"column": 27
}
}
@@ -3265,32 +4888,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 1539,
- 1547
+ 2144,
+ 2152
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 28
},
"end": {
- "line": 65,
+ "line": 85,
"column": 36
}
}
}
],
"range": [
- 1523,
- 1548
+ 2128,
+ 2153
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 12
},
"end": {
- "line": 65,
+ "line": 85,
"column": 37
}
}
@@ -3299,31 +4922,31 @@
"type": "Identifier",
"name": "currentPageNb",
"range": [
- 1549,
- 1562
+ 2154,
+ 2167
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 38
},
"end": {
- "line": 65,
+ "line": 85,
"column": 51
}
}
},
"range": [
- 1523,
- 1562
+ 2128,
+ 2167
],
"loc": {
"start": {
- "line": 65,
+ "line": 85,
"column": 12
},
"end": {
- "line": 65,
+ "line": 85,
"column": 51
}
}
@@ -3334,16 +4957,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1576,
- 1580
+ 2181,
+ 2185
],
"loc": {
"start": {
- "line": 66,
+ "line": 86,
"column": 12
},
"end": {
- "line": 66,
+ "line": 86,
"column": 16
}
}
@@ -3352,78 +4975,78 @@
"type": "Identifier",
"name": "duration",
"range": [
- 1581,
- 1589
+ 2186,
+ 2194
],
"loc": {
"start": {
- "line": 66,
+ "line": 86,
"column": 17
},
"end": {
- "line": 66,
+ "line": 86,
"column": 25
}
}
},
"range": [
- 1576,
- 1589
+ 2181,
+ 2194
],
"loc": {
"start": {
- "line": 66,
+ "line": 86,
"column": 12
},
"end": {
- "line": 66,
+ "line": 86,
"column": 25
}
}
}
],
"range": [
- 1479,
- 1599
+ 2084,
+ 2204
],
"loc": {
"start": {
- "line": 63,
+ "line": 83,
"column": 8
},
"end": {
- "line": 67,
+ "line": 87,
"column": 9
}
}
},
"range": [
- 1479,
- 1600
+ 2084,
+ 2205
],
"loc": {
"start": {
- "line": 63,
+ "line": 83,
"column": 8
},
"end": {
- "line": 67,
+ "line": 87,
"column": 10
}
}
}
],
"range": [
- 1469,
- 1606
+ 2007,
+ 2211
],
"loc": {
"start": {
- "line": 62,
+ "line": 79,
"column": 20
},
"end": {
- "line": 68,
+ "line": 88,
"column": 5
}
}
@@ -3431,16 +5054,16 @@
"generator": false,
"expression": false,
"range": [
- 1463,
- 1606
+ 2001,
+ 2211
],
"loc": {
"start": {
- "line": 62,
+ "line": 79,
"column": 14
},
"end": {
- "line": 68,
+ "line": 88,
"column": 5
}
}
@@ -3448,16 +5071,16 @@
"kind": "method",
"computed": false,
"range": [
- 1453,
- 1606
+ 1991,
+ 2211
],
"loc": {
"start": {
- "line": 62,
+ "line": 79,
"column": 4
},
"end": {
- "line": 68,
+ "line": 88,
"column": 5
}
},
@@ -3466,16 +5089,16 @@
"type": "Block",
"value": "*\n * Store page number in cookie\n * @param {String} cookie name\n ",
"range": [
- 1367,
- 1448
+ 1905,
+ 1986
],
"loc": {
"start": {
- "line": 58,
+ "line": 75,
"column": 4
},
"end": {
- "line": 61,
+ "line": 78,
"column": 7
}
}
@@ -3486,16 +5109,16 @@
"type": "Block",
"value": "*\n * Retrieve page number from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 1612,
- 1722
+ 2217,
+ 2327
],
"loc": {
"start": {
- "line": 70,
+ "line": 90,
"column": 4
},
"end": {
- "line": 74,
+ "line": 94,
"column": 7
}
}
@@ -3509,16 +5132,16 @@
"type": "Identifier",
"name": "getPageNb",
"range": [
- 1727,
- 1736
+ 2332,
+ 2341
],
"loc": {
"start": {
- "line": 75,
+ "line": 95,
"column": 4
},
"end": {
- "line": 75,
+ "line": 95,
"column": 13
}
}
@@ -3531,16 +5154,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1737,
- 1741
+ 2342,
+ 2346
],
"loc": {
"start": {
- "line": 75,
+ "line": 95,
"column": 14
},
"end": {
- "line": 75,
+ "line": 95,
"column": 18
}
}
@@ -3560,16 +5183,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 1759,
- 1765
+ 2364,
+ 2370
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 15
},
"end": {
- "line": 76,
+ "line": 96,
"column": 21
}
}
@@ -3578,31 +5201,31 @@
"type": "Identifier",
"name": "read",
"range": [
- 1766,
- 1770
+ 2371,
+ 2375
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 22
},
"end": {
- "line": 76,
+ "line": 96,
"column": 26
}
}
},
"range": [
- 1759,
- 1770
+ 2364,
+ 2375
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 15
},
"end": {
- "line": 76,
+ "line": 96,
"column": 26
}
}
@@ -3612,63 +5235,63 @@
"type": "Identifier",
"name": "name",
"range": [
- 1771,
- 1775
+ 2376,
+ 2380
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 27
},
"end": {
- "line": 76,
+ "line": 96,
"column": 31
}
}
}
],
"range": [
- 1759,
- 1776
+ 2364,
+ 2381
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 15
},
"end": {
- "line": 76,
+ "line": 96,
"column": 32
}
}
},
"range": [
- 1752,
- 1777
+ 2357,
+ 2382
],
"loc": {
"start": {
- "line": 76,
+ "line": 96,
"column": 8
},
"end": {
- "line": 76,
+ "line": 96,
"column": 33
}
}
}
],
"range": [
- 1742,
- 1783
+ 2347,
+ 2388
],
"loc": {
"start": {
- "line": 75,
+ "line": 95,
"column": 19
},
"end": {
- "line": 77,
+ "line": 97,
"column": 5
}
}
@@ -3676,16 +5299,16 @@
"generator": false,
"expression": false,
"range": [
- 1736,
- 1783
+ 2341,
+ 2388
],
"loc": {
"start": {
- "line": 75,
+ "line": 95,
"column": 13
},
"end": {
- "line": 77,
+ "line": 97,
"column": 5
}
}
@@ -3693,16 +5316,16 @@
"kind": "method",
"computed": false,
"range": [
- 1727,
- 1783
+ 2332,
+ 2388
],
"loc": {
"start": {
- "line": 75,
+ "line": 95,
"column": 4
},
"end": {
- "line": 77,
+ "line": 97,
"column": 5
}
},
@@ -3711,16 +5334,16 @@
"type": "Block",
"value": "*\n * Retrieve page number from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 1612,
- 1722
+ 2217,
+ 2327
],
"loc": {
"start": {
- "line": 70,
+ "line": 90,
"column": 4
},
"end": {
- "line": 74,
+ "line": 94,
"column": 7
}
}
@@ -3731,16 +5354,16 @@
"type": "Block",
"value": "*\n * Store page length in cookie\n * @param {String} cookie name\n ",
"range": [
- 1789,
- 1870
+ 2394,
+ 2475
],
"loc": {
"start": {
- "line": 79,
+ "line": 99,
"column": 4
},
"end": {
- "line": 82,
+ "line": 102,
"column": 7
}
}
@@ -3754,16 +5377,16 @@
"type": "Identifier",
"name": "savePageLength",
"range": [
- 1875,
- 1889
+ 2480,
+ 2494
],
"loc": {
"start": {
- "line": 83,
+ "line": 103,
"column": 4
},
"end": {
- "line": 83,
+ "line": 103,
"column": 18
}
}
@@ -3776,16 +5399,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1890,
- 1894
+ 2495,
+ 2499
],
"loc": {
"start": {
- "line": 83,
+ "line": 103,
"column": 19
},
"end": {
- "line": 83,
+ "line": 103,
"column": 23
}
}
@@ -3794,6 +5417,169 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2514,
+ 2518
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2519,
+ 2521
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 17
+ },
+ "end": {
+ "line": 104,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 2514,
+ 2521
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageLen",
+ "range": [
+ 2522,
+ 2537
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 20
+ },
+ "end": {
+ "line": 104,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 2514,
+ 2537
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 12
+ },
+ "end": {
+ "line": 104,
+ "column": 35
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 2513,
+ 2537
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 11
+ },
+ "end": {
+ "line": 104,
+ "column": 35
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 2552,
+ 2559
+ ],
+ "loc": {
+ "start": {
+ "line": 105,
+ "column": 12
+ },
+ "end": {
+ "line": 105,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 2538,
+ 2569
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 36
+ },
+ "end": {
+ "line": 106,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 2510,
+ 2569
+ ],
+ "loc": {
+ "start": {
+ "line": 104,
+ "column": 8
+ },
+ "end": {
+ "line": 106,
+ "column": 9
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -3805,16 +5591,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 1905,
- 1911
+ 2578,
+ 2584
],
"loc": {
"start": {
- "line": 84,
+ "line": 107,
"column": 8
},
"end": {
- "line": 84,
+ "line": 107,
"column": 14
}
}
@@ -3823,31 +5609,31 @@
"type": "Identifier",
"name": "write",
"range": [
- 1912,
- 1917
+ 2585,
+ 2590
],
"loc": {
"start": {
- "line": 84,
+ "line": 107,
"column": 15
},
"end": {
- "line": 84,
+ "line": 107,
"column": 20
}
}
},
"range": [
- 1905,
- 1917
+ 2578,
+ 2590
],
"loc": {
"start": {
- "line": 84,
+ "line": 107,
"column": 8
},
"end": {
- "line": 84,
+ "line": 107,
"column": 20
}
}
@@ -3857,16 +5643,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 1931,
- 1935
+ 2604,
+ 2608
],
"loc": {
"start": {
- "line": 85,
+ "line": 108,
"column": 12
},
"end": {
- "line": 85,
+ "line": 108,
"column": 16
}
}
@@ -3888,16 +5674,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1949,
- 1953
+ 2622,
+ 2626
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 16
}
}
@@ -3906,31 +5692,31 @@
"type": "Identifier",
"name": "tf",
"range": [
- 1954,
- 1956
+ 2627,
+ 2629
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 17
},
"end": {
- "line": 86,
+ "line": 109,
"column": 19
}
}
},
"range": [
- 1949,
- 1956
+ 2622,
+ 2629
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 19
}
}
@@ -3939,31 +5725,31 @@
"type": "Identifier",
"name": "feature",
"range": [
- 1957,
- 1964
+ 2630,
+ 2637
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 20
},
"end": {
- "line": 86,
+ "line": 109,
"column": 27
}
}
},
"range": [
- 1949,
- 1964
+ 2622,
+ 2637
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 27
}
}
@@ -3974,32 +5760,32 @@
"value": "paging",
"raw": "'paging'",
"range": [
- 1965,
- 1973
+ 2638,
+ 2646
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 28
},
"end": {
- "line": 86,
+ "line": 109,
"column": 36
}
}
}
],
"range": [
- 1949,
- 1974
+ 2622,
+ 2647
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 37
}
}
@@ -4008,31 +5794,31 @@
"type": "Identifier",
"name": "resultsPerPageSlc",
"range": [
- 1975,
- 1992
+ 2648,
+ 2665
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 38
},
"end": {
- "line": 86,
+ "line": 109,
"column": 55
}
}
},
"range": [
- 1949,
- 1992
+ 2622,
+ 2665
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 55
}
}
@@ -4041,31 +5827,31 @@
"type": "Identifier",
"name": "selectedIndex",
"range": [
- 1993,
- 2006
+ 2666,
+ 2679
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 56
},
"end": {
- "line": 86,
+ "line": 109,
"column": 69
}
}
},
"range": [
- 1949,
- 2006
+ 2622,
+ 2679
],
"loc": {
"start": {
- "line": 86,
+ "line": 109,
"column": 12
},
"end": {
- "line": 86,
+ "line": 109,
"column": 69
}
}
@@ -4076,16 +5862,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2020,
- 2024
+ 2693,
+ 2697
],
"loc": {
"start": {
- "line": 87,
+ "line": 110,
"column": 12
},
"end": {
- "line": 87,
+ "line": 110,
"column": 16
}
}
@@ -4094,78 +5880,78 @@
"type": "Identifier",
"name": "duration",
"range": [
- 2025,
- 2033
+ 2698,
+ 2706
],
"loc": {
"start": {
- "line": 87,
+ "line": 110,
"column": 17
},
"end": {
- "line": 87,
+ "line": 110,
"column": 25
}
}
},
"range": [
- 2020,
- 2033
+ 2693,
+ 2706
],
"loc": {
"start": {
- "line": 87,
+ "line": 110,
"column": 12
},
"end": {
- "line": 87,
+ "line": 110,
"column": 25
}
}
}
],
"range": [
- 1905,
- 2043
+ 2578,
+ 2716
],
"loc": {
"start": {
- "line": 84,
+ "line": 107,
"column": 8
},
"end": {
- "line": 88,
+ "line": 111,
"column": 9
}
}
},
"range": [
- 1905,
- 2044
+ 2578,
+ 2717
],
"loc": {
"start": {
- "line": 84,
+ "line": 107,
"column": 8
},
"end": {
- "line": 88,
+ "line": 111,
"column": 10
}
}
}
],
"range": [
- 1895,
- 2050
+ 2500,
+ 2723
],
"loc": {
"start": {
- "line": 83,
+ "line": 103,
"column": 24
},
"end": {
- "line": 89,
+ "line": 112,
"column": 5
}
}
@@ -4173,16 +5959,16 @@
"generator": false,
"expression": false,
"range": [
- 1889,
- 2050
+ 2494,
+ 2723
],
"loc": {
"start": {
- "line": 83,
+ "line": 103,
"column": 18
},
"end": {
- "line": 89,
+ "line": 112,
"column": 5
}
}
@@ -4190,16 +5976,16 @@
"kind": "method",
"computed": false,
"range": [
- 1875,
- 2050
+ 2480,
+ 2723
],
"loc": {
"start": {
- "line": 83,
+ "line": 103,
"column": 4
},
"end": {
- "line": 89,
+ "line": 112,
"column": 5
}
},
@@ -4208,16 +5994,16 @@
"type": "Block",
"value": "*\n * Store page length in cookie\n * @param {String} cookie name\n ",
"range": [
- 1789,
- 1870
+ 2394,
+ 2475
],
"loc": {
"start": {
- "line": 79,
+ "line": 99,
"column": 4
},
"end": {
- "line": 82,
+ "line": 102,
"column": 7
}
}
@@ -4228,16 +6014,16 @@
"type": "Block",
"value": "*\n * Retrieve page length from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 2056,
- 2166
+ 2729,
+ 2839
],
"loc": {
"start": {
- "line": 91,
+ "line": 114,
"column": 4
},
"end": {
- "line": 95,
+ "line": 118,
"column": 7
}
}
@@ -4251,16 +6037,16 @@
"type": "Identifier",
"name": "getPageLength",
"range": [
- 2171,
- 2184
+ 2844,
+ 2857
],
"loc": {
"start": {
- "line": 96,
+ "line": 119,
"column": 4
},
"end": {
- "line": 96,
+ "line": 119,
"column": 17
}
}
@@ -4273,16 +6059,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 2185,
- 2189
+ 2858,
+ 2862
],
"loc": {
"start": {
- "line": 96,
+ "line": 119,
"column": 18
},
"end": {
- "line": 96,
+ "line": 119,
"column": 22
}
}
@@ -4302,16 +6088,16 @@
"type": "Identifier",
"name": "Cookie",
"range": [
- 2207,
- 2213
+ 2880,
+ 2886
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 15
},
"end": {
- "line": 97,
+ "line": 120,
"column": 21
}
}
@@ -4320,31 +6106,31 @@
"type": "Identifier",
"name": "read",
"range": [
- 2214,
- 2218
+ 2887,
+ 2891
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 22
},
"end": {
- "line": 97,
+ "line": 120,
"column": 26
}
}
},
"range": [
- 2207,
- 2218
+ 2880,
+ 2891
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 15
},
"end": {
- "line": 97,
+ "line": 120,
"column": 26
}
}
@@ -4354,63 +6140,63 @@
"type": "Identifier",
"name": "name",
"range": [
- 2219,
- 2223
+ 2892,
+ 2896
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 27
},
"end": {
- "line": 97,
+ "line": 120,
"column": 31
}
}
}
],
"range": [
- 2207,
- 2224
+ 2880,
+ 2897
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 15
},
"end": {
- "line": 97,
+ "line": 120,
"column": 32
}
}
},
"range": [
- 2200,
- 2225
+ 2873,
+ 2898
],
"loc": {
"start": {
- "line": 97,
+ "line": 120,
"column": 8
},
"end": {
- "line": 97,
+ "line": 120,
"column": 33
}
}
}
],
"range": [
- 2190,
- 2231
+ 2863,
+ 2904
],
"loc": {
"start": {
- "line": 96,
+ "line": 119,
"column": 23
},
"end": {
- "line": 98,
+ "line": 121,
"column": 5
}
}
@@ -4418,16 +6204,16 @@
"generator": false,
"expression": false,
"range": [
- 2184,
- 2231
+ 2857,
+ 2904
],
"loc": {
"start": {
- "line": 96,
+ "line": 119,
"column": 17
},
"end": {
- "line": 98,
+ "line": 121,
"column": 5
}
}
@@ -4435,16 +6221,16 @@
"kind": "method",
"computed": false,
"range": [
- 2171,
- 2231
+ 2844,
+ 2904
],
"loc": {
"start": {
- "line": 96,
+ "line": 119,
"column": 4
},
"end": {
- "line": 98,
+ "line": 121,
"column": 5
}
},
@@ -4453,50 +6239,1383 @@
"type": "Block",
"value": "*\n * Retrieve page length from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 2056,
- 2166
+ 2729,
+ 2839
],
"loc": {
"start": {
- "line": 91,
+ "line": 114,
"column": 4
},
"end": {
- "line": 95,
+ "line": 118,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Remove all cookies\n ",
+ "range": [
+ 2910,
+ 2947
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 4
+ },
+ "end": {
+ "line": 125,
"column": 7
}
}
}
],
"static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "clearCookies",
+ "range": [
+ 2952,
+ 2964
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 4
+ },
+ "end": {
+ "line": 126,
+ "column": 16
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Cookie",
+ "range": [
+ 2976,
+ 2982
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remove",
+ "range": [
+ 2983,
+ 2989
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 15
+ },
+ "end": {
+ "line": 127,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 2976,
+ 2989
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2990,
+ 2994
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 22
+ },
+ "end": {
+ "line": 127,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 2995,
+ 2997
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 27
+ },
+ "end": {
+ "line": 127,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 2990,
+ 2997
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 22
+ },
+ "end": {
+ "line": 127,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltsValuesCookie",
+ "range": [
+ 2998,
+ 3014
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 30
+ },
+ "end": {
+ "line": 127,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 2990,
+ 3014
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 22
+ },
+ "end": {
+ "line": 127,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 2976,
+ 3015
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 2976,
+ 3016
+ ],
+ "loc": {
+ "start": {
+ "line": 127,
+ "column": 8
+ },
+ "end": {
+ "line": 127,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Cookie",
+ "range": [
+ 3025,
+ 3031
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remove",
+ "range": [
+ 3032,
+ 3038
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 15
+ },
+ "end": {
+ "line": 128,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 3025,
+ 3038
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3039,
+ 3043
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 22
+ },
+ "end": {
+ "line": 128,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3044,
+ 3046
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 27
+ },
+ "end": {
+ "line": 128,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3039,
+ 3046
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 22
+ },
+ "end": {
+ "line": 128,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgLenCookie",
+ "range": [
+ 3047,
+ 3058
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 30
+ },
+ "end": {
+ "line": 128,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 3039,
+ 3058
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 22
+ },
+ "end": {
+ "line": 128,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 3025,
+ 3059
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 3025,
+ 3060
+ ],
+ "loc": {
+ "start": {
+ "line": 128,
+ "column": 8
+ },
+ "end": {
+ "line": 128,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Cookie",
+ "range": [
+ 3069,
+ 3075
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remove",
+ "range": [
+ 3076,
+ 3082
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 15
+ },
+ "end": {
+ "line": 129,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 3069,
+ 3082
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 21
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3083,
+ 3087
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 22
+ },
+ "end": {
+ "line": 129,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3088,
+ 3090
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 27
+ },
+ "end": {
+ "line": 129,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 3083,
+ 3090
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 22
+ },
+ "end": {
+ "line": 129,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgNbCookie",
+ "range": [
+ 3091,
+ 3101
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 30
+ },
+ "end": {
+ "line": 129,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 3083,
+ 3101
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 22
+ },
+ "end": {
+ "line": 129,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 3069,
+ 3102
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 3069,
+ 3103
+ ],
+ "loc": {
+ "start": {
+ "line": 129,
+ "column": 8
+ },
+ "end": {
+ "line": 129,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 2966,
+ 3109
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 18
+ },
+ "end": {
+ "line": 130,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 2964,
+ 3109
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 16
+ },
+ "end": {
+ "line": 130,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 2952,
+ 3109
+ ],
+ "loc": {
+ "start": {
+ "line": 126,
+ "column": 4
+ },
+ "end": {
+ "line": 130,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Remove all cookies\n ",
+ "range": [
+ 2910,
+ 2947
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 4
+ },
+ "end": {
+ "line": 125,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "destroy",
+ "range": [
+ 3115,
+ 3122
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 4
+ },
+ "end": {
+ "line": 132,
+ "column": 11
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3134,
+ 3138
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3139,
+ 3146
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 13
+ },
+ "end": {
+ "line": 133,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3134,
+ 3146
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3147,
+ 3150
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 21
+ },
+ "end": {
+ "line": 133,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3134,
+ 3150
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 133,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 3152,
+ 3169
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 26
+ },
+ "end": {
+ "line": 133,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 3151,
+ 3170
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 25
+ },
+ "end": {
+ "line": 133,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3189,
+ 3193
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 17
+ },
+ "end": {
+ "line": 134,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "saveFilterValues",
+ "range": [
+ 3194,
+ 3210
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 22
+ },
+ "end": {
+ "line": 134,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 3189,
+ 3210
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 17
+ },
+ "end": {
+ "line": 134,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3211,
+ 3215
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 39
+ },
+ "end": {
+ "line": 134,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 3216,
+ 3218
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 44
+ },
+ "end": {
+ "line": 134,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 3211,
+ 3218
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 39
+ },
+ "end": {
+ "line": 134,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltsValuesCookie",
+ "range": [
+ 3219,
+ 3235
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 47
+ },
+ "end": {
+ "line": 134,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 3211,
+ 3235
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 39
+ },
+ "end": {
+ "line": 134,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 3189,
+ 3236
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 17
+ },
+ "end": {
+ "line": 134,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3184,
+ 3236
+ ],
+ "loc": {
+ "start": {
+ "line": 134,
+ "column": 12
+ },
+ "end": {
+ "line": 134,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 3134,
+ 3237
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 134,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 3134,
+ 3238
+ ],
+ "loc": {
+ "start": {
+ "line": 133,
+ "column": 8
+ },
+ "end": {
+ "line": 134,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3247,
+ 3251
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 3252,
+ 3259
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 13
+ },
+ "end": {
+ "line": 135,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 3247,
+ 3259
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 3260,
+ 3263
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 21
+ },
+ "end": {
+ "line": 135,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 3247,
+ 3263
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 3265,
+ 3289
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 26
+ },
+ "end": {
+ "line": 135,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 3264,
+ 3290
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 25
+ },
+ "end": {
+ "line": 135,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 3297,
+ 3301
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 58
+ },
+ "end": {
+ "line": 135,
+ "column": 62
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearCookies",
+ "range": [
+ 3302,
+ 3314
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 63
+ },
+ "end": {
+ "line": 135,
+ "column": 75
+ }
+ }
+ },
+ "range": [
+ 3297,
+ 3314
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 58
+ },
+ "end": {
+ "line": 135,
+ "column": 75
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 3297,
+ 3316
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 58
+ },
+ "end": {
+ "line": 135,
+ "column": 77
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 3292,
+ 3316
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 53
+ },
+ "end": {
+ "line": 135,
+ "column": 77
+ }
+ }
+ }
+ ],
+ "range": [
+ 3247,
+ 3317
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 78
+ }
+ }
+ },
+ "range": [
+ 3247,
+ 3318
+ ],
+ "loc": {
+ "start": {
+ "line": 135,
+ "column": 8
+ },
+ "end": {
+ "line": 135,
+ "column": 79
+ }
+ }
+ }
+ ],
+ "range": [
+ 3124,
+ 3324
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 13
+ },
+ "end": {
+ "line": 136,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 3122,
+ 3324
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 11
+ },
+ "end": {
+ "line": 136,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 3115,
+ 3324
+ ],
+ "loc": {
+ "start": {
+ "line": 132,
+ "column": 4
+ },
+ "end": {
+ "line": 136,
+ "column": 5
+ }
+ },
+ "static": false
}
],
"range": [
- 51,
- 2234
+ 81,
+ 3326
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 18
},
"end": {
- "line": 100,
+ "line": 137,
"column": 1
}
}
},
"range": [
- 40,
- 2234
+ 70,
+ 3326
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 7
},
"end": {
- "line": 100,
+ "line": 137,
"column": 1
}
},
@@ -4506,16 +7625,16 @@
"specifiers": [],
"source": null,
"range": [
- 33,
- 2234
+ 63,
+ 3326
],
"loc": {
"start": {
- "line": 3,
+ "line": 4,
"column": 0
},
"end": {
- "line": 100,
+ "line": 137,
"column": 1
}
}
@@ -4524,7 +7643,7 @@
"sourceType": "module",
"range": [
0,
- 2234
+ 3326
],
"loc": {
"start": {
@@ -4532,7 +7651,7 @@
"column": 0
},
"end": {
- "line": 100,
+ "line": 137,
"column": 1
}
},
@@ -4541,16 +7660,16 @@
"type": "Block",
"value": "*\n * Store, persistence manager\n * @param {Object} tf TableFilter instance\n *\n * TODO: use localStorage and fallback to cookie persistence\n ",
"range": [
- 58,
- 222
+ 88,
+ 252
],
"loc": {
"start": {
- "line": 5,
+ "line": 6,
"column": 4
},
"end": {
- "line": 10,
+ "line": 11,
"column": 7
}
}
@@ -4559,16 +7678,16 @@
"type": "Block",
"value": "*\n * Store filters' values in cookie\n * @param {String} cookie name\n ",
"range": [
- 423,
- 508
+ 697,
+ 782
],
"loc": {
"start": {
- "line": 20,
+ "line": 28,
"column": 4
},
"end": {
- "line": 23,
+ "line": 31,
"column": 7
}
}
@@ -4577,53 +7696,53 @@
"type": "Line",
"value": "store filters' values",
"range": [
- 599,
- 622
+ 941,
+ 964
],
"loc": {
"start": {
- "line": 27,
+ "line": 40,
"column": 8
},
"end": {
- "line": 27,
+ "line": 40,
"column": 31
}
}
},
{
"type": "Line",
- "value": "adds array size",
+ "value": "convert array to a || separated values",
"range": [
- 843,
- 860
+ 1070,
+ 1110
],
"loc": {
"start": {
- "line": 35,
- "column": 8
+ "line": 43,
+ "column": 12
},
"end": {
- "line": 35,
- "column": 25
+ "line": 43,
+ "column": 52
}
}
},
{
"type": "Line",
- "value": "writes cookie",
+ "value": "write cookie",
"range": [
- 912,
- 927
+ 1451,
+ 1465
],
"loc": {
"start": {
- "line": 38,
+ "line": 55,
"column": 8
},
"end": {
- "line": 38,
- "column": 23
+ "line": 55,
+ "column": 22
}
}
},
@@ -4631,16 +7750,16 @@
"type": "Block",
"value": "*\n * Retrieve filters' values from cookie\n * @param {String} cookie name\n * @return {Array}\n ",
"range": [
- 1058,
- 1171
+ 1596,
+ 1709
],
"loc": {
"start": {
- "line": 46,
+ "line": 63,
"column": 4
},
"end": {
- "line": 50,
+ "line": 67,
"column": 7
}
}
@@ -4649,16 +7768,16 @@
"type": "Line",
"value": " filters' values array",
"range": [
- 1299,
- 1323
+ 1837,
+ 1861
],
"loc": {
"start": {
- "line": 54,
+ "line": 71,
"column": 8
},
"end": {
- "line": 54,
+ "line": 71,
"column": 32
}
}
@@ -4667,16 +7786,16 @@
"type": "Block",
"value": "*\n * Store page number in cookie\n * @param {String} cookie name\n ",
"range": [
- 1367,
- 1448
+ 1905,
+ 1986
],
"loc": {
"start": {
- "line": 58,
+ "line": 75,
"column": 4
},
"end": {
- "line": 61,
+ "line": 78,
"column": 7
}
}
@@ -4685,16 +7804,16 @@
"type": "Block",
"value": "*\n * Retrieve page number from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 1612,
- 1722
+ 2217,
+ 2327
],
"loc": {
"start": {
- "line": 70,
+ "line": 90,
"column": 4
},
"end": {
- "line": 74,
+ "line": 94,
"column": 7
}
}
@@ -4703,16 +7822,16 @@
"type": "Block",
"value": "*\n * Store page length in cookie\n * @param {String} cookie name\n ",
"range": [
- 1789,
- 1870
+ 2394,
+ 2475
],
"loc": {
"start": {
- "line": 79,
+ "line": 99,
"column": 4
},
"end": {
- "line": 82,
+ "line": 102,
"column": 7
}
}
@@ -4721,16 +7840,34 @@
"type": "Block",
"value": "*\n * Retrieve page length from cookie\n * @param {String} cookie name\n * @return {String}\n ",
"range": [
- 2056,
- 2166
+ 2729,
+ 2839
],
"loc": {
"start": {
- "line": 91,
+ "line": 114,
"column": 4
},
"end": {
- "line": 95,
+ "line": 118,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Remove all cookies\n ",
+ "range": [
+ 2910,
+ 2947
+ ],
+ "loc": {
+ "start": {
+ "line": 123,
+ "column": 4
+ },
+ "end": {
+ "line": 125,
"column": 7
}
}
diff --git a/docs/ast/source/src/tablefilter.js.json b/docs/ast/source/src/tablefilter.js.json
index f0585dd8..7ad8131e 100644
--- a/docs/ast/source/src/tablefilter.js.json
+++ b/docs/ast/source/src/tablefilter.js.json
@@ -220,79 +220,6 @@
}
}
},
- {
- "type": "ImportDeclaration",
- "specifiers": [
- {
- "type": "ImportDefaultSpecifier",
- "local": {
- "type": "Identifier",
- "name": "Cookie",
- "range": [
- 89,
- 95
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 7
- },
- "end": {
- "line": 4,
- "column": 13
- }
- }
- },
- "range": [
- 89,
- 95
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 7
- },
- "end": {
- "line": 4,
- "column": 13
- }
- }
- }
- ],
- "source": {
- "type": "Literal",
- "value": "./cookie",
- "raw": "'./cookie'",
- "range": [
- 101,
- 111
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 19
- },
- "end": {
- "line": 4,
- "column": 29
- }
- }
- },
- "range": [
- 82,
- 112
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 0
- },
- "end": {
- "line": 4,
- "column": 30
- }
- }
- },
{
"type": "ImportDeclaration",
"specifiers": [
@@ -302,31 +229,31 @@
"type": "Identifier",
"name": "Types",
"range": [
- 120,
- 125
+ 89,
+ 94
],
"loc": {
"start": {
- "line": 5,
+ "line": 4,
"column": 7
},
"end": {
- "line": 5,
+ "line": 4,
"column": 12
}
}
},
"range": [
- 120,
- 125
+ 89,
+ 94
],
"loc": {
"start": {
- "line": 5,
+ "line": 4,
"column": 7
},
"end": {
- "line": 5,
+ "line": 4,
"column": 12
}
}
@@ -337,108 +264,35 @@
"value": "./types",
"raw": "'./types'",
"range": [
- 131,
- 140
+ 100,
+ 109
],
"loc": {
"start": {
- "line": 5,
+ "line": 4,
"column": 18
},
"end": {
- "line": 5,
+ "line": 4,
"column": 27
}
}
},
"range": [
- 113,
- 141
+ 82,
+ 110
],
"loc": {
"start": {
- "line": 5,
+ "line": 4,
"column": 0
},
"end": {
- "line": 5,
+ "line": 4,
"column": 28
}
}
},
- {
- "type": "ImportDeclaration",
- "specifiers": [
- {
- "type": "ImportDefaultSpecifier",
- "local": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 149,
- 152
- ],
- "loc": {
- "start": {
- "line": 6,
- "column": 7
- },
- "end": {
- "line": 6,
- "column": 10
- }
- }
- },
- "range": [
- 149,
- 152
- ],
- "loc": {
- "start": {
- "line": 6,
- "column": 7
- },
- "end": {
- "line": 6,
- "column": 10
- }
- }
- }
- ],
- "source": {
- "type": "Literal",
- "value": "./array",
- "raw": "'./array'",
- "range": [
- 158,
- 167
- ],
- "loc": {
- "start": {
- "line": 6,
- "column": 16
- },
- "end": {
- "line": 6,
- "column": 25
- }
- }
- },
- "range": [
- 142,
- 168
- ],
- "loc": {
- "start": {
- "line": 6,
- "column": 0
- },
- "end": {
- "line": 6,
- "column": 26
- }
- }
- },
{
"type": "ImportDeclaration",
"specifiers": [
@@ -448,31 +302,31 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 176,
- 186
+ 118,
+ 128
],
"loc": {
"start": {
- "line": 7,
+ "line": 5,
"column": 7
},
"end": {
- "line": 7,
+ "line": 5,
"column": 17
}
}
},
"range": [
- 176,
- 186
+ 118,
+ 128
],
"loc": {
"start": {
- "line": 7,
+ "line": 5,
"column": 7
},
"end": {
- "line": 7,
+ "line": 5,
"column": 17
}
}
@@ -483,31 +337,31 @@
"value": "./date",
"raw": "'./date'",
"range": [
- 192,
- 200
+ 134,
+ 142
],
"loc": {
"start": {
- "line": 7,
+ "line": 5,
"column": 23
},
"end": {
- "line": 7,
+ "line": 5,
"column": 31
}
}
},
"range": [
- 169,
- 201
+ 111,
+ 143
],
"loc": {
"start": {
- "line": 7,
+ "line": 5,
"column": 0
},
"end": {
- "line": 7,
+ "line": 5,
"column": 32
}
}
@@ -521,31 +375,31 @@
"type": "Identifier",
"name": "Helpers",
"range": [
- 209,
- 216
+ 151,
+ 158
],
"loc": {
"start": {
- "line": 8,
+ "line": 6,
"column": 7
},
"end": {
- "line": 8,
+ "line": 6,
"column": 14
}
}
},
"range": [
- 209,
- 216
+ 151,
+ 158
],
"loc": {
"start": {
- "line": 8,
+ "line": 6,
"column": 7
},
"end": {
- "line": 8,
+ "line": 6,
"column": 14
}
}
@@ -556,49 +410,140 @@
"value": "./helpers",
"raw": "'./helpers'",
"range": [
- 222,
- 233
+ 164,
+ 175
],
"loc": {
"start": {
- "line": 8,
+ "line": 6,
"column": 20
},
"end": {
- "line": 8,
+ "line": 6,
"column": 31
}
}
},
"range": [
- 202,
- 234
+ 144,
+ 176
],
"loc": {
"start": {
- "line": 8,
+ "line": 6,
"column": 0
},
"end": {
- "line": 8,
+ "line": 6,
"column": 32
}
+ }
+ },
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Emitter",
+ "range": [
+ 185,
+ 192
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 15
+ }
+ }
+ },
+ "imported": {
+ "type": "Identifier",
+ "name": "Emitter",
+ "range": [
+ 185,
+ 192
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 15
+ }
+ }
+ },
+ "range": [
+ 185,
+ 192
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 15
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "./emitter",
+ "raw": "'./emitter'",
+ "range": [
+ 199,
+ 210
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 22
+ },
+ "end": {
+ "line": 7,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 177,
+ 211
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 34
+ }
},
"trailingComments": [
{
"type": "Line",
"value": " Features",
"range": [
- 236,
- 247
+ 213,
+ 224
],
"loc": {
"start": {
- "line": 10,
+ "line": 9,
"column": 0
},
"end": {
- "line": 10,
+ "line": 9,
"column": 11
}
}
@@ -614,16 +559,16 @@
"type": "Identifier",
"name": "Store",
"range": [
- 256,
- 261
+ 233,
+ 238
],
"loc": {
"start": {
- "line": 11,
+ "line": 10,
"column": 8
},
"end": {
- "line": 11,
+ "line": 10,
"column": 13
}
}
@@ -632,31 +577,31 @@
"type": "Identifier",
"name": "Store",
"range": [
- 256,
- 261
+ 233,
+ 238
],
"loc": {
"start": {
- "line": 11,
+ "line": 10,
"column": 8
},
"end": {
- "line": 11,
+ "line": 10,
"column": 13
}
}
},
"range": [
- 256,
- 261
+ 233,
+ 238
],
"loc": {
"start": {
- "line": 11,
+ "line": 10,
"column": 8
},
"end": {
- "line": 11,
+ "line": 10,
"column": 13
}
}
@@ -667,31 +612,31 @@
"value": "./modules/store",
"raw": "'./modules/store'",
"range": [
- 268,
- 285
+ 245,
+ 262
],
"loc": {
"start": {
- "line": 11,
+ "line": 10,
"column": 20
},
"end": {
- "line": 11,
+ "line": 10,
"column": 37
}
}
},
"range": [
- 248,
- 286
+ 225,
+ 263
],
"loc": {
"start": {
- "line": 11,
+ "line": 10,
"column": 0
},
"end": {
- "line": 11,
+ "line": 10,
"column": 38
}
},
@@ -700,16 +645,16 @@
"type": "Line",
"value": " Features",
"range": [
- 236,
- 247
+ 213,
+ 224
],
"loc": {
"start": {
- "line": 10,
+ "line": 9,
"column": 0
},
"end": {
- "line": 10,
+ "line": 9,
"column": 11
}
}
@@ -725,16 +670,16 @@
"type": "Identifier",
"name": "GridLayout",
"range": [
- 295,
- 305
+ 272,
+ 282
],
"loc": {
"start": {
- "line": 12,
+ "line": 11,
"column": 8
},
"end": {
- "line": 12,
+ "line": 11,
"column": 18
}
}
@@ -743,31 +688,31 @@
"type": "Identifier",
"name": "GridLayout",
"range": [
- 295,
- 305
+ 272,
+ 282
],
"loc": {
"start": {
- "line": 12,
+ "line": 11,
"column": 8
},
"end": {
- "line": 12,
+ "line": 11,
"column": 18
}
}
},
"range": [
- 295,
- 305
+ 272,
+ 282
],
"loc": {
"start": {
- "line": 12,
+ "line": 11,
"column": 8
},
"end": {
- "line": 12,
+ "line": 11,
"column": 18
}
}
@@ -778,31 +723,31 @@
"value": "./modules/gridLayout",
"raw": "'./modules/gridLayout'",
"range": [
- 312,
- 334
+ 289,
+ 311
],
"loc": {
"start": {
- "line": 12,
+ "line": 11,
"column": 25
},
"end": {
- "line": 12,
+ "line": 11,
"column": 47
}
}
},
"range": [
- 287,
- 335
+ 264,
+ 312
],
"loc": {
"start": {
- "line": 12,
+ "line": 11,
"column": 0
},
"end": {
- "line": 12,
+ "line": 11,
"column": 48
}
}
@@ -816,16 +761,16 @@
"type": "Identifier",
"name": "Loader",
"range": [
- 344,
- 350
+ 321,
+ 327
],
"loc": {
"start": {
- "line": 13,
+ "line": 12,
"column": 8
},
"end": {
- "line": 13,
+ "line": 12,
"column": 14
}
}
@@ -834,31 +779,31 @@
"type": "Identifier",
"name": "Loader",
"range": [
- 344,
- 350
+ 321,
+ 327
],
"loc": {
"start": {
- "line": 13,
+ "line": 12,
"column": 8
},
"end": {
- "line": 13,
+ "line": 12,
"column": 14
}
}
},
"range": [
- 344,
- 350
+ 321,
+ 327
],
"loc": {
"start": {
- "line": 13,
+ "line": 12,
"column": 8
},
"end": {
- "line": 13,
+ "line": 12,
"column": 14
}
}
@@ -869,31 +814,31 @@
"value": "./modules/loader",
"raw": "'./modules/loader'",
"range": [
- 357,
- 375
+ 334,
+ 352
],
"loc": {
"start": {
- "line": 13,
+ "line": 12,
"column": 21
},
"end": {
- "line": 13,
+ "line": 12,
"column": 39
}
}
},
"range": [
- 336,
- 376
+ 313,
+ 353
],
"loc": {
"start": {
- "line": 13,
+ "line": 12,
"column": 0
},
"end": {
- "line": 13,
+ "line": 12,
"column": 40
}
}
@@ -907,16 +852,16 @@
"type": "Identifier",
"name": "HighlightKeyword",
"range": [
- 385,
- 401
+ 362,
+ 378
],
"loc": {
"start": {
- "line": 14,
+ "line": 13,
"column": 8
},
"end": {
- "line": 14,
+ "line": 13,
"column": 24
}
}
@@ -925,31 +870,31 @@
"type": "Identifier",
"name": "HighlightKeyword",
"range": [
- 385,
- 401
+ 362,
+ 378
],
"loc": {
"start": {
- "line": 14,
+ "line": 13,
"column": 8
},
"end": {
- "line": 14,
+ "line": 13,
"column": 24
}
}
},
"range": [
- 385,
- 401
+ 362,
+ 378
],
"loc": {
"start": {
- "line": 14,
+ "line": 13,
"column": 8
},
"end": {
- "line": 14,
+ "line": 13,
"column": 24
}
}
@@ -960,31 +905,31 @@
"value": "./modules/highlightKeywords",
"raw": "'./modules/highlightKeywords'",
"range": [
- 408,
- 437
+ 385,
+ 414
],
"loc": {
"start": {
- "line": 14,
+ "line": 13,
"column": 31
},
"end": {
- "line": 14,
+ "line": 13,
"column": 60
}
}
},
"range": [
- 377,
- 438
+ 354,
+ 415
],
"loc": {
"start": {
- "line": 14,
+ "line": 13,
"column": 0
},
"end": {
- "line": 14,
+ "line": 13,
"column": 61
}
}
@@ -998,16 +943,16 @@
"type": "Identifier",
"name": "PopupFilter",
"range": [
- 447,
- 458
+ 424,
+ 435
],
"loc": {
"start": {
- "line": 15,
+ "line": 14,
"column": 8
},
"end": {
- "line": 15,
+ "line": 14,
"column": 19
}
}
@@ -1016,31 +961,31 @@
"type": "Identifier",
"name": "PopupFilter",
"range": [
- 447,
- 458
+ 424,
+ 435
],
"loc": {
"start": {
- "line": 15,
+ "line": 14,
"column": 8
},
"end": {
- "line": 15,
+ "line": 14,
"column": 19
}
}
},
"range": [
- 447,
- 458
+ 424,
+ 435
],
"loc": {
"start": {
- "line": 15,
+ "line": 14,
"column": 8
},
"end": {
- "line": 15,
+ "line": 14,
"column": 19
}
}
@@ -1051,31 +996,31 @@
"value": "./modules/popupFilter",
"raw": "'./modules/popupFilter'",
"range": [
- 465,
- 488
+ 442,
+ 465
],
"loc": {
"start": {
- "line": 15,
+ "line": 14,
"column": 26
},
"end": {
- "line": 15,
+ "line": 14,
"column": 49
}
}
},
"range": [
- 439,
- 489
+ 416,
+ 466
],
"loc": {
"start": {
- "line": 15,
+ "line": 14,
"column": 0
},
"end": {
- "line": 15,
+ "line": 14,
"column": 50
}
}
@@ -1089,16 +1034,16 @@
"type": "Identifier",
"name": "Dropdown",
"range": [
- 498,
- 506
+ 475,
+ 483
],
"loc": {
"start": {
- "line": 16,
+ "line": 15,
"column": 8
},
"end": {
- "line": 16,
+ "line": 15,
"column": 16
}
}
@@ -1107,31 +1052,31 @@
"type": "Identifier",
"name": "Dropdown",
"range": [
- 498,
- 506
+ 475,
+ 483
],
"loc": {
"start": {
- "line": 16,
+ "line": 15,
"column": 8
},
"end": {
- "line": 16,
+ "line": 15,
"column": 16
}
}
},
"range": [
- 498,
- 506
+ 475,
+ 483
],
"loc": {
"start": {
- "line": 16,
+ "line": 15,
"column": 8
},
"end": {
- "line": 16,
+ "line": 15,
"column": 16
}
}
@@ -1142,31 +1087,31 @@
"value": "./modules/dropdown",
"raw": "'./modules/dropdown'",
"range": [
- 513,
- 533
+ 490,
+ 510
],
"loc": {
"start": {
- "line": 16,
+ "line": 15,
"column": 23
},
"end": {
- "line": 16,
+ "line": 15,
"column": 43
}
}
},
"range": [
- 490,
- 534
+ 467,
+ 511
],
"loc": {
"start": {
- "line": 16,
+ "line": 15,
"column": 0
},
"end": {
- "line": 16,
+ "line": 15,
"column": 44
}
}
@@ -1180,16 +1125,16 @@
"type": "Identifier",
"name": "CheckList",
"range": [
- 543,
- 552
+ 520,
+ 529
],
"loc": {
"start": {
- "line": 17,
+ "line": 16,
"column": 8
},
"end": {
- "line": 17,
+ "line": 16,
"column": 17
}
}
@@ -1198,31 +1143,31 @@
"type": "Identifier",
"name": "CheckList",
"range": [
- 543,
- 552
+ 520,
+ 529
],
"loc": {
"start": {
- "line": 17,
+ "line": 16,
"column": 8
},
"end": {
- "line": 17,
+ "line": 16,
"column": 17
}
}
},
"range": [
- 543,
- 552
+ 520,
+ 529
],
"loc": {
"start": {
- "line": 17,
+ "line": 16,
"column": 8
},
"end": {
- "line": 17,
+ "line": 16,
"column": 17
}
}
@@ -1233,31 +1178,31 @@
"value": "./modules/checkList",
"raw": "'./modules/checkList'",
"range": [
- 559,
- 580
+ 536,
+ 557
],
"loc": {
"start": {
- "line": 17,
+ "line": 16,
"column": 24
},
"end": {
- "line": 17,
+ "line": 16,
"column": 45
}
}
},
"range": [
- 535,
- 581
+ 512,
+ 558
],
"loc": {
"start": {
- "line": 17,
+ "line": 16,
"column": 0
},
"end": {
- "line": 17,
+ "line": 16,
"column": 46
}
}
@@ -1271,16 +1216,16 @@
"type": "Identifier",
"name": "RowsCounter",
"range": [
- 590,
- 601
+ 567,
+ 578
],
"loc": {
"start": {
- "line": 18,
+ "line": 17,
"column": 8
},
"end": {
- "line": 18,
+ "line": 17,
"column": 19
}
}
@@ -1289,31 +1234,31 @@
"type": "Identifier",
"name": "RowsCounter",
"range": [
- 590,
- 601
+ 567,
+ 578
],
"loc": {
"start": {
- "line": 18,
+ "line": 17,
"column": 8
},
"end": {
- "line": 18,
+ "line": 17,
"column": 19
}
}
},
"range": [
- 590,
- 601
+ 567,
+ 578
],
"loc": {
"start": {
- "line": 18,
+ "line": 17,
"column": 8
},
"end": {
- "line": 18,
+ "line": 17,
"column": 19
}
}
@@ -1324,31 +1269,31 @@
"value": "./modules/rowsCounter",
"raw": "'./modules/rowsCounter'",
"range": [
- 608,
- 631
+ 585,
+ 608
],
"loc": {
"start": {
- "line": 18,
+ "line": 17,
"column": 26
},
"end": {
- "line": 18,
+ "line": 17,
"column": 49
}
}
},
"range": [
- 582,
- 632
+ 559,
+ 609
],
"loc": {
"start": {
- "line": 18,
+ "line": 17,
"column": 0
},
"end": {
- "line": 18,
+ "line": 17,
"column": 50
}
}
@@ -1362,16 +1307,16 @@
"type": "Identifier",
"name": "StatusBar",
"range": [
- 641,
- 650
+ 618,
+ 627
],
"loc": {
"start": {
- "line": 19,
+ "line": 18,
"column": 8
},
"end": {
- "line": 19,
+ "line": 18,
"column": 17
}
}
@@ -1380,31 +1325,31 @@
"type": "Identifier",
"name": "StatusBar",
"range": [
- 641,
- 650
+ 618,
+ 627
],
"loc": {
"start": {
- "line": 19,
+ "line": 18,
"column": 8
},
"end": {
- "line": 19,
+ "line": 18,
"column": 17
}
}
},
"range": [
- 641,
- 650
+ 618,
+ 627
],
"loc": {
"start": {
- "line": 19,
+ "line": 18,
"column": 8
},
"end": {
- "line": 19,
+ "line": 18,
"column": 17
}
}
@@ -1415,31 +1360,31 @@
"value": "./modules/statusBar",
"raw": "'./modules/statusBar'",
"range": [
- 657,
- 678
+ 634,
+ 655
],
"loc": {
"start": {
- "line": 19,
+ "line": 18,
"column": 24
},
"end": {
- "line": 19,
+ "line": 18,
"column": 45
}
}
},
"range": [
- 633,
- 679
+ 610,
+ 656
],
"loc": {
"start": {
- "line": 19,
+ "line": 18,
"column": 0
},
"end": {
- "line": 19,
+ "line": 18,
"column": 46
}
}
@@ -1453,16 +1398,16 @@
"type": "Identifier",
"name": "Paging",
"range": [
- 688,
- 694
+ 665,
+ 671
],
"loc": {
"start": {
- "line": 20,
+ "line": 19,
"column": 8
},
"end": {
- "line": 20,
+ "line": 19,
"column": 14
}
}
@@ -1471,31 +1416,31 @@
"type": "Identifier",
"name": "Paging",
"range": [
- 688,
- 694
+ 665,
+ 671
],
"loc": {
"start": {
- "line": 20,
+ "line": 19,
"column": 8
},
"end": {
- "line": 20,
+ "line": 19,
"column": 14
}
}
},
"range": [
- 688,
- 694
+ 665,
+ 671
],
"loc": {
"start": {
- "line": 20,
+ "line": 19,
"column": 8
},
"end": {
- "line": 20,
+ "line": 19,
"column": 14
}
}
@@ -1506,31 +1451,31 @@
"value": "./modules/paging",
"raw": "'./modules/paging'",
"range": [
- 701,
- 719
+ 678,
+ 696
],
"loc": {
"start": {
- "line": 20,
+ "line": 19,
"column": 21
},
"end": {
- "line": 20,
+ "line": 19,
"column": 39
}
}
},
"range": [
- 680,
- 720
+ 657,
+ 697
],
"loc": {
"start": {
- "line": 20,
+ "line": 19,
"column": 0
},
"end": {
- "line": 20,
+ "line": 19,
"column": 40
}
}
@@ -1544,16 +1489,16 @@
"type": "Identifier",
"name": "ClearButton",
"range": [
- 729,
- 740
+ 706,
+ 717
],
"loc": {
"start": {
- "line": 21,
+ "line": 20,
"column": 8
},
"end": {
- "line": 21,
+ "line": 20,
"column": 19
}
}
@@ -1562,31 +1507,31 @@
"type": "Identifier",
"name": "ClearButton",
"range": [
- 729,
- 740
+ 706,
+ 717
],
"loc": {
"start": {
- "line": 21,
+ "line": 20,
"column": 8
},
"end": {
- "line": 21,
+ "line": 20,
"column": 19
}
}
},
"range": [
- 729,
- 740
+ 706,
+ 717
],
"loc": {
"start": {
- "line": 21,
+ "line": 20,
"column": 8
},
"end": {
- "line": 21,
+ "line": 20,
"column": 19
}
}
@@ -1597,31 +1542,31 @@
"value": "./modules/clearButton",
"raw": "'./modules/clearButton'",
"range": [
- 747,
- 770
+ 724,
+ 747
],
"loc": {
"start": {
- "line": 21,
+ "line": 20,
"column": 26
},
"end": {
- "line": 21,
+ "line": 20,
"column": 49
}
}
},
"range": [
- 721,
- 771
+ 698,
+ 748
],
"loc": {
"start": {
- "line": 21,
+ "line": 20,
"column": 0
},
"end": {
- "line": 21,
+ "line": 20,
"column": 50
}
}
@@ -1635,16 +1580,16 @@
"type": "Identifier",
"name": "Help",
"range": [
- 780,
- 784
+ 757,
+ 761
],
"loc": {
"start": {
- "line": 22,
+ "line": 21,
"column": 8
},
"end": {
- "line": 22,
+ "line": 21,
"column": 12
}
}
@@ -1653,31 +1598,31 @@
"type": "Identifier",
"name": "Help",
"range": [
- 780,
- 784
+ 757,
+ 761
],
"loc": {
"start": {
- "line": 22,
+ "line": 21,
"column": 8
},
"end": {
- "line": 22,
+ "line": 21,
"column": 12
}
}
},
"range": [
- 780,
- 784
+ 757,
+ 761
],
"loc": {
"start": {
- "line": 22,
+ "line": 21,
"column": 8
},
"end": {
- "line": 22,
+ "line": 21,
"column": 12
}
}
@@ -1688,31 +1633,31 @@
"value": "./modules/help",
"raw": "'./modules/help'",
"range": [
- 791,
- 807
+ 768,
+ 784
],
"loc": {
"start": {
- "line": 22,
+ "line": 21,
"column": 19
},
"end": {
- "line": 22,
+ "line": 21,
"column": 35
}
}
},
"range": [
- 772,
- 808
+ 749,
+ 785
],
"loc": {
"start": {
- "line": 22,
+ "line": 21,
"column": 0
},
"end": {
- "line": 22,
+ "line": 21,
"column": 36
}
}
@@ -1726,16 +1671,16 @@
"type": "Identifier",
"name": "AlternateRows",
"range": [
- 817,
- 830
+ 794,
+ 807
],
"loc": {
"start": {
- "line": 23,
+ "line": 22,
"column": 8
},
"end": {
- "line": 23,
+ "line": 22,
"column": 21
}
}
@@ -1744,31 +1689,31 @@
"type": "Identifier",
"name": "AlternateRows",
"range": [
- 817,
- 830
+ 794,
+ 807
],
"loc": {
"start": {
- "line": 23,
+ "line": 22,
"column": 8
},
"end": {
- "line": 23,
+ "line": 22,
"column": 21
}
}
},
"range": [
- 817,
- 830
+ 794,
+ 807
],
"loc": {
"start": {
- "line": 23,
+ "line": 22,
"column": 8
},
"end": {
- "line": 23,
+ "line": 22,
"column": 21
}
}
@@ -1779,31 +1724,31 @@
"value": "./modules/alternateRows",
"raw": "'./modules/alternateRows'",
"range": [
- 837,
- 862
+ 814,
+ 839
],
"loc": {
"start": {
- "line": 23,
+ "line": 22,
"column": 28
},
"end": {
- "line": 23,
+ "line": 22,
"column": 53
}
}
},
"range": [
- 809,
- 863
+ 786,
+ 840
],
"loc": {
"start": {
- "line": 23,
+ "line": 22,
"column": 0
},
"end": {
- "line": 23,
+ "line": 22,
"column": 54
}
}
@@ -1817,16 +1762,16 @@
"type": "Identifier",
"name": "NoResults",
"range": [
- 872,
- 881
+ 849,
+ 858
],
"loc": {
"start": {
- "line": 24,
+ "line": 23,
"column": 8
},
"end": {
- "line": 24,
+ "line": 23,
"column": 17
}
}
@@ -1835,31 +1780,31 @@
"type": "Identifier",
"name": "NoResults",
"range": [
- 872,
- 881
+ 849,
+ 858
],
"loc": {
"start": {
- "line": 24,
+ "line": 23,
"column": 8
},
"end": {
- "line": 24,
+ "line": 23,
"column": 17
}
}
},
"range": [
- 872,
- 881
+ 849,
+ 858
],
"loc": {
"start": {
- "line": 24,
+ "line": 23,
"column": 8
},
"end": {
- "line": 24,
+ "line": 23,
"column": 17
}
}
@@ -1870,31 +1815,31 @@
"value": "./modules/noResults",
"raw": "'./modules/noResults'",
"range": [
- 888,
- 909
+ 865,
+ 886
],
"loc": {
"start": {
- "line": 24,
+ "line": 23,
"column": 24
},
"end": {
- "line": 24,
+ "line": 23,
"column": 45
}
}
},
"range": [
- 864,
- 910
+ 841,
+ 887
],
"loc": {
"start": {
- "line": 24,
+ "line": 23,
"column": 0
},
"end": {
- "line": 24,
+ "line": 23,
"column": 46
}
}
@@ -1908,16 +1853,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 916,
- 922
+ 893,
+ 899
],
"loc": {
"start": {
- "line": 26,
+ "line": 25,
"column": 4
},
"end": {
- "line": 26,
+ "line": 25,
"column": 10
}
}
@@ -1926,31 +1871,31 @@
"type": "Identifier",
"name": "window",
"range": [
- 925,
- 931
+ 902,
+ 908
],
"loc": {
"start": {
- "line": 26,
+ "line": 25,
"column": 13
},
"end": {
- "line": 26,
+ "line": 25,
"column": 19
}
}
},
"range": [
- 916,
- 931
+ 893,
+ 908
],
"loc": {
"start": {
- "line": 26,
+ "line": 25,
"column": 4
},
"end": {
- "line": 26,
+ "line": 25,
"column": 19
}
}
@@ -1961,16 +1906,16 @@
"type": "Identifier",
"name": "doc",
"range": [
- 937,
- 940
+ 914,
+ 917
],
"loc": {
"start": {
- "line": 27,
+ "line": 26,
"column": 4
},
"end": {
- "line": 27,
+ "line": 26,
"column": 7
}
}
@@ -1982,16 +1927,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 943,
- 949
+ 920,
+ 926
],
"loc": {
"start": {
- "line": 27,
+ "line": 26,
"column": 10
},
"end": {
- "line": 27,
+ "line": 26,
"column": 16
}
}
@@ -2000,46 +1945,46 @@
"type": "Identifier",
"name": "document",
"range": [
- 950,
- 958
+ 927,
+ 935
],
"loc": {
"start": {
- "line": 27,
+ "line": 26,
"column": 17
},
"end": {
- "line": 27,
+ "line": 26,
"column": 25
}
}
},
"range": [
- 943,
- 958
+ 920,
+ 935
],
"loc": {
"start": {
- "line": 27,
+ "line": 26,
"column": 10
},
"end": {
- "line": 27,
+ "line": 26,
"column": 25
}
}
},
"range": [
- 937,
- 958
+ 914,
+ 935
],
"loc": {
"start": {
- "line": 27,
+ "line": 26,
"column": 4
},
"end": {
- "line": 27,
+ "line": 26,
"column": 25
}
}
@@ -2047,16 +1992,16 @@
],
"kind": "let",
"range": [
- 912,
- 959
+ 889,
+ 936
],
"loc": {
"start": {
- "line": 26,
+ "line": 25,
"column": 0
},
"end": {
- "line": 27,
+ "line": 26,
"column": 26
}
}
@@ -2069,16 +2014,16 @@
"type": "Identifier",
"name": "TableFilter",
"range": [
- 974,
- 985
+ 951,
+ 962
],
"loc": {
"start": {
- "line": 29,
+ "line": 28,
"column": 13
},
"end": {
- "line": 29,
+ "line": 28,
"column": 24
}
}
@@ -2093,16 +2038,16 @@
"type": "Identifier",
"name": "constructor",
"range": [
- 1310,
- 1321
+ 1288,
+ 1299
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 4
},
"end": {
- "line": 39,
+ "line": 38,
"column": 15
}
}
@@ -2117,31 +2062,31 @@
"type": "Identifier",
"name": "args",
"range": [
- 1325,
- 1329
+ 1303,
+ 1307
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 19
},
"end": {
- "line": 39,
+ "line": 38,
"column": 23
}
}
},
"range": [
- 1322,
- 1329
+ 1300,
+ 1307
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 16
},
"end": {
- "line": 39,
+ "line": 38,
"column": 23
}
}
@@ -2162,16 +2107,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 1344,
- 1348
+ 1322,
+ 1326
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 11
},
"end": {
- "line": 40,
+ "line": 39,
"column": 15
}
}
@@ -2180,31 +2125,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 1349,
- 1355
+ 1327,
+ 1333
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 16
},
"end": {
- "line": 40,
+ "line": 39,
"column": 22
}
}
},
"range": [
- 1344,
- 1355
+ 1322,
+ 1333
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 11
},
"end": {
- "line": 40,
+ "line": 39,
"column": 22
}
}
@@ -2214,31 +2159,31 @@
"value": 0,
"raw": "0",
"range": [
- 1360,
- 1361
+ 1338,
+ 1339
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 27
},
"end": {
- "line": 40,
+ "line": 39,
"column": 28
}
}
},
"range": [
- 1344,
- 1361
+ 1322,
+ 1339
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 11
},
"end": {
- "line": 40,
+ "line": 39,
"column": 28
}
}
@@ -2250,48 +2195,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 1364,
- 1371
+ 1342,
+ 1349
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 31
},
"end": {
- "line": 40,
+ "line": 39,
"column": 38
}
}
}
],
"range": [
- 1362,
- 1373
+ 1340,
+ 1351
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 29
},
"end": {
- "line": 40,
+ "line": 39,
"column": 40
}
}
},
"alternate": null,
"range": [
- 1341,
- 1373
+ 1319,
+ 1351
],
"loc": {
"start": {
- "line": 40,
+ "line": 39,
"column": 8
},
"end": {
- "line": 40,
+ "line": 39,
"column": 40
}
}
@@ -2307,16 +2252,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1383,
- 1387
+ 1361,
+ 1365
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 8
},
"end": {
- "line": 42,
+ "line": 41,
"column": 12
}
}
@@ -2325,31 +2270,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 1388,
- 1390
+ 1366,
+ 1368
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 13
},
"end": {
- "line": 42,
+ "line": 41,
"column": 15
}
}
},
"range": [
- 1383,
- 1390
+ 1361,
+ 1368
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 8
},
"end": {
- "line": 42,
+ "line": 41,
"column": 15
}
}
@@ -2359,46 +2304,46 @@
"value": null,
"raw": "null",
"range": [
- 1393,
- 1397
+ 1371,
+ 1375
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 18
},
"end": {
- "line": 42,
+ "line": 41,
"column": 22
}
}
},
"range": [
- 1383,
- 1397
+ 1361,
+ 1375
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 8
},
"end": {
- "line": 42,
+ "line": 41,
"column": 22
}
}
},
"range": [
- 1383,
- 1398
+ 1361,
+ 1376
],
"loc": {
"start": {
- "line": 42,
+ "line": 41,
"column": 8
},
"end": {
- "line": 42,
+ "line": 41,
"column": 23
}
}
@@ -2414,16 +2359,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1407,
- 1411
+ 1385,
+ 1389
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 8
},
"end": {
- "line": 43,
+ "line": 42,
"column": 12
}
}
@@ -2432,31 +2377,31 @@
"type": "Identifier",
"name": "version",
"range": [
- 1412,
- 1419
+ 1390,
+ 1397
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 13
},
"end": {
- "line": 43,
+ "line": 42,
"column": 20
}
}
},
"range": [
- 1407,
- 1419
+ 1385,
+ 1397
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 8
},
"end": {
- "line": 43,
+ "line": 42,
"column": 20
}
}
@@ -2466,46 +2411,46 @@
"value": "{VERSION}",
"raw": "'{VERSION}'",
"range": [
- 1422,
- 1433
+ 1400,
+ 1411
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 23
},
"end": {
- "line": 43,
+ "line": 42,
"column": 34
}
}
},
"range": [
- 1407,
- 1433
+ 1385,
+ 1411
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 8
},
"end": {
- "line": 43,
+ "line": 42,
"column": 34
}
}
},
"range": [
- 1407,
- 1434
+ 1385,
+ 1412
],
"loc": {
"start": {
- "line": 43,
+ "line": 42,
"column": 8
},
"end": {
- "line": 43,
+ "line": 42,
"column": 35
}
}
@@ -2521,16 +2466,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1443,
- 1447
+ 1421,
+ 1425
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 8
},
"end": {
- "line": 44,
+ "line": 43,
"column": 12
}
}
@@ -2539,31 +2484,31 @@
"type": "Identifier",
"name": "year",
"range": [
- 1448,
- 1452
+ 1426,
+ 1430
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 13
},
"end": {
- "line": 44,
+ "line": 43,
"column": 17
}
}
},
"range": [
- 1443,
- 1452
+ 1421,
+ 1430
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 8
},
"end": {
- "line": 44,
+ "line": 43,
"column": 17
}
}
@@ -2579,32 +2524,32 @@
"type": "Identifier",
"name": "Date",
"range": [
- 1459,
- 1463
+ 1437,
+ 1441
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 24
},
"end": {
- "line": 44,
+ "line": 43,
"column": 28
}
}
},
"arguments": [],
"range": [
- 1455,
- 1465
+ 1433,
+ 1443
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 20
},
"end": {
- "line": 44,
+ "line": 43,
"column": 30
}
}
@@ -2613,77 +2558,77 @@
"type": "Identifier",
"name": "getFullYear",
"range": [
- 1466,
- 1477
+ 1444,
+ 1455
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 31
},
"end": {
- "line": 44,
+ "line": 43,
"column": 42
}
}
},
"range": [
- 1455,
- 1477
+ 1433,
+ 1455
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 20
},
"end": {
- "line": 44,
+ "line": 43,
"column": 42
}
}
},
"arguments": [],
"range": [
- 1455,
- 1479
+ 1433,
+ 1457
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 20
},
"end": {
- "line": 44,
+ "line": 43,
"column": 44
}
}
},
"range": [
- 1443,
- 1479
+ 1421,
+ 1457
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 8
},
"end": {
- "line": 44,
+ "line": 43,
"column": 44
}
}
},
"range": [
- 1443,
- 1480
+ 1421,
+ 1458
],
"loc": {
"start": {
- "line": 44,
+ "line": 43,
"column": 8
},
"end": {
- "line": 44,
+ "line": 43,
"column": 45
}
}
@@ -2699,16 +2644,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1489,
- 1493
+ 1467,
+ 1471
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 8
},
"end": {
- "line": 45,
+ "line": 44,
"column": 12
}
}
@@ -2717,31 +2662,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1494,
- 1497
+ 1472,
+ 1475
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 13
},
"end": {
- "line": 45,
+ "line": 44,
"column": 16
}
}
},
"range": [
- 1489,
- 1497
+ 1467,
+ 1475
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 8
},
"end": {
- "line": 45,
+ "line": 44,
"column": 16
}
}
@@ -2751,46 +2696,46 @@
"value": null,
"raw": "null",
"range": [
- 1500,
- 1504
+ 1478,
+ 1482
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 19
},
"end": {
- "line": 45,
+ "line": 44,
"column": 23
}
}
},
"range": [
- 1489,
- 1504
+ 1467,
+ 1482
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 8
},
"end": {
- "line": 45,
+ "line": 44,
"column": 23
}
}
},
"range": [
- 1489,
- 1505
+ 1467,
+ 1483
],
"loc": {
"start": {
- "line": 45,
+ "line": 44,
"column": 8
},
"end": {
- "line": 45,
+ "line": 44,
"column": 24
}
}
@@ -2806,16 +2751,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1514,
- 1518
+ 1492,
+ 1496
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 8
},
"end": {
- "line": 46,
+ "line": 45,
"column": 12
}
}
@@ -2824,31 +2769,31 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 1519,
- 1527
+ 1497,
+ 1505
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 13
},
"end": {
- "line": 46,
+ "line": 45,
"column": 21
}
}
},
"range": [
- 1514,
- 1527
+ 1492,
+ 1505
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 8
},
"end": {
- "line": 46,
+ "line": 45,
"column": 21
}
}
@@ -2858,46 +2803,46 @@
"value": null,
"raw": "null",
"range": [
- 1530,
- 1534
+ 1508,
+ 1512
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 24
},
"end": {
- "line": 46,
+ "line": 45,
"column": 28
}
}
},
"range": [
- 1514,
- 1534
+ 1492,
+ 1512
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 8
},
"end": {
- "line": 46,
+ "line": 45,
"column": 28
}
}
},
"range": [
- 1514,
- 1535
+ 1492,
+ 1513
],
"loc": {
"start": {
- "line": 46,
+ "line": 45,
"column": 8
},
"end": {
- "line": 46,
+ "line": 45,
"column": 29
}
}
@@ -2913,16 +2858,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1544,
- 1548
+ 1522,
+ 1526
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 8
},
"end": {
- "line": 47,
+ "line": 46,
"column": 12
}
}
@@ -2931,31 +2876,31 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 1549,
- 1555
+ 1527,
+ 1533
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 13
},
"end": {
- "line": 47,
+ "line": 46,
"column": 19
}
}
},
"range": [
- 1544,
- 1555
+ 1522,
+ 1533
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 8
},
"end": {
- "line": 47,
+ "line": 46,
"column": 19
}
}
@@ -2965,46 +2910,46 @@
"value": null,
"raw": "null",
"range": [
- 1558,
- 1562
+ 1536,
+ 1540
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 22
},
"end": {
- "line": 47,
+ "line": 46,
"column": 26
}
}
},
"range": [
- 1544,
- 1562
+ 1522,
+ 1540
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 8
},
"end": {
- "line": 47,
+ "line": 46,
"column": 26
}
}
},
"range": [
- 1544,
- 1563
+ 1522,
+ 1541
],
"loc": {
"start": {
- "line": 47,
+ "line": 46,
"column": 8
},
"end": {
- "line": 47,
+ "line": 46,
"column": 27
}
}
@@ -3020,16 +2965,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1572,
- 1576
+ 1550,
+ 1554
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 8
},
"end": {
- "line": 48,
+ "line": 47,
"column": 12
}
}
@@ -3038,31 +2983,31 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 1577,
- 1587
+ 1555,
+ 1565
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 13
},
"end": {
- "line": 48,
+ "line": 47,
"column": 23
}
}
},
"range": [
- 1572,
- 1587
+ 1550,
+ 1565
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 8
},
"end": {
- "line": 48,
+ "line": 47,
"column": 23
}
}
@@ -3072,46 +3017,46 @@
"value": null,
"raw": "null",
"range": [
- 1590,
- 1594
+ 1568,
+ 1572
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 26
},
"end": {
- "line": 48,
+ "line": 47,
"column": 30
}
}
},
"range": [
- 1572,
- 1594
+ 1550,
+ 1572
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 8
},
"end": {
- "line": 48,
+ "line": 47,
"column": 30
}
}
},
"range": [
- 1572,
- 1595
+ 1550,
+ 1573
],
"loc": {
"start": {
- "line": 48,
+ "line": 47,
"column": 8
},
"end": {
- "line": 48,
+ "line": 47,
"column": 31
}
}
@@ -3127,16 +3072,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1604,
- 1608
+ 1582,
+ 1586
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 8
},
"end": {
- "line": 49,
+ "line": 48,
"column": 12
}
}
@@ -3145,31 +3090,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 1609,
- 1612
+ 1587,
+ 1590
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 13
},
"end": {
- "line": 49,
+ "line": 48,
"column": 16
}
}
},
"range": [
- 1604,
- 1612
+ 1582,
+ 1590
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 8
},
"end": {
- "line": 49,
+ "line": 48,
"column": 16
}
}
@@ -3178,46 +3123,46 @@
"type": "ObjectExpression",
"properties": [],
"range": [
- 1615,
- 1617
+ 1593,
+ 1595
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 19
},
"end": {
- "line": 49,
+ "line": 48,
"column": 21
}
}
},
"range": [
- 1604,
- 1617
+ 1582,
+ 1595
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 8
},
"end": {
- "line": 49,
+ "line": 48,
"column": 21
}
}
},
"range": [
- 1604,
- 1618
+ 1582,
+ 1596
],
"loc": {
"start": {
- "line": 49,
+ "line": 48,
"column": 8
},
"end": {
- "line": 49,
+ "line": 48,
"column": 22
}
}
@@ -3233,16 +3178,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1627,
- 1631
+ 1605,
+ 1609
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 8
},
"end": {
- "line": 50,
+ "line": 49,
"column": 12
}
}
@@ -3251,31 +3196,31 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 1632,
- 1648
+ 1610,
+ 1626
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 13
},
"end": {
- "line": 50,
+ "line": 49,
"column": 29
}
}
},
"range": [
- 1627,
- 1648
+ 1605,
+ 1626
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 8
},
"end": {
- "line": 50,
+ "line": 49,
"column": 29
}
}
@@ -3285,46 +3230,46 @@
"value": null,
"raw": "null",
"range": [
- 1651,
- 1655
+ 1629,
+ 1633
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 32
},
"end": {
- "line": 50,
+ "line": 49,
"column": 36
}
}
},
"range": [
- 1627,
- 1655
+ 1605,
+ 1633
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 8
},
"end": {
- "line": 50,
+ "line": 49,
"column": 36
}
}
},
"range": [
- 1627,
- 1656
+ 1605,
+ 1634
],
"loc": {
"start": {
- "line": 50,
+ "line": 49,
"column": 8
},
"end": {
- "line": 50,
+ "line": 49,
"column": 37
}
}
@@ -3340,16 +3285,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1665,
- 1669
+ 1643,
+ 1647
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 8
},
"end": {
- "line": 51,
+ "line": 50,
"column": 12
}
}
@@ -3358,31 +3303,31 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 1670,
- 1676
+ 1648,
+ 1654
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 13
},
"end": {
- "line": 51,
+ "line": 50,
"column": 19
}
}
},
"range": [
- 1665,
- 1676
+ 1643,
+ 1654
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 8
},
"end": {
- "line": 51,
+ "line": 50,
"column": 19
}
}
@@ -3392,46 +3337,46 @@
"value": null,
"raw": "null",
"range": [
- 1679,
- 1683
+ 1657,
+ 1661
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 22
},
"end": {
- "line": 51,
+ "line": 50,
"column": 26
}
}
},
"range": [
- 1665,
- 1683
+ 1643,
+ 1661
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 8
},
"end": {
- "line": 51,
+ "line": 50,
"column": 26
}
}
},
"range": [
- 1665,
- 1684
+ 1643,
+ 1662
],
"loc": {
"start": {
- "line": 51,
+ "line": 50,
"column": 8
},
"end": {
- "line": 51,
+ "line": 50,
"column": 27
}
}
@@ -3447,16 +3392,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1693,
- 1697
+ 1671,
+ 1675
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 8
},
"end": {
- "line": 52,
+ "line": 51,
"column": 12
}
}
@@ -3465,31 +3410,31 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 1698,
- 1705
+ 1676,
+ 1683
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 13
},
"end": {
- "line": 52,
+ "line": 51,
"column": 20
}
}
},
"range": [
- 1693,
- 1705
+ 1671,
+ 1683
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 8
},
"end": {
- "line": 52,
+ "line": 51,
"column": 20
}
}
@@ -3499,46 +3444,46 @@
"value": null,
"raw": "null",
"range": [
- 1708,
- 1712
+ 1686,
+ 1690
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 23
},
"end": {
- "line": 52,
+ "line": 51,
"column": 27
}
}
},
"range": [
- 1693,
- 1712
+ 1671,
+ 1690
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 8
},
"end": {
- "line": 52,
+ "line": 51,
"column": 27
}
}
},
"range": [
- 1693,
- 1713
+ 1671,
+ 1691
],
"loc": {
"start": {
- "line": 52,
+ "line": 51,
"column": 8
},
"end": {
- "line": 52,
+ "line": 51,
"column": 28
}
}
@@ -3554,16 +3499,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 1722,
- 1726
+ 1700,
+ 1704
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 8
},
"end": {
- "line": 53,
+ "line": 52,
"column": 12
}
}
@@ -3572,31 +3517,31 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 1727,
- 1735
+ 1705,
+ 1713
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 13
},
"end": {
- "line": 53,
+ "line": 52,
"column": 21
}
}
},
"range": [
- 1722,
- 1735
+ 1700,
+ 1713
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 8
},
"end": {
- "line": 53,
+ "line": 52,
"column": 21
}
}
@@ -3606,46 +3551,46 @@
"value": false,
"raw": "false",
"range": [
- 1738,
- 1743
+ 1716,
+ 1721
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 24
},
"end": {
- "line": 53,
+ "line": 52,
"column": 29
}
}
},
"range": [
- 1722,
- 1743
+ 1700,
+ 1721
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 8
},
"end": {
- "line": 53,
+ "line": 52,
"column": 29
}
}
},
"range": [
- 1722,
- 1744
+ 1700,
+ 1722
],
"loc": {
"start": {
- "line": 53,
+ "line": 52,
"column": 8
},
"end": {
- "line": 53,
+ "line": 52,
"column": 30
}
},
@@ -3654,16 +3599,16 @@
"type": "Line",
"value": " TODO: use for-of with babel plug-in",
"range": [
- 1754,
- 1792
+ 1732,
+ 1770
],
"loc": {
"start": {
- "line": 55,
+ "line": 54,
"column": 8
},
"end": {
- "line": 55,
+ "line": 54,
"column": 46
}
}
@@ -3681,16 +3626,16 @@
"type": "Identifier",
"name": "args",
"range": [
- 1801,
- 1805
+ 1779,
+ 1783
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 8
},
"end": {
- "line": 56,
+ "line": 55,
"column": 12
}
}
@@ -3699,31 +3644,31 @@
"type": "Identifier",
"name": "forEach",
"range": [
- 1806,
- 1813
+ 1784,
+ 1791
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 13
},
"end": {
- "line": 56,
+ "line": 55,
"column": 20
}
}
},
"range": [
- 1801,
- 1813
+ 1779,
+ 1791
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 8
},
"end": {
- "line": 56,
+ "line": 55,
"column": 20
}
}
@@ -3737,16 +3682,16 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1815,
- 1818
+ 1793,
+ 1796
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 22
},
"end": {
- "line": 56,
+ "line": 55,
"column": 25
}
}
@@ -3764,8 +3709,8 @@
"type": "Identifier",
"name": "argtype",
"range": [
- 1840,
- 1847
+ 1853,
+ 1860
],
"loc": {
"start": {
@@ -3785,8 +3730,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1857,
- 1860
+ 1870,
+ 1873
],
"loc": {
"start": {
@@ -3801,8 +3746,8 @@
},
"prefix": true,
"range": [
- 1850,
- 1860
+ 1863,
+ 1873
],
"loc": {
"start": {
@@ -3816,8 +3761,8 @@
}
},
"range": [
- 1840,
- 1860
+ 1853,
+ 1873
],
"loc": {
"start": {
@@ -3833,8 +3778,8 @@
],
"kind": "let",
"range": [
- 1836,
- 1861
+ 1849,
+ 1874
],
"loc": {
"start": {
@@ -3845,7 +3790,27 @@
"line": 57,
"column": 37
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " for (let arg of args) {",
+ "range": [
+ 1810,
+ 1836
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 34
+ }
+ }
+ }
+ ]
},
{
"type": "IfStatement",
@@ -3862,8 +3827,8 @@
"type": "Identifier",
"name": "argtype",
"range": [
- 1877,
- 1884
+ 1890,
+ 1897
],
"loc": {
"start": {
@@ -3881,8 +3846,8 @@
"value": "object",
"raw": "'object'",
"range": [
- 1889,
- 1897
+ 1902,
+ 1910
],
"loc": {
"start": {
@@ -3896,8 +3861,8 @@
}
},
"range": [
- 1877,
- 1897
+ 1890,
+ 1910
],
"loc": {
"start": {
@@ -3914,8 +3879,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1901,
- 1904
+ 1914,
+ 1917
],
"loc": {
"start": {
@@ -3929,8 +3894,8 @@
}
},
"range": [
- 1877,
- 1904
+ 1890,
+ 1917
],
"loc": {
"start": {
@@ -3953,8 +3918,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1908,
- 1911
+ 1921,
+ 1924
],
"loc": {
"start": {
@@ -3971,8 +3936,8 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 1912,
- 1920
+ 1925,
+ 1933
],
"loc": {
"start": {
@@ -3986,8 +3951,8 @@
}
},
"range": [
- 1908,
- 1920
+ 1921,
+ 1933
],
"loc": {
"start": {
@@ -4005,8 +3970,8 @@
"value": "TABLE",
"raw": "'TABLE'",
"range": [
- 1925,
- 1932
+ 1938,
+ 1945
],
"loc": {
"start": {
@@ -4020,8 +3985,8 @@
}
},
"range": [
- 1908,
- 1932
+ 1921,
+ 1945
],
"loc": {
"start": {
@@ -4035,8 +4000,8 @@
}
},
"range": [
- 1877,
- 1932
+ 1890,
+ 1945
],
"loc": {
"start": {
@@ -4063,8 +4028,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1951,
- 1955
+ 1964,
+ 1968
],
"loc": {
"start": {
@@ -4081,8 +4046,8 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 1956,
- 1959
+ 1969,
+ 1972
],
"loc": {
"start": {
@@ -4096,8 +4061,8 @@
}
},
"range": [
- 1951,
- 1959
+ 1964,
+ 1972
],
"loc": {
"start": {
@@ -4114,8 +4079,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1962,
- 1965
+ 1975,
+ 1978
],
"loc": {
"start": {
@@ -4129,8 +4094,8 @@
}
},
"range": [
- 1951,
- 1965
+ 1964,
+ 1978
],
"loc": {
"start": {
@@ -4144,8 +4109,8 @@
}
},
"range": [
- 1951,
- 1966
+ 1964,
+ 1979
],
"loc": {
"start": {
@@ -4169,8 +4134,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 1983,
- 1987
+ 1996,
+ 2000
],
"loc": {
"start": {
@@ -4187,8 +4152,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 1988,
- 1990
+ 2001,
+ 2003
],
"loc": {
"start": {
@@ -4202,8 +4167,8 @@
}
},
"range": [
- 1983,
- 1990
+ 1996,
+ 2003
],
"loc": {
"start": {
@@ -4226,8 +4191,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 1993,
- 1996
+ 2006,
+ 2009
],
"loc": {
"start": {
@@ -4244,8 +4209,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 1997,
- 1999
+ 2010,
+ 2012
],
"loc": {
"start": {
@@ -4259,8 +4224,8 @@
}
},
"range": [
- 1993,
- 1999
+ 2006,
+ 2012
],
"loc": {
"start": {
@@ -4284,8 +4249,8 @@
},
"tail": false,
"range": [
- 2003,
- 2009
+ 2016,
+ 2022
],
"loc": {
"start": {
@@ -4306,8 +4271,8 @@
},
"tail": true,
"range": [
- 2029,
- 2032
+ 2042,
+ 2045
],
"loc": {
"start": {
@@ -4333,8 +4298,8 @@
"type": "Identifier",
"name": "Date",
"range": [
- 2013,
- 2017
+ 2026,
+ 2030
],
"loc": {
"start": {
@@ -4349,8 +4314,8 @@
},
"arguments": [],
"range": [
- 2009,
- 2019
+ 2022,
+ 2032
],
"loc": {
"start": {
@@ -4367,8 +4332,8 @@
"type": "Identifier",
"name": "getTime",
"range": [
- 2020,
- 2027
+ 2033,
+ 2040
],
"loc": {
"start": {
@@ -4382,8 +4347,8 @@
}
},
"range": [
- 2009,
- 2027
+ 2022,
+ 2040
],
"loc": {
"start": {
@@ -4398,8 +4363,8 @@
},
"arguments": [],
"range": [
- 2009,
- 2029
+ 2022,
+ 2042
],
"loc": {
"start": {
@@ -4414,8 +4379,8 @@
}
],
"range": [
- 2003,
- 2032
+ 2016,
+ 2045
],
"loc": {
"start": {
@@ -4429,8 +4394,8 @@
}
},
"range": [
- 1993,
- 2032
+ 2006,
+ 2045
],
"loc": {
"start": {
@@ -4444,8 +4409,8 @@
}
},
"range": [
- 1983,
- 2032
+ 1996,
+ 2045
],
"loc": {
"start": {
@@ -4459,8 +4424,8 @@
}
},
"range": [
- 1983,
- 2033
+ 1996,
+ 2046
],
"loc": {
"start": {
@@ -4475,8 +4440,8 @@
}
],
"range": [
- 1933,
- 2047
+ 1946,
+ 2060
],
"loc": {
"start": {
@@ -4498,8 +4463,8 @@
"type": "Identifier",
"name": "argtype",
"range": [
- 2056,
- 2063
+ 2069,
+ 2076
],
"loc": {
"start": {
@@ -4517,8 +4482,8 @@
"value": "string",
"raw": "'string'",
"range": [
- 2068,
- 2076
+ 2081,
+ 2089
],
"loc": {
"start": {
@@ -4532,8 +4497,8 @@
}
},
"range": [
- 2056,
- 2076
+ 2069,
+ 2089
],
"loc": {
"start": {
@@ -4560,8 +4525,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2095,
- 2099
+ 2108,
+ 2112
],
"loc": {
"start": {
@@ -4578,8 +4543,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 2100,
- 2102
+ 2113,
+ 2115
],
"loc": {
"start": {
@@ -4593,8 +4558,8 @@
}
},
"range": [
- 2095,
- 2102
+ 2108,
+ 2115
],
"loc": {
"start": {
@@ -4611,8 +4576,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 2105,
- 2108
+ 2118,
+ 2121
],
"loc": {
"start": {
@@ -4626,8 +4591,8 @@
}
},
"range": [
- 2095,
- 2108
+ 2108,
+ 2121
],
"loc": {
"start": {
@@ -4641,8 +4606,8 @@
}
},
"range": [
- 2095,
- 2109
+ 2108,
+ 2122
],
"loc": {
"start": {
@@ -4666,8 +4631,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2126,
- 2130
+ 2139,
+ 2143
],
"loc": {
"start": {
@@ -4684,8 +4649,8 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2131,
- 2134
+ 2144,
+ 2147
],
"loc": {
"start": {
@@ -4699,8 +4664,8 @@
}
},
"range": [
- 2126,
- 2134
+ 2139,
+ 2147
],
"loc": {
"start": {
@@ -4722,8 +4687,8 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 2137,
- 2140
+ 2150,
+ 2153
],
"loc": {
"start": {
@@ -4740,8 +4705,8 @@
"type": "Identifier",
"name": "id",
"range": [
- 2141,
- 2143
+ 2154,
+ 2156
],
"loc": {
"start": {
@@ -4755,8 +4720,8 @@
}
},
"range": [
- 2137,
- 2143
+ 2150,
+ 2156
],
"loc": {
"start": {
@@ -4774,8 +4739,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 2144,
- 2147
+ 2157,
+ 2160
],
"loc": {
"start": {
@@ -4790,8 +4755,8 @@
}
],
"range": [
- 2137,
- 2148
+ 2150,
+ 2161
],
"loc": {
"start": {
@@ -4805,8 +4770,8 @@
}
},
"range": [
- 2126,
- 2148
+ 2139,
+ 2161
],
"loc": {
"start": {
@@ -4820,8 +4785,8 @@
}
},
"range": [
- 2126,
- 2149
+ 2139,
+ 2162
],
"loc": {
"start": {
@@ -4836,8 +4801,8 @@
}
],
"range": [
- 2077,
- 2163
+ 2090,
+ 2176
],
"loc": {
"start": {
@@ -4859,8 +4824,8 @@
"type": "Identifier",
"name": "argtype",
"range": [
- 2172,
- 2179
+ 2185,
+ 2192
],
"loc": {
"start": {
@@ -4878,8 +4843,8 @@
"value": "number",
"raw": "'number'",
"range": [
- 2184,
- 2192
+ 2197,
+ 2205
],
"loc": {
"start": {
@@ -4893,8 +4858,8 @@
}
},
"range": [
- 2172,
- 2192
+ 2185,
+ 2205
],
"loc": {
"start": {
@@ -4921,8 +4886,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2211,
- 2215
+ 2224,
+ 2228
],
"loc": {
"start": {
@@ -4939,8 +4904,8 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2216,
- 2224
+ 2229,
+ 2237
],
"loc": {
"start": {
@@ -4954,8 +4919,8 @@
}
},
"range": [
- 2211,
- 2224
+ 2224,
+ 2237
],
"loc": {
"start": {
@@ -4972,8 +4937,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 2227,
- 2230
+ 2240,
+ 2243
],
"loc": {
"start": {
@@ -4987,8 +4952,8 @@
}
},
"range": [
- 2211,
- 2230
+ 2224,
+ 2243
],
"loc": {
"start": {
@@ -5002,8 +4967,8 @@
}
},
"range": [
- 2211,
- 2231
+ 2224,
+ 2244
],
"loc": {
"start": {
@@ -5018,8 +4983,8 @@
}
],
"range": [
- 2193,
- 2245
+ 2206,
+ 2258
],
"loc": {
"start": {
@@ -5041,8 +5006,8 @@
"type": "Identifier",
"name": "argtype",
"range": [
- 2254,
- 2261
+ 2267,
+ 2274
],
"loc": {
"start": {
@@ -5060,8 +5025,8 @@
"value": "object",
"raw": "'object'",
"range": [
- 2266,
- 2274
+ 2279,
+ 2287
],
"loc": {
"start": {
@@ -5075,8 +5040,8 @@
}
},
"range": [
- 2254,
- 2274
+ 2267,
+ 2287
],
"loc": {
"start": {
@@ -5103,8 +5068,8 @@
"object": {
"type": "ThisExpression",
"range": [
- 2293,
- 2297
+ 2306,
+ 2310
],
"loc": {
"start": {
@@ -5121,8 +5086,8 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2298,
- 2301
+ 2311,
+ 2314
],
"loc": {
"start": {
@@ -5136,8 +5101,8 @@
}
},
"range": [
- 2293,
- 2301
+ 2306,
+ 2314
],
"loc": {
"start": {
@@ -5154,8 +5119,8 @@
"type": "Identifier",
"name": "arg",
"range": [
- 2304,
- 2307
+ 2317,
+ 2320
],
"loc": {
"start": {
@@ -5169,8 +5134,8 @@
}
},
"range": [
- 2293,
- 2307
+ 2306,
+ 2320
],
"loc": {
"start": {
@@ -5184,8 +5149,8 @@
}
},
"range": [
- 2293,
- 2308
+ 2306,
+ 2321
],
"loc": {
"start": {
@@ -5200,8 +5165,8 @@
}
],
"range": [
- 2275,
- 2322
+ 2288,
+ 2335
],
"loc": {
"start": {
@@ -5216,8 +5181,8 @@
},
"alternate": null,
"range": [
- 2251,
- 2322
+ 2264,
+ 2335
],
"loc": {
"start": {
@@ -5231,8 +5196,8 @@
}
},
"range": [
- 2169,
- 2322
+ 2182,
+ 2335
],
"loc": {
"start": {
@@ -5246,8 +5211,8 @@
}
},
"range": [
- 2053,
- 2322
+ 2066,
+ 2335
],
"loc": {
"start": {
@@ -5261,8 +5226,8 @@
}
},
"range": [
- 1874,
- 2322
+ 1887,
+ 2335
],
"loc": {
"start": {
@@ -5273,20 +5238,40 @@
"line": 68,
"column": 13
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 2344,
+ 2348
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 12
+ }
+ }
+ }
+ ]
}
],
"range": [
- 1822,
- 2332
+ 1800,
+ 2358
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 29
},
"end": {
- "line": 69,
+ "line": 70,
"column": 9
}
}
@@ -5294,47 +5279,47 @@
"generator": false,
"expression": false,
"range": [
- 1814,
- 2332
+ 1792,
+ 2358
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 21
},
"end": {
- "line": 69,
+ "line": 70,
"column": 9
}
}
}
],
"range": [
- 1801,
- 2333
+ 1779,
+ 2359
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 8
},
"end": {
- "line": 69,
+ "line": 70,
"column": 10
}
}
},
"range": [
- 1801,
- 2334
+ 1779,
+ 2360
],
"loc": {
"start": {
- "line": 56,
+ "line": 55,
"column": 8
},
"end": {
- "line": 69,
+ "line": 70,
"column": 11
}
},
@@ -5343,16 +5328,16 @@
"type": "Line",
"value": " TODO: use for-of with babel plug-in",
"range": [
- 1754,
- 1792
+ 1732,
+ 1770
],
"loc": {
"start": {
- "line": 55,
+ "line": 54,
"column": 8
},
"end": {
- "line": 55,
+ "line": 54,
"column": 46
}
}
@@ -5376,16 +5361,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2348,
- 2352
+ 2374,
+ 2378
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 12
},
"end": {
- "line": 71,
+ "line": 72,
"column": 16
}
}
@@ -5394,47 +5379,47 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2353,
- 2356
+ 2379,
+ 2382
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 17
},
"end": {
- "line": 71,
+ "line": 72,
"column": 20
}
}
},
"range": [
- 2348,
- 2356
+ 2374,
+ 2382
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 12
},
"end": {
- "line": 71,
+ "line": 72,
"column": 20
}
}
},
"prefix": true,
"range": [
- 2347,
- 2356
+ 2373,
+ 2382
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 11
},
"end": {
- "line": 71,
+ "line": 72,
"column": 20
}
}
@@ -5451,16 +5436,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2360,
- 2364
+ 2386,
+ 2390
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 24
},
"end": {
- "line": 71,
+ "line": 72,
"column": 28
}
}
@@ -5469,31 +5454,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 2365,
- 2368
+ 2391,
+ 2394
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 29
},
"end": {
- "line": 71,
+ "line": 72,
"column": 32
}
}
},
"range": [
- 2360,
- 2368
+ 2386,
+ 2394
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 24
},
"end": {
- "line": 71,
+ "line": 72,
"column": 32
}
}
@@ -5502,31 +5487,31 @@
"type": "Identifier",
"name": "nodeName",
"range": [
- 2369,
- 2377
+ 2395,
+ 2403
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 33
},
"end": {
- "line": 71,
+ "line": 72,
"column": 41
}
}
},
"range": [
- 2360,
- 2377
+ 2386,
+ 2403
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 24
},
"end": {
- "line": 71,
+ "line": 72,
"column": 41
}
}
@@ -5536,46 +5521,46 @@
"value": "TABLE",
"raw": "'TABLE'",
"range": [
- 2381,
- 2388
+ 2407,
+ 2414
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 45
},
"end": {
- "line": 71,
+ "line": 72,
"column": 52
}
}
},
"range": [
- 2360,
- 2388
+ 2386,
+ 2414
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 24
},
"end": {
- "line": 71,
+ "line": 72,
"column": 52
}
}
},
"range": [
- 2347,
- 2388
+ 2373,
+ 2414
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 11
},
"end": {
- "line": 71,
+ "line": 72,
"column": 52
}
}
@@ -5591,16 +5576,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2392,
- 2396
+ 2418,
+ 2422
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 56
},
"end": {
- "line": 71,
+ "line": 72,
"column": 60
}
}
@@ -5609,47 +5594,47 @@
"type": "Identifier",
"name": "getRowsNb",
"range": [
- 2397,
- 2406
+ 2423,
+ 2432
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 61
},
"end": {
- "line": 71,
+ "line": 72,
"column": 70
}
}
},
"range": [
- 2392,
- 2406
+ 2418,
+ 2432
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 56
},
"end": {
- "line": 71,
+ "line": 72,
"column": 70
}
}
},
"arguments": [],
"range": [
- 2392,
- 2408
+ 2418,
+ 2434
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 56
},
"end": {
- "line": 71,
+ "line": 72,
"column": 72
}
}
@@ -5659,46 +5644,46 @@
"value": 0,
"raw": "0",
"range": [
- 2413,
- 2414
+ 2439,
+ 2440
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 77
},
"end": {
- "line": 71,
+ "line": 72,
"column": 78
}
}
},
"range": [
- 2392,
- 2414
+ 2418,
+ 2440
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 56
},
"end": {
- "line": 71,
+ "line": 72,
"column": 78
}
}
},
"range": [
- 2347,
- 2414
+ 2373,
+ 2440
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 11
},
"end": {
- "line": 71,
+ "line": 72,
"column": 78
}
}
@@ -5714,16 +5699,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 2439,
- 2444
+ 2465,
+ 2470
],
"loc": {
"start": {
- "line": 72,
+ "line": 73,
"column": 22
},
"end": {
- "line": 72,
+ "line": 73,
"column": 27
}
}
@@ -5734,97 +5719,117 @@
"value": "Could not instantiate TableFilter: HTML table not found.",
"raw": "'Could not instantiate TableFilter: HTML table not found.'",
"range": [
- 2462,
- 2520
+ 2488,
+ 2546
],
"loc": {
"start": {
- "line": 73,
+ "line": 74,
"column": 16
},
"end": {
- "line": 73,
+ "line": 74,
"column": 74
}
}
}
],
"range": [
- 2435,
- 2521
+ 2461,
+ 2547
],
"loc": {
"start": {
- "line": 72,
+ "line": 73,
"column": 18
},
"end": {
- "line": 73,
+ "line": 74,
"column": 75
}
}
},
"range": [
- 2429,
- 2522
+ 2455,
+ 2548
],
"loc": {
"start": {
- "line": 72,
+ "line": 73,
"column": 12
},
"end": {
- "line": 73,
+ "line": 74,
"column": 76
}
}
}
],
"range": [
- 2415,
- 2532
+ 2441,
+ 2558
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 79
},
"end": {
- "line": 74,
+ "line": 75,
"column": 9
}
}
},
"alternate": null,
"range": [
- 2344,
- 2532
+ 2370,
+ 2558
],
"loc": {
"start": {
- "line": 71,
+ "line": 72,
"column": 8
},
"end": {
- "line": 74,
+ "line": 75,
"column": 9
}
},
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 2344,
+ 2348
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 12
+ }
+ }
+ }
+ ],
"trailingComments": [
{
"type": "Line",
"value": " configuration object",
"range": [
- 2542,
- 2565
+ 2568,
+ 2591
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 8
},
"end": {
- "line": 76,
+ "line": 77,
"column": 31
}
}
@@ -5840,16 +5845,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 2578,
- 2579
+ 2604,
+ 2605
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 12
},
"end": {
- "line": 77,
+ "line": 78,
"column": 13
}
}
@@ -5860,16 +5865,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2582,
- 2586
+ 2608,
+ 2612
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 16
},
"end": {
- "line": 77,
+ "line": 78,
"column": 20
}
}
@@ -5878,46 +5883,46 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 2587,
- 2590
+ 2613,
+ 2616
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 21
},
"end": {
- "line": 77,
+ "line": 78,
"column": 24
}
}
},
"range": [
- 2582,
- 2590
+ 2608,
+ 2616
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 16
},
"end": {
- "line": 77,
+ "line": 78,
"column": 24
}
}
},
"range": [
- 2578,
- 2590
+ 2604,
+ 2616
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 12
},
"end": {
- "line": 77,
+ "line": 78,
"column": 24
}
}
@@ -5925,16 +5930,16 @@
],
"kind": "let",
"range": [
- 2574,
- 2591
+ 2600,
+ 2617
],
"loc": {
"start": {
- "line": 77,
+ "line": 78,
"column": 8
},
"end": {
- "line": 77,
+ "line": 78,
"column": 25
}
},
@@ -5943,36 +5948,160 @@
"type": "Line",
"value": " configuration object",
"range": [
- 2542,
- 2565
+ 2568,
+ 2591
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 8
},
"end": {
- "line": 76,
+ "line": 77,
"column": 31
}
}
}
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 2627,
+ 2631
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 2632,
+ 2639
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 13
+ },
+ "end": {
+ "line": 80,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 2627,
+ 2639
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Emitter",
+ "range": [
+ 2646,
+ 2653
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 27
+ },
+ "end": {
+ "line": 80,
+ "column": 34
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 2642,
+ 2655
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 23
+ },
+ "end": {
+ "line": 80,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 2627,
+ 2655
+ ],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 2627,
+ 2656
],
+ "loc": {
+ "start": {
+ "line": 80,
+ "column": 8
+ },
+ "end": {
+ "line": 80,
+ "column": 37
+ }
+ },
"trailingComments": [
{
"type": "Line",
"value": "Start row et cols nb",
"range": [
- 2601,
- 2623
+ 2666,
+ 2688
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 8
},
"end": {
- "line": 79,
+ "line": 82,
"column": 30
}
}
@@ -5990,16 +6119,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2632,
- 2636
+ 2697,
+ 2701
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 8
},
"end": {
- "line": 80,
+ "line": 83,
"column": 12
}
}
@@ -6008,31 +6137,31 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 2637,
- 2643
+ 2702,
+ 2708
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 13
},
"end": {
- "line": 80,
+ "line": 83,
"column": 19
}
}
},
"range": [
- 2632,
- 2643
+ 2697,
+ 2708
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 8
},
"end": {
- "line": 80,
+ "line": 83,
"column": 19
}
}
@@ -6048,16 +6177,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2646,
- 2650
+ 2711,
+ 2715
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 22
},
"end": {
- "line": 80,
+ "line": 83,
"column": 26
}
}
@@ -6066,31 +6195,31 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2651,
- 2659
+ 2716,
+ 2724
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 27
},
"end": {
- "line": 80,
+ "line": 83,
"column": 35
}
}
},
"range": [
- 2646,
- 2659
+ 2711,
+ 2724
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 22
},
"end": {
- "line": 80,
+ "line": 83,
"column": 35
}
}
@@ -6100,31 +6229,31 @@
"value": null,
"raw": "null",
"range": [
- 2664,
- 2668
+ 2729,
+ 2733
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 40
},
"end": {
- "line": 80,
+ "line": 83,
"column": 44
}
}
},
"range": [
- 2646,
- 2668
+ 2711,
+ 2733
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 22
},
"end": {
- "line": 80,
+ "line": 83,
"column": 44
}
}
@@ -6134,16 +6263,16 @@
"value": 2,
"raw": "2",
"range": [
- 2671,
- 2672
+ 2736,
+ 2737
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 47
},
"end": {
- "line": 80,
+ "line": 83,
"column": 48
}
}
@@ -6157,16 +6286,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2676,
- 2680
+ 2741,
+ 2745
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 52
},
"end": {
- "line": 80,
+ "line": 83,
"column": 56
}
}
@@ -6175,31 +6304,31 @@
"type": "Identifier",
"name": "startRow",
"range": [
- 2681,
- 2689
+ 2746,
+ 2754
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 57
},
"end": {
- "line": 80,
+ "line": 83,
"column": 65
}
}
},
"range": [
- 2676,
- 2689
+ 2741,
+ 2754
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 52
},
"end": {
- "line": 80,
+ "line": 83,
"column": 65
}
}
@@ -6209,76 +6338,76 @@
"value": 1,
"raw": "1",
"range": [
- 2690,
- 2691
+ 2755,
+ 2756
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 66
},
"end": {
- "line": 80,
+ "line": 83,
"column": 67
}
}
},
"range": [
- 2676,
- 2691
+ 2741,
+ 2756
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 52
},
"end": {
- "line": 80,
+ "line": 83,
"column": 67
}
}
},
"range": [
- 2646,
- 2692
+ 2711,
+ 2757
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 22
},
"end": {
- "line": 80,
+ "line": 83,
"column": 68
}
}
},
"range": [
- 2632,
- 2692
+ 2697,
+ 2757
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 8
},
"end": {
- "line": 80,
+ "line": 83,
"column": 68
}
}
},
"range": [
- 2632,
- 2693
+ 2697,
+ 2758
],
"loc": {
"start": {
- "line": 80,
+ "line": 83,
"column": 8
},
"end": {
- "line": 80,
+ "line": 83,
"column": 69
}
},
@@ -6287,16 +6416,16 @@
"type": "Line",
"value": "Start row et cols nb",
"range": [
- 2601,
- 2623
+ 2666,
+ 2688
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 8
},
"end": {
- "line": 79,
+ "line": 82,
"column": 30
}
}
@@ -6319,16 +6448,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2707,
- 2711
+ 2772,
+ 2776
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 13
},
"end": {
- "line": 81,
+ "line": 84,
"column": 17
}
}
@@ -6337,31 +6466,31 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 2712,
- 2719
+ 2777,
+ 2784
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 18
},
"end": {
- "line": 81,
+ "line": 84,
"column": 25
}
}
},
"range": [
- 2707,
- 2719
+ 2772,
+ 2784
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 13
},
"end": {
- "line": 81,
+ "line": 84,
"column": 25
}
}
@@ -6374,16 +6503,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2722,
- 2726
+ 2787,
+ 2791
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 28
},
"end": {
- "line": 81,
+ "line": 84,
"column": 32
}
}
@@ -6392,31 +6521,31 @@
"type": "Identifier",
"name": "getCellsNb",
"range": [
- 2727,
- 2737
+ 2792,
+ 2802
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 33
},
"end": {
- "line": 81,
+ "line": 84,
"column": 43
}
}
},
"range": [
- 2722,
- 2737
+ 2787,
+ 2802
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 28
},
"end": {
- "line": 81,
+ "line": 84,
"column": 43
}
}
@@ -6428,16 +6557,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2738,
- 2742
+ 2803,
+ 2807
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 44
},
"end": {
- "line": 81,
+ "line": 84,
"column": 48
}
}
@@ -6446,93 +6575,93 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 2743,
- 2749
+ 2808,
+ 2814
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 49
},
"end": {
- "line": 81,
+ "line": 84,
"column": 55
}
}
},
"range": [
- 2738,
- 2749
+ 2803,
+ 2814
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 44
},
"end": {
- "line": 81,
+ "line": 84,
"column": 55
}
}
}
],
"range": [
- 2722,
- 2750
+ 2787,
+ 2815
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 28
},
"end": {
- "line": 81,
+ "line": 84,
"column": 56
}
}
},
"range": [
- 2707,
- 2750
+ 2772,
+ 2815
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 13
},
"end": {
- "line": 81,
+ "line": 84,
"column": 56
}
}
},
"range": [
- 2707,
- 2751
+ 2772,
+ 2816
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 13
},
"end": {
- "line": 81,
+ "line": 84,
"column": 57
}
}
}
],
"range": [
- 2705,
- 2753
+ 2770,
+ 2818
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 11
},
"end": {
- "line": 81,
+ "line": 84,
"column": 59
}
}
@@ -6543,16 +6672,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 2768,
- 2769
+ 2833,
+ 2834
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 14
},
"end": {
- "line": 82,
+ "line": 85,
"column": 15
}
}
@@ -6571,16 +6700,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2772,
- 2776
+ 2837,
+ 2841
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 18
},
"end": {
- "line": 82,
+ "line": 85,
"column": 22
}
}
@@ -6589,31 +6718,31 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 2777,
- 2784
+ 2842,
+ 2849
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 23
},
"end": {
- "line": 82,
+ "line": 85,
"column": 30
}
}
},
"range": [
- 2772,
- 2784
+ 2837,
+ 2849
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 18
},
"end": {
- "line": 82,
+ "line": 85,
"column": 30
}
}
@@ -6626,16 +6755,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2787,
- 2791
+ 2852,
+ 2856
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 33
},
"end": {
- "line": 82,
+ "line": 85,
"column": 37
}
}
@@ -6644,31 +6773,31 @@
"type": "Identifier",
"name": "getCellsNb",
"range": [
- 2792,
- 2802
+ 2857,
+ 2867
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 38
},
"end": {
- "line": 82,
+ "line": 85,
"column": 48
}
}
},
"range": [
- 2787,
- 2802
+ 2852,
+ 2867
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 33
},
"end": {
- "line": 82,
+ "line": 85,
"column": 48
}
}
@@ -6679,109 +6808,109 @@
"value": 0,
"raw": "0",
"range": [
- 2803,
- 2804
+ 2868,
+ 2869
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 49
},
"end": {
- "line": 82,
+ "line": 85,
"column": 50
}
}
}
],
"range": [
- 2787,
- 2805
+ 2852,
+ 2870
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 33
},
"end": {
- "line": 82,
+ "line": 85,
"column": 51
}
}
},
"range": [
- 2772,
- 2805
+ 2837,
+ 2870
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 18
},
"end": {
- "line": 82,
+ "line": 85,
"column": 51
}
}
},
"range": [
- 2772,
- 2806
+ 2837,
+ 2871
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 18
},
"end": {
- "line": 82,
+ "line": 85,
"column": 52
}
}
}
],
"range": [
- 2770,
- 2808
+ 2835,
+ 2873
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 16
},
"end": {
- "line": 82,
+ "line": 85,
"column": 54
}
}
},
"range": [
- 2762,
- 2808
+ 2827,
+ 2873
],
"loc": {
"start": {
- "line": 82,
+ "line": 85,
"column": 8
},
"end": {
- "line": 82,
+ "line": 85,
"column": 54
}
}
},
"finalizer": null,
"range": [
- 2702,
- 2808
+ 2767,
+ 2873
],
"loc": {
"start": {
- "line": 81,
+ "line": 84,
"column": 8
},
"end": {
- "line": 82,
+ "line": 85,
"column": 54
}
},
@@ -6790,16 +6919,16 @@
"type": "Line",
"value": "default script base path",
"range": [
- 2818,
- 2844
+ 2883,
+ 2909
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 8
},
"end": {
- "line": 84,
+ "line": 87,
"column": 34
}
}
@@ -6817,16 +6946,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2853,
- 2857
+ 2918,
+ 2922
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 8
},
"end": {
- "line": 85,
+ "line": 88,
"column": 12
}
}
@@ -6835,31 +6964,31 @@
"type": "Identifier",
"name": "basePath",
"range": [
- 2858,
- 2866
+ 2923,
+ 2931
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 13
},
"end": {
- "line": 85,
+ "line": 88,
"column": 21
}
}
},
"range": [
- 2853,
- 2866
+ 2918,
+ 2931
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 8
},
"end": {
- "line": 85,
+ "line": 88,
"column": 21
}
}
@@ -6874,16 +7003,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 2869,
- 2870
+ 2934,
+ 2935
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 24
},
"end": {
- "line": 85,
+ "line": 88,
"column": 25
}
}
@@ -6892,31 +7021,31 @@
"type": "Identifier",
"name": "base_path",
"range": [
- 2871,
- 2880
+ 2936,
+ 2945
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 26
},
"end": {
- "line": 85,
+ "line": 88,
"column": 35
}
}
},
"range": [
- 2869,
- 2880
+ 2934,
+ 2945
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 24
},
"end": {
- "line": 85,
+ "line": 88,
"column": 35
}
}
@@ -6926,61 +7055,61 @@
"value": "tablefilter/",
"raw": "'tablefilter/'",
"range": [
- 2884,
- 2898
+ 2949,
+ 2963
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 39
},
"end": {
- "line": 85,
+ "line": 88,
"column": 53
}
}
},
"range": [
- 2869,
- 2898
+ 2934,
+ 2963
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 24
},
"end": {
- "line": 85,
+ "line": 88,
"column": 53
}
}
},
"range": [
- 2853,
- 2898
+ 2918,
+ 2963
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 8
},
"end": {
- "line": 85,
+ "line": 88,
"column": 53
}
}
},
"range": [
- 2853,
- 2899
+ 2918,
+ 2964
],
"loc": {
"start": {
- "line": 85,
+ "line": 88,
"column": 8
},
"end": {
- "line": 85,
+ "line": 88,
"column": 54
}
},
@@ -6989,16 +7118,16 @@
"type": "Line",
"value": "default script base path",
"range": [
- 2818,
- 2844
+ 2883,
+ 2909
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 8
},
"end": {
- "line": 84,
+ "line": 87,
"column": 34
}
}
@@ -7009,16 +7138,16 @@
"type": "Block",
"value": "** filter types **",
"range": [
- 2909,
- 2931
+ 2974,
+ 2996
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 8
},
"end": {
- "line": 87,
+ "line": 90,
"column": 30
}
}
@@ -7036,16 +7165,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2940,
- 2944
+ 3005,
+ 3009
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 8
},
"end": {
- "line": 88,
+ "line": 91,
"column": 12
}
}
@@ -7054,31 +7183,31 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 2945,
- 2955
+ 3010,
+ 3020
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 13
},
"end": {
- "line": 88,
+ "line": 91,
"column": 23
}
}
},
"range": [
- 2940,
- 2955
+ 3005,
+ 3020
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 8
},
"end": {
- "line": 88,
+ "line": 91,
"column": 23
}
}
@@ -7088,46 +7217,46 @@
"value": "input",
"raw": "'input'",
"range": [
- 2958,
- 2965
+ 3023,
+ 3030
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 26
},
"end": {
- "line": 88,
+ "line": 91,
"column": 33
}
}
},
"range": [
- 2940,
- 2965
+ 3005,
+ 3030
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 8
},
"end": {
- "line": 88,
+ "line": 91,
"column": 33
}
}
},
"range": [
- 2940,
- 2966
+ 3005,
+ 3031
],
"loc": {
"start": {
- "line": 88,
+ "line": 91,
"column": 8
},
"end": {
- "line": 88,
+ "line": 91,
"column": 34
}
},
@@ -7136,16 +7265,16 @@
"type": "Block",
"value": "** filter types **",
"range": [
- 2909,
- 2931
+ 2974,
+ 2996
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 8
},
"end": {
- "line": 87,
+ "line": 90,
"column": 30
}
}
@@ -7163,16 +7292,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 2975,
- 2979
+ 3040,
+ 3044
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 8
},
"end": {
- "line": 89,
+ "line": 92,
"column": 12
}
}
@@ -7181,31 +7310,31 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 2980,
- 2990
+ 3045,
+ 3055
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 13
},
"end": {
- "line": 89,
+ "line": 92,
"column": 23
}
}
},
"range": [
- 2975,
- 2990
+ 3040,
+ 3055
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 8
},
"end": {
- "line": 89,
+ "line": 92,
"column": 23
}
}
@@ -7215,46 +7344,46 @@
"value": "select",
"raw": "'select'",
"range": [
- 2993,
- 3001
+ 3058,
+ 3066
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 26
},
"end": {
- "line": 89,
+ "line": 92,
"column": 34
}
}
},
"range": [
- 2975,
- 3001
+ 3040,
+ 3066
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 8
},
"end": {
- "line": 89,
+ "line": 92,
"column": 34
}
}
},
"range": [
- 2975,
- 3002
+ 3040,
+ 3067
],
"loc": {
"start": {
- "line": 89,
+ "line": 92,
"column": 8
},
"end": {
- "line": 89,
+ "line": 92,
"column": 35
}
}
@@ -7270,16 +7399,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3011,
- 3015
+ 3076,
+ 3080
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 8
},
"end": {
- "line": 90,
+ "line": 93,
"column": 12
}
}
@@ -7288,31 +7417,31 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 3016,
- 3028
+ 3081,
+ 3093
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 13
},
"end": {
- "line": 90,
+ "line": 93,
"column": 25
}
}
},
"range": [
- 3011,
- 3028
+ 3076,
+ 3093
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 8
},
"end": {
- "line": 90,
+ "line": 93,
"column": 25
}
}
@@ -7322,46 +7451,46 @@
"value": "multiple",
"raw": "'multiple'",
"range": [
- 3031,
- 3041
+ 3096,
+ 3106
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 28
},
"end": {
- "line": 90,
+ "line": 93,
"column": 38
}
}
},
"range": [
- 3011,
- 3041
+ 3076,
+ 3106
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 8
},
"end": {
- "line": 90,
+ "line": 93,
"column": 38
}
}
},
"range": [
- 3011,
- 3042
+ 3076,
+ 3107
],
"loc": {
"start": {
- "line": 90,
+ "line": 93,
"column": 8
},
"end": {
- "line": 90,
+ "line": 93,
"column": 39
}
}
@@ -7377,16 +7506,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3051,
- 3055
+ 3116,
+ 3120
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 8
},
"end": {
- "line": 91,
+ "line": 94,
"column": 12
}
}
@@ -7395,31 +7524,31 @@
"type": "Identifier",
"name": "fltTypeCheckList",
"range": [
- 3056,
- 3072
+ 3121,
+ 3137
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 13
},
"end": {
- "line": 91,
+ "line": 94,
"column": 29
}
}
},
"range": [
- 3051,
- 3072
+ 3116,
+ 3137
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 8
},
"end": {
- "line": 91,
+ "line": 94,
"column": 29
}
}
@@ -7429,46 +7558,46 @@
"value": "checklist",
"raw": "'checklist'",
"range": [
- 3075,
- 3086
+ 3140,
+ 3151
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 32
},
"end": {
- "line": 91,
+ "line": 94,
"column": 43
}
}
},
"range": [
- 3051,
- 3086
+ 3116,
+ 3151
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 8
},
"end": {
- "line": 91,
+ "line": 94,
"column": 43
}
}
},
"range": [
- 3051,
- 3087
+ 3116,
+ 3152
],
"loc": {
"start": {
- "line": 91,
+ "line": 94,
"column": 8
},
"end": {
- "line": 91,
+ "line": 94,
"column": 44
}
}
@@ -7484,16 +7613,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3096,
- 3100
+ 3161,
+ 3165
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 8
},
"end": {
- "line": 92,
+ "line": 95,
"column": 12
}
}
@@ -7502,31 +7631,31 @@
"type": "Identifier",
"name": "fltTypeNone",
"range": [
- 3101,
- 3112
+ 3166,
+ 3177
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 13
},
"end": {
- "line": 92,
+ "line": 95,
"column": 24
}
}
},
"range": [
- 3096,
- 3112
+ 3161,
+ 3177
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 8
},
"end": {
- "line": 92,
+ "line": 95,
"column": 24
}
}
@@ -7536,46 +7665,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 3115,
- 3121
+ 3180,
+ 3186
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 27
},
"end": {
- "line": 92,
+ "line": 95,
"column": 33
}
}
},
"range": [
- 3096,
- 3121
+ 3161,
+ 3186
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 8
},
"end": {
- "line": 92,
+ "line": 95,
"column": 33
}
}
},
"range": [
- 3096,
- 3122
+ 3161,
+ 3187
],
"loc": {
"start": {
- "line": 92,
+ "line": 95,
"column": 8
},
"end": {
- "line": 92,
+ "line": 95,
"column": 34
}
},
@@ -7584,16 +7713,16 @@
"type": "Block",
"value": "** filters' grid properties **",
"range": [
- 3132,
- 3166
+ 3197,
+ 3231
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 8
},
"end": {
- "line": 94,
+ "line": 97,
"column": 42
}
}
@@ -7602,16 +7731,16 @@
"type": "Line",
"value": "enables/disables filter grid",
"range": [
- 3176,
- 3206
+ 3241,
+ 3271
],
"loc": {
"start": {
- "line": 96,
+ "line": 99,
"column": 8
},
"end": {
- "line": 96,
+ "line": 99,
"column": 38
}
}
@@ -7629,16 +7758,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3215,
- 3219
+ 3280,
+ 3284
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 8
},
"end": {
- "line": 97,
+ "line": 100,
"column": 12
}
}
@@ -7647,31 +7776,31 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 3220,
- 3227
+ 3285,
+ 3292
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 13
},
"end": {
- "line": 97,
+ "line": 100,
"column": 20
}
}
},
"range": [
- 3215,
- 3227
+ 3280,
+ 3292
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 8
},
"end": {
- "line": 97,
+ "line": 100,
"column": 20
}
}
@@ -7688,16 +7817,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3230,
- 3231
+ 3295,
+ 3296
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 23
},
"end": {
- "line": 97,
+ "line": 100,
"column": 24
}
}
@@ -7706,31 +7835,31 @@
"type": "Identifier",
"name": "grid",
"range": [
- 3232,
- 3236
+ 3297,
+ 3301
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 25
},
"end": {
- "line": 97,
+ "line": 100,
"column": 29
}
}
},
"range": [
- 3230,
- 3236
+ 3295,
+ 3301
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 23
},
"end": {
- "line": 97,
+ "line": 100,
"column": 29
}
}
@@ -7740,31 +7869,31 @@
"value": false,
"raw": "false",
"range": [
- 3241,
- 3246
+ 3306,
+ 3311
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 34
},
"end": {
- "line": 97,
+ "line": 100,
"column": 39
}
}
},
"range": [
- 3230,
- 3246
+ 3295,
+ 3311
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 23
},
"end": {
- "line": 97,
+ "line": 100,
"column": 39
}
}
@@ -7774,16 +7903,16 @@
"value": false,
"raw": "false",
"range": [
- 3249,
- 3254
+ 3314,
+ 3319
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 42
},
"end": {
- "line": 97,
+ "line": 100,
"column": 47
}
}
@@ -7793,61 +7922,61 @@
"value": true,
"raw": "true",
"range": [
- 3257,
- 3261
+ 3322,
+ 3326
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 50
},
"end": {
- "line": 97,
+ "line": 100,
"column": 54
}
}
},
"range": [
- 3230,
- 3261
+ 3295,
+ 3326
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 23
},
"end": {
- "line": 97,
+ "line": 100,
"column": 54
}
}
},
"range": [
- 3215,
- 3261
+ 3280,
+ 3326
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 8
},
"end": {
- "line": 97,
+ "line": 100,
"column": 54
}
}
},
"range": [
- 3215,
- 3262
+ 3280,
+ 3327
],
"loc": {
"start": {
- "line": 97,
+ "line": 100,
"column": 8
},
"end": {
- "line": 97,
+ "line": 100,
"column": 55
}
},
@@ -7856,16 +7985,16 @@
"type": "Block",
"value": "** filters' grid properties **",
"range": [
- 3132,
- 3166
+ 3197,
+ 3231
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 8
},
"end": {
- "line": 94,
+ "line": 97,
"column": 42
}
}
@@ -7874,16 +8003,16 @@
"type": "Line",
"value": "enables/disables filter grid",
"range": [
- 3176,
- 3206
+ 3241,
+ 3271
],
"loc": {
"start": {
- "line": 96,
+ "line": 99,
"column": 8
},
"end": {
- "line": 96,
+ "line": 99,
"column": 38
}
}
@@ -7894,16 +8023,16 @@
"type": "Line",
"value": "enables/disables grid layout (fixed headers)",
"range": [
- 3272,
- 3318
+ 3337,
+ 3383
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 8
},
"end": {
- "line": 99,
+ "line": 102,
"column": 54
}
}
@@ -7921,16 +8050,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3327,
- 3331
+ 3392,
+ 3396
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 8
},
"end": {
- "line": 100,
+ "line": 103,
"column": 12
}
}
@@ -7939,31 +8068,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 3332,
- 3342
+ 3397,
+ 3407
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 13
},
"end": {
- "line": 100,
+ "line": 103,
"column": 23
}
}
},
"range": [
- 3327,
- 3342
+ 3392,
+ 3407
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 8
},
"end": {
- "line": 100,
+ "line": 103,
"column": 23
}
}
@@ -7974,16 +8103,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 3345,
- 3352
+ 3410,
+ 3417
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 26
},
"end": {
- "line": 100,
+ "line": 103,
"column": 33
}
}
@@ -7996,16 +8125,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3353,
- 3354
+ 3418,
+ 3419
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 34
},
"end": {
- "line": 100,
+ "line": 103,
"column": 35
}
}
@@ -8014,77 +8143,77 @@
"type": "Identifier",
"name": "grid_layout",
"range": [
- 3355,
- 3366
+ 3420,
+ 3431
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 36
},
"end": {
- "line": 100,
+ "line": 103,
"column": 47
}
}
},
"range": [
- 3353,
- 3366
+ 3418,
+ 3431
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 34
},
"end": {
- "line": 100,
+ "line": 103,
"column": 47
}
}
}
],
"range": [
- 3345,
- 3367
+ 3410,
+ 3432
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 26
},
"end": {
- "line": 100,
+ "line": 103,
"column": 48
}
}
},
"range": [
- 3327,
- 3367
+ 3392,
+ 3432
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 8
},
"end": {
- "line": 100,
+ "line": 103,
"column": 48
}
}
},
"range": [
- 3327,
- 3368
+ 3392,
+ 3433
],
"loc": {
"start": {
- "line": 100,
+ "line": 103,
"column": 8
},
"end": {
- "line": 100,
+ "line": 103,
"column": 49
}
},
@@ -8093,16 +8222,16 @@
"type": "Line",
"value": "enables/disables grid layout (fixed headers)",
"range": [
- 3272,
- 3318
+ 3337,
+ 3383
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 8
},
"end": {
- "line": 99,
+ "line": 102,
"column": 54
}
}
@@ -8120,16 +8249,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3378,
- 3382
+ 3443,
+ 3447
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 8
},
"end": {
- "line": 102,
+ "line": 105,
"column": 12
}
}
@@ -8138,31 +8267,31 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 3383,
- 3398
+ 3448,
+ 3463
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 13
},
"end": {
- "line": 102,
+ "line": 105,
"column": 28
}
}
},
"range": [
- 3378,
- 3398
+ 3443,
+ 3463
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 8
},
"end": {
- "line": 102,
+ "line": 105,
"column": 28
}
}
@@ -8175,16 +8304,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 3401,
- 3406
+ 3466,
+ 3471
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 31
},
"end": {
- "line": 102,
+ "line": 105,
"column": 36
}
}
@@ -8197,16 +8326,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3407,
- 3408
+ 3472,
+ 3473
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 37
},
"end": {
- "line": 102,
+ "line": 105,
"column": 38
}
}
@@ -8215,47 +8344,47 @@
"type": "Identifier",
"name": "filters_row_index",
"range": [
- 3409,
- 3426
+ 3474,
+ 3491
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 39
},
"end": {
- "line": 102,
+ "line": 105,
"column": 56
}
}
},
"range": [
- 3407,
- 3426
+ 3472,
+ 3491
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 37
},
"end": {
- "line": 102,
+ "line": 105,
"column": 56
}
}
}
],
"range": [
- 3401,
- 3427
+ 3466,
+ 3492
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 31
},
"end": {
- "line": 102,
+ "line": 105,
"column": 57
}
}
@@ -8265,16 +8394,16 @@
"value": 0,
"raw": "0",
"range": [
- 3442,
- 3443
+ 3507,
+ 3508
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 12
},
"end": {
- "line": 103,
+ "line": 106,
"column": 13
}
}
@@ -8286,16 +8415,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3446,
- 3447
+ 3511,
+ 3512
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 16
},
"end": {
- "line": 103,
+ "line": 106,
"column": 17
}
}
@@ -8304,76 +8433,76 @@
"type": "Identifier",
"name": "filters_row_index",
"range": [
- 3448,
- 3465
+ 3513,
+ 3530
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 18
},
"end": {
- "line": 103,
+ "line": 106,
"column": 35
}
}
},
"range": [
- 3446,
- 3465
+ 3511,
+ 3530
],
"loc": {
"start": {
- "line": 103,
+ "line": 106,
"column": 16
},
"end": {
- "line": 103,
+ "line": 106,
"column": 35
}
}
},
"range": [
- 3401,
- 3465
+ 3466,
+ 3530
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 31
},
"end": {
- "line": 103,
+ "line": 106,
"column": 35
}
}
},
"range": [
- 3378,
- 3465
+ 3443,
+ 3530
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 8
},
"end": {
- "line": 103,
+ "line": 106,
"column": 35
}
}
},
"range": [
- 3378,
- 3466
+ 3443,
+ 3531
],
"loc": {
"start": {
- "line": 102,
+ "line": 105,
"column": 8
},
"end": {
- "line": 103,
+ "line": 106,
"column": 36
}
}
@@ -8389,16 +8518,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3475,
- 3479
+ 3540,
+ 3544
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 8
},
"end": {
- "line": 104,
+ "line": 107,
"column": 12
}
}
@@ -8407,31 +8536,31 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 3480,
- 3490
+ 3545,
+ 3555
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 13
},
"end": {
- "line": 104,
+ "line": 107,
"column": 23
}
}
},
"range": [
- 3475,
- 3490
+ 3540,
+ 3555
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 8
},
"end": {
- "line": 104,
+ "line": 107,
"column": 23
}
}
@@ -8444,16 +8573,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 3493,
- 3498
+ 3558,
+ 3563
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 26
},
"end": {
- "line": 104,
+ "line": 107,
"column": 31
}
}
@@ -8466,16 +8595,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3499,
- 3500
+ 3564,
+ 3565
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 32
},
"end": {
- "line": 104,
+ "line": 107,
"column": 33
}
}
@@ -8484,47 +8613,47 @@
"type": "Identifier",
"name": "headers_row_index",
"range": [
- 3501,
- 3518
+ 3566,
+ 3583
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 34
},
"end": {
- "line": 104,
+ "line": 107,
"column": 51
}
}
},
"range": [
- 3499,
- 3518
+ 3564,
+ 3583
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 32
},
"end": {
- "line": 104,
+ "line": 107,
"column": 51
}
}
}
],
"range": [
- 3493,
- 3519
+ 3558,
+ 3584
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 26
},
"end": {
- "line": 104,
+ "line": 107,
"column": 52
}
}
@@ -8540,16 +8669,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3535,
- 3539
+ 3600,
+ 3604
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 13
},
"end": {
- "line": 105,
+ "line": 108,
"column": 17
}
}
@@ -8558,31 +8687,31 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 3540,
- 3555
+ 3605,
+ 3620
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 18
},
"end": {
- "line": 105,
+ "line": 108,
"column": 33
}
}
},
"range": [
- 3535,
- 3555
+ 3600,
+ 3620
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 13
},
"end": {
- "line": 105,
+ "line": 108,
"column": 33
}
}
@@ -8592,31 +8721,31 @@
"value": 0,
"raw": "0",
"range": [
- 3560,
- 3561
+ 3625,
+ 3626
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 38
},
"end": {
- "line": 105,
+ "line": 108,
"column": 39
}
}
},
"range": [
- 3535,
- 3561
+ 3600,
+ 3626
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 13
},
"end": {
- "line": 105,
+ "line": 108,
"column": 39
}
}
@@ -8626,16 +8755,16 @@
"value": 1,
"raw": "1",
"range": [
- 3564,
- 3565
+ 3629,
+ 3630
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 42
},
"end": {
- "line": 105,
+ "line": 108,
"column": 43
}
}
@@ -8645,31 +8774,31 @@
"value": 0,
"raw": "0",
"range": [
- 3568,
- 3569
+ 3633,
+ 3634
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 46
},
"end": {
- "line": 105,
+ "line": 108,
"column": 47
}
}
},
"range": [
- 3535,
- 3569
+ 3600,
+ 3634
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 13
},
"end": {
- "line": 105,
+ "line": 108,
"column": 47
}
}
@@ -8681,16 +8810,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3573,
- 3574
+ 3638,
+ 3639
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 51
},
"end": {
- "line": 105,
+ "line": 108,
"column": 52
}
}
@@ -8699,695 +8828,68 @@
"type": "Identifier",
"name": "headers_row_index",
"range": [
- 3575,
- 3592
+ 3640,
+ 3657
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 53
},
"end": {
- "line": 105,
+ "line": 108,
"column": 70
}
}
},
"range": [
- 3573,
- 3592
+ 3638,
+ 3657
],
"loc": {
"start": {
- "line": 105,
+ "line": 108,
"column": 51
},
"end": {
- "line": 105,
+ "line": 108,
"column": 70
}
}
},
"range": [
- 3493,
- 3592
+ 3558,
+ 3657
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 26
},
"end": {
- "line": 105,
+ "line": 108,
"column": 70
}
}
},
"range": [
- 3475,
- 3592
+ 3540,
+ 3657
],
"loc": {
"start": {
- "line": 104,
+ "line": 107,
"column": 8
},
"end": {
- "line": 105,
+ "line": 108,
"column": 70
}
}
},
"range": [
- 3475,
- 3593
- ],
- "loc": {
- "start": {
- "line": 104,
- "column": 8
- },
- "end": {
- "line": 105,
- "column": 71
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3606,
- 3610
- ],
- "loc": {
- "start": {
- "line": 107,
- "column": 11
- },
- "end": {
- "line": 107,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 3611,
- 3621
- ],
- "loc": {
- "start": {
- "line": 107,
- "column": 16
- },
- "end": {
- "line": 107,
- "column": 26
- }
- }
- },
- "range": [
- 3606,
- 3621
- ],
- "loc": {
- "start": {
- "line": 107,
- "column": 11
- },
- "end": {
- "line": 107,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3639,
- 3643
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 15
- },
- "end": {
- "line": 108,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 3644,
- 3654
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 20
- },
- "end": {
- "line": 108,
- "column": 30
- }
- }
- },
- "range": [
- 3639,
- 3654
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 15
- },
- "end": {
- "line": 108,
- "column": 30
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 3657,
- 3658
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 33
- },
- "end": {
- "line": 108,
- "column": 34
- }
- }
- },
- "range": [
- 3639,
- 3658
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 15
- },
- "end": {
- "line": 108,
- "column": 34
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3677,
- 3681
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 16
- },
- "end": {
- "line": 109,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 3682,
- 3697
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 21
- },
- "end": {
- "line": 109,
- "column": 36
- }
- }
- },
- "range": [
- 3677,
- 3697
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 16
- },
- "end": {
- "line": 109,
- "column": 36
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3700,
- 3704
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 39
- },
- "end": {
- "line": 109,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 3705,
- 3715
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 44
- },
- "end": {
- "line": 109,
- "column": 54
- }
- }
- },
- "range": [
- 3700,
- 3715
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 39
- },
- "end": {
- "line": 109,
- "column": 54
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 3716,
- 3717
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 55
- },
- "end": {
- "line": 109,
- "column": 56
- }
- }
- },
- "range": [
- 3700,
- 3717
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 39
- },
- "end": {
- "line": 109,
- "column": 56
- }
- }
- },
- "range": [
- 3677,
- 3717
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 16
- },
- "end": {
- "line": 109,
- "column": 56
- }
- }
- },
- "range": [
- 3677,
- 3718
- ],
- "loc": {
- "start": {
- "line": 109,
- "column": 16
- },
- "end": {
- "line": 109,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 3659,
- 3732
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 35
- },
- "end": {
- "line": 110,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3756,
- 3760
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 16
- },
- "end": {
- "line": 111,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 3761,
- 3776
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 21
- },
- "end": {
- "line": 111,
- "column": 36
- }
- }
- },
- "range": [
- 3756,
- 3776
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 16
- },
- "end": {
- "line": 111,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 3779,
- 3780
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 39
- },
- "end": {
- "line": 111,
- "column": 40
- }
- }
- },
- "range": [
- 3756,
- 3780
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 16
- },
- "end": {
- "line": 111,
- "column": 40
- }
- }
- },
- "range": [
- 3756,
- 3781
- ],
- "loc": {
- "start": {
- "line": 111,
- "column": 16
- },
- "end": {
- "line": 111,
- "column": 41
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 3798,
- 3802
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 16
- },
- "end": {
- "line": 112,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 3803,
- 3813
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 21
- },
- "end": {
- "line": 112,
- "column": 31
- }
- }
- },
- "range": [
- 3798,
- 3813
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 16
- },
- "end": {
- "line": 112,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 3816,
- 3817
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 34
- },
- "end": {
- "line": 112,
- "column": 35
- }
- }
- },
- "range": [
- 3798,
- 3817
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 16
- },
- "end": {
- "line": 112,
- "column": 35
- }
- }
- },
- "range": [
- 3798,
- 3818
- ],
- "loc": {
- "start": {
- "line": 112,
- "column": 16
- },
- "end": {
- "line": 112,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 3738,
- 3832
- ],
- "loc": {
- "start": {
- "line": 110,
- "column": 19
- },
- "end": {
- "line": 113,
- "column": 13
- }
- }
- },
- "range": [
- 3636,
- 3832
- ],
- "loc": {
- "start": {
- "line": 108,
- "column": 12
- },
- "end": {
- "line": 113,
- "column": 13
- }
- }
- }
- ],
- "range": [
- 3622,
- 3842
- ],
- "loc": {
- "start": {
- "line": 107,
- "column": 27
- },
- "end": {
- "line": 114,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 3603,
- 3842
+ 3540,
+ 3658
],
"loc": {
"start": {
@@ -9395,8 +8897,8 @@
"column": 8
},
"end": {
- "line": 114,
- "column": 9
+ "line": 108,
+ "column": 71
}
},
"trailingComments": [
@@ -9404,16 +8906,16 @@
"type": "Line",
"value": "defines tag of the cells containing filters (td/th)",
"range": [
- 3852,
- 3905
+ 3668,
+ 3721
],
"loc": {
"start": {
- "line": 116,
+ "line": 110,
"column": 8
},
"end": {
- "line": 116,
+ "line": 110,
"column": 61
}
}
@@ -9431,16 +8933,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 3914,
- 3918
+ 3730,
+ 3734
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 8
},
"end": {
- "line": 117,
+ "line": 111,
"column": 12
}
}
@@ -9449,31 +8951,31 @@
"type": "Identifier",
"name": "fltCellTag",
"range": [
- 3919,
- 3929
+ 3735,
+ 3745
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 13
},
"end": {
- "line": 117,
+ "line": 111,
"column": 23
}
}
},
"range": [
- 3914,
- 3929
+ 3730,
+ 3745
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 8
},
"end": {
- "line": 117,
+ "line": 111,
"column": 23
}
}
@@ -9493,16 +8995,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3932,
- 3933
+ 3748,
+ 3749
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 26
},
"end": {
- "line": 117,
+ "line": 111,
"column": 27
}
}
@@ -9511,31 +9013,31 @@
"type": "Identifier",
"name": "filters_cell_tag",
"range": [
- 3934,
- 3950
+ 3750,
+ 3766
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 28
},
"end": {
- "line": 117,
+ "line": 111,
"column": 44
}
}
},
"range": [
- 3932,
- 3950
+ 3748,
+ 3766
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 26
},
"end": {
- "line": 117,
+ "line": 111,
"column": 44
}
}
@@ -9545,31 +9047,31 @@
"value": "th",
"raw": "'th'",
"range": [
- 3953,
- 3957
+ 3769,
+ 3773
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 47
},
"end": {
- "line": 117,
+ "line": 111,
"column": 51
}
}
},
"range": [
- 3932,
- 3957
+ 3748,
+ 3773
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 26
},
"end": {
- "line": 117,
+ "line": 111,
"column": 51
}
}
@@ -9584,16 +9086,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 3973,
- 3974
+ 3789,
+ 3790
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 12
},
"end": {
- "line": 118,
+ "line": 112,
"column": 13
}
}
@@ -9602,31 +9104,31 @@
"type": "Identifier",
"name": "filters_cell_tag",
"range": [
- 3975,
- 3991
+ 3791,
+ 3807
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 14
},
"end": {
- "line": 118,
+ "line": 112,
"column": 30
}
}
},
"range": [
- 3973,
- 3991
+ 3789,
+ 3807
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 12
},
"end": {
- "line": 118,
+ "line": 112,
"column": 30
}
}
@@ -9636,46 +9138,46 @@
"value": "td",
"raw": "'td'",
"range": [
- 3994,
- 3998
+ 3810,
+ 3814
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 33
},
"end": {
- "line": 118,
+ "line": 112,
"column": 37
}
}
},
"range": [
- 3973,
- 3998
+ 3789,
+ 3814
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 12
},
"end": {
- "line": 118,
+ "line": 112,
"column": 37
}
}
},
"range": [
- 3932,
- 3998
+ 3748,
+ 3814
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 26
},
"end": {
- "line": 118,
+ "line": 112,
"column": 37
}
}
@@ -9685,16 +9187,16 @@
"value": "td",
"raw": "'td'",
"range": [
- 4001,
- 4005
+ 3817,
+ 3821
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 40
},
"end": {
- "line": 118,
+ "line": 112,
"column": 44
}
}
@@ -9706,16 +9208,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 4008,
- 4009
+ 3824,
+ 3825
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 47
},
"end": {
- "line": 118,
+ "line": 112,
"column": 48
}
}
@@ -9724,76 +9226,76 @@
"type": "Identifier",
"name": "filters_cell_tag",
"range": [
- 4010,
- 4026
+ 3826,
+ 3842
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 49
},
"end": {
- "line": 118,
+ "line": 112,
"column": 65
}
}
},
"range": [
- 4008,
- 4026
+ 3824,
+ 3842
],
"loc": {
"start": {
- "line": 118,
+ "line": 112,
"column": 47
},
"end": {
- "line": 118,
+ "line": 112,
"column": 65
}
}
},
"range": [
- 3932,
- 4026
+ 3748,
+ 3842
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 26
},
"end": {
- "line": 118,
+ "line": 112,
"column": 65
}
}
},
"range": [
- 3914,
- 4026
+ 3730,
+ 3842
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 8
},
"end": {
- "line": 118,
+ "line": 112,
"column": 65
}
}
},
"range": [
- 3914,
- 4027
+ 3730,
+ 3843
],
"loc": {
"start": {
- "line": 117,
+ "line": 111,
"column": 8
},
"end": {
- "line": 118,
+ "line": 112,
"column": 66
}
},
@@ -9802,16 +9304,16 @@
"type": "Line",
"value": "defines tag of the cells containing filters (td/th)",
"range": [
- 3852,
- 3905
+ 3668,
+ 3721
],
"loc": {
"start": {
- "line": 116,
+ "line": 110,
"column": 8
},
"end": {
- "line": 116,
+ "line": 110,
"column": 61
}
}
@@ -9822,16 +9324,16 @@
"type": "Line",
"value": "stores filters ids",
"range": [
- 4037,
- 4057
+ 3853,
+ 3873
],
"loc": {
"start": {
- "line": 120,
+ "line": 114,
"column": 8
},
"end": {
- "line": 120,
+ "line": 114,
"column": 28
}
}
@@ -9849,16 +9351,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4066,
- 4070
+ 3882,
+ 3886
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 8
},
"end": {
- "line": 121,
+ "line": 115,
"column": 12
}
}
@@ -9867,31 +9369,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 4071,
- 4077
+ 3887,
+ 3893
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 13
},
"end": {
- "line": 121,
+ "line": 115,
"column": 19
}
}
},
"range": [
- 4066,
- 4077
+ 3882,
+ 3893
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 8
},
"end": {
- "line": 121,
+ "line": 115,
"column": 19
}
}
@@ -9900,46 +9402,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 4080,
- 4082
+ 3896,
+ 3898
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 22
},
"end": {
- "line": 121,
+ "line": 115,
"column": 24
}
}
},
"range": [
- 4066,
- 4082
+ 3882,
+ 3898
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 8
},
"end": {
- "line": 121,
+ "line": 115,
"column": 24
}
}
},
"range": [
- 4066,
- 4083
+ 3882,
+ 3899
],
"loc": {
"start": {
- "line": 121,
+ "line": 115,
"column": 8
},
"end": {
- "line": 121,
+ "line": 115,
"column": 25
}
},
@@ -9948,16 +9450,16 @@
"type": "Line",
"value": "stores filters ids",
"range": [
- 4037,
- 4057
+ 3853,
+ 3873
],
"loc": {
"start": {
- "line": 120,
+ "line": 114,
"column": 8
},
"end": {
- "line": 120,
+ "line": 114,
"column": 28
}
}
@@ -9968,16 +9470,16 @@
"type": "Line",
"value": "stores filters DOM elements",
"range": [
- 4092,
- 4121
+ 3908,
+ 3937
],
"loc": {
"start": {
- "line": 122,
+ "line": 116,
"column": 8
},
"end": {
- "line": 122,
+ "line": 116,
"column": 37
}
}
@@ -9995,16 +9497,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4130,
- 4134
+ 3946,
+ 3950
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 8
},
"end": {
- "line": 123,
+ "line": 117,
"column": 12
}
}
@@ -10013,31 +9515,31 @@
"type": "Identifier",
"name": "fltElms",
"range": [
- 4135,
- 4142
+ 3951,
+ 3958
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 13
},
"end": {
- "line": 123,
+ "line": 117,
"column": 20
}
}
},
"range": [
- 4130,
- 4142
+ 3946,
+ 3958
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 8
},
"end": {
- "line": 123,
+ "line": 117,
"column": 20
}
}
@@ -10046,46 +9548,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 4145,
- 4147
+ 3961,
+ 3963
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 23
},
"end": {
- "line": 123,
+ "line": 117,
"column": 25
}
}
},
"range": [
- 4130,
- 4147
+ 3946,
+ 3963
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 8
},
"end": {
- "line": 123,
+ "line": 117,
"column": 25
}
}
},
"range": [
- 4130,
- 4148
+ 3946,
+ 3964
],
"loc": {
"start": {
- "line": 123,
+ "line": 117,
"column": 8
},
"end": {
- "line": 123,
+ "line": 117,
"column": 26
}
},
@@ -10094,16 +9596,16 @@
"type": "Line",
"value": "stores filters DOM elements",
"range": [
- 4092,
- 4121
+ 3908,
+ 3937
],
"loc": {
"start": {
- "line": 122,
+ "line": 116,
"column": 8
},
"end": {
- "line": 122,
+ "line": 116,
"column": 37
}
}
@@ -10114,16 +9616,16 @@
"type": "Line",
"value": "stores filters values",
"range": [
- 4157,
- 4180
+ 3973,
+ 3996
],
"loc": {
"start": {
- "line": 124,
+ "line": 118,
"column": 8
},
"end": {
- "line": 124,
+ "line": 118,
"column": 31
}
}
@@ -10141,16 +9643,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4189,
- 4193
+ 4005,
+ 4009
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 8
},
"end": {
- "line": 125,
+ "line": 119,
"column": 12
}
}
@@ -10159,31 +9661,31 @@
"type": "Identifier",
"name": "searchArgs",
"range": [
- 4194,
- 4204
+ 4010,
+ 4020
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 13
},
"end": {
- "line": 125,
+ "line": 119,
"column": 23
}
}
},
"range": [
- 4189,
- 4204
+ 4005,
+ 4020
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 8
},
"end": {
- "line": 125,
+ "line": 119,
"column": 23
}
}
@@ -10193,46 +9695,46 @@
"value": null,
"raw": "null",
"range": [
- 4207,
- 4211
+ 4023,
+ 4027
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 26
},
"end": {
- "line": 125,
+ "line": 119,
"column": 30
}
}
},
"range": [
- 4189,
- 4211
+ 4005,
+ 4027
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 8
},
"end": {
- "line": 125,
+ "line": 119,
"column": 30
}
}
},
"range": [
- 4189,
- 4212
+ 4005,
+ 4028
],
"loc": {
"start": {
- "line": 125,
+ "line": 119,
"column": 8
},
"end": {
- "line": 125,
+ "line": 119,
"column": 31
}
},
@@ -10241,16 +9743,16 @@
"type": "Line",
"value": "stores filters values",
"range": [
- 4157,
- 4180
+ 3973,
+ 3996
],
"loc": {
"start": {
- "line": 124,
+ "line": 118,
"column": 8
},
"end": {
- "line": 124,
+ "line": 118,
"column": 31
}
}
@@ -10261,16 +9763,16 @@
"type": "Line",
"value": "stores valid rows indexes (rows visible upon filtering)",
"range": [
- 4221,
- 4278
+ 4037,
+ 4094
],
"loc": {
"start": {
- "line": 126,
+ "line": 120,
"column": 8
},
"end": {
- "line": 126,
+ "line": 120,
"column": 65
}
}
@@ -10288,16 +9790,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4287,
- 4291
+ 4103,
+ 4107
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 8
},
"end": {
- "line": 127,
+ "line": 121,
"column": 12
}
}
@@ -10306,81 +9808,80 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 4292,
- 4306
+ 4108,
+ 4122
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 13
},
"end": {
- "line": 127,
+ "line": 121,
"column": 27
}
}
},
"range": [
- 4287,
- 4306
+ 4103,
+ 4122
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 8
},
"end": {
- "line": 127,
+ "line": 121,
"column": 27
}
}
},
"right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
+ "type": "ArrayExpression",
+ "elements": [],
"range": [
- 4309,
- 4313
+ 4125,
+ 4127
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 30
},
"end": {
- "line": 127,
- "column": 34
+ "line": 121,
+ "column": 32
}
}
},
"range": [
- 4287,
- 4313
+ 4103,
+ 4127
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 8
},
"end": {
- "line": 127,
- "column": 34
+ "line": 121,
+ "column": 32
}
}
},
"range": [
- 4287,
- 4314
+ 4103,
+ 4128
],
"loc": {
"start": {
- "line": 127,
+ "line": 121,
"column": 8
},
"end": {
- "line": 127,
- "column": 35
+ "line": 121,
+ "column": 33
}
},
"leadingComments": [
@@ -10388,16 +9889,16 @@
"type": "Line",
"value": "stores valid rows indexes (rows visible upon filtering)",
"range": [
- 4221,
- 4278
+ 4037,
+ 4094
],
"loc": {
"start": {
- "line": 126,
+ "line": 120,
"column": 8
},
"end": {
- "line": 126,
+ "line": 120,
"column": 65
}
}
@@ -10408,16 +9909,16 @@
"type": "Line",
"value": "stores filters row element",
"range": [
- 4323,
- 4351
+ 4137,
+ 4165
],
"loc": {
"start": {
- "line": 128,
+ "line": 122,
"column": 8
},
"end": {
- "line": 128,
+ "line": 122,
"column": 36
}
}
@@ -10435,16 +9936,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4360,
- 4364
+ 4174,
+ 4178
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 8
},
"end": {
- "line": 129,
+ "line": 123,
"column": 12
}
}
@@ -10453,31 +9954,31 @@
"type": "Identifier",
"name": "fltGridEl",
"range": [
- 4365,
- 4374
+ 4179,
+ 4188
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 13
},
"end": {
- "line": 129,
+ "line": 123,
"column": 22
}
}
},
"range": [
- 4360,
- 4374
+ 4174,
+ 4188
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 8
},
"end": {
- "line": 129,
+ "line": 123,
"column": 22
}
}
@@ -10487,46 +9988,46 @@
"value": null,
"raw": "null",
"range": [
- 4377,
- 4381
+ 4191,
+ 4195
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 25
},
"end": {
- "line": 129,
+ "line": 123,
"column": 29
}
}
},
"range": [
- 4360,
- 4381
+ 4174,
+ 4195
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 8
},
"end": {
- "line": 129,
+ "line": 123,
"column": 29
}
}
},
"range": [
- 4360,
- 4382
+ 4174,
+ 4196
],
"loc": {
"start": {
- "line": 129,
+ "line": 123,
"column": 8
},
"end": {
- "line": 129,
+ "line": 123,
"column": 30
}
},
@@ -10535,183 +10036,36 @@
"type": "Line",
"value": "stores filters row element",
"range": [
- 4323,
- 4351
+ 4137,
+ 4165
],
"loc": {
"start": {
- "line": 128,
+ "line": 122,
"column": 8
},
"end": {
- "line": 128,
+ "line": 122,
"column": 36
}
}
}
],
- "trailingComments": [
- {
- "type": "Line",
- "value": "is first load boolean",
- "range": [
- 4391,
- 4414
- ],
- "loc": {
- "start": {
- "line": 130,
- "column": 8
- },
- "end": {
- "line": 130,
- "column": 31
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 4423,
- 4427
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 8
- },
- "end": {
- "line": 131,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 4428,
- 4439
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 13
- },
- "end": {
- "line": 131,
- "column": 24
- }
- }
- },
- "range": [
- 4423,
- 4439
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 8
- },
- "end": {
- "line": 131,
- "column": 24
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 4442,
- 4446
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 27
- },
- "end": {
- "line": 131,
- "column": 31
- }
- }
- },
- "range": [
- 4423,
- 4446
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 8
- },
- "end": {
- "line": 131,
- "column": 31
- }
- }
- },
- "range": [
- 4423,
- 4447
- ],
- "loc": {
- "start": {
- "line": 131,
- "column": 8
- },
- "end": {
- "line": 131,
- "column": 32
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "is first load boolean",
- "range": [
- 4391,
- 4414
- ],
- "loc": {
- "start": {
- "line": 130,
- "column": 8
- },
- "end": {
- "line": 130,
- "column": 31
- }
- }
- }
- ],
"trailingComments": [
{
"type": "Line",
"value": "container div for paging elements, reset btn etc.",
"range": [
- 4456,
- 4507
+ 4205,
+ 4256
],
"loc": {
"start": {
- "line": 132,
+ "line": 124,
"column": 8
},
"end": {
- "line": 132,
+ "line": 124,
"column": 59
}
}
@@ -10729,16 +10083,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4516,
- 4520
+ 4265,
+ 4269
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 8
},
"end": {
- "line": 133,
+ "line": 125,
"column": 12
}
}
@@ -10747,31 +10101,31 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 4521,
- 4527
+ 4270,
+ 4276
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 13
},
"end": {
- "line": 133,
+ "line": 125,
"column": 19
}
}
},
"range": [
- 4516,
- 4527
+ 4265,
+ 4276
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 8
},
"end": {
- "line": 133,
+ "line": 125,
"column": 19
}
}
@@ -10781,46 +10135,46 @@
"value": null,
"raw": "null",
"range": [
- 4530,
- 4534
+ 4279,
+ 4283
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 22
},
"end": {
- "line": 133,
+ "line": 125,
"column": 26
}
}
},
"range": [
- 4516,
- 4534
+ 4265,
+ 4283
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 8
},
"end": {
- "line": 133,
+ "line": 125,
"column": 26
}
}
},
"range": [
- 4516,
- 4535
+ 4265,
+ 4284
],
"loc": {
"start": {
- "line": 133,
+ "line": 125,
"column": 8
},
"end": {
- "line": 133,
+ "line": 125,
"column": 27
}
},
@@ -10829,16 +10183,16 @@
"type": "Line",
"value": "container div for paging elements, reset btn etc.",
"range": [
- 4456,
- 4507
+ 4205,
+ 4256
],
"loc": {
"start": {
- "line": 132,
+ "line": 124,
"column": 8
},
"end": {
- "line": 132,
+ "line": 124,
"column": 59
}
}
@@ -10849,16 +10203,16 @@
"type": "Line",
"value": "div for rows counter",
"range": [
- 4544,
- 4566
+ 4293,
+ 4315
],
"loc": {
"start": {
- "line": 134,
+ "line": 126,
"column": 8
},
"end": {
- "line": 134,
+ "line": 126,
"column": 30
}
}
@@ -10876,16 +10230,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4575,
- 4579
+ 4324,
+ 4328
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 8
},
"end": {
- "line": 135,
+ "line": 127,
"column": 12
}
}
@@ -10894,31 +10248,31 @@
"type": "Identifier",
"name": "lDiv",
"range": [
- 4580,
- 4584
+ 4329,
+ 4333
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 13
},
"end": {
- "line": 135,
+ "line": 127,
"column": 17
}
}
},
"range": [
- 4575,
- 4584
+ 4324,
+ 4333
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 8
},
"end": {
- "line": 135,
+ "line": 127,
"column": 17
}
}
@@ -10928,46 +10282,46 @@
"value": null,
"raw": "null",
"range": [
- 4587,
- 4591
+ 4336,
+ 4340
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 20
},
"end": {
- "line": 135,
+ "line": 127,
"column": 24
}
}
},
"range": [
- 4575,
- 4591
+ 4324,
+ 4340
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 8
},
"end": {
- "line": 135,
+ "line": 127,
"column": 24
}
}
},
"range": [
- 4575,
- 4592
+ 4324,
+ 4341
],
"loc": {
"start": {
- "line": 135,
+ "line": 127,
"column": 8
},
"end": {
- "line": 135,
+ "line": 127,
"column": 25
}
},
@@ -10976,16 +10330,16 @@
"type": "Line",
"value": "div for rows counter",
"range": [
- 4544,
- 4566
+ 4293,
+ 4315
],
"loc": {
"start": {
- "line": 134,
+ "line": 126,
"column": 8
},
"end": {
- "line": 134,
+ "line": 126,
"column": 30
}
}
@@ -10996,16 +10350,16 @@
"type": "Line",
"value": "div for reset button and results per page select",
"range": [
- 4601,
- 4651
+ 4350,
+ 4400
],
"loc": {
"start": {
- "line": 136,
+ "line": 128,
"column": 8
},
"end": {
- "line": 136,
+ "line": 128,
"column": 58
}
}
@@ -11023,16 +10377,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4660,
- 4664
+ 4409,
+ 4413
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 8
},
"end": {
- "line": 137,
+ "line": 129,
"column": 12
}
}
@@ -11041,31 +10395,31 @@
"type": "Identifier",
"name": "rDiv",
"range": [
- 4665,
- 4669
+ 4414,
+ 4418
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 13
},
"end": {
- "line": 137,
+ "line": 129,
"column": 17
}
}
},
"range": [
- 4660,
- 4669
+ 4409,
+ 4418
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 8
},
"end": {
- "line": 137,
+ "line": 129,
"column": 17
}
}
@@ -11075,46 +10429,46 @@
"value": null,
"raw": "null",
"range": [
- 4672,
- 4676
+ 4421,
+ 4425
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 20
},
"end": {
- "line": 137,
+ "line": 129,
"column": 24
}
}
},
"range": [
- 4660,
- 4676
+ 4409,
+ 4425
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 8
},
"end": {
- "line": 137,
+ "line": 129,
"column": 24
}
}
},
"range": [
- 4660,
- 4677
+ 4409,
+ 4426
],
"loc": {
"start": {
- "line": 137,
+ "line": 129,
"column": 8
},
"end": {
- "line": 137,
+ "line": 129,
"column": 25
}
},
@@ -11123,16 +10477,16 @@
"type": "Line",
"value": "div for reset button and results per page select",
"range": [
- 4601,
- 4651
+ 4350,
+ 4400
],
"loc": {
"start": {
- "line": 136,
+ "line": 128,
"column": 8
},
"end": {
- "line": 136,
+ "line": 128,
"column": 58
}
}
@@ -11143,16 +10497,16 @@
"type": "Line",
"value": "div for paging elements",
"range": [
- 4686,
- 4711
+ 4435,
+ 4460
],
"loc": {
"start": {
- "line": 138,
+ "line": 130,
"column": 8
},
"end": {
- "line": 138,
+ "line": 130,
"column": 33
}
}
@@ -11170,16 +10524,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4720,
- 4724
+ 4469,
+ 4473
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 8
},
"end": {
- "line": 139,
+ "line": 131,
"column": 12
}
}
@@ -11188,31 +10542,31 @@
"type": "Identifier",
"name": "mDiv",
"range": [
- 4725,
- 4729
+ 4474,
+ 4478
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 13
},
"end": {
- "line": 139,
+ "line": 131,
"column": 17
}
}
},
"range": [
- 4720,
- 4729
+ 4469,
+ 4478
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 8
},
"end": {
- "line": 139,
+ "line": 131,
"column": 17
}
}
@@ -11222,46 +10576,46 @@
"value": null,
"raw": "null",
"range": [
- 4732,
- 4736
+ 4481,
+ 4485
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 20
},
"end": {
- "line": 139,
+ "line": 131,
"column": 24
}
}
},
"range": [
- 4720,
- 4736
+ 4469,
+ 4485
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 8
},
"end": {
- "line": 139,
+ "line": 131,
"column": 24
}
}
},
"range": [
- 4720,
- 4737
+ 4469,
+ 4486
],
"loc": {
"start": {
- "line": 139,
+ "line": 131,
"column": 8
},
"end": {
- "line": 139,
+ "line": 131,
"column": 25
}
},
@@ -11270,16 +10624,16 @@
"type": "Line",
"value": "div for paging elements",
"range": [
- 4686,
- 4711
+ 4435,
+ 4460
],
"loc": {
"start": {
- "line": 138,
+ "line": 130,
"column": 8
},
"end": {
- "line": 138,
+ "line": 130,
"column": 33
}
}
@@ -11290,16 +10644,16 @@
"type": "Line",
"value": "defines css class for div containing paging elements, rows counter etc",
"range": [
- 4747,
- 4819
+ 4496,
+ 4568
],
"loc": {
"start": {
- "line": 141,
+ "line": 133,
"column": 8
},
"end": {
- "line": 141,
+ "line": 133,
"column": 80
}
}
@@ -11317,16 +10671,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4828,
- 4832
+ 4577,
+ 4581
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 8
},
"end": {
- "line": 142,
+ "line": 134,
"column": 12
}
}
@@ -11335,31 +10689,31 @@
"type": "Identifier",
"name": "infDivCssClass",
"range": [
- 4833,
- 4847
+ 4582,
+ 4596
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 13
},
"end": {
- "line": 142,
+ "line": 134,
"column": 27
}
}
},
"range": [
- 4828,
- 4847
+ 4577,
+ 4596
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 8
},
"end": {
- "line": 142,
+ "line": 134,
"column": 27
}
}
@@ -11374,16 +10728,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 4850,
- 4851
+ 4599,
+ 4600
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 30
},
"end": {
- "line": 142,
+ "line": 134,
"column": 31
}
}
@@ -11392,31 +10746,31 @@
"type": "Identifier",
"name": "inf_div_css_class",
"range": [
- 4852,
- 4869
+ 4601,
+ 4618
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 32
},
"end": {
- "line": 142,
+ "line": 134,
"column": 49
}
}
},
"range": [
- 4850,
- 4869
+ 4599,
+ 4618
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 30
},
"end": {
- "line": 142,
+ "line": 134,
"column": 49
}
}
@@ -11426,61 +10780,61 @@
"value": "inf",
"raw": "'inf'",
"range": [
- 4873,
- 4878
+ 4622,
+ 4627
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 53
},
"end": {
- "line": 142,
+ "line": 134,
"column": 58
}
}
},
"range": [
- 4850,
- 4878
+ 4599,
+ 4627
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 30
},
"end": {
- "line": 142,
+ "line": 134,
"column": 58
}
}
},
"range": [
- 4828,
- 4878
+ 4577,
+ 4627
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 8
},
"end": {
- "line": 142,
+ "line": 134,
"column": 58
}
}
},
"range": [
- 4828,
- 4879
+ 4577,
+ 4628
],
"loc": {
"start": {
- "line": 142,
+ "line": 134,
"column": 8
},
"end": {
- "line": 142,
+ "line": 134,
"column": 59
}
},
@@ -11489,16 +10843,16 @@
"type": "Line",
"value": "defines css class for div containing paging elements, rows counter etc",
"range": [
- 4747,
- 4819
+ 4496,
+ 4568
],
"loc": {
"start": {
- "line": 141,
+ "line": 133,
"column": 8
},
"end": {
- "line": 141,
+ "line": 133,
"column": 80
}
}
@@ -11509,16 +10863,16 @@
"type": "Line",
"value": "defines css class for left div",
"range": [
- 4888,
- 4920
+ 4637,
+ 4669
],
"loc": {
"start": {
- "line": 143,
+ "line": 135,
"column": 8
},
"end": {
- "line": 143,
+ "line": 135,
"column": 40
}
}
@@ -11536,16 +10890,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 4929,
- 4933
+ 4678,
+ 4682
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 8
},
"end": {
- "line": 144,
+ "line": 136,
"column": 12
}
}
@@ -11554,31 +10908,31 @@
"type": "Identifier",
"name": "lDivCssClass",
"range": [
- 4934,
- 4946
+ 4683,
+ 4695
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 13
},
"end": {
- "line": 144,
+ "line": 136,
"column": 25
}
}
},
"range": [
- 4929,
- 4946
+ 4678,
+ 4695
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 8
},
"end": {
- "line": 144,
+ "line": 136,
"column": 25
}
}
@@ -11593,16 +10947,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 4949,
- 4950
+ 4698,
+ 4699
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 28
},
"end": {
- "line": 144,
+ "line": 136,
"column": 29
}
}
@@ -11611,31 +10965,31 @@
"type": "Identifier",
"name": "left_div_css_class",
"range": [
- 4951,
- 4969
+ 4700,
+ 4718
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 30
},
"end": {
- "line": 144,
+ "line": 136,
"column": 48
}
}
},
"range": [
- 4949,
- 4969
+ 4698,
+ 4718
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 28
},
"end": {
- "line": 144,
+ "line": 136,
"column": 48
}
}
@@ -11645,61 +10999,61 @@
"value": "ldiv",
"raw": "'ldiv'",
"range": [
- 4973,
- 4979
+ 4722,
+ 4728
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 52
},
"end": {
- "line": 144,
+ "line": 136,
"column": 58
}
}
},
"range": [
- 4949,
- 4979
+ 4698,
+ 4728
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 28
},
"end": {
- "line": 144,
+ "line": 136,
"column": 58
}
}
},
"range": [
- 4929,
- 4979
+ 4678,
+ 4728
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 8
},
"end": {
- "line": 144,
+ "line": 136,
"column": 58
}
}
},
"range": [
- 4929,
- 4980
+ 4678,
+ 4729
],
"loc": {
"start": {
- "line": 144,
+ "line": 136,
"column": 8
},
"end": {
- "line": 144,
+ "line": 136,
"column": 59
}
},
@@ -11708,16 +11062,16 @@
"type": "Line",
"value": "defines css class for left div",
"range": [
- 4888,
- 4920
+ 4637,
+ 4669
],
"loc": {
"start": {
- "line": 143,
+ "line": 135,
"column": 8
},
"end": {
- "line": 143,
+ "line": 135,
"column": 40
}
}
@@ -11728,16 +11082,16 @@
"type": "Line",
"value": "defines css class for right div",
"range": [
- 4989,
- 5022
+ 4738,
+ 4771
],
"loc": {
"start": {
- "line": 145,
+ "line": 137,
"column": 8
},
"end": {
- "line": 145,
+ "line": 137,
"column": 41
}
}
@@ -11755,16 +11109,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5031,
- 5035
+ 4780,
+ 4784
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 8
},
"end": {
- "line": 146,
+ "line": 138,
"column": 12
}
}
@@ -11773,31 +11127,31 @@
"type": "Identifier",
"name": "rDivCssClass",
"range": [
- 5036,
- 5048
+ 4785,
+ 4797
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 13
},
"end": {
- "line": 146,
+ "line": 138,
"column": 25
}
}
},
"range": [
- 5031,
- 5048
+ 4780,
+ 4797
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 8
},
"end": {
- "line": 146,
+ "line": 138,
"column": 25
}
}
@@ -11812,16 +11166,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5052,
- 5053
+ 4801,
+ 4802
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 29
},
"end": {
- "line": 146,
+ "line": 138,
"column": 30
}
}
@@ -11830,31 +11184,31 @@
"type": "Identifier",
"name": "right_div_css_class",
"range": [
- 5054,
- 5073
+ 4803,
+ 4822
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 31
},
"end": {
- "line": 146,
+ "line": 138,
"column": 50
}
}
},
"range": [
- 5052,
- 5073
+ 4801,
+ 4822
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 29
},
"end": {
- "line": 146,
+ "line": 138,
"column": 50
}
}
@@ -11864,61 +11218,61 @@
"value": "rdiv",
"raw": "'rdiv'",
"range": [
- 5077,
- 5083
+ 4826,
+ 4832
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 54
},
"end": {
- "line": 146,
+ "line": 138,
"column": 60
}
}
},
"range": [
- 5052,
- 5083
+ 4801,
+ 4832
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 29
},
"end": {
- "line": 146,
+ "line": 138,
"column": 60
}
}
},
"range": [
- 5031,
- 5083
+ 4780,
+ 4832
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 8
},
"end": {
- "line": 146,
+ "line": 138,
"column": 60
}
}
},
"range": [
- 5031,
- 5084
+ 4780,
+ 4833
],
"loc": {
"start": {
- "line": 146,
+ "line": 138,
"column": 8
},
"end": {
- "line": 146,
+ "line": 138,
"column": 61
}
},
@@ -11927,16 +11281,16 @@
"type": "Line",
"value": "defines css class for right div",
"range": [
- 4989,
- 5022
+ 4738,
+ 4771
],
"loc": {
"start": {
- "line": 145,
+ "line": 137,
"column": 8
},
"end": {
- "line": 145,
+ "line": 137,
"column": 41
}
}
@@ -11947,16 +11301,16 @@
"type": "Line",
"value": "defines css class for mid div",
"range": [
- 5093,
- 5124
+ 4842,
+ 4873
],
"loc": {
"start": {
- "line": 147,
+ "line": 139,
"column": 8
},
"end": {
- "line": 147,
+ "line": 139,
"column": 39
}
}
@@ -11974,16 +11328,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5133,
- 5137
+ 4882,
+ 4886
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 8
},
"end": {
- "line": 148,
+ "line": 140,
"column": 12
}
}
@@ -11992,31 +11346,31 @@
"type": "Identifier",
"name": "mDivCssClass",
"range": [
- 5138,
- 5150
+ 4887,
+ 4899
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 13
},
"end": {
- "line": 148,
+ "line": 140,
"column": 25
}
}
},
"range": [
- 5133,
- 5150
+ 4882,
+ 4899
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 8
},
"end": {
- "line": 148,
+ "line": 140,
"column": 25
}
}
@@ -12031,16 +11385,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5153,
- 5154
+ 4902,
+ 4903
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 28
},
"end": {
- "line": 148,
+ "line": 140,
"column": 29
}
}
@@ -12049,31 +11403,31 @@
"type": "Identifier",
"name": "middle_div_css_class",
"range": [
- 5155,
- 5175
+ 4904,
+ 4924
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 30
},
"end": {
- "line": 148,
+ "line": 140,
"column": 50
}
}
},
"range": [
- 5153,
- 5175
+ 4902,
+ 4924
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 28
},
"end": {
- "line": 148,
+ "line": 140,
"column": 50
}
}
@@ -12083,61 +11437,61 @@
"value": "mdiv",
"raw": "'mdiv'",
"range": [
- 5179,
- 5185
+ 4928,
+ 4934
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 54
},
"end": {
- "line": 148,
+ "line": 140,
"column": 60
}
}
},
"range": [
- 5153,
- 5185
+ 4902,
+ 4934
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 28
},
"end": {
- "line": 148,
+ "line": 140,
"column": 60
}
}
},
"range": [
- 5133,
- 5185
+ 4882,
+ 4934
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 8
},
"end": {
- "line": 148,
+ "line": 140,
"column": 60
}
}
},
"range": [
- 5133,
- 5186
+ 4882,
+ 4935
],
"loc": {
"start": {
- "line": 148,
+ "line": 140,
"column": 8
},
"end": {
- "line": 148,
+ "line": 140,
"column": 61
}
},
@@ -12146,16 +11500,16 @@
"type": "Line",
"value": "defines css class for mid div",
"range": [
- 5093,
- 5124
+ 4842,
+ 4873
],
"loc": {
"start": {
- "line": 147,
+ "line": 139,
"column": 8
},
"end": {
- "line": 147,
+ "line": 139,
"column": 39
}
}
@@ -12166,16 +11520,16 @@
"type": "Line",
"value": "table container div css class",
"range": [
- 5195,
- 5226
+ 4944,
+ 4975
],
"loc": {
"start": {
- "line": 149,
+ "line": 141,
"column": 8
},
"end": {
- "line": 149,
+ "line": 141,
"column": 39
}
}
@@ -12193,16 +11547,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5235,
- 5239
+ 4984,
+ 4988
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 8
},
"end": {
- "line": 150,
+ "line": 142,
"column": 12
}
}
@@ -12211,31 +11565,31 @@
"type": "Identifier",
"name": "contDivCssClass",
"range": [
- 5240,
- 5255
+ 4989,
+ 5004
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 13
},
"end": {
- "line": 150,
+ "line": 142,
"column": 28
}
}
},
"range": [
- 5235,
- 5255
+ 4984,
+ 5004
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 8
},
"end": {
- "line": 150,
+ "line": 142,
"column": 28
}
}
@@ -12250,16 +11604,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5258,
- 5259
+ 5007,
+ 5008
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 31
},
"end": {
- "line": 150,
+ "line": 142,
"column": 32
}
}
@@ -12268,31 +11622,31 @@
"type": "Identifier",
"name": "content_div_css_class",
"range": [
- 5260,
- 5281
+ 5009,
+ 5030
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 33
},
"end": {
- "line": 150,
+ "line": 142,
"column": 54
}
}
},
"range": [
- 5258,
- 5281
+ 5007,
+ 5030
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 31
},
"end": {
- "line": 150,
+ "line": 142,
"column": 54
}
}
@@ -12302,61 +11656,61 @@
"value": "cont",
"raw": "'cont'",
"range": [
- 5285,
- 5291
+ 5034,
+ 5040
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 58
},
"end": {
- "line": 150,
+ "line": 142,
"column": 64
}
}
},
"range": [
- 5258,
- 5291
+ 5007,
+ 5040
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 31
},
"end": {
- "line": 150,
+ "line": 142,
"column": 64
}
}
},
"range": [
- 5235,
- 5291
+ 4984,
+ 5040
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 8
},
"end": {
- "line": 150,
+ "line": 142,
"column": 64
}
}
},
"range": [
- 5235,
- 5292
+ 4984,
+ 5041
],
"loc": {
"start": {
- "line": 150,
+ "line": 142,
"column": 8
},
"end": {
- "line": 150,
+ "line": 142,
"column": 65
}
},
@@ -12365,16 +11719,16 @@
"type": "Line",
"value": "table container div css class",
"range": [
- 5195,
- 5226
+ 4944,
+ 4975
],
"loc": {
"start": {
- "line": 149,
+ "line": 141,
"column": 8
},
"end": {
- "line": 149,
+ "line": 141,
"column": 39
}
}
@@ -12385,16 +11739,16 @@
"type": "Block",
"value": "** filters' grid appearance **",
"range": [
- 5302,
- 5336
+ 5051,
+ 5085
],
"loc": {
"start": {
- "line": 152,
+ "line": 144,
"column": 8
},
"end": {
- "line": 152,
+ "line": 144,
"column": 42
}
}
@@ -12403,16 +11757,16 @@
"type": "Line",
"value": "stylesheet file",
"range": [
- 5345,
- 5362
+ 5094,
+ 5111
],
"loc": {
"start": {
- "line": 153,
+ "line": 145,
"column": 8
},
"end": {
- "line": 153,
+ "line": 145,
"column": 25
}
}
@@ -12430,16 +11784,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5371,
- 5375
+ 5120,
+ 5124
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 8
},
"end": {
- "line": 154,
+ "line": 146,
"column": 12
}
}
@@ -12448,31 +11802,31 @@
"type": "Identifier",
"name": "stylePath",
"range": [
- 5376,
- 5385
+ 5125,
+ 5134
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 13
},
"end": {
- "line": 154,
+ "line": 146,
"column": 22
}
}
},
"range": [
- 5371,
- 5385
+ 5120,
+ 5134
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 8
},
"end": {
- "line": 154,
+ "line": 146,
"column": 22
}
}
@@ -12487,16 +11841,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5388,
- 5389
+ 5137,
+ 5138
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 25
},
"end": {
- "line": 154,
+ "line": 146,
"column": 26
}
}
@@ -12505,31 +11859,31 @@
"type": "Identifier",
"name": "style_path",
"range": [
- 5390,
- 5400
+ 5139,
+ 5149
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 27
},
"end": {
- "line": 154,
+ "line": 146,
"column": 37
}
}
},
"range": [
- 5388,
- 5400
+ 5137,
+ 5149
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 25
},
"end": {
- "line": 154,
+ "line": 146,
"column": 37
}
}
@@ -12543,16 +11897,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5404,
- 5408
+ 5153,
+ 5157
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 41
},
"end": {
- "line": 154,
+ "line": 146,
"column": 45
}
}
@@ -12561,31 +11915,31 @@
"type": "Identifier",
"name": "basePath",
"range": [
- 5409,
- 5417
+ 5158,
+ 5166
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 46
},
"end": {
- "line": 154,
+ "line": 146,
"column": 54
}
}
},
"range": [
- 5404,
- 5417
+ 5153,
+ 5166
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 41
},
"end": {
- "line": 154,
+ "line": 146,
"column": 54
}
}
@@ -12595,76 +11949,76 @@
"value": "style/",
"raw": "'style/'",
"range": [
- 5420,
- 5428
+ 5169,
+ 5177
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 57
},
"end": {
- "line": 154,
+ "line": 146,
"column": 65
}
}
},
"range": [
- 5404,
- 5428
+ 5153,
+ 5177
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 41
},
"end": {
- "line": 154,
+ "line": 146,
"column": 65
}
}
},
"range": [
- 5388,
- 5428
+ 5137,
+ 5177
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 25
},
"end": {
- "line": 154,
+ "line": 146,
"column": 65
}
}
},
"range": [
- 5371,
- 5428
+ 5120,
+ 5177
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 8
},
"end": {
- "line": 154,
+ "line": 146,
"column": 65
}
}
},
"range": [
- 5371,
- 5429
+ 5120,
+ 5178
],
"loc": {
"start": {
- "line": 154,
+ "line": 146,
"column": 8
},
"end": {
- "line": 154,
+ "line": 146,
"column": 66
}
},
@@ -12673,16 +12027,16 @@
"type": "Block",
"value": "** filters' grid appearance **",
"range": [
- 5302,
- 5336
+ 5051,
+ 5085
],
"loc": {
"start": {
- "line": 152,
+ "line": 144,
"column": 8
},
"end": {
- "line": 152,
+ "line": 144,
"column": 42
}
}
@@ -12691,16 +12045,16 @@
"type": "Line",
"value": "stylesheet file",
"range": [
- 5345,
- 5362
+ 5094,
+ 5111
],
"loc": {
"start": {
- "line": 153,
+ "line": 145,
"column": 8
},
"end": {
- "line": 153,
+ "line": 145,
"column": 25
}
}
@@ -12718,16 +12072,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5438,
- 5442
+ 5187,
+ 5191
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 8
},
"end": {
- "line": 155,
+ "line": 147,
"column": 12
}
}
@@ -12736,31 +12090,31 @@
"type": "Identifier",
"name": "stylesheet",
"range": [
- 5443,
- 5453
+ 5192,
+ 5202
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 13
},
"end": {
- "line": 155,
+ "line": 147,
"column": 23
}
}
},
"range": [
- 5438,
- 5453
+ 5187,
+ 5202
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 8
},
"end": {
- "line": 155,
+ "line": 147,
"column": 23
}
}
@@ -12775,16 +12129,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5456,
- 5457
+ 5205,
+ 5206
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 26
},
"end": {
- "line": 155,
+ "line": 147,
"column": 27
}
}
@@ -12793,31 +12147,31 @@
"type": "Identifier",
"name": "stylesheet",
"range": [
- 5458,
- 5468
+ 5207,
+ 5217
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 28
},
"end": {
- "line": 155,
+ "line": 147,
"column": 38
}
}
},
"range": [
- 5456,
- 5468
+ 5205,
+ 5217
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 26
},
"end": {
- "line": 155,
+ "line": 147,
"column": 38
}
}
@@ -12831,16 +12185,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5472,
- 5476
+ 5221,
+ 5225
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 42
},
"end": {
- "line": 155,
+ "line": 147,
"column": 46
}
}
@@ -12849,31 +12203,31 @@
"type": "Identifier",
"name": "stylePath",
"range": [
- 5477,
- 5486
+ 5226,
+ 5235
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 47
},
"end": {
- "line": 155,
+ "line": 147,
"column": 56
}
}
},
"range": [
- 5472,
- 5486
+ 5221,
+ 5235
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 42
},
"end": {
- "line": 155,
+ "line": 147,
"column": 56
}
}
@@ -12883,76 +12237,76 @@
"value": "tablefilter.css",
"raw": "'tablefilter.css'",
"range": [
- 5487,
- 5504
+ 5236,
+ 5253
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 57
},
"end": {
- "line": 155,
+ "line": 147,
"column": 74
}
}
},
"range": [
- 5472,
- 5504
+ 5221,
+ 5253
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 42
},
"end": {
- "line": 155,
+ "line": 147,
"column": 74
}
}
},
"range": [
- 5456,
- 5504
+ 5205,
+ 5253
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 26
},
"end": {
- "line": 155,
+ "line": 147,
"column": 74
}
}
},
"range": [
- 5438,
- 5504
+ 5187,
+ 5253
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 8
},
"end": {
- "line": 155,
+ "line": 147,
"column": 74
}
}
},
"range": [
- 5438,
- 5505
+ 5187,
+ 5254
],
"loc": {
"start": {
- "line": 155,
+ "line": 147,
"column": 8
},
"end": {
- "line": 155,
+ "line": 147,
"column": 75
}
}
@@ -12968,16 +12322,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5514,
- 5518
+ 5263,
+ 5267
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 8
},
"end": {
- "line": 156,
+ "line": 148,
"column": 12
}
}
@@ -12986,31 +12340,31 @@
"type": "Identifier",
"name": "stylesheetId",
"range": [
- 5519,
- 5531
+ 5268,
+ 5280
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 13
},
"end": {
- "line": 156,
+ "line": 148,
"column": 25
}
}
},
"range": [
- 5514,
- 5531
+ 5263,
+ 5280
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 8
},
"end": {
- "line": 156,
+ "line": 148,
"column": 25
}
}
@@ -13024,16 +12378,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5534,
- 5538
+ 5283,
+ 5287
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 28
},
"end": {
- "line": 156,
+ "line": 148,
"column": 32
}
}
@@ -13042,31 +12396,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 5539,
- 5541
+ 5288,
+ 5290
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 33
},
"end": {
- "line": 156,
+ "line": 148,
"column": 35
}
}
},
"range": [
- 5534,
- 5541
+ 5283,
+ 5290
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 28
},
"end": {
- "line": 156,
+ "line": 148,
"column": 35
}
}
@@ -13076,61 +12430,61 @@
"value": "_style",
"raw": "'_style'",
"range": [
- 5544,
- 5552
+ 5293,
+ 5301
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 38
},
"end": {
- "line": 156,
+ "line": 148,
"column": 46
}
}
},
"range": [
- 5534,
- 5552
+ 5283,
+ 5301
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 28
},
"end": {
- "line": 156,
+ "line": 148,
"column": 46
}
}
},
"range": [
- 5514,
- 5552
+ 5263,
+ 5301
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 8
},
"end": {
- "line": 156,
+ "line": 148,
"column": 46
}
}
},
"range": [
- 5514,
- 5553
+ 5263,
+ 5302
],
"loc": {
"start": {
- "line": 156,
+ "line": 148,
"column": 8
},
"end": {
- "line": 156,
+ "line": 148,
"column": 47
}
},
@@ -13139,16 +12493,16 @@
"type": "Line",
"value": "defines css class for filters row",
"range": [
- 5562,
- 5597
+ 5311,
+ 5346
],
"loc": {
"start": {
- "line": 157,
+ "line": 149,
"column": 8
},
"end": {
- "line": 157,
+ "line": 149,
"column": 43
}
}
@@ -13166,16 +12520,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5606,
- 5610
+ 5355,
+ 5359
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 8
},
"end": {
- "line": 158,
+ "line": 150,
"column": 12
}
}
@@ -13184,31 +12538,31 @@
"type": "Identifier",
"name": "fltsRowCssClass",
"range": [
- 5611,
- 5626
+ 5360,
+ 5375
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 13
},
"end": {
- "line": 158,
+ "line": 150,
"column": 28
}
}
},
"range": [
- 5606,
- 5626
+ 5355,
+ 5375
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 8
},
"end": {
- "line": 158,
+ "line": 150,
"column": 28
}
}
@@ -13223,16 +12577,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5629,
- 5630
+ 5378,
+ 5379
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 31
},
"end": {
- "line": 158,
+ "line": 150,
"column": 32
}
}
@@ -13241,31 +12595,31 @@
"type": "Identifier",
"name": "flts_row_css_class",
"range": [
- 5631,
- 5649
+ 5380,
+ 5398
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 33
},
"end": {
- "line": 158,
+ "line": 150,
"column": 51
}
}
},
"range": [
- 5629,
- 5649
+ 5378,
+ 5398
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 31
},
"end": {
- "line": 158,
+ "line": 150,
"column": 51
}
}
@@ -13275,61 +12629,61 @@
"value": "fltrow",
"raw": "'fltrow'",
"range": [
- 5653,
- 5661
+ 5402,
+ 5410
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 55
},
"end": {
- "line": 158,
+ "line": 150,
"column": 63
}
}
},
"range": [
- 5629,
- 5661
+ 5378,
+ 5410
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 31
},
"end": {
- "line": 158,
+ "line": 150,
"column": 63
}
}
},
"range": [
- 5606,
- 5661
+ 5355,
+ 5410
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 8
},
"end": {
- "line": 158,
+ "line": 150,
"column": 63
}
}
},
"range": [
- 5606,
- 5662
+ 5355,
+ 5411
],
"loc": {
"start": {
- "line": 158,
+ "line": 150,
"column": 8
},
"end": {
- "line": 158,
+ "line": 150,
"column": 64
}
},
@@ -13338,16 +12692,16 @@
"type": "Line",
"value": "defines css class for filters row",
"range": [
- 5562,
- 5597
+ 5311,
+ 5346
],
"loc": {
"start": {
- "line": 157,
+ "line": 149,
"column": 8
},
"end": {
- "line": 157,
+ "line": 149,
"column": 43
}
}
@@ -13358,16 +12712,16 @@
"type": "Line",
"value": "enables/disables icons (paging, reset button)",
"range": [
- 5672,
- 5719
+ 5421,
+ 5468
],
"loc": {
"start": {
- "line": 159,
+ "line": 151,
"column": 9
},
"end": {
- "line": 159,
+ "line": 151,
"column": 56
}
}
@@ -13385,16 +12739,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5728,
- 5732
+ 5477,
+ 5481
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 8
},
"end": {
- "line": 160,
+ "line": 152,
"column": 12
}
}
@@ -13403,31 +12757,31 @@
"type": "Identifier",
"name": "enableIcons",
"range": [
- 5733,
- 5744
+ 5482,
+ 5493
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 13
},
"end": {
- "line": 160,
+ "line": 152,
"column": 24
}
}
},
"range": [
- 5728,
- 5744
+ 5477,
+ 5493
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 8
},
"end": {
- "line": 160,
+ "line": 152,
"column": 24
}
}
@@ -13444,16 +12798,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5747,
- 5748
+ 5496,
+ 5497
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 27
},
"end": {
- "line": 160,
+ "line": 152,
"column": 28
}
}
@@ -13462,31 +12816,31 @@
"type": "Identifier",
"name": "enable_icons",
"range": [
- 5749,
- 5761
+ 5498,
+ 5510
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 29
},
"end": {
- "line": 160,
+ "line": 152,
"column": 41
}
}
},
"range": [
- 5747,
- 5761
+ 5496,
+ 5510
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 27
},
"end": {
- "line": 160,
+ "line": 152,
"column": 41
}
}
@@ -13496,31 +12850,31 @@
"value": false,
"raw": "false",
"range": [
- 5764,
- 5769
+ 5513,
+ 5518
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 44
},
"end": {
- "line": 160,
+ "line": 152,
"column": 49
}
}
},
"range": [
- 5747,
- 5769
+ 5496,
+ 5518
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 27
},
"end": {
- "line": 160,
+ "line": 152,
"column": 49
}
}
@@ -13530,16 +12884,16 @@
"value": false,
"raw": "false",
"range": [
- 5772,
- 5777
+ 5521,
+ 5526
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 52
},
"end": {
- "line": 160,
+ "line": 152,
"column": 57
}
}
@@ -13549,61 +12903,61 @@
"value": true,
"raw": "true",
"range": [
- 5780,
- 5784
+ 5529,
+ 5533
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 60
},
"end": {
- "line": 160,
+ "line": 152,
"column": 64
}
}
},
"range": [
- 5747,
- 5784
+ 5496,
+ 5533
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 27
},
"end": {
- "line": 160,
+ "line": 152,
"column": 64
}
}
},
"range": [
- 5728,
- 5784
+ 5477,
+ 5533
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 8
},
"end": {
- "line": 160,
+ "line": 152,
"column": 64
}
}
},
"range": [
- 5728,
- 5785
+ 5477,
+ 5534
],
"loc": {
"start": {
- "line": 160,
+ "line": 152,
"column": 8
},
"end": {
- "line": 160,
+ "line": 152,
"column": 65
}
},
@@ -13612,16 +12966,16 @@
"type": "Line",
"value": "enables/disables icons (paging, reset button)",
"range": [
- 5672,
- 5719
+ 5421,
+ 5468
],
"loc": {
"start": {
- "line": 159,
+ "line": 151,
"column": 9
},
"end": {
- "line": 159,
+ "line": 151,
"column": 56
}
}
@@ -13632,16 +12986,16 @@
"type": "Line",
"value": "enables/disbles rows alternating bg colors",
"range": [
- 5794,
- 5838
+ 5543,
+ 5587
],
"loc": {
"start": {
- "line": 161,
+ "line": 153,
"column": 8
},
"end": {
- "line": 161,
+ "line": 153,
"column": 52
}
}
@@ -13659,16 +13013,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5847,
- 5851
+ 5596,
+ 5600
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 8
},
"end": {
- "line": 162,
+ "line": 154,
"column": 12
}
}
@@ -13677,31 +13031,31 @@
"type": "Identifier",
"name": "alternateRows",
"range": [
- 5852,
- 5865
+ 5601,
+ 5614
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 13
},
"end": {
- "line": 162,
+ "line": 154,
"column": 26
}
}
},
"range": [
- 5847,
- 5865
+ 5596,
+ 5614
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 8
},
"end": {
- "line": 162,
+ "line": 154,
"column": 26
}
}
@@ -13712,16 +13066,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 5868,
- 5875
+ 5617,
+ 5624
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 29
},
"end": {
- "line": 162,
+ "line": 154,
"column": 36
}
}
@@ -13734,16 +13088,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5876,
- 5877
+ 5625,
+ 5626
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 37
},
"end": {
- "line": 162,
+ "line": 154,
"column": 38
}
}
@@ -13752,77 +13106,77 @@
"type": "Identifier",
"name": "alternate_rows",
"range": [
- 5878,
- 5892
+ 5627,
+ 5641
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 39
},
"end": {
- "line": 162,
+ "line": 154,
"column": 53
}
}
},
"range": [
- 5876,
- 5892
+ 5625,
+ 5641
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 37
},
"end": {
- "line": 162,
+ "line": 154,
"column": 53
}
}
}
],
"range": [
- 5868,
- 5893
+ 5617,
+ 5642
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 29
},
"end": {
- "line": 162,
+ "line": 154,
"column": 54
}
}
},
"range": [
- 5847,
- 5893
+ 5596,
+ 5642
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 8
},
"end": {
- "line": 162,
+ "line": 154,
"column": 54
}
}
},
"range": [
- 5847,
- 5894
+ 5596,
+ 5643
],
"loc": {
"start": {
- "line": 162,
+ "line": 154,
"column": 8
},
"end": {
- "line": 162,
+ "line": 154,
"column": 55
}
},
@@ -13831,16 +13185,16 @@
"type": "Line",
"value": "enables/disbles rows alternating bg colors",
"range": [
- 5794,
- 5838
+ 5543,
+ 5587
],
"loc": {
"start": {
- "line": 161,
+ "line": 153,
"column": 8
},
"end": {
- "line": 161,
+ "line": 153,
"column": 52
}
}
@@ -13851,16 +13205,16 @@
"type": "Line",
"value": "defines widths of columns",
"range": [
- 5903,
- 5930
+ 5652,
+ 5679
],
"loc": {
"start": {
- "line": 163,
+ "line": 155,
"column": 8
},
"end": {
- "line": 163,
+ "line": 155,
"column": 35
}
}
@@ -13878,16 +13232,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5939,
- 5943
+ 5688,
+ 5692
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 8
},
"end": {
- "line": 164,
+ "line": 156,
"column": 12
}
}
@@ -13896,31 +13250,31 @@
"type": "Identifier",
"name": "hasColWidths",
"range": [
- 5944,
- 5956
+ 5693,
+ 5705
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 13
},
"end": {
- "line": 164,
+ "line": 156,
"column": 25
}
}
},
"range": [
- 5939,
- 5956
+ 5688,
+ 5705
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 8
},
"end": {
- "line": 164,
+ "line": 156,
"column": 25
}
}
@@ -13934,16 +13288,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 5959,
- 5964
+ 5708,
+ 5713
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 28
},
"end": {
- "line": 164,
+ "line": 156,
"column": 33
}
}
@@ -13952,31 +13306,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 5965,
- 5972
+ 5714,
+ 5721
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 34
},
"end": {
- "line": 164,
+ "line": 156,
"column": 41
}
}
},
"range": [
- 5959,
- 5972
+ 5708,
+ 5721
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 28
},
"end": {
- "line": 164,
+ "line": 156,
"column": 41
}
}
@@ -13989,16 +13343,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 5973,
- 5974
+ 5722,
+ 5723
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 42
},
"end": {
- "line": 164,
+ "line": 156,
"column": 43
}
}
@@ -14007,77 +13361,77 @@
"type": "Identifier",
"name": "col_widths",
"range": [
- 5975,
- 5985
+ 5724,
+ 5734
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 44
},
"end": {
- "line": 164,
+ "line": 156,
"column": 54
}
}
},
"range": [
- 5973,
- 5985
+ 5722,
+ 5734
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 42
},
"end": {
- "line": 164,
+ "line": 156,
"column": 54
}
}
}
],
"range": [
- 5959,
- 5986
+ 5708,
+ 5735
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 28
},
"end": {
- "line": 164,
+ "line": 156,
"column": 55
}
}
},
"range": [
- 5939,
- 5986
+ 5688,
+ 5735
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 8
},
"end": {
- "line": 164,
+ "line": 156,
"column": 55
}
}
},
"range": [
- 5939,
- 5987
+ 5688,
+ 5736
],
"loc": {
"start": {
- "line": 164,
+ "line": 156,
"column": 8
},
"end": {
- "line": 164,
+ "line": 156,
"column": 56
}
},
@@ -14086,16 +13440,16 @@
"type": "Line",
"value": "defines widths of columns",
"range": [
- 5903,
- 5930
+ 5652,
+ 5679
],
"loc": {
"start": {
- "line": 163,
+ "line": 155,
"column": 8
},
"end": {
- "line": 163,
+ "line": 155,
"column": 35
}
}
@@ -14113,16 +13467,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 5996,
- 6000
+ 5745,
+ 5749
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 8
},
"end": {
- "line": 165,
+ "line": 157,
"column": 12
}
}
@@ -14131,31 +13485,31 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 6001,
- 6010
+ 5750,
+ 5759
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 13
},
"end": {
- "line": 165,
+ "line": 157,
"column": 22
}
}
},
"range": [
- 5996,
- 6010
+ 5745,
+ 5759
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 8
},
"end": {
- "line": 165,
+ "line": 157,
"column": 22
}
}
@@ -14168,16 +13522,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6013,
- 6017
+ 5762,
+ 5766
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 25
},
"end": {
- "line": 165,
+ "line": 157,
"column": 29
}
}
@@ -14186,31 +13540,31 @@
"type": "Identifier",
"name": "hasColWidths",
"range": [
- 6018,
- 6030
+ 5767,
+ 5779
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 30
},
"end": {
- "line": 165,
+ "line": 157,
"column": 42
}
}
},
"range": [
- 6013,
- 6030
+ 5762,
+ 5779
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 25
},
"end": {
- "line": 165,
+ "line": 157,
"column": 42
}
}
@@ -14222,16 +13576,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6033,
- 6034
+ 5782,
+ 5783
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 45
},
"end": {
- "line": 165,
+ "line": 157,
"column": 46
}
}
@@ -14240,31 +13594,31 @@
"type": "Identifier",
"name": "col_widths",
"range": [
- 6035,
- 6045
+ 5784,
+ 5794
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 47
},
"end": {
- "line": 165,
+ "line": 157,
"column": 57
}
}
},
"range": [
- 6033,
- 6045
+ 5782,
+ 5794
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 45
},
"end": {
- "line": 165,
+ "line": 157,
"column": 57
}
}
@@ -14274,61 +13628,61 @@
"value": null,
"raw": "null",
"range": [
- 6048,
- 6052
+ 5797,
+ 5801
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 60
},
"end": {
- "line": 165,
+ "line": 157,
"column": 64
}
}
},
"range": [
- 6013,
- 6052
+ 5762,
+ 5801
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 25
},
"end": {
- "line": 165,
+ "line": 157,
"column": 64
}
}
},
"range": [
- 5996,
- 6052
+ 5745,
+ 5801
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 8
},
"end": {
- "line": 165,
+ "line": 157,
"column": 64
}
}
},
"range": [
- 5996,
- 6053
+ 5745,
+ 5802
],
"loc": {
"start": {
- "line": 165,
+ "line": 157,
"column": 8
},
"end": {
- "line": 165,
+ "line": 157,
"column": 65
}
},
@@ -14337,16 +13691,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6062,
- 6093
+ 5811,
+ 5842
],
"loc": {
"start": {
- "line": 166,
+ "line": 158,
"column": 8
},
"end": {
- "line": 166,
+ "line": 158,
"column": 39
}
}
@@ -14364,16 +13718,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6102,
- 6106
+ 5851,
+ 5855
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 8
},
"end": {
- "line": 167,
+ "line": 159,
"column": 12
}
}
@@ -14382,31 +13736,31 @@
"type": "Identifier",
"name": "fltCssClass",
"range": [
- 6107,
- 6118
+ 5856,
+ 5867
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 13
},
"end": {
- "line": 167,
+ "line": 159,
"column": 24
}
}
},
"range": [
- 6102,
- 6118
+ 5851,
+ 5867
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 8
},
"end": {
- "line": 167,
+ "line": 159,
"column": 24
}
}
@@ -14421,16 +13775,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6121,
- 6122
+ 5870,
+ 5871
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 27
},
"end": {
- "line": 167,
+ "line": 159,
"column": 28
}
}
@@ -14439,31 +13793,31 @@
"type": "Identifier",
"name": "flt_css_class",
"range": [
- 6123,
- 6136
+ 5872,
+ 5885
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 29
},
"end": {
- "line": 167,
+ "line": 159,
"column": 42
}
}
},
"range": [
- 6121,
- 6136
+ 5870,
+ 5885
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 27
},
"end": {
- "line": 167,
+ "line": 159,
"column": 42
}
}
@@ -14473,61 +13827,61 @@
"value": "flt",
"raw": "'flt'",
"range": [
- 6140,
- 6145
+ 5889,
+ 5894
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 46
},
"end": {
- "line": 167,
+ "line": 159,
"column": 51
}
}
},
"range": [
- 6121,
- 6145
+ 5870,
+ 5894
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 27
},
"end": {
- "line": 167,
+ "line": 159,
"column": 51
}
}
},
"range": [
- 6102,
- 6145
+ 5851,
+ 5894
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 8
},
"end": {
- "line": 167,
+ "line": 159,
"column": 51
}
}
},
"range": [
- 6102,
- 6146
+ 5851,
+ 5895
],
"loc": {
"start": {
- "line": 167,
+ "line": 159,
"column": 8
},
"end": {
- "line": 167,
+ "line": 159,
"column": 52
}
},
@@ -14536,16 +13890,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6062,
- 6093
+ 5811,
+ 5842
],
"loc": {
"start": {
- "line": 166,
+ "line": 158,
"column": 8
},
"end": {
- "line": 166,
+ "line": 158,
"column": 39
}
}
@@ -14556,16 +13910,16 @@
"type": "Line",
"value": "defines css class for multiple selects filters",
"range": [
- 6155,
- 6203
+ 5904,
+ 5952
],
"loc": {
"start": {
- "line": 168,
+ "line": 160,
"column": 8
},
"end": {
- "line": 168,
+ "line": 160,
"column": 56
}
}
@@ -14583,16 +13937,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6212,
- 6216
+ 5961,
+ 5965
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 8
},
"end": {
- "line": 169,
+ "line": 161,
"column": 12
}
}
@@ -14601,31 +13955,31 @@
"type": "Identifier",
"name": "fltMultiCssClass",
"range": [
- 6217,
- 6233
+ 5966,
+ 5982
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 13
},
"end": {
- "line": 169,
+ "line": 161,
"column": 29
}
}
},
"range": [
- 6212,
- 6233
+ 5961,
+ 5982
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 8
},
"end": {
- "line": 169,
+ "line": 161,
"column": 29
}
}
@@ -14640,16 +13994,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6236,
- 6237
+ 5985,
+ 5986
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 32
},
"end": {
- "line": 169,
+ "line": 161,
"column": 33
}
}
@@ -14658,31 +14012,31 @@
"type": "Identifier",
"name": "flt_multi_css_class",
"range": [
- 6238,
- 6257
+ 5987,
+ 6006
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 34
},
"end": {
- "line": 169,
+ "line": 161,
"column": 53
}
}
},
"range": [
- 6236,
- 6257
+ 5985,
+ 6006
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 32
},
"end": {
- "line": 169,
+ "line": 161,
"column": 53
}
}
@@ -14692,61 +14046,61 @@
"value": "flt_multi",
"raw": "'flt_multi'",
"range": [
- 6261,
- 6272
+ 6010,
+ 6021
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 57
},
"end": {
- "line": 169,
+ "line": 161,
"column": 68
}
}
},
"range": [
- 6236,
- 6272
+ 5985,
+ 6021
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 32
},
"end": {
- "line": 169,
+ "line": 161,
"column": 68
}
}
},
"range": [
- 6212,
- 6272
+ 5961,
+ 6021
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 8
},
"end": {
- "line": 169,
+ "line": 161,
"column": 68
}
}
},
"range": [
- 6212,
- 6273
+ 5961,
+ 6022
],
"loc": {
"start": {
- "line": 169,
+ "line": 161,
"column": 8
},
"end": {
- "line": 169,
+ "line": 161,
"column": 69
}
},
@@ -14755,16 +14109,16 @@
"type": "Line",
"value": "defines css class for multiple selects filters",
"range": [
- 6155,
- 6203
+ 5904,
+ 5952
],
"loc": {
"start": {
- "line": 168,
+ "line": 160,
"column": 8
},
"end": {
- "line": 168,
+ "line": 160,
"column": 56
}
}
@@ -14775,16 +14129,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6282,
- 6313
+ 6031,
+ 6062
],
"loc": {
"start": {
- "line": 170,
+ "line": 162,
"column": 8
},
"end": {
- "line": 170,
+ "line": 162,
"column": 39
}
}
@@ -14802,16 +14156,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6322,
- 6326
+ 6071,
+ 6075
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 8
},
"end": {
- "line": 171,
+ "line": 163,
"column": 12
}
}
@@ -14820,31 +14174,31 @@
"type": "Identifier",
"name": "fltSmallCssClass",
"range": [
- 6327,
- 6343
+ 6076,
+ 6092
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 13
},
"end": {
- "line": 171,
+ "line": 163,
"column": 29
}
}
},
"range": [
- 6322,
- 6343
+ 6071,
+ 6092
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 8
},
"end": {
- "line": 171,
+ "line": 163,
"column": 29
}
}
@@ -14859,16 +14213,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6346,
- 6347
+ 6095,
+ 6096
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 32
},
"end": {
- "line": 171,
+ "line": 163,
"column": 33
}
}
@@ -14877,31 +14231,31 @@
"type": "Identifier",
"name": "flt_small_css_class",
"range": [
- 6348,
- 6367
+ 6097,
+ 6116
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 34
},
"end": {
- "line": 171,
+ "line": 163,
"column": 53
}
}
},
"range": [
- 6346,
- 6367
+ 6095,
+ 6116
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 32
},
"end": {
- "line": 171,
+ "line": 163,
"column": 53
}
}
@@ -14911,61 +14265,61 @@
"value": "flt_s",
"raw": "'flt_s'",
"range": [
- 6371,
- 6378
+ 6120,
+ 6127
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 57
},
"end": {
- "line": 171,
+ "line": 163,
"column": 64
}
}
},
"range": [
- 6346,
- 6378
+ 6095,
+ 6127
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 32
},
"end": {
- "line": 171,
+ "line": 163,
"column": 64
}
}
},
"range": [
- 6322,
- 6378
+ 6071,
+ 6127
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 8
},
"end": {
- "line": 171,
+ "line": 163,
"column": 64
}
}
},
"range": [
- 6322,
- 6379
+ 6071,
+ 6128
],
"loc": {
"start": {
- "line": 171,
+ "line": 163,
"column": 8
},
"end": {
- "line": 171,
+ "line": 163,
"column": 65
}
},
@@ -14974,16 +14328,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6282,
- 6313
+ 6031,
+ 6062
],
"loc": {
"start": {
- "line": 170,
+ "line": 162,
"column": 8
},
"end": {
- "line": 170,
+ "line": 162,
"column": 39
}
}
@@ -14994,16 +14348,16 @@
"type": "Line",
"value": "defines css class for single-filter",
"range": [
- 6388,
- 6425
+ 6137,
+ 6174
],
"loc": {
"start": {
- "line": 172,
+ "line": 164,
"column": 8
},
"end": {
- "line": 172,
+ "line": 164,
"column": 45
}
}
@@ -15021,16 +14375,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6434,
- 6438
+ 6183,
+ 6187
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 8
},
"end": {
- "line": 173,
+ "line": 165,
"column": 12
}
}
@@ -15039,31 +14393,31 @@
"type": "Identifier",
"name": "singleFltCssClass",
"range": [
- 6439,
- 6456
+ 6188,
+ 6205
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 13
},
"end": {
- "line": 173,
+ "line": 165,
"column": 30
}
}
},
"range": [
- 6434,
- 6456
+ 6183,
+ 6205
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 8
},
"end": {
- "line": 173,
+ "line": 165,
"column": 30
}
}
@@ -15078,16 +14432,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6459,
- 6460
+ 6208,
+ 6209
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 33
},
"end": {
- "line": 173,
+ "line": 165,
"column": 34
}
}
@@ -15096,31 +14450,31 @@
"type": "Identifier",
"name": "single_flt_css_class",
"range": [
- 6461,
- 6481
+ 6210,
+ 6230
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 35
},
"end": {
- "line": 173,
+ "line": 165,
"column": 55
}
}
},
"range": [
- 6459,
- 6481
+ 6208,
+ 6230
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 33
},
"end": {
- "line": 173,
+ "line": 165,
"column": 55
}
}
@@ -15130,61 +14484,61 @@
"value": "single_flt",
"raw": "'single_flt'",
"range": [
- 6485,
- 6497
+ 6234,
+ 6246
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 59
},
"end": {
- "line": 173,
+ "line": 165,
"column": 71
}
}
},
"range": [
- 6459,
- 6497
+ 6208,
+ 6246
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 33
},
"end": {
- "line": 173,
+ "line": 165,
"column": 71
}
}
},
"range": [
- 6434,
- 6497
+ 6183,
+ 6246
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 8
},
"end": {
- "line": 173,
+ "line": 165,
"column": 71
}
}
},
"range": [
- 6434,
- 6498
+ 6183,
+ 6247
],
"loc": {
"start": {
- "line": 173,
+ "line": 165,
"column": 8
},
"end": {
- "line": 173,
+ "line": 165,
"column": 72
}
},
@@ -15193,16 +14547,16 @@
"type": "Line",
"value": "defines css class for single-filter",
"range": [
- 6388,
- 6425
+ 6137,
+ 6174
],
"loc": {
"start": {
- "line": 172,
+ "line": 164,
"column": 8
},
"end": {
- "line": 172,
+ "line": 164,
"column": 45
}
}
@@ -15213,16 +14567,16 @@
"type": "Block",
"value": "** filters' grid behaviours **",
"range": [
- 6508,
- 6542
+ 6257,
+ 6291
],
"loc": {
"start": {
- "line": 175,
+ "line": 167,
"column": 8
},
"end": {
- "line": 175,
+ "line": 167,
"column": 42
}
}
@@ -15231,16 +14585,16 @@
"type": "Line",
"value": "enables/disables enter key",
"range": [
- 6551,
- 6579
+ 6300,
+ 6328
],
"loc": {
"start": {
- "line": 176,
+ "line": 168,
"column": 8
},
"end": {
- "line": 176,
+ "line": 168,
"column": 36
}
}
@@ -15258,16 +14612,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6588,
- 6592
+ 6337,
+ 6341
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 8
},
"end": {
- "line": 177,
+ "line": 169,
"column": 12
}
}
@@ -15276,31 +14630,31 @@
"type": "Identifier",
"name": "enterKey",
"range": [
- 6593,
- 6601
+ 6342,
+ 6350
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 13
},
"end": {
- "line": 177,
+ "line": 169,
"column": 21
}
}
},
"range": [
- 6588,
- 6601
+ 6337,
+ 6350
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 8
},
"end": {
- "line": 177,
+ "line": 169,
"column": 21
}
}
@@ -15317,16 +14671,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6604,
- 6605
+ 6353,
+ 6354
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 24
},
"end": {
- "line": 177,
+ "line": 169,
"column": 25
}
}
@@ -15335,31 +14689,31 @@
"type": "Identifier",
"name": "enter_key",
"range": [
- 6606,
- 6615
+ 6355,
+ 6364
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 26
},
"end": {
- "line": 177,
+ "line": 169,
"column": 35
}
}
},
"range": [
- 6604,
- 6615
+ 6353,
+ 6364
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 24
},
"end": {
- "line": 177,
+ "line": 169,
"column": 35
}
}
@@ -15369,31 +14723,31 @@
"value": false,
"raw": "false",
"range": [
- 6618,
- 6623
+ 6367,
+ 6372
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 38
},
"end": {
- "line": 177,
+ "line": 169,
"column": 43
}
}
},
"range": [
- 6604,
- 6623
+ 6353,
+ 6372
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 24
},
"end": {
- "line": 177,
+ "line": 169,
"column": 43
}
}
@@ -15403,16 +14757,16 @@
"value": false,
"raw": "false",
"range": [
- 6626,
- 6631
+ 6375,
+ 6380
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 46
},
"end": {
- "line": 177,
+ "line": 169,
"column": 51
}
}
@@ -15422,61 +14776,61 @@
"value": true,
"raw": "true",
"range": [
- 6634,
- 6638
+ 6383,
+ 6387
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 54
},
"end": {
- "line": 177,
+ "line": 169,
"column": 58
}
}
},
"range": [
- 6604,
- 6638
+ 6353,
+ 6387
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 24
},
"end": {
- "line": 177,
+ "line": 169,
"column": 58
}
}
},
"range": [
- 6588,
- 6638
+ 6337,
+ 6387
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 8
},
"end": {
- "line": 177,
+ "line": 169,
"column": 58
}
}
},
"range": [
- 6588,
- 6639
+ 6337,
+ 6388
],
"loc": {
"start": {
- "line": 177,
+ "line": 169,
"column": 8
},
"end": {
- "line": 177,
+ "line": 169,
"column": 59
}
},
@@ -15485,16 +14839,16 @@
"type": "Block",
"value": "** filters' grid behaviours **",
"range": [
- 6508,
- 6542
+ 6257,
+ 6291
],
"loc": {
"start": {
- "line": 175,
+ "line": 167,
"column": 8
},
"end": {
- "line": 175,
+ "line": 167,
"column": 42
}
}
@@ -15503,16 +14857,16 @@
"type": "Line",
"value": "enables/disables enter key",
"range": [
- 6551,
- 6579
+ 6300,
+ 6328
],
"loc": {
"start": {
- "line": 176,
+ "line": 168,
"column": 8
},
"end": {
- "line": 176,
+ "line": 168,
"column": 36
}
}
@@ -15523,16 +14877,16 @@
"type": "Line",
"value": "calls function before filtering starts",
"range": [
- 6648,
- 6688
+ 6397,
+ 6437
],
"loc": {
"start": {
- "line": 178,
+ "line": 170,
"column": 8
},
"end": {
- "line": 178,
+ "line": 170,
"column": 48
}
}
@@ -15550,16 +14904,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6697,
- 6701
+ 6446,
+ 6450
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 8
},
"end": {
- "line": 179,
+ "line": 171,
"column": 12
}
}
@@ -15568,31 +14922,31 @@
"type": "Identifier",
"name": "onBeforeFilter",
"range": [
- 6702,
- 6716
+ 6451,
+ 6465
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 13
},
"end": {
- "line": 179,
+ "line": 171,
"column": 27
}
}
},
"range": [
- 6697,
- 6716
+ 6446,
+ 6465
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 8
},
"end": {
- "line": 179,
+ "line": 171,
"column": 27
}
}
@@ -15608,16 +14962,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 6719,
- 6724
+ 6468,
+ 6473
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 30
},
"end": {
- "line": 179,
+ "line": 171,
"column": 35
}
}
@@ -15626,31 +14980,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 6725,
- 6729
+ 6474,
+ 6478
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 36
},
"end": {
- "line": 179,
+ "line": 171,
"column": 40
}
}
},
"range": [
- 6719,
- 6729
+ 6468,
+ 6478
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 30
},
"end": {
- "line": 179,
+ "line": 171,
"column": 40
}
}
@@ -15663,16 +15017,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6730,
- 6731
+ 6479,
+ 6480
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 41
},
"end": {
- "line": 179,
+ "line": 171,
"column": 42
}
}
@@ -15681,47 +15035,47 @@
"type": "Identifier",
"name": "on_before_filter",
"range": [
- 6732,
- 6748
+ 6481,
+ 6497
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 43
},
"end": {
- "line": 179,
+ "line": 171,
"column": 59
}
}
},
"range": [
- 6730,
- 6748
+ 6479,
+ 6497
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 41
},
"end": {
- "line": 179,
+ "line": 171,
"column": 59
}
}
}
],
"range": [
- 6719,
- 6749
+ 6468,
+ 6498
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 30
},
"end": {
- "line": 179,
+ "line": 171,
"column": 60
}
}
@@ -15733,16 +15087,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6764,
- 6765
+ 6513,
+ 6514
],
"loc": {
"start": {
- "line": 180,
+ "line": 172,
"column": 12
},
"end": {
- "line": 180,
+ "line": 172,
"column": 13
}
}
@@ -15751,31 +15105,31 @@
"type": "Identifier",
"name": "on_before_filter",
"range": [
- 6766,
- 6782
+ 6515,
+ 6531
],
"loc": {
"start": {
- "line": 180,
+ "line": 172,
"column": 14
},
"end": {
- "line": 180,
+ "line": 172,
"column": 30
}
}
},
"range": [
- 6764,
- 6782
+ 6513,
+ 6531
],
"loc": {
"start": {
- "line": 180,
+ "line": 172,
"column": 12
},
"end": {
- "line": 180,
+ "line": 172,
"column": 30
}
}
@@ -15785,61 +15139,61 @@
"value": null,
"raw": "null",
"range": [
- 6785,
- 6789
+ 6534,
+ 6538
],
"loc": {
"start": {
- "line": 180,
+ "line": 172,
"column": 33
},
"end": {
- "line": 180,
+ "line": 172,
"column": 37
}
}
},
"range": [
- 6719,
- 6789
+ 6468,
+ 6538
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 30
},
"end": {
- "line": 180,
+ "line": 172,
"column": 37
}
}
},
"range": [
- 6697,
- 6789
+ 6446,
+ 6538
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 8
},
"end": {
- "line": 180,
+ "line": 172,
"column": 37
}
}
},
"range": [
- 6697,
- 6790
+ 6446,
+ 6539
],
"loc": {
"start": {
- "line": 179,
+ "line": 171,
"column": 8
},
"end": {
- "line": 180,
+ "line": 172,
"column": 38
}
},
@@ -15848,16 +15202,16 @@
"type": "Line",
"value": "calls function before filtering starts",
"range": [
- 6648,
- 6688
+ 6397,
+ 6437
],
"loc": {
"start": {
- "line": 178,
+ "line": 170,
"column": 8
},
"end": {
- "line": 178,
+ "line": 170,
"column": 48
}
}
@@ -15868,16 +15222,16 @@
"type": "Line",
"value": "calls function after filtering",
"range": [
- 6799,
- 6831
+ 6548,
+ 6580
],
"loc": {
"start": {
- "line": 181,
+ "line": 173,
"column": 8
},
"end": {
- "line": 181,
+ "line": 173,
"column": 40
}
}
@@ -15895,16 +15249,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6840,
- 6844
+ 6589,
+ 6593
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 8
},
"end": {
- "line": 182,
+ "line": 174,
"column": 12
}
}
@@ -15913,31 +15267,31 @@
"type": "Identifier",
"name": "onAfterFilter",
"range": [
- 6845,
- 6858
+ 6594,
+ 6607
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 13
},
"end": {
- "line": 182,
+ "line": 174,
"column": 26
}
}
},
"range": [
- 6840,
- 6858
+ 6589,
+ 6607
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 8
},
"end": {
- "line": 182,
+ "line": 174,
"column": 26
}
}
@@ -15953,16 +15307,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 6861,
- 6866
+ 6610,
+ 6615
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 29
},
"end": {
- "line": 182,
+ "line": 174,
"column": 34
}
}
@@ -15971,31 +15325,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 6867,
- 6871
+ 6616,
+ 6620
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 35
},
"end": {
- "line": 182,
+ "line": 174,
"column": 39
}
}
},
"range": [
- 6861,
- 6871
+ 6610,
+ 6620
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 29
},
"end": {
- "line": 182,
+ "line": 174,
"column": 39
}
}
@@ -16008,16 +15362,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6872,
- 6873
+ 6621,
+ 6622
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 40
},
"end": {
- "line": 182,
+ "line": 174,
"column": 41
}
}
@@ -16026,47 +15380,47 @@
"type": "Identifier",
"name": "on_after_filter",
"range": [
- 6874,
- 6889
+ 6623,
+ 6638
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 42
},
"end": {
- "line": 182,
+ "line": 174,
"column": 57
}
}
},
"range": [
- 6872,
- 6889
+ 6621,
+ 6638
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 40
},
"end": {
- "line": 182,
+ "line": 174,
"column": 57
}
}
}
],
"range": [
- 6861,
- 6890
+ 6610,
+ 6639
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 29
},
"end": {
- "line": 182,
+ "line": 174,
"column": 58
}
}
@@ -16078,16 +15432,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 6905,
- 6906
+ 6654,
+ 6655
],
"loc": {
"start": {
- "line": 183,
+ "line": 175,
"column": 12
},
"end": {
- "line": 183,
+ "line": 175,
"column": 13
}
}
@@ -16096,31 +15450,31 @@
"type": "Identifier",
"name": "on_after_filter",
"range": [
- 6907,
- 6922
+ 6656,
+ 6671
],
"loc": {
"start": {
- "line": 183,
+ "line": 175,
"column": 14
},
"end": {
- "line": 183,
+ "line": 175,
"column": 29
}
}
},
"range": [
- 6905,
- 6922
+ 6654,
+ 6671
],
"loc": {
"start": {
- "line": 183,
+ "line": 175,
"column": 12
},
"end": {
- "line": 183,
+ "line": 175,
"column": 29
}
}
@@ -16130,61 +15484,61 @@
"value": null,
"raw": "null",
"range": [
- 6925,
- 6929
+ 6674,
+ 6678
],
"loc": {
"start": {
- "line": 183,
+ "line": 175,
"column": 32
},
"end": {
- "line": 183,
+ "line": 175,
"column": 36
}
}
},
"range": [
- 6861,
- 6929
+ 6610,
+ 6678
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 29
},
"end": {
- "line": 183,
+ "line": 175,
"column": 36
}
}
},
"range": [
- 6840,
- 6929
+ 6589,
+ 6678
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 8
},
"end": {
- "line": 183,
+ "line": 175,
"column": 36
}
}
},
"range": [
- 6840,
- 6930
+ 6589,
+ 6679
],
"loc": {
"start": {
- "line": 182,
+ "line": 174,
"column": 8
},
"end": {
- "line": 183,
+ "line": 175,
"column": 37
}
},
@@ -16193,16 +15547,16 @@
"type": "Line",
"value": "calls function after filtering",
"range": [
- 6799,
- 6831
+ 6548,
+ 6580
],
"loc": {
"start": {
- "line": 181,
+ "line": 173,
"column": 8
},
"end": {
- "line": 181,
+ "line": 173,
"column": 40
}
}
@@ -16213,16 +15567,16 @@
"type": "Line",
"value": "enables/disables case sensitivity",
"range": [
- 6939,
- 6974
+ 6688,
+ 6723
],
"loc": {
"start": {
- "line": 184,
+ "line": 176,
"column": 8
},
"end": {
- "line": 184,
+ "line": 176,
"column": 43
}
}
@@ -16240,16 +15594,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 6983,
- 6987
+ 6732,
+ 6736
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 8
},
"end": {
- "line": 185,
+ "line": 177,
"column": 12
}
}
@@ -16258,31 +15612,31 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 6988,
- 7001
+ 6737,
+ 6750
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 13
},
"end": {
- "line": 185,
+ "line": 177,
"column": 26
}
}
},
"range": [
- 6983,
- 7001
+ 6732,
+ 6750
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 8
},
"end": {
- "line": 185,
+ "line": 177,
"column": 26
}
}
@@ -16293,16 +15647,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 7004,
- 7011
+ 6753,
+ 6760
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 29
},
"end": {
- "line": 185,
+ "line": 177,
"column": 36
}
}
@@ -16315,16 +15669,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7012,
- 7013
+ 6761,
+ 6762
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 37
},
"end": {
- "line": 185,
+ "line": 177,
"column": 38
}
}
@@ -16333,77 +15687,77 @@
"type": "Identifier",
"name": "case_sensitive",
"range": [
- 7014,
- 7028
+ 6763,
+ 6777
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 39
},
"end": {
- "line": 185,
+ "line": 177,
"column": 53
}
}
},
"range": [
- 7012,
- 7028
+ 6761,
+ 6777
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 37
},
"end": {
- "line": 185,
+ "line": 177,
"column": 53
}
}
}
],
"range": [
- 7004,
- 7029
+ 6753,
+ 6778
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 29
},
"end": {
- "line": 185,
+ "line": 177,
"column": 54
}
}
},
"range": [
- 6983,
- 7029
+ 6732,
+ 6778
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 8
},
"end": {
- "line": 185,
+ "line": 177,
"column": 54
}
}
},
"range": [
- 6983,
- 7030
+ 6732,
+ 6779
],
"loc": {
"start": {
- "line": 185,
+ "line": 177,
"column": 8
},
"end": {
- "line": 185,
+ "line": 177,
"column": 55
}
},
@@ -16412,16 +15766,16 @@
"type": "Line",
"value": "enables/disables case sensitivity",
"range": [
- 6939,
- 6974
+ 6688,
+ 6723
],
"loc": {
"start": {
- "line": 184,
+ "line": 176,
"column": 8
},
"end": {
- "line": 184,
+ "line": 176,
"column": 43
}
}
@@ -16432,16 +15786,16 @@
"type": "Line",
"value": "has exact match per column",
"range": [
- 7039,
- 7067
+ 6788,
+ 6816
],
"loc": {
"start": {
- "line": 186,
+ "line": 178,
"column": 8
},
"end": {
- "line": 186,
+ "line": 178,
"column": 36
}
}
@@ -16459,16 +15813,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7076,
- 7080
+ 6825,
+ 6829
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 8
},
"end": {
- "line": 187,
+ "line": 179,
"column": 12
}
}
@@ -16477,31 +15831,31 @@
"type": "Identifier",
"name": "hasExactMatchByCol",
"range": [
- 7081,
- 7099
+ 6830,
+ 6848
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 13
},
"end": {
- "line": 187,
+ "line": 179,
"column": 31
}
}
},
"range": [
- 7076,
- 7099
+ 6825,
+ 6848
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 8
},
"end": {
- "line": 187,
+ "line": 179,
"column": 31
}
}
@@ -16515,16 +15869,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 7102,
- 7107
+ 6851,
+ 6856
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 34
},
"end": {
- "line": 187,
+ "line": 179,
"column": 39
}
}
@@ -16533,31 +15887,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 7108,
- 7115
+ 6857,
+ 6864
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 40
},
"end": {
- "line": 187,
+ "line": 179,
"column": 47
}
}
},
"range": [
- 7102,
- 7115
+ 6851,
+ 6864
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 34
},
"end": {
- "line": 187,
+ "line": 179,
"column": 47
}
}
@@ -16570,16 +15924,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7116,
- 7117
+ 6865,
+ 6866
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 48
},
"end": {
- "line": 187,
+ "line": 179,
"column": 49
}
}
@@ -16588,77 +15942,77 @@
"type": "Identifier",
"name": "columns_exact_match",
"range": [
- 7118,
- 7137
+ 6867,
+ 6886
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 50
},
"end": {
- "line": 187,
+ "line": 179,
"column": 69
}
}
},
"range": [
- 7116,
- 7137
+ 6865,
+ 6886
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 48
},
"end": {
- "line": 187,
+ "line": 179,
"column": 69
}
}
}
],
"range": [
- 7102,
- 7138
+ 6851,
+ 6887
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 34
},
"end": {
- "line": 187,
+ "line": 179,
"column": 70
}
}
},
"range": [
- 7076,
- 7138
+ 6825,
+ 6887
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 8
},
"end": {
- "line": 187,
+ "line": 179,
"column": 70
}
}
},
"range": [
- 7076,
- 7139
+ 6825,
+ 6888
],
"loc": {
"start": {
- "line": 187,
+ "line": 179,
"column": 8
},
"end": {
- "line": 187,
+ "line": 179,
"column": 71
}
},
@@ -16667,16 +16021,16 @@
"type": "Line",
"value": "has exact match per column",
"range": [
- 7039,
- 7067
+ 6788,
+ 6816
],
"loc": {
"start": {
- "line": 186,
+ "line": 178,
"column": 8
},
"end": {
- "line": 186,
+ "line": 178,
"column": 36
}
}
@@ -16694,16 +16048,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7148,
- 7152
+ 6897,
+ 6901
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 8
},
"end": {
- "line": 188,
+ "line": 180,
"column": 12
}
}
@@ -16712,31 +16066,31 @@
"type": "Identifier",
"name": "exactMatchByCol",
"range": [
- 7153,
- 7168
+ 6902,
+ 6917
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 13
},
"end": {
- "line": 188,
+ "line": 180,
"column": 28
}
}
},
"range": [
- 7148,
- 7168
+ 6897,
+ 6917
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 8
},
"end": {
- "line": 188,
+ "line": 180,
"column": 28
}
}
@@ -16749,16 +16103,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7171,
- 7175
+ 6920,
+ 6924
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 31
},
"end": {
- "line": 188,
+ "line": 180,
"column": 35
}
}
@@ -16767,31 +16121,31 @@
"type": "Identifier",
"name": "hasExactMatchByCol",
"range": [
- 7176,
- 7194
+ 6925,
+ 6943
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 36
},
"end": {
- "line": 188,
+ "line": 180,
"column": 54
}
}
},
"range": [
- 7171,
- 7194
+ 6920,
+ 6943
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 31
},
"end": {
- "line": 188,
+ "line": 180,
"column": 54
}
}
@@ -16803,16 +16157,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7209,
- 7210
+ 6958,
+ 6959
],
"loc": {
"start": {
- "line": 189,
+ "line": 181,
"column": 12
},
"end": {
- "line": 189,
+ "line": 181,
"column": 13
}
}
@@ -16821,31 +16175,31 @@
"type": "Identifier",
"name": "columns_exact_match",
"range": [
- 7211,
- 7230
+ 6960,
+ 6979
],
"loc": {
"start": {
- "line": 189,
+ "line": 181,
"column": 14
},
"end": {
- "line": 189,
+ "line": 181,
"column": 33
}
}
},
"range": [
- 7209,
- 7230
+ 6958,
+ 6979
],
"loc": {
"start": {
- "line": 189,
+ "line": 181,
"column": 12
},
"end": {
- "line": 189,
+ "line": 181,
"column": 33
}
}
@@ -16854,61 +16208,61 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7233,
- 7235
+ 6982,
+ 6984
],
"loc": {
"start": {
- "line": 189,
+ "line": 181,
"column": 36
},
"end": {
- "line": 189,
+ "line": 181,
"column": 38
}
}
},
"range": [
- 7171,
- 7235
+ 6920,
+ 6984
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 31
},
"end": {
- "line": 189,
+ "line": 181,
"column": 38
}
}
},
"range": [
- 7148,
- 7235
+ 6897,
+ 6984
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 8
},
"end": {
- "line": 189,
+ "line": 181,
"column": 38
}
}
},
"range": [
- 7148,
- 7236
+ 6897,
+ 6985
],
"loc": {
"start": {
- "line": 188,
+ "line": 180,
"column": 8
},
"end": {
- "line": 189,
+ "line": 181,
"column": 39
}
},
@@ -16917,16 +16271,16 @@
"type": "Line",
"value": "enables/disbles exact match for search",
"range": [
- 7245,
- 7285
+ 6994,
+ 7034
],
"loc": {
"start": {
- "line": 190,
+ "line": 182,
"column": 8
},
"end": {
- "line": 190,
+ "line": 182,
"column": 48
}
}
@@ -16944,16 +16298,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7294,
- 7298
+ 7043,
+ 7047
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 8
},
"end": {
- "line": 191,
+ "line": 183,
"column": 12
}
}
@@ -16962,31 +16316,31 @@
"type": "Identifier",
"name": "exactMatch",
"range": [
- 7299,
- 7309
+ 7048,
+ 7058
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 13
},
"end": {
- "line": 191,
+ "line": 183,
"column": 23
}
}
},
"range": [
- 7294,
- 7309
+ 7043,
+ 7058
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 8
},
"end": {
- "line": 191,
+ "line": 183,
"column": 23
}
}
@@ -16997,16 +16351,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 7312,
- 7319
+ 7061,
+ 7068
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 26
},
"end": {
- "line": 191,
+ "line": 183,
"column": 33
}
}
@@ -17019,16 +16373,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7320,
- 7321
+ 7069,
+ 7070
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 34
},
"end": {
- "line": 191,
+ "line": 183,
"column": 35
}
}
@@ -17037,77 +16391,77 @@
"type": "Identifier",
"name": "exact_match",
"range": [
- 7322,
- 7333
+ 7071,
+ 7082
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 36
},
"end": {
- "line": 191,
+ "line": 183,
"column": 47
}
}
},
"range": [
- 7320,
- 7333
+ 7069,
+ 7082
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 34
},
"end": {
- "line": 191,
+ "line": 183,
"column": 47
}
}
}
],
"range": [
- 7312,
- 7334
+ 7061,
+ 7083
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 26
},
"end": {
- "line": 191,
+ "line": 183,
"column": 48
}
}
},
"range": [
- 7294,
- 7334
+ 7043,
+ 7083
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 8
},
"end": {
- "line": 191,
+ "line": 183,
"column": 48
}
}
},
"range": [
- 7294,
- 7335
+ 7043,
+ 7084
],
"loc": {
"start": {
- "line": 191,
+ "line": 183,
"column": 8
},
"end": {
- "line": 191,
+ "line": 183,
"column": 49
}
},
@@ -17116,16 +16470,16 @@
"type": "Line",
"value": "enables/disbles exact match for search",
"range": [
- 7245,
- 7285
+ 6994,
+ 7034
],
"loc": {
"start": {
- "line": 190,
+ "line": 182,
"column": 8
},
"end": {
- "line": 190,
+ "line": 182,
"column": 48
}
}
@@ -17136,16 +16490,16 @@
"type": "Line",
"value": "refreshes drop-down lists upon validation",
"range": [
- 7344,
- 7387
+ 7093,
+ 7136
],
"loc": {
"start": {
- "line": 192,
+ "line": 184,
"column": 8
},
"end": {
- "line": 192,
+ "line": 184,
"column": 51
}
}
@@ -17163,16 +16517,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7396,
- 7400
+ 7145,
+ 7149
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 8
},
"end": {
- "line": 193,
+ "line": 185,
"column": 12
}
}
@@ -17181,31 +16535,31 @@
"type": "Identifier",
"name": "linkedFilters",
"range": [
- 7401,
- 7414
+ 7150,
+ 7163
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 13
},
"end": {
- "line": 193,
+ "line": 185,
"column": 26
}
}
},
"range": [
- 7396,
- 7414
+ 7145,
+ 7163
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 8
},
"end": {
- "line": 193,
+ "line": 185,
"column": 26
}
}
@@ -17216,16 +16570,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 7417,
- 7424
+ 7166,
+ 7173
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 29
},
"end": {
- "line": 193,
+ "line": 185,
"column": 36
}
}
@@ -17238,16 +16592,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7425,
- 7426
+ 7174,
+ 7175
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 37
},
"end": {
- "line": 193,
+ "line": 185,
"column": 38
}
}
@@ -17256,77 +16610,77 @@
"type": "Identifier",
"name": "linked_filters",
"range": [
- 7427,
- 7441
+ 7176,
+ 7190
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 39
},
"end": {
- "line": 193,
+ "line": 185,
"column": 53
}
}
},
"range": [
- 7425,
- 7441
+ 7174,
+ 7190
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 37
},
"end": {
- "line": 193,
+ "line": 185,
"column": 53
}
}
}
],
"range": [
- 7417,
- 7442
+ 7166,
+ 7191
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 29
},
"end": {
- "line": 193,
+ "line": 185,
"column": 54
}
}
},
"range": [
- 7396,
- 7442
+ 7145,
+ 7191
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 8
},
"end": {
- "line": 193,
+ "line": 185,
"column": 54
}
}
},
"range": [
- 7396,
- 7443
+ 7145,
+ 7192
],
"loc": {
"start": {
- "line": 193,
+ "line": 185,
"column": 8
},
"end": {
- "line": 193,
+ "line": 185,
"column": 55
}
},
@@ -17335,16 +16689,16 @@
"type": "Line",
"value": "refreshes drop-down lists upon validation",
"range": [
- 7344,
- 7387
+ 7093,
+ 7136
],
"loc": {
"start": {
- "line": 192,
+ "line": 184,
"column": 8
},
"end": {
- "line": 192,
+ "line": 184,
"column": 51
}
}
@@ -17355,16 +16709,16 @@
"type": "Line",
"value": "wheter excluded options are disabled",
"range": [
- 7452,
- 7490
+ 7201,
+ 7239
],
"loc": {
"start": {
- "line": 194,
+ "line": 186,
"column": 8
},
"end": {
- "line": 194,
+ "line": 186,
"column": 46
}
}
@@ -17382,16 +16736,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7499,
- 7503
+ 7248,
+ 7252
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 8
},
"end": {
- "line": 195,
+ "line": 187,
"column": 12
}
}
@@ -17400,31 +16754,31 @@
"type": "Identifier",
"name": "disableExcludedOptions",
"range": [
- 7504,
- 7526
+ 7253,
+ 7275
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 13
},
"end": {
- "line": 195,
+ "line": 187,
"column": 35
}
}
},
"range": [
- 7499,
- 7526
+ 7248,
+ 7275
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 8
},
"end": {
- "line": 195,
+ "line": 187,
"column": 35
}
}
@@ -17435,16 +16789,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 7529,
- 7536
+ 7278,
+ 7285
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 38
},
"end": {
- "line": 195,
+ "line": 187,
"column": 45
}
}
@@ -17457,16 +16811,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7537,
- 7538
+ 7286,
+ 7287
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 46
},
"end": {
- "line": 195,
+ "line": 187,
"column": 47
}
}
@@ -17475,77 +16829,77 @@
"type": "Identifier",
"name": "disable_excluded_options",
"range": [
- 7539,
- 7563
+ 7288,
+ 7312
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 48
},
"end": {
- "line": 195,
+ "line": 187,
"column": 72
}
}
},
"range": [
- 7537,
- 7563
+ 7286,
+ 7312
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 46
},
"end": {
- "line": 195,
+ "line": 187,
"column": 72
}
}
}
],
"range": [
- 7529,
- 7564
+ 7278,
+ 7313
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 38
},
"end": {
- "line": 195,
+ "line": 187,
"column": 73
}
}
},
"range": [
- 7499,
- 7564
+ 7248,
+ 7313
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 8
},
"end": {
- "line": 195,
+ "line": 187,
"column": 73
}
}
},
"range": [
- 7499,
- 7565
+ 7248,
+ 7314
],
"loc": {
"start": {
- "line": 195,
+ "line": 187,
"column": 8
},
"end": {
- "line": 195,
+ "line": 187,
"column": 74
}
},
@@ -17554,16 +16908,16 @@
"type": "Line",
"value": "wheter excluded options are disabled",
"range": [
- 7452,
- 7490
+ 7201,
+ 7239
],
"loc": {
"start": {
- "line": 194,
+ "line": 186,
"column": 8
},
"end": {
- "line": 194,
+ "line": 186,
"column": 46
}
}
@@ -17574,16 +16928,16 @@
"type": "Line",
"value": "stores active filter element",
"range": [
- 7574,
- 7604
+ 7323,
+ 7353
],
"loc": {
"start": {
- "line": 196,
+ "line": 188,
"column": 8
},
"end": {
- "line": 196,
+ "line": 188,
"column": 38
}
}
@@ -17601,16 +16955,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7613,
- 7617
+ 7362,
+ 7366
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 8
},
"end": {
- "line": 197,
+ "line": 189,
"column": 12
}
}
@@ -17619,31 +16973,31 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 7618,
- 7627
+ 7367,
+ 7376
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 13
},
"end": {
- "line": 197,
+ "line": 189,
"column": 22
}
}
},
"range": [
- 7613,
- 7627
+ 7362,
+ 7376
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 8
},
"end": {
- "line": 197,
+ "line": 189,
"column": 22
}
}
@@ -17653,46 +17007,46 @@
"value": null,
"raw": "null",
"range": [
- 7630,
- 7634
+ 7379,
+ 7383
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 25
},
"end": {
- "line": 197,
+ "line": 189,
"column": 29
}
}
},
"range": [
- 7613,
- 7634
+ 7362,
+ 7383
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 8
},
"end": {
- "line": 197,
+ "line": 189,
"column": 29
}
}
},
"range": [
- 7613,
- 7635
+ 7362,
+ 7384
],
"loc": {
"start": {
- "line": 197,
+ "line": 189,
"column": 8
},
"end": {
- "line": 197,
+ "line": 189,
"column": 30
}
},
@@ -17701,16 +17055,16 @@
"type": "Line",
"value": "stores active filter element",
"range": [
- 7574,
- 7604
+ 7323,
+ 7353
],
"loc": {
"start": {
- "line": 196,
+ "line": 188,
"column": 8
},
"end": {
- "line": 196,
+ "line": 188,
"column": 38
}
}
@@ -17721,16 +17075,16 @@
"type": "Line",
"value": "id of active filter",
"range": [
- 7644,
- 7665
+ 7393,
+ 7414
],
"loc": {
"start": {
- "line": 198,
+ "line": 190,
"column": 8
},
"end": {
- "line": 198,
+ "line": 190,
"column": 29
}
}
@@ -17748,16 +17102,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7674,
- 7678
+ 7423,
+ 7427
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 8
},
"end": {
- "line": 199,
+ "line": 191,
"column": 12
}
}
@@ -17766,31 +17120,31 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 7679,
- 7693
+ 7428,
+ 7442
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 13
},
"end": {
- "line": 199,
+ "line": 191,
"column": 27
}
}
},
"range": [
- 7674,
- 7693
+ 7423,
+ 7442
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 8
},
"end": {
- "line": 199,
+ "line": 191,
"column": 27
}
}
@@ -17800,46 +17154,46 @@
"value": null,
"raw": "null",
"range": [
- 7696,
- 7700
+ 7445,
+ 7449
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 30
},
"end": {
- "line": 199,
+ "line": 191,
"column": 34
}
}
},
"range": [
- 7674,
- 7700
+ 7423,
+ 7449
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 8
},
"end": {
- "line": 199,
+ "line": 191,
"column": 34
}
}
},
"range": [
- 7674,
- 7701
+ 7423,
+ 7450
],
"loc": {
"start": {
- "line": 199,
+ "line": 191,
"column": 8
},
"end": {
- "line": 199,
+ "line": 191,
"column": 35
}
},
@@ -17848,16 +17202,16 @@
"type": "Line",
"value": "id of active filter",
"range": [
- 7644,
- 7665
+ 7393,
+ 7414
],
"loc": {
"start": {
- "line": 198,
+ "line": 190,
"column": 8
},
"end": {
- "line": 198,
+ "line": 190,
"column": 29
}
}
@@ -17868,16 +17222,16 @@
"type": "Line",
"value": "enables always visible rows",
"range": [
- 7710,
- 7739
+ 7459,
+ 7488
],
"loc": {
"start": {
- "line": 200,
+ "line": 192,
"column": 8
},
"end": {
- "line": 200,
+ "line": 192,
"column": 37
}
}
@@ -17895,16 +17249,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7748,
- 7752
+ 7497,
+ 7501
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 8
},
"end": {
- "line": 201,
+ "line": 193,
"column": 12
}
}
@@ -17913,31 +17267,31 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 7753,
- 7767
+ 7502,
+ 7516
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 13
},
"end": {
- "line": 201,
+ "line": 193,
"column": 27
}
}
},
"range": [
- 7748,
- 7767
+ 7497,
+ 7516
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 8
},
"end": {
- "line": 201,
+ "line": 193,
"column": 27
}
}
@@ -17948,16 +17302,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 7770,
- 7777
+ 7519,
+ 7526
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 30
},
"end": {
- "line": 201,
+ "line": 193,
"column": 37
}
}
@@ -17970,16 +17324,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7778,
- 7779
+ 7527,
+ 7528
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 38
},
"end": {
- "line": 201,
+ "line": 193,
"column": 39
}
}
@@ -17988,77 +17342,77 @@
"type": "Identifier",
"name": "rows_always_visible",
"range": [
- 7780,
- 7799
+ 7529,
+ 7548
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 40
},
"end": {
- "line": 201,
+ "line": 193,
"column": 59
}
}
},
"range": [
- 7778,
- 7799
+ 7527,
+ 7548
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 38
},
"end": {
- "line": 201,
+ "line": 193,
"column": 59
}
}
}
],
"range": [
- 7770,
- 7800
+ 7519,
+ 7549
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 30
},
"end": {
- "line": 201,
+ "line": 193,
"column": 60
}
}
},
"range": [
- 7748,
- 7800
+ 7497,
+ 7549
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 8
},
"end": {
- "line": 201,
+ "line": 193,
"column": 60
}
}
},
"range": [
- 7748,
- 7801
+ 7497,
+ 7550
],
"loc": {
"start": {
- "line": 201,
+ "line": 193,
"column": 8
},
"end": {
- "line": 201,
+ "line": 193,
"column": 61
}
},
@@ -18067,16 +17421,16 @@
"type": "Line",
"value": "enables always visible rows",
"range": [
- 7710,
- 7739
+ 7459,
+ 7488
],
"loc": {
"start": {
- "line": 200,
+ "line": 192,
"column": 8
},
"end": {
- "line": 200,
+ "line": 192,
"column": 37
}
}
@@ -18087,16 +17441,16 @@
"type": "Line",
"value": "array containing always visible rows",
"range": [
- 7810,
- 7848
+ 7559,
+ 7597
],
"loc": {
"start": {
- "line": 202,
+ "line": 194,
"column": 8
},
"end": {
- "line": 202,
+ "line": 194,
"column": 46
}
}
@@ -18114,16 +17468,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7857,
- 7861
+ 7606,
+ 7610
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 8
},
"end": {
- "line": 203,
+ "line": 195,
"column": 12
}
}
@@ -18132,31 +17486,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 7862,
- 7873
+ 7611,
+ 7622
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 13
},
"end": {
- "line": 203,
+ "line": 195,
"column": 24
}
}
},
"range": [
- 7857,
- 7873
+ 7606,
+ 7622
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 8
},
"end": {
- "line": 203,
+ "line": 195,
"column": 24
}
}
@@ -18169,16 +17523,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7876,
- 7880
+ 7625,
+ 7629
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 27
},
"end": {
- "line": 203,
+ "line": 195,
"column": 31
}
}
@@ -18187,31 +17541,31 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 7881,
- 7895
+ 7630,
+ 7644
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 32
},
"end": {
- "line": 203,
+ "line": 195,
"column": 46
}
}
},
"range": [
- 7876,
- 7895
+ 7625,
+ 7644
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 27
},
"end": {
- "line": 203,
+ "line": 195,
"column": 46
}
}
@@ -18223,16 +17577,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 7898,
- 7899
+ 7647,
+ 7648
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 49
},
"end": {
- "line": 203,
+ "line": 195,
"column": 50
}
}
@@ -18241,31 +17595,31 @@
"type": "Identifier",
"name": "rows_always_visible",
"range": [
- 7900,
- 7919
+ 7649,
+ 7668
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 51
},
"end": {
- "line": 203,
+ "line": 195,
"column": 70
}
}
},
"range": [
- 7898,
- 7919
+ 7647,
+ 7668
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 49
},
"end": {
- "line": 203,
+ "line": 195,
"column": 70
}
}
@@ -18274,61 +17628,61 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 7922,
- 7924
+ 7671,
+ 7673
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 73
},
"end": {
- "line": 203,
+ "line": 195,
"column": 75
}
}
},
"range": [
- 7876,
- 7924
+ 7625,
+ 7673
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 27
},
"end": {
- "line": 203,
+ "line": 195,
"column": 75
}
}
},
"range": [
- 7857,
- 7924
+ 7606,
+ 7673
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 8
},
"end": {
- "line": 203,
+ "line": 195,
"column": 75
}
}
},
"range": [
- 7857,
- 7925
+ 7606,
+ 7674
],
"loc": {
"start": {
- "line": 203,
+ "line": 195,
"column": 8
},
"end": {
- "line": 203,
+ "line": 195,
"column": 76
}
},
@@ -18337,16 +17691,16 @@
"type": "Line",
"value": "array containing always visible rows",
"range": [
- 7810,
- 7848
+ 7559,
+ 7597
],
"loc": {
"start": {
- "line": 202,
+ "line": 194,
"column": 8
},
"end": {
- "line": 202,
+ "line": 194,
"column": 46
}
}
@@ -18357,16 +17711,16 @@
"type": "Line",
"value": "enables/disables external filters generation",
"range": [
- 7934,
- 7980
+ 7683,
+ 7729
],
"loc": {
"start": {
- "line": 204,
+ "line": 196,
"column": 8
},
"end": {
- "line": 204,
+ "line": 196,
"column": 54
}
}
@@ -18384,16 +17738,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 7989,
- 7993
+ 7738,
+ 7742
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 8
},
"end": {
- "line": 205,
+ "line": 197,
"column": 12
}
}
@@ -18402,31 +17756,31 @@
"type": "Identifier",
"name": "isExternalFlt",
"range": [
- 7994,
- 8007
+ 7743,
+ 7756
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 13
},
"end": {
- "line": 205,
+ "line": 197,
"column": 26
}
}
},
"range": [
- 7989,
- 8007
+ 7738,
+ 7756
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 8
},
"end": {
- "line": 205,
+ "line": 197,
"column": 26
}
}
@@ -18437,16 +17791,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 8010,
- 8017
+ 7759,
+ 7766
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 29
},
"end": {
- "line": 205,
+ "line": 197,
"column": 36
}
}
@@ -18459,16 +17813,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8018,
- 8019
+ 7767,
+ 7768
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 37
},
"end": {
- "line": 205,
+ "line": 197,
"column": 38
}
}
@@ -18477,77 +17831,77 @@
"type": "Identifier",
"name": "external_flt_grid",
"range": [
- 8020,
- 8037
+ 7769,
+ 7786
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 39
},
"end": {
- "line": 205,
+ "line": 197,
"column": 56
}
}
},
"range": [
- 8018,
- 8037
+ 7767,
+ 7786
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 37
},
"end": {
- "line": 205,
+ "line": 197,
"column": 56
}
}
}
],
"range": [
- 8010,
- 8038
+ 7759,
+ 7787
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 29
},
"end": {
- "line": 205,
+ "line": 197,
"column": 57
}
}
},
"range": [
- 7989,
- 8038
+ 7738,
+ 7787
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 8
},
"end": {
- "line": 205,
+ "line": 197,
"column": 57
}
}
},
"range": [
- 7989,
- 8039
+ 7738,
+ 7788
],
"loc": {
"start": {
- "line": 205,
+ "line": 197,
"column": 8
},
"end": {
- "line": 205,
+ "line": 197,
"column": 58
}
},
@@ -18556,16 +17910,16 @@
"type": "Line",
"value": "enables/disables external filters generation",
"range": [
- 7934,
- 7980
+ 7683,
+ 7729
],
"loc": {
"start": {
- "line": 204,
+ "line": 196,
"column": 8
},
"end": {
- "line": 204,
+ "line": 196,
"column": 54
}
}
@@ -18576,16 +17930,16 @@
"type": "Line",
"value": "array containing ids of external elements containing filters",
"range": [
- 8048,
- 8110
+ 7797,
+ 7859
],
"loc": {
"start": {
- "line": 206,
+ "line": 198,
"column": 8
},
"end": {
- "line": 206,
+ "line": 198,
"column": 70
}
}
@@ -18603,16 +17957,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8119,
- 8123
+ 7868,
+ 7872
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 8
},
"end": {
- "line": 207,
+ "line": 199,
"column": 12
}
}
@@ -18621,31 +17975,31 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 8124,
- 8141
+ 7873,
+ 7890
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 13
},
"end": {
- "line": 207,
+ "line": 199,
"column": 30
}
}
},
"range": [
- 8119,
- 8141
+ 7868,
+ 7890
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 8
},
"end": {
- "line": 207,
+ "line": 199,
"column": 30
}
}
@@ -18660,16 +18014,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8144,
- 8145
+ 7893,
+ 7894
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 33
},
"end": {
- "line": 207,
+ "line": 199,
"column": 34
}
}
@@ -18678,96 +18032,95 @@
"type": "Identifier",
"name": "external_flt_grid_ids",
"range": [
- 8146,
- 8167
+ 7895,
+ 7916
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 35
},
"end": {
- "line": 207,
+ "line": 199,
"column": 56
}
}
},
"range": [
- 8144,
- 8167
+ 7893,
+ 7916
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 33
},
"end": {
- "line": 207,
+ "line": 199,
"column": 56
}
}
},
"right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
+ "type": "ArrayExpression",
+ "elements": [],
"range": [
- 8171,
- 8175
+ 7920,
+ 7922
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 60
},
"end": {
- "line": 207,
- "column": 64
+ "line": 199,
+ "column": 62
}
}
},
"range": [
- 8144,
- 8175
+ 7893,
+ 7922
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 33
},
"end": {
- "line": 207,
- "column": 64
+ "line": 199,
+ "column": 62
}
}
},
"range": [
- 8119,
- 8175
+ 7868,
+ 7922
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 8
},
"end": {
- "line": 207,
- "column": 64
+ "line": 199,
+ "column": 62
}
}
},
"range": [
- 8119,
- 8176
+ 7868,
+ 7923
],
"loc": {
"start": {
- "line": 207,
+ "line": 199,
"column": 8
},
"end": {
- "line": 207,
- "column": 65
+ "line": 199,
+ "column": 63
}
},
"leadingComments": [
@@ -18775,16 +18128,16 @@
"type": "Line",
"value": "array containing ids of external elements containing filters",
"range": [
- 8048,
- 8110
+ 7797,
+ 7859
],
"loc": {
"start": {
- "line": 206,
+ "line": 198,
"column": 8
},
"end": {
- "line": 206,
+ "line": 198,
"column": 70
}
}
@@ -18795,16 +18148,16 @@
"type": "Line",
"value": "stores filters elements if isExternalFlt is true",
"range": [
- 8185,
- 8235
+ 7932,
+ 7982
],
"loc": {
"start": {
- "line": 208,
+ "line": 200,
"column": 8
},
"end": {
- "line": 208,
+ "line": 200,
"column": 58
}
}
@@ -18822,16 +18175,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8244,
- 8248
+ 7991,
+ 7995
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 8
},
"end": {
- "line": 209,
+ "line": 201,
"column": 12
}
}
@@ -18840,31 +18193,31 @@
"type": "Identifier",
"name": "externalFltEls",
"range": [
- 8249,
- 8263
+ 7996,
+ 8010
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 13
},
"end": {
- "line": 209,
+ "line": 201,
"column": 27
}
}
},
"range": [
- 8244,
- 8263
+ 7991,
+ 8010
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 8
},
"end": {
- "line": 209,
+ "line": 201,
"column": 27
}
}
@@ -18873,46 +18226,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 8266,
- 8268
+ 8013,
+ 8015
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 30
},
"end": {
- "line": 209,
+ "line": 201,
"column": 32
}
}
},
"range": [
- 8244,
- 8268
+ 7991,
+ 8015
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 8
},
"end": {
- "line": 209,
+ "line": 201,
"column": 32
}
}
},
"range": [
- 8244,
- 8269
+ 7991,
+ 8016
],
"loc": {
"start": {
- "line": 209,
+ "line": 201,
"column": 8
},
"end": {
- "line": 209,
+ "line": 201,
"column": 33
}
},
@@ -18921,16 +18274,16 @@
"type": "Line",
"value": "stores filters elements if isExternalFlt is true",
"range": [
- 8185,
- 8235
+ 7932,
+ 7982
],
"loc": {
"start": {
- "line": 208,
+ "line": 200,
"column": 8
},
"end": {
- "line": 208,
+ "line": 200,
"column": 58
}
}
@@ -18941,16 +18294,16 @@
"type": "Line",
"value": "delays any filtering process if loader true",
"range": [
- 8278,
- 8323
+ 8025,
+ 8070
],
"loc": {
"start": {
- "line": 210,
+ "line": 202,
"column": 8
},
"end": {
- "line": 210,
+ "line": 202,
"column": 53
}
}
@@ -18968,16 +18321,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8332,
- 8336
+ 8079,
+ 8083
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 8
},
"end": {
- "line": 211,
+ "line": 203,
"column": 12
}
}
@@ -18986,31 +18339,31 @@
"type": "Identifier",
"name": "execDelay",
"range": [
- 8337,
- 8346
+ 8084,
+ 8093
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 13
},
"end": {
- "line": 211,
+ "line": 203,
"column": 22
}
}
},
"range": [
- 8332,
- 8346
+ 8079,
+ 8093
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 8
},
"end": {
- "line": 211,
+ "line": 203,
"column": 22
}
}
@@ -19026,16 +18379,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 8350,
- 8355
+ 8097,
+ 8102
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 26
},
"end": {
- "line": 211,
+ "line": 203,
"column": 31
}
}
@@ -19048,16 +18401,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8356,
- 8357
+ 8103,
+ 8104
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 32
},
"end": {
- "line": 211,
+ "line": 203,
"column": 33
}
}
@@ -19066,63 +18419,63 @@
"type": "Identifier",
"name": "exec_delay",
"range": [
- 8358,
- 8368
+ 8105,
+ 8115
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 34
},
"end": {
- "line": 211,
+ "line": 203,
"column": 44
}
}
},
"range": [
- 8356,
- 8368
+ 8103,
+ 8115
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 32
},
"end": {
- "line": 211,
+ "line": 203,
"column": 44
}
}
}
],
"range": [
- 8350,
- 8369
+ 8097,
+ 8116
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 26
},
"end": {
- "line": 211,
+ "line": 203,
"column": 45
}
}
},
"prefix": true,
"range": [
- 8349,
- 8369
+ 8096,
+ 8116
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 25
},
"end": {
- "line": 211,
+ "line": 203,
"column": 45
}
}
@@ -19133,16 +18486,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 8372,
- 8380
+ 8119,
+ 8127
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 48
},
"end": {
- "line": 211,
+ "line": 203,
"column": 56
}
}
@@ -19155,16 +18508,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8381,
- 8382
+ 8128,
+ 8129
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 57
},
"end": {
- "line": 211,
+ "line": 203,
"column": 58
}
}
@@ -19173,31 +18526,31 @@
"type": "Identifier",
"name": "exec_delay",
"range": [
- 8383,
- 8393
+ 8130,
+ 8140
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 59
},
"end": {
- "line": 211,
+ "line": 203,
"column": 69
}
}
},
"range": [
- 8381,
- 8393
+ 8128,
+ 8140
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 57
},
"end": {
- "line": 211,
+ "line": 203,
"column": 69
}
}
@@ -19207,32 +18560,32 @@
"value": 10,
"raw": "10",
"range": [
- 8394,
- 8396
+ 8141,
+ 8143
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 70
},
"end": {
- "line": 211,
+ "line": 203,
"column": 72
}
}
}
],
"range": [
- 8372,
- 8397
+ 8119,
+ 8144
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 48
},
"end": {
- "line": 211,
+ "line": 203,
"column": 73
}
}
@@ -19242,61 +18595,61 @@
"value": 100,
"raw": "100",
"range": [
- 8400,
- 8403
+ 8147,
+ 8150
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 76
},
"end": {
- "line": 211,
+ "line": 203,
"column": 79
}
}
},
"range": [
- 8349,
- 8403
+ 8096,
+ 8150
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 25
},
"end": {
- "line": 211,
+ "line": 203,
"column": 79
}
}
},
"range": [
- 8332,
- 8403
+ 8079,
+ 8150
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 8
},
"end": {
- "line": 211,
+ "line": 203,
"column": 79
}
}
},
"range": [
- 8332,
- 8404
+ 8079,
+ 8151
],
"loc": {
"start": {
- "line": 211,
+ "line": 203,
"column": 8
},
"end": {
- "line": 211,
+ "line": 203,
"column": 80
}
},
@@ -19305,16 +18658,16 @@
"type": "Line",
"value": "delays any filtering process if loader true",
"range": [
- 8278,
- 8323
+ 8025,
+ 8070
],
"loc": {
"start": {
- "line": 210,
+ "line": 202,
"column": 8
},
"end": {
- "line": 210,
+ "line": 202,
"column": 53
}
}
@@ -19325,16 +18678,16 @@
"type": "Line",
"value": "calls function when filters grid loaded",
"range": [
- 8413,
- 8454
+ 8160,
+ 8201
],
"loc": {
"start": {
- "line": 212,
+ "line": 204,
"column": 8
},
"end": {
- "line": 212,
+ "line": 204,
"column": 49
}
}
@@ -19352,16 +18705,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8463,
- 8467
+ 8210,
+ 8214
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 8
},
"end": {
- "line": 213,
+ "line": 205,
"column": 12
}
}
@@ -19370,31 +18723,31 @@
"type": "Identifier",
"name": "onFiltersLoaded",
"range": [
- 8468,
- 8483
+ 8215,
+ 8230
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 13
},
"end": {
- "line": 213,
+ "line": 205,
"column": 28
}
}
},
"range": [
- 8463,
- 8483
+ 8210,
+ 8230
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 8
},
"end": {
- "line": 213,
+ "line": 205,
"column": 28
}
}
@@ -19410,16 +18763,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 8486,
- 8491
+ 8233,
+ 8238
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 31
},
"end": {
- "line": 213,
+ "line": 205,
"column": 36
}
}
@@ -19428,31 +18781,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 8492,
- 8496
+ 8239,
+ 8243
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 37
},
"end": {
- "line": 213,
+ "line": 205,
"column": 41
}
}
},
"range": [
- 8486,
- 8496
+ 8233,
+ 8243
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 31
},
"end": {
- "line": 213,
+ "line": 205,
"column": 41
}
}
@@ -19465,16 +18818,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8497,
- 8498
+ 8244,
+ 8245
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 42
},
"end": {
- "line": 213,
+ "line": 205,
"column": 43
}
}
@@ -19483,47 +18836,47 @@
"type": "Identifier",
"name": "on_filters_loaded",
"range": [
- 8499,
- 8516
+ 8246,
+ 8263
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 44
},
"end": {
- "line": 213,
+ "line": 205,
"column": 61
}
}
},
"range": [
- 8497,
- 8516
+ 8244,
+ 8263
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 42
},
"end": {
- "line": 213,
+ "line": 205,
"column": 61
}
}
}
],
"range": [
- 8486,
- 8517
+ 8233,
+ 8264
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 31
},
"end": {
- "line": 213,
+ "line": 205,
"column": 62
}
}
@@ -19535,16 +18888,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8532,
- 8533
+ 8279,
+ 8280
],
"loc": {
"start": {
- "line": 214,
+ "line": 206,
"column": 12
},
"end": {
- "line": 214,
+ "line": 206,
"column": 13
}
}
@@ -19553,31 +18906,31 @@
"type": "Identifier",
"name": "on_filters_loaded",
"range": [
- 8534,
- 8551
+ 8281,
+ 8298
],
"loc": {
"start": {
- "line": 214,
+ "line": 206,
"column": 14
},
"end": {
- "line": 214,
+ "line": 206,
"column": 31
}
}
},
"range": [
- 8532,
- 8551
+ 8279,
+ 8298
],
"loc": {
"start": {
- "line": 214,
+ "line": 206,
"column": 12
},
"end": {
- "line": 214,
+ "line": 206,
"column": 31
}
}
@@ -19587,61 +18940,61 @@
"value": null,
"raw": "null",
"range": [
- 8554,
- 8558
+ 8301,
+ 8305
],
"loc": {
"start": {
- "line": 214,
+ "line": 206,
"column": 34
},
"end": {
- "line": 214,
+ "line": 206,
"column": 38
}
}
},
"range": [
- 8486,
- 8558
+ 8233,
+ 8305
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 31
},
"end": {
- "line": 214,
+ "line": 206,
"column": 38
}
}
},
"range": [
- 8463,
- 8558
+ 8210,
+ 8305
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 8
},
"end": {
- "line": 214,
+ "line": 206,
"column": 38
}
}
},
"range": [
- 8463,
- 8559
+ 8210,
+ 8306
],
"loc": {
"start": {
- "line": 213,
+ "line": 205,
"column": 8
},
"end": {
- "line": 214,
+ "line": 206,
"column": 39
}
},
@@ -19650,16 +19003,16 @@
"type": "Line",
"value": "calls function when filters grid loaded",
"range": [
- 8413,
- 8454
+ 8160,
+ 8201
],
"loc": {
"start": {
- "line": 212,
+ "line": 204,
"column": 8
},
"end": {
- "line": 212,
+ "line": 204,
"column": 49
}
}
@@ -19670,16 +19023,16 @@
"type": "Line",
"value": "enables/disables single filter search",
"range": [
- 8568,
- 8607
+ 8315,
+ 8354
],
"loc": {
"start": {
- "line": 215,
+ "line": 207,
"column": 8
},
"end": {
- "line": 215,
+ "line": 207,
"column": 47
}
}
@@ -19697,16 +19050,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8616,
- 8620
+ 8363,
+ 8367
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 8
},
"end": {
- "line": 216,
+ "line": 208,
"column": 12
}
}
@@ -19715,31 +19068,31 @@
"type": "Identifier",
"name": "singleSearchFlt",
"range": [
- 8621,
- 8636
+ 8368,
+ 8383
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 13
},
"end": {
- "line": 216,
+ "line": 208,
"column": 28
}
}
},
"range": [
- 8616,
- 8636
+ 8363,
+ 8383
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 8
},
"end": {
- "line": 216,
+ "line": 208,
"column": 28
}
}
@@ -19750,16 +19103,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 8639,
- 8646
+ 8386,
+ 8393
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 31
},
"end": {
- "line": 216,
+ "line": 208,
"column": 38
}
}
@@ -19772,16 +19125,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8647,
- 8648
+ 8394,
+ 8395
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 39
},
"end": {
- "line": 216,
+ "line": 208,
"column": 40
}
}
@@ -19790,77 +19143,77 @@
"type": "Identifier",
"name": "single_filter",
"range": [
- 8649,
- 8662
+ 8396,
+ 8409
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 41
},
"end": {
- "line": 216,
+ "line": 208,
"column": 54
}
}
},
"range": [
- 8647,
- 8662
+ 8394,
+ 8409
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 39
},
"end": {
- "line": 216,
+ "line": 208,
"column": 54
}
}
}
],
"range": [
- 8639,
- 8663
+ 8386,
+ 8410
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 31
},
"end": {
- "line": 216,
+ "line": 208,
"column": 55
}
}
},
"range": [
- 8616,
- 8663
+ 8363,
+ 8410
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 8
},
"end": {
- "line": 216,
+ "line": 208,
"column": 55
}
}
},
"range": [
- 8616,
- 8664
+ 8363,
+ 8411
],
"loc": {
"start": {
- "line": 216,
+ "line": 208,
"column": 8
},
"end": {
- "line": 216,
+ "line": 208,
"column": 56
}
},
@@ -19869,16 +19222,16 @@
"type": "Line",
"value": "enables/disables single filter search",
"range": [
- 8568,
- 8607
+ 8315,
+ 8354
],
"loc": {
"start": {
- "line": 215,
+ "line": 207,
"column": 8
},
"end": {
- "line": 215,
+ "line": 207,
"column": 47
}
}
@@ -19889,16 +19242,16 @@
"type": "Line",
"value": "calls function after row is validated",
"range": [
- 8673,
- 8712
+ 8420,
+ 8459
],
"loc": {
"start": {
- "line": 217,
+ "line": 209,
"column": 8
},
"end": {
- "line": 217,
+ "line": 209,
"column": 47
}
}
@@ -19916,16 +19269,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8721,
- 8725
+ 8468,
+ 8472
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 8
},
"end": {
- "line": 218,
+ "line": 210,
"column": 12
}
}
@@ -19934,31 +19287,31 @@
"type": "Identifier",
"name": "onRowValidated",
"range": [
- 8726,
- 8740
+ 8473,
+ 8487
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 13
},
"end": {
- "line": 218,
+ "line": 210,
"column": 27
}
}
},
"range": [
- 8721,
- 8740
+ 8468,
+ 8487
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 8
},
"end": {
- "line": 218,
+ "line": 210,
"column": 27
}
}
@@ -19974,16 +19327,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 8743,
- 8748
+ 8490,
+ 8495
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 30
},
"end": {
- "line": 218,
+ "line": 210,
"column": 35
}
}
@@ -19992,31 +19345,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 8749,
- 8753
+ 8496,
+ 8500
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 36
},
"end": {
- "line": 218,
+ "line": 210,
"column": 40
}
}
},
"range": [
- 8743,
- 8753
+ 8490,
+ 8500
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 30
},
"end": {
- "line": 218,
+ "line": 210,
"column": 40
}
}
@@ -20029,16 +19382,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8754,
- 8755
+ 8501,
+ 8502
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 41
},
"end": {
- "line": 218,
+ "line": 210,
"column": 42
}
}
@@ -20047,47 +19400,47 @@
"type": "Identifier",
"name": "on_row_validated",
"range": [
- 8756,
- 8772
+ 8503,
+ 8519
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 43
},
"end": {
- "line": 218,
+ "line": 210,
"column": 59
}
}
},
"range": [
- 8754,
- 8772
+ 8501,
+ 8519
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 41
},
"end": {
- "line": 218,
+ "line": 210,
"column": 59
}
}
}
],
"range": [
- 8743,
- 8773
+ 8490,
+ 8520
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 30
},
"end": {
- "line": 218,
+ "line": 210,
"column": 60
}
}
@@ -20099,16 +19452,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8788,
- 8789
+ 8535,
+ 8536
],
"loc": {
"start": {
- "line": 219,
+ "line": 211,
"column": 12
},
"end": {
- "line": 219,
+ "line": 211,
"column": 13
}
}
@@ -20117,31 +19470,31 @@
"type": "Identifier",
"name": "on_row_validated",
"range": [
- 8790,
- 8806
+ 8537,
+ 8553
],
"loc": {
"start": {
- "line": 219,
+ "line": 211,
"column": 14
},
"end": {
- "line": 219,
+ "line": 211,
"column": 30
}
}
},
"range": [
- 8788,
- 8806
+ 8535,
+ 8553
],
"loc": {
"start": {
- "line": 219,
+ "line": 211,
"column": 12
},
"end": {
- "line": 219,
+ "line": 211,
"column": 30
}
}
@@ -20151,61 +19504,61 @@
"value": null,
"raw": "null",
"range": [
- 8809,
- 8813
+ 8556,
+ 8560
],
"loc": {
"start": {
- "line": 219,
+ "line": 211,
"column": 33
},
"end": {
- "line": 219,
+ "line": 211,
"column": 37
}
}
},
"range": [
- 8743,
- 8813
+ 8490,
+ 8560
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 30
},
"end": {
- "line": 219,
+ "line": 211,
"column": 37
}
}
},
"range": [
- 8721,
- 8813
+ 8468,
+ 8560
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 8
},
"end": {
- "line": 219,
+ "line": 211,
"column": 37
}
}
},
"range": [
- 8721,
- 8814
+ 8468,
+ 8561
],
"loc": {
"start": {
- "line": 218,
+ "line": 210,
"column": 8
},
"end": {
- "line": 219,
+ "line": 211,
"column": 38
}
},
@@ -20214,16 +19567,16 @@
"type": "Line",
"value": "calls function after row is validated",
"range": [
- 8673,
- 8712
+ 8420,
+ 8459
],
"loc": {
"start": {
- "line": 217,
+ "line": 209,
"column": 8
},
"end": {
- "line": 217,
+ "line": 209,
"column": 47
}
}
@@ -20234,16 +19587,16 @@
"type": "Line",
"value": "array defining columns for customCellData event",
"range": [
- 8823,
- 8872
+ 8570,
+ 8619
],
"loc": {
"start": {
- "line": 220,
+ "line": 212,
"column": 8
},
"end": {
- "line": 220,
+ "line": 212,
"column": 57
}
}
@@ -20261,16 +19614,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 8881,
- 8885
+ 8628,
+ 8632
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 8
},
"end": {
- "line": 221,
+ "line": 213,
"column": 12
}
}
@@ -20279,31 +19632,31 @@
"type": "Identifier",
"name": "customCellDataCols",
"range": [
- 8886,
- 8904
+ 8633,
+ 8651
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 13
},
"end": {
- "line": 221,
+ "line": 213,
"column": 31
}
}
},
"range": [
- 8881,
- 8904
+ 8628,
+ 8651
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 8
},
"end": {
- "line": 221,
+ "line": 213,
"column": 31
}
}
@@ -20317,16 +19670,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8907,
- 8908
+ 8654,
+ 8655
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 34
},
"end": {
- "line": 221,
+ "line": 213,
"column": 35
}
}
@@ -20335,31 +19688,31 @@
"type": "Identifier",
"name": "custom_cell_data_cols",
"range": [
- 8909,
- 8930
+ 8656,
+ 8677
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 36
},
"end": {
- "line": 221,
+ "line": 213,
"column": 57
}
}
},
"range": [
- 8907,
- 8930
+ 8654,
+ 8677
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 34
},
"end": {
- "line": 221,
+ "line": 213,
"column": 57
}
}
@@ -20371,16 +19724,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 8945,
- 8946
+ 8692,
+ 8693
],
"loc": {
"start": {
- "line": 222,
+ "line": 214,
"column": 12
},
"end": {
- "line": 222,
+ "line": 214,
"column": 13
}
}
@@ -20389,31 +19742,31 @@
"type": "Identifier",
"name": "custom_cell_data_cols",
"range": [
- 8947,
- 8968
+ 8694,
+ 8715
],
"loc": {
"start": {
- "line": 222,
+ "line": 214,
"column": 14
},
"end": {
- "line": 222,
+ "line": 214,
"column": 35
}
}
},
"range": [
- 8945,
- 8968
+ 8692,
+ 8715
],
"loc": {
"start": {
- "line": 222,
+ "line": 214,
"column": 12
},
"end": {
- "line": 222,
+ "line": 214,
"column": 35
}
}
@@ -20422,61 +19775,61 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 8971,
- 8973
+ 8718,
+ 8720
],
"loc": {
"start": {
- "line": 222,
+ "line": 214,
"column": 38
},
"end": {
- "line": 222,
+ "line": 214,
"column": 40
}
}
},
"range": [
- 8907,
- 8973
+ 8654,
+ 8720
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 34
},
"end": {
- "line": 222,
+ "line": 214,
"column": 40
}
}
},
"range": [
- 8881,
- 8973
+ 8628,
+ 8720
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 8
},
"end": {
- "line": 222,
+ "line": 214,
"column": 40
}
}
},
"range": [
- 8881,
- 8974
+ 8628,
+ 8721
],
"loc": {
"start": {
- "line": 221,
+ "line": 213,
"column": 8
},
"end": {
- "line": 222,
+ "line": 214,
"column": 41
}
},
@@ -20485,16 +19838,16 @@
"type": "Line",
"value": "array defining columns for customCellData event",
"range": [
- 8823,
- 8872
+ 8570,
+ 8619
],
"loc": {
"start": {
- "line": 220,
+ "line": 212,
"column": 8
},
"end": {
- "line": 220,
+ "line": 212,
"column": 57
}
}
@@ -20505,16 +19858,16 @@
"type": "Line",
"value": "calls custom function for retrieving cell data",
"range": [
- 8983,
- 9031
+ 8730,
+ 8778
],
"loc": {
"start": {
- "line": 223,
+ "line": 215,
"column": 8
},
"end": {
- "line": 223,
+ "line": 215,
"column": 56
}
}
@@ -20532,16 +19885,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9040,
- 9044
+ 8787,
+ 8791
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 8
},
"end": {
- "line": 224,
+ "line": 216,
"column": 12
}
}
@@ -20550,31 +19903,31 @@
"type": "Identifier",
"name": "customCellData",
"range": [
- 9045,
- 9059
+ 8792,
+ 8806
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 13
},
"end": {
- "line": 224,
+ "line": 216,
"column": 27
}
}
},
"range": [
- 9040,
- 9059
+ 8787,
+ 8806
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 8
},
"end": {
- "line": 224,
+ "line": 216,
"column": 27
}
}
@@ -20590,16 +19943,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 9062,
- 9067
+ 8809,
+ 8814
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 30
},
"end": {
- "line": 224,
+ "line": 216,
"column": 35
}
}
@@ -20608,31 +19961,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 9068,
- 9072
+ 8815,
+ 8819
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 36
},
"end": {
- "line": 224,
+ "line": 216,
"column": 40
}
}
},
"range": [
- 9062,
- 9072
+ 8809,
+ 8819
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 30
},
"end": {
- "line": 224,
+ "line": 216,
"column": 40
}
}
@@ -20645,16 +19998,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9073,
- 9074
+ 8820,
+ 8821
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 41
},
"end": {
- "line": 224,
+ "line": 216,
"column": 42
}
}
@@ -20663,47 +20016,47 @@
"type": "Identifier",
"name": "custom_cell_data",
"range": [
- 9075,
- 9091
+ 8822,
+ 8838
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 43
},
"end": {
- "line": 224,
+ "line": 216,
"column": 59
}
}
},
"range": [
- 9073,
- 9091
+ 8820,
+ 8838
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 41
},
"end": {
- "line": 224,
+ "line": 216,
"column": 59
}
}
}
],
"range": [
- 9062,
- 9092
+ 8809,
+ 8839
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 30
},
"end": {
- "line": 224,
+ "line": 216,
"column": 60
}
}
@@ -20715,16 +20068,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9107,
- 9108
+ 8854,
+ 8855
],
"loc": {
"start": {
- "line": 225,
+ "line": 217,
"column": 12
},
"end": {
- "line": 225,
+ "line": 217,
"column": 13
}
}
@@ -20733,31 +20086,31 @@
"type": "Identifier",
"name": "custom_cell_data",
"range": [
- 9109,
- 9125
+ 8856,
+ 8872
],
"loc": {
"start": {
- "line": 225,
+ "line": 217,
"column": 14
},
"end": {
- "line": 225,
+ "line": 217,
"column": 30
}
}
},
"range": [
- 9107,
- 9125
+ 8854,
+ 8872
],
"loc": {
"start": {
- "line": 225,
+ "line": 217,
"column": 12
},
"end": {
- "line": 225,
+ "line": 217,
"column": 30
}
}
@@ -20767,61 +20120,61 @@
"value": null,
"raw": "null",
"range": [
- 9128,
- 9132
+ 8875,
+ 8879
],
"loc": {
"start": {
- "line": 225,
+ "line": 217,
"column": 33
},
"end": {
- "line": 225,
+ "line": 217,
"column": 37
}
}
},
"range": [
- 9062,
- 9132
+ 8809,
+ 8879
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 30
},
"end": {
- "line": 225,
+ "line": 217,
"column": 37
}
}
},
"range": [
- 9040,
- 9132
+ 8787,
+ 8879
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 8
},
"end": {
- "line": 225,
+ "line": 217,
"column": 37
}
}
},
"range": [
- 9040,
- 9133
+ 8787,
+ 8880
],
"loc": {
"start": {
- "line": 224,
+ "line": 216,
"column": 8
},
"end": {
- "line": 225,
+ "line": 217,
"column": 38
}
},
@@ -20830,16 +20183,16 @@
"type": "Line",
"value": "calls custom function for retrieving cell data",
"range": [
- 8983,
- 9031
+ 8730,
+ 8778
],
"loc": {
"start": {
- "line": 223,
+ "line": 215,
"column": 8
},
"end": {
- "line": 223,
+ "line": 215,
"column": 56
}
}
@@ -20850,16 +20203,16 @@
"type": "Line",
"value": "input watermark text array",
"range": [
- 9142,
- 9170
+ 8889,
+ 8917
],
"loc": {
"start": {
- "line": 226,
+ "line": 218,
"column": 8
},
"end": {
- "line": 226,
+ "line": 218,
"column": 36
}
}
@@ -20877,16 +20230,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9179,
- 9183
+ 8926,
+ 8930
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 8
},
"end": {
- "line": 227,
+ "line": 219,
"column": 12
}
}
@@ -20895,31 +20248,31 @@
"type": "Identifier",
"name": "watermark",
"range": [
- 9184,
- 9193
+ 8931,
+ 8940
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 13
},
"end": {
- "line": 227,
+ "line": 219,
"column": 22
}
}
},
"range": [
- 9179,
- 9193
+ 8926,
+ 8940
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 8
},
"end": {
- "line": 227,
+ "line": 219,
"column": 22
}
}
@@ -20934,16 +20287,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9196,
- 9197
+ 8943,
+ 8944
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 25
},
"end": {
- "line": 227,
+ "line": 219,
"column": 26
}
}
@@ -20952,31 +20305,31 @@
"type": "Identifier",
"name": "watermark",
"range": [
- 9198,
- 9207
+ 8945,
+ 8954
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 27
},
"end": {
- "line": 227,
+ "line": 219,
"column": 36
}
}
},
"range": [
- 9196,
- 9207
+ 8943,
+ 8954
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 25
},
"end": {
- "line": 227,
+ "line": 219,
"column": 36
}
}
@@ -20986,61 +20339,61 @@
"value": "",
"raw": "''",
"range": [
- 9211,
- 9213
+ 8958,
+ 8960
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 40
},
"end": {
- "line": 227,
+ "line": 219,
"column": 42
}
}
},
"range": [
- 9196,
- 9213
+ 8943,
+ 8960
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 25
},
"end": {
- "line": 227,
+ "line": 219,
"column": 42
}
}
},
"range": [
- 9179,
- 9213
+ 8926,
+ 8960
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 8
},
"end": {
- "line": 227,
+ "line": 219,
"column": 42
}
}
},
"range": [
- 9179,
- 9214
+ 8926,
+ 8961
],
"loc": {
"start": {
- "line": 227,
+ "line": 219,
"column": 8
},
"end": {
- "line": 227,
+ "line": 219,
"column": 43
}
},
@@ -21049,16 +20402,16 @@
"type": "Line",
"value": "input watermark text array",
"range": [
- 9142,
- 9170
+ 8889,
+ 8917
],
"loc": {
"start": {
- "line": 226,
+ "line": 218,
"column": 8
},
"end": {
- "line": 226,
+ "line": 218,
"column": 36
}
}
@@ -21076,16 +20429,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9223,
- 9227
+ 8970,
+ 8974
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 8
},
"end": {
- "line": 228,
+ "line": 220,
"column": 12
}
}
@@ -21094,31 +20447,31 @@
"type": "Identifier",
"name": "isWatermarkArray",
"range": [
- 9228,
- 9244
+ 8975,
+ 8991
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 13
},
"end": {
- "line": 228,
+ "line": 220,
"column": 29
}
}
},
"range": [
- 9223,
- 9244
+ 8970,
+ 8991
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 8
},
"end": {
- "line": 228,
+ "line": 220,
"column": 29
}
}
@@ -21132,16 +20485,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 9247,
- 9252
+ 8994,
+ 8999
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 32
},
"end": {
- "line": 228,
+ "line": 220,
"column": 37
}
}
@@ -21150,31 +20503,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 9253,
- 9260
+ 9000,
+ 9007
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 38
},
"end": {
- "line": 228,
+ "line": 220,
"column": 45
}
}
},
"range": [
- 9247,
- 9260
+ 8994,
+ 9007
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 32
},
"end": {
- "line": 228,
+ "line": 220,
"column": 45
}
}
@@ -21186,16 +20539,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9261,
- 9265
+ 9008,
+ 9012
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 46
},
"end": {
- "line": 228,
+ "line": 220,
"column": 50
}
}
@@ -21204,77 +20557,77 @@
"type": "Identifier",
"name": "watermark",
"range": [
- 9266,
- 9275
+ 9013,
+ 9022
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 51
},
"end": {
- "line": 228,
+ "line": 220,
"column": 60
}
}
},
"range": [
- 9261,
- 9275
+ 9008,
+ 9022
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 46
},
"end": {
- "line": 228,
+ "line": 220,
"column": 60
}
}
}
],
"range": [
- 9247,
- 9276
+ 8994,
+ 9023
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 32
},
"end": {
- "line": 228,
+ "line": 220,
"column": 61
}
}
},
"range": [
- 9223,
- 9276
+ 8970,
+ 9023
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 8
},
"end": {
- "line": 228,
+ "line": 220,
"column": 61
}
}
},
"range": [
- 9223,
- 9277
+ 8970,
+ 9024
],
"loc": {
"start": {
- "line": 228,
+ "line": 220,
"column": 8
},
"end": {
- "line": 228,
+ "line": 220,
"column": 62
}
},
@@ -21283,16 +20636,16 @@
"type": "Line",
"value": "id of toolbar container element",
"range": [
- 9286,
- 9319
+ 9033,
+ 9066
],
"loc": {
"start": {
- "line": 229,
+ "line": 221,
"column": 8
},
"end": {
- "line": 229,
+ "line": 221,
"column": 41
}
}
@@ -21310,16 +20663,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9328,
- 9332
+ 9075,
+ 9079
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 8
},
"end": {
- "line": 230,
+ "line": 222,
"column": 12
}
}
@@ -21328,31 +20681,31 @@
"type": "Identifier",
"name": "toolBarTgtId",
"range": [
- 9333,
- 9345
+ 9080,
+ 9092
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 13
},
"end": {
- "line": 230,
+ "line": 222,
"column": 25
}
}
},
"range": [
- 9328,
- 9345
+ 9075,
+ 9092
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 8
},
"end": {
- "line": 230,
+ "line": 222,
"column": 25
}
}
@@ -21367,16 +20720,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9348,
- 9349
+ 9095,
+ 9096
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 28
},
"end": {
- "line": 230,
+ "line": 222,
"column": 29
}
}
@@ -21385,31 +20738,31 @@
"type": "Identifier",
"name": "toolbar_target_id",
"range": [
- 9350,
- 9367
+ 9097,
+ 9114
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 30
},
"end": {
- "line": 230,
+ "line": 222,
"column": 47
}
}
},
"range": [
- 9348,
- 9367
+ 9095,
+ 9114
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 28
},
"end": {
- "line": 230,
+ "line": 222,
"column": 47
}
}
@@ -21419,61 +20772,61 @@
"value": null,
"raw": "null",
"range": [
- 9371,
- 9375
+ 9118,
+ 9122
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 51
},
"end": {
- "line": 230,
+ "line": 222,
"column": 55
}
}
},
"range": [
- 9348,
- 9375
+ 9095,
+ 9122
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 28
},
"end": {
- "line": 230,
+ "line": 222,
"column": 55
}
}
},
"range": [
- 9328,
- 9375
+ 9075,
+ 9122
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 8
},
"end": {
- "line": 230,
+ "line": 222,
"column": 55
}
}
},
"range": [
- 9328,
- 9376
+ 9075,
+ 9123
],
"loc": {
"start": {
- "line": 230,
+ "line": 222,
"column": 8
},
"end": {
- "line": 230,
+ "line": 222,
"column": 56
}
},
@@ -21482,16 +20835,16 @@
"type": "Line",
"value": "id of toolbar container element",
"range": [
- 9286,
- 9319
+ 9033,
+ 9066
],
"loc": {
"start": {
- "line": 229,
+ "line": 221,
"column": 8
},
"end": {
- "line": 229,
+ "line": 221,
"column": 41
}
}
@@ -21502,16 +20855,16 @@
"type": "Line",
"value": "enables/disables help div",
"range": [
- 9385,
- 9412
+ 9132,
+ 9159
],
"loc": {
"start": {
- "line": 231,
+ "line": 223,
"column": 8
},
"end": {
- "line": 231,
+ "line": 223,
"column": 35
}
}
@@ -21529,16 +20882,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9421,
- 9425
+ 9168,
+ 9172
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 8
},
"end": {
- "line": 232,
+ "line": 224,
"column": 12
}
}
@@ -21547,31 +20900,31 @@
"type": "Identifier",
"name": "help",
"range": [
- 9426,
- 9430
+ 9173,
+ 9177
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 13
},
"end": {
- "line": 232,
+ "line": 224,
"column": 17
}
}
},
"range": [
- 9421,
- 9430
+ 9168,
+ 9177
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 8
},
"end": {
- "line": 232,
+ "line": 224,
"column": 17
}
}
@@ -21587,16 +20940,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 9433,
- 9438
+ 9180,
+ 9185
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 20
},
"end": {
- "line": 232,
+ "line": 224,
"column": 25
}
}
@@ -21605,31 +20958,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 9439,
- 9446
+ 9186,
+ 9193
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 26
},
"end": {
- "line": 232,
+ "line": 224,
"column": 33
}
}
},
"range": [
- 9433,
- 9446
+ 9180,
+ 9193
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 20
},
"end": {
- "line": 232,
+ "line": 224,
"column": 33
}
}
@@ -21642,16 +20995,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9447,
- 9448
+ 9194,
+ 9195
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 34
},
"end": {
- "line": 232,
+ "line": 224,
"column": 35
}
}
@@ -21660,47 +21013,47 @@
"type": "Identifier",
"name": "help_instructions",
"range": [
- 9449,
- 9466
+ 9196,
+ 9213
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 36
},
"end": {
- "line": 232,
+ "line": 224,
"column": 53
}
}
},
"range": [
- 9447,
- 9466
+ 9194,
+ 9213
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 34
},
"end": {
- "line": 232,
+ "line": 224,
"column": 53
}
}
}
],
"range": [
- 9433,
- 9467
+ 9180,
+ 9214
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 20
},
"end": {
- "line": 232,
+ "line": 224,
"column": 54
}
}
@@ -21709,16 +21062,16 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 9482,
- 9491
+ 9229,
+ 9238
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 12
},
"end": {
- "line": 233,
+ "line": 225,
"column": 21
}
}
@@ -21729,16 +21082,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 9494,
- 9501
+ 9241,
+ 9248
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 24
},
"end": {
- "line": 233,
+ "line": 225,
"column": 31
}
}
@@ -21751,16 +21104,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9502,
- 9503
+ 9249,
+ 9250
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 32
},
"end": {
- "line": 233,
+ "line": 225,
"column": 33
}
}
@@ -21769,92 +21122,92 @@
"type": "Identifier",
"name": "help_instructions",
"range": [
- 9504,
- 9521
+ 9251,
+ 9268
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 34
},
"end": {
- "line": 233,
+ "line": 225,
"column": 51
}
}
},
"range": [
- 9502,
- 9521
+ 9249,
+ 9268
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 32
},
"end": {
- "line": 233,
+ "line": 225,
"column": 51
}
}
}
],
"range": [
- 9494,
- 9522
+ 9241,
+ 9269
],
"loc": {
"start": {
- "line": 233,
+ "line": 225,
"column": 24
},
"end": {
- "line": 233,
+ "line": 225,
"column": 52
}
}
},
"range": [
- 9433,
- 9522
+ 9180,
+ 9269
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 20
},
"end": {
- "line": 233,
+ "line": 225,
"column": 52
}
}
},
"range": [
- 9421,
- 9522
+ 9168,
+ 9269
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 8
},
"end": {
- "line": 233,
+ "line": 225,
"column": 52
}
}
},
"range": [
- 9421,
- 9523
+ 9168,
+ 9270
],
"loc": {
"start": {
- "line": 232,
+ "line": 224,
"column": 8
},
"end": {
- "line": 233,
+ "line": 225,
"column": 53
}
},
@@ -21863,16 +21216,16 @@
"type": "Line",
"value": "enables/disables help div",
"range": [
- 9385,
- 9412
+ 9132,
+ 9159
],
"loc": {
"start": {
- "line": 231,
+ "line": 223,
"column": 8
},
"end": {
- "line": 231,
+ "line": 223,
"column": 35
}
}
@@ -21883,16 +21236,16 @@
"type": "Line",
"value": "popup filters",
"range": [
- 9532,
- 9547
+ 9279,
+ 9294
],
"loc": {
"start": {
- "line": 234,
+ "line": 226,
"column": 8
},
"end": {
- "line": 234,
+ "line": 226,
"column": 23
}
}
@@ -21910,16 +21263,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9556,
- 9560
+ 9303,
+ 9307
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 8
},
"end": {
- "line": 235,
+ "line": 227,
"column": 12
}
}
@@ -21928,31 +21281,31 @@
"type": "Identifier",
"name": "popupFilters",
"range": [
- 9561,
- 9573
+ 9308,
+ 9320
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 13
},
"end": {
- "line": 235,
+ "line": 227,
"column": 25
}
}
},
"range": [
- 9556,
- 9573
+ 9303,
+ 9320
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 8
},
"end": {
- "line": 235,
+ "line": 227,
"column": 25
}
}
@@ -21963,16 +21316,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 9576,
- 9583
+ 9323,
+ 9330
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 28
},
"end": {
- "line": 235,
+ "line": 227,
"column": 35
}
}
@@ -21985,16 +21338,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9584,
- 9585
+ 9331,
+ 9332
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 36
},
"end": {
- "line": 235,
+ "line": 227,
"column": 37
}
}
@@ -22003,77 +21356,77 @@
"type": "Identifier",
"name": "popup_filters",
"range": [
- 9586,
- 9599
+ 9333,
+ 9346
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 38
},
"end": {
- "line": 235,
+ "line": 227,
"column": 51
}
}
},
"range": [
- 9584,
- 9599
+ 9331,
+ 9346
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 36
},
"end": {
- "line": 235,
+ "line": 227,
"column": 51
}
}
}
],
"range": [
- 9576,
- 9600
+ 9323,
+ 9347
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 28
},
"end": {
- "line": 235,
+ "line": 227,
"column": 52
}
}
},
"range": [
- 9556,
- 9600
+ 9303,
+ 9347
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 8
},
"end": {
- "line": 235,
+ "line": 227,
"column": 52
}
}
},
"range": [
- 9556,
- 9601
+ 9303,
+ 9348
],
"loc": {
"start": {
- "line": 235,
+ "line": 227,
"column": 8
},
"end": {
- "line": 235,
+ "line": 227,
"column": 53
}
},
@@ -22082,16 +21435,16 @@
"type": "Line",
"value": "popup filters",
"range": [
- 9532,
- 9547
+ 9279,
+ 9294
],
"loc": {
"start": {
- "line": 234,
+ "line": 226,
"column": 8
},
"end": {
- "line": 234,
+ "line": 226,
"column": 23
}
}
@@ -22102,16 +21455,16 @@
"type": "Line",
"value": "active columns color",
"range": [
- 9610,
- 9632
+ 9357,
+ 9379
],
"loc": {
"start": {
- "line": 236,
+ "line": 228,
"column": 8
},
"end": {
- "line": 236,
+ "line": 228,
"column": 30
}
}
@@ -22129,16 +21482,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9641,
- 9645
+ 9388,
+ 9392
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 8
},
"end": {
- "line": 237,
+ "line": 229,
"column": 12
}
}
@@ -22147,31 +21500,31 @@
"type": "Identifier",
"name": "markActiveColumns",
"range": [
- 9646,
- 9663
+ 9393,
+ 9410
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 13
},
"end": {
- "line": 237,
+ "line": 229,
"column": 30
}
}
},
"range": [
- 9641,
- 9663
+ 9388,
+ 9410
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 8
},
"end": {
- "line": 237,
+ "line": 229,
"column": 30
}
}
@@ -22182,16 +21535,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 9666,
- 9673
+ 9413,
+ 9420
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 33
},
"end": {
- "line": 237,
+ "line": 229,
"column": 40
}
}
@@ -22204,16 +21557,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9674,
- 9675
+ 9421,
+ 9422
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 41
},
"end": {
- "line": 237,
+ "line": 229,
"column": 42
}
}
@@ -22222,77 +21575,77 @@
"type": "Identifier",
"name": "mark_active_columns",
"range": [
- 9676,
- 9695
+ 9423,
+ 9442
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 43
},
"end": {
- "line": 237,
+ "line": 229,
"column": 62
}
}
},
"range": [
- 9674,
- 9695
+ 9421,
+ 9442
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 41
},
"end": {
- "line": 237,
+ "line": 229,
"column": 62
}
}
}
],
"range": [
- 9666,
- 9696
+ 9413,
+ 9443
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 33
},
"end": {
- "line": 237,
+ "line": 229,
"column": 63
}
}
},
"range": [
- 9641,
- 9696
+ 9388,
+ 9443
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 8
},
"end": {
- "line": 237,
+ "line": 229,
"column": 63
}
}
},
"range": [
- 9641,
- 9697
+ 9388,
+ 9444
],
"loc": {
"start": {
- "line": 237,
+ "line": 229,
"column": 8
},
"end": {
- "line": 237,
+ "line": 229,
"column": 64
}
},
@@ -22301,16 +21654,16 @@
"type": "Line",
"value": "active columns color",
"range": [
- 9610,
- 9632
+ 9357,
+ 9379
],
"loc": {
"start": {
- "line": 236,
+ "line": 228,
"column": 8
},
"end": {
- "line": 236,
+ "line": 228,
"column": 30
}
}
@@ -22321,16 +21674,16 @@
"type": "Line",
"value": "defines css class for active column header",
"range": [
- 9706,
- 9750
+ 9453,
+ 9497
],
"loc": {
"start": {
- "line": 238,
+ "line": 230,
"column": 8
},
"end": {
- "line": 238,
+ "line": 230,
"column": 52
}
}
@@ -22348,16 +21701,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9759,
- 9763
+ 9506,
+ 9510
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 8
},
"end": {
- "line": 239,
+ "line": 231,
"column": 12
}
}
@@ -22366,31 +21719,31 @@
"type": "Identifier",
"name": "activeColumnsCssClass",
"range": [
- 9764,
- 9785
+ 9511,
+ 9532
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 13
},
"end": {
- "line": 239,
+ "line": 231,
"column": 34
}
}
},
"range": [
- 9759,
- 9785
+ 9506,
+ 9532
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 8
},
"end": {
- "line": 239,
+ "line": 231,
"column": 34
}
}
@@ -22405,16 +21758,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9788,
- 9789
+ 9535,
+ 9536
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 37
},
"end": {
- "line": 239,
+ "line": 231,
"column": 38
}
}
@@ -22423,31 +21776,31 @@
"type": "Identifier",
"name": "active_columns_css_class",
"range": [
- 9790,
- 9814
+ 9537,
+ 9561
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 39
},
"end": {
- "line": 239,
+ "line": 231,
"column": 63
}
}
},
"range": [
- 9788,
- 9814
+ 9535,
+ 9561
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 37
},
"end": {
- "line": 239,
+ "line": 231,
"column": 63
}
}
@@ -22457,61 +21810,61 @@
"value": "activeHeader",
"raw": "'activeHeader'",
"range": [
- 9830,
- 9844
+ 9577,
+ 9591
],
"loc": {
"start": {
- "line": 240,
+ "line": 232,
"column": 12
},
"end": {
- "line": 240,
+ "line": 232,
"column": 26
}
}
},
"range": [
- 9788,
- 9844
+ 9535,
+ 9591
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 37
},
"end": {
- "line": 240,
+ "line": 232,
"column": 26
}
}
},
"range": [
- 9759,
- 9844
+ 9506,
+ 9591
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 8
},
"end": {
- "line": 240,
+ "line": 232,
"column": 26
}
}
},
"range": [
- 9759,
- 9845
+ 9506,
+ 9592
],
"loc": {
"start": {
- "line": 239,
+ "line": 231,
"column": 8
},
"end": {
- "line": 240,
+ "line": 232,
"column": 27
}
},
@@ -22520,16 +21873,16 @@
"type": "Line",
"value": "defines css class for active column header",
"range": [
- 9706,
- 9750
+ 9453,
+ 9497
],
"loc": {
"start": {
- "line": 238,
+ "line": 230,
"column": 8
},
"end": {
- "line": 238,
+ "line": 230,
"column": 52
}
}
@@ -22540,16 +21893,16 @@
"type": "Line",
"value": "calls function before active column header is marked",
"range": [
- 9854,
- 9908
+ 9601,
+ 9655
],
"loc": {
"start": {
- "line": 241,
+ "line": 233,
"column": 8
},
"end": {
- "line": 241,
+ "line": 233,
"column": 62
}
}
@@ -22567,16 +21920,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 9917,
- 9921
+ 9664,
+ 9668
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 8
},
"end": {
- "line": 242,
+ "line": 234,
"column": 12
}
}
@@ -22585,31 +21938,31 @@
"type": "Identifier",
"name": "onBeforeActiveColumn",
"range": [
- 9922,
- 9942
+ 9669,
+ 9689
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 13
},
"end": {
- "line": 242,
+ "line": 234,
"column": 33
}
}
},
"range": [
- 9917,
- 9942
+ 9664,
+ 9689
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 8
},
"end": {
- "line": 242,
+ "line": 234,
"column": 33
}
}
@@ -22625,16 +21978,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 9945,
- 9950
+ 9692,
+ 9697
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 36
},
"end": {
- "line": 242,
+ "line": 234,
"column": 41
}
}
@@ -22643,31 +21996,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 9951,
- 9955
+ 9698,
+ 9702
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 42
},
"end": {
- "line": 242,
+ "line": 234,
"column": 46
}
}
},
"range": [
- 9945,
- 9955
+ 9692,
+ 9702
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 36
},
"end": {
- "line": 242,
+ "line": 234,
"column": 46
}
}
@@ -22680,16 +22033,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9956,
- 9957
+ 9703,
+ 9704
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 47
},
"end": {
- "line": 242,
+ "line": 234,
"column": 48
}
}
@@ -22698,47 +22051,47 @@
"type": "Identifier",
"name": "on_before_active_column",
"range": [
- 9958,
- 9981
+ 9705,
+ 9728
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 49
},
"end": {
- "line": 242,
+ "line": 234,
"column": 72
}
}
},
"range": [
- 9956,
- 9981
+ 9703,
+ 9728
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 47
},
"end": {
- "line": 242,
+ "line": 234,
"column": 72
}
}
}
],
"range": [
- 9945,
- 9982
+ 9692,
+ 9729
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 36
},
"end": {
- "line": 242,
+ "line": 234,
"column": 73
}
}
@@ -22750,16 +22103,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 9997,
- 9998
+ 9744,
+ 9745
],
"loc": {
"start": {
- "line": 243,
+ "line": 235,
"column": 12
},
"end": {
- "line": 243,
+ "line": 235,
"column": 13
}
}
@@ -22768,31 +22121,31 @@
"type": "Identifier",
"name": "on_before_active_column",
"range": [
- 9999,
- 10022
+ 9746,
+ 9769
],
"loc": {
"start": {
- "line": 243,
+ "line": 235,
"column": 14
},
"end": {
- "line": 243,
+ "line": 235,
"column": 37
}
}
},
"range": [
- 9997,
- 10022
+ 9744,
+ 9769
],
"loc": {
"start": {
- "line": 243,
+ "line": 235,
"column": 12
},
"end": {
- "line": 243,
+ "line": 235,
"column": 37
}
}
@@ -22802,61 +22155,61 @@
"value": null,
"raw": "null",
"range": [
- 10025,
- 10029
+ 9772,
+ 9776
],
"loc": {
"start": {
- "line": 243,
+ "line": 235,
"column": 40
},
"end": {
- "line": 243,
+ "line": 235,
"column": 44
}
}
},
"range": [
- 9945,
- 10029
+ 9692,
+ 9776
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 36
},
"end": {
- "line": 243,
+ "line": 235,
"column": 44
}
}
},
"range": [
- 9917,
- 10029
+ 9664,
+ 9776
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 8
},
"end": {
- "line": 243,
+ "line": 235,
"column": 44
}
}
},
"range": [
- 9917,
- 10030
+ 9664,
+ 9777
],
"loc": {
"start": {
- "line": 242,
+ "line": 234,
"column": 8
},
"end": {
- "line": 243,
+ "line": 235,
"column": 45
}
},
@@ -22865,16 +22218,16 @@
"type": "Line",
"value": "calls function before active column header is marked",
"range": [
- 9854,
- 9908
+ 9601,
+ 9655
],
"loc": {
"start": {
- "line": 241,
+ "line": 233,
"column": 8
},
"end": {
- "line": 241,
+ "line": 233,
"column": 62
}
}
@@ -22885,16 +22238,16 @@
"type": "Line",
"value": "calls function after active column header is marked",
"range": [
- 10039,
- 10092
+ 9786,
+ 9839
],
"loc": {
"start": {
- "line": 244,
+ "line": 236,
"column": 8
},
"end": {
- "line": 244,
+ "line": 236,
"column": 61
}
}
@@ -22912,16 +22265,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10101,
- 10105
+ 9848,
+ 9852
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 8
},
"end": {
- "line": 245,
+ "line": 237,
"column": 12
}
}
@@ -22930,31 +22283,31 @@
"type": "Identifier",
"name": "onAfterActiveColumn",
"range": [
- 10106,
- 10125
+ 9853,
+ 9872
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 13
},
"end": {
- "line": 245,
+ "line": 237,
"column": 32
}
}
},
"range": [
- 10101,
- 10125
+ 9848,
+ 9872
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 8
},
"end": {
- "line": 245,
+ "line": 237,
"column": 32
}
}
@@ -22970,16 +22323,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 10128,
- 10133
+ 9875,
+ 9880
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 35
},
"end": {
- "line": 245,
+ "line": 237,
"column": 40
}
}
@@ -22988,31 +22341,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 10134,
- 10138
+ 9881,
+ 9885
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 41
},
"end": {
- "line": 245,
+ "line": 237,
"column": 45
}
}
},
"range": [
- 10128,
- 10138
+ 9875,
+ 9885
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 35
},
"end": {
- "line": 245,
+ "line": 237,
"column": 45
}
}
@@ -23025,16 +22378,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10139,
- 10140
+ 9886,
+ 9887
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 46
},
"end": {
- "line": 245,
+ "line": 237,
"column": 47
}
}
@@ -23043,47 +22396,47 @@
"type": "Identifier",
"name": "on_after_active_column",
"range": [
- 10141,
- 10163
+ 9888,
+ 9910
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 48
},
"end": {
- "line": 245,
+ "line": 237,
"column": 70
}
}
},
"range": [
- 10139,
- 10163
+ 9886,
+ 9910
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 46
},
"end": {
- "line": 245,
+ "line": 237,
"column": 70
}
}
}
],
"range": [
- 10128,
- 10164
+ 9875,
+ 9911
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 35
},
"end": {
- "line": 245,
+ "line": 237,
"column": 71
}
}
@@ -23095,16 +22448,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10179,
- 10180
+ 9926,
+ 9927
],
"loc": {
"start": {
- "line": 246,
+ "line": 238,
"column": 12
},
"end": {
- "line": 246,
+ "line": 238,
"column": 13
}
}
@@ -23113,31 +22466,31 @@
"type": "Identifier",
"name": "on_after_active_column",
"range": [
- 10181,
- 10203
+ 9928,
+ 9950
],
"loc": {
"start": {
- "line": 246,
+ "line": 238,
"column": 14
},
"end": {
- "line": 246,
+ "line": 238,
"column": 36
}
}
},
"range": [
- 10179,
- 10203
+ 9926,
+ 9950
],
"loc": {
"start": {
- "line": 246,
+ "line": 238,
"column": 12
},
"end": {
- "line": 246,
+ "line": 238,
"column": 36
}
}
@@ -23147,61 +22500,61 @@
"value": null,
"raw": "null",
"range": [
- 10206,
- 10210
+ 9953,
+ 9957
],
"loc": {
"start": {
- "line": 246,
+ "line": 238,
"column": 39
},
"end": {
- "line": 246,
+ "line": 238,
"column": 43
}
}
},
"range": [
- 10128,
- 10210
+ 9875,
+ 9957
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 35
},
"end": {
- "line": 246,
+ "line": 238,
"column": 43
}
}
},
"range": [
- 10101,
- 10210
+ 9848,
+ 9957
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 8
},
"end": {
- "line": 246,
+ "line": 238,
"column": 43
}
}
},
"range": [
- 10101,
- 10211
+ 9848,
+ 9958
],
"loc": {
"start": {
- "line": 245,
+ "line": 237,
"column": 8
},
"end": {
- "line": 246,
+ "line": 238,
"column": 44
}
},
@@ -23210,16 +22563,16 @@
"type": "Line",
"value": "calls function after active column header is marked",
"range": [
- 10039,
- 10092
+ 9786,
+ 9839
],
"loc": {
"start": {
- "line": 244,
+ "line": 236,
"column": 8
},
"end": {
- "line": 244,
+ "line": 236,
"column": 61
}
}
@@ -23230,16 +22583,16 @@
"type": "Block",
"value": "** select filter's customisation and behaviours **",
"range": [
- 10221,
- 10275
+ 9968,
+ 10022
],
"loc": {
"start": {
- "line": 248,
+ "line": 240,
"column": 8
},
"end": {
- "line": 248,
+ "line": 240,
"column": 62
}
}
@@ -23248,16 +22601,16 @@
"type": "Line",
"value": "defines 1st option text",
"range": [
- 10284,
- 10309
+ 10031,
+ 10056
],
"loc": {
"start": {
- "line": 249,
+ "line": 241,
"column": 8
},
"end": {
- "line": 249,
+ "line": 241,
"column": 33
}
}
@@ -23275,16 +22628,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10318,
- 10322
+ 10065,
+ 10069
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 8
},
"end": {
- "line": 250,
+ "line": 242,
"column": 12
}
}
@@ -23293,31 +22646,31 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 10323,
- 10337
+ 10070,
+ 10084
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 13
},
"end": {
- "line": 250,
+ "line": 242,
"column": 27
}
}
},
"range": [
- 10318,
- 10337
+ 10065,
+ 10084
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 8
},
"end": {
- "line": 250,
+ "line": 242,
"column": 27
}
}
@@ -23332,16 +22685,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10340,
- 10341
+ 10087,
+ 10088
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 30
},
"end": {
- "line": 250,
+ "line": 242,
"column": 31
}
}
@@ -23350,31 +22703,31 @@
"type": "Identifier",
"name": "display_all_text",
"range": [
- 10342,
- 10358
+ 10089,
+ 10105
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 32
},
"end": {
- "line": 250,
+ "line": 242,
"column": 48
}
}
},
"range": [
- 10340,
- 10358
+ 10087,
+ 10105
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 30
},
"end": {
- "line": 250,
+ "line": 242,
"column": 48
}
}
@@ -23384,61 +22737,61 @@
"value": "Clear",
"raw": "'Clear'",
"range": [
- 10362,
- 10369
+ 10109,
+ 10116
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 52
},
"end": {
- "line": 250,
+ "line": 242,
"column": 59
}
}
},
"range": [
- 10340,
- 10369
+ 10087,
+ 10116
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 30
},
"end": {
- "line": 250,
+ "line": 242,
"column": 59
}
}
},
"range": [
- 10318,
- 10369
+ 10065,
+ 10116
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 8
},
"end": {
- "line": 250,
+ "line": 242,
"column": 59
}
}
},
"range": [
- 10318,
- 10370
+ 10065,
+ 10117
],
"loc": {
"start": {
- "line": 250,
+ "line": 242,
"column": 8
},
"end": {
- "line": 250,
+ "line": 242,
"column": 60
}
},
@@ -23447,16 +22800,16 @@
"type": "Block",
"value": "** select filter's customisation and behaviours **",
"range": [
- 10221,
- 10275
+ 9968,
+ 10022
],
"loc": {
"start": {
- "line": 248,
+ "line": 240,
"column": 8
},
"end": {
- "line": 248,
+ "line": 240,
"column": 62
}
}
@@ -23465,16 +22818,16 @@
"type": "Line",
"value": "defines 1st option text",
"range": [
- 10284,
- 10309
+ 10031,
+ 10056
],
"loc": {
"start": {
- "line": 249,
+ "line": 241,
"column": 8
},
"end": {
- "line": 249,
+ "line": 241,
"column": 33
}
}
@@ -23485,16 +22838,16 @@
"type": "Line",
"value": "enables/disables empty option in combo-box filters",
"range": [
- 10379,
- 10431
+ 10126,
+ 10178
],
"loc": {
"start": {
- "line": 251,
+ "line": 243,
"column": 8
},
"end": {
- "line": 251,
+ "line": 243,
"column": 60
}
}
@@ -23512,16 +22865,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10440,
- 10444
+ 10187,
+ 10191
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 8
},
"end": {
- "line": 252,
+ "line": 244,
"column": 12
}
}
@@ -23530,31 +22883,31 @@
"type": "Identifier",
"name": "enableEmptyOption",
"range": [
- 10445,
- 10462
+ 10192,
+ 10209
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 13
},
"end": {
- "line": 252,
+ "line": 244,
"column": 30
}
}
},
"range": [
- 10440,
- 10462
+ 10187,
+ 10209
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 8
},
"end": {
- "line": 252,
+ "line": 244,
"column": 30
}
}
@@ -23565,16 +22918,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 10465,
- 10472
+ 10212,
+ 10219
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 33
},
"end": {
- "line": 252,
+ "line": 244,
"column": 40
}
}
@@ -23587,16 +22940,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10473,
- 10474
+ 10220,
+ 10221
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 41
},
"end": {
- "line": 252,
+ "line": 244,
"column": 42
}
}
@@ -23605,77 +22958,77 @@
"type": "Identifier",
"name": "enable_empty_option",
"range": [
- 10475,
- 10494
+ 10222,
+ 10241
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 43
},
"end": {
- "line": 252,
+ "line": 244,
"column": 62
}
}
},
"range": [
- 10473,
- 10494
+ 10220,
+ 10241
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 41
},
"end": {
- "line": 252,
+ "line": 244,
"column": 62
}
}
}
],
"range": [
- 10465,
- 10495
+ 10212,
+ 10242
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 33
},
"end": {
- "line": 252,
+ "line": 244,
"column": 63
}
}
},
"range": [
- 10440,
- 10495
+ 10187,
+ 10242
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 8
},
"end": {
- "line": 252,
+ "line": 244,
"column": 63
}
}
},
"range": [
- 10440,
- 10496
+ 10187,
+ 10243
],
"loc": {
"start": {
- "line": 252,
+ "line": 244,
"column": 8
},
"end": {
- "line": 252,
+ "line": 244,
"column": 64
}
},
@@ -23684,16 +23037,16 @@
"type": "Line",
"value": "enables/disables empty option in combo-box filters",
"range": [
- 10379,
- 10431
+ 10126,
+ 10178
],
"loc": {
"start": {
- "line": 251,
+ "line": 243,
"column": 8
},
"end": {
- "line": 251,
+ "line": 243,
"column": 60
}
}
@@ -23704,16 +23057,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10505,
- 10532
+ 10252,
+ 10279
],
"loc": {
"start": {
- "line": 253,
+ "line": 245,
"column": 8
},
"end": {
- "line": 253,
+ "line": 245,
"column": 35
}
}
@@ -23731,16 +23084,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10541,
- 10545
+ 10288,
+ 10292
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 8
},
"end": {
- "line": 254,
+ "line": 246,
"column": 12
}
}
@@ -23749,31 +23102,31 @@
"type": "Identifier",
"name": "emptyText",
"range": [
- 10546,
- 10555
+ 10293,
+ 10302
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 13
},
"end": {
- "line": 254,
+ "line": 246,
"column": 22
}
}
},
"range": [
- 10541,
- 10555
+ 10288,
+ 10302
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 8
},
"end": {
- "line": 254,
+ "line": 246,
"column": 22
}
}
@@ -23788,16 +23141,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10558,
- 10559
+ 10305,
+ 10306
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 25
},
"end": {
- "line": 254,
+ "line": 246,
"column": 26
}
}
@@ -23806,31 +23159,31 @@
"type": "Identifier",
"name": "empty_text",
"range": [
- 10560,
- 10570
+ 10307,
+ 10317
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 27
},
"end": {
- "line": 254,
+ "line": 246,
"column": 37
}
}
},
"range": [
- 10558,
- 10570
+ 10305,
+ 10317
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 25
},
"end": {
- "line": 254,
+ "line": 246,
"column": 37
}
}
@@ -23840,61 +23193,61 @@
"value": "(Empty)",
"raw": "'(Empty)'",
"range": [
- 10574,
- 10583
+ 10321,
+ 10330
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 41
},
"end": {
- "line": 254,
+ "line": 246,
"column": 50
}
}
},
"range": [
- 10558,
- 10583
+ 10305,
+ 10330
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 25
},
"end": {
- "line": 254,
+ "line": 246,
"column": 50
}
}
},
"range": [
- 10541,
- 10583
+ 10288,
+ 10330
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 8
},
"end": {
- "line": 254,
+ "line": 246,
"column": 50
}
}
},
"range": [
- 10541,
- 10584
+ 10288,
+ 10331
],
"loc": {
"start": {
- "line": 254,
+ "line": 246,
"column": 8
},
"end": {
- "line": 254,
+ "line": 246,
"column": 51
}
},
@@ -23903,16 +23256,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10505,
- 10532
+ 10252,
+ 10279
],
"loc": {
"start": {
- "line": 253,
+ "line": 245,
"column": 8
},
"end": {
- "line": 253,
+ "line": 245,
"column": 35
}
}
@@ -23923,16 +23276,16 @@
"type": "Line",
"value": "enables/disables non empty option in combo-box filters",
"range": [
- 10593,
- 10649
+ 10340,
+ 10396
],
"loc": {
"start": {
- "line": 255,
+ "line": 247,
"column": 8
},
"end": {
- "line": 255,
+ "line": 247,
"column": 64
}
}
@@ -23950,16 +23303,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10658,
- 10662
+ 10405,
+ 10409
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 8
},
"end": {
- "line": 256,
+ "line": 248,
"column": 12
}
}
@@ -23968,31 +23321,31 @@
"type": "Identifier",
"name": "enableNonEmptyOption",
"range": [
- 10663,
- 10683
+ 10410,
+ 10430
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 13
},
"end": {
- "line": 256,
+ "line": 248,
"column": 33
}
}
},
"range": [
- 10658,
- 10683
+ 10405,
+ 10430
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 8
},
"end": {
- "line": 256,
+ "line": 248,
"column": 33
}
}
@@ -24003,16 +23356,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 10686,
- 10693
+ 10433,
+ 10440
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 36
},
"end": {
- "line": 256,
+ "line": 248,
"column": 43
}
}
@@ -24025,16 +23378,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10694,
- 10695
+ 10441,
+ 10442
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 44
},
"end": {
- "line": 256,
+ "line": 248,
"column": 45
}
}
@@ -24043,77 +23396,77 @@
"type": "Identifier",
"name": "enable_non_empty_option",
"range": [
- 10696,
- 10719
+ 10443,
+ 10466
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 46
},
"end": {
- "line": 256,
+ "line": 248,
"column": 69
}
}
},
"range": [
- 10694,
- 10719
+ 10441,
+ 10466
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 44
},
"end": {
- "line": 256,
+ "line": 248,
"column": 69
}
}
}
],
"range": [
- 10686,
- 10720
+ 10433,
+ 10467
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 36
},
"end": {
- "line": 256,
+ "line": 248,
"column": 70
}
}
},
"range": [
- 10658,
- 10720
+ 10405,
+ 10467
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 8
},
"end": {
- "line": 256,
+ "line": 248,
"column": 70
}
}
},
"range": [
- 10658,
- 10721
+ 10405,
+ 10468
],
"loc": {
"start": {
- "line": 256,
+ "line": 248,
"column": 8
},
"end": {
- "line": 256,
+ "line": 248,
"column": 71
}
},
@@ -24122,16 +23475,16 @@
"type": "Line",
"value": "enables/disables non empty option in combo-box filters",
"range": [
- 10593,
- 10649
+ 10340,
+ 10396
],
"loc": {
"start": {
- "line": 255,
+ "line": 247,
"column": 8
},
"end": {
- "line": 255,
+ "line": 247,
"column": 64
}
}
@@ -24142,16 +23495,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10730,
- 10757
+ 10477,
+ 10504
],
"loc": {
"start": {
- "line": 257,
+ "line": 249,
"column": 8
},
"end": {
- "line": 257,
+ "line": 249,
"column": 35
}
}
@@ -24169,16 +23522,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10766,
- 10770
+ 10513,
+ 10517
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 8
},
"end": {
- "line": 258,
+ "line": 250,
"column": 12
}
}
@@ -24187,31 +23540,31 @@
"type": "Identifier",
"name": "nonEmptyText",
"range": [
- 10771,
- 10783
+ 10518,
+ 10530
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 13
},
"end": {
- "line": 258,
+ "line": 250,
"column": 25
}
}
},
"range": [
- 10766,
- 10783
+ 10513,
+ 10530
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 8
},
"end": {
- "line": 258,
+ "line": 250,
"column": 25
}
}
@@ -24226,16 +23579,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10786,
- 10787
+ 10533,
+ 10534
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 28
},
"end": {
- "line": 258,
+ "line": 250,
"column": 29
}
}
@@ -24244,31 +23597,31 @@
"type": "Identifier",
"name": "non_empty_text",
"range": [
- 10788,
- 10802
+ 10535,
+ 10549
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 30
},
"end": {
- "line": 258,
+ "line": 250,
"column": 44
}
}
},
"range": [
- 10786,
- 10802
+ 10533,
+ 10549
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 28
},
"end": {
- "line": 258,
+ "line": 250,
"column": 44
}
}
@@ -24278,61 +23631,61 @@
"value": "(Non empty)",
"raw": "'(Non empty)'",
"range": [
- 10806,
- 10819
+ 10553,
+ 10566
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 48
},
"end": {
- "line": 258,
+ "line": 250,
"column": 61
}
}
},
"range": [
- 10786,
- 10819
+ 10533,
+ 10566
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 28
},
"end": {
- "line": 258,
+ "line": 250,
"column": 61
}
}
},
"range": [
- 10766,
- 10819
+ 10513,
+ 10566
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 8
},
"end": {
- "line": 258,
+ "line": 250,
"column": 61
}
}
},
"range": [
- 10766,
- 10820
+ 10513,
+ 10567
],
"loc": {
"start": {
- "line": 258,
+ "line": 250,
"column": 8
},
"end": {
- "line": 258,
+ "line": 250,
"column": 62
}
},
@@ -24341,16 +23694,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10730,
- 10757
+ 10477,
+ 10504
],
"loc": {
"start": {
- "line": 257,
+ "line": 249,
"column": 8
},
"end": {
- "line": 257,
+ "line": 249,
"column": 35
}
}
@@ -24361,16 +23714,16 @@
"type": "Line",
"value": "enables/disables onChange event on combo-box",
"range": [
- 10829,
- 10875
+ 10576,
+ 10622
],
"loc": {
"start": {
- "line": 259,
+ "line": 251,
"column": 8
},
"end": {
- "line": 259,
+ "line": 251,
"column": 54
}
}
@@ -24388,16 +23741,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10884,
- 10888
+ 10631,
+ 10635
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 8
},
"end": {
- "line": 260,
+ "line": 252,
"column": 12
}
}
@@ -24406,31 +23759,31 @@
"type": "Identifier",
"name": "onSlcChange",
"range": [
- 10889,
- 10900
+ 10636,
+ 10647
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 13
},
"end": {
- "line": 260,
+ "line": 252,
"column": 24
}
}
},
"range": [
- 10884,
- 10900
+ 10631,
+ 10647
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 8
},
"end": {
- "line": 260,
+ "line": 252,
"column": 24
}
}
@@ -24447,16 +23800,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 10903,
- 10904
+ 10650,
+ 10651
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 27
},
"end": {
- "line": 260,
+ "line": 252,
"column": 28
}
}
@@ -24465,31 +23818,31 @@
"type": "Identifier",
"name": "on_change",
"range": [
- 10905,
- 10914
+ 10652,
+ 10661
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 29
},
"end": {
- "line": 260,
+ "line": 252,
"column": 38
}
}
},
"range": [
- 10903,
- 10914
+ 10650,
+ 10661
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 27
},
"end": {
- "line": 260,
+ "line": 252,
"column": 38
}
}
@@ -24499,31 +23852,31 @@
"value": false,
"raw": "false",
"range": [
- 10917,
- 10922
+ 10664,
+ 10669
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 41
},
"end": {
- "line": 260,
+ "line": 252,
"column": 46
}
}
},
"range": [
- 10903,
- 10922
+ 10650,
+ 10669
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 27
},
"end": {
- "line": 260,
+ "line": 252,
"column": 46
}
}
@@ -24533,16 +23886,16 @@
"value": false,
"raw": "false",
"range": [
- 10925,
- 10930
+ 10672,
+ 10677
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 49
},
"end": {
- "line": 260,
+ "line": 252,
"column": 54
}
}
@@ -24552,61 +23905,61 @@
"value": true,
"raw": "true",
"range": [
- 10933,
- 10937
+ 10680,
+ 10684
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 57
},
"end": {
- "line": 260,
+ "line": 252,
"column": 61
}
}
},
"range": [
- 10903,
- 10937
+ 10650,
+ 10684
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 27
},
"end": {
- "line": 260,
+ "line": 252,
"column": 61
}
}
},
"range": [
- 10884,
- 10937
+ 10631,
+ 10684
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 8
},
"end": {
- "line": 260,
+ "line": 252,
"column": 61
}
}
},
"range": [
- 10884,
- 10938
+ 10631,
+ 10685
],
"loc": {
"start": {
- "line": 260,
+ "line": 252,
"column": 8
},
"end": {
- "line": 260,
+ "line": 252,
"column": 62
}
},
@@ -24615,16 +23968,16 @@
"type": "Line",
"value": "enables/disables onChange event on combo-box",
"range": [
- 10829,
- 10875
+ 10576,
+ 10622
],
"loc": {
"start": {
- "line": 259,
+ "line": 251,
"column": 8
},
"end": {
- "line": 259,
+ "line": 251,
"column": 54
}
}
@@ -24635,16 +23988,16 @@
"type": "Line",
"value": "enables/disables select options sorting",
"range": [
- 10947,
- 10988
+ 10694,
+ 10735
],
"loc": {
"start": {
- "line": 261,
+ "line": 253,
"column": 8
},
"end": {
- "line": 261,
+ "line": 253,
"column": 49
}
}
@@ -24662,16 +24015,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 10997,
- 11001
+ 10744,
+ 10748
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 8
},
"end": {
- "line": 262,
+ "line": 254,
"column": 12
}
}
@@ -24680,31 +24033,31 @@
"type": "Identifier",
"name": "sortSlc",
"range": [
- 11002,
- 11009
+ 10749,
+ 10756
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 13
},
"end": {
- "line": 262,
+ "line": 254,
"column": 20
}
}
},
"range": [
- 10997,
- 11009
+ 10744,
+ 10756
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 8
},
"end": {
- "line": 262,
+ "line": 254,
"column": 20
}
}
@@ -24721,16 +24074,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11012,
- 11013
+ 10759,
+ 10760
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 23
},
"end": {
- "line": 262,
+ "line": 254,
"column": 24
}
}
@@ -24739,31 +24092,31 @@
"type": "Identifier",
"name": "sort_select",
"range": [
- 11014,
- 11025
+ 10761,
+ 10772
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 25
},
"end": {
- "line": 262,
+ "line": 254,
"column": 36
}
}
},
"range": [
- 11012,
- 11025
+ 10759,
+ 10772
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 23
},
"end": {
- "line": 262,
+ "line": 254,
"column": 36
}
}
@@ -24773,31 +24126,31 @@
"value": false,
"raw": "false",
"range": [
- 11028,
- 11033
+ 10775,
+ 10780
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 39
},
"end": {
- "line": 262,
+ "line": 254,
"column": 44
}
}
},
"range": [
- 11012,
- 11033
+ 10759,
+ 10780
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 23
},
"end": {
- "line": 262,
+ "line": 254,
"column": 44
}
}
@@ -24807,16 +24160,16 @@
"value": false,
"raw": "false",
"range": [
- 11036,
- 11041
+ 10783,
+ 10788
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 47
},
"end": {
- "line": 262,
+ "line": 254,
"column": 52
}
}
@@ -24826,61 +24179,61 @@
"value": true,
"raw": "true",
"range": [
- 11044,
- 11048
+ 10791,
+ 10795
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 55
},
"end": {
- "line": 262,
+ "line": 254,
"column": 59
}
}
},
"range": [
- 11012,
- 11048
+ 10759,
+ 10795
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 23
},
"end": {
- "line": 262,
+ "line": 254,
"column": 59
}
}
},
"range": [
- 10997,
- 11048
+ 10744,
+ 10795
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 8
},
"end": {
- "line": 262,
+ "line": 254,
"column": 59
}
}
},
"range": [
- 10997,
- 11049
+ 10744,
+ 10796
],
"loc": {
"start": {
- "line": 262,
+ "line": 254,
"column": 8
},
"end": {
- "line": 262,
+ "line": 254,
"column": 60
}
},
@@ -24889,16 +24242,16 @@
"type": "Line",
"value": "enables/disables select options sorting",
"range": [
- 10947,
- 10988
+ 10694,
+ 10735
],
"loc": {
"start": {
- "line": 261,
+ "line": 253,
"column": 8
},
"end": {
- "line": 261,
+ "line": 253,
"column": 49
}
}
@@ -24909,16 +24262,16 @@
"type": "Line",
"value": "enables/disables ascending numeric options sorting",
"range": [
- 11058,
- 11110
+ 10805,
+ 10857
],
"loc": {
"start": {
- "line": 263,
+ "line": 255,
"column": 8
},
"end": {
- "line": 263,
+ "line": 255,
"column": 60
}
}
@@ -24936,16 +24289,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11119,
- 11123
+ 10866,
+ 10870
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 8
},
"end": {
- "line": 264,
+ "line": 256,
"column": 12
}
}
@@ -24954,31 +24307,31 @@
"type": "Identifier",
"name": "isSortNumAsc",
"range": [
- 11124,
- 11136
+ 10871,
+ 10883
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 13
},
"end": {
- "line": 264,
+ "line": 256,
"column": 25
}
}
},
"range": [
- 11119,
- 11136
+ 10866,
+ 10883
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 8
},
"end": {
- "line": 264,
+ "line": 256,
"column": 25
}
}
@@ -24989,16 +24342,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 11139,
- 11146
+ 10886,
+ 10893
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 28
},
"end": {
- "line": 264,
+ "line": 256,
"column": 35
}
}
@@ -25011,16 +24364,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11147,
- 11148
+ 10894,
+ 10895
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 36
},
"end": {
- "line": 264,
+ "line": 256,
"column": 37
}
}
@@ -25029,77 +24382,77 @@
"type": "Identifier",
"name": "sort_num_asc",
"range": [
- 11149,
- 11161
+ 10896,
+ 10908
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 38
},
"end": {
- "line": 264,
+ "line": 256,
"column": 50
}
}
},
"range": [
- 11147,
- 11161
+ 10894,
+ 10908
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 36
},
"end": {
- "line": 264,
+ "line": 256,
"column": 50
}
}
}
],
"range": [
- 11139,
- 11162
+ 10886,
+ 10909
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 28
},
"end": {
- "line": 264,
+ "line": 256,
"column": 51
}
}
},
"range": [
- 11119,
- 11162
+ 10866,
+ 10909
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 8
},
"end": {
- "line": 264,
+ "line": 256,
"column": 51
}
}
},
"range": [
- 11119,
- 11163
+ 10866,
+ 10910
],
"loc": {
"start": {
- "line": 264,
+ "line": 256,
"column": 8
},
"end": {
- "line": 264,
+ "line": 256,
"column": 52
}
},
@@ -25108,16 +24461,16 @@
"type": "Line",
"value": "enables/disables ascending numeric options sorting",
"range": [
- 11058,
- 11110
+ 10805,
+ 10857
],
"loc": {
"start": {
- "line": 263,
+ "line": 255,
"column": 8
},
"end": {
- "line": 263,
+ "line": 255,
"column": 60
}
}
@@ -25135,16 +24488,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11172,
- 11176
+ 10919,
+ 10923
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 8
},
"end": {
- "line": 265,
+ "line": 257,
"column": 12
}
}
@@ -25153,31 +24506,31 @@
"type": "Identifier",
"name": "sortNumAsc",
"range": [
- 11177,
- 11187
+ 10924,
+ 10934
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 13
},
"end": {
- "line": 265,
+ "line": 257,
"column": 23
}
}
},
"range": [
- 11172,
- 11187
+ 10919,
+ 10934
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 8
},
"end": {
- "line": 265,
+ "line": 257,
"column": 23
}
}
@@ -25190,16 +24543,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11190,
- 11194
+ 10937,
+ 10941
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 26
},
"end": {
- "line": 265,
+ "line": 257,
"column": 30
}
}
@@ -25208,31 +24561,31 @@
"type": "Identifier",
"name": "isSortNumAsc",
"range": [
- 11195,
- 11207
+ 10942,
+ 10954
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 31
},
"end": {
- "line": 265,
+ "line": 257,
"column": 43
}
}
},
"range": [
- 11190,
- 11207
+ 10937,
+ 10954
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 26
},
"end": {
- "line": 265,
+ "line": 257,
"column": 43
}
}
@@ -25244,16 +24597,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11210,
- 11211
+ 10957,
+ 10958
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 46
},
"end": {
- "line": 265,
+ "line": 257,
"column": 47
}
}
@@ -25262,31 +24615,31 @@
"type": "Identifier",
"name": "sort_num_asc",
"range": [
- 11212,
- 11224
+ 10959,
+ 10971
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 48
},
"end": {
- "line": 265,
+ "line": 257,
"column": 60
}
}
},
"range": [
- 11210,
- 11224
+ 10957,
+ 10971
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 46
},
"end": {
- "line": 265,
+ "line": 257,
"column": 60
}
}
@@ -25296,61 +24649,61 @@
"value": null,
"raw": "null",
"range": [
- 11227,
- 11231
+ 10974,
+ 10978
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 63
},
"end": {
- "line": 265,
+ "line": 257,
"column": 67
}
}
},
"range": [
- 11190,
- 11231
+ 10937,
+ 10978
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 26
},
"end": {
- "line": 265,
+ "line": 257,
"column": 67
}
}
},
"range": [
- 11172,
- 11231
+ 10919,
+ 10978
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 8
},
"end": {
- "line": 265,
+ "line": 257,
"column": 67
}
}
},
"range": [
- 11172,
- 11232
+ 10919,
+ 10979
],
"loc": {
"start": {
- "line": 265,
+ "line": 257,
"column": 8
},
"end": {
- "line": 265,
+ "line": 257,
"column": 68
}
},
@@ -25359,16 +24712,16 @@
"type": "Line",
"value": "enables/disables descending numeric options sorting",
"range": [
- 11241,
- 11294
+ 10988,
+ 11041
],
"loc": {
"start": {
- "line": 266,
+ "line": 258,
"column": 8
},
"end": {
- "line": 266,
+ "line": 258,
"column": 61
}
}
@@ -25386,16 +24739,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11303,
- 11307
+ 11050,
+ 11054
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 8
},
"end": {
- "line": 267,
+ "line": 259,
"column": 12
}
}
@@ -25404,31 +24757,31 @@
"type": "Identifier",
"name": "isSortNumDesc",
"range": [
- 11308,
- 11321
+ 11055,
+ 11068
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 13
},
"end": {
- "line": 267,
+ "line": 259,
"column": 26
}
}
},
"range": [
- 11303,
- 11321
+ 11050,
+ 11068
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 8
},
"end": {
- "line": 267,
+ "line": 259,
"column": 26
}
}
@@ -25439,16 +24792,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 11324,
- 11331
+ 11071,
+ 11078
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 29
},
"end": {
- "line": 267,
+ "line": 259,
"column": 36
}
}
@@ -25461,16 +24814,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11332,
- 11333
+ 11079,
+ 11080
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 37
},
"end": {
- "line": 267,
+ "line": 259,
"column": 38
}
}
@@ -25479,77 +24832,77 @@
"type": "Identifier",
"name": "sort_num_desc",
"range": [
- 11334,
- 11347
+ 11081,
+ 11094
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 39
},
"end": {
- "line": 267,
+ "line": 259,
"column": 52
}
}
},
"range": [
- 11332,
- 11347
+ 11079,
+ 11094
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 37
},
"end": {
- "line": 267,
+ "line": 259,
"column": 52
}
}
}
],
"range": [
- 11324,
- 11348
+ 11071,
+ 11095
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 29
},
"end": {
- "line": 267,
+ "line": 259,
"column": 53
}
}
},
"range": [
- 11303,
- 11348
+ 11050,
+ 11095
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 8
},
"end": {
- "line": 267,
+ "line": 259,
"column": 53
}
}
},
"range": [
- 11303,
- 11349
+ 11050,
+ 11096
],
"loc": {
"start": {
- "line": 267,
+ "line": 259,
"column": 8
},
"end": {
- "line": 267,
+ "line": 259,
"column": 54
}
},
@@ -25558,16 +24911,16 @@
"type": "Line",
"value": "enables/disables descending numeric options sorting",
"range": [
- 11241,
- 11294
+ 10988,
+ 11041
],
"loc": {
"start": {
- "line": 266,
+ "line": 258,
"column": 8
},
"end": {
- "line": 266,
+ "line": 258,
"column": 61
}
}
@@ -25585,16 +24938,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11358,
- 11362
+ 11105,
+ 11109
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 8
},
"end": {
- "line": 268,
+ "line": 260,
"column": 12
}
}
@@ -25603,31 +24956,31 @@
"type": "Identifier",
"name": "sortNumDesc",
"range": [
- 11363,
- 11374
+ 11110,
+ 11121
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 13
},
"end": {
- "line": 268,
+ "line": 260,
"column": 24
}
}
},
"range": [
- 11358,
- 11374
+ 11105,
+ 11121
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 8
},
"end": {
- "line": 268,
+ "line": 260,
"column": 24
}
}
@@ -25640,16 +24993,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11377,
- 11381
+ 11124,
+ 11128
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 27
},
"end": {
- "line": 268,
+ "line": 260,
"column": 31
}
}
@@ -25658,31 +25011,31 @@
"type": "Identifier",
"name": "isSortNumDesc",
"range": [
- 11382,
- 11395
+ 11129,
+ 11142
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 32
},
"end": {
- "line": 268,
+ "line": 260,
"column": 45
}
}
},
"range": [
- 11377,
- 11395
+ 11124,
+ 11142
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 27
},
"end": {
- "line": 268,
+ "line": 260,
"column": 45
}
}
@@ -25694,16 +25047,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11398,
- 11399
+ 11145,
+ 11146
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 48
},
"end": {
- "line": 268,
+ "line": 260,
"column": 49
}
}
@@ -25712,31 +25065,31 @@
"type": "Identifier",
"name": "sort_num_desc",
"range": [
- 11400,
- 11413
+ 11147,
+ 11160
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 50
},
"end": {
- "line": 268,
+ "line": 260,
"column": 63
}
}
},
"range": [
- 11398,
- 11413
+ 11145,
+ 11160
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 48
},
"end": {
- "line": 268,
+ "line": 260,
"column": 63
}
}
@@ -25746,61 +25099,61 @@
"value": null,
"raw": "null",
"range": [
- 11416,
- 11420
+ 11163,
+ 11167
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 66
},
"end": {
- "line": 268,
+ "line": 260,
"column": 70
}
}
},
"range": [
- 11377,
- 11420
+ 11124,
+ 11167
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 27
},
"end": {
- "line": 268,
+ "line": 260,
"column": 70
}
}
},
"range": [
- 11358,
- 11420
+ 11105,
+ 11167
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 8
},
"end": {
- "line": 268,
+ "line": 260,
"column": 70
}
}
},
"range": [
- 11358,
- 11421
+ 11105,
+ 11168
],
"loc": {
"start": {
- "line": 268,
+ "line": 260,
"column": 8
},
"end": {
- "line": 268,
+ "line": 260,
"column": 71
}
},
@@ -25809,16 +25162,16 @@
"type": "Line",
"value": "Select filters are populated on demand",
"range": [
- 11430,
- 11470
+ 11177,
+ 11217
],
"loc": {
"start": {
- "line": 269,
+ "line": 261,
"column": 8
},
"end": {
- "line": 269,
+ "line": 261,
"column": 48
}
}
@@ -25836,16 +25189,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11479,
- 11483
+ 11226,
+ 11230
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 8
},
"end": {
- "line": 270,
+ "line": 262,
"column": 12
}
}
@@ -25854,31 +25207,31 @@
"type": "Identifier",
"name": "loadFltOnDemand",
"range": [
- 11484,
- 11499
+ 11231,
+ 11246
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 13
},
"end": {
- "line": 270,
+ "line": 262,
"column": 28
}
}
},
"range": [
- 11479,
- 11499
+ 11226,
+ 11246
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 8
},
"end": {
- "line": 270,
+ "line": 262,
"column": 28
}
}
@@ -25889,16 +25242,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 11502,
- 11509
+ 11249,
+ 11256
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 31
},
"end": {
- "line": 270,
+ "line": 262,
"column": 38
}
}
@@ -25911,16 +25264,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11510,
- 11511
+ 11257,
+ 11258
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 39
},
"end": {
- "line": 270,
+ "line": 262,
"column": 40
}
}
@@ -25929,77 +25282,77 @@
"type": "Identifier",
"name": "load_filters_on_demand",
"range": [
- 11512,
- 11534
+ 11259,
+ 11281
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 41
},
"end": {
- "line": 270,
+ "line": 262,
"column": 63
}
}
},
"range": [
- 11510,
- 11534
+ 11257,
+ 11281
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 39
},
"end": {
- "line": 270,
+ "line": 262,
"column": 63
}
}
}
],
"range": [
- 11502,
- 11535
+ 11249,
+ 11282
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 31
},
"end": {
- "line": 270,
+ "line": 262,
"column": 64
}
}
},
"range": [
- 11479,
- 11535
+ 11226,
+ 11282
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 8
},
"end": {
- "line": 270,
+ "line": 262,
"column": 64
}
}
},
"range": [
- 11479,
- 11536
+ 11226,
+ 11283
],
"loc": {
"start": {
- "line": 270,
+ "line": 262,
"column": 8
},
"end": {
- "line": 270,
+ "line": 262,
"column": 65
}
},
@@ -26008,16 +25361,16 @@
"type": "Line",
"value": "Select filters are populated on demand",
"range": [
- 11430,
- 11470
+ 11177,
+ 11217
],
"loc": {
"start": {
- "line": 269,
+ "line": 261,
"column": 8
},
"end": {
- "line": 269,
+ "line": 261,
"column": 48
}
}
@@ -26035,16 +25388,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11545,
- 11549
+ 11292,
+ 11296
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 8
},
"end": {
- "line": 271,
+ "line": 263,
"column": 12
}
}
@@ -26053,31 +25406,31 @@
"type": "Identifier",
"name": "hasCustomOptions",
"range": [
- 11550,
- 11566
+ 11297,
+ 11313
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 13
},
"end": {
- "line": 271,
+ "line": 263,
"column": 29
}
}
},
"range": [
- 11545,
- 11566
+ 11292,
+ 11313
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 8
},
"end": {
- "line": 271,
+ "line": 263,
"column": 29
}
}
@@ -26091,16 +25444,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 11569,
- 11574
+ 11316,
+ 11321
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 32
},
"end": {
- "line": 271,
+ "line": 263,
"column": 37
}
}
@@ -26109,31 +25462,31 @@
"type": "Identifier",
"name": "isObj",
"range": [
- 11575,
- 11580
+ 11322,
+ 11327
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 38
},
"end": {
- "line": 271,
+ "line": 263,
"column": 43
}
}
},
"range": [
- 11569,
- 11580
+ 11316,
+ 11327
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 32
},
"end": {
- "line": 271,
+ "line": 263,
"column": 43
}
}
@@ -26146,16 +25499,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11581,
- 11582
+ 11328,
+ 11329
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 44
},
"end": {
- "line": 271,
+ "line": 263,
"column": 45
}
}
@@ -26164,77 +25517,77 @@
"type": "Identifier",
"name": "custom_options",
"range": [
- 11583,
- 11597
+ 11330,
+ 11344
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 46
},
"end": {
- "line": 271,
+ "line": 263,
"column": 60
}
}
},
"range": [
- 11581,
- 11597
+ 11328,
+ 11344
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 44
},
"end": {
- "line": 271,
+ "line": 263,
"column": 60
}
}
}
],
"range": [
- 11569,
- 11598
+ 11316,
+ 11345
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 32
},
"end": {
- "line": 271,
+ "line": 263,
"column": 61
}
}
},
"range": [
- 11545,
- 11598
+ 11292,
+ 11345
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 8
},
"end": {
- "line": 271,
+ "line": 263,
"column": 61
}
}
},
"range": [
- 11545,
- 11599
+ 11292,
+ 11346
],
"loc": {
"start": {
- "line": 271,
+ "line": 263,
"column": 8
},
"end": {
- "line": 271,
+ "line": 263,
"column": 62
}
}
@@ -26250,16 +25603,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11608,
- 11612
+ 11355,
+ 11359
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 8
},
"end": {
- "line": 272,
+ "line": 264,
"column": 12
}
}
@@ -26268,31 +25621,31 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 11613,
- 11626
+ 11360,
+ 11373
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 13
},
"end": {
- "line": 272,
+ "line": 264,
"column": 26
}
}
},
"range": [
- 11608,
- 11626
+ 11355,
+ 11373
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 8
},
"end": {
- "line": 272,
+ "line": 264,
"column": 26
}
}
@@ -26304,16 +25657,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11629,
- 11630
+ 11376,
+ 11377
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 29
},
"end": {
- "line": 272,
+ "line": 264,
"column": 30
}
}
@@ -26322,61 +25675,61 @@
"type": "Identifier",
"name": "custom_options",
"range": [
- 11631,
- 11645
+ 11378,
+ 11392
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 31
},
"end": {
- "line": 272,
+ "line": 264,
"column": 45
}
}
},
"range": [
- 11629,
- 11645
+ 11376,
+ 11392
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 29
},
"end": {
- "line": 272,
+ "line": 264,
"column": 45
}
}
},
"range": [
- 11608,
- 11645
+ 11355,
+ 11392
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 8
},
"end": {
- "line": 272,
+ "line": 264,
"column": 45
}
}
},
"range": [
- 11608,
- 11646
+ 11355,
+ 11393
],
"loc": {
"start": {
- "line": 272,
+ "line": 264,
"column": 8
},
"end": {
- "line": 272,
+ "line": 264,
"column": 46
}
},
@@ -26385,16 +25738,16 @@
"type": "Block",
"value": "** Filter operators **",
"range": [
- 11656,
- 11682
+ 11403,
+ 11429
],
"loc": {
"start": {
- "line": 274,
+ "line": 266,
"column": 8
},
"end": {
- "line": 274,
+ "line": 266,
"column": 34
}
}
@@ -26412,16 +25765,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11691,
- 11695
+ 11438,
+ 11442
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 8
},
"end": {
- "line": 275,
+ "line": 267,
"column": 12
}
}
@@ -26430,31 +25783,31 @@
"type": "Identifier",
"name": "rgxOperator",
"range": [
- 11696,
- 11707
+ 11443,
+ 11454
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 13
},
"end": {
- "line": 275,
+ "line": 267,
"column": 24
}
}
},
"range": [
- 11691,
- 11707
+ 11438,
+ 11454
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 8
},
"end": {
- "line": 275,
+ "line": 267,
"column": 24
}
}
@@ -26469,16 +25822,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11710,
- 11711
+ 11457,
+ 11458
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 27
},
"end": {
- "line": 275,
+ "line": 267,
"column": 28
}
}
@@ -26487,31 +25840,31 @@
"type": "Identifier",
"name": "regexp_operator",
"range": [
- 11712,
- 11727
+ 11459,
+ 11474
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 29
},
"end": {
- "line": 275,
+ "line": 267,
"column": 44
}
}
},
"range": [
- 11710,
- 11727
+ 11457,
+ 11474
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 27
},
"end": {
- "line": 275,
+ "line": 267,
"column": 44
}
}
@@ -26521,61 +25874,61 @@
"value": "rgx:",
"raw": "'rgx:'",
"range": [
- 11731,
- 11737
+ 11478,
+ 11484
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 48
},
"end": {
- "line": 275,
+ "line": 267,
"column": 54
}
}
},
"range": [
- 11710,
- 11737
+ 11457,
+ 11484
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 27
},
"end": {
- "line": 275,
+ "line": 267,
"column": 54
}
}
},
"range": [
- 11691,
- 11737
+ 11438,
+ 11484
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 8
},
"end": {
- "line": 275,
+ "line": 267,
"column": 54
}
}
},
"range": [
- 11691,
- 11738
+ 11438,
+ 11485
],
"loc": {
"start": {
- "line": 275,
+ "line": 267,
"column": 8
},
"end": {
- "line": 275,
+ "line": 267,
"column": 55
}
},
@@ -26584,16 +25937,16 @@
"type": "Block",
"value": "** Filter operators **",
"range": [
- 11656,
- 11682
+ 11403,
+ 11429
],
"loc": {
"start": {
- "line": 274,
+ "line": 266,
"column": 8
},
"end": {
- "line": 274,
+ "line": 266,
"column": 34
}
}
@@ -26611,16 +25964,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11747,
- 11751
+ 11494,
+ 11498
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 8
},
"end": {
- "line": 276,
+ "line": 268,
"column": 12
}
}
@@ -26629,31 +25982,31 @@
"type": "Identifier",
"name": "emOperator",
"range": [
- 11752,
- 11762
+ 11499,
+ 11509
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 13
},
"end": {
- "line": 276,
+ "line": 268,
"column": 23
}
}
},
"range": [
- 11747,
- 11762
+ 11494,
+ 11509
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 8
},
"end": {
- "line": 276,
+ "line": 268,
"column": 23
}
}
@@ -26668,16 +26021,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11765,
- 11766
+ 11512,
+ 11513
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 26
},
"end": {
- "line": 276,
+ "line": 268,
"column": 27
}
}
@@ -26686,31 +26039,31 @@
"type": "Identifier",
"name": "empty_operator",
"range": [
- 11767,
- 11781
+ 11514,
+ 11528
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 28
},
"end": {
- "line": 276,
+ "line": 268,
"column": 42
}
}
},
"range": [
- 11765,
- 11781
+ 11512,
+ 11528
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 26
},
"end": {
- "line": 276,
+ "line": 268,
"column": 42
}
}
@@ -26720,61 +26073,61 @@
"value": "[empty]",
"raw": "'[empty]'",
"range": [
- 11785,
- 11794
+ 11532,
+ 11541
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 46
},
"end": {
- "line": 276,
+ "line": 268,
"column": 55
}
}
},
"range": [
- 11765,
- 11794
+ 11512,
+ 11541
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 26
},
"end": {
- "line": 276,
+ "line": 268,
"column": 55
}
}
},
"range": [
- 11747,
- 11794
+ 11494,
+ 11541
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 8
},
"end": {
- "line": 276,
+ "line": 268,
"column": 55
}
}
},
"range": [
- 11747,
- 11795
+ 11494,
+ 11542
],
"loc": {
"start": {
- "line": 276,
+ "line": 268,
"column": 8
},
"end": {
- "line": 276,
+ "line": 268,
"column": 56
}
}
@@ -26790,16 +26143,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11804,
- 11808
+ 11551,
+ 11555
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 8
},
"end": {
- "line": 277,
+ "line": 269,
"column": 12
}
}
@@ -26808,31 +26161,31 @@
"type": "Identifier",
"name": "nmOperator",
"range": [
- 11809,
- 11819
+ 11556,
+ 11566
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 13
},
"end": {
- "line": 277,
+ "line": 269,
"column": 23
}
}
},
"range": [
- 11804,
- 11819
+ 11551,
+ 11566
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 8
},
"end": {
- "line": 277,
+ "line": 269,
"column": 23
}
}
@@ -26847,16 +26200,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11822,
- 11823
+ 11569,
+ 11570
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 26
},
"end": {
- "line": 277,
+ "line": 269,
"column": 27
}
}
@@ -26865,31 +26218,31 @@
"type": "Identifier",
"name": "nonempty_operator",
"range": [
- 11824,
- 11841
+ 11571,
+ 11588
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 28
},
"end": {
- "line": 277,
+ "line": 269,
"column": 45
}
}
},
"range": [
- 11822,
- 11841
+ 11569,
+ 11588
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 26
},
"end": {
- "line": 277,
+ "line": 269,
"column": 45
}
}
@@ -26899,61 +26252,61 @@
"value": "[nonempty]",
"raw": "'[nonempty]'",
"range": [
- 11845,
- 11857
+ 11592,
+ 11604
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 49
},
"end": {
- "line": 277,
+ "line": 269,
"column": 61
}
}
},
"range": [
- 11822,
- 11857
+ 11569,
+ 11604
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 26
},
"end": {
- "line": 277,
+ "line": 269,
"column": 61
}
}
},
"range": [
- 11804,
- 11857
+ 11551,
+ 11604
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 8
},
"end": {
- "line": 277,
+ "line": 269,
"column": 61
}
}
},
"range": [
- 11804,
- 11858
+ 11551,
+ 11605
],
"loc": {
"start": {
- "line": 277,
+ "line": 269,
"column": 8
},
"end": {
- "line": 277,
+ "line": 269,
"column": 62
}
}
@@ -26969,16 +26322,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11867,
- 11871
+ 11614,
+ 11618
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 8
},
"end": {
- "line": 278,
+ "line": 270,
"column": 12
}
}
@@ -26987,31 +26340,31 @@
"type": "Identifier",
"name": "orOperator",
"range": [
- 11872,
- 11882
+ 11619,
+ 11629
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 13
},
"end": {
- "line": 278,
+ "line": 270,
"column": 23
}
}
},
"range": [
- 11867,
- 11882
+ 11614,
+ 11629
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 8
},
"end": {
- "line": 278,
+ "line": 270,
"column": 23
}
}
@@ -27026,16 +26379,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11885,
- 11886
+ 11632,
+ 11633
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 26
},
"end": {
- "line": 278,
+ "line": 270,
"column": 27
}
}
@@ -27044,31 +26397,31 @@
"type": "Identifier",
"name": "or_operator",
"range": [
- 11887,
- 11898
+ 11634,
+ 11645
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 28
},
"end": {
- "line": 278,
+ "line": 270,
"column": 39
}
}
},
"range": [
- 11885,
- 11898
+ 11632,
+ 11645
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 26
},
"end": {
- "line": 278,
+ "line": 270,
"column": 39
}
}
@@ -27078,61 +26431,61 @@
"value": "||",
"raw": "'||'",
"range": [
- 11902,
- 11906
+ 11649,
+ 11653
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 43
},
"end": {
- "line": 278,
+ "line": 270,
"column": 47
}
}
},
"range": [
- 11885,
- 11906
+ 11632,
+ 11653
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 26
},
"end": {
- "line": 278,
+ "line": 270,
"column": 47
}
}
},
"range": [
- 11867,
- 11906
+ 11614,
+ 11653
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 8
},
"end": {
- "line": 278,
+ "line": 270,
"column": 47
}
}
},
"range": [
- 11867,
- 11907
+ 11614,
+ 11654
],
"loc": {
"start": {
- "line": 278,
+ "line": 270,
"column": 8
},
"end": {
- "line": 278,
+ "line": 270,
"column": 48
}
}
@@ -27148,16 +26501,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11916,
- 11920
+ 11663,
+ 11667
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 8
},
"end": {
- "line": 279,
+ "line": 271,
"column": 12
}
}
@@ -27166,31 +26519,31 @@
"type": "Identifier",
"name": "anOperator",
"range": [
- 11921,
- 11931
+ 11668,
+ 11678
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 13
},
"end": {
- "line": 279,
+ "line": 271,
"column": 23
}
}
},
"range": [
- 11916,
- 11931
+ 11663,
+ 11678
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 8
},
"end": {
- "line": 279,
+ "line": 271,
"column": 23
}
}
@@ -27205,16 +26558,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11934,
- 11935
+ 11681,
+ 11682
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 26
},
"end": {
- "line": 279,
+ "line": 271,
"column": 27
}
}
@@ -27223,31 +26576,31 @@
"type": "Identifier",
"name": "and_operator",
"range": [
- 11936,
- 11948
+ 11683,
+ 11695
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 28
},
"end": {
- "line": 279,
+ "line": 271,
"column": 40
}
}
},
"range": [
- 11934,
- 11948
+ 11681,
+ 11695
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 26
},
"end": {
- "line": 279,
+ "line": 271,
"column": 40
}
}
@@ -27257,61 +26610,61 @@
"value": "&&",
"raw": "'&&'",
"range": [
- 11952,
- 11956
+ 11699,
+ 11703
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 44
},
"end": {
- "line": 279,
+ "line": 271,
"column": 48
}
}
},
"range": [
- 11934,
- 11956
+ 11681,
+ 11703
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 26
},
"end": {
- "line": 279,
+ "line": 271,
"column": 48
}
}
},
"range": [
- 11916,
- 11956
+ 11663,
+ 11703
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 8
},
"end": {
- "line": 279,
+ "line": 271,
"column": 48
}
}
},
"range": [
- 11916,
- 11957
+ 11663,
+ 11704
],
"loc": {
"start": {
- "line": 279,
+ "line": 271,
"column": 8
},
"end": {
- "line": 279,
+ "line": 271,
"column": 49
}
}
@@ -27327,16 +26680,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 11966,
- 11970
+ 11713,
+ 11717
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 8
},
"end": {
- "line": 280,
+ "line": 272,
"column": 12
}
}
@@ -27345,31 +26698,31 @@
"type": "Identifier",
"name": "grOperator",
"range": [
- 11971,
- 11981
+ 11718,
+ 11728
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 13
},
"end": {
- "line": 280,
+ "line": 272,
"column": 23
}
}
},
"range": [
- 11966,
- 11981
+ 11713,
+ 11728
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 8
},
"end": {
- "line": 280,
+ "line": 272,
"column": 23
}
}
@@ -27384,16 +26737,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 11984,
- 11985
+ 11731,
+ 11732
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 26
},
"end": {
- "line": 280,
+ "line": 272,
"column": 27
}
}
@@ -27402,31 +26755,31 @@
"type": "Identifier",
"name": "greater_operator",
"range": [
- 11986,
- 12002
+ 11733,
+ 11749
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 28
},
"end": {
- "line": 280,
+ "line": 272,
"column": 44
}
}
},
"range": [
- 11984,
- 12002
+ 11731,
+ 11749
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 26
},
"end": {
- "line": 280,
+ "line": 272,
"column": 44
}
}
@@ -27436,61 +26789,61 @@
"value": ">",
"raw": "'>'",
"range": [
- 12006,
- 12009
+ 11753,
+ 11756
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 48
},
"end": {
- "line": 280,
+ "line": 272,
"column": 51
}
}
},
"range": [
- 11984,
- 12009
+ 11731,
+ 11756
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 26
},
"end": {
- "line": 280,
+ "line": 272,
"column": 51
}
}
},
"range": [
- 11966,
- 12009
+ 11713,
+ 11756
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 8
},
"end": {
- "line": 280,
+ "line": 272,
"column": 51
}
}
},
"range": [
- 11966,
- 12010
+ 11713,
+ 11757
],
"loc": {
"start": {
- "line": 280,
+ "line": 272,
"column": 8
},
"end": {
- "line": 280,
+ "line": 272,
"column": 52
}
}
@@ -27506,16 +26859,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12019,
- 12023
+ 11766,
+ 11770
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 8
},
"end": {
- "line": 281,
+ "line": 273,
"column": 12
}
}
@@ -27524,31 +26877,31 @@
"type": "Identifier",
"name": "lwOperator",
"range": [
- 12024,
- 12034
+ 11771,
+ 11781
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 13
},
"end": {
- "line": 281,
+ "line": 273,
"column": 23
}
}
},
"range": [
- 12019,
- 12034
+ 11766,
+ 11781
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 8
},
"end": {
- "line": 281,
+ "line": 273,
"column": 23
}
}
@@ -27563,16 +26916,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12037,
- 12038
+ 11784,
+ 11785
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 26
},
"end": {
- "line": 281,
+ "line": 273,
"column": 27
}
}
@@ -27581,31 +26934,31 @@
"type": "Identifier",
"name": "lower_operator",
"range": [
- 12039,
- 12053
+ 11786,
+ 11800
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 28
},
"end": {
- "line": 281,
+ "line": 273,
"column": 42
}
}
},
"range": [
- 12037,
- 12053
+ 11784,
+ 11800
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 26
},
"end": {
- "line": 281,
+ "line": 273,
"column": 42
}
}
@@ -27615,61 +26968,61 @@
"value": "<",
"raw": "'<'",
"range": [
- 12057,
- 12060
+ 11804,
+ 11807
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 46
},
"end": {
- "line": 281,
+ "line": 273,
"column": 49
}
}
},
"range": [
- 12037,
- 12060
+ 11784,
+ 11807
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 26
},
"end": {
- "line": 281,
+ "line": 273,
"column": 49
}
}
},
"range": [
- 12019,
- 12060
+ 11766,
+ 11807
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 8
},
"end": {
- "line": 281,
+ "line": 273,
"column": 49
}
}
},
"range": [
- 12019,
- 12061
+ 11766,
+ 11808
],
"loc": {
"start": {
- "line": 281,
+ "line": 273,
"column": 8
},
"end": {
- "line": 281,
+ "line": 273,
"column": 50
}
}
@@ -27685,16 +27038,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12070,
- 12074
+ 11817,
+ 11821
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 8
},
"end": {
- "line": 282,
+ "line": 274,
"column": 12
}
}
@@ -27703,31 +27056,31 @@
"type": "Identifier",
"name": "leOperator",
"range": [
- 12075,
- 12085
+ 11822,
+ 11832
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 13
},
"end": {
- "line": 282,
+ "line": 274,
"column": 23
}
}
},
"range": [
- 12070,
- 12085
+ 11817,
+ 11832
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 8
},
"end": {
- "line": 282,
+ "line": 274,
"column": 23
}
}
@@ -27742,16 +27095,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12088,
- 12089
+ 11835,
+ 11836
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 26
},
"end": {
- "line": 282,
+ "line": 274,
"column": 27
}
}
@@ -27760,31 +27113,31 @@
"type": "Identifier",
"name": "lower_equal_operator",
"range": [
- 12090,
- 12110
+ 11837,
+ 11857
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 28
},
"end": {
- "line": 282,
+ "line": 274,
"column": 48
}
}
},
"range": [
- 12088,
- 12110
+ 11835,
+ 11857
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 26
},
"end": {
- "line": 282,
+ "line": 274,
"column": 48
}
}
@@ -27794,61 +27147,61 @@
"value": "<=",
"raw": "'<='",
"range": [
- 12114,
- 12118
+ 11861,
+ 11865
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 52
},
"end": {
- "line": 282,
+ "line": 274,
"column": 56
}
}
},
"range": [
- 12088,
- 12118
+ 11835,
+ 11865
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 26
},
"end": {
- "line": 282,
+ "line": 274,
"column": 56
}
}
},
"range": [
- 12070,
- 12118
+ 11817,
+ 11865
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 8
},
"end": {
- "line": 282,
+ "line": 274,
"column": 56
}
}
},
"range": [
- 12070,
- 12119
+ 11817,
+ 11866
],
"loc": {
"start": {
- "line": 282,
+ "line": 274,
"column": 8
},
"end": {
- "line": 282,
+ "line": 274,
"column": 57
}
}
@@ -27864,16 +27217,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12128,
- 12132
+ 11875,
+ 11879
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 8
},
"end": {
- "line": 283,
+ "line": 275,
"column": 12
}
}
@@ -27882,31 +27235,31 @@
"type": "Identifier",
"name": "geOperator",
"range": [
- 12133,
- 12143
+ 11880,
+ 11890
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 13
},
"end": {
- "line": 283,
+ "line": 275,
"column": 23
}
}
},
"range": [
- 12128,
- 12143
+ 11875,
+ 11890
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 8
},
"end": {
- "line": 283,
+ "line": 275,
"column": 23
}
}
@@ -27921,16 +27274,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12146,
- 12147
+ 11893,
+ 11894
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 26
},
"end": {
- "line": 283,
+ "line": 275,
"column": 27
}
}
@@ -27939,31 +27292,31 @@
"type": "Identifier",
"name": "greater_equal_operator",
"range": [
- 12148,
- 12170
+ 11895,
+ 11917
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 28
},
"end": {
- "line": 283,
+ "line": 275,
"column": 50
}
}
},
"range": [
- 12146,
- 12170
+ 11893,
+ 11917
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 26
},
"end": {
- "line": 283,
+ "line": 275,
"column": 50
}
}
@@ -27973,61 +27326,61 @@
"value": ">=",
"raw": "'>='",
"range": [
- 12174,
- 12178
+ 11921,
+ 11925
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 54
},
"end": {
- "line": 283,
+ "line": 275,
"column": 58
}
}
},
"range": [
- 12146,
- 12178
+ 11893,
+ 11925
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 26
},
"end": {
- "line": 283,
+ "line": 275,
"column": 58
}
}
},
"range": [
- 12128,
- 12178
+ 11875,
+ 11925
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 8
},
"end": {
- "line": 283,
+ "line": 275,
"column": 58
}
}
},
"range": [
- 12128,
- 12179
+ 11875,
+ 11926
],
"loc": {
"start": {
- "line": 283,
+ "line": 275,
"column": 8
},
"end": {
- "line": 283,
+ "line": 275,
"column": 59
}
}
@@ -28043,16 +27396,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12188,
- 12192
+ 11935,
+ 11939
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 8
},
"end": {
- "line": 284,
+ "line": 276,
"column": 12
}
}
@@ -28061,31 +27414,31 @@
"type": "Identifier",
"name": "dfOperator",
"range": [
- 12193,
- 12203
+ 11940,
+ 11950
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 13
},
"end": {
- "line": 284,
+ "line": 276,
"column": 23
}
}
},
"range": [
- 12188,
- 12203
+ 11935,
+ 11950
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 8
},
"end": {
- "line": 284,
+ "line": 276,
"column": 23
}
}
@@ -28100,16 +27453,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12206,
- 12207
+ 11953,
+ 11954
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 26
},
"end": {
- "line": 284,
+ "line": 276,
"column": 27
}
}
@@ -28118,31 +27471,31 @@
"type": "Identifier",
"name": "different_operator",
"range": [
- 12208,
- 12226
+ 11955,
+ 11973
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 28
},
"end": {
- "line": 284,
+ "line": 276,
"column": 46
}
}
},
"range": [
- 12206,
- 12226
+ 11953,
+ 11973
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 26
},
"end": {
- "line": 284,
+ "line": 276,
"column": 46
}
}
@@ -28152,61 +27505,61 @@
"value": "!",
"raw": "'!'",
"range": [
- 12230,
- 12233
+ 11977,
+ 11980
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 50
},
"end": {
- "line": 284,
+ "line": 276,
"column": 53
}
}
},
"range": [
- 12206,
- 12233
+ 11953,
+ 11980
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 26
},
"end": {
- "line": 284,
+ "line": 276,
"column": 53
}
}
},
"range": [
- 12188,
- 12233
+ 11935,
+ 11980
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 8
},
"end": {
- "line": 284,
+ "line": 276,
"column": 53
}
}
},
"range": [
- 12188,
- 12234
+ 11935,
+ 11981
],
"loc": {
"start": {
- "line": 284,
+ "line": 276,
"column": 8
},
"end": {
- "line": 284,
+ "line": 276,
"column": 54
}
}
@@ -28222,16 +27575,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12243,
- 12247
+ 11990,
+ 11994
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 8
},
"end": {
- "line": 285,
+ "line": 277,
"column": 12
}
}
@@ -28240,31 +27593,31 @@
"type": "Identifier",
"name": "lkOperator",
"range": [
- 12248,
- 12258
+ 11995,
+ 12005
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 13
},
"end": {
- "line": 285,
+ "line": 277,
"column": 23
}
}
},
"range": [
- 12243,
- 12258
+ 11990,
+ 12005
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 8
},
"end": {
- "line": 285,
+ "line": 277,
"column": 23
}
}
@@ -28279,16 +27632,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12261,
- 12262
+ 12008,
+ 12009
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 26
},
"end": {
- "line": 285,
+ "line": 277,
"column": 27
}
}
@@ -28297,31 +27650,31 @@
"type": "Identifier",
"name": "like_operator",
"range": [
- 12263,
- 12276
+ 12010,
+ 12023
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 28
},
"end": {
- "line": 285,
+ "line": 277,
"column": 41
}
}
},
"range": [
- 12261,
- 12276
+ 12008,
+ 12023
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 26
},
"end": {
- "line": 285,
+ "line": 277,
"column": 41
}
}
@@ -28331,61 +27684,61 @@
"value": "*",
"raw": "'*'",
"range": [
- 12280,
- 12283
+ 12027,
+ 12030
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 45
},
"end": {
- "line": 285,
+ "line": 277,
"column": 48
}
}
},
"range": [
- 12261,
- 12283
+ 12008,
+ 12030
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 26
},
"end": {
- "line": 285,
+ "line": 277,
"column": 48
}
}
},
"range": [
- 12243,
- 12283
+ 11990,
+ 12030
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 8
},
"end": {
- "line": 285,
+ "line": 277,
"column": 48
}
}
},
"range": [
- 12243,
- 12284
+ 11990,
+ 12031
],
"loc": {
"start": {
- "line": 285,
+ "line": 277,
"column": 8
},
"end": {
- "line": 285,
+ "line": 277,
"column": 49
}
}
@@ -28401,16 +27754,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12293,
- 12297
+ 12040,
+ 12044
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 8
},
"end": {
- "line": 286,
+ "line": 278,
"column": 12
}
}
@@ -28419,31 +27772,31 @@
"type": "Identifier",
"name": "eqOperator",
"range": [
- 12298,
- 12308
+ 12045,
+ 12055
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 13
},
"end": {
- "line": 286,
+ "line": 278,
"column": 23
}
}
},
"range": [
- 12293,
- 12308
+ 12040,
+ 12055
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 8
},
"end": {
- "line": 286,
+ "line": 278,
"column": 23
}
}
@@ -28458,16 +27811,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12311,
- 12312
+ 12058,
+ 12059
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 26
},
"end": {
- "line": 286,
+ "line": 278,
"column": 27
}
}
@@ -28476,31 +27829,31 @@
"type": "Identifier",
"name": "equal_operator",
"range": [
- 12313,
- 12327
+ 12060,
+ 12074
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 28
},
"end": {
- "line": 286,
+ "line": 278,
"column": 42
}
}
},
"range": [
- 12311,
- 12327
+ 12058,
+ 12074
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 26
},
"end": {
- "line": 286,
+ "line": 278,
"column": 42
}
}
@@ -28510,61 +27863,61 @@
"value": "=",
"raw": "'='",
"range": [
- 12331,
- 12334
+ 12078,
+ 12081
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 46
},
"end": {
- "line": 286,
+ "line": 278,
"column": 49
}
}
},
"range": [
- 12311,
- 12334
+ 12058,
+ 12081
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 26
},
"end": {
- "line": 286,
+ "line": 278,
"column": 49
}
}
},
"range": [
- 12293,
- 12334
+ 12040,
+ 12081
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 8
},
"end": {
- "line": 286,
+ "line": 278,
"column": 49
}
}
},
"range": [
- 12293,
- 12335
+ 12040,
+ 12082
],
"loc": {
"start": {
- "line": 286,
+ "line": 278,
"column": 8
},
"end": {
- "line": 286,
+ "line": 278,
"column": 50
}
}
@@ -28580,16 +27933,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12344,
- 12348
+ 12091,
+ 12095
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 8
},
"end": {
- "line": 287,
+ "line": 279,
"column": 12
}
}
@@ -28598,31 +27951,31 @@
"type": "Identifier",
"name": "stOperator",
"range": [
- 12349,
- 12359
+ 12096,
+ 12106
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 13
},
"end": {
- "line": 287,
+ "line": 279,
"column": 23
}
}
},
"range": [
- 12344,
- 12359
+ 12091,
+ 12106
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 8
},
"end": {
- "line": 287,
+ "line": 279,
"column": 23
}
}
@@ -28637,16 +27990,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12362,
- 12363
+ 12109,
+ 12110
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 26
},
"end": {
- "line": 287,
+ "line": 279,
"column": 27
}
}
@@ -28655,31 +28008,31 @@
"type": "Identifier",
"name": "start_with_operator",
"range": [
- 12364,
- 12383
+ 12111,
+ 12130
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 28
},
"end": {
- "line": 287,
+ "line": 279,
"column": 47
}
}
},
"range": [
- 12362,
- 12383
+ 12109,
+ 12130
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 26
},
"end": {
- "line": 287,
+ "line": 279,
"column": 47
}
}
@@ -28689,61 +28042,61 @@
"value": "{",
"raw": "'{'",
"range": [
- 12387,
- 12390
+ 12134,
+ 12137
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 51
},
"end": {
- "line": 287,
+ "line": 279,
"column": 54
}
}
},
"range": [
- 12362,
- 12390
+ 12109,
+ 12137
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 26
},
"end": {
- "line": 287,
+ "line": 279,
"column": 54
}
}
},
"range": [
- 12344,
- 12390
+ 12091,
+ 12137
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 8
},
"end": {
- "line": 287,
+ "line": 279,
"column": 54
}
}
},
"range": [
- 12344,
- 12391
+ 12091,
+ 12138
],
"loc": {
"start": {
- "line": 287,
+ "line": 279,
"column": 8
},
"end": {
- "line": 287,
+ "line": 279,
"column": 55
}
}
@@ -28759,16 +28112,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12400,
- 12404
+ 12147,
+ 12151
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 8
},
"end": {
- "line": 288,
+ "line": 280,
"column": 12
}
}
@@ -28777,31 +28130,31 @@
"type": "Identifier",
"name": "enOperator",
"range": [
- 12405,
- 12415
+ 12152,
+ 12162
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 13
},
"end": {
- "line": 288,
+ "line": 280,
"column": 23
}
}
},
"range": [
- 12400,
- 12415
+ 12147,
+ 12162
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 8
},
"end": {
- "line": 288,
+ "line": 280,
"column": 23
}
}
@@ -28816,16 +28169,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12418,
- 12419
+ 12165,
+ 12166
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 26
},
"end": {
- "line": 288,
+ "line": 280,
"column": 27
}
}
@@ -28834,31 +28187,31 @@
"type": "Identifier",
"name": "end_with_operator",
"range": [
- 12420,
- 12437
+ 12167,
+ 12184
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 28
},
"end": {
- "line": 288,
+ "line": 280,
"column": 45
}
}
},
"range": [
- 12418,
- 12437
+ 12165,
+ 12184
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 26
},
"end": {
- "line": 288,
+ "line": 280,
"column": 45
}
}
@@ -28868,61 +28221,61 @@
"value": "}",
"raw": "'}'",
"range": [
- 12441,
- 12444
+ 12188,
+ 12191
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 49
},
"end": {
- "line": 288,
+ "line": 280,
"column": 52
}
}
},
"range": [
- 12418,
- 12444
+ 12165,
+ 12191
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 26
},
"end": {
- "line": 288,
+ "line": 280,
"column": 52
}
}
},
"range": [
- 12400,
- 12444
+ 12147,
+ 12191
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 8
},
"end": {
- "line": 288,
+ "line": 280,
"column": 52
}
}
},
"range": [
- 12400,
- 12445
+ 12147,
+ 12192
],
"loc": {
"start": {
- "line": 288,
+ "line": 280,
"column": 8
},
"end": {
- "line": 288,
+ "line": 280,
"column": 53
}
}
@@ -28938,16 +28291,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12454,
- 12458
+ 12201,
+ 12205
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 8
},
"end": {
- "line": 289,
+ "line": 281,
"column": 12
}
}
@@ -28956,31 +28309,31 @@
"type": "Identifier",
"name": "curExp",
"range": [
- 12459,
- 12465
+ 12206,
+ 12212
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 13
},
"end": {
- "line": 289,
+ "line": 281,
"column": 19
}
}
},
"range": [
- 12454,
- 12465
+ 12201,
+ 12212
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 8
},
"end": {
- "line": 289,
+ "line": 281,
"column": 19
}
}
@@ -28995,16 +28348,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12468,
- 12469
+ 12215,
+ 12216
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 22
},
"end": {
- "line": 289,
+ "line": 281,
"column": 23
}
}
@@ -29013,31 +28366,31 @@
"type": "Identifier",
"name": "cur_exp",
"range": [
- 12470,
- 12477
+ 12217,
+ 12224
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 24
},
"end": {
- "line": 289,
+ "line": 281,
"column": 31
}
}
},
"range": [
- 12468,
- 12477
+ 12215,
+ 12224
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 22
},
"end": {
- "line": 289,
+ "line": 281,
"column": 31
}
}
@@ -29047,61 +28400,61 @@
"value": "^[¥£€$]",
"raw": "'^[¥£€$]'",
"range": [
- 12481,
- 12490
+ 12228,
+ 12237
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 35
},
"end": {
- "line": 289,
+ "line": 281,
"column": 44
}
}
},
"range": [
- 12468,
- 12490
+ 12215,
+ 12237
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 22
},
"end": {
- "line": 289,
+ "line": 281,
"column": 44
}
}
},
"range": [
- 12454,
- 12490
+ 12201,
+ 12237
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 8
},
"end": {
- "line": 289,
+ "line": 281,
"column": 44
}
}
},
"range": [
- 12454,
- 12491
+ 12201,
+ 12238
],
"loc": {
"start": {
- "line": 289,
+ "line": 281,
"column": 8
},
"end": {
- "line": 289,
+ "line": 281,
"column": 45
}
}
@@ -29117,16 +28470,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12500,
- 12504
+ 12247,
+ 12251
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 8
},
"end": {
- "line": 290,
+ "line": 282,
"column": 12
}
}
@@ -29135,31 +28488,31 @@
"type": "Identifier",
"name": "separator",
"range": [
- 12505,
- 12514
+ 12252,
+ 12261
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 13
},
"end": {
- "line": 290,
+ "line": 282,
"column": 22
}
}
},
"range": [
- 12500,
- 12514
+ 12247,
+ 12261
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 8
},
"end": {
- "line": 290,
+ "line": 282,
"column": 22
}
}
@@ -29174,16 +28527,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12517,
- 12518
+ 12264,
+ 12265
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 25
},
"end": {
- "line": 290,
+ "line": 282,
"column": 26
}
}
@@ -29192,31 +28545,31 @@
"type": "Identifier",
"name": "separator",
"range": [
- 12519,
- 12528
+ 12266,
+ 12275
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 27
},
"end": {
- "line": 290,
+ "line": 282,
"column": 36
}
}
},
"range": [
- 12517,
- 12528
+ 12264,
+ 12275
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 25
},
"end": {
- "line": 290,
+ "line": 282,
"column": 36
}
}
@@ -29226,61 +28579,61 @@
"value": ",",
"raw": "','",
"range": [
- 12532,
- 12535
+ 12279,
+ 12282
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 40
},
"end": {
- "line": 290,
+ "line": 282,
"column": 43
}
}
},
"range": [
- 12517,
- 12535
+ 12264,
+ 12282
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 25
},
"end": {
- "line": 290,
+ "line": 282,
"column": 43
}
}
},
"range": [
- 12500,
- 12535
+ 12247,
+ 12282
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 8
},
"end": {
- "line": 290,
+ "line": 282,
"column": 43
}
}
},
"range": [
- 12500,
- 12536
+ 12247,
+ 12283
],
"loc": {
"start": {
- "line": 290,
+ "line": 282,
"column": 8
},
"end": {
- "line": 290,
+ "line": 282,
"column": 44
}
},
@@ -29289,16 +28642,16 @@
"type": "Block",
"value": "** rows counter **",
"range": [
- 12546,
- 12568
+ 12293,
+ 12315
],
"loc": {
"start": {
- "line": 292,
+ "line": 284,
"column": 8
},
"end": {
- "line": 292,
+ "line": 284,
"column": 30
}
}
@@ -29307,16 +28660,16 @@
"type": "Line",
"value": "show/hides rows counter",
"range": [
- 12577,
- 12602
+ 12324,
+ 12349
],
"loc": {
"start": {
- "line": 293,
+ "line": 285,
"column": 8
},
"end": {
- "line": 293,
+ "line": 285,
"column": 33
}
}
@@ -29334,16 +28687,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12611,
- 12615
+ 12358,
+ 12362
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 8
},
"end": {
- "line": 294,
+ "line": 286,
"column": 12
}
}
@@ -29352,31 +28705,31 @@
"type": "Identifier",
"name": "rowsCounter",
"range": [
- 12616,
- 12627
+ 12363,
+ 12374
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 13
},
"end": {
- "line": 294,
+ "line": 286,
"column": 24
}
}
},
"range": [
- 12611,
- 12627
+ 12358,
+ 12374
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 8
},
"end": {
- "line": 294,
+ "line": 286,
"column": 24
}
}
@@ -29387,16 +28740,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 12630,
- 12637
+ 12377,
+ 12384
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 27
},
"end": {
- "line": 294,
+ "line": 286,
"column": 34
}
}
@@ -29409,16 +28762,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12638,
- 12639
+ 12385,
+ 12386
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 35
},
"end": {
- "line": 294,
+ "line": 286,
"column": 36
}
}
@@ -29427,77 +28780,77 @@
"type": "Identifier",
"name": "rows_counter",
"range": [
- 12640,
- 12652
+ 12387,
+ 12399
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 37
},
"end": {
- "line": 294,
+ "line": 286,
"column": 49
}
}
},
"range": [
- 12638,
- 12652
+ 12385,
+ 12399
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 35
},
"end": {
- "line": 294,
+ "line": 286,
"column": 49
}
}
}
],
"range": [
- 12630,
- 12653
+ 12377,
+ 12400
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 27
},
"end": {
- "line": 294,
+ "line": 286,
"column": 50
}
}
},
"range": [
- 12611,
- 12653
+ 12358,
+ 12400
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 8
},
"end": {
- "line": 294,
+ "line": 286,
"column": 50
}
}
},
"range": [
- 12611,
- 12654
+ 12358,
+ 12401
],
"loc": {
"start": {
- "line": 294,
+ "line": 286,
"column": 8
},
"end": {
- "line": 294,
+ "line": 286,
"column": 51
}
},
@@ -29506,16 +28859,16 @@
"type": "Block",
"value": "** rows counter **",
"range": [
- 12546,
- 12568
+ 12293,
+ 12315
],
"loc": {
"start": {
- "line": 292,
+ "line": 284,
"column": 8
},
"end": {
- "line": 292,
+ "line": 284,
"column": 30
}
}
@@ -29524,16 +28877,16 @@
"type": "Line",
"value": "show/hides rows counter",
"range": [
- 12577,
- 12602
+ 12324,
+ 12349
],
"loc": {
"start": {
- "line": 293,
+ "line": 285,
"column": 8
},
"end": {
- "line": 293,
+ "line": 285,
"column": 33
}
}
@@ -29544,16 +28897,16 @@
"type": "Block",
"value": "** status bar **",
"range": [
- 12664,
- 12684
+ 12411,
+ 12431
],
"loc": {
"start": {
- "line": 296,
+ "line": 288,
"column": 8
},
"end": {
- "line": 296,
+ "line": 288,
"column": 28
}
}
@@ -29562,16 +28915,16 @@
"type": "Line",
"value": "show/hides status bar",
"range": [
- 12693,
- 12716
+ 12440,
+ 12463
],
"loc": {
"start": {
- "line": 297,
+ "line": 289,
"column": 8
},
"end": {
- "line": 297,
+ "line": 289,
"column": 31
}
}
@@ -29589,16 +28942,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12725,
- 12729
+ 12472,
+ 12476
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 8
},
"end": {
- "line": 298,
+ "line": 290,
"column": 12
}
}
@@ -29607,31 +28960,31 @@
"type": "Identifier",
"name": "statusBar",
"range": [
- 12730,
- 12739
+ 12477,
+ 12486
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 13
},
"end": {
- "line": 298,
+ "line": 290,
"column": 22
}
}
},
"range": [
- 12725,
- 12739
+ 12472,
+ 12486
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 8
},
"end": {
- "line": 298,
+ "line": 290,
"column": 22
}
}
@@ -29642,16 +28995,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 12742,
- 12749
+ 12489,
+ 12496
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 25
},
"end": {
- "line": 298,
+ "line": 290,
"column": 32
}
}
@@ -29664,16 +29017,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12750,
- 12751
+ 12497,
+ 12498
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 33
},
"end": {
- "line": 298,
+ "line": 290,
"column": 34
}
}
@@ -29682,77 +29035,77 @@
"type": "Identifier",
"name": "status_bar",
"range": [
- 12752,
- 12762
+ 12499,
+ 12509
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 35
},
"end": {
- "line": 298,
+ "line": 290,
"column": 45
}
}
},
"range": [
- 12750,
- 12762
+ 12497,
+ 12509
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 33
},
"end": {
- "line": 298,
+ "line": 290,
"column": 45
}
}
}
],
"range": [
- 12742,
- 12763
+ 12489,
+ 12510
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 25
},
"end": {
- "line": 298,
+ "line": 290,
"column": 46
}
}
},
"range": [
- 12725,
- 12763
+ 12472,
+ 12510
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 8
},
"end": {
- "line": 298,
+ "line": 290,
"column": 46
}
}
},
"range": [
- 12725,
- 12764
+ 12472,
+ 12511
],
"loc": {
"start": {
- "line": 298,
+ "line": 290,
"column": 8
},
"end": {
- "line": 298,
+ "line": 290,
"column": 47
}
},
@@ -29761,16 +29114,16 @@
"type": "Block",
"value": "** status bar **",
"range": [
- 12664,
- 12684
+ 12411,
+ 12431
],
"loc": {
"start": {
- "line": 296,
+ "line": 288,
"column": 8
},
"end": {
- "line": 296,
+ "line": 288,
"column": 28
}
}
@@ -29779,16 +29132,16 @@
"type": "Line",
"value": "show/hides status bar",
"range": [
- 12693,
- 12716
+ 12440,
+ 12463
],
"loc": {
"start": {
- "line": 297,
+ "line": 289,
"column": 8
},
"end": {
- "line": 297,
+ "line": 289,
"column": 31
}
}
@@ -29799,16 +29152,16 @@
"type": "Block",
"value": "** loader **",
"range": [
- 12774,
- 12790
+ 12521,
+ 12537
],
"loc": {
"start": {
- "line": 300,
+ "line": 292,
"column": 8
},
"end": {
- "line": 300,
+ "line": 292,
"column": 24
}
}
@@ -29817,16 +29170,16 @@
"type": "Line",
"value": "enables/disables loader/spinner indicator",
"range": [
- 12799,
- 12842
+ 12546,
+ 12589
],
"loc": {
"start": {
- "line": 301,
+ "line": 293,
"column": 8
},
"end": {
- "line": 301,
+ "line": 293,
"column": 51
}
}
@@ -29844,16 +29197,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12851,
- 12855
+ 12598,
+ 12602
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 8
},
"end": {
- "line": 302,
+ "line": 294,
"column": 12
}
}
@@ -29862,31 +29215,31 @@
"type": "Identifier",
"name": "loader",
"range": [
- 12856,
- 12862
+ 12603,
+ 12609
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 13
},
"end": {
- "line": 302,
+ "line": 294,
"column": 19
}
}
},
"range": [
- 12851,
- 12862
+ 12598,
+ 12609
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 8
},
"end": {
- "line": 302,
+ "line": 294,
"column": 19
}
}
@@ -29897,16 +29250,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 12865,
- 12872
+ 12612,
+ 12619
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 22
},
"end": {
- "line": 302,
+ "line": 294,
"column": 29
}
}
@@ -29919,16 +29272,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 12873,
- 12874
+ 12620,
+ 12621
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 30
},
"end": {
- "line": 302,
+ "line": 294,
"column": 31
}
}
@@ -29937,77 +29290,77 @@
"type": "Identifier",
"name": "loader",
"range": [
- 12875,
- 12881
+ 12622,
+ 12628
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 32
},
"end": {
- "line": 302,
+ "line": 294,
"column": 38
}
}
},
"range": [
- 12873,
- 12881
+ 12620,
+ 12628
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 30
},
"end": {
- "line": 302,
+ "line": 294,
"column": 38
}
}
}
],
"range": [
- 12865,
- 12882
+ 12612,
+ 12629
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 22
},
"end": {
- "line": 302,
+ "line": 294,
"column": 39
}
}
},
"range": [
- 12851,
- 12882
+ 12598,
+ 12629
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 8
},
"end": {
- "line": 302,
+ "line": 294,
"column": 39
}
}
},
"range": [
- 12851,
- 12883
+ 12598,
+ 12630
],
"loc": {
"start": {
- "line": 302,
+ "line": 294,
"column": 8
},
"end": {
- "line": 302,
+ "line": 294,
"column": 40
}
},
@@ -30016,16 +29369,16 @@
"type": "Block",
"value": "** loader **",
"range": [
- 12774,
- 12790
+ 12521,
+ 12537
],
"loc": {
"start": {
- "line": 300,
+ "line": 292,
"column": 8
},
"end": {
- "line": 300,
+ "line": 292,
"column": 24
}
}
@@ -30034,16 +29387,16 @@
"type": "Line",
"value": "enables/disables loader/spinner indicator",
"range": [
- 12799,
- 12842
+ 12546,
+ 12589
],
"loc": {
"start": {
- "line": 301,
+ "line": 293,
"column": 8
},
"end": {
- "line": 301,
+ "line": 293,
"column": 51
}
}
@@ -30054,16 +29407,16 @@
"type": "Block",
"value": "** validation - reset buttons/links **",
"range": [
- 12893,
- 12935
+ 12640,
+ 12682
],
"loc": {
"start": {
- "line": 304,
+ "line": 296,
"column": 8
},
"end": {
- "line": 304,
+ "line": 296,
"column": 50
}
}
@@ -30072,16 +29425,16 @@
"type": "Line",
"value": "show/hides filter's validation button",
"range": [
- 12944,
- 12983
+ 12691,
+ 12730
],
"loc": {
"start": {
- "line": 305,
+ "line": 297,
"column": 8
},
"end": {
- "line": 305,
+ "line": 297,
"column": 47
}
}
@@ -30099,16 +29452,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 12992,
- 12996
+ 12739,
+ 12743
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 8
},
"end": {
- "line": 306,
+ "line": 298,
"column": 12
}
}
@@ -30117,31 +29470,31 @@
"type": "Identifier",
"name": "displayBtn",
"range": [
- 12997,
- 13007
+ 12744,
+ 12754
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 13
},
"end": {
- "line": 306,
+ "line": 298,
"column": 23
}
}
},
"range": [
- 12992,
- 13007
+ 12739,
+ 12754
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 8
},
"end": {
- "line": 306,
+ "line": 298,
"column": 23
}
}
@@ -30152,16 +29505,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 13010,
- 13017
+ 12757,
+ 12764
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 26
},
"end": {
- "line": 306,
+ "line": 298,
"column": 33
}
}
@@ -30174,16 +29527,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13018,
- 13019
+ 12765,
+ 12766
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 34
},
"end": {
- "line": 306,
+ "line": 298,
"column": 35
}
}
@@ -30192,77 +29545,77 @@
"type": "Identifier",
"name": "btn",
"range": [
- 13020,
- 13023
+ 12767,
+ 12770
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 36
},
"end": {
- "line": 306,
+ "line": 298,
"column": 39
}
}
},
"range": [
- 13018,
- 13023
+ 12765,
+ 12770
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 34
},
"end": {
- "line": 306,
+ "line": 298,
"column": 39
}
}
}
],
"range": [
- 13010,
- 13024
+ 12757,
+ 12771
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 26
},
"end": {
- "line": 306,
+ "line": 298,
"column": 40
}
}
},
"range": [
- 12992,
- 13024
+ 12739,
+ 12771
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 8
},
"end": {
- "line": 306,
+ "line": 298,
"column": 40
}
}
},
"range": [
- 12992,
- 13025
+ 12739,
+ 12772
],
"loc": {
"start": {
- "line": 306,
+ "line": 298,
"column": 8
},
"end": {
- "line": 306,
+ "line": 298,
"column": 41
}
},
@@ -30271,16 +29624,16 @@
"type": "Block",
"value": "** validation - reset buttons/links **",
"range": [
- 12893,
- 12935
+ 12640,
+ 12682
],
"loc": {
"start": {
- "line": 304,
+ "line": 296,
"column": 8
},
"end": {
- "line": 304,
+ "line": 296,
"column": 50
}
}
@@ -30289,16 +29642,16 @@
"type": "Line",
"value": "show/hides filter's validation button",
"range": [
- 12944,
- 12983
+ 12691,
+ 12730
],
"loc": {
"start": {
- "line": 305,
+ "line": 297,
"column": 8
},
"end": {
- "line": 305,
+ "line": 297,
"column": 47
}
}
@@ -30309,16 +29662,16 @@
"type": "Line",
"value": "defines validation button text",
"range": [
- 13034,
- 13066
+ 12781,
+ 12813
],
"loc": {
"start": {
- "line": 307,
+ "line": 299,
"column": 8
},
"end": {
- "line": 307,
+ "line": 299,
"column": 40
}
}
@@ -30336,16 +29689,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13075,
- 13079
+ 12822,
+ 12826
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 8
},
"end": {
- "line": 308,
+ "line": 300,
"column": 12
}
}
@@ -30354,31 +29707,31 @@
"type": "Identifier",
"name": "btnText",
"range": [
- 13080,
- 13087
+ 12827,
+ 12834
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 13
},
"end": {
- "line": 308,
+ "line": 300,
"column": 20
}
}
},
"range": [
- 13075,
- 13087
+ 12822,
+ 12834
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 8
},
"end": {
- "line": 308,
+ "line": 300,
"column": 20
}
}
@@ -30393,16 +29746,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13090,
- 13091
+ 12837,
+ 12838
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 23
},
"end": {
- "line": 308,
+ "line": 300,
"column": 24
}
}
@@ -30411,31 +29764,31 @@
"type": "Identifier",
"name": "btn_text",
"range": [
- 13092,
- 13100
+ 12839,
+ 12847
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 25
},
"end": {
- "line": 308,
+ "line": 300,
"column": 33
}
}
},
"range": [
- 13090,
- 13100
+ 12837,
+ 12847
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 23
},
"end": {
- "line": 308,
+ "line": 300,
"column": 33
}
}
@@ -30451,16 +29804,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13106,
- 13110
+ 12853,
+ 12857
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 39
},
"end": {
- "line": 308,
+ "line": 300,
"column": 43
}
}
@@ -30469,47 +29822,47 @@
"type": "Identifier",
"name": "enableIcons",
"range": [
- 13111,
- 13122
+ 12858,
+ 12869
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 44
},
"end": {
- "line": 308,
+ "line": 300,
"column": 55
}
}
},
"range": [
- 13106,
- 13122
+ 12853,
+ 12869
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 39
},
"end": {
- "line": 308,
+ "line": 300,
"column": 55
}
}
},
"prefix": true,
"range": [
- 13105,
- 13122
+ 12852,
+ 12869
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 38
},
"end": {
- "line": 308,
+ "line": 300,
"column": 55
}
}
@@ -30519,16 +29872,16 @@
"value": "Go",
"raw": "'Go'",
"range": [
- 13125,
- 13129
+ 12872,
+ 12876
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 58
},
"end": {
- "line": 308,
+ "line": 300,
"column": 62
}
}
@@ -30538,76 +29891,76 @@
"value": "",
"raw": "''",
"range": [
- 13132,
- 13134
+ 12879,
+ 12881
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 65
},
"end": {
- "line": 308,
+ "line": 300,
"column": 67
}
}
},
"range": [
- 13105,
- 13134
+ 12852,
+ 12881
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 38
},
"end": {
- "line": 308,
+ "line": 300,
"column": 67
}
}
},
"range": [
- 13090,
- 13135
+ 12837,
+ 12882
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 23
},
"end": {
- "line": 308,
+ "line": 300,
"column": 68
}
}
},
"range": [
- 13075,
- 13135
+ 12822,
+ 12882
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 8
},
"end": {
- "line": 308,
+ "line": 300,
"column": 68
}
}
},
"range": [
- 13075,
- 13136
+ 12822,
+ 12883
],
"loc": {
"start": {
- "line": 308,
+ "line": 300,
"column": 8
},
"end": {
- "line": 308,
+ "line": 300,
"column": 69
}
},
@@ -30616,16 +29969,16 @@
"type": "Line",
"value": "defines validation button text",
"range": [
- 13034,
- 13066
+ 12781,
+ 12813
],
"loc": {
"start": {
- "line": 307,
+ "line": 299,
"column": 8
},
"end": {
- "line": 307,
+ "line": 299,
"column": 40
}
}
@@ -30636,16 +29989,16 @@
"type": "Line",
"value": "defines css class for validation button",
"range": [
- 13145,
- 13186
+ 12892,
+ 12933
],
"loc": {
"start": {
- "line": 309,
+ "line": 301,
"column": 8
},
"end": {
- "line": 309,
+ "line": 301,
"column": 49
}
}
@@ -30663,16 +30016,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13195,
- 13199
+ 12942,
+ 12946
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 8
},
"end": {
- "line": 310,
+ "line": 302,
"column": 12
}
}
@@ -30681,31 +30034,31 @@
"type": "Identifier",
"name": "btnCssClass",
"range": [
- 13200,
- 13211
+ 12947,
+ 12958
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 13
},
"end": {
- "line": 310,
+ "line": 302,
"column": 24
}
}
},
"range": [
- 13195,
- 13211
+ 12942,
+ 12958
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 8
},
"end": {
- "line": 310,
+ "line": 302,
"column": 24
}
}
@@ -30720,16 +30073,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13214,
- 13215
+ 12961,
+ 12962
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 27
},
"end": {
- "line": 310,
+ "line": 302,
"column": 28
}
}
@@ -30738,31 +30091,31 @@
"type": "Identifier",
"name": "btn_css_class",
"range": [
- 13216,
- 13229
+ 12963,
+ 12976
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 29
},
"end": {
- "line": 310,
+ "line": 302,
"column": 42
}
}
},
"range": [
- 13214,
- 13229
+ 12961,
+ 12976
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 27
},
"end": {
- "line": 310,
+ "line": 302,
"column": 42
}
}
@@ -30778,16 +30131,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13247,
- 13251
+ 12994,
+ 12998
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 14
},
"end": {
- "line": 311,
+ "line": 303,
"column": 18
}
}
@@ -30796,47 +30149,47 @@
"type": "Identifier",
"name": "enableIcons",
"range": [
- 13252,
- 13263
+ 12999,
+ 13010
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 19
},
"end": {
- "line": 311,
+ "line": 303,
"column": 30
}
}
},
"range": [
- 13247,
- 13263
+ 12994,
+ 13010
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 14
},
"end": {
- "line": 311,
+ "line": 303,
"column": 30
}
}
},
"prefix": true,
"range": [
- 13246,
- 13263
+ 12993,
+ 13010
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 13
},
"end": {
- "line": 311,
+ "line": 303,
"column": 30
}
}
@@ -30846,16 +30199,16 @@
"value": "btnflt",
"raw": "'btnflt'",
"range": [
- 13266,
- 13274
+ 13013,
+ 13021
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 33
},
"end": {
- "line": 311,
+ "line": 303,
"column": 41
}
}
@@ -30865,76 +30218,76 @@
"value": "btnflt_icon",
"raw": "'btnflt_icon'",
"range": [
- 13277,
- 13290
+ 13024,
+ 13037
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 44
},
"end": {
- "line": 311,
+ "line": 303,
"column": 57
}
}
},
"range": [
- 13246,
- 13290
+ 12993,
+ 13037
],
"loc": {
"start": {
- "line": 311,
+ "line": 303,
"column": 13
},
"end": {
- "line": 311,
+ "line": 303,
"column": 57
}
}
},
"range": [
- 13214,
- 13291
+ 12961,
+ 13038
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 27
},
"end": {
- "line": 311,
+ "line": 303,
"column": 58
}
}
},
"range": [
- 13195,
- 13291
+ 12942,
+ 13038
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 8
},
"end": {
- "line": 311,
+ "line": 303,
"column": 58
}
}
},
"range": [
- 13195,
- 13292
+ 12942,
+ 13039
],
"loc": {
"start": {
- "line": 310,
+ "line": 302,
"column": 8
},
"end": {
- "line": 311,
+ "line": 303,
"column": 59
}
},
@@ -30943,16 +30296,16 @@
"type": "Line",
"value": "defines css class for validation button",
"range": [
- 13145,
- 13186
+ 12892,
+ 12933
],
"loc": {
"start": {
- "line": 309,
+ "line": 301,
"column": 8
},
"end": {
- "line": 309,
+ "line": 301,
"column": 49
}
}
@@ -30963,16 +30316,16 @@
"type": "Line",
"value": "show/hides reset link",
"range": [
- 13301,
- 13324
+ 13048,
+ 13071
],
"loc": {
"start": {
- "line": 312,
+ "line": 304,
"column": 8
},
"end": {
- "line": 312,
+ "line": 304,
"column": 31
}
}
@@ -30990,16 +30343,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13333,
- 13337
+ 13080,
+ 13084
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 8
},
"end": {
- "line": 313,
+ "line": 305,
"column": 12
}
}
@@ -31008,31 +30361,31 @@
"type": "Identifier",
"name": "btnReset",
"range": [
- 13338,
- 13346
+ 13085,
+ 13093
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 13
},
"end": {
- "line": 313,
+ "line": 305,
"column": 21
}
}
},
"range": [
- 13333,
- 13346
+ 13080,
+ 13093
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 8
},
"end": {
- "line": 313,
+ "line": 305,
"column": 21
}
}
@@ -31043,16 +30396,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 13349,
- 13356
+ 13096,
+ 13103
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 24
},
"end": {
- "line": 313,
+ "line": 305,
"column": 31
}
}
@@ -31065,16 +30418,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13357,
- 13358
+ 13104,
+ 13105
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 32
},
"end": {
- "line": 313,
+ "line": 305,
"column": 33
}
}
@@ -31083,77 +30436,77 @@
"type": "Identifier",
"name": "btn_reset",
"range": [
- 13359,
- 13368
+ 13106,
+ 13115
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 34
},
"end": {
- "line": 313,
+ "line": 305,
"column": 43
}
}
},
"range": [
- 13357,
- 13368
+ 13104,
+ 13115
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 32
},
"end": {
- "line": 313,
+ "line": 305,
"column": 43
}
}
}
],
"range": [
- 13349,
- 13369
+ 13096,
+ 13116
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 24
},
"end": {
- "line": 313,
+ "line": 305,
"column": 44
}
}
},
"range": [
- 13333,
- 13369
+ 13080,
+ 13116
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 8
},
"end": {
- "line": 313,
+ "line": 305,
"column": 44
}
}
},
"range": [
- 13333,
- 13370
+ 13080,
+ 13117
],
"loc": {
"start": {
- "line": 313,
+ "line": 305,
"column": 8
},
"end": {
- "line": 313,
+ "line": 305,
"column": 45
}
},
@@ -31162,16 +30515,16 @@
"type": "Line",
"value": "show/hides reset link",
"range": [
- 13301,
- 13324
+ 13048,
+ 13071
],
"loc": {
"start": {
- "line": 312,
+ "line": 304,
"column": 8
},
"end": {
- "line": 312,
+ "line": 304,
"column": 31
}
}
@@ -31182,16 +30535,16 @@
"type": "Line",
"value": "defines css class for reset button",
"range": [
- 13379,
- 13415
+ 13126,
+ 13162
],
"loc": {
"start": {
- "line": 314,
+ "line": 306,
"column": 8
},
"end": {
- "line": 314,
+ "line": 306,
"column": 44
}
}
@@ -31209,16 +30562,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13424,
- 13428
+ 13171,
+ 13175
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 8
},
"end": {
- "line": 315,
+ "line": 307,
"column": 12
}
}
@@ -31227,31 +30580,31 @@
"type": "Identifier",
"name": "btnResetCssClass",
"range": [
- 13429,
- 13445
+ 13176,
+ 13192
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 13
},
"end": {
- "line": 315,
+ "line": 307,
"column": 29
}
}
},
"range": [
- 13424,
- 13445
+ 13171,
+ 13192
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 8
},
"end": {
- "line": 315,
+ "line": 307,
"column": 29
}
}
@@ -31266,16 +30619,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13448,
- 13449
+ 13195,
+ 13196
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 32
},
"end": {
- "line": 315,
+ "line": 307,
"column": 33
}
}
@@ -31284,31 +30637,31 @@
"type": "Identifier",
"name": "btn_reset_css_class",
"range": [
- 13450,
- 13469
+ 13197,
+ 13216
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 34
},
"end": {
- "line": 315,
+ "line": 307,
"column": 53
}
}
},
"range": [
- 13448,
- 13469
+ 13195,
+ 13216
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 32
},
"end": {
- "line": 315,
+ "line": 307,
"column": 53
}
}
@@ -31318,61 +30671,61 @@
"value": "reset",
"raw": "'reset'",
"range": [
- 13473,
- 13480
+ 13220,
+ 13227
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 57
},
"end": {
- "line": 315,
+ "line": 307,
"column": 64
}
}
},
"range": [
- 13448,
- 13480
+ 13195,
+ 13227
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 32
},
"end": {
- "line": 315,
+ "line": 307,
"column": 64
}
}
},
"range": [
- 13424,
- 13480
+ 13171,
+ 13227
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 8
},
"end": {
- "line": 315,
+ "line": 307,
"column": 64
}
}
},
"range": [
- 13424,
- 13481
+ 13171,
+ 13228
],
"loc": {
"start": {
- "line": 315,
+ "line": 307,
"column": 8
},
"end": {
- "line": 315,
+ "line": 307,
"column": 65
}
},
@@ -31381,16 +30734,16 @@
"type": "Line",
"value": "defines css class for reset button",
"range": [
- 13379,
- 13415
+ 13126,
+ 13162
],
"loc": {
"start": {
- "line": 314,
+ "line": 306,
"column": 8
},
"end": {
- "line": 314,
+ "line": 306,
"column": 44
}
}
@@ -31401,16 +30754,16 @@
"type": "Line",
"value": "callback function before filters are cleared",
"range": [
- 13490,
- 13536
+ 13237,
+ 13283
],
"loc": {
"start": {
- "line": 316,
+ "line": 308,
"column": 8
},
"end": {
- "line": 316,
+ "line": 308,
"column": 54
}
}
@@ -31428,16 +30781,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 13545,
- 13549
+ 13292,
+ 13296
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 8
},
"end": {
- "line": 317,
+ "line": 309,
"column": 12
}
}
@@ -31446,31 +30799,31 @@
"type": "Identifier",
"name": "onBeforeReset",
"range": [
- 13550,
- 13563
+ 13297,
+ 13310
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 13
},
"end": {
- "line": 317,
+ "line": 309,
"column": 26
}
}
},
"range": [
- 13545,
- 13563
+ 13292,
+ 13310
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 8
},
"end": {
- "line": 317,
+ "line": 309,
"column": 26
}
}
@@ -31486,16 +30839,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 13566,
- 13571
+ 13313,
+ 13318
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 29
},
"end": {
- "line": 317,
+ "line": 309,
"column": 34
}
}
@@ -31504,31 +30857,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 13572,
- 13576
+ 13319,
+ 13323
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 35
},
"end": {
- "line": 317,
+ "line": 309,
"column": 39
}
}
},
"range": [
- 13566,
- 13576
+ 13313,
+ 13323
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 29
},
"end": {
- "line": 317,
+ "line": 309,
"column": 39
}
}
@@ -31541,16 +30894,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13577,
- 13578
+ 13324,
+ 13325
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 40
},
"end": {
- "line": 317,
+ "line": 309,
"column": 41
}
}
@@ -31559,47 +30912,47 @@
"type": "Identifier",
"name": "on_before_reset",
"range": [
- 13579,
- 13594
+ 13326,
+ 13341
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 42
},
"end": {
- "line": 317,
+ "line": 309,
"column": 57
}
}
},
"range": [
- 13577,
- 13594
+ 13324,
+ 13341
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 40
},
"end": {
- "line": 317,
+ "line": 309,
"column": 57
}
}
}
],
"range": [
- 13566,
- 13595
+ 13313,
+ 13342
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 29
},
"end": {
- "line": 317,
+ "line": 309,
"column": 58
}
}
@@ -31611,16 +30964,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 13610,
- 13611
+ 13357,
+ 13358
],
"loc": {
"start": {
- "line": 318,
+ "line": 310,
"column": 12
},
"end": {
- "line": 318,
+ "line": 310,
"column": 13
}
}
@@ -31629,31 +30982,31 @@
"type": "Identifier",
"name": "on_before_reset",
"range": [
- 13612,
- 13627
+ 13359,
+ 13374
],
"loc": {
"start": {
- "line": 318,
+ "line": 310,
"column": 14
},
"end": {
- "line": 318,
+ "line": 310,
"column": 29
}
}
},
"range": [
- 13610,
- 13627
+ 13357,
+ 13374
],
"loc": {
"start": {
- "line": 318,
+ "line": 310,
"column": 12
},
"end": {
- "line": 318,
+ "line": 310,
"column": 29
}
}
@@ -31663,61 +31016,61 @@
"value": null,
"raw": "null",
"range": [
- 13630,
- 13634
+ 13377,
+ 13381
],
"loc": {
"start": {
- "line": 318,
+ "line": 310,
"column": 32
},
"end": {
- "line": 318,
+ "line": 310,
"column": 36
}
}
},
"range": [
- 13566,
- 13634
+ 13313,
+ 13381
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 29
},
"end": {
- "line": 318,
+ "line": 310,
"column": 36
}
}
},
"range": [
- 13545,
- 13634
+ 13292,
+ 13381
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 8
},
"end": {
- "line": 318,
+ "line": 310,
"column": 36
}
}
},
"range": [
- 13545,
- 13635
+ 13292,
+ 13382
],
"loc": {
"start": {
- "line": 317,
+ "line": 309,
"column": 8
},
"end": {
- "line": 318,
+ "line": 310,
"column": 37
}
},
@@ -31726,16 +31079,16 @@
"type": "Line",
"value": "callback function before filters are cleared",
"range": [
- 13490,
- 13536
+ 13237,
+ 13283
],
"loc": {
"start": {
- "line": 316,
+ "line": 308,
"column": 8
},
"end": {
- "line": 316,
+ "line": 308,
"column": 54
}
}
@@ -31746,17 +31099,724 @@
"type": "Line",
"value": "callback function after filters are cleared",
"range": [
- 13644,
+ 13391,
+ 13436
+ ],
+ "loc": {
+ "start": {
+ "line": 311,
+ "column": 8
+ },
+ "end": {
+ "line": 311,
+ "column": 53
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13445,
+ 13449
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 8
+ },
+ "end": {
+ "line": 312,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onAfterReset",
+ "range": [
+ 13450,
+ 13462
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 13
+ },
+ "end": {
+ "line": 312,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 13445,
+ 13462
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 8
+ },
+ "end": {
+ "line": 312,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 13465,
+ 13470
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 28
+ },
+ "end": {
+ "line": 312,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isFn",
+ "range": [
+ 13471,
+ 13475
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 34
+ },
+ "end": {
+ "line": 312,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 13465,
+ 13475
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 28
+ },
+ "end": {
+ "line": 312,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 13476,
+ 13477
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 39
+ },
+ "end": {
+ "line": 312,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on_after_reset",
+ "range": [
+ 13478,
+ 13492
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 41
+ },
+ "end": {
+ "line": 312,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 13476,
+ 13492
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 39
+ },
+ "end": {
+ "line": 312,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 13465,
+ 13493
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 28
+ },
+ "end": {
+ "line": 312,
+ "column": 56
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 13508,
+ 13509
+ ],
+ "loc": {
+ "start": {
+ "line": 313,
+ "column": 12
+ },
+ "end": {
+ "line": 313,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on_after_reset",
+ "range": [
+ 13510,
+ 13524
+ ],
+ "loc": {
+ "start": {
+ "line": 313,
+ "column": 14
+ },
+ "end": {
+ "line": 313,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 13508,
+ 13524
+ ],
+ "loc": {
+ "start": {
+ "line": 313,
+ "column": 12
+ },
+ "end": {
+ "line": 313,
+ "column": 28
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 13527,
+ 13531
+ ],
+ "loc": {
+ "start": {
+ "line": 313,
+ "column": 31
+ },
+ "end": {
+ "line": 313,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 13465,
+ 13531
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 28
+ },
+ "end": {
+ "line": 313,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 13445,
+ 13531
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 8
+ },
+ "end": {
+ "line": 313,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 13445,
+ 13532
+ ],
+ "loc": {
+ "start": {
+ "line": 312,
+ "column": 8
+ },
+ "end": {
+ "line": 313,
+ "column": 36
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "callback function after filters are cleared",
+ "range": [
+ 13391,
+ 13436
+ ],
+ "loc": {
+ "start": {
+ "line": 311,
+ "column": 8
+ },
+ "end": {
+ "line": 311,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "** paging **",
+ "range": [
+ 13542,
+ 13558
+ ],
+ "loc": {
+ "start": {
+ "line": 315,
+ "column": 8
+ },
+ "end": {
+ "line": 315,
+ "column": 24
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "enables/disables table paging",
+ "range": [
+ 13567,
+ 13598
+ ],
+ "loc": {
+ "start": {
+ "line": 316,
+ "column": 8
+ },
+ "end": {
+ "line": 316,
+ "column": 39
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13607,
+ 13611
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 13612,
+ 13618
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 13
+ },
+ "end": {
+ "line": 317,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 13607,
+ 13618
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Boolean",
+ "range": [
+ 13621,
+ 13628
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 22
+ },
+ "end": {
+ "line": 317,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 13629,
+ 13630
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 30
+ },
+ "end": {
+ "line": 317,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 13631,
+ 13637
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 32
+ },
+ "end": {
+ "line": 317,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 13629,
+ 13637
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 30
+ },
+ "end": {
+ "line": 317,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 13621,
+ 13638
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 22
+ },
+ "end": {
+ "line": 317,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 13607,
+ 13638
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 13607,
+ 13639
+ ],
+ "loc": {
+ "start": {
+ "line": 317,
+ "column": 8
+ },
+ "end": {
+ "line": 317,
+ "column": 40
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "** paging **",
+ "range": [
+ 13542,
+ 13558
+ ],
+ "loc": {
+ "start": {
+ "line": 315,
+ "column": 8
+ },
+ "end": {
+ "line": 315,
+ "column": 24
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "enables/disables table paging",
+ "range": [
+ 13567,
+ 13598
+ ],
+ "loc": {
+ "start": {
+ "line": 316,
+ "column": 8
+ },
+ "end": {
+ "line": 316,
+ "column": 39
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 13648,
+ 13652
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 13653,
+ 13666
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 13
+ },
+ "end": {
+ "line": 318,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 13648,
+ 13666
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 13669,
+ 13670
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 29
+ },
+ "end": {
+ "line": 318,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 13648,
+ 13670
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 13648,
+ 13671
+ ],
+ "loc": {
+ "start": {
+ "line": 318,
+ "column": 8
+ },
+ "end": {
+ "line": 318,
+ "column": 31
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "nb visible rows",
+ "range": [
+ 13672,
13689
],
"loc": {
"start": {
- "line": 319,
- "column": 8
+ "line": 318,
+ "column": 32
},
"end": {
- "line": 319,
- "column": 53
+ "line": 318,
+ "column": 49
}
}
}
@@ -31778,29 +31838,29 @@
],
"loc": {
"start": {
- "line": 320,
+ "line": 319,
"column": 8
},
"end": {
- "line": 320,
+ "line": 319,
"column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "onAfterReset",
+ "name": "nbHiddenRows",
"range": [
13703,
13715
],
"loc": {
"start": {
- "line": 320,
+ "line": 319,
"column": 13
},
"end": {
- "line": 320,
+ "line": 319,
"column": 25
}
}
@@ -31811,767 +31871,60 @@
],
"loc": {
"start": {
- "line": 320,
+ "line": 319,
"column": 8
},
"end": {
- "line": 320,
+ "line": 319,
"column": 25
}
}
},
"right": {
- "type": "ConditionalExpression",
- "test": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Types",
- "range": [
- 13718,
- 13723
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 28
- },
- "end": {
- "line": 320,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFn",
- "range": [
- 13724,
- 13728
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 34
- },
- "end": {
- "line": 320,
- "column": 38
- }
- }
- },
- "range": [
- 13718,
- 13728
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 28
- },
- "end": {
- "line": 320,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 13729,
- 13730
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 39
- },
- "end": {
- "line": 320,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "on_after_reset",
- "range": [
- 13731,
- 13745
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 41
- },
- "end": {
- "line": 320,
- "column": 55
- }
- }
- },
- "range": [
- 13729,
- 13745
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 39
- },
- "end": {
- "line": 320,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 13718,
- 13746
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 28
- },
- "end": {
- "line": 320,
- "column": 56
- }
- }
- },
- "consequent": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 13761,
- 13762
- ],
- "loc": {
- "start": {
- "line": 321,
- "column": 12
- },
- "end": {
- "line": 321,
- "column": 13
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "on_after_reset",
- "range": [
- 13763,
- 13777
- ],
- "loc": {
- "start": {
- "line": 321,
- "column": 14
- },
- "end": {
- "line": 321,
- "column": 28
- }
- }
- },
- "range": [
- 13761,
- 13777
- ],
- "loc": {
- "start": {
- "line": 321,
- "column": 12
- },
- "end": {
- "line": 321,
- "column": 28
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 13780,
- 13784
- ],
- "loc": {
- "start": {
- "line": 321,
- "column": 31
- },
- "end": {
- "line": 321,
- "column": 35
- }
- }
- },
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
"range": [
13718,
- 13784
+ 13719
],
"loc": {
"start": {
- "line": 320,
+ "line": 319,
"column": 28
},
"end": {
- "line": 321,
- "column": 35
+ "line": 319,
+ "column": 29
}
}
},
"range": [
13698,
- 13784
+ 13719
],
"loc": {
"start": {
- "line": 320,
+ "line": 319,
"column": 8
},
"end": {
- "line": 321,
- "column": 35
- }
- }
- },
- "range": [
- 13698,
- 13785
- ],
- "loc": {
- "start": {
- "line": 320,
- "column": 8
- },
- "end": {
- "line": 321,
- "column": 36
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "callback function after filters are cleared",
- "range": [
- 13644,
- 13689
- ],
- "loc": {
- "start": {
- "line": 319,
- "column": 8
- },
- "end": {
- "line": 319,
- "column": 53
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "** paging **",
- "range": [
- 13795,
- 13811
- ],
- "loc": {
- "start": {
- "line": 323,
- "column": 8
- },
- "end": {
- "line": 323,
- "column": 24
- }
- }
- },
- {
- "type": "Line",
- "value": "enables/disables table paging",
- "range": [
- 13820,
- 13851
- ],
- "loc": {
- "start": {
- "line": 324,
- "column": 8
- },
- "end": {
- "line": 324,
- "column": 39
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 13860,
- 13864
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 8
- },
- "end": {
- "line": 325,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 13865,
- 13871
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 13
- },
- "end": {
- "line": 325,
- "column": 19
- }
- }
- },
- "range": [
- 13860,
- 13871
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 8
- },
- "end": {
- "line": 325,
- "column": 19
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "Boolean",
- "range": [
- 13874,
- 13881
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 22
- },
- "end": {
- "line": 325,
- "column": 29
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 13882,
- 13883
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 30
- },
- "end": {
- "line": 325,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 13884,
- 13890
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 32
- },
- "end": {
- "line": 325,
- "column": 38
- }
- }
- },
- "range": [
- 13882,
- 13890
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 30
- },
- "end": {
- "line": 325,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 13874,
- 13891
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 22
- },
- "end": {
- "line": 325,
- "column": 39
- }
- }
- },
- "range": [
- 13860,
- 13891
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 8
- },
- "end": {
- "line": 325,
- "column": 39
- }
- }
- },
- "range": [
- 13860,
- 13892
- ],
- "loc": {
- "start": {
- "line": 325,
- "column": 8
- },
- "end": {
- "line": 325,
- "column": 40
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** paging **",
- "range": [
- 13795,
- 13811
- ],
- "loc": {
- "start": {
- "line": 323,
- "column": 8
- },
- "end": {
- "line": 323,
- "column": 24
- }
- }
- },
- {
- "type": "Line",
- "value": "enables/disables table paging",
- "range": [
- 13820,
- 13851
- ],
- "loc": {
- "start": {
- "line": 324,
- "column": 8
- },
- "end": {
- "line": 324,
- "column": 39
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 13901,
- 13905
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 8
- },
- "end": {
- "line": 326,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 13906,
- 13919
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 13
- },
- "end": {
- "line": 326,
- "column": 26
- }
- }
- },
- "range": [
- 13901,
- 13919
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 8
- },
- "end": {
- "line": 326,
- "column": 26
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 13922,
- 13923
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 29
- },
- "end": {
- "line": 326,
- "column": 30
- }
- }
- },
- "range": [
- 13901,
- 13923
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 8
- },
- "end": {
- "line": 326,
- "column": 30
- }
- }
- },
- "range": [
- 13901,
- 13924
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 8
- },
- "end": {
- "line": 326,
- "column": 31
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "nb visible rows",
- "range": [
- 13925,
- 13942
- ],
- "loc": {
- "start": {
- "line": 326,
- "column": 32
- },
- "end": {
- "line": 326,
- "column": 49
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 13951,
- 13955
- ],
- "loc": {
- "start": {
- "line": 327,
- "column": 8
- },
- "end": {
- "line": 327,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbHiddenRows",
- "range": [
- 13956,
- 13968
- ],
- "loc": {
- "start": {
- "line": 327,
- "column": 13
- },
- "end": {
- "line": 327,
- "column": 25
- }
- }
- },
- "range": [
- 13951,
- 13968
- ],
- "loc": {
- "start": {
- "line": 327,
- "column": 8
- },
- "end": {
- "line": 327,
- "column": 25
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 13971,
- 13972
- ],
- "loc": {
- "start": {
- "line": 327,
- "column": 28
- },
- "end": {
- "line": 327,
- "column": 29
- }
- }
- },
- "range": [
- 13951,
- 13972
- ],
- "loc": {
- "start": {
- "line": 327,
- "column": 8
- },
- "end": {
- "line": 327,
+ "line": 319,
"column": 29
}
}
},
"range": [
- 13951,
- 13973
+ 13698,
+ 13720
],
"loc": {
"start": {
- "line": 327,
+ "line": 319,
"column": 8
},
"end": {
- "line": 327,
+ "line": 319,
"column": 30
}
},
@@ -32580,16 +31933,16 @@
"type": "Line",
"value": "nb visible rows",
"range": [
- 13925,
- 13942
+ 13672,
+ 13689
],
"loc": {
"start": {
- "line": 326,
+ "line": 318,
"column": 32
},
"end": {
- "line": 326,
+ "line": 318,
"column": 49
}
}
@@ -32600,16 +31953,16 @@
"type": "Line",
"value": "nb hidden rows",
"range": [
- 13974,
- 13990
+ 13721,
+ 13737
],
"loc": {
"start": {
- "line": 327,
+ "line": 319,
"column": 31
},
"end": {
- "line": 327,
+ "line": 319,
"column": 47
}
}
@@ -32618,16 +31971,16 @@
"type": "Block",
"value": "** autofilter on typing **",
"range": [
- 14000,
- 14030
+ 13747,
+ 13777
],
"loc": {
"start": {
- "line": 329,
+ "line": 321,
"column": 8
},
"end": {
- "line": 329,
+ "line": 321,
"column": 38
}
}
@@ -32636,16 +31989,16 @@
"type": "Line",
"value": "enables/disables auto filtering, table is filtered when user stops",
"range": [
- 14039,
- 14107
+ 13786,
+ 13854
],
"loc": {
"start": {
- "line": 330,
+ "line": 322,
"column": 8
},
"end": {
- "line": 330,
+ "line": 322,
"column": 76
}
}
@@ -32654,16 +32007,16 @@
"type": "Line",
"value": "typing",
"range": [
- 14116,
- 14124
+ 13863,
+ 13871
],
"loc": {
"start": {
- "line": 331,
+ "line": 323,
"column": 8
},
"end": {
- "line": 331,
+ "line": 323,
"column": 16
}
}
@@ -32681,16 +32034,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14133,
- 14137
+ 13880,
+ 13884
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 8
},
"end": {
- "line": 332,
+ "line": 324,
"column": 12
}
}
@@ -32699,31 +32052,31 @@
"type": "Identifier",
"name": "autoFilter",
"range": [
- 14138,
- 14148
+ 13885,
+ 13895
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 13
},
"end": {
- "line": 332,
+ "line": 324,
"column": 23
}
}
},
"range": [
- 14133,
- 14148
+ 13880,
+ 13895
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 8
},
"end": {
- "line": 332,
+ "line": 324,
"column": 23
}
}
@@ -32734,16 +32087,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 14151,
- 14158
+ 13898,
+ 13905
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 26
},
"end": {
- "line": 332,
+ "line": 324,
"column": 33
}
}
@@ -32756,16 +32109,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14159,
- 14160
+ 13906,
+ 13907
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 34
},
"end": {
- "line": 332,
+ "line": 324,
"column": 35
}
}
@@ -32774,77 +32127,77 @@
"type": "Identifier",
"name": "auto_filter",
"range": [
- 14161,
- 14172
+ 13908,
+ 13919
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 36
},
"end": {
- "line": 332,
+ "line": 324,
"column": 47
}
}
},
"range": [
- 14159,
- 14172
+ 13906,
+ 13919
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 34
},
"end": {
- "line": 332,
+ "line": 324,
"column": 47
}
}
}
],
"range": [
- 14151,
- 14173
+ 13898,
+ 13920
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 26
},
"end": {
- "line": 332,
+ "line": 324,
"column": 48
}
}
},
"range": [
- 14133,
- 14173
+ 13880,
+ 13920
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 8
},
"end": {
- "line": 332,
+ "line": 324,
"column": 48
}
}
},
"range": [
- 14133,
- 14174
+ 13880,
+ 13921
],
"loc": {
"start": {
- "line": 332,
+ "line": 324,
"column": 8
},
"end": {
- "line": 332,
+ "line": 324,
"column": 49
}
},
@@ -32853,16 +32206,16 @@
"type": "Line",
"value": "nb hidden rows",
"range": [
- 13974,
- 13990
+ 13721,
+ 13737
],
"loc": {
"start": {
- "line": 327,
+ "line": 319,
"column": 31
},
"end": {
- "line": 327,
+ "line": 319,
"column": 47
}
}
@@ -32871,16 +32224,16 @@
"type": "Block",
"value": "** autofilter on typing **",
"range": [
- 14000,
- 14030
+ 13747,
+ 13777
],
"loc": {
"start": {
- "line": 329,
+ "line": 321,
"column": 8
},
"end": {
- "line": 329,
+ "line": 321,
"column": 38
}
}
@@ -32889,16 +32242,16 @@
"type": "Line",
"value": "enables/disables auto filtering, table is filtered when user stops",
"range": [
- 14039,
- 14107
+ 13786,
+ 13854
],
"loc": {
"start": {
- "line": 330,
+ "line": 322,
"column": 8
},
"end": {
- "line": 330,
+ "line": 322,
"column": 76
}
}
@@ -32907,16 +32260,16 @@
"type": "Line",
"value": "typing",
"range": [
- 14116,
- 14124
+ 13863,
+ 13871
],
"loc": {
"start": {
- "line": 331,
+ "line": 323,
"column": 8
},
"end": {
- "line": 331,
+ "line": 323,
"column": 16
}
}
@@ -32927,16 +32280,16 @@
"type": "Line",
"value": "onkeyup delay timer (msecs)",
"range": [
- 14183,
- 14212
+ 13930,
+ 13959
],
"loc": {
"start": {
- "line": 333,
+ "line": 325,
"column": 8
},
"end": {
- "line": 333,
+ "line": 325,
"column": 37
}
}
@@ -32954,16 +32307,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14221,
- 14225
+ 13968,
+ 13972
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 8
},
"end": {
- "line": 334,
+ "line": 326,
"column": 12
}
}
@@ -32972,31 +32325,31 @@
"type": "Identifier",
"name": "autoFilterDelay",
"range": [
- 14226,
- 14241
+ 13973,
+ 13988
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 13
},
"end": {
- "line": 334,
+ "line": 326,
"column": 28
}
}
},
"range": [
- 14221,
- 14241
+ 13968,
+ 13988
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 8
},
"end": {
- "line": 334,
+ "line": 326,
"column": 28
}
}
@@ -33012,16 +32365,16 @@
"type": "Identifier",
"name": "isNaN",
"range": [
- 14245,
- 14250
+ 13992,
+ 13997
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 32
},
"end": {
- "line": 334,
+ "line": 326,
"column": 37
}
}
@@ -33034,16 +32387,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14251,
- 14252
+ 13998,
+ 13999
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 38
},
"end": {
- "line": 334,
+ "line": 326,
"column": 39
}
}
@@ -33052,63 +32405,63 @@
"type": "Identifier",
"name": "auto_filter_delay",
"range": [
- 14253,
- 14270
+ 14000,
+ 14017
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 40
},
"end": {
- "line": 334,
+ "line": 326,
"column": 57
}
}
},
"range": [
- 14251,
- 14270
+ 13998,
+ 14017
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 38
},
"end": {
- "line": 334,
+ "line": 326,
"column": 57
}
}
}
],
"range": [
- 14245,
- 14271
+ 13992,
+ 14018
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 32
},
"end": {
- "line": 334,
+ "line": 326,
"column": 58
}
}
},
"prefix": true,
"range": [
- 14244,
- 14271
+ 13991,
+ 14018
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 31
},
"end": {
- "line": 334,
+ "line": 326,
"column": 58
}
}
@@ -33120,16 +32473,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14286,
- 14287
+ 14033,
+ 14034
],
"loc": {
"start": {
- "line": 335,
+ "line": 327,
"column": 12
},
"end": {
- "line": 335,
+ "line": 327,
"column": 13
}
}
@@ -33138,31 +32491,31 @@
"type": "Identifier",
"name": "auto_filter_delay",
"range": [
- 14288,
- 14305
+ 14035,
+ 14052
],
"loc": {
"start": {
- "line": 335,
+ "line": 327,
"column": 14
},
"end": {
- "line": 335,
+ "line": 327,
"column": 31
}
}
},
"range": [
- 14286,
- 14305
+ 14033,
+ 14052
],
"loc": {
"start": {
- "line": 335,
+ "line": 327,
"column": 12
},
"end": {
- "line": 335,
+ "line": 327,
"column": 31
}
}
@@ -33172,61 +32525,61 @@
"value": 900,
"raw": "900",
"range": [
- 14308,
- 14311
+ 14055,
+ 14058
],
"loc": {
"start": {
- "line": 335,
+ "line": 327,
"column": 34
},
"end": {
- "line": 335,
+ "line": 327,
"column": 37
}
}
},
"range": [
- 14244,
- 14311
+ 13991,
+ 14058
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 31
},
"end": {
- "line": 335,
+ "line": 327,
"column": 37
}
}
},
"range": [
- 14221,
- 14311
+ 13968,
+ 14058
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 8
},
"end": {
- "line": 335,
+ "line": 327,
"column": 37
}
}
},
"range": [
- 14221,
- 14312
+ 13968,
+ 14059
],
"loc": {
"start": {
- "line": 334,
+ "line": 326,
"column": 8
},
"end": {
- "line": 335,
+ "line": 327,
"column": 38
}
},
@@ -33235,16 +32588,16 @@
"type": "Line",
"value": "onkeyup delay timer (msecs)",
"range": [
- 14183,
- 14212
+ 13930,
+ 13959
],
"loc": {
"start": {
- "line": 333,
+ "line": 325,
"column": 8
},
"end": {
- "line": 333,
+ "line": 325,
"column": 37
}
}
@@ -33255,16 +32608,16 @@
"type": "Line",
"value": "typing indicator",
"range": [
- 14321,
- 14339
+ 14068,
+ 14086
],
"loc": {
"start": {
- "line": 336,
+ "line": 328,
"column": 8
},
"end": {
- "line": 336,
+ "line": 328,
"column": 26
}
}
@@ -33282,16 +32635,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14348,
- 14352
+ 14095,
+ 14099
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 8
},
"end": {
- "line": 337,
+ "line": 329,
"column": 12
}
}
@@ -33300,31 +32653,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 14353,
- 14365
+ 14100,
+ 14112
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 13
},
"end": {
- "line": 337,
+ "line": 329,
"column": 25
}
}
},
"range": [
- 14348,
- 14365
+ 14095,
+ 14112
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 8
},
"end": {
- "line": 337,
+ "line": 329,
"column": 25
}
}
@@ -33334,46 +32687,46 @@
"value": null,
"raw": "null",
"range": [
- 14368,
- 14372
+ 14115,
+ 14119
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 28
},
"end": {
- "line": 337,
+ "line": 329,
"column": 32
}
}
},
"range": [
- 14348,
- 14372
+ 14095,
+ 14119
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 8
},
"end": {
- "line": 337,
+ "line": 329,
"column": 32
}
}
},
"range": [
- 14348,
- 14373
+ 14095,
+ 14120
],
"loc": {
"start": {
- "line": 337,
+ "line": 329,
"column": 8
},
"end": {
- "line": 337,
+ "line": 329,
"column": 33
}
},
@@ -33382,16 +32735,16 @@
"type": "Line",
"value": "typing indicator",
"range": [
- 14321,
- 14339
+ 14068,
+ 14086
],
"loc": {
"start": {
- "line": 336,
+ "line": 328,
"column": 8
},
"end": {
- "line": 336,
+ "line": 328,
"column": 26
}
}
@@ -33409,16 +32762,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14382,
- 14386
+ 14129,
+ 14133
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 8
},
"end": {
- "line": 338,
+ "line": 330,
"column": 12
}
}
@@ -33427,31 +32780,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 14387,
- 14402
+ 14134,
+ 14149
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 13
},
"end": {
- "line": 338,
+ "line": 330,
"column": 28
}
}
},
"range": [
- 14382,
- 14402
+ 14129,
+ 14149
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 8
},
"end": {
- "line": 338,
+ "line": 330,
"column": 28
}
}
@@ -33461,46 +32814,46 @@
"value": null,
"raw": "null",
"range": [
- 14405,
- 14409
+ 14152,
+ 14156
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 31
},
"end": {
- "line": 338,
+ "line": 330,
"column": 35
}
}
},
"range": [
- 14382,
- 14409
+ 14129,
+ 14156
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 8
},
"end": {
- "line": 338,
+ "line": 330,
"column": 35
}
}
},
"range": [
- 14382,
- 14410
+ 14129,
+ 14157
],
"loc": {
"start": {
- "line": 338,
+ "line": 330,
"column": 8
},
"end": {
- "line": 338,
+ "line": 330,
"column": 36
}
},
@@ -33509,16 +32862,16 @@
"type": "Block",
"value": "** keyword highlighting **",
"range": [
- 14420,
- 14450
+ 14167,
+ 14197
],
"loc": {
"start": {
- "line": 340,
+ "line": 332,
"column": 8
},
"end": {
- "line": 340,
+ "line": 332,
"column": 38
}
}
@@ -33527,16 +32880,16 @@
"type": "Line",
"value": "enables/disables keyword highlighting",
"range": [
- 14459,
- 14498
+ 14206,
+ 14245
],
"loc": {
"start": {
- "line": 341,
+ "line": 333,
"column": 8
},
"end": {
- "line": 341,
+ "line": 333,
"column": 47
}
}
@@ -33554,16 +32907,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14507,
- 14511
+ 14254,
+ 14258
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 8
},
"end": {
- "line": 342,
+ "line": 334,
"column": 12
}
}
@@ -33572,31 +32925,31 @@
"type": "Identifier",
"name": "highlightKeywords",
"range": [
- 14512,
- 14529
+ 14259,
+ 14276
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 13
},
"end": {
- "line": 342,
+ "line": 334,
"column": 30
}
}
},
"range": [
- 14507,
- 14529
+ 14254,
+ 14276
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 8
},
"end": {
- "line": 342,
+ "line": 334,
"column": 30
}
}
@@ -33607,16 +32960,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 14532,
- 14539
+ 14279,
+ 14286
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 33
},
"end": {
- "line": 342,
+ "line": 334,
"column": 40
}
}
@@ -33629,16 +32982,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14540,
- 14541
+ 14287,
+ 14288
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 41
},
"end": {
- "line": 342,
+ "line": 334,
"column": 42
}
}
@@ -33647,77 +33000,77 @@
"type": "Identifier",
"name": "highlight_keywords",
"range": [
- 14542,
- 14560
+ 14289,
+ 14307
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 43
},
"end": {
- "line": 342,
+ "line": 334,
"column": 61
}
}
},
"range": [
- 14540,
- 14560
+ 14287,
+ 14307
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 41
},
"end": {
- "line": 342,
+ "line": 334,
"column": 61
}
}
}
],
"range": [
- 14532,
- 14561
+ 14279,
+ 14308
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 33
},
"end": {
- "line": 342,
+ "line": 334,
"column": 62
}
}
},
"range": [
- 14507,
- 14561
+ 14254,
+ 14308
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 8
},
"end": {
- "line": 342,
+ "line": 334,
"column": 62
}
}
},
"range": [
- 14507,
- 14562
+ 14254,
+ 14309
],
"loc": {
"start": {
- "line": 342,
+ "line": 334,
"column": 8
},
"end": {
- "line": 342,
+ "line": 334,
"column": 63
}
},
@@ -33726,16 +33079,16 @@
"type": "Block",
"value": "** keyword highlighting **",
"range": [
- 14420,
- 14450
+ 14167,
+ 14197
],
"loc": {
"start": {
- "line": 340,
+ "line": 332,
"column": 8
},
"end": {
- "line": 340,
+ "line": 332,
"column": 38
}
}
@@ -33744,16 +33097,16 @@
"type": "Line",
"value": "enables/disables keyword highlighting",
"range": [
- 14459,
- 14498
+ 14206,
+ 14245
],
"loc": {
"start": {
- "line": 341,
+ "line": 333,
"column": 8
},
"end": {
- "line": 341,
+ "line": 333,
"column": 47
}
}
@@ -33764,16 +33117,16 @@
"type": "Block",
"value": "** No results feature **",
"range": [
- 14572,
- 14600
+ 14319,
+ 14347
],
"loc": {
"start": {
- "line": 344,
+ "line": 336,
"column": 8
},
"end": {
- "line": 344,
+ "line": 336,
"column": 36
}
}
@@ -33791,16 +33144,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14609,
- 14613
+ 14356,
+ 14360
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 8
},
"end": {
- "line": 345,
+ "line": 337,
"column": 12
}
}
@@ -33809,31 +33162,31 @@
"type": "Identifier",
"name": "noResults",
"range": [
- 14614,
- 14623
+ 14361,
+ 14370
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 13
},
"end": {
- "line": 345,
+ "line": 337,
"column": 22
}
}
},
"range": [
- 14609,
- 14623
+ 14356,
+ 14370
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 8
},
"end": {
- "line": 345,
+ "line": 337,
"column": 22
}
}
@@ -33850,16 +33203,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 14626,
- 14631
+ 14373,
+ 14378
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 25
},
"end": {
- "line": 345,
+ "line": 337,
"column": 30
}
}
@@ -33868,31 +33221,31 @@
"type": "Identifier",
"name": "isObj",
"range": [
- 14632,
- 14637
+ 14379,
+ 14384
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 31
},
"end": {
- "line": 345,
+ "line": 337,
"column": 36
}
}
},
"range": [
- 14626,
- 14637
+ 14373,
+ 14384
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 25
},
"end": {
- "line": 345,
+ "line": 337,
"column": 36
}
}
@@ -33905,16 +33258,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14638,
- 14639
+ 14385,
+ 14386
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 37
},
"end": {
- "line": 345,
+ "line": 337,
"column": 38
}
}
@@ -33923,47 +33276,47 @@
"type": "Identifier",
"name": "no_results_message",
"range": [
- 14640,
- 14658
+ 14387,
+ 14405
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 39
},
"end": {
- "line": 345,
+ "line": 337,
"column": 57
}
}
},
"range": [
- 14638,
- 14658
+ 14385,
+ 14405
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 37
},
"end": {
- "line": 345,
+ "line": 337,
"column": 57
}
}
}
],
"range": [
- 14626,
- 14659
+ 14373,
+ 14406
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 25
},
"end": {
- "line": 345,
+ "line": 337,
"column": 58
}
}
@@ -33974,16 +33327,16 @@
"type": "Identifier",
"name": "Boolean",
"range": [
- 14675,
- 14682
+ 14422,
+ 14429
],
"loc": {
"start": {
- "line": 346,
+ "line": 338,
"column": 12
},
"end": {
- "line": 346,
+ "line": 338,
"column": 19
}
}
@@ -33996,16 +33349,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14683,
- 14684
+ 14430,
+ 14431
],
"loc": {
"start": {
- "line": 346,
+ "line": 338,
"column": 20
},
"end": {
- "line": 346,
+ "line": 338,
"column": 21
}
}
@@ -34014,92 +33367,92 @@
"type": "Identifier",
"name": "no_results_message",
"range": [
- 14685,
- 14703
+ 14432,
+ 14450
],
"loc": {
"start": {
- "line": 346,
+ "line": 338,
"column": 22
},
"end": {
- "line": 346,
+ "line": 338,
"column": 40
}
}
},
"range": [
- 14683,
- 14703
+ 14430,
+ 14450
],
"loc": {
"start": {
- "line": 346,
+ "line": 338,
"column": 20
},
"end": {
- "line": 346,
+ "line": 338,
"column": 40
}
}
}
],
"range": [
- 14675,
- 14704
+ 14422,
+ 14451
],
"loc": {
"start": {
- "line": 346,
+ "line": 338,
"column": 12
},
"end": {
- "line": 346,
+ "line": 338,
"column": 41
}
}
},
"range": [
- 14626,
- 14704
+ 14373,
+ 14451
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 25
},
"end": {
- "line": 346,
+ "line": 338,
"column": 41
}
}
},
"range": [
- 14609,
- 14704
+ 14356,
+ 14451
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 8
},
"end": {
- "line": 346,
+ "line": 338,
"column": 41
}
}
},
"range": [
- 14609,
- 14705
+ 14356,
+ 14452
],
"loc": {
"start": {
- "line": 345,
+ "line": 337,
"column": 8
},
"end": {
- "line": 346,
+ "line": 338,
"column": 42
}
},
@@ -34108,16 +33461,16 @@
"type": "Block",
"value": "** No results feature **",
"range": [
- 14572,
- 14600
+ 14319,
+ 14347
],
"loc": {
"start": {
- "line": 344,
+ "line": 336,
"column": 8
},
"end": {
- "line": 344,
+ "line": 336,
"column": 36
}
}
@@ -34128,16 +33481,16 @@
"type": "Block",
"value": "** data types **",
"range": [
- 14715,
- 14735
+ 14462,
+ 14482
],
"loc": {
"start": {
- "line": 348,
+ "line": 340,
"column": 8
},
"end": {
- "line": 348,
+ "line": 340,
"column": 28
}
}
@@ -34146,16 +33499,16 @@
"type": "Line",
"value": "defines default date type (european DMY)",
"range": [
- 14744,
- 14786
+ 14491,
+ 14533
],
"loc": {
"start": {
- "line": 349,
+ "line": 341,
"column": 8
},
"end": {
- "line": 349,
+ "line": 341,
"column": 50
}
}
@@ -34173,16 +33526,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14795,
- 14799
+ 14542,
+ 14546
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 8
},
"end": {
- "line": 350,
+ "line": 342,
"column": 12
}
}
@@ -34191,31 +33544,31 @@
"type": "Identifier",
"name": "defaultDateType",
"range": [
- 14800,
- 14815
+ 14547,
+ 14562
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 13
},
"end": {
- "line": 350,
+ "line": 342,
"column": 28
}
}
},
"range": [
- 14795,
- 14815
+ 14542,
+ 14562
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 8
},
"end": {
- "line": 350,
+ "line": 342,
"column": 28
}
}
@@ -34230,16 +33583,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14818,
- 14819
+ 14565,
+ 14566
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 31
},
"end": {
- "line": 350,
+ "line": 342,
"column": 32
}
}
@@ -34248,31 +33601,31 @@
"type": "Identifier",
"name": "default_date_type",
"range": [
- 14820,
- 14837
+ 14567,
+ 14584
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 33
},
"end": {
- "line": 350,
+ "line": 342,
"column": 50
}
}
},
"range": [
- 14818,
- 14837
+ 14565,
+ 14584
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 31
},
"end": {
- "line": 350,
+ "line": 342,
"column": 50
}
}
@@ -34282,61 +33635,61 @@
"value": "DMY",
"raw": "'DMY'",
"range": [
- 14841,
- 14846
+ 14588,
+ 14593
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 54
},
"end": {
- "line": 350,
+ "line": 342,
"column": 59
}
}
},
"range": [
- 14818,
- 14846
+ 14565,
+ 14593
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 31
},
"end": {
- "line": 350,
+ "line": 342,
"column": 59
}
}
},
"range": [
- 14795,
- 14846
+ 14542,
+ 14593
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 8
},
"end": {
- "line": 350,
+ "line": 342,
"column": 59
}
}
},
"range": [
- 14795,
- 14847
+ 14542,
+ 14594
],
"loc": {
"start": {
- "line": 350,
+ "line": 342,
"column": 8
},
"end": {
- "line": 350,
+ "line": 342,
"column": 60
}
},
@@ -34345,16 +33698,16 @@
"type": "Block",
"value": "** data types **",
"range": [
- 14715,
- 14735
+ 14462,
+ 14482
],
"loc": {
"start": {
- "line": 348,
+ "line": 340,
"column": 8
},
"end": {
- "line": 348,
+ "line": 340,
"column": 28
}
}
@@ -34363,16 +33716,16 @@
"type": "Line",
"value": "defines default date type (european DMY)",
"range": [
- 14744,
- 14786
+ 14491,
+ 14533
],
"loc": {
"start": {
- "line": 349,
+ "line": 341,
"column": 8
},
"end": {
- "line": 349,
+ "line": 341,
"column": 50
}
}
@@ -34383,16 +33736,16 @@
"type": "Line",
"value": "defines default thousands separator",
"range": [
- 14856,
- 14893
+ 14603,
+ 14640
],
"loc": {
"start": {
- "line": 351,
+ "line": 343,
"column": 8
},
"end": {
- "line": 351,
+ "line": 343,
"column": 45
}
}
@@ -34401,16 +33754,16 @@
"type": "Line",
"value": "US = ',' EU = '.'",
"range": [
- 14902,
- 14921
+ 14649,
+ 14668
],
"loc": {
"start": {
- "line": 352,
+ "line": 344,
"column": 8
},
"end": {
- "line": 352,
+ "line": 344,
"column": 27
}
}
@@ -34428,16 +33781,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 14930,
- 14934
+ 14677,
+ 14681
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 8
},
"end": {
- "line": 353,
+ "line": 345,
"column": 12
}
}
@@ -34446,31 +33799,31 @@
"type": "Identifier",
"name": "thousandsSeparator",
"range": [
- 14935,
- 14953
+ 14682,
+ 14700
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 13
},
"end": {
- "line": 353,
+ "line": 345,
"column": 31
}
}
},
"range": [
- 14930,
- 14953
+ 14677,
+ 14700
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 8
},
"end": {
- "line": 353,
+ "line": 345,
"column": 31
}
}
@@ -34485,16 +33838,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 14956,
- 14957
+ 14703,
+ 14704
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 34
},
"end": {
- "line": 353,
+ "line": 345,
"column": 35
}
}
@@ -34503,31 +33856,31 @@
"type": "Identifier",
"name": "thousands_separator",
"range": [
- 14958,
- 14977
+ 14705,
+ 14724
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 36
},
"end": {
- "line": 353,
+ "line": 345,
"column": 55
}
}
},
"range": [
- 14956,
- 14977
+ 14703,
+ 14724
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 34
},
"end": {
- "line": 353,
+ "line": 345,
"column": 55
}
}
@@ -34537,61 +33890,61 @@
"value": ",",
"raw": "','",
"range": [
- 14981,
- 14984
+ 14728,
+ 14731
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 59
},
"end": {
- "line": 353,
+ "line": 345,
"column": 62
}
}
},
"range": [
- 14956,
- 14984
+ 14703,
+ 14731
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 34
},
"end": {
- "line": 353,
+ "line": 345,
"column": 62
}
}
},
"range": [
- 14930,
- 14984
+ 14677,
+ 14731
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 8
},
"end": {
- "line": 353,
+ "line": 345,
"column": 62
}
}
},
"range": [
- 14930,
- 14985
+ 14677,
+ 14732
],
"loc": {
"start": {
- "line": 353,
+ "line": 345,
"column": 8
},
"end": {
- "line": 353,
+ "line": 345,
"column": 63
}
},
@@ -34600,16 +33953,16 @@
"type": "Line",
"value": "defines default thousands separator",
"range": [
- 14856,
- 14893
+ 14603,
+ 14640
],
"loc": {
"start": {
- "line": 351,
+ "line": 343,
"column": 8
},
"end": {
- "line": 351,
+ "line": 343,
"column": 45
}
}
@@ -34618,16 +33971,16 @@
"type": "Line",
"value": "US = ',' EU = '.'",
"range": [
- 14902,
- 14921
+ 14649,
+ 14668
],
"loc": {
"start": {
- "line": 352,
+ "line": 344,
"column": 8
},
"end": {
- "line": 352,
+ "line": 344,
"column": 27
}
}
@@ -34638,16 +33991,16 @@
"type": "Line",
"value": "defines default decimal separator",
"range": [
- 14994,
- 15029
+ 14741,
+ 14776
],
"loc": {
"start": {
- "line": 354,
+ "line": 346,
"column": 8
},
"end": {
- "line": 354,
+ "line": 346,
"column": 43
}
}
@@ -34656,16 +34009,16 @@
"type": "Line",
"value": "US & javascript = '.' EU = ','",
"range": [
- 15038,
- 15070
+ 14785,
+ 14817
],
"loc": {
"start": {
- "line": 355,
+ "line": 347,
"column": 8
},
"end": {
- "line": 355,
+ "line": 347,
"column": 40
}
}
@@ -34683,16 +34036,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15079,
- 15083
+ 14826,
+ 14830
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 8
},
"end": {
- "line": 356,
+ "line": 348,
"column": 12
}
}
@@ -34701,31 +34054,31 @@
"type": "Identifier",
"name": "decimalSeparator",
"range": [
- 15084,
- 15100
+ 14831,
+ 14847
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 13
},
"end": {
- "line": 356,
+ "line": 348,
"column": 29
}
}
},
"range": [
- 15079,
- 15100
+ 14826,
+ 14847
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 8
},
"end": {
- "line": 356,
+ "line": 348,
"column": 29
}
}
@@ -34740,16 +34093,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 15103,
- 15104
+ 14850,
+ 14851
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 32
},
"end": {
- "line": 356,
+ "line": 348,
"column": 33
}
}
@@ -34758,31 +34111,31 @@
"type": "Identifier",
"name": "decimal_separator",
"range": [
- 15105,
- 15122
+ 14852,
+ 14869
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 34
},
"end": {
- "line": 356,
+ "line": 348,
"column": 51
}
}
},
"range": [
- 15103,
- 15122
+ 14850,
+ 14869
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 32
},
"end": {
- "line": 356,
+ "line": 348,
"column": 51
}
}
@@ -34792,61 +34145,61 @@
"value": ".",
"raw": "'.'",
"range": [
- 15126,
- 15129
+ 14873,
+ 14876
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 55
},
"end": {
- "line": 356,
+ "line": 348,
"column": 58
}
}
},
"range": [
- 15103,
- 15129
+ 14850,
+ 14876
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 32
},
"end": {
- "line": 356,
+ "line": 348,
"column": 58
}
}
},
"range": [
- 15079,
- 15129
+ 14826,
+ 14876
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 8
},
"end": {
- "line": 356,
+ "line": 348,
"column": 58
}
}
},
"range": [
- 15079,
- 15130
+ 14826,
+ 14877
],
"loc": {
"start": {
- "line": 356,
+ "line": 348,
"column": 8
},
"end": {
- "line": 356,
+ "line": 348,
"column": 59
}
},
@@ -34855,16 +34208,16 @@
"type": "Line",
"value": "defines default decimal separator",
"range": [
- 14994,
- 15029
+ 14741,
+ 14776
],
"loc": {
"start": {
- "line": 354,
+ "line": 346,
"column": 8
},
"end": {
- "line": 354,
+ "line": 346,
"column": 43
}
}
@@ -34873,16 +34226,16 @@
"type": "Line",
"value": "US & javascript = '.' EU = ','",
"range": [
- 15038,
- 15070
+ 14785,
+ 14817
],
"loc": {
"start": {
- "line": 355,
+ "line": 347,
"column": 8
},
"end": {
- "line": 355,
+ "line": 347,
"column": 40
}
}
@@ -34893,16 +34246,16 @@
"type": "Line",
"value": "enables number format per column",
"range": [
- 15139,
- 15173
+ 14886,
+ 14920
],
"loc": {
"start": {
- "line": 357,
+ "line": 349,
"column": 8
},
"end": {
- "line": 357,
+ "line": 349,
"column": 42
}
}
@@ -34920,16 +34273,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15182,
- 15186
+ 14929,
+ 14933
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 8
},
"end": {
- "line": 358,
+ "line": 350,
"column": 12
}
}
@@ -34938,31 +34291,31 @@
"type": "Identifier",
"name": "hasColNbFormat",
"range": [
- 15187,
- 15201
+ 14934,
+ 14948
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 13
},
"end": {
- "line": 358,
+ "line": 350,
"column": 27
}
}
},
"range": [
- 15182,
- 15201
+ 14929,
+ 14948
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 8
},
"end": {
- "line": 358,
+ "line": 350,
"column": 27
}
}
@@ -34976,16 +34329,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 15204,
- 15209
+ 14951,
+ 14956
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 30
},
"end": {
- "line": 358,
+ "line": 350,
"column": 35
}
}
@@ -34994,31 +34347,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 15210,
- 15217
+ 14957,
+ 14964
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 36
},
"end": {
- "line": 358,
+ "line": 350,
"column": 43
}
}
},
"range": [
- 15204,
- 15217
+ 14951,
+ 14964
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 30
},
"end": {
- "line": 358,
+ "line": 350,
"column": 43
}
}
@@ -35031,16 +34384,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 15218,
- 15219
+ 14965,
+ 14966
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 44
},
"end": {
- "line": 358,
+ "line": 350,
"column": 45
}
}
@@ -35049,77 +34402,77 @@
"type": "Identifier",
"name": "col_number_format",
"range": [
- 15220,
- 15237
+ 14967,
+ 14984
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 46
},
"end": {
- "line": 358,
+ "line": 350,
"column": 63
}
}
},
"range": [
- 15218,
- 15237
+ 14965,
+ 14984
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 44
},
"end": {
- "line": 358,
+ "line": 350,
"column": 63
}
}
}
],
"range": [
- 15204,
- 15238
+ 14951,
+ 14985
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 30
},
"end": {
- "line": 358,
+ "line": 350,
"column": 64
}
}
},
"range": [
- 15182,
- 15238
+ 14929,
+ 14985
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 8
},
"end": {
- "line": 358,
+ "line": 350,
"column": 64
}
}
},
"range": [
- 15182,
- 15239
+ 14929,
+ 14986
],
"loc": {
"start": {
- "line": 358,
+ "line": 350,
"column": 8
},
"end": {
- "line": 358,
+ "line": 350,
"column": 65
}
},
@@ -35128,16 +34481,16 @@
"type": "Line",
"value": "enables number format per column",
"range": [
- 15139,
- 15173
+ 14886,
+ 14920
],
"loc": {
"start": {
- "line": 357,
+ "line": 349,
"column": 8
},
"end": {
- "line": 357,
+ "line": 349,
"column": 42
}
}
@@ -35148,16 +34501,16 @@
"type": "Line",
"value": "array containing columns nb formats",
"range": [
- 15248,
- 15285
+ 14995,
+ 15032
],
"loc": {
"start": {
- "line": 359,
+ "line": 351,
"column": 8
},
"end": {
- "line": 359,
+ "line": 351,
"column": 45
}
}
@@ -35175,16 +34528,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15294,
- 15298
+ 15041,
+ 15045
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 8
},
"end": {
- "line": 360,
+ "line": 352,
"column": 12
}
}
@@ -35193,31 +34546,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 15299,
- 15310
+ 15046,
+ 15057
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 13
},
"end": {
- "line": 360,
+ "line": 352,
"column": 24
}
}
},
"range": [
- 15294,
- 15310
+ 15041,
+ 15057
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 8
},
"end": {
- "line": 360,
+ "line": 352,
"column": 24
}
}
@@ -35230,16 +34583,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15313,
- 15317
+ 15060,
+ 15064
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 27
},
"end": {
- "line": 360,
+ "line": 352,
"column": 31
}
}
@@ -35248,31 +34601,31 @@
"type": "Identifier",
"name": "hasColNbFormat",
"range": [
- 15318,
- 15332
+ 15065,
+ 15079
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 32
},
"end": {
- "line": 360,
+ "line": 352,
"column": 46
}
}
},
"range": [
- 15313,
- 15332
+ 15060,
+ 15079
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 27
},
"end": {
- "line": 360,
+ "line": 352,
"column": 46
}
}
@@ -35284,16 +34637,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 15335,
- 15336
+ 15082,
+ 15083
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 49
},
"end": {
- "line": 360,
+ "line": 352,
"column": 50
}
}
@@ -35302,31 +34655,31 @@
"type": "Identifier",
"name": "col_number_format",
"range": [
- 15337,
- 15354
+ 15084,
+ 15101
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 51
},
"end": {
- "line": 360,
+ "line": 352,
"column": 68
}
}
},
"range": [
- 15335,
- 15354
+ 15082,
+ 15101
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 49
},
"end": {
- "line": 360,
+ "line": 352,
"column": 68
}
}
@@ -35336,61 +34689,61 @@
"value": null,
"raw": "null",
"range": [
- 15357,
- 15361
+ 15104,
+ 15108
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 71
},
"end": {
- "line": 360,
+ "line": 352,
"column": 75
}
}
},
"range": [
- 15313,
- 15361
+ 15060,
+ 15108
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 27
},
"end": {
- "line": 360,
+ "line": 352,
"column": 75
}
}
},
"range": [
- 15294,
- 15361
+ 15041,
+ 15108
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 8
},
"end": {
- "line": 360,
+ "line": 352,
"column": 75
}
}
},
"range": [
- 15294,
- 15362
+ 15041,
+ 15109
],
"loc": {
"start": {
- "line": 360,
+ "line": 352,
"column": 8
},
"end": {
- "line": 360,
+ "line": 352,
"column": 76
}
},
@@ -35399,16 +34752,16 @@
"type": "Line",
"value": "array containing columns nb formats",
"range": [
- 15248,
- 15285
+ 14995,
+ 15032
],
"loc": {
"start": {
- "line": 359,
+ "line": 351,
"column": 8
},
"end": {
- "line": 359,
+ "line": 351,
"column": 45
}
}
@@ -35419,16 +34772,16 @@
"type": "Line",
"value": "enables date type per column",
"range": [
- 15371,
- 15401
+ 15118,
+ 15148
],
"loc": {
"start": {
- "line": 361,
+ "line": 353,
"column": 8
},
"end": {
- "line": 361,
+ "line": 353,
"column": 38
}
}
@@ -35446,16 +34799,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15410,
- 15414
+ 15157,
+ 15161
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 8
},
"end": {
- "line": 362,
+ "line": 354,
"column": 12
}
}
@@ -35464,31 +34817,31 @@
"type": "Identifier",
"name": "hasColDateType",
"range": [
- 15415,
- 15429
+ 15162,
+ 15176
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 13
},
"end": {
- "line": 362,
+ "line": 354,
"column": 27
}
}
},
"range": [
- 15410,
- 15429
+ 15157,
+ 15176
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 8
},
"end": {
- "line": 362,
+ "line": 354,
"column": 27
}
}
@@ -35502,16 +34855,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 15432,
- 15437
+ 15179,
+ 15184
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 30
},
"end": {
- "line": 362,
+ "line": 354,
"column": 35
}
}
@@ -35520,31 +34873,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 15438,
- 15445
+ 15185,
+ 15192
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 36
},
"end": {
- "line": 362,
+ "line": 354,
"column": 43
}
}
},
"range": [
- 15432,
- 15445
+ 15179,
+ 15192
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 30
},
"end": {
- "line": 362,
+ "line": 354,
"column": 43
}
}
@@ -35557,16 +34910,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 15446,
- 15447
+ 15193,
+ 15194
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 44
},
"end": {
- "line": 362,
+ "line": 354,
"column": 45
}
}
@@ -35575,77 +34928,77 @@
"type": "Identifier",
"name": "col_date_type",
"range": [
- 15448,
- 15461
+ 15195,
+ 15208
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 46
},
"end": {
- "line": 362,
+ "line": 354,
"column": 59
}
}
},
"range": [
- 15446,
- 15461
+ 15193,
+ 15208
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 44
},
"end": {
- "line": 362,
+ "line": 354,
"column": 59
}
}
}
],
"range": [
- 15432,
- 15462
+ 15179,
+ 15209
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 30
},
"end": {
- "line": 362,
+ "line": 354,
"column": 60
}
}
},
"range": [
- 15410,
- 15462
+ 15157,
+ 15209
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 8
},
"end": {
- "line": 362,
+ "line": 354,
"column": 60
}
}
},
"range": [
- 15410,
- 15463
+ 15157,
+ 15210
],
"loc": {
"start": {
- "line": 362,
+ "line": 354,
"column": 8
},
"end": {
- "line": 362,
+ "line": 354,
"column": 61
}
},
@@ -35654,16 +35007,16 @@
"type": "Line",
"value": "enables date type per column",
"range": [
- 15371,
- 15401
+ 15118,
+ 15148
],
"loc": {
"start": {
- "line": 361,
+ "line": 353,
"column": 8
},
"end": {
- "line": 361,
+ "line": 353,
"column": 38
}
}
@@ -35674,16 +35027,16 @@
"type": "Line",
"value": "array containing columns date type",
"range": [
- 15472,
- 15508
+ 15219,
+ 15255
],
"loc": {
"start": {
- "line": 363,
+ "line": 355,
"column": 8
},
"end": {
- "line": 363,
+ "line": 355,
"column": 44
}
}
@@ -35701,16 +35054,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15517,
- 15521
+ 15264,
+ 15268
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 8
},
"end": {
- "line": 364,
+ "line": 356,
"column": 12
}
}
@@ -35719,31 +35072,31 @@
"type": "Identifier",
"name": "colDateType",
"range": [
- 15522,
- 15533
+ 15269,
+ 15280
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 13
},
"end": {
- "line": 364,
+ "line": 356,
"column": 24
}
}
},
"range": [
- 15517,
- 15533
+ 15264,
+ 15280
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 8
},
"end": {
- "line": 364,
+ "line": 356,
"column": 24
}
}
@@ -35756,16 +35109,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 15536,
- 15540
+ 15283,
+ 15287
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 27
},
"end": {
- "line": 364,
+ "line": 356,
"column": 31
}
}
@@ -35774,31 +35127,31 @@
"type": "Identifier",
"name": "hasColDateType",
"range": [
- 15541,
- 15555
+ 15288,
+ 15302
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 32
},
"end": {
- "line": 364,
+ "line": 356,
"column": 46
}
}
},
"range": [
- 15536,
- 15555
+ 15283,
+ 15302
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 27
},
"end": {
- "line": 364,
+ "line": 356,
"column": 46
}
}
@@ -35810,16 +35163,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 15558,
- 15559
+ 15305,
+ 15306
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 49
},
"end": {
- "line": 364,
+ "line": 356,
"column": 50
}
}
@@ -35828,31 +35181,31 @@
"type": "Identifier",
"name": "col_date_type",
"range": [
- 15560,
- 15573
+ 15307,
+ 15320
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 51
},
"end": {
- "line": 364,
+ "line": 356,
"column": 64
}
}
},
"range": [
- 15558,
- 15573
+ 15305,
+ 15320
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 49
},
"end": {
- "line": 364,
+ "line": 356,
"column": 64
}
}
@@ -35862,61 +35215,61 @@
"value": null,
"raw": "null",
"range": [
- 15576,
- 15580
+ 15323,
+ 15327
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 67
},
"end": {
- "line": 364,
+ "line": 356,
"column": 71
}
}
},
"range": [
- 15536,
- 15580
+ 15283,
+ 15327
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 27
},
"end": {
- "line": 364,
+ "line": 356,
"column": 71
}
}
},
"range": [
- 15517,
- 15580
+ 15264,
+ 15327
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 8
},
"end": {
- "line": 364,
+ "line": 356,
"column": 71
}
}
},
"range": [
- 15517,
- 15581
+ 15264,
+ 15328
],
"loc": {
"start": {
- "line": 364,
+ "line": 356,
"column": 8
},
"end": {
- "line": 364,
+ "line": 356,
"column": 72
}
},
@@ -35925,2700 +35278,36 @@
"type": "Line",
"value": "array containing columns date type",
"range": [
- 15472,
- 15508
+ 15219,
+ 15255
],
"loc": {
"start": {
- "line": 363,
+ "line": 355,
"column": 8
},
"end": {
- "line": 363,
+ "line": 355,
"column": 44
}
}
}
],
- "trailingComments": [
- {
- "type": "Block",
- "value": "** status messages **",
- "range": [
- 15591,
- 15616
- ],
- "loc": {
- "start": {
- "line": 366,
- "column": 8
- },
- "end": {
- "line": 366,
- "column": 33
- }
- }
- },
- {
- "type": "Line",
- "value": "filtering",
- "range": [
- 15625,
- 15636
- ],
- "loc": {
- "start": {
- "line": 367,
- "column": 8
- },
- "end": {
- "line": 367,
- "column": 19
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 15645,
- 15649
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 8
- },
- "end": {
- "line": 368,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgFilter",
- "range": [
- 15650,
- 15659
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 13
- },
- "end": {
- "line": 368,
- "column": 22
- }
- }
- },
- "range": [
- 15645,
- 15659
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 8
- },
- "end": {
- "line": 368,
- "column": 22
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 15662,
- 15663
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 25
- },
- "end": {
- "line": 368,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_filter",
- "range": [
- 15664,
- 15674
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 27
- },
- "end": {
- "line": 368,
- "column": 37
- }
- }
- },
- "range": [
- 15662,
- 15674
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 25
- },
- "end": {
- "line": 368,
- "column": 37
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Filtering data...",
- "raw": "'Filtering data...'",
- "range": [
- 15678,
- 15697
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 41
- },
- "end": {
- "line": 368,
- "column": 60
- }
- }
- },
- "range": [
- 15662,
- 15697
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 25
- },
- "end": {
- "line": 368,
- "column": 60
- }
- }
- },
- "range": [
- 15645,
- 15697
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 8
- },
- "end": {
- "line": 368,
- "column": 60
- }
- }
- },
- "range": [
- 15645,
- 15698
- ],
- "loc": {
- "start": {
- "line": 368,
- "column": 8
- },
- "end": {
- "line": 368,
- "column": 61
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** status messages **",
- "range": [
- 15591,
- 15616
- ],
- "loc": {
- "start": {
- "line": 366,
- "column": 8
- },
- "end": {
- "line": 366,
- "column": 33
- }
- }
- },
- {
- "type": "Line",
- "value": "filtering",
- "range": [
- 15625,
- 15636
- ],
- "loc": {
- "start": {
- "line": 367,
- "column": 8
- },
- "end": {
- "line": 367,
- "column": 19
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15707,
- 15730
- ],
- "loc": {
- "start": {
- "line": 369,
- "column": 8
- },
- "end": {
- "line": 369,
- "column": 31
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 15739,
- 15743
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 8
- },
- "end": {
- "line": 370,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgPopulate",
- "range": [
- 15744,
- 15755
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 13
- },
- "end": {
- "line": 370,
- "column": 24
- }
- }
- },
- "range": [
- 15739,
- 15755
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 8
- },
- "end": {
- "line": 370,
- "column": 24
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 15758,
- 15759
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 27
- },
- "end": {
- "line": 370,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_populate",
- "range": [
- 15760,
- 15772
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 29
- },
- "end": {
- "line": 370,
- "column": 41
- }
- }
- },
- "range": [
- 15758,
- 15772
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 27
- },
- "end": {
- "line": 370,
- "column": 41
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Populating filter...",
- "raw": "'Populating filter...'",
- "range": [
- 15776,
- 15798
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 45
- },
- "end": {
- "line": 370,
- "column": 67
- }
- }
- },
- "range": [
- 15758,
- 15798
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 27
- },
- "end": {
- "line": 370,
- "column": 67
- }
- }
- },
- "range": [
- 15739,
- 15798
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 8
- },
- "end": {
- "line": 370,
- "column": 67
- }
- }
- },
- "range": [
- 15739,
- 15799
- ],
- "loc": {
- "start": {
- "line": 370,
- "column": 8
- },
- "end": {
- "line": 370,
- "column": 68
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15707,
- 15730
- ],
- "loc": {
- "start": {
- "line": 369,
- "column": 8
- },
- "end": {
- "line": 369,
- "column": 31
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15808,
- 15831
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 8
- },
- "end": {
- "line": 371,
- "column": 31
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 15840,
- 15844
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 8
- },
- "end": {
- "line": 372,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgPopulateCheckList",
- "range": [
- 15845,
- 15865
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 13
- },
- "end": {
- "line": 372,
- "column": 33
- }
- }
- },
- "range": [
- 15840,
- 15865
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 8
- },
- "end": {
- "line": 372,
- "column": 33
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 15868,
- 15869
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 36
- },
- "end": {
- "line": 372,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_populate_checklist",
- "range": [
- 15870,
- 15892
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 38
- },
- "end": {
- "line": 372,
- "column": 60
- }
- }
- },
- "range": [
- 15868,
- 15892
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 36
- },
- "end": {
- "line": 372,
- "column": 60
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Populating list...",
- "raw": "'Populating list...'",
- "range": [
- 15908,
- 15928
- ],
- "loc": {
- "start": {
- "line": 373,
- "column": 12
- },
- "end": {
- "line": 373,
- "column": 32
- }
- }
- },
- "range": [
- 15868,
- 15928
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 36
- },
- "end": {
- "line": 373,
- "column": 32
- }
- }
- },
- "range": [
- 15840,
- 15928
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 8
- },
- "end": {
- "line": 373,
- "column": 32
- }
- }
- },
- "range": [
- 15840,
- 15929
- ],
- "loc": {
- "start": {
- "line": 372,
- "column": 8
- },
- "end": {
- "line": 373,
- "column": 33
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15808,
- 15831
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 8
- },
- "end": {
- "line": 371,
- "column": 31
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "changing paging page",
- "range": [
- 15938,
- 15960
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 8
- },
- "end": {
- "line": 374,
- "column": 30
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 15969,
- 15973
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 8
- },
- "end": {
- "line": 375,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgChangePage",
- "range": [
- 15974,
- 15987
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 13
- },
- "end": {
- "line": 375,
- "column": 26
- }
- }
- },
- "range": [
- 15969,
- 15987
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 8
- },
- "end": {
- "line": 375,
- "column": 26
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 15990,
- 15991
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 29
- },
- "end": {
- "line": 375,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_change_page",
- "range": [
- 15992,
- 16007
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 31
- },
- "end": {
- "line": 375,
- "column": 46
- }
- }
- },
- "range": [
- 15990,
- 16007
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 29
- },
- "end": {
- "line": 375,
- "column": 46
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Collecting paging data...",
- "raw": "'Collecting paging data...'",
- "range": [
- 16011,
- 16038
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 50
- },
- "end": {
- "line": 375,
- "column": 77
- }
- }
- },
- "range": [
- 15990,
- 16038
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 29
- },
- "end": {
- "line": 375,
- "column": 77
- }
- }
- },
- "range": [
- 15969,
- 16038
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 8
- },
- "end": {
- "line": 375,
- "column": 77
- }
- }
- },
- "range": [
- 15969,
- 16039
- ],
- "loc": {
- "start": {
- "line": 375,
- "column": 8
- },
- "end": {
- "line": 375,
- "column": 78
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "changing paging page",
- "range": [
- 15938,
- 15960
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 8
- },
- "end": {
- "line": 374,
- "column": 30
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "clearing filters",
- "range": [
- 16048,
- 16066
- ],
- "loc": {
- "start": {
- "line": 376,
- "column": 8
- },
- "end": {
- "line": 376,
- "column": 26
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16075,
- 16079
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 8
- },
- "end": {
- "line": 377,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgClear",
- "range": [
- 16080,
- 16088
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 13
- },
- "end": {
- "line": 377,
- "column": 21
- }
- }
- },
- "range": [
- 16075,
- 16088
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 8
- },
- "end": {
- "line": 377,
- "column": 21
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16091,
- 16092
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 24
- },
- "end": {
- "line": 377,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_clear",
- "range": [
- 16093,
- 16102
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 26
- },
- "end": {
- "line": 377,
- "column": 35
- }
- }
- },
- "range": [
- 16091,
- 16102
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 24
- },
- "end": {
- "line": 377,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Clearing filters...",
- "raw": "'Clearing filters...'",
- "range": [
- 16106,
- 16127
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 39
- },
- "end": {
- "line": 377,
- "column": 60
- }
- }
- },
- "range": [
- 16091,
- 16127
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 24
- },
- "end": {
- "line": 377,
- "column": 60
- }
- }
- },
- "range": [
- 16075,
- 16127
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 8
- },
- "end": {
- "line": 377,
- "column": 60
- }
- }
- },
- "range": [
- 16075,
- 16128
- ],
- "loc": {
- "start": {
- "line": 377,
- "column": 8
- },
- "end": {
- "line": 377,
- "column": 61
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "clearing filters",
- "range": [
- 16048,
- 16066
- ],
- "loc": {
- "start": {
- "line": 376,
- "column": 8
- },
- "end": {
- "line": 376,
- "column": 26
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "changing nb results/page",
- "range": [
- 16137,
- 16163
- ],
- "loc": {
- "start": {
- "line": 378,
- "column": 8
- },
- "end": {
- "line": 378,
- "column": 34
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16172,
- 16176
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 8
- },
- "end": {
- "line": 379,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgChangeResults",
- "range": [
- 16177,
- 16193
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 13
- },
- "end": {
- "line": 379,
- "column": 29
- }
- }
- },
- "range": [
- 16172,
- 16193
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 8
- },
- "end": {
- "line": 379,
- "column": 29
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16196,
- 16197
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 32
- },
- "end": {
- "line": 379,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_change_results",
- "range": [
- 16198,
- 16216
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 34
- },
- "end": {
- "line": 379,
- "column": 52
- }
- }
- },
- "range": [
- 16196,
- 16216
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 32
- },
- "end": {
- "line": 379,
- "column": 52
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Changing results per page...",
- "raw": "'Changing results per page...'",
- "range": [
- 16232,
- 16262
- ],
- "loc": {
- "start": {
- "line": 380,
- "column": 12
- },
- "end": {
- "line": 380,
- "column": 42
- }
- }
- },
- "range": [
- 16196,
- 16262
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 32
- },
- "end": {
- "line": 380,
- "column": 42
- }
- }
- },
- "range": [
- 16172,
- 16262
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 8
- },
- "end": {
- "line": 380,
- "column": 42
- }
- }
- },
- "range": [
- 16172,
- 16263
- ],
- "loc": {
- "start": {
- "line": 379,
- "column": 8
- },
- "end": {
- "line": 380,
- "column": 43
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "changing nb results/page",
- "range": [
- 16137,
- 16163
- ],
- "loc": {
- "start": {
- "line": 378,
- "column": 8
- },
- "end": {
- "line": 378,
- "column": 34
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "re-setting grid values",
- "range": [
- 16272,
- 16296
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 8
- },
- "end": {
- "line": 381,
- "column": 32
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16305,
- 16309
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 8
- },
- "end": {
- "line": 382,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgResetValues",
- "range": [
- 16310,
- 16324
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 13
- },
- "end": {
- "line": 382,
- "column": 27
- }
- }
- },
- "range": [
- 16305,
- 16324
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 8
- },
- "end": {
- "line": 382,
- "column": 27
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16327,
- 16328
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 30
- },
- "end": {
- "line": 382,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_reset_grid_values",
- "range": [
- 16329,
- 16350
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 32
- },
- "end": {
- "line": 382,
- "column": 53
- }
- }
- },
- "range": [
- 16327,
- 16350
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 30
- },
- "end": {
- "line": 382,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Re-setting filters values...",
- "raw": "'Re-setting filters values...'",
- "range": [
- 16366,
- 16396
- ],
- "loc": {
- "start": {
- "line": 383,
- "column": 12
- },
- "end": {
- "line": 383,
- "column": 42
- }
- }
- },
- "range": [
- 16327,
- 16396
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 30
- },
- "end": {
- "line": 383,
- "column": 42
- }
- }
- },
- "range": [
- 16305,
- 16396
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 8
- },
- "end": {
- "line": 383,
- "column": 42
- }
- }
- },
- "range": [
- 16305,
- 16397
- ],
- "loc": {
- "start": {
- "line": 382,
- "column": 8
- },
- "end": {
- "line": 383,
- "column": 43
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "re-setting grid values",
- "range": [
- 16272,
- 16296
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 8
- },
- "end": {
- "line": 381,
- "column": 32
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "re-setting page",
- "range": [
- 16406,
- 16423
- ],
- "loc": {
- "start": {
- "line": 384,
- "column": 8
- },
- "end": {
- "line": 384,
- "column": 25
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16432,
- 16436
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 8
- },
- "end": {
- "line": 385,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgResetPage",
- "range": [
- 16437,
- 16449
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 13
- },
- "end": {
- "line": 385,
- "column": 25
- }
- }
- },
- "range": [
- 16432,
- 16449
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 8
- },
- "end": {
- "line": 385,
- "column": 25
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16452,
- 16453
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 28
- },
- "end": {
- "line": 385,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_reset_page",
- "range": [
- 16454,
- 16468
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 30
- },
- "end": {
- "line": 385,
- "column": 44
- }
- }
- },
- "range": [
- 16452,
- 16468
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 28
- },
- "end": {
- "line": 385,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Re-setting page...",
- "raw": "'Re-setting page...'",
- "range": [
- 16472,
- 16492
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 48
- },
- "end": {
- "line": 385,
- "column": 68
- }
- }
- },
- "range": [
- 16452,
- 16492
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 28
- },
- "end": {
- "line": 385,
- "column": 68
- }
- }
- },
- "range": [
- 16432,
- 16492
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 8
- },
- "end": {
- "line": 385,
- "column": 68
- }
- }
- },
- "range": [
- 16432,
- 16493
- ],
- "loc": {
- "start": {
- "line": 385,
- "column": 8
- },
- "end": {
- "line": 385,
- "column": 69
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "re-setting page",
- "range": [
- 16406,
- 16423
- ],
- "loc": {
- "start": {
- "line": 384,
- "column": 8
- },
- "end": {
- "line": 384,
- "column": 25
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "re-setting page length",
- "range": [
- 16502,
- 16526
- ],
- "loc": {
- "start": {
- "line": 386,
- "column": 8
- },
- "end": {
- "line": 386,
- "column": 32
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16535,
- 16539
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 8
- },
- "end": {
- "line": 387,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgResetPageLength",
- "range": [
- 16540,
- 16558
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 13
- },
- "end": {
- "line": 387,
- "column": 31
- }
- }
- },
- "range": [
- 16535,
- 16558
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 8
- },
- "end": {
- "line": 387,
- "column": 31
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16561,
- 16562
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 34
- },
- "end": {
- "line": 387,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_reset_page_length",
- "range": [
- 16563,
- 16584
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 36
- },
- "end": {
- "line": 387,
- "column": 57
- }
- }
- },
- "range": [
- 16561,
- 16584
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 34
- },
- "end": {
- "line": 387,
- "column": 57
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Re-setting page length...",
- "raw": "'Re-setting page length...'",
- "range": [
- 16600,
- 16627
- ],
- "loc": {
- "start": {
- "line": 388,
- "column": 12
- },
- "end": {
- "line": 388,
- "column": 39
- }
- }
- },
- "range": [
- 16561,
- 16627
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 34
- },
- "end": {
- "line": 388,
- "column": 39
- }
- }
- },
- "range": [
- 16535,
- 16627
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 8
- },
- "end": {
- "line": 388,
- "column": 39
- }
- }
- },
- "range": [
- 16535,
- 16628
- ],
- "loc": {
- "start": {
- "line": 387,
- "column": 8
- },
- "end": {
- "line": 388,
- "column": 40
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "re-setting page length",
- "range": [
- 16502,
- 16526
- ],
- "loc": {
- "start": {
- "line": 386,
- "column": 8
- },
- "end": {
- "line": 386,
- "column": 32
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "table sorting",
- "range": [
- 16637,
- 16652
- ],
- "loc": {
- "start": {
- "line": 389,
- "column": 8
- },
- "end": {
- "line": 389,
- "column": 23
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16661,
- 16665
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 8
- },
- "end": {
- "line": 390,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgSort",
- "range": [
- 16666,
- 16673
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 13
- },
- "end": {
- "line": 390,
- "column": 20
- }
- }
- },
- "range": [
- 16661,
- 16673
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 8
- },
- "end": {
- "line": 390,
- "column": 20
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16676,
- 16677
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 23
- },
- "end": {
- "line": 390,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_sort",
- "range": [
- 16678,
- 16686
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 25
- },
- "end": {
- "line": 390,
- "column": 33
- }
- }
- },
- "range": [
- 16676,
- 16686
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 23
- },
- "end": {
- "line": 390,
- "column": 33
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Sorting data...",
- "raw": "'Sorting data...'",
- "range": [
- 16690,
- 16707
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 37
- },
- "end": {
- "line": 390,
- "column": 54
- }
- }
- },
- "range": [
- 16676,
- 16707
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 23
- },
- "end": {
- "line": 390,
- "column": 54
- }
- }
- },
- "range": [
- 16661,
- 16707
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 8
- },
- "end": {
- "line": 390,
- "column": 54
- }
- }
- },
- "range": [
- 16661,
- 16708
- ],
- "loc": {
- "start": {
- "line": 390,
- "column": 8
- },
- "end": {
- "line": 390,
- "column": 55
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "table sorting",
- "range": [
- 16637,
- 16652
- ],
- "loc": {
- "start": {
- "line": 389,
- "column": 8
- },
- "end": {
- "line": 389,
- "column": 23
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "extensions loading",
- "range": [
- 16717,
- 16737
- ],
- "loc": {
- "start": {
- "line": 391,
- "column": 8
- },
- "end": {
- "line": 391,
- "column": 28
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16746,
- 16750
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 8
- },
- "end": {
- "line": 392,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgLoadExtensions",
- "range": [
- 16751,
- 16768
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 13
- },
- "end": {
- "line": 392,
- "column": 30
- }
- }
- },
- "range": [
- 16746,
- 16768
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 8
- },
- "end": {
- "line": 392,
- "column": 30
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16771,
- 16772
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 33
- },
- "end": {
- "line": 392,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_load_extensions",
- "range": [
- 16773,
- 16792
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 35
- },
- "end": {
- "line": 392,
- "column": 54
- }
- }
- },
- "range": [
- 16771,
- 16792
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 33
- },
- "end": {
- "line": 392,
- "column": 54
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Loading extensions...",
- "raw": "'Loading extensions...'",
- "range": [
- 16808,
- 16831
- ],
- "loc": {
- "start": {
- "line": 393,
- "column": 12
- },
- "end": {
- "line": 393,
- "column": 35
- }
- }
- },
- "range": [
- 16771,
- 16831
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 33
- },
- "end": {
- "line": 393,
- "column": 35
- }
- }
- },
- "range": [
- 16746,
- 16831
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 8
- },
- "end": {
- "line": 393,
- "column": 35
- }
- }
- },
- "range": [
- 16746,
- 16832
- ],
- "loc": {
- "start": {
- "line": 392,
- "column": 8
- },
- "end": {
- "line": 393,
- "column": 36
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "extensions loading",
- "range": [
- 16717,
- 16737
- ],
- "loc": {
- "start": {
- "line": 391,
- "column": 8
- },
- "end": {
- "line": 391,
- "column": 28
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "themes loading",
- "range": [
- 16841,
- 16857
- ],
- "loc": {
- "start": {
- "line": 394,
- "column": 8
- },
- "end": {
- "line": 394,
- "column": 24
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 16866,
- 16870
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 8
- },
- "end": {
- "line": 395,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msgLoadThemes",
- "range": [
- 16871,
- 16884
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 13
- },
- "end": {
- "line": 395,
- "column": 26
- }
- }
- },
- "range": [
- 16866,
- 16884
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 8
- },
- "end": {
- "line": 395,
- "column": 26
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 16887,
- 16888
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 29
- },
- "end": {
- "line": 395,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "msg_load_themes",
- "range": [
- 16889,
- 16904
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 31
- },
- "end": {
- "line": 395,
- "column": 46
- }
- }
- },
- "range": [
- 16887,
- 16904
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 29
- },
- "end": {
- "line": 395,
- "column": 46
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "Loading theme(s)...",
- "raw": "'Loading theme(s)...'",
- "range": [
- 16908,
- 16929
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 50
- },
- "end": {
- "line": 395,
- "column": 71
- }
- }
- },
- "range": [
- 16887,
- 16929
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 29
- },
- "end": {
- "line": 395,
- "column": 71
- }
- }
- },
- "range": [
- 16866,
- 16929
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 8
- },
- "end": {
- "line": 395,
- "column": 71
- }
- }
- },
- "range": [
- 16866,
- 16930
- ],
- "loc": {
- "start": {
- "line": 395,
- "column": 8
- },
- "end": {
- "line": 395,
- "column": 72
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "themes loading",
- "range": [
- 16841,
- 16857
- ],
- "loc": {
- "start": {
- "line": 394,
- "column": 8
- },
- "end": {
- "line": 394,
- "column": 24
- }
- }
- }
- ],
"trailingComments": [
{
"type": "Block",
"value": "** ids prefixes **",
"range": [
- 16940,
- 16962
+ 15338,
+ 15360
],
"loc": {
"start": {
- "line": 397,
+ "line": 358,
"column": 8
},
"end": {
- "line": 397,
+ "line": 358,
"column": 30
}
}
@@ -38627,16 +35316,16 @@
"type": "Line",
"value": "css class name added to table",
"range": [
- 16971,
- 17002
+ 15369,
+ 15400
],
"loc": {
"start": {
- "line": 398,
+ "line": 359,
"column": 8
},
"end": {
- "line": 398,
+ "line": 359,
"column": 39
}
}
@@ -38654,16 +35343,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17011,
- 17015
+ 15409,
+ 15413
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 8
},
"end": {
- "line": 399,
+ "line": 360,
"column": 12
}
}
@@ -38672,31 +35361,31 @@
"type": "Identifier",
"name": "prfxTf",
"range": [
- 17016,
- 17022
+ 15414,
+ 15420
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 13
},
"end": {
- "line": 399,
+ "line": 360,
"column": 19
}
}
},
"range": [
- 17011,
- 17022
+ 15409,
+ 15420
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 8
},
"end": {
- "line": 399,
+ "line": 360,
"column": 19
}
}
@@ -38706,46 +35395,46 @@
"value": "TF",
"raw": "'TF'",
"range": [
- 17025,
- 17029
+ 15423,
+ 15427
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 22
},
"end": {
- "line": 399,
+ "line": 360,
"column": 26
}
}
},
"range": [
- 17011,
- 17029
+ 15409,
+ 15427
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 8
},
"end": {
- "line": 399,
+ "line": 360,
"column": 26
}
}
},
"range": [
- 17011,
- 17030
+ 15409,
+ 15428
],
"loc": {
"start": {
- "line": 399,
+ "line": 360,
"column": 8
},
"end": {
- "line": 399,
+ "line": 360,
"column": 27
}
},
@@ -38754,16 +35443,16 @@
"type": "Block",
"value": "** ids prefixes **",
"range": [
- 16940,
- 16962
+ 15338,
+ 15360
],
"loc": {
"start": {
- "line": 397,
+ "line": 358,
"column": 8
},
"end": {
- "line": 397,
+ "line": 358,
"column": 30
}
}
@@ -38772,16 +35461,16 @@
"type": "Line",
"value": "css class name added to table",
"range": [
- 16971,
- 17002
+ 15369,
+ 15400
],
"loc": {
"start": {
- "line": 398,
+ "line": 359,
"column": 8
},
"end": {
- "line": 398,
+ "line": 359,
"column": 39
}
}
@@ -38792,16 +35481,16 @@
"type": "Line",
"value": "filters (inputs - selects)",
"range": [
- 17039,
- 17067
+ 15437,
+ 15465
],
"loc": {
"start": {
- "line": 400,
+ "line": 361,
"column": 8
},
"end": {
- "line": 400,
+ "line": 361,
"column": 36
}
}
@@ -38819,16 +35508,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 17076,
- 17080
+ 15474,
+ 15478
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 8
},
"end": {
- "line": 401,
+ "line": 362,
"column": 12
}
}
@@ -38837,31 +35526,31 @@
"type": "Identifier",
"name": "prfxFlt",
"range": [
- 17081,
- 17088
+ 15479,
+ 15486
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 13
},
"end": {
- "line": 401,
+ "line": 362,
"column": 20
}
}
},
"range": [
- 17076,
- 17088
+ 15474,
+ 15486
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 8
},
"end": {
- "line": 401,
+ "line": 362,
"column": 20
}
}
@@ -38871,46 +35560,46 @@
"value": "flt",
"raw": "'flt'",
"range": [
- 17091,
- 17096
+ 15489,
+ 15494
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 23
},
"end": {
- "line": 401,
+ "line": 362,
"column": 28
}
}
},
"range": [
- 17076,
- 17096
+ 15474,
+ 15494
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 8
},
"end": {
- "line": 401,
+ "line": 362,
"column": 28
}
}
},
"range": [
- 17076,
- 17097
+ 15474,
+ 15495
],
"loc": {
"start": {
- "line": 401,
+ "line": 362,
"column": 8
},
"end": {
- "line": 401,
+ "line": 362,
"column": 29
}
},
@@ -38919,16 +35608,16 @@
"type": "Line",
"value": "filters (inputs - selects)",
"range": [
- 17039,
- 17067
+ 15437,
+ 15465
],
"loc": {
"start": {
- "line": 400,
+ "line": 361,
"column": 8
},
"end": {
- "line": 400,
+ "line": 361,
"column": 36
}
}
@@ -38939,8 +35628,3412 @@
"type": "Line",
"value": "validation button",
"range": [
- 17106,
- 17125
+ 15504,
+ 15523
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 8
+ },
+ "end": {
+ "line": 363,
+ "column": 27
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15532,
+ 15536
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxValButton",
+ "range": [
+ 15537,
+ 15550
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 13
+ },
+ "end": {
+ "line": 364,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 15532,
+ 15550
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "btn",
+ "raw": "'btn'",
+ "range": [
+ 15553,
+ 15558
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 29
+ },
+ "end": {
+ "line": 364,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 15532,
+ 15558
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 15532,
+ 15559
+ ],
+ "loc": {
+ "start": {
+ "line": 364,
+ "column": 8
+ },
+ "end": {
+ "line": 364,
+ "column": 35
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "validation button",
+ "range": [
+ 15504,
+ 15523
+ ],
+ "loc": {
+ "start": {
+ "line": 363,
+ "column": 8
+ },
+ "end": {
+ "line": 363,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "container div for paging elements, rows counter etc.",
+ "range": [
+ 15568,
+ 15622
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 62
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15631,
+ 15635
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxInfDiv",
+ "range": [
+ 15636,
+ 15646
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 13
+ },
+ "end": {
+ "line": 366,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 15631,
+ 15646
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "inf_",
+ "raw": "'inf_'",
+ "range": [
+ 15649,
+ 15655
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 26
+ },
+ "end": {
+ "line": 366,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 15631,
+ 15655
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 15631,
+ 15656
+ ],
+ "loc": {
+ "start": {
+ "line": 366,
+ "column": 8
+ },
+ "end": {
+ "line": 366,
+ "column": 33
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "container div for paging elements, rows counter etc.",
+ "range": [
+ 15568,
+ 15622
+ ],
+ "loc": {
+ "start": {
+ "line": 365,
+ "column": 8
+ },
+ "end": {
+ "line": 365,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "left div",
+ "range": [
+ 15665,
+ 15675
+ ],
+ "loc": {
+ "start": {
+ "line": 367,
+ "column": 8
+ },
+ "end": {
+ "line": 367,
+ "column": 18
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15684,
+ 15688
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 8
+ },
+ "end": {
+ "line": 368,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxLDiv",
+ "range": [
+ 15689,
+ 15697
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 13
+ },
+ "end": {
+ "line": 368,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 15684,
+ 15697
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 8
+ },
+ "end": {
+ "line": 368,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "ldiv_",
+ "raw": "'ldiv_'",
+ "range": [
+ 15700,
+ 15707
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 24
+ },
+ "end": {
+ "line": 368,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15684,
+ 15707
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 8
+ },
+ "end": {
+ "line": 368,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15684,
+ 15708
+ ],
+ "loc": {
+ "start": {
+ "line": 368,
+ "column": 8
+ },
+ "end": {
+ "line": 368,
+ "column": 32
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "left div",
+ "range": [
+ 15665,
+ 15675
+ ],
+ "loc": {
+ "start": {
+ "line": 367,
+ "column": 8
+ },
+ "end": {
+ "line": 367,
+ "column": 18
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "right div",
+ "range": [
+ 15717,
+ 15728
+ ],
+ "loc": {
+ "start": {
+ "line": 369,
+ "column": 8
+ },
+ "end": {
+ "line": 369,
+ "column": 19
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15737,
+ 15741
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 8
+ },
+ "end": {
+ "line": 370,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxRDiv",
+ "range": [
+ 15742,
+ 15750
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 13
+ },
+ "end": {
+ "line": 370,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 15737,
+ 15750
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 8
+ },
+ "end": {
+ "line": 370,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "rdiv_",
+ "raw": "'rdiv_'",
+ "range": [
+ 15753,
+ 15760
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 24
+ },
+ "end": {
+ "line": 370,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15737,
+ 15760
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 8
+ },
+ "end": {
+ "line": 370,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15737,
+ 15761
+ ],
+ "loc": {
+ "start": {
+ "line": 370,
+ "column": 8
+ },
+ "end": {
+ "line": 370,
+ "column": 32
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "right div",
+ "range": [
+ 15717,
+ 15728
+ ],
+ "loc": {
+ "start": {
+ "line": 369,
+ "column": 8
+ },
+ "end": {
+ "line": 369,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "middle div",
+ "range": [
+ 15770,
+ 15782
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 8
+ },
+ "end": {
+ "line": 371,
+ "column": 20
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15791,
+ 15795
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 8
+ },
+ "end": {
+ "line": 372,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxMDiv",
+ "range": [
+ 15796,
+ 15804
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 13
+ },
+ "end": {
+ "line": 372,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 15791,
+ 15804
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 8
+ },
+ "end": {
+ "line": 372,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "mdiv_",
+ "raw": "'mdiv_'",
+ "range": [
+ 15807,
+ 15814
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 24
+ },
+ "end": {
+ "line": 372,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15791,
+ 15814
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 8
+ },
+ "end": {
+ "line": 372,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 15791,
+ 15815
+ ],
+ "loc": {
+ "start": {
+ "line": 372,
+ "column": 8
+ },
+ "end": {
+ "line": 372,
+ "column": 32
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "middle div",
+ "range": [
+ 15770,
+ 15782
+ ],
+ "loc": {
+ "start": {
+ "line": 371,
+ "column": 8
+ },
+ "end": {
+ "line": 371,
+ "column": 20
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filter values cookie",
+ "range": [
+ 15824,
+ 15846
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 8
+ },
+ "end": {
+ "line": 373,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15855,
+ 15859
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 8
+ },
+ "end": {
+ "line": 374,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookieFltsValues",
+ "range": [
+ 15860,
+ 15880
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 13
+ },
+ "end": {
+ "line": 374,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 15855,
+ 15880
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 8
+ },
+ "end": {
+ "line": 374,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "tf_flts_",
+ "raw": "'tf_flts_'",
+ "range": [
+ 15883,
+ 15893
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 36
+ },
+ "end": {
+ "line": 374,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 15855,
+ 15893
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 8
+ },
+ "end": {
+ "line": 374,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 15855,
+ 15894
+ ],
+ "loc": {
+ "start": {
+ "line": 374,
+ "column": 8
+ },
+ "end": {
+ "line": 374,
+ "column": 47
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filter values cookie",
+ "range": [
+ 15824,
+ 15846
+ ],
+ "loc": {
+ "start": {
+ "line": 373,
+ "column": 8
+ },
+ "end": {
+ "line": 373,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "page nb cookie",
+ "range": [
+ 15903,
+ 15919
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 8
+ },
+ "end": {
+ "line": 375,
+ "column": 24
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 15928,
+ 15932
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookiePageNb",
+ "range": [
+ 15933,
+ 15949
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 13
+ },
+ "end": {
+ "line": 376,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 15928,
+ 15949
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "tf_pgnb_",
+ "raw": "'tf_pgnb_'",
+ "range": [
+ 15952,
+ 15962
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 32
+ },
+ "end": {
+ "line": 376,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 15928,
+ 15962
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 15928,
+ 15963
+ ],
+ "loc": {
+ "start": {
+ "line": 376,
+ "column": 8
+ },
+ "end": {
+ "line": 376,
+ "column": 43
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "page nb cookie",
+ "range": [
+ 15903,
+ 15919
+ ],
+ "loc": {
+ "start": {
+ "line": 375,
+ "column": 8
+ },
+ "end": {
+ "line": 375,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "page length cookie",
+ "range": [
+ 15972,
+ 15992
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 8
+ },
+ "end": {
+ "line": 377,
+ "column": 28
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16001,
+ 16005
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 8
+ },
+ "end": {
+ "line": 378,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookiePageLen",
+ "range": [
+ 16006,
+ 16023
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 13
+ },
+ "end": {
+ "line": 378,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 16001,
+ 16023
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 8
+ },
+ "end": {
+ "line": 378,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "tf_pglen_",
+ "raw": "'tf_pglen_'",
+ "range": [
+ 16026,
+ 16037
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 33
+ },
+ "end": {
+ "line": 378,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 16001,
+ 16037
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 8
+ },
+ "end": {
+ "line": 378,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 16001,
+ 16038
+ ],
+ "loc": {
+ "start": {
+ "line": 378,
+ "column": 8
+ },
+ "end": {
+ "line": 378,
+ "column": 45
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "page length cookie",
+ "range": [
+ 15972,
+ 15992
+ ],
+ "loc": {
+ "start": {
+ "line": 377,
+ "column": 8
+ },
+ "end": {
+ "line": 377,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "** cookies **",
+ "range": [
+ 16048,
+ 16065
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 8
+ },
+ "end": {
+ "line": 380,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "remembers filters values on page load",
+ "range": [
+ 16074,
+ 16113
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 8
+ },
+ "end": {
+ "line": 381,
+ "column": 47
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16122,
+ 16126
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberGridValues",
+ "range": [
+ 16127,
+ 16145
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 13
+ },
+ "end": {
+ "line": 382,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 16122,
+ 16145
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Boolean",
+ "range": [
+ 16148,
+ 16155
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 34
+ },
+ "end": {
+ "line": 382,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 16156,
+ 16157
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 42
+ },
+ "end": {
+ "line": 382,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remember_grid_values",
+ "range": [
+ 16158,
+ 16178
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 44
+ },
+ "end": {
+ "line": 382,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 16156,
+ 16178
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 42
+ },
+ "end": {
+ "line": 382,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 16148,
+ 16179
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 34
+ },
+ "end": {
+ "line": 382,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 16122,
+ 16179
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 16122,
+ 16180
+ ],
+ "loc": {
+ "start": {
+ "line": 382,
+ "column": 8
+ },
+ "end": {
+ "line": 382,
+ "column": 66
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "** cookies **",
+ "range": [
+ 16048,
+ 16065
+ ],
+ "loc": {
+ "start": {
+ "line": 380,
+ "column": 8
+ },
+ "end": {
+ "line": 380,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "remembers filters values on page load",
+ "range": [
+ 16074,
+ 16113
+ ],
+ "loc": {
+ "start": {
+ "line": 381,
+ "column": 8
+ },
+ "end": {
+ "line": 381,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing filter values",
+ "range": [
+ 16189,
+ 16219
+ ],
+ "loc": {
+ "start": {
+ "line": 383,
+ "column": 8
+ },
+ "end": {
+ "line": 383,
+ "column": 38
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16228,
+ 16232
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 8
+ },
+ "end": {
+ "line": 384,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltsValuesCookie",
+ "range": [
+ 16233,
+ 16249
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 13
+ },
+ "end": {
+ "line": 384,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 16228,
+ 16249
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 8
+ },
+ "end": {
+ "line": 384,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16252,
+ 16256
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 32
+ },
+ "end": {
+ "line": 384,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookieFltsValues",
+ "range": [
+ 16257,
+ 16277
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 37
+ },
+ "end": {
+ "line": 384,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 16252,
+ 16277
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 32
+ },
+ "end": {
+ "line": 384,
+ "column": 57
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16280,
+ 16284
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 60
+ },
+ "end": {
+ "line": 384,
+ "column": 64
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 16285,
+ 16287
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 65
+ },
+ "end": {
+ "line": 384,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16280,
+ 16287
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 60
+ },
+ "end": {
+ "line": 384,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16252,
+ 16287
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 32
+ },
+ "end": {
+ "line": 384,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16228,
+ 16287
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 8
+ },
+ "end": {
+ "line": 384,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16228,
+ 16288
+ ],
+ "loc": {
+ "start": {
+ "line": 384,
+ "column": 8
+ },
+ "end": {
+ "line": 384,
+ "column": 68
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing filter values",
+ "range": [
+ 16189,
+ 16219
+ ],
+ "loc": {
+ "start": {
+ "line": 383,
+ "column": 8
+ },
+ "end": {
+ "line": 383,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "remembers page nb on page load",
+ "range": [
+ 16297,
+ 16329
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 8
+ },
+ "end": {
+ "line": 385,
+ "column": 40
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16338,
+ 16342
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 8
+ },
+ "end": {
+ "line": 386,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageNb",
+ "range": [
+ 16343,
+ 16357
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 13
+ },
+ "end": {
+ "line": 386,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 16338,
+ 16357
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 8
+ },
+ "end": {
+ "line": 386,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16360,
+ 16364
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 30
+ },
+ "end": {
+ "line": 386,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 16365,
+ 16371
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 35
+ },
+ "end": {
+ "line": 386,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 16360,
+ 16371
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 30
+ },
+ "end": {
+ "line": 386,
+ "column": 41
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 16375,
+ 16376
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 45
+ },
+ "end": {
+ "line": 386,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remember_page_number",
+ "range": [
+ 16377,
+ 16397
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 47
+ },
+ "end": {
+ "line": 386,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16375,
+ 16397
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 45
+ },
+ "end": {
+ "line": 386,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16360,
+ 16397
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 30
+ },
+ "end": {
+ "line": 386,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16338,
+ 16397
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 8
+ },
+ "end": {
+ "line": 386,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 16338,
+ 16398
+ ],
+ "loc": {
+ "start": {
+ "line": 386,
+ "column": 8
+ },
+ "end": {
+ "line": 386,
+ "column": 68
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "remembers page nb on page load",
+ "range": [
+ 16297,
+ 16329
+ ],
+ "loc": {
+ "start": {
+ "line": 385,
+ "column": 8
+ },
+ "end": {
+ "line": 385,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing page nb",
+ "range": [
+ 16407,
+ 16431
+ ],
+ "loc": {
+ "start": {
+ "line": 387,
+ "column": 8
+ },
+ "end": {
+ "line": 387,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16440,
+ 16444
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 8
+ },
+ "end": {
+ "line": 388,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgNbCookie",
+ "range": [
+ 16445,
+ 16455
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 13
+ },
+ "end": {
+ "line": 388,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 16440,
+ 16455
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 8
+ },
+ "end": {
+ "line": 388,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16458,
+ 16462
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 26
+ },
+ "end": {
+ "line": 388,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookiePageNb",
+ "range": [
+ 16463,
+ 16479
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 31
+ },
+ "end": {
+ "line": 388,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 16458,
+ 16479
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 26
+ },
+ "end": {
+ "line": 388,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16482,
+ 16486
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 50
+ },
+ "end": {
+ "line": 388,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 16487,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 55
+ },
+ "end": {
+ "line": 388,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 16482,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 50
+ },
+ "end": {
+ "line": 388,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 16458,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 26
+ },
+ "end": {
+ "line": 388,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 16440,
+ 16489
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 8
+ },
+ "end": {
+ "line": 388,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 16440,
+ 16490
+ ],
+ "loc": {
+ "start": {
+ "line": 388,
+ "column": 8
+ },
+ "end": {
+ "line": 388,
+ "column": 58
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing page nb",
+ "range": [
+ 16407,
+ 16431
+ ],
+ "loc": {
+ "start": {
+ "line": 387,
+ "column": 8
+ },
+ "end": {
+ "line": 387,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "remembers page length on page load",
+ "range": [
+ 16499,
+ 16535
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 8
+ },
+ "end": {
+ "line": 389,
+ "column": 44
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16544,
+ 16548
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 8
+ },
+ "end": {
+ "line": 390,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageLen",
+ "range": [
+ 16549,
+ 16564
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 13
+ },
+ "end": {
+ "line": 390,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 16544,
+ 16564
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 8
+ },
+ "end": {
+ "line": 390,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16567,
+ 16571
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 31
+ },
+ "end": {
+ "line": 390,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 16572,
+ 16578
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 36
+ },
+ "end": {
+ "line": 390,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 16567,
+ 16578
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 31
+ },
+ "end": {
+ "line": 390,
+ "column": 42
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 16582,
+ 16583
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 46
+ },
+ "end": {
+ "line": 390,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "remember_page_length",
+ "range": [
+ 16584,
+ 16604
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 48
+ },
+ "end": {
+ "line": 390,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 16582,
+ 16604
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 46
+ },
+ "end": {
+ "line": 390,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 16567,
+ 16604
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 31
+ },
+ "end": {
+ "line": 390,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 16544,
+ 16604
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 8
+ },
+ "end": {
+ "line": 390,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 16544,
+ 16605
+ ],
+ "loc": {
+ "start": {
+ "line": 390,
+ "column": 8
+ },
+ "end": {
+ "line": 390,
+ "column": 69
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "remembers page length on page load",
+ "range": [
+ 16499,
+ 16535
+ ],
+ "loc": {
+ "start": {
+ "line": 389,
+ "column": 8
+ },
+ "end": {
+ "line": 389,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing page length",
+ "range": [
+ 16614,
+ 16642
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 8
+ },
+ "end": {
+ "line": 391,
+ "column": 36
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16651,
+ 16655
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 8
+ },
+ "end": {
+ "line": 392,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "pgLenCookie",
+ "range": [
+ 16656,
+ 16667
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 13
+ },
+ "end": {
+ "line": 392,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 16651,
+ 16667
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 8
+ },
+ "end": {
+ "line": 392,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16670,
+ 16674
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 27
+ },
+ "end": {
+ "line": 392,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxCookiePageLen",
+ "range": [
+ 16675,
+ 16692
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 32
+ },
+ "end": {
+ "line": 392,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 16670,
+ 16692
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 27
+ },
+ "end": {
+ "line": 392,
+ "column": 49
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16695,
+ 16699
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 52
+ },
+ "end": {
+ "line": 392,
+ "column": 56
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 16700,
+ 16702
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 57
+ },
+ "end": {
+ "line": 392,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16695,
+ 16702
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 52
+ },
+ "end": {
+ "line": 392,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16670,
+ 16702
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 27
+ },
+ "end": {
+ "line": 392,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16651,
+ 16702
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 8
+ },
+ "end": {
+ "line": 392,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16651,
+ 16703
+ ],
+ "loc": {
+ "start": {
+ "line": 392,
+ "column": 8
+ },
+ "end": {
+ "line": 392,
+ "column": 60
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "cookie storing page length",
+ "range": [
+ 16614,
+ 16642
+ ],
+ "loc": {
+ "start": {
+ "line": 391,
+ "column": 8
+ },
+ "end": {
+ "line": 391,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "** extensions **",
+ "range": [
+ 16713,
+ 16733
+ ],
+ "loc": {
+ "start": {
+ "line": 394,
+ "column": 8
+ },
+ "end": {
+ "line": 394,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "imports external script",
+ "range": [
+ 16742,
+ 16767
+ ],
+ "loc": {
+ "start": {
+ "line": 395,
+ "column": 8
+ },
+ "end": {
+ "line": 395,
+ "column": 33
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16776,
+ 16780
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 8
+ },
+ "end": {
+ "line": 396,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "extensions",
+ "range": [
+ 16781,
+ 16791
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 13
+ },
+ "end": {
+ "line": 396,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 16776,
+ 16791
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 8
+ },
+ "end": {
+ "line": 396,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 16794,
+ 16795
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 26
+ },
+ "end": {
+ "line": 396,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "extensions",
+ "range": [
+ 16796,
+ 16806
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 28
+ },
+ "end": {
+ "line": 396,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 16794,
+ 16806
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 26
+ },
+ "end": {
+ "line": 396,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 16776,
+ 16806
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 8
+ },
+ "end": {
+ "line": 396,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 16776,
+ 16807
+ ],
+ "loc": {
+ "start": {
+ "line": 396,
+ "column": 8
+ },
+ "end": {
+ "line": 396,
+ "column": 39
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "** extensions **",
+ "range": [
+ 16713,
+ 16733
+ ],
+ "loc": {
+ "start": {
+ "line": 394,
+ "column": 8
+ },
+ "end": {
+ "line": 394,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "imports external script",
+ "range": [
+ 16742,
+ 16767
+ ],
+ "loc": {
+ "start": {
+ "line": 395,
+ "column": 8
+ },
+ "end": {
+ "line": 395,
+ "column": 33
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16816,
+ 16820
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasExtensions",
+ "range": [
+ 16821,
+ 16834
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 13
+ },
+ "end": {
+ "line": 397,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 16816,
+ 16834
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 16837,
+ 16842
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 29
+ },
+ "end": {
+ "line": 397,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 16843,
+ 16850
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 35
+ },
+ "end": {
+ "line": 397,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 16837,
+ 16850
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 29
+ },
+ "end": {
+ "line": 397,
+ "column": 42
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16851,
+ 16855
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 43
+ },
+ "end": {
+ "line": 397,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "extensions",
+ "range": [
+ 16856,
+ 16866
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 48
+ },
+ "end": {
+ "line": 397,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 16851,
+ 16866
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 43
+ },
+ "end": {
+ "line": 397,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 16837,
+ 16867
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 29
+ },
+ "end": {
+ "line": 397,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16816,
+ 16867
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 16816,
+ 16868
+ ],
+ "loc": {
+ "start": {
+ "line": 397,
+ "column": 8
+ },
+ "end": {
+ "line": 397,
+ "column": 60
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "** themes **",
+ "range": [
+ 16878,
+ 16894
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 8
+ },
+ "end": {
+ "line": 399,
+ "column": 24
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16903,
+ 16907
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 8
+ },
+ "end": {
+ "line": 400,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enableDefaultTheme",
+ "range": [
+ 16908,
+ 16926
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 13
+ },
+ "end": {
+ "line": 400,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 16903,
+ 16926
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 8
+ },
+ "end": {
+ "line": 400,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Boolean",
+ "range": [
+ 16929,
+ 16936
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 34
+ },
+ "end": {
+ "line": 400,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 16937,
+ 16938
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 42
+ },
+ "end": {
+ "line": 400,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enable_default_theme",
+ "range": [
+ 16939,
+ 16959
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 44
+ },
+ "end": {
+ "line": 400,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 16937,
+ 16959
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 42
+ },
+ "end": {
+ "line": 400,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 16929,
+ 16960
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 34
+ },
+ "end": {
+ "line": 400,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 16903,
+ 16960
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 8
+ },
+ "end": {
+ "line": 400,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 16903,
+ 16961
+ ],
+ "loc": {
+ "start": {
+ "line": 400,
+ "column": 8
+ },
+ "end": {
+ "line": 400,
+ "column": 66
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "** themes **",
+ "range": [
+ 16878,
+ 16894
+ ],
+ "loc": {
+ "start": {
+ "line": 399,
+ "column": 8
+ },
+ "end": {
+ "line": 399,
+ "column": 24
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "imports themes",
+ "range": [
+ 16970,
+ 16986
+ ],
+ "loc": {
+ "start": {
+ "line": 401,
+ "column": 8
+ },
+ "end": {
+ "line": 401,
+ "column": 24
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 16995,
+ 16999
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasThemes",
+ "range": [
+ 17000,
+ 17009
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 13
+ },
+ "end": {
+ "line": 402,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 16995,
+ 17009
],
"loc": {
"start": {
@@ -38949,7 +39042,451 @@
},
"end": {
"line": 402,
- "column": 27
+ "column": 22
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 17013,
+ 17017
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 26
+ },
+ "end": {
+ "line": 402,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enableDefaultTheme",
+ "range": [
+ 17018,
+ 17036
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 31
+ },
+ "end": {
+ "line": 402,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 17013,
+ 17036
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 26
+ },
+ "end": {
+ "line": 402,
+ "column": 49
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 17040,
+ 17045
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 53
+ },
+ "end": {
+ "line": 402,
+ "column": 58
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 17046,
+ 17053
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 59
+ },
+ "end": {
+ "line": 402,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 17040,
+ 17053
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 53
+ },
+ "end": {
+ "line": 402,
+ "column": 66
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 17054,
+ 17055
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 67
+ },
+ "end": {
+ "line": 402,
+ "column": 68
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "themes",
+ "range": [
+ 17056,
+ 17062
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 69
+ },
+ "end": {
+ "line": 402,
+ "column": 75
+ }
+ }
+ },
+ "range": [
+ 17054,
+ 17062
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 67
+ },
+ "end": {
+ "line": 402,
+ "column": 75
+ }
+ }
+ }
+ ],
+ "range": [
+ 17040,
+ 17063
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 53
+ },
+ "end": {
+ "line": 402,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 17013,
+ 17063
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 26
+ },
+ "end": {
+ "line": 402,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 16995,
+ 17064
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 16995,
+ 17065
+ ],
+ "loc": {
+ "start": {
+ "line": 402,
+ "column": 8
+ },
+ "end": {
+ "line": 402,
+ "column": 78
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "imports themes",
+ "range": [
+ 16970,
+ 16986
+ ],
+ "loc": {
+ "start": {
+ "line": 401,
+ "column": 8
+ },
+ "end": {
+ "line": 401,
+ "column": 24
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 17074,
+ 17078
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 8
+ },
+ "end": {
+ "line": 403,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "themes",
+ "range": [
+ 17079,
+ 17085
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 13
+ },
+ "end": {
+ "line": 403,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 17074,
+ 17085
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 8
+ },
+ "end": {
+ "line": 403,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "f",
+ "range": [
+ 17088,
+ 17089
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 22
+ },
+ "end": {
+ "line": 403,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "themes",
+ "range": [
+ 17090,
+ 17096
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 24
+ },
+ "end": {
+ "line": 403,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 17088,
+ 17096
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 22
+ },
+ "end": {
+ "line": 403,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 17100,
+ 17102
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 34
+ },
+ "end": {
+ "line": 403,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 17088,
+ 17102
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 22
+ },
+ "end": {
+ "line": 403,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 17074,
+ 17102
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 8
+ },
+ "end": {
+ "line": 403,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 17074,
+ 17103
+ ],
+ "loc": {
+ "start": {
+ "line": 403,
+ "column": 8
+ },
+ "end": {
+ "line": 403,
+ "column": 37
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "themes path",
+ "range": [
+ 17112,
+ 17125
+ ],
+ "loc": {
+ "start": {
+ "line": 404,
+ "column": 8
+ },
+ "end": {
+ "line": 404,
+ "column": 21
}
}
}
@@ -38969,153 +39506,6 @@
17134,
17138
],
- "loc": {
- "start": {
- "line": 403,
- "column": 8
- },
- "end": {
- "line": 403,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxValButton",
- "range": [
- 17139,
- 17152
- ],
- "loc": {
- "start": {
- "line": 403,
- "column": 13
- },
- "end": {
- "line": 403,
- "column": 26
- }
- }
- },
- "range": [
- 17134,
- 17152
- ],
- "loc": {
- "start": {
- "line": 403,
- "column": 8
- },
- "end": {
- "line": 403,
- "column": 26
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "btn",
- "raw": "'btn'",
- "range": [
- 17155,
- 17160
- ],
- "loc": {
- "start": {
- "line": 403,
- "column": 29
- },
- "end": {
- "line": 403,
- "column": 34
- }
- }
- },
- "range": [
- 17134,
- 17160
- ],
- "loc": {
- "start": {
- "line": 403,
- "column": 8
- },
- "end": {
- "line": 403,
- "column": 34
- }
- }
- },
- "range": [
- 17134,
- 17161
- ],
- "loc": {
- "start": {
- "line": 403,
- "column": 8
- },
- "end": {
- "line": 403,
- "column": 35
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "validation button",
- "range": [
- 17106,
- 17125
- ],
- "loc": {
- "start": {
- "line": 402,
- "column": 8
- },
- "end": {
- "line": 402,
- "column": 27
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "container div for paging elements, rows counter etc.",
- "range": [
- 17170,
- 17224
- ],
- "loc": {
- "start": {
- "line": 404,
- "column": 8
- },
- "end": {
- "line": 404,
- "column": 62
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17233,
- 17237
- ],
"loc": {
"start": {
"line": 405,
@@ -39127,3847 +39517,35 @@
}
}
},
- "property": {
- "type": "Identifier",
- "name": "prfxInfDiv",
- "range": [
- 17238,
- 17248
- ],
- "loc": {
- "start": {
- "line": 405,
- "column": 13
- },
- "end": {
- "line": 405,
- "column": 23
- }
- }
- },
- "range": [
- 17233,
- 17248
- ],
- "loc": {
- "start": {
- "line": 405,
- "column": 8
- },
- "end": {
- "line": 405,
- "column": 23
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "inf_",
- "raw": "'inf_'",
- "range": [
- 17251,
- 17257
- ],
- "loc": {
- "start": {
- "line": 405,
- "column": 26
- },
- "end": {
- "line": 405,
- "column": 32
- }
- }
- },
- "range": [
- 17233,
- 17257
- ],
- "loc": {
- "start": {
- "line": 405,
- "column": 8
- },
- "end": {
- "line": 405,
- "column": 32
- }
- }
- },
- "range": [
- 17233,
- 17258
- ],
- "loc": {
- "start": {
- "line": 405,
- "column": 8
- },
- "end": {
- "line": 405,
- "column": 33
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "container div for paging elements, rows counter etc.",
- "range": [
- 17170,
- 17224
- ],
- "loc": {
- "start": {
- "line": 404,
- "column": 8
- },
- "end": {
- "line": 404,
- "column": 62
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "left div",
- "range": [
- 17267,
- 17277
- ],
- "loc": {
- "start": {
- "line": 406,
- "column": 8
- },
- "end": {
- "line": 406,
- "column": 18
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17286,
- 17290
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 8
- },
- "end": {
- "line": 407,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxLDiv",
- "range": [
- 17291,
- 17299
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 13
- },
- "end": {
- "line": 407,
- "column": 21
- }
- }
- },
- "range": [
- 17286,
- 17299
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 8
- },
- "end": {
- "line": 407,
- "column": 21
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "ldiv_",
- "raw": "'ldiv_'",
- "range": [
- 17302,
- 17309
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 24
- },
- "end": {
- "line": 407,
- "column": 31
- }
- }
- },
- "range": [
- 17286,
- 17309
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 8
- },
- "end": {
- "line": 407,
- "column": 31
- }
- }
- },
- "range": [
- 17286,
- 17310
- ],
- "loc": {
- "start": {
- "line": 407,
- "column": 8
- },
- "end": {
- "line": 407,
- "column": 32
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "left div",
- "range": [
- 17267,
- 17277
- ],
- "loc": {
- "start": {
- "line": 406,
- "column": 8
- },
- "end": {
- "line": 406,
- "column": 18
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "right div",
- "range": [
- 17319,
- 17330
- ],
- "loc": {
- "start": {
- "line": 408,
- "column": 8
- },
- "end": {
- "line": 408,
- "column": 19
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17339,
- 17343
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 8
- },
- "end": {
- "line": 409,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxRDiv",
- "range": [
- 17344,
- 17352
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 13
- },
- "end": {
- "line": 409,
- "column": 21
- }
- }
- },
- "range": [
- 17339,
- 17352
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 8
- },
- "end": {
- "line": 409,
- "column": 21
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "rdiv_",
- "raw": "'rdiv_'",
- "range": [
- 17355,
- 17362
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 24
- },
- "end": {
- "line": 409,
- "column": 31
- }
- }
- },
- "range": [
- 17339,
- 17362
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 8
- },
- "end": {
- "line": 409,
- "column": 31
- }
- }
- },
- "range": [
- 17339,
- 17363
- ],
- "loc": {
- "start": {
- "line": 409,
- "column": 8
- },
- "end": {
- "line": 409,
- "column": 32
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "right div",
- "range": [
- 17319,
- 17330
- ],
- "loc": {
- "start": {
- "line": 408,
- "column": 8
- },
- "end": {
- "line": 408,
- "column": 19
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "middle div",
- "range": [
- 17372,
- 17384
- ],
- "loc": {
- "start": {
- "line": 410,
- "column": 8
- },
- "end": {
- "line": 410,
- "column": 20
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17393,
- 17397
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 8
- },
- "end": {
- "line": 411,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxMDiv",
- "range": [
- 17398,
- 17406
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 13
- },
- "end": {
- "line": 411,
- "column": 21
- }
- }
- },
- "range": [
- 17393,
- 17406
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 8
- },
- "end": {
- "line": 411,
- "column": 21
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "mdiv_",
- "raw": "'mdiv_'",
- "range": [
- 17409,
- 17416
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 24
- },
- "end": {
- "line": 411,
- "column": 31
- }
- }
- },
- "range": [
- 17393,
- 17416
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 8
- },
- "end": {
- "line": 411,
- "column": 31
- }
- }
- },
- "range": [
- 17393,
- 17417
- ],
- "loc": {
- "start": {
- "line": 411,
- "column": 8
- },
- "end": {
- "line": 411,
- "column": 32
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "middle div",
- "range": [
- 17372,
- 17384
- ],
- "loc": {
- "start": {
- "line": 410,
- "column": 8
- },
- "end": {
- "line": 410,
- "column": 20
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "filter values cookie",
- "range": [
- 17426,
- 17448
- ],
- "loc": {
- "start": {
- "line": 412,
- "column": 8
- },
- "end": {
- "line": 412,
- "column": 30
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17457,
- 17461
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 8
- },
- "end": {
- "line": 413,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookieFltsValues",
- "range": [
- 17462,
- 17482
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 13
- },
- "end": {
- "line": 413,
- "column": 33
- }
- }
- },
- "range": [
- 17457,
- 17482
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 8
- },
- "end": {
- "line": 413,
- "column": 33
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "tf_flts_",
- "raw": "'tf_flts_'",
- "range": [
- 17485,
- 17495
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 36
- },
- "end": {
- "line": 413,
- "column": 46
- }
- }
- },
- "range": [
- 17457,
- 17495
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 8
- },
- "end": {
- "line": 413,
- "column": 46
- }
- }
- },
- "range": [
- 17457,
- 17496
- ],
- "loc": {
- "start": {
- "line": 413,
- "column": 8
- },
- "end": {
- "line": 413,
- "column": 47
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filter values cookie",
- "range": [
- 17426,
- 17448
- ],
- "loc": {
- "start": {
- "line": 412,
- "column": 8
- },
- "end": {
- "line": 412,
- "column": 30
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "page nb cookie",
- "range": [
- 17505,
- 17521
- ],
- "loc": {
- "start": {
- "line": 414,
- "column": 8
- },
- "end": {
- "line": 414,
- "column": 24
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17530,
- 17534
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 8
- },
- "end": {
- "line": 415,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookiePageNb",
- "range": [
- 17535,
- 17551
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 13
- },
- "end": {
- "line": 415,
- "column": 29
- }
- }
- },
- "range": [
- 17530,
- 17551
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 8
- },
- "end": {
- "line": 415,
- "column": 29
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "tf_pgnb_",
- "raw": "'tf_pgnb_'",
- "range": [
- 17554,
- 17564
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 32
- },
- "end": {
- "line": 415,
- "column": 42
- }
- }
- },
- "range": [
- 17530,
- 17564
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 8
- },
- "end": {
- "line": 415,
- "column": 42
- }
- }
- },
- "range": [
- 17530,
- 17565
- ],
- "loc": {
- "start": {
- "line": 415,
- "column": 8
- },
- "end": {
- "line": 415,
- "column": 43
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "page nb cookie",
- "range": [
- 17505,
- 17521
- ],
- "loc": {
- "start": {
- "line": 414,
- "column": 8
- },
- "end": {
- "line": 414,
- "column": 24
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "page length cookie",
- "range": [
- 17574,
- 17594
- ],
- "loc": {
- "start": {
- "line": 416,
- "column": 8
- },
- "end": {
- "line": 416,
- "column": 28
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17603,
- 17607
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 8
- },
- "end": {
- "line": 417,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookiePageLen",
- "range": [
- 17608,
- 17625
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 13
- },
- "end": {
- "line": 417,
- "column": 30
- }
- }
- },
- "range": [
- 17603,
- 17625
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 8
- },
- "end": {
- "line": 417,
- "column": 30
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "tf_pglen_",
- "raw": "'tf_pglen_'",
- "range": [
- 17628,
- 17639
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 33
- },
- "end": {
- "line": 417,
- "column": 44
- }
- }
- },
- "range": [
- 17603,
- 17639
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 8
- },
- "end": {
- "line": 417,
- "column": 44
- }
- }
- },
- "range": [
- 17603,
- 17640
- ],
- "loc": {
- "start": {
- "line": 417,
- "column": 8
- },
- "end": {
- "line": 417,
- "column": 45
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "page length cookie",
- "range": [
- 17574,
- 17594
- ],
- "loc": {
- "start": {
- "line": 416,
- "column": 8
- },
- "end": {
- "line": 416,
- "column": 28
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "** cookies **",
- "range": [
- 17650,
- 17667
- ],
- "loc": {
- "start": {
- "line": 419,
- "column": 8
- },
- "end": {
- "line": 419,
- "column": 25
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17676,
- 17680
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 8
- },
- "end": {
- "line": 420,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasStoredValues",
- "range": [
- 17681,
- 17696
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 13
- },
- "end": {
- "line": 420,
- "column": 28
- }
- }
- },
- "range": [
- 17676,
- 17696
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 8
- },
- "end": {
- "line": 420,
- "column": 28
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 17699,
- 17704
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 31
- },
- "end": {
- "line": 420,
- "column": 36
- }
- }
- },
- "range": [
- 17676,
- 17704
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 8
- },
- "end": {
- "line": 420,
- "column": 36
- }
- }
- },
- "range": [
- 17676,
- 17705
- ],
- "loc": {
- "start": {
- "line": 420,
- "column": 8
- },
- "end": {
- "line": 420,
- "column": 37
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** cookies **",
- "range": [
- 17650,
- 17667
- ],
- "loc": {
- "start": {
- "line": 419,
- "column": 8
- },
- "end": {
- "line": 419,
- "column": 25
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "remembers filters values on page load",
- "range": [
- 17714,
- 17753
- ],
- "loc": {
- "start": {
- "line": 421,
- "column": 8
- },
- "end": {
- "line": 421,
- "column": 47
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17762,
- 17766
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 8
- },
- "end": {
- "line": 422,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 17767,
- 17785
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 13
- },
- "end": {
- "line": 422,
- "column": 31
- }
- }
- },
- "range": [
- 17762,
- 17785
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 8
- },
- "end": {
- "line": 422,
- "column": 31
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "Boolean",
- "range": [
- 17788,
- 17795
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 34
- },
- "end": {
- "line": 422,
- "column": 41
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 17796,
- 17797
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 42
- },
- "end": {
- "line": 422,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "remember_grid_values",
- "range": [
- 17798,
- 17818
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 44
- },
- "end": {
- "line": 422,
- "column": 64
- }
- }
- },
- "range": [
- 17796,
- 17818
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 42
- },
- "end": {
- "line": 422,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 17788,
- 17819
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 34
- },
- "end": {
- "line": 422,
- "column": 65
- }
- }
- },
- "range": [
- 17762,
- 17819
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 8
- },
- "end": {
- "line": 422,
- "column": 65
- }
- }
- },
- "range": [
- 17762,
- 17820
- ],
- "loc": {
- "start": {
- "line": 422,
- "column": 8
- },
- "end": {
- "line": 422,
- "column": 66
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "remembers filters values on page load",
- "range": [
- 17714,
- 17753
- ],
- "loc": {
- "start": {
- "line": 421,
- "column": 8
- },
- "end": {
- "line": 421,
- "column": 47
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "cookie storing filter values",
- "range": [
- 17829,
- 17859
- ],
- "loc": {
- "start": {
- "line": 423,
- "column": 8
- },
- "end": {
- "line": 423,
- "column": 38
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17868,
- 17872
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 8
- },
- "end": {
- "line": 424,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 17873,
- 17889
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 13
- },
- "end": {
- "line": 424,
- "column": 29
- }
- }
- },
- "range": [
- 17868,
- 17889
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 8
- },
- "end": {
- "line": 424,
- "column": 29
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17892,
- 17896
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 32
- },
- "end": {
- "line": 424,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookieFltsValues",
- "range": [
- 17897,
- 17917
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 37
- },
- "end": {
- "line": 424,
- "column": 57
- }
- }
- },
- "range": [
- 17892,
- 17917
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 32
- },
- "end": {
- "line": 424,
- "column": 57
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17920,
- 17924
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 60
- },
- "end": {
- "line": 424,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 17925,
- 17927
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 65
- },
- "end": {
- "line": 424,
- "column": 67
- }
- }
- },
- "range": [
- 17920,
- 17927
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 60
- },
- "end": {
- "line": 424,
- "column": 67
- }
- }
- },
- "range": [
- 17892,
- 17927
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 32
- },
- "end": {
- "line": 424,
- "column": 67
- }
- }
- },
- "range": [
- 17868,
- 17927
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 8
- },
- "end": {
- "line": 424,
- "column": 67
- }
- }
- },
- "range": [
- 17868,
- 17928
- ],
- "loc": {
- "start": {
- "line": 424,
- "column": 8
- },
- "end": {
- "line": 424,
- "column": 68
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "cookie storing filter values",
- "range": [
- 17829,
- 17859
- ],
- "loc": {
- "start": {
- "line": 423,
- "column": 8
- },
- "end": {
- "line": 423,
- "column": 38
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "remembers page nb on page load",
- "range": [
- 17937,
- 17969
- ],
- "loc": {
- "start": {
- "line": 425,
- "column": 8
- },
- "end": {
- "line": 425,
- "column": 40
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 17978,
- 17982
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 8
- },
- "end": {
- "line": 426,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageNb",
- "range": [
- 17983,
- 17997
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 13
- },
- "end": {
- "line": 426,
- "column": 27
- }
- }
- },
- "range": [
- 17978,
- 17997
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 8
- },
- "end": {
- "line": 426,
- "column": 27
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18000,
- 18004
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 30
- },
- "end": {
- "line": 426,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 18005,
- 18011
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 35
- },
- "end": {
- "line": 426,
- "column": 41
- }
- }
- },
- "range": [
- 18000,
- 18011
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 30
- },
- "end": {
- "line": 426,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18015,
- 18016
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 45
- },
- "end": {
- "line": 426,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "remember_page_number",
- "range": [
- 18017,
- 18037
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 47
- },
- "end": {
- "line": 426,
- "column": 67
- }
- }
- },
- "range": [
- 18015,
- 18037
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 45
- },
- "end": {
- "line": 426,
- "column": 67
- }
- }
- },
- "range": [
- 18000,
- 18037
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 30
- },
- "end": {
- "line": 426,
- "column": 67
- }
- }
- },
- "range": [
- 17978,
- 18037
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 8
- },
- "end": {
- "line": 426,
- "column": 67
- }
- }
- },
- "range": [
- 17978,
- 18038
- ],
- "loc": {
- "start": {
- "line": 426,
- "column": 8
- },
- "end": {
- "line": 426,
- "column": 68
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "remembers page nb on page load",
- "range": [
- 17937,
- 17969
- ],
- "loc": {
- "start": {
- "line": 425,
- "column": 8
- },
- "end": {
- "line": 425,
- "column": 40
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "cookie storing page nb",
- "range": [
- 18047,
- 18071
- ],
- "loc": {
- "start": {
- "line": 427,
- "column": 8
- },
- "end": {
- "line": 427,
- "column": 32
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18080,
- 18084
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 8
- },
- "end": {
- "line": 428,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgNbCookie",
- "range": [
- 18085,
- 18095
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 13
- },
- "end": {
- "line": 428,
- "column": 23
- }
- }
- },
- "range": [
- 18080,
- 18095
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 8
- },
- "end": {
- "line": 428,
- "column": 23
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18098,
- 18102
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 26
- },
- "end": {
- "line": 428,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookiePageNb",
- "range": [
- 18103,
- 18119
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 31
- },
- "end": {
- "line": 428,
- "column": 47
- }
- }
- },
- "range": [
- 18098,
- 18119
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 26
- },
- "end": {
- "line": 428,
- "column": 47
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18122,
- 18126
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 50
- },
- "end": {
- "line": 428,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 18127,
- 18129
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 55
- },
- "end": {
- "line": 428,
- "column": 57
- }
- }
- },
- "range": [
- 18122,
- 18129
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 50
- },
- "end": {
- "line": 428,
- "column": 57
- }
- }
- },
- "range": [
- 18098,
- 18129
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 26
- },
- "end": {
- "line": 428,
- "column": 57
- }
- }
- },
- "range": [
- 18080,
- 18129
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 8
- },
- "end": {
- "line": 428,
- "column": 57
- }
- }
- },
- "range": [
- 18080,
- 18130
- ],
- "loc": {
- "start": {
- "line": 428,
- "column": 8
- },
- "end": {
- "line": 428,
- "column": 58
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "cookie storing page nb",
- "range": [
- 18047,
- 18071
- ],
- "loc": {
- "start": {
- "line": 427,
- "column": 8
- },
- "end": {
- "line": 427,
- "column": 32
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "remembers page length on page load",
- "range": [
- 18139,
- 18175
- ],
- "loc": {
- "start": {
- "line": 429,
- "column": 8
- },
- "end": {
- "line": 429,
- "column": 44
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18184,
- 18188
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 8
- },
- "end": {
- "line": 430,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageLen",
- "range": [
- 18189,
- 18204
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 13
- },
- "end": {
- "line": 430,
- "column": 28
- }
- }
- },
- "range": [
- 18184,
- 18204
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 8
- },
- "end": {
- "line": 430,
- "column": 28
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18207,
- 18211
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 31
- },
- "end": {
- "line": 430,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 18212,
- 18218
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 36
- },
- "end": {
- "line": 430,
- "column": 42
- }
- }
- },
- "range": [
- 18207,
- 18218
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 31
- },
- "end": {
- "line": 430,
- "column": 42
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18222,
- 18223
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 46
- },
- "end": {
- "line": 430,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "remember_page_length",
- "range": [
- 18224,
- 18244
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 48
- },
- "end": {
- "line": 430,
- "column": 68
- }
- }
- },
- "range": [
- 18222,
- 18244
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 46
- },
- "end": {
- "line": 430,
- "column": 68
- }
- }
- },
- "range": [
- 18207,
- 18244
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 31
- },
- "end": {
- "line": 430,
- "column": 68
- }
- }
- },
- "range": [
- 18184,
- 18244
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 8
- },
- "end": {
- "line": 430,
- "column": 68
- }
- }
- },
- "range": [
- 18184,
- 18245
- ],
- "loc": {
- "start": {
- "line": 430,
- "column": 8
- },
- "end": {
- "line": 430,
- "column": 69
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "remembers page length on page load",
- "range": [
- 18139,
- 18175
- ],
- "loc": {
- "start": {
- "line": 429,
- "column": 8
- },
- "end": {
- "line": 429,
- "column": 44
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "cookie storing page length",
- "range": [
- 18254,
- 18282
- ],
- "loc": {
- "start": {
- "line": 431,
- "column": 8
- },
- "end": {
- "line": 431,
- "column": 36
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18291,
- 18295
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 8
- },
- "end": {
- "line": 432,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgLenCookie",
- "range": [
- 18296,
- 18307
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 13
- },
- "end": {
- "line": 432,
- "column": 24
- }
- }
- },
- "range": [
- 18291,
- 18307
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 8
- },
- "end": {
- "line": 432,
- "column": 24
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18310,
- 18314
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 27
- },
- "end": {
- "line": 432,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCookiePageLen",
- "range": [
- 18315,
- 18332
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 32
- },
- "end": {
- "line": 432,
- "column": 49
- }
- }
- },
- "range": [
- 18310,
- 18332
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 27
- },
- "end": {
- "line": 432,
- "column": 49
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18335,
- 18339
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 52
- },
- "end": {
- "line": 432,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 18340,
- 18342
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 57
- },
- "end": {
- "line": 432,
- "column": 59
- }
- }
- },
- "range": [
- 18335,
- 18342
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 52
- },
- "end": {
- "line": 432,
- "column": 59
- }
- }
- },
- "range": [
- 18310,
- 18342
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 27
- },
- "end": {
- "line": 432,
- "column": 59
- }
- }
- },
- "range": [
- 18291,
- 18342
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 8
- },
- "end": {
- "line": 432,
- "column": 59
- }
- }
- },
- "range": [
- 18291,
- 18343
- ],
- "loc": {
- "start": {
- "line": 432,
- "column": 8
- },
- "end": {
- "line": 432,
- "column": 60
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "cookie storing page length",
- "range": [
- 18254,
- 18282
- ],
- "loc": {
- "start": {
- "line": 431,
- "column": 8
- },
- "end": {
- "line": 431,
- "column": 36
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "** extensions **",
- "range": [
- 18353,
- 18373
- ],
- "loc": {
- "start": {
- "line": 434,
- "column": 8
- },
- "end": {
- "line": 434,
- "column": 28
- }
- }
- },
- {
- "type": "Line",
- "value": "imports external script",
- "range": [
- 18382,
- 18407
- ],
- "loc": {
- "start": {
- "line": 435,
- "column": 8
- },
- "end": {
- "line": 435,
- "column": 33
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18416,
- 18420
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 8
- },
- "end": {
- "line": 436,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extensions",
- "range": [
- 18421,
- 18431
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 13
- },
- "end": {
- "line": 436,
- "column": 23
- }
- }
- },
- "range": [
- 18416,
- 18431
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 8
- },
- "end": {
- "line": 436,
- "column": 23
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18434,
- 18435
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 26
- },
- "end": {
- "line": 436,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extensions",
- "range": [
- 18436,
- 18446
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 28
- },
- "end": {
- "line": 436,
- "column": 38
- }
- }
- },
- "range": [
- 18434,
- 18446
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 26
- },
- "end": {
- "line": 436,
- "column": 38
- }
- }
- },
- "range": [
- 18416,
- 18446
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 8
- },
- "end": {
- "line": 436,
- "column": 38
- }
- }
- },
- "range": [
- 18416,
- 18447
- ],
- "loc": {
- "start": {
- "line": 436,
- "column": 8
- },
- "end": {
- "line": 436,
- "column": 39
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** extensions **",
- "range": [
- 18353,
- 18373
- ],
- "loc": {
- "start": {
- "line": 434,
- "column": 8
- },
- "end": {
- "line": 434,
- "column": 28
- }
- }
- },
- {
- "type": "Line",
- "value": "imports external script",
- "range": [
- 18382,
- 18407
- ],
- "loc": {
- "start": {
- "line": 435,
- "column": 8
- },
- "end": {
- "line": 435,
- "column": 33
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18456,
- 18460
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 8
- },
- "end": {
- "line": 437,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasExtensions",
- "range": [
- 18461,
- 18474
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 13
- },
- "end": {
- "line": 437,
- "column": 26
- }
- }
- },
- "range": [
- 18456,
- 18474
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 8
- },
- "end": {
- "line": 437,
- "column": 26
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Types",
- "range": [
- 18477,
- 18482
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 29
- },
- "end": {
- "line": 437,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isArray",
- "range": [
- 18483,
- 18490
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 35
- },
- "end": {
- "line": 437,
- "column": 42
- }
- }
- },
- "range": [
- 18477,
- 18490
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 29
- },
- "end": {
- "line": 437,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18491,
- 18495
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 43
- },
- "end": {
- "line": 437,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extensions",
- "range": [
- 18496,
- 18506
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 48
- },
- "end": {
- "line": 437,
- "column": 58
- }
- }
- },
- "range": [
- 18491,
- 18506
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 43
- },
- "end": {
- "line": 437,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 18477,
- 18507
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 29
- },
- "end": {
- "line": 437,
- "column": 59
- }
- }
- },
- "range": [
- 18456,
- 18507
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 8
- },
- "end": {
- "line": 437,
- "column": 59
- }
- }
- },
- "range": [
- 18456,
- 18508
- ],
- "loc": {
- "start": {
- "line": 437,
- "column": 8
- },
- "end": {
- "line": 437,
- "column": 60
- }
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "** themes **",
- "range": [
- 18518,
- 18534
- ],
- "loc": {
- "start": {
- "line": 439,
- "column": 8
- },
- "end": {
- "line": 439,
- "column": 24
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18543,
- 18547
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 8
- },
- "end": {
- "line": 440,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "enableDefaultTheme",
- "range": [
- 18548,
- 18566
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 13
- },
- "end": {
- "line": 440,
- "column": 31
- }
- }
- },
- "range": [
- 18543,
- 18566
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 8
- },
- "end": {
- "line": 440,
- "column": 31
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "Boolean",
- "range": [
- 18569,
- 18576
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 34
- },
- "end": {
- "line": 440,
- "column": 41
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18577,
- 18578
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 42
- },
- "end": {
- "line": 440,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "enable_default_theme",
- "range": [
- 18579,
- 18599
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 44
- },
- "end": {
- "line": 440,
- "column": 64
- }
- }
- },
- "range": [
- 18577,
- 18599
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 42
- },
- "end": {
- "line": 440,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 18569,
- 18600
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 34
- },
- "end": {
- "line": 440,
- "column": 65
- }
- }
- },
- "range": [
- 18543,
- 18600
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 8
- },
- "end": {
- "line": 440,
- "column": 65
- }
- }
- },
- "range": [
- 18543,
- 18601
- ],
- "loc": {
- "start": {
- "line": 440,
- "column": 8
- },
- "end": {
- "line": 440,
- "column": 66
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "** themes **",
- "range": [
- 18518,
- 18534
- ],
- "loc": {
- "start": {
- "line": 439,
- "column": 8
- },
- "end": {
- "line": 439,
- "column": 24
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "imports themes",
- "range": [
- 18610,
- 18626
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 8
- },
- "end": {
- "line": 441,
- "column": 24
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18635,
- 18639
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 8
- },
- "end": {
- "line": 442,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasThemes",
- "range": [
- 18640,
- 18649
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 13
- },
- "end": {
- "line": 442,
- "column": 22
- }
- }
- },
- "range": [
- 18635,
- 18649
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 8
- },
- "end": {
- "line": 442,
- "column": 22
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18653,
- 18657
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 26
- },
- "end": {
- "line": 442,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "enableDefaultTheme",
- "range": [
- 18658,
- 18676
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 31
- },
- "end": {
- "line": 442,
- "column": 49
- }
- }
- },
- "range": [
- 18653,
- 18676
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 26
- },
- "end": {
- "line": 442,
- "column": 49
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Types",
- "range": [
- 18680,
- 18685
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 53
- },
- "end": {
- "line": 442,
- "column": 58
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isArray",
- "range": [
- 18686,
- 18693
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 59
- },
- "end": {
- "line": 442,
- "column": 66
- }
- }
- },
- "range": [
- 18680,
- 18693
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 53
- },
- "end": {
- "line": 442,
- "column": 66
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18694,
- 18695
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 67
- },
- "end": {
- "line": 442,
- "column": 68
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "themes",
- "range": [
- 18696,
- 18702
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 69
- },
- "end": {
- "line": 442,
- "column": 75
- }
- }
- },
- "range": [
- 18694,
- 18702
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 67
- },
- "end": {
- "line": 442,
- "column": 75
- }
- }
- }
- ],
- "range": [
- 18680,
- 18703
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 53
- },
- "end": {
- "line": 442,
- "column": 76
- }
- }
- },
- "range": [
- 18653,
- 18703
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 26
- },
- "end": {
- "line": 442,
- "column": 76
- }
- }
- },
- "range": [
- 18635,
- 18704
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 8
- },
- "end": {
- "line": 442,
- "column": 77
- }
- }
- },
- "range": [
- 18635,
- 18705
- ],
- "loc": {
- "start": {
- "line": 442,
- "column": 8
- },
- "end": {
- "line": 442,
- "column": 78
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "imports themes",
- "range": [
- 18610,
- 18626
- ],
- "loc": {
- "start": {
- "line": 441,
- "column": 8
- },
- "end": {
- "line": 441,
- "column": 24
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18714,
- 18718
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 8
- },
- "end": {
- "line": 443,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "themes",
- "range": [
- 18719,
- 18725
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 13
- },
- "end": {
- "line": 443,
- "column": 19
- }
- }
- },
- "range": [
- 18714,
- 18725
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 8
- },
- "end": {
- "line": 443,
- "column": 19
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "f",
- "range": [
- 18728,
- 18729
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 22
- },
- "end": {
- "line": 443,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "themes",
- "range": [
- 18730,
- 18736
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 24
- },
- "end": {
- "line": 443,
- "column": 30
- }
- }
- },
- "range": [
- 18728,
- 18736
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 22
- },
- "end": {
- "line": 443,
- "column": 30
- }
- }
- },
- "right": {
- "type": "ArrayExpression",
- "elements": [],
- "range": [
- 18740,
- 18742
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 34
- },
- "end": {
- "line": 443,
- "column": 36
- }
- }
- },
- "range": [
- 18728,
- 18742
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 22
- },
- "end": {
- "line": 443,
- "column": 36
- }
- }
- },
- "range": [
- 18714,
- 18742
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 8
- },
- "end": {
- "line": 443,
- "column": 36
- }
- }
- },
- "range": [
- 18714,
- 18743
- ],
- "loc": {
- "start": {
- "line": 443,
- "column": 8
- },
- "end": {
- "line": 443,
- "column": 37
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "themes path",
- "range": [
- 18752,
- 18765
- ],
- "loc": {
- "start": {
- "line": 444,
- "column": 8
- },
- "end": {
- "line": 444,
- "column": 21
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 18774,
- 18778
- ],
- "loc": {
- "start": {
- "line": 445,
- "column": 8
- },
- "end": {
- "line": 445,
- "column": 12
- }
- }
- },
"property": {
"type": "Identifier",
"name": "themesPath",
"range": [
- 18779,
- 18789
+ 17139,
+ 17149
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 13
},
"end": {
- "line": 445,
+ "line": 405,
"column": 23
}
}
},
"range": [
- 18774,
- 18789
+ 17134,
+ 17149
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 8
},
"end": {
- "line": 445,
+ "line": 405,
"column": 23
}
}
@@ -42982,16 +39560,16 @@
"type": "Identifier",
"name": "f",
"range": [
- 18792,
- 18793
+ 17152,
+ 17153
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 26
},
"end": {
- "line": 445,
+ "line": 405,
"column": 27
}
}
@@ -43000,31 +39578,31 @@
"type": "Identifier",
"name": "themes_path",
"range": [
- 18794,
- 18805
+ 17154,
+ 17165
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 28
},
"end": {
- "line": 445,
+ "line": 405,
"column": 39
}
}
},
"range": [
- 18792,
- 18805
+ 17152,
+ 17165
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 26
},
"end": {
- "line": 445,
+ "line": 405,
"column": 39
}
}
@@ -43038,16 +39616,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18809,
- 18813
+ 17169,
+ 17173
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 43
},
"end": {
- "line": 445,
+ "line": 405,
"column": 47
}
}
@@ -43056,31 +39634,31 @@
"type": "Identifier",
"name": "stylePath",
"range": [
- 18814,
- 18823
+ 17174,
+ 17183
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 48
},
"end": {
- "line": 445,
+ "line": 405,
"column": 57
}
}
},
"range": [
- 18809,
- 18823
+ 17169,
+ 17183
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 43
},
"end": {
- "line": 445,
+ "line": 405,
"column": 57
}
}
@@ -43090,76 +39668,76 @@
"value": "themes/",
"raw": "'themes/'",
"range": [
- 18826,
- 18835
+ 17186,
+ 17195
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 60
},
"end": {
- "line": 445,
+ "line": 405,
"column": 69
}
}
},
"range": [
- 18809,
- 18835
+ 17169,
+ 17195
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 43
},
"end": {
- "line": 445,
+ "line": 405,
"column": 69
}
}
},
"range": [
- 18792,
- 18835
+ 17152,
+ 17195
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 26
},
"end": {
- "line": 445,
+ "line": 405,
"column": 69
}
}
},
"range": [
- 18774,
- 18835
+ 17134,
+ 17195
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 8
},
"end": {
- "line": 445,
+ "line": 405,
"column": 69
}
}
},
"range": [
- 18774,
- 18836
+ 17134,
+ 17196
],
"loc": {
"start": {
- "line": 445,
+ "line": 405,
"column": 8
},
"end": {
- "line": 445,
+ "line": 405,
"column": 70
}
},
@@ -43168,16 +39746,16 @@
"type": "Line",
"value": "themes path",
"range": [
- 18752,
- 18765
+ 17112,
+ 17125
],
"loc": {
"start": {
- "line": 444,
+ "line": 404,
"column": 8
},
"end": {
- "line": 444,
+ "line": 404,
"column": 21
}
}
@@ -43188,16 +39766,16 @@
"type": "Line",
"value": " Features registry",
"range": [
- 18846,
- 18866
+ 17206,
+ 17226
],
"loc": {
"start": {
- "line": 447,
+ "line": 407,
"column": 8
},
"end": {
- "line": 447,
+ "line": 407,
"column": 28
}
}
@@ -43215,16 +39793,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18875,
- 18879
+ 17235,
+ 17239
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 8
},
"end": {
- "line": 448,
+ "line": 408,
"column": 12
}
}
@@ -43233,31 +39811,31 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 18880,
- 18883
+ 17240,
+ 17243
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 13
},
"end": {
- "line": 448,
+ "line": 408,
"column": 16
}
}
},
"range": [
- 18875,
- 18883
+ 17235,
+ 17243
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 8
},
"end": {
- "line": 448,
+ "line": 408,
"column": 16
}
}
@@ -43266,46 +39844,46 @@
"type": "ObjectExpression",
"properties": [],
"range": [
- 18886,
- 18888
+ 17246,
+ 17248
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 19
},
"end": {
- "line": 448,
+ "line": 408,
"column": 21
}
}
},
"range": [
- 18875,
- 18888
+ 17235,
+ 17248
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 8
},
"end": {
- "line": 448,
+ "line": 408,
"column": 21
}
}
},
"range": [
- 18875,
- 18889
+ 17235,
+ 17249
],
"loc": {
"start": {
- "line": 448,
+ "line": 408,
"column": 8
},
"end": {
- "line": 448,
+ "line": 408,
"column": 22
}
},
@@ -43314,16 +39892,16 @@
"type": "Line",
"value": " Features registry",
"range": [
- 18846,
- 18866
+ 17206,
+ 17226
],
"loc": {
"start": {
- "line": 447,
+ "line": 407,
"column": 8
},
"end": {
- "line": 447,
+ "line": 407,
"column": 28
}
}
@@ -43334,16 +39912,16 @@
"type": "Line",
"value": " Extensions registry",
"range": [
- 18899,
- 18921
+ 17259,
+ 17281
],
"loc": {
"start": {
- "line": 450,
+ "line": 410,
"column": 8
},
"end": {
- "line": 450,
+ "line": 410,
"column": 30
}
}
@@ -43361,16 +39939,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18930,
- 18934
+ 17290,
+ 17294
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 8
},
"end": {
- "line": 451,
+ "line": 411,
"column": 12
}
}
@@ -43379,31 +39957,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 18935,
- 18946
+ 17295,
+ 17306
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 13
},
"end": {
- "line": 451,
+ "line": 411,
"column": 24
}
}
},
"range": [
- 18930,
- 18946
+ 17290,
+ 17306
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 8
},
"end": {
- "line": 451,
+ "line": 411,
"column": 24
}
}
@@ -43412,46 +39990,46 @@
"type": "ObjectExpression",
"properties": [],
"range": [
- 18949,
- 18951
+ 17309,
+ 17311
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 27
},
"end": {
- "line": 451,
+ "line": 411,
"column": 29
}
}
},
"range": [
- 18930,
- 18951
+ 17290,
+ 17311
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 8
},
"end": {
- "line": 451,
+ "line": 411,
"column": 29
}
}
},
"range": [
- 18930,
- 18952
+ 17290,
+ 17312
],
"loc": {
"start": {
- "line": 451,
+ "line": 411,
"column": 8
},
"end": {
- "line": 451,
+ "line": 411,
"column": 30
}
},
@@ -43460,16 +40038,16 @@
"type": "Line",
"value": " Extensions registry",
"range": [
- 18899,
- 18921
+ 17259,
+ 17281
],
"loc": {
"start": {
- "line": 450,
+ "line": 410,
"column": 8
},
"end": {
- "line": 450,
+ "line": 410,
"column": 30
}
}
@@ -43480,16 +40058,16 @@
"type": "Block",
"value": "** TF events **",
"range": [
- 18962,
- 18981
+ 17322,
+ 17341
],
"loc": {
"start": {
- "line": 453,
+ "line": 413,
"column": 8
},
"end": {
- "line": 453,
+ "line": 413,
"column": 27
}
}
@@ -43507,16 +40085,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 18990,
- 18994
+ 17350,
+ 17354
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 8
},
"end": {
- "line": 454,
+ "line": 414,
"column": 12
}
}
@@ -43525,31 +40103,31 @@
"type": "Identifier",
"name": "Evt",
"range": [
- 18995,
- 18998
+ 17355,
+ 17358
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 13
},
"end": {
- "line": 454,
+ "line": 414,
"column": 16
}
}
},
"range": [
- 18990,
- 18998
+ 17350,
+ 17358
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 8
},
"end": {
- "line": 454,
+ "line": 414,
"column": 16
}
}
@@ -43557,718 +40135,22 @@
"right": {
"type": "ObjectExpression",
"properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 19015,
- 19019
- ],
- "loc": {
- "start": {
- "line": 455,
- "column": 12
- },
- "end": {
- "line": 455,
- "column": 16
- }
- }
- },
- "value": {
- "type": "ObjectExpression",
- "properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "filter",
- "range": [
- 19039,
- 19045
- ],
- "loc": {
- "start": {
- "line": 456,
- "column": 16
- },
- "end": {
- "line": 456,
- "column": 22
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "Filter",
- "raw": "'Filter'",
- "range": [
- 19047,
- 19055
- ],
- "loc": {
- "start": {
- "line": 456,
- "column": 24
- },
- "end": {
- "line": 456,
- "column": 32
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19039,
- 19055
- ],
- "loc": {
- "start": {
- "line": 456,
- "column": 16
- },
- "end": {
- "line": 456,
- "column": 32
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 19073,
- 19081
- ],
- "loc": {
- "start": {
- "line": 457,
- "column": 16
- },
- "end": {
- "line": 457,
- "column": 24
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "DropDown",
- "raw": "'DropDown'",
- "range": [
- 19083,
- 19093
- ],
- "loc": {
- "start": {
- "line": 457,
- "column": 26
- },
- "end": {
- "line": 457,
- "column": 36
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19073,
- 19093
- ],
- "loc": {
- "start": {
- "line": 457,
- "column": 16
- },
- "end": {
- "line": 457,
- "column": 36
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "checklist",
- "range": [
- 19111,
- 19120
- ],
- "loc": {
- "start": {
- "line": 458,
- "column": 16
- },
- "end": {
- "line": 458,
- "column": 25
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "CheckList",
- "raw": "'CheckList'",
- "range": [
- 19122,
- 19133
- ],
- "loc": {
- "start": {
- "line": 458,
- "column": 27
- },
- "end": {
- "line": 458,
- "column": 38
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19111,
- 19133
- ],
- "loc": {
- "start": {
- "line": 458,
- "column": 16
- },
- "end": {
- "line": 458,
- "column": 38
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "changepage",
- "range": [
- 19151,
- 19161
- ],
- "loc": {
- "start": {
- "line": 459,
- "column": 16
- },
- "end": {
- "line": 459,
- "column": 26
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "ChangePage",
- "raw": "'ChangePage'",
- "range": [
- 19163,
- 19175
- ],
- "loc": {
- "start": {
- "line": 459,
- "column": 28
- },
- "end": {
- "line": 459,
- "column": 40
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19151,
- 19175
- ],
- "loc": {
- "start": {
- "line": 459,
- "column": 16
- },
- "end": {
- "line": 459,
- "column": 40
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "clear",
- "range": [
- 19193,
- 19198
- ],
- "loc": {
- "start": {
- "line": 460,
- "column": 16
- },
- "end": {
- "line": 460,
- "column": 21
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "Clear",
- "raw": "'Clear'",
- "range": [
- 19200,
- 19207
- ],
- "loc": {
- "start": {
- "line": 460,
- "column": 23
- },
- "end": {
- "line": 460,
- "column": 30
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19193,
- 19207
- ],
- "loc": {
- "start": {
- "line": 460,
- "column": 16
- },
- "end": {
- "line": 460,
- "column": 30
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "changeresultsperpage",
- "range": [
- 19225,
- 19245
- ],
- "loc": {
- "start": {
- "line": 461,
- "column": 16
- },
- "end": {
- "line": 461,
- "column": 36
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "ChangeResults",
- "raw": "'ChangeResults'",
- "range": [
- 19247,
- 19262
- ],
- "loc": {
- "start": {
- "line": 461,
- "column": 38
- },
- "end": {
- "line": 461,
- "column": 53
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19225,
- 19262
- ],
- "loc": {
- "start": {
- "line": 461,
- "column": 16
- },
- "end": {
- "line": 461,
- "column": 53
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "resetvalues",
- "range": [
- 19280,
- 19291
- ],
- "loc": {
- "start": {
- "line": 462,
- "column": 16
- },
- "end": {
- "line": 462,
- "column": 27
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "ResetValues",
- "raw": "'ResetValues'",
- "range": [
- 19293,
- 19306
- ],
- "loc": {
- "start": {
- "line": 462,
- "column": 29
- },
- "end": {
- "line": 462,
- "column": 42
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19280,
- 19306
- ],
- "loc": {
- "start": {
- "line": 462,
- "column": 16
- },
- "end": {
- "line": 462,
- "column": 42
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "resetpage",
- "range": [
- 19324,
- 19333
- ],
- "loc": {
- "start": {
- "line": 463,
- "column": 16
- },
- "end": {
- "line": 463,
- "column": 25
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "ResetPage",
- "raw": "'ResetPage'",
- "range": [
- 19335,
- 19346
- ],
- "loc": {
- "start": {
- "line": 463,
- "column": 27
- },
- "end": {
- "line": 463,
- "column": 38
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19324,
- 19346
- ],
- "loc": {
- "start": {
- "line": 463,
- "column": 16
- },
- "end": {
- "line": 463,
- "column": 38
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "resetpagelength",
- "range": [
- 19364,
- 19379
- ],
- "loc": {
- "start": {
- "line": 464,
- "column": 16
- },
- "end": {
- "line": 464,
- "column": 31
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "ResetPageLength",
- "raw": "'ResetPageLength'",
- "range": [
- 19381,
- 19398
- ],
- "loc": {
- "start": {
- "line": 464,
- "column": 33
- },
- "end": {
- "line": 464,
- "column": 50
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19364,
- 19398
- ],
- "loc": {
- "start": {
- "line": 464,
- "column": 16
- },
- "end": {
- "line": 464,
- "column": 50
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "loadextensions",
- "range": [
- 19416,
- 19430
- ],
- "loc": {
- "start": {
- "line": 465,
- "column": 16
- },
- "end": {
- "line": 465,
- "column": 30
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "LoadExtensions",
- "raw": "'LoadExtensions'",
- "range": [
- 19432,
- 19448
- ],
- "loc": {
- "start": {
- "line": 465,
- "column": 32
- },
- "end": {
- "line": 465,
- "column": 48
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19416,
- 19448
- ],
- "loc": {
- "start": {
- "line": 465,
- "column": 16
- },
- "end": {
- "line": 465,
- "column": 48
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "loadthemes",
- "range": [
- 19466,
- 19476
- ],
- "loc": {
- "start": {
- "line": 466,
- "column": 16
- },
- "end": {
- "line": 466,
- "column": 26
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": "LoadThemes",
- "raw": "'LoadThemes'",
- "range": [
- 19478,
- 19490
- ],
- "loc": {
- "start": {
- "line": 466,
- "column": 28
- },
- "end": {
- "line": 466,
- "column": 40
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19466,
- 19490
- ],
- "loc": {
- "start": {
- "line": 466,
- "column": 16
- },
- "end": {
- "line": 466,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 19021,
- 19504
- ],
- "loc": {
- "start": {
- "line": 455,
- "column": 18
- },
- "end": {
- "line": 467,
- "column": 13
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 19015,
- 19504
- ],
- "loc": {
- "start": {
- "line": 455,
- "column": 12
- },
- "end": {
- "line": 467,
- "column": 13
- }
- }
- },
{
"type": "Property",
"key": {
"type": "Identifier",
"name": "detectKey",
"range": [
- 19553,
- 19562
+ 17409,
+ 17418
],
"loc": {
"start": {
- "line": 470,
+ "line": 416,
"column": 12
},
"end": {
- "line": 470,
+ "line": 416,
"column": 21
}
}
@@ -44281,16 +40163,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 19563,
- 19564
+ 17419,
+ 17420
],
"loc": {
"start": {
- "line": 470,
+ "line": 416,
"column": 22
},
"end": {
- "line": 470,
+ "line": 416,
"column": 23
}
}
@@ -44310,16 +40192,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19588,
- 19592
+ 17444,
+ 17448
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 20
},
"end": {
- "line": 471,
+ "line": 417,
"column": 24
}
}
@@ -44328,47 +40210,47 @@
"type": "Identifier",
"name": "enterKey",
"range": [
- 19593,
- 19601
+ 17449,
+ 17457
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 25
},
"end": {
- "line": 471,
+ "line": 417,
"column": 33
}
}
},
"range": [
- 19588,
- 19601
+ 17444,
+ 17457
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 20
},
"end": {
- "line": 471,
+ "line": 417,
"column": 33
}
}
},
"prefix": true,
"range": [
- 19587,
- 19601
+ 17443,
+ 17457
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 19
},
"end": {
- "line": 471,
+ "line": 417,
"column": 33
}
}
@@ -44380,214 +40262,69 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 19604,
- 19611
+ 17460,
+ 17467
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 36
},
"end": {
- "line": 471,
+ "line": 417,
"column": 43
}
}
}
],
"range": [
- 19602,
- 19613
+ 17458,
+ 17469
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 34
},
"end": {
- "line": 471,
+ "line": 417,
"column": 45
}
}
},
"alternate": null,
"range": [
- 19584,
- 19613
+ 17440,
+ 17469
],
"loc": {
"start": {
- "line": 471,
+ "line": 417,
"column": 16
},
"end": {
- "line": 471,
+ "line": 417,
"column": 45
}
}
},
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 19634,
- 19637
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 20
- },
- "end": {
- "line": 472,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 19640,
- 19641
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 26
- },
- "end": {
- "line": 472,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 19645,
- 19651
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 31
- },
- "end": {
- "line": 472,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 19652,
- 19657
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 38
- },
- "end": {
- "line": 472,
- "column": 43
- }
- }
- },
- "range": [
- 19645,
- 19657
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 31
- },
- "end": {
- "line": 472,
- "column": 43
- }
- }
- },
- "range": [
- 19640,
- 19657
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 26
- },
- "end": {
- "line": 472,
- "column": 43
- }
- }
- },
- "range": [
- 19634,
- 19657
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 20
- },
- "end": {
- "line": 472,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 19630,
- 19658
- ],
- "loc": {
- "start": {
- "line": 472,
- "column": 16
- },
- "end": {
- "line": 472,
- "column": 44
- }
- }
- },
{
"type": "IfStatement",
"test": {
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 19678,
- 19681
+ 17489,
+ 17490
],
"loc": {
"start": {
- "line": 473,
+ "line": 418,
"column": 19
},
"end": {
- "line": 473,
- "column": 22
+ "line": 418,
+ "column": 20
}
}
},
@@ -44603,16 +40340,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 19708,
- 19711
+ 17517,
+ 17520
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 24
},
"end": {
- "line": 474,
+ "line": 419,
"column": 27
}
}
@@ -44626,16 +40363,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 19714,
- 19719
+ 17523,
+ 17528
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 30
},
"end": {
- "line": 474,
+ "line": 419,
"column": 35
}
}
@@ -44644,31 +40381,31 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 19720,
- 19727
+ 17529,
+ 17536
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 36
},
"end": {
- "line": 474,
+ "line": 419,
"column": 43
}
}
},
"range": [
- 19714,
- 19727
+ 17523,
+ 17536
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 30
},
"end": {
- "line": 474,
+ "line": 419,
"column": 43
}
}
@@ -44676,67 +40413,67 @@
"arguments": [
{
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 19728,
- 19731
+ 17537,
+ 17538
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 44
},
"end": {
- "line": 474,
- "column": 47
+ "line": 419,
+ "column": 45
}
}
}
],
"range": [
- 19714,
- 19732
+ 17523,
+ 17539
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 30
},
"end": {
- "line": 474,
- "column": 48
+ "line": 419,
+ "column": 46
}
}
},
"range": [
- 19708,
- 19732
+ 17517,
+ 17539
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 24
},
"end": {
- "line": 474,
- "column": 48
+ "line": 419,
+ "column": 46
}
}
}
],
"kind": "let",
"range": [
- 19704,
- 19733
+ 17513,
+ 17540
],
"loc": {
"start": {
- "line": 474,
+ "line": 419,
"column": 20
},
"end": {
- "line": 474,
- "column": 49
+ "line": 419,
+ "column": 47
}
}
},
@@ -44749,16 +40486,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 19757,
- 19760
+ 17564,
+ 17567
],
"loc": {
"start": {
- "line": 475,
+ "line": 420,
"column": 23
},
"end": {
- "line": 475,
+ "line": 420,
"column": 26
}
}
@@ -44768,31 +40505,31 @@
"value": 13,
"raw": "13",
"range": [
- 19763,
- 19765
+ 17570,
+ 17572
],
"loc": {
"start": {
- "line": 475,
+ "line": 420,
"column": 29
},
"end": {
- "line": 475,
+ "line": 420,
"column": 31
}
}
},
"range": [
- 19757,
- 19765
+ 17564,
+ 17572
],
"loc": {
"start": {
- "line": 475,
+ "line": 420,
"column": 23
},
"end": {
- "line": 475,
+ "line": 420,
"column": 31
}
}
@@ -44810,16 +40547,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19792,
- 19796
+ 17599,
+ 17603
],
"loc": {
"start": {
- "line": 476,
+ "line": 421,
"column": 24
},
"end": {
- "line": 476,
+ "line": 421,
"column": 28
}
}
@@ -44828,62 +40565,62 @@
"type": "Identifier",
"name": "filter",
"range": [
- 19797,
- 19803
+ 17604,
+ 17610
],
"loc": {
"start": {
- "line": 476,
+ "line": 421,
"column": 29
},
"end": {
- "line": 476,
+ "line": 421,
"column": 35
}
}
},
"range": [
- 19792,
- 19803
+ 17599,
+ 17610
],
"loc": {
"start": {
- "line": 476,
+ "line": 421,
"column": 24
},
"end": {
- "line": 476,
+ "line": 421,
"column": 35
}
}
},
"arguments": [],
"range": [
- 19792,
- 19805
+ 17599,
+ 17612
],
"loc": {
"start": {
- "line": 476,
+ "line": 421,
"column": 24
},
"end": {
- "line": 476,
+ "line": 421,
"column": 37
}
}
},
"range": [
- 19792,
- 19806
+ 17599,
+ 17613
],
"loc": {
"start": {
- "line": 476,
+ "line": 421,
"column": 24
},
"end": {
- "line": 476,
+ "line": 421,
"column": 38
}
}
@@ -44899,16 +40636,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 19831,
- 19836
+ 17638,
+ 17643
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 24
},
"end": {
- "line": 477,
+ "line": 422,
"column": 29
}
}
@@ -44917,31 +40654,31 @@
"type": "Identifier",
"name": "cancel",
"range": [
- 19837,
- 19843
+ 17644,
+ 17650
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 30
},
"end": {
- "line": 477,
+ "line": 422,
"column": 36
}
}
},
"range": [
- 19831,
- 19843
+ 17638,
+ 17650
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 24
},
"end": {
- "line": 477,
+ "line": 422,
"column": 36
}
}
@@ -44949,50 +40686,50 @@
"arguments": [
{
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 19844,
- 19847
+ 17651,
+ 17652
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 37
},
"end": {
- "line": 477,
- "column": 40
+ "line": 422,
+ "column": 38
}
}
}
],
"range": [
- 19831,
- 19848
+ 17638,
+ 17653
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 24
},
"end": {
- "line": 477,
- "column": 41
+ "line": 422,
+ "column": 39
}
}
},
"range": [
- 19831,
- 19849
+ 17638,
+ 17654
],
"loc": {
"start": {
- "line": 477,
+ "line": 422,
"column": 24
},
"end": {
- "line": 477,
- "column": 42
+ "line": 422,
+ "column": 40
}
}
},
@@ -45007,16 +40744,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 19874,
- 19879
+ 17679,
+ 17684
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 24
},
"end": {
- "line": 478,
+ "line": 423,
"column": 29
}
}
@@ -45025,31 +40762,31 @@
"type": "Identifier",
"name": "stop",
"range": [
- 19880,
- 19884
+ 17685,
+ 17689
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 30
},
"end": {
- "line": 478,
+ "line": 423,
"column": 34
}
}
},
"range": [
- 19874,
- 19884
+ 17679,
+ 17689
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 24
},
"end": {
- "line": 478,
+ "line": 423,
"column": 34
}
}
@@ -45057,65 +40794,65 @@
"arguments": [
{
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 19885,
- 19888
+ 17690,
+ 17691
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 35
},
"end": {
- "line": 478,
- "column": 38
+ "line": 423,
+ "column": 36
}
}
}
],
"range": [
- 19874,
- 19889
+ 17679,
+ 17692
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 24
},
"end": {
- "line": 478,
- "column": 39
+ "line": 423,
+ "column": 37
}
}
},
"range": [
- 19874,
- 19890
+ 17679,
+ 17693
],
"loc": {
"start": {
- "line": 478,
+ "line": 423,
"column": 24
},
"end": {
- "line": 478,
- "column": 40
+ "line": 423,
+ "column": 38
}
}
}
],
"range": [
- 19766,
- 19912
+ 17573,
+ 17715
],
"loc": {
"start": {
- "line": 475,
+ "line": 420,
"column": 32
},
"end": {
- "line": 479,
+ "line": 424,
"column": 21
}
}
@@ -45134,16 +40871,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 19944,
- 19948
+ 17747,
+ 17751
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 24
},
"end": {
- "line": 480,
+ "line": 425,
"column": 28
}
}
@@ -45152,31 +40889,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 19949,
- 19961
+ 17752,
+ 17764
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 29
},
"end": {
- "line": 480,
+ "line": 425,
"column": 41
}
}
},
"range": [
- 19944,
- 19961
+ 17747,
+ 17764
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 24
},
"end": {
- "line": 480,
+ "line": 425,
"column": 41
}
}
@@ -45186,46 +40923,46 @@
"value": true,
"raw": "true",
"range": [
- 19964,
- 19968
+ 17767,
+ 17771
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 44
},
"end": {
- "line": 480,
+ "line": 425,
"column": 48
}
}
},
"range": [
- 19944,
- 19968
+ 17747,
+ 17771
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 24
},
"end": {
- "line": 480,
+ "line": 425,
"column": 48
}
}
},
"range": [
- 19944,
- 19969
+ 17747,
+ 17772
],
"loc": {
"start": {
- "line": 480,
+ "line": 425,
"column": 24
},
"end": {
- "line": 480,
+ "line": 425,
"column": 49
}
}
@@ -45241,16 +40978,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 19994,
- 20000
+ 17797,
+ 17803
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 24
},
"end": {
- "line": 481,
+ "line": 426,
"column": 30
}
}
@@ -45259,31 +40996,31 @@
"type": "Identifier",
"name": "clearInterval",
"range": [
- 20001,
- 20014
+ 17804,
+ 17817
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 31
},
"end": {
- "line": 481,
+ "line": 426,
"column": 44
}
}
},
"range": [
- 19994,
- 20014
+ 17797,
+ 17817
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 24
},
"end": {
- "line": 481,
+ "line": 426,
"column": 44
}
}
@@ -45295,16 +41032,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20015,
- 20019
+ 17818,
+ 17822
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 45
},
"end": {
- "line": 481,
+ "line": 426,
"column": 49
}
}
@@ -45313,62 +41050,62 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20020,
- 20035
+ 17823,
+ 17838
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 50
},
"end": {
- "line": 481,
+ "line": 426,
"column": 65
}
}
},
"range": [
- 20015,
- 20035
+ 17818,
+ 17838
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 45
},
"end": {
- "line": 481,
+ "line": 426,
"column": 65
}
}
}
],
"range": [
- 19994,
- 20036
+ 17797,
+ 17839
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 24
},
"end": {
- "line": 481,
+ "line": 426,
"column": 66
}
}
},
"range": [
- 19994,
- 20037
+ 17797,
+ 17840
],
"loc": {
"start": {
- "line": 481,
+ "line": 426,
"column": 24
},
"end": {
- "line": 481,
+ "line": 426,
"column": 67
}
}
@@ -45384,16 +41121,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20062,
- 20066
+ 17865,
+ 17869
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 24
},
"end": {
- "line": 482,
+ "line": 427,
"column": 28
}
}
@@ -45402,31 +41139,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20067,
- 20082
+ 17870,
+ 17885
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 29
},
"end": {
- "line": 482,
+ "line": 427,
"column": 44
}
}
},
"range": [
- 20062,
- 20082
+ 17865,
+ 17885
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 24
},
"end": {
- "line": 482,
+ "line": 427,
"column": 44
}
}
@@ -45436,125 +41173,125 @@
"value": null,
"raw": "null",
"range": [
- 20085,
- 20089
+ 17888,
+ 17892
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 47
},
"end": {
- "line": 482,
+ "line": 427,
"column": 51
}
}
},
"range": [
- 20062,
- 20089
+ 17865,
+ 17892
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 24
},
"end": {
- "line": 482,
+ "line": 427,
"column": 51
}
}
},
"range": [
- 20062,
- 20090
+ 17865,
+ 17893
],
"loc": {
"start": {
- "line": 482,
+ "line": 427,
"column": 24
},
"end": {
- "line": 482,
+ "line": 427,
"column": 52
}
}
}
],
"range": [
- 19918,
- 20112
+ 17721,
+ 17915
],
"loc": {
"start": {
- "line": 479,
+ "line": 424,
"column": 27
},
"end": {
- "line": 483,
+ "line": 428,
"column": 21
}
}
},
"range": [
- 19754,
- 20112
+ 17561,
+ 17915
],
"loc": {
"start": {
- "line": 475,
+ "line": 420,
"column": 20
},
"end": {
- "line": 483,
+ "line": 428,
"column": 21
}
}
}
],
"range": [
- 19682,
- 20130
+ 17491,
+ 17933
],
"loc": {
"start": {
- "line": 473,
- "column": 23
+ "line": 418,
+ "column": 21
},
"end": {
- "line": 484,
+ "line": 429,
"column": 17
}
}
},
"alternate": null,
"range": [
- 19675,
- 20130
+ 17486,
+ 17933
],
"loc": {
"start": {
- "line": 473,
+ "line": 418,
"column": 16
},
"end": {
- "line": 484,
+ "line": 429,
"column": 17
}
}
}
],
"range": [
- 19566,
- 20144
+ 17422,
+ 17947
],
"loc": {
"start": {
- "line": 470,
+ "line": 416,
"column": 25
},
"end": {
- "line": 485,
+ "line": 430,
"column": 13
}
}
@@ -45562,16 +41299,16 @@
"generator": false,
"expression": false,
"range": [
- 19562,
- 20144
+ 17418,
+ 17947
],
"loc": {
"start": {
- "line": 470,
+ "line": 416,
"column": 21
},
"end": {
- "line": 485,
+ "line": 430,
"column": 13
}
}
@@ -45581,16 +41318,16 @@
"shorthand": false,
"computed": false,
"range": [
- 19553,
- 20144
+ 17409,
+ 17947
],
"loc": {
"start": {
- "line": 470,
+ "line": 416,
"column": 12
},
"end": {
- "line": 485,
+ "line": 430,
"column": 13
}
},
@@ -45599,16 +41336,16 @@
"type": "Line",
"value": " Detect key",
"range": [
- 19519,
- 19540
+ 17375,
+ 17396
],
"loc": {
"start": {
- "line": 469,
+ "line": 415,
"column": 12
},
"end": {
- "line": 469,
+ "line": 415,
"column": 33
}
}
@@ -45621,16 +41358,16 @@
"type": "Identifier",
"name": "onKeyUp",
"range": [
- 20233,
- 20240
+ 18036,
+ 18043
],
"loc": {
"start": {
- "line": 487,
+ "line": 432,
"column": 12
},
"end": {
- "line": 487,
+ "line": 432,
"column": 19
}
}
@@ -45643,16 +41380,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 20241,
- 20242
+ 18044,
+ 18045
],
"loc": {
"start": {
- "line": 487,
+ "line": 432,
"column": 20
},
"end": {
- "line": 487,
+ "line": 432,
"column": 21
}
}
@@ -45672,16 +41409,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20266,
- 20270
+ 18069,
+ 18073
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 20
},
"end": {
- "line": 488,
+ "line": 433,
"column": 24
}
}
@@ -45690,47 +41427,47 @@
"type": "Identifier",
"name": "autoFilter",
"range": [
- 20271,
- 20281
+ 18074,
+ 18084
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 25
},
"end": {
- "line": 488,
+ "line": 433,
"column": 35
}
}
},
"range": [
- 20266,
- 20281
+ 18069,
+ 18084
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 20
},
"end": {
- "line": 488,
+ "line": 433,
"column": 35
}
}
},
"prefix": true,
"range": [
- 20265,
- 20281
+ 18068,
+ 18084
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 19
},
"end": {
- "line": 488,
+ "line": 433,
"column": 35
}
}
@@ -45742,197 +41479,52 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 20304,
- 20311
+ 18107,
+ 18114
],
"loc": {
"start": {
- "line": 489,
+ "line": 434,
"column": 20
},
"end": {
- "line": 489,
+ "line": 434,
"column": 27
}
}
}
],
"range": [
- 20282,
- 20329
+ 18085,
+ 18132
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 36
},
"end": {
- "line": 490,
+ "line": 435,
"column": 17
}
}
},
"alternate": null,
"range": [
- 20262,
- 20329
+ 18065,
+ 18132
],
"loc": {
"start": {
- "line": 488,
+ "line": 433,
"column": 16
},
"end": {
- "line": 490,
+ "line": 435,
"column": 17
}
}
},
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 20350,
- 20353
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 20
- },
- "end": {
- "line": 491,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 20356,
- 20357
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 26
- },
- "end": {
- "line": 491,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 20361,
- 20367
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 31
- },
- "end": {
- "line": 491,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 20368,
- 20373
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 38
- },
- "end": {
- "line": 491,
- "column": 43
- }
- }
- },
- "range": [
- 20361,
- 20373
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 31
- },
- "end": {
- "line": 491,
- "column": 43
- }
- }
- },
- "range": [
- 20356,
- 20373
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 26
- },
- "end": {
- "line": 491,
- "column": 43
- }
- }
- },
- "range": [
- 20350,
- 20373
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 20
- },
- "end": {
- "line": 491,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 20346,
- 20374
- ],
- "loc": {
- "start": {
- "line": 491,
- "column": 16
- },
- "end": {
- "line": 491,
- "column": 44
- }
- }
- },
{
"type": "VariableDeclaration",
"declarations": [
@@ -45942,16 +41534,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20395,
- 20398
+ 18153,
+ 18156
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 20
},
"end": {
- "line": 492,
+ "line": 436,
"column": 23
}
}
@@ -45965,16 +41557,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 20401,
- 20406
+ 18159,
+ 18164
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 26
},
"end": {
- "line": 492,
+ "line": 436,
"column": 31
}
}
@@ -45983,31 +41575,31 @@
"type": "Identifier",
"name": "keyCode",
"range": [
- 20407,
- 20414
+ 18165,
+ 18172
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 32
},
"end": {
- "line": 492,
+ "line": 436,
"column": 39
}
}
},
"range": [
- 20401,
- 20414
+ 18159,
+ 18172
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 26
},
"end": {
- "line": 492,
+ "line": 436,
"column": 39
}
}
@@ -46015,67 +41607,67 @@
"arguments": [
{
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 20415,
- 20418
+ 18173,
+ 18174
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 40
},
"end": {
- "line": 492,
- "column": 43
+ "line": 436,
+ "column": 41
}
}
}
],
"range": [
- 20401,
- 20419
+ 18159,
+ 18175
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 26
},
"end": {
- "line": 492,
- "column": 44
+ "line": 436,
+ "column": 42
}
}
},
"range": [
- 20395,
- 20419
+ 18153,
+ 18175
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 20
},
"end": {
- "line": 492,
- "column": 44
+ "line": 436,
+ "column": 42
}
}
}
],
"kind": "let",
"range": [
- 20391,
- 20420
+ 18149,
+ 18176
],
"loc": {
"start": {
- "line": 492,
+ "line": 436,
"column": 16
},
"end": {
- "line": 492,
- "column": 45
+ "line": 436,
+ "column": 43
}
}
},
@@ -46090,16 +41682,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20437,
- 20441
+ 18193,
+ 18197
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 16
},
"end": {
- "line": 493,
+ "line": 437,
"column": 20
}
}
@@ -46108,31 +41700,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 20442,
- 20454
+ 18198,
+ 18210
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 21
},
"end": {
- "line": 493,
+ "line": 437,
"column": 33
}
}
},
"range": [
- 20437,
- 20454
+ 18193,
+ 18210
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 16
},
"end": {
- "line": 493,
+ "line": 437,
"column": 33
}
}
@@ -46142,46 +41734,46 @@
"value": false,
"raw": "false",
"range": [
- 20457,
- 20462
+ 18213,
+ 18218
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 36
},
"end": {
- "line": 493,
+ "line": 437,
"column": 41
}
}
},
"range": [
- 20437,
- 20462
+ 18193,
+ 18218
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 16
},
"end": {
- "line": 493,
+ "line": 437,
"column": 41
}
}
},
"range": [
- 20437,
- 20463
+ 18193,
+ 18219
],
"loc": {
"start": {
- "line": 493,
+ "line": 437,
"column": 16
},
"end": {
- "line": 493,
+ "line": 437,
"column": 42
}
}
@@ -46192,16 +41784,16 @@
"type": "Identifier",
"name": "filter",
"range": [
- 20490,
- 20496
+ 18246,
+ 18252
],
"loc": {
"start": {
- "line": 495,
+ "line": 439,
"column": 25
},
"end": {
- "line": 495,
+ "line": 439,
"column": 31
}
}
@@ -46221,16 +41813,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 20568,
- 20574
+ 18324,
+ 18330
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 20
},
"end": {
- "line": 497,
+ "line": 441,
"column": 26
}
}
@@ -46239,31 +41831,31 @@
"type": "Identifier",
"name": "clearInterval",
"range": [
- 20575,
- 20588
+ 18331,
+ 18344
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 27
},
"end": {
- "line": 497,
+ "line": 441,
"column": 40
}
}
},
"range": [
- 20568,
- 20588
+ 18324,
+ 18344
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 20
},
"end": {
- "line": 497,
+ "line": 441,
"column": 40
}
}
@@ -46275,16 +41867,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20589,
- 20593
+ 18345,
+ 18349
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 41
},
"end": {
- "line": 497,
+ "line": 441,
"column": 45
}
}
@@ -46293,62 +41885,62 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20594,
- 20609
+ 18350,
+ 18365
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 46
},
"end": {
- "line": 497,
+ "line": 441,
"column": 61
}
}
},
"range": [
- 20589,
- 20609
+ 18345,
+ 18365
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 41
},
"end": {
- "line": 497,
+ "line": 441,
"column": 61
}
}
}
],
"range": [
- 20568,
- 20610
+ 18324,
+ 18366
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 20
},
"end": {
- "line": 497,
+ "line": 441,
"column": 62
}
}
},
"range": [
- 20568,
- 20611
+ 18324,
+ 18367
],
"loc": {
"start": {
- "line": 497,
+ "line": 441,
"column": 20
},
"end": {
- "line": 497,
+ "line": 441,
"column": 63
}
},
@@ -46357,16 +41949,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 20521,
- 20547
+ 18277,
+ 18303
],
"loc": {
"start": {
- "line": 496,
+ "line": 440,
"column": 20
},
"end": {
- "line": 496,
+ "line": 440,
"column": 46
}
}
@@ -46384,16 +41976,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20632,
- 20636
+ 18388,
+ 18392
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 20
},
"end": {
- "line": 498,
+ "line": 442,
"column": 24
}
}
@@ -46402,31 +41994,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20637,
- 20652
+ 18393,
+ 18408
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 25
},
"end": {
- "line": 498,
+ "line": 442,
"column": 40
}
}
},
"range": [
- 20632,
- 20652
+ 18388,
+ 18408
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 20
},
"end": {
- "line": 498,
+ "line": 442,
"column": 40
}
}
@@ -46436,46 +42028,46 @@
"value": null,
"raw": "null",
"range": [
- 20655,
- 20659
+ 18411,
+ 18415
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 43
},
"end": {
- "line": 498,
+ "line": 442,
"column": 47
}
}
},
"range": [
- 20632,
- 20659
+ 18388,
+ 18415
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 20
},
"end": {
- "line": 498,
+ "line": 442,
"column": 47
}
}
},
"range": [
- 20632,
- 20660
+ 18388,
+ 18416
],
"loc": {
"start": {
- "line": 498,
+ "line": 442,
"column": 20
},
"end": {
- "line": 498,
+ "line": 442,
"column": 48
}
}
@@ -46491,16 +42083,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20685,
- 20689
+ 18441,
+ 18445
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 24
},
"end": {
- "line": 499,
+ "line": 443,
"column": 28
}
}
@@ -46509,47 +42101,47 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 20690,
- 20702
+ 18446,
+ 18458
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 29
},
"end": {
- "line": 499,
+ "line": 443,
"column": 41
}
}
},
"range": [
- 20685,
- 20702
+ 18441,
+ 18458
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 24
},
"end": {
- "line": 499,
+ "line": 443,
"column": 41
}
}
},
"prefix": true,
"range": [
- 20684,
- 20702
+ 18440,
+ 18458
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 23
},
"end": {
- "line": 499,
+ "line": 443,
"column": 41
}
}
@@ -46567,16 +42159,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20729,
- 20733
+ 18485,
+ 18489
],
"loc": {
"start": {
- "line": 500,
+ "line": 444,
"column": 24
},
"end": {
- "line": 500,
+ "line": 444,
"column": 28
}
}
@@ -46585,62 +42177,62 @@
"type": "Identifier",
"name": "filter",
"range": [
- 20734,
- 20740
+ 18490,
+ 18496
],
"loc": {
"start": {
- "line": 500,
+ "line": 444,
"column": 29
},
"end": {
- "line": 500,
+ "line": 444,
"column": 35
}
}
},
"range": [
- 20729,
- 20740
+ 18485,
+ 18496
],
"loc": {
"start": {
- "line": 500,
+ "line": 444,
"column": 24
},
"end": {
- "line": 500,
+ "line": 444,
"column": 35
}
}
},
"arguments": [],
"range": [
- 20729,
- 20742
+ 18485,
+ 18498
],
"loc": {
"start": {
- "line": 500,
+ "line": 444,
"column": 24
},
"end": {
- "line": 500,
+ "line": 444,
"column": 37
}
}
},
"range": [
- 20729,
- 20743
+ 18485,
+ 18499
],
"loc": {
"start": {
- "line": 500,
+ "line": 444,
"column": 24
},
"end": {
- "line": 500,
+ "line": 444,
"column": 38
}
}
@@ -46656,16 +42248,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20768,
- 20772
+ 18524,
+ 18528
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 24
},
"end": {
- "line": 501,
+ "line": 445,
"column": 28
}
}
@@ -46674,31 +42266,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 20773,
- 20785
+ 18529,
+ 18541
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 29
},
"end": {
- "line": 501,
+ "line": 445,
"column": 41
}
}
},
"range": [
- 20768,
- 20785
+ 18524,
+ 18541
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 24
},
"end": {
- "line": 501,
+ "line": 445,
"column": 41
}
}
@@ -46708,94 +42300,94 @@
"value": null,
"raw": "null",
"range": [
- 20788,
- 20792
+ 18544,
+ 18548
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 44
},
"end": {
- "line": 501,
+ "line": 445,
"column": 48
}
}
},
"range": [
- 20768,
- 20792
+ 18524,
+ 18548
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 24
},
"end": {
- "line": 501,
+ "line": 445,
"column": 48
}
}
},
"range": [
- 20768,
- 20793
+ 18524,
+ 18549
],
"loc": {
"start": {
- "line": 501,
+ "line": 445,
"column": 24
},
"end": {
- "line": 501,
+ "line": 445,
"column": 49
}
}
}
],
"range": [
- 20703,
- 20815
+ 18459,
+ 18571
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 42
},
"end": {
- "line": 502,
+ "line": 446,
"column": 21
}
}
},
"alternate": null,
"range": [
- 20681,
- 20815
+ 18437,
+ 18571
],
"loc": {
"start": {
- "line": 499,
+ "line": 443,
"column": 20
},
"end": {
- "line": 502,
+ "line": 446,
"column": 21
}
}
}
],
"range": [
- 20499,
- 20833
+ 18255,
+ 18589
],
"loc": {
"start": {
- "line": 495,
+ "line": 439,
"column": 34
},
"end": {
- "line": 503,
+ "line": 447,
"column": 17
}
}
@@ -46803,16 +42395,16 @@
"generator": false,
"expression": false,
"range": [
- 20481,
- 20833
+ 18237,
+ 18589
],
"loc": {
"start": {
- "line": 495,
+ "line": 439,
"column": 16
},
"end": {
- "line": 503,
+ "line": 447,
"column": 17
}
}
@@ -46838,16 +42430,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20854,
- 20857
+ 18610,
+ 18613
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 22
}
}
@@ -46857,31 +42449,31 @@
"value": 13,
"raw": "13",
"range": [
- 20860,
- 20862
+ 18616,
+ 18618
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 25
},
"end": {
- "line": 505,
+ "line": 449,
"column": 27
}
}
},
"range": [
- 20854,
- 20862
+ 18610,
+ 18618
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 27
}
}
@@ -46893,16 +42485,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20866,
- 20869
+ 18622,
+ 18625
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 31
},
"end": {
- "line": 505,
+ "line": 449,
"column": 34
}
}
@@ -46912,46 +42504,46 @@
"value": 9,
"raw": "9",
"range": [
- 20872,
- 20873
+ 18628,
+ 18629
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 37
},
"end": {
- "line": 505,
+ "line": 449,
"column": 38
}
}
},
"range": [
- 20866,
- 20873
+ 18622,
+ 18629
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 31
},
"end": {
- "line": 505,
+ "line": 449,
"column": 38
}
}
},
"range": [
- 20854,
- 20873
+ 18610,
+ 18629
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 38
}
}
@@ -46963,16 +42555,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20877,
- 20880
+ 18633,
+ 18636
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 42
},
"end": {
- "line": 505,
+ "line": 449,
"column": 45
}
}
@@ -46982,46 +42574,46 @@
"value": 27,
"raw": "27",
"range": [
- 20883,
- 20885
+ 18639,
+ 18641
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 48
},
"end": {
- "line": 505,
+ "line": 449,
"column": 50
}
}
},
"range": [
- 20877,
- 20885
+ 18633,
+ 18641
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 42
},
"end": {
- "line": 505,
+ "line": 449,
"column": 50
}
}
},
"range": [
- 20854,
- 20885
+ 18610,
+ 18641
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 50
}
}
@@ -47033,16 +42625,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20889,
- 20892
+ 18645,
+ 18648
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 54
},
"end": {
- "line": 505,
+ "line": 449,
"column": 57
}
}
@@ -47052,46 +42644,46 @@
"value": 38,
"raw": "38",
"range": [
- 20895,
- 20897
+ 18651,
+ 18653
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 60
},
"end": {
- "line": 505,
+ "line": 449,
"column": 62
}
}
},
"range": [
- 20889,
- 20897
+ 18645,
+ 18653
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 54
},
"end": {
- "line": 505,
+ "line": 449,
"column": 62
}
}
},
"range": [
- 20854,
- 20897
+ 18610,
+ 18653
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 62
}
}
@@ -47103,16 +42695,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 20901,
- 20904
+ 18657,
+ 18660
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 66
},
"end": {
- "line": 505,
+ "line": 449,
"column": 69
}
}
@@ -47122,46 +42714,46 @@
"value": 40,
"raw": "40",
"range": [
- 20907,
- 20909
+ 18663,
+ 18665
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 72
},
"end": {
- "line": 505,
+ "line": 449,
"column": 74
}
}
},
"range": [
- 20901,
- 20909
+ 18657,
+ 18665
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 66
},
"end": {
- "line": 505,
+ "line": 449,
"column": 74
}
}
},
"range": [
- 20854,
- 20909
+ 18610,
+ 18665
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 19
},
"end": {
- "line": 505,
+ "line": 449,
"column": 74
}
}
@@ -47180,16 +42772,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20936,
- 20940
+ 18692,
+ 18696
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 23
},
"end": {
- "line": 506,
+ "line": 450,
"column": 27
}
}
@@ -47198,31 +42790,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20941,
- 20956
+ 18697,
+ 18712
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 28
},
"end": {
- "line": 506,
+ "line": 450,
"column": 43
}
}
},
"range": [
- 20936,
- 20956
+ 18692,
+ 18712
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 23
},
"end": {
- "line": 506,
+ "line": 450,
"column": 43
}
}
@@ -47232,31 +42824,31 @@
"value": null,
"raw": "null",
"range": [
- 20961,
- 20965
+ 18717,
+ 18721
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 48
},
"end": {
- "line": 506,
+ "line": 450,
"column": 52
}
}
},
"range": [
- 20936,
- 20965
+ 18692,
+ 18721
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 23
},
"end": {
- "line": 506,
+ "line": 450,
"column": 52
}
}
@@ -47275,16 +42867,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 20992,
- 20996
+ 18748,
+ 18752
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 24
},
"end": {
- "line": 507,
+ "line": 451,
"column": 28
}
}
@@ -47293,31 +42885,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 20997,
- 21012
+ 18753,
+ 18768
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 29
},
"end": {
- "line": 507,
+ "line": 451,
"column": 44
}
}
},
"range": [
- 20992,
- 21012
+ 18748,
+ 18768
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 24
},
"end": {
- "line": 507,
+ "line": 451,
"column": 44
}
}
@@ -47331,16 +42923,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 21015,
- 21021
+ 18771,
+ 18777
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 47
},
"end": {
- "line": 507,
+ "line": 451,
"column": 53
}
}
@@ -47349,31 +42941,31 @@
"type": "Identifier",
"name": "setInterval",
"range": [
- 21022,
- 21033
+ 18778,
+ 18789
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 54
},
"end": {
- "line": 507,
+ "line": 451,
"column": 65
}
}
},
"range": [
- 21015,
- 21033
+ 18771,
+ 18789
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 47
},
"end": {
- "line": 507,
+ "line": 451,
"column": 65
}
}
@@ -47388,16 +42980,16 @@
"type": "Identifier",
"name": "filter",
"range": [
- 21063,
- 21069
+ 18819,
+ 18825
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 28
},
"end": {
- "line": 508,
+ "line": 452,
"column": 34
}
}
@@ -47406,31 +42998,31 @@
"type": "Identifier",
"name": "bind",
"range": [
- 21070,
- 21074
+ 18826,
+ 18830
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 35
},
"end": {
- "line": 508,
+ "line": 452,
"column": 39
}
}
},
"range": [
- 21063,
- 21074
+ 18819,
+ 18830
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 28
},
"end": {
- "line": 508,
+ "line": 452,
"column": 39
}
}
@@ -47439,32 +43031,32 @@
{
"type": "ThisExpression",
"range": [
- 21075,
- 21079
+ 18831,
+ 18835
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 40
},
"end": {
- "line": 508,
+ "line": 452,
"column": 44
}
}
}
],
"range": [
- 21063,
- 21080
+ 18819,
+ 18836
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 28
},
"end": {
- "line": 508,
+ "line": 452,
"column": 45
}
}
@@ -47475,16 +43067,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21082,
- 21086
+ 18838,
+ 18842
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 47
},
"end": {
- "line": 508,
+ "line": 452,
"column": 51
}
}
@@ -47493,125 +43085,125 @@
"type": "Identifier",
"name": "autoFilterDelay",
"range": [
- 21087,
- 21102
+ 18843,
+ 18858
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 52
},
"end": {
- "line": 508,
+ "line": 452,
"column": 67
}
}
},
"range": [
- 21082,
- 21102
+ 18838,
+ 18858
],
"loc": {
"start": {
- "line": 508,
+ "line": 452,
"column": 47
},
"end": {
- "line": 508,
+ "line": 452,
"column": 67
}
}
}
],
"range": [
- 21015,
- 21103
+ 18771,
+ 18859
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 47
},
"end": {
- "line": 508,
+ "line": 452,
"column": 68
}
}
},
"range": [
- 20992,
- 21103
+ 18748,
+ 18859
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 24
},
"end": {
- "line": 508,
+ "line": 452,
"column": 68
}
}
},
"range": [
- 20992,
- 21104
+ 18748,
+ 18860
],
"loc": {
"start": {
- "line": 507,
+ "line": 451,
"column": 24
},
"end": {
- "line": 508,
+ "line": 452,
"column": 69
}
}
}
],
"range": [
- 20966,
- 21126
+ 18722,
+ 18882
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 53
},
"end": {
- "line": 509,
+ "line": 453,
"column": 21
}
}
},
"alternate": null,
"range": [
- 20933,
- 21126
+ 18689,
+ 18882
],
"loc": {
"start": {
- "line": 506,
+ "line": 450,
"column": 20
},
"end": {
- "line": 509,
+ "line": 453,
"column": 21
}
}
}
],
"range": [
- 20911,
- 21144
+ 18667,
+ 18900
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 76
},
"end": {
- "line": 510,
+ "line": 454,
"column": 17
}
}
@@ -47630,16 +43222,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 21172,
- 21178
+ 18928,
+ 18934
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 20
},
"end": {
- "line": 511,
+ "line": 455,
"column": 26
}
}
@@ -47648,31 +43240,31 @@
"type": "Identifier",
"name": "clearInterval",
"range": [
- 21179,
- 21192
+ 18935,
+ 18948
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 27
},
"end": {
- "line": 511,
+ "line": 455,
"column": 40
}
}
},
"range": [
- 21172,
- 21192
+ 18928,
+ 18948
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 20
},
"end": {
- "line": 511,
+ "line": 455,
"column": 40
}
}
@@ -47684,16 +43276,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21193,
- 21197
+ 18949,
+ 18953
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 41
},
"end": {
- "line": 511,
+ "line": 455,
"column": 45
}
}
@@ -47702,62 +43294,62 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 21198,
- 21213
+ 18954,
+ 18969
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 46
},
"end": {
- "line": 511,
+ "line": 455,
"column": 61
}
}
},
"range": [
- 21193,
- 21213
+ 18949,
+ 18969
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 41
},
"end": {
- "line": 511,
+ "line": 455,
"column": 61
}
}
}
],
"range": [
- 21172,
- 21214
+ 18928,
+ 18970
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 20
},
"end": {
- "line": 511,
+ "line": 455,
"column": 62
}
}
},
"range": [
- 21172,
- 21215
+ 18928,
+ 18971
],
"loc": {
"start": {
- "line": 511,
+ "line": 455,
"column": 20
},
"end": {
- "line": 511,
+ "line": 455,
"column": 63
}
}
@@ -47773,16 +43365,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21236,
- 21240
+ 18992,
+ 18996
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 20
},
"end": {
- "line": 512,
+ "line": 456,
"column": 24
}
}
@@ -47791,31 +43383,31 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 21241,
- 21256
+ 18997,
+ 19012
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 25
},
"end": {
- "line": 512,
+ "line": 456,
"column": 40
}
}
},
"range": [
- 21236,
- 21256
+ 18992,
+ 19012
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 20
},
"end": {
- "line": 512,
+ "line": 456,
"column": 40
}
}
@@ -47825,93 +43417,93 @@
"value": null,
"raw": "null",
"range": [
- 21259,
- 21263
+ 19015,
+ 19019
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 43
},
"end": {
- "line": 512,
+ "line": 456,
"column": 47
}
}
},
"range": [
- 21236,
- 21263
+ 18992,
+ 19019
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 20
},
"end": {
- "line": 512,
+ "line": 456,
"column": 47
}
}
},
"range": [
- 21236,
- 21264
+ 18992,
+ 19020
],
"loc": {
"start": {
- "line": 512,
+ "line": 456,
"column": 20
},
"end": {
- "line": 512,
+ "line": 456,
"column": 48
}
}
}
],
"range": [
- 21150,
- 21282
+ 18906,
+ 19038
],
"loc": {
"start": {
- "line": 510,
+ "line": 454,
"column": 23
},
"end": {
- "line": 513,
+ "line": 457,
"column": 17
}
}
},
"range": [
- 20851,
- 21282
+ 18607,
+ 19038
],
"loc": {
"start": {
- "line": 505,
+ "line": 449,
"column": 16
},
"end": {
- "line": 513,
+ "line": 457,
"column": 17
}
}
}
],
"range": [
- 20244,
- 21296
+ 18047,
+ 19052
],
"loc": {
"start": {
- "line": 487,
+ "line": 432,
"column": 23
},
"end": {
- "line": 514,
+ "line": 458,
"column": 13
}
}
@@ -47919,16 +43511,16 @@
"generator": false,
"expression": false,
"range": [
- 20240,
- 21296
+ 18043,
+ 19052
],
"loc": {
"start": {
- "line": 487,
+ "line": 432,
"column": 19
},
"end": {
- "line": 514,
+ "line": 458,
"column": 13
}
}
@@ -47938,16 +43530,16 @@
"shorthand": false,
"computed": false,
"range": [
- 20233,
- 21296
+ 18036,
+ 19052
],
"loc": {
"start": {
- "line": 487,
+ "line": 432,
"column": 12
},
"end": {
- "line": 514,
+ "line": 458,
"column": 13
}
},
@@ -47956,16 +43548,16 @@
"type": "Line",
"value": " if auto-filter on, detect user is typing and filter columns",
"range": [
- 20158,
- 20220
+ 17961,
+ 18023
],
"loc": {
"start": {
- "line": 486,
+ "line": 431,
"column": 12
},
"end": {
- "line": 486,
+ "line": 431,
"column": 74
}
}
@@ -47978,16 +43570,16 @@
"type": "Identifier",
"name": "onKeyDown",
"range": [
- 21366,
- 21375
+ 19122,
+ 19131
],
"loc": {
"start": {
- "line": 516,
+ "line": 460,
"column": 12
},
"end": {
- "line": 516,
+ "line": 460,
"column": 21
}
}
@@ -48010,16 +43602,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21400,
- 21404
+ 19156,
+ 19160
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 20
},
"end": {
- "line": 517,
+ "line": 461,
"column": 24
}
}
@@ -48028,47 +43620,47 @@
"type": "Identifier",
"name": "autoFilter",
"range": [
- 21405,
- 21415
+ 19161,
+ 19171
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 25
},
"end": {
- "line": 517,
+ "line": 461,
"column": 35
}
}
},
"range": [
- 21400,
- 21415
+ 19156,
+ 19171
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 20
},
"end": {
- "line": 517,
+ "line": 461,
"column": 35
}
}
},
"prefix": true,
"range": [
- 21399,
- 21415
+ 19155,
+ 19171
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 19
},
"end": {
- "line": 517,
+ "line": 461,
"column": 35
}
}
@@ -48080,48 +43672,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 21419,
- 21426
+ 19175,
+ 19182
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 39
},
"end": {
- "line": 517,
+ "line": 461,
"column": 46
}
}
}
],
"range": [
- 21417,
- 21428
+ 19173,
+ 19184
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 37
},
"end": {
- "line": 517,
+ "line": 461,
"column": 48
}
}
},
"alternate": null,
"range": [
- 21396,
- 21428
+ 19152,
+ 19184
],
"loc": {
"start": {
- "line": 517,
+ "line": 461,
"column": 16
},
"end": {
- "line": 517,
+ "line": 461,
"column": 48
}
}
@@ -48137,16 +43729,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21445,
- 21449
+ 19201,
+ 19205
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 16
},
"end": {
- "line": 518,
+ "line": 462,
"column": 20
}
}
@@ -48155,31 +43747,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 21450,
- 21462
+ 19206,
+ 19218
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 21
},
"end": {
- "line": 518,
+ "line": 462,
"column": 33
}
}
},
"range": [
- 21445,
- 21462
+ 19201,
+ 19218
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 16
},
"end": {
- "line": 518,
+ "line": 462,
"column": 33
}
}
@@ -48189,62 +43781,62 @@
"value": true,
"raw": "true",
"range": [
- 21465,
- 21469
+ 19221,
+ 19225
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 36
},
"end": {
- "line": 518,
+ "line": 462,
"column": 40
}
}
},
"range": [
- 21445,
- 21469
+ 19201,
+ 19225
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 16
},
"end": {
- "line": 518,
+ "line": 462,
"column": 40
}
}
},
"range": [
- 21445,
- 21470
+ 19201,
+ 19226
],
"loc": {
"start": {
- "line": 518,
+ "line": 462,
"column": 16
},
"end": {
- "line": 518,
+ "line": 462,
"column": 41
}
}
}
],
"range": [
- 21378,
- 21484
+ 19134,
+ 19240
],
"loc": {
"start": {
- "line": 516,
+ "line": 460,
"column": 24
},
"end": {
- "line": 519,
+ "line": 463,
"column": 13
}
}
@@ -48252,16 +43844,16 @@
"generator": false,
"expression": false,
"range": [
- 21375,
- 21484
+ 19131,
+ 19240
],
"loc": {
"start": {
- "line": 516,
+ "line": 460,
"column": 21
},
"end": {
- "line": 519,
+ "line": 463,
"column": 13
}
}
@@ -48271,16 +43863,16 @@
"shorthand": false,
"computed": false,
"range": [
- 21366,
- 21484
+ 19122,
+ 19240
],
"loc": {
"start": {
- "line": 516,
+ "line": 460,
"column": 12
},
"end": {
- "line": 519,
+ "line": 463,
"column": 13
}
},
@@ -48289,16 +43881,16 @@
"type": "Line",
"value": " if auto-filter on, detect user is typing",
"range": [
- 21310,
- 21353
+ 19066,
+ 19109
],
"loc": {
"start": {
- "line": 515,
+ "line": 459,
"column": 12
},
"end": {
- "line": 515,
+ "line": 459,
"column": 55
}
}
@@ -48311,16 +43903,16 @@
"type": "Identifier",
"name": "onInpBlur",
"range": [
- 21562,
- 21571
+ 19318,
+ 19327
],
"loc": {
"start": {
- "line": 521,
+ "line": 465,
"column": 12
},
"end": {
- "line": 521,
+ "line": 465,
"column": 21
}
}
@@ -48340,16 +43932,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21595,
- 21599
+ 19351,
+ 19355
],
"loc": {
"start": {
- "line": 522,
+ "line": 466,
"column": 19
},
"end": {
- "line": 522,
+ "line": 466,
"column": 23
}
}
@@ -48358,31 +43950,31 @@
"type": "Identifier",
"name": "autoFilter",
"range": [
- 21600,
- 21610
+ 19356,
+ 19366
],
"loc": {
"start": {
- "line": 522,
+ "line": 466,
"column": 24
},
"end": {
- "line": 522,
+ "line": 466,
"column": 34
}
}
},
"range": [
- 21595,
- 21610
+ 19351,
+ 19366
],
"loc": {
"start": {
- "line": 522,
+ "line": 466,
"column": 19
},
"end": {
- "line": 522,
+ "line": 466,
"column": 34
}
}
@@ -48401,16 +43993,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21633,
- 21637
+ 19389,
+ 19393
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 20
},
"end": {
- "line": 523,
+ "line": 467,
"column": 24
}
}
@@ -48419,31 +44011,31 @@
"type": "Identifier",
"name": "isUserTyping",
"range": [
- 21638,
- 21650
+ 19394,
+ 19406
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 25
},
"end": {
- "line": 523,
+ "line": 467,
"column": 37
}
}
},
"range": [
- 21633,
- 21650
+ 19389,
+ 19406
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 20
},
"end": {
- "line": 523,
+ "line": 467,
"column": 37
}
}
@@ -48453,46 +44045,46 @@
"value": false,
"raw": "false",
"range": [
- 21653,
- 21658
+ 19409,
+ 19414
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 40
},
"end": {
- "line": 523,
+ "line": 467,
"column": 45
}
}
},
"range": [
- 21633,
- 21658
+ 19389,
+ 19414
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 20
},
"end": {
- "line": 523,
+ "line": 467,
"column": 45
}
}
},
"range": [
- 21633,
- 21659
+ 19389,
+ 19415
],
"loc": {
"start": {
- "line": 523,
+ "line": 467,
"column": 20
},
"end": {
- "line": 523,
+ "line": 467,
"column": 46
}
}
@@ -48508,16 +44100,16 @@
"type": "Identifier",
"name": "global",
"range": [
- 21680,
- 21686
+ 19436,
+ 19442
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 20
},
"end": {
- "line": 524,
+ "line": 468,
"column": 26
}
}
@@ -48526,31 +44118,31 @@
"type": "Identifier",
"name": "clearInterval",
"range": [
- 21687,
- 21700
+ 19443,
+ 19456
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 27
},
"end": {
- "line": 524,
+ "line": 468,
"column": 40
}
}
},
"range": [
- 21680,
- 21700
+ 19436,
+ 19456
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 20
},
"end": {
- "line": 524,
+ "line": 468,
"column": 40
}
}
@@ -48562,16 +44154,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 21701,
- 21705
+ 19457,
+ 19461
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 41
},
"end": {
- "line": 524,
+ "line": 468,
"column": 45
}
}
@@ -48580,1073 +44172,271 @@
"type": "Identifier",
"name": "autoFilterTimer",
"range": [
- 21706,
- 21721
+ 19462,
+ 19477
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 46
},
"end": {
- "line": 524,
+ "line": 468,
"column": 61
}
}
},
"range": [
- 21701,
- 21721
+ 19457,
+ 19477
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 41
},
"end": {
- "line": 524,
+ "line": 468,
"column": 61
}
}
}
],
"range": [
- 21680,
- 21722
+ 19436,
+ 19478
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 20
},
"end": {
- "line": 524,
+ "line": 468,
"column": 62
}
}
},
"range": [
- 21680,
- 21723
+ 19436,
+ 19479
],
"loc": {
"start": {
- "line": 524,
+ "line": 468,
"column": 20
},
"end": {
- "line": 524,
+ "line": 468,
"column": 63
}
}
}
],
"range": [
- 21611,
- 21741
+ 19367,
+ 19497
],
"loc": {
"start": {
- "line": 522,
+ "line": 466,
"column": 35
},
"end": {
- "line": 525,
+ "line": 469,
"column": 17
}
}
},
"alternate": null,
"range": [
- 21592,
- 21741
+ 19348,
+ 19497
],
"loc": {
"start": {
- "line": 522,
+ "line": 466,
"column": 16
},
"end": {
- "line": 525,
+ "line": 469,
"column": 17
}
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 21758,
- 21820
- ],
- "loc": {
- "start": {
- "line": 526,
- "column": 16
- },
- "end": {
- "line": 526,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 21837,
- 21881
- ],
- "loc": {
- "start": {
- "line": 527,
- "column": 16
- },
- "end": {
- "line": 527,
- "column": 60
- }
- }
- }
- ]
+ }
},
{
- "type": "IfStatement",
- "test": {
+ "type": "ExpressionStatement",
+ "expression": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 19514,
+ 19518
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 16
+ },
+ "end": {
+ "line": 470,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 19519,
+ 19526
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 21
+ },
+ "end": {
+ "line": 470,
+ "column": 28
+ }
+ }
+ },
"range": [
- 21901,
- 21905
+ 19514,
+ 19526
],
"loc": {
"start": {
- "line": 528,
- "column": 19
+ "line": 470,
+ "column": 16
},
"end": {
- "line": 528,
- "column": 23
+ "line": 470,
+ "column": 28
}
}
},
"property": {
"type": "Identifier",
- "name": "hasExtension",
+ "name": "emit",
"range": [
- 21906,
- 21918
+ 19527,
+ 19531
],
"loc": {
"start": {
- "line": 528,
- "column": 24
+ "line": 470,
+ "column": 29
},
"end": {
- "line": 528,
- "column": 36
+ "line": 470,
+ "column": 33
}
}
},
"range": [
- 21901,
- 21918
+ 19514,
+ 19531
],
"loc": {
"start": {
- "line": 528,
- "column": 19
+ "line": 470,
+ "column": 16
},
"end": {
- "line": 528,
- "column": 36
+ "line": 470,
+ "column": 33
}
}
},
"arguments": [
{
"type": "Literal",
- "value": "advancedGrid",
- "raw": "'advancedGrid'",
+ "value": "filter-blur",
+ "raw": "'filter-blur'",
"range": [
- 21919,
- 21933
+ 19532,
+ 19545
],
"loc": {
"start": {
- "line": 528,
- "column": 37
+ "line": 470,
+ "column": 34
},
"end": {
- "line": 528,
- "column": 51
+ "line": 470,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 19547,
+ 19551
+ ],
+ "loc": {
+ "start": {
+ "line": 470,
+ "column": 49
+ },
+ "end": {
+ "line": 470,
+ "column": 53
}
}
}
],
"range": [
- 21901,
- 21934
+ 19514,
+ 19552
],
"loc": {
"start": {
- "line": 528,
- "column": 19
+ "line": 470,
+ "column": 16
},
"end": {
- "line": 528,
- "column": 52
+ "line": 470,
+ "column": 54
}
}
},
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 21961,
- 21968
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 24
- },
- "end": {
- "line": 529,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 21971,
- 21975
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 34
- },
- "end": {
- "line": 529,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extension",
- "range": [
- 21976,
- 21985
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 39
- },
- "end": {
- "line": 529,
- "column": 48
- }
- }
- },
- "range": [
- 21971,
- 21985
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 34
- },
- "end": {
- "line": 529,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "advancedGrid",
- "raw": "'advancedGrid'",
- "range": [
- 21986,
- 22000
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 49
- },
- "end": {
- "line": 529,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 21971,
- 22001
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 34
- },
- "end": {
- "line": 529,
- "column": 64
- }
- }
- },
- "range": [
- 21961,
- 22001
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 24
- },
- "end": {
- "line": 529,
- "column": 64
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 21957,
- 22002
- ],
- "loc": {
- "start": {
- "line": 529,
- "column": 20
- },
- "end": {
- "line": 529,
- "column": 65
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 22027,
- 22038
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 24
- },
- "end": {
- "line": 530,
- "column": 35
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 22041,
- 22048
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 38
- },
- "end": {
- "line": 530,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_ezEditTable",
- "range": [
- 22049,
- 22061
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 46
- },
- "end": {
- "line": 530,
- "column": 58
- }
- }
- },
- "range": [
- 22041,
- 22061
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 38
- },
- "end": {
- "line": 530,
- "column": 58
- }
- }
- },
- "range": [
- 22027,
- 22061
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 24
- },
- "end": {
- "line": 530,
- "column": 58
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 22023,
- 22062
- ],
- "loc": {
- "start": {
- "line": 530,
- "column": 20
- },
- "end": {
- "line": 530,
- "column": 59
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 22086,
- 22093
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 23
- },
- "end": {
- "line": 531,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 22094,
- 22097
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 31
- },
- "end": {
- "line": 531,
- "column": 34
- }
- }
- },
- "range": [
- 22086,
- 22097
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 23
- },
- "end": {
- "line": 531,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "editable",
- "range": [
- 22098,
- 22106
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 35
- },
- "end": {
- "line": 531,
- "column": 43
- }
- }
- },
- "range": [
- 22086,
- 22106
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 23
- },
- "end": {
- "line": 531,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 22133,
- 22144
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 24
- },
- "end": {
- "line": 532,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Editable",
- "range": [
- 22145,
- 22153
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 36
- },
- "end": {
- "line": 532,
- "column": 44
- }
- }
- },
- "range": [
- 22133,
- 22153
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 24
- },
- "end": {
- "line": 532,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Set",
- "range": [
- 22154,
- 22157
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 45
- },
- "end": {
- "line": 532,
- "column": 48
- }
- }
- },
- "range": [
- 22133,
- 22157
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 24
- },
- "end": {
- "line": 532,
- "column": 48
- }
- }
- },
- "arguments": [],
- "range": [
- 22133,
- 22159
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 24
- },
- "end": {
- "line": 532,
- "column": 50
- }
- }
- },
- "range": [
- 22133,
- 22160
- ],
- "loc": {
- "start": {
- "line": 532,
- "column": 24
- },
- "end": {
- "line": 532,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 22107,
- 22182
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 44
- },
- "end": {
- "line": 533,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 22083,
- 22182
- ],
- "loc": {
- "start": {
- "line": 531,
- "column": 20
- },
- "end": {
- "line": 533,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 22206,
- 22213
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 23
- },
- "end": {
- "line": 534,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 22214,
- 22217
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 31
- },
- "end": {
- "line": 534,
- "column": 34
- }
- }
- },
- "range": [
- 22206,
- 22217
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 23
- },
- "end": {
- "line": 534,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "selection",
- "range": [
- 22218,
- 22227
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 35
- },
- "end": {
- "line": 534,
- "column": 44
- }
- }
- },
- "range": [
- 22206,
- 22227
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 23
- },
- "end": {
- "line": 534,
- "column": 44
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 22254,
- 22265
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 24
- },
- "end": {
- "line": 535,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Selection",
- "range": [
- 22266,
- 22275
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 36
- },
- "end": {
- "line": 535,
- "column": 45
- }
- }
- },
- "range": [
- 22254,
- 22275
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 24
- },
- "end": {
- "line": 535,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Set",
- "range": [
- 22276,
- 22279
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 46
- },
- "end": {
- "line": 535,
- "column": 49
- }
- }
- },
- "range": [
- 22254,
- 22279
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 24
- },
- "end": {
- "line": 535,
- "column": 49
- }
- }
- },
- "arguments": [],
- "range": [
- 22254,
- 22281
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 24
- },
- "end": {
- "line": 535,
- "column": 51
- }
- }
- },
- "range": [
- 22254,
- 22282
- ],
- "loc": {
- "start": {
- "line": 535,
- "column": 24
- },
- "end": {
- "line": 535,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 22228,
- 22304
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 45
- },
- "end": {
- "line": 536,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 22203,
- 22304
- ],
- "loc": {
- "start": {
- "line": 534,
- "column": 20
- },
- "end": {
- "line": 536,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 21935,
- 22322
- ],
- "loc": {
- "start": {
- "line": 528,
- "column": 53
- },
- "end": {
- "line": 537,
- "column": 17
- }
- }
- },
- "alternate": null,
"range": [
- 21898,
- 22322
+ 19514,
+ 19553
],
"loc": {
"start": {
- "line": 528,
+ "line": 470,
"column": 16
},
"end": {
- "line": 537,
- "column": 17
+ "line": 470,
+ "column": 55
}
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 21758,
- 21820
- ],
- "loc": {
- "start": {
- "line": 526,
- "column": 16
- },
- "end": {
- "line": 526,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 21837,
- 21881
- ],
- "loc": {
- "start": {
- "line": 527,
- "column": 16
- },
- "end": {
- "line": 527,
- "column": 60
- }
- }
- }
- ]
+ }
}
],
"range": [
- 21574,
- 22336
+ 19330,
+ 19567
],
"loc": {
"start": {
- "line": 521,
+ "line": 465,
"column": 24
},
"end": {
- "line": 538,
+ "line": 471,
"column": 13
}
}
@@ -49654,16 +44444,16 @@
"generator": false,
"expression": false,
"range": [
- 21571,
- 22336
+ 19327,
+ 19567
],
"loc": {
"start": {
- "line": 521,
+ "line": 465,
"column": 21
},
"end": {
- "line": 538,
+ "line": 471,
"column": 13
}
}
@@ -49673,16 +44463,16 @@
"shorthand": false,
"computed": false,
"range": [
- 21562,
- 22336
+ 19318,
+ 19567
],
"loc": {
"start": {
- "line": 521,
+ "line": 465,
"column": 12
},
"end": {
- "line": 538,
+ "line": 471,
"column": 13
}
},
@@ -49691,16 +44481,16 @@
"type": "Line",
"value": " if auto-filter on, clear interval on filter blur",
"range": [
- 21498,
- 21549
+ 19254,
+ 19305
],
"loc": {
"start": {
- "line": 520,
+ "line": 464,
"column": 12
},
"end": {
- "line": 520,
+ "line": 464,
"column": 63
}
}
@@ -49713,16 +44503,16 @@
"type": "Identifier",
"name": "onInpFocus",
"range": [
- 22403,
- 22413
+ 19634,
+ 19644
],
"loc": {
"start": {
- "line": 540,
+ "line": 473,
"column": 12
},
"end": {
- "line": 540,
+ "line": 473,
"column": 22
}
}
@@ -49735,16 +44525,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 22414,
- 22415
+ 19645,
+ 19646
],
"loc": {
"start": {
- "line": 540,
+ "line": 473,
"column": 23
},
"end": {
- "line": 540,
+ "line": 473,
"column": 24
}
}
@@ -49753,151 +44543,6 @@
"body": {
"type": "BlockStatement",
"body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 22439,
- 22442
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 20
- },
- "end": {
- "line": 541,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 22445,
- 22446
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 26
- },
- "end": {
- "line": 541,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 22450,
- 22456
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 31
- },
- "end": {
- "line": 541,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 22457,
- 22462
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 38
- },
- "end": {
- "line": 541,
- "column": 43
- }
- }
- },
- "range": [
- 22450,
- 22462
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 31
- },
- "end": {
- "line": 541,
- "column": 43
- }
- }
- },
- "range": [
- 22445,
- 22462
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 26
- },
- "end": {
- "line": 541,
- "column": 43
- }
- }
- },
- "range": [
- 22439,
- 22462
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 20
- },
- "end": {
- "line": 541,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 22435,
- 22463
- ],
- "loc": {
- "start": {
- "line": 541,
- "column": 16
- },
- "end": {
- "line": 541,
- "column": 44
- }
- }
- },
{
"type": "VariableDeclaration",
"declarations": [
@@ -49907,16 +44552,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 22484,
- 22487
+ 19670,
+ 19673
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 20
},
"end": {
- "line": 542,
+ "line": 474,
"column": 23
}
}
@@ -49930,16 +44575,16 @@
"type": "Identifier",
"name": "Event",
"range": [
- 22490,
- 22495
+ 19676,
+ 19681
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 26
},
"end": {
- "line": 542,
+ "line": 474,
"column": 31
}
}
@@ -49948,31 +44593,31 @@
"type": "Identifier",
"name": "target",
"range": [
- 22496,
- 22502
+ 19682,
+ 19688
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 32
},
"end": {
- "line": 542,
+ "line": 474,
"column": 38
}
}
},
"range": [
- 22490,
- 22502
+ 19676,
+ 19688
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 26
},
"end": {
- "line": 542,
+ "line": 474,
"column": 38
}
}
@@ -49980,67 +44625,67 @@
"arguments": [
{
"type": "Identifier",
- "name": "_ev",
+ "name": "e",
"range": [
- 22503,
- 22506
+ 19689,
+ 19690
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 39
},
"end": {
- "line": 542,
- "column": 42
+ "line": 474,
+ "column": 40
}
}
}
],
"range": [
- 22490,
- 22507
+ 19676,
+ 19691
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 26
},
"end": {
- "line": 542,
- "column": 43
+ "line": 474,
+ "column": 41
}
}
},
"range": [
- 22484,
- 22507
+ 19670,
+ 19691
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 20
},
"end": {
- "line": 542,
- "column": 43
+ "line": 474,
+ "column": 41
}
}
}
],
"kind": "let",
"range": [
- 22480,
- 22508
+ 19666,
+ 19692
],
"loc": {
"start": {
- "line": 542,
+ "line": 474,
"column": 16
},
"end": {
- "line": 542,
- "column": 44
+ "line": 474,
+ "column": 42
}
}
},
@@ -50055,16 +44700,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22525,
- 22529
+ 19709,
+ 19713
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 16
},
"end": {
- "line": 543,
+ "line": 475,
"column": 20
}
}
@@ -50073,31 +44718,31 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 22530,
- 22544
+ 19714,
+ 19728
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 21
},
"end": {
- "line": 543,
+ "line": 475,
"column": 35
}
}
},
"range": [
- 22525,
- 22544
+ 19709,
+ 19728
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 16
},
"end": {
- "line": 543,
+ "line": 475,
"column": 35
}
}
@@ -50111,16 +44756,16 @@
"type": "Identifier",
"name": "elm",
"range": [
- 22547,
- 22550
+ 19731,
+ 19734
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 38
},
"end": {
- "line": 543,
+ "line": 475,
"column": 41
}
}
@@ -50129,31 +44774,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 22551,
- 22563
+ 19735,
+ 19747
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 42
},
"end": {
- "line": 543,
+ "line": 475,
"column": 54
}
}
},
"range": [
- 22547,
- 22563
+ 19731,
+ 19747
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 38
},
"end": {
- "line": 543,
+ "line": 475,
"column": 54
}
}
@@ -50164,62 +44809,62 @@
"value": "id",
"raw": "'id'",
"range": [
- 22564,
- 22568
+ 19748,
+ 19752
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 55
},
"end": {
- "line": 543,
+ "line": 475,
"column": 59
}
}
}
],
"range": [
- 22547,
- 22569
+ 19731,
+ 19753
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 38
},
"end": {
- "line": 543,
+ "line": 475,
"column": 60
}
}
},
"range": [
- 22525,
- 22569
+ 19709,
+ 19753
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 16
},
"end": {
- "line": 543,
+ "line": 475,
"column": 60
}
}
},
"range": [
- 22525,
- 22570
+ 19709,
+ 19754
],
"loc": {
"start": {
- "line": 543,
+ "line": 475,
"column": 16
},
"end": {
- "line": 543,
+ "line": 475,
"column": 61
}
}
@@ -50235,16 +44880,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22587,
- 22591
+ 19771,
+ 19775
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 16
},
"end": {
- "line": 544,
+ "line": 476,
"column": 20
}
}
@@ -50253,31 +44898,31 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 22592,
- 22601
+ 19776,
+ 19785
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 21
},
"end": {
- "line": 544,
+ "line": 476,
"column": 30
}
}
},
"range": [
- 22587,
- 22601
+ 19771,
+ 19785
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 16
},
"end": {
- "line": 544,
+ "line": 476,
"column": 30
}
}
@@ -50291,16 +44936,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 22604,
- 22607
+ 19788,
+ 19791
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 33
},
"end": {
- "line": 544,
+ "line": 476,
"column": 36
}
}
@@ -50309,31 +44954,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 22608,
- 22610
+ 19792,
+ 19794
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 37
},
"end": {
- "line": 544,
+ "line": 476,
"column": 39
}
}
},
"range": [
- 22604,
- 22610
+ 19788,
+ 19794
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 33
},
"end": {
- "line": 544,
+ "line": 476,
"column": 39
}
}
@@ -50345,16 +44990,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 22611,
- 22615
+ 19795,
+ 19799
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 40
},
"end": {
- "line": 544,
+ "line": 476,
"column": 44
}
}
@@ -50363,1362 +45008,254 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 22616,
- 22630
+ 19800,
+ 19814
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 45
},
"end": {
- "line": 544,
+ "line": 476,
"column": 59
}
}
},
"range": [
- 22611,
- 22630
+ 19795,
+ 19814
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 40
},
"end": {
- "line": 544,
+ "line": 476,
"column": 59
}
}
}
],
"range": [
- 22604,
- 22631
+ 19788,
+ 19815
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 33
},
"end": {
- "line": 544,
+ "line": 476,
"column": 60
}
}
},
"range": [
- 22587,
- 22631
+ 19771,
+ 19815
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 16
},
"end": {
- "line": 544,
+ "line": 476,
"column": 60
}
}
},
"range": [
- 22587,
- 22632
+ 19771,
+ 19816
],
"loc": {
"start": {
- "line": 544,
+ "line": 476,
"column": 16
},
"end": {
- "line": 544,
+ "line": 476,
"column": 61
}
}
},
{
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 22652,
- 22656
- ],
- "loc": {
- "start": {
- "line": 545,
- "column": 19
- },
- "end": {
- "line": 545,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 22657,
- 22669
- ],
- "loc": {
- "start": {
- "line": 545,
- "column": 24
- },
- "end": {
- "line": 545,
- "column": 36
- }
- }
- },
- "range": [
- 22652,
- 22669
- ],
- "loc": {
- "start": {
- "line": 545,
- "column": 19
- },
- "end": {
- "line": 545,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 22692,
- 22697
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 20
- },
- "end": {
- "line": 546,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cancel",
- "range": [
- 22698,
- 22704
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 26
- },
- "end": {
- "line": 546,
- "column": 32
- }
- }
- },
- "range": [
- 22692,
- 22704
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 20
- },
- "end": {
- "line": 546,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 22705,
- 22708
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 33
- },
- "end": {
- "line": 546,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 22692,
- 22709
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 20
- },
- "end": {
- "line": 546,
- "column": 37
- }
- }
- },
- "range": [
- 22692,
- 22710
- ],
- "loc": {
- "start": {
- "line": 546,
- "column": 20
- },
- "end": {
- "line": 546,
- "column": 38
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 22731,
- 22736
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 20
- },
- "end": {
- "line": 547,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "stop",
- "range": [
- 22737,
- 22741
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 26
- },
- "end": {
- "line": 547,
- "column": 30
- }
- }
- },
- "range": [
- 22731,
- 22741
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 20
- },
- "end": {
- "line": 547,
- "column": 30
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 22742,
- 22745
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 31
- },
- "end": {
- "line": 547,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 22731,
- 22746
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 20
- },
- "end": {
- "line": 547,
- "column": 35
- }
- }
- },
- "range": [
- 22731,
- 22747
- ],
- "loc": {
- "start": {
- "line": 547,
- "column": 20
- },
- "end": {
- "line": 547,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 22670,
- 22765
- ],
- "loc": {
- "start": {
- "line": 545,
- "column": 37
- },
- "end": {
- "line": 548,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 22649,
- 22765
- ],
- "loc": {
- "start": {
- "line": 545,
- "column": 16
- },
- "end": {
- "line": 548,
- "column": 17
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 22782,
- 22844
- ],
- "loc": {
- "start": {
- "line": 549,
- "column": 16
- },
- "end": {
- "line": 549,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 22861,
- 22905
- ],
- "loc": {
- "start": {
- "line": 550,
- "column": 16
- },
- "end": {
- "line": 550,
- "column": 60
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
+ "type": "ExpressionStatement",
+ "expression": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 19833,
+ 19837
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 16
+ },
+ "end": {
+ "line": 477,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 19838,
+ 19845
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 21
+ },
+ "end": {
+ "line": 477,
+ "column": 28
+ }
+ }
+ },
"range": [
- 22925,
- 22929
+ 19833,
+ 19845
],
"loc": {
"start": {
- "line": 551,
- "column": 19
+ "line": 477,
+ "column": 16
},
"end": {
- "line": 551,
- "column": 23
+ "line": 477,
+ "column": 28
}
}
},
"property": {
"type": "Identifier",
- "name": "hasExtension",
+ "name": "emit",
"range": [
- 22930,
- 22942
+ 19846,
+ 19850
],
"loc": {
"start": {
- "line": 551,
- "column": 24
+ "line": 477,
+ "column": 29
},
"end": {
- "line": 551,
- "column": 36
+ "line": 477,
+ "column": 33
}
}
},
"range": [
- 22925,
- 22942
+ 19833,
+ 19850
],
"loc": {
"start": {
- "line": 551,
- "column": 19
+ "line": 477,
+ "column": 16
},
"end": {
- "line": 551,
- "column": 36
+ "line": 477,
+ "column": 33
}
}
},
"arguments": [
{
"type": "Literal",
- "value": "advancedGrid",
- "raw": "'advancedGrid'",
+ "value": "filter-focus",
+ "raw": "'filter-focus'",
"range": [
- 22943,
- 22957
+ 19851,
+ 19865
],
"loc": {
"start": {
- "line": 551,
- "column": 37
+ "line": 477,
+ "column": 34
},
"end": {
- "line": 551,
- "column": 51
+ "line": 477,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 19867,
+ 19871
+ ],
+ "loc": {
+ "start": {
+ "line": 477,
+ "column": 50
+ },
+ "end": {
+ "line": 477,
+ "column": 54
}
}
}
],
"range": [
- 22925,
- 22958
+ 19833,
+ 19872
],
"loc": {
"start": {
- "line": 551,
- "column": 19
+ "line": 477,
+ "column": 16
},
"end": {
- "line": 551,
- "column": 52
+ "line": 477,
+ "column": 55
}
}
},
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 22985,
- 22992
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 24
- },
- "end": {
- "line": 552,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 22995,
- 22999
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 34
- },
- "end": {
- "line": 552,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extension",
- "range": [
- 23000,
- 23009
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 39
- },
- "end": {
- "line": 552,
- "column": 48
- }
- }
- },
- "range": [
- 22995,
- 23009
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 34
- },
- "end": {
- "line": 552,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "advancedGrid",
- "raw": "'advancedGrid'",
- "range": [
- 23010,
- 23024
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 49
- },
- "end": {
- "line": 552,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 22995,
- 23025
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 34
- },
- "end": {
- "line": 552,
- "column": 64
- }
- }
- },
- "range": [
- 22985,
- 23025
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 24
- },
- "end": {
- "line": 552,
- "column": 64
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 22981,
- 23026
- ],
- "loc": {
- "start": {
- "line": 552,
- "column": 20
- },
- "end": {
- "line": 552,
- "column": 65
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 23051,
- 23062
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 24
- },
- "end": {
- "line": 553,
- "column": 35
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 23065,
- 23072
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 38
- },
- "end": {
- "line": 553,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_ezEditTable",
- "range": [
- 23073,
- 23085
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 46
- },
- "end": {
- "line": 553,
- "column": 58
- }
- }
- },
- "range": [
- 23065,
- 23085
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 38
- },
- "end": {
- "line": 553,
- "column": 58
- }
- }
- },
- "range": [
- 23051,
- 23085
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 24
- },
- "end": {
- "line": 553,
- "column": 58
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 23047,
- 23086
- ],
- "loc": {
- "start": {
- "line": 553,
- "column": 20
- },
- "end": {
- "line": 553,
- "column": 59
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 23110,
- 23117
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 23
- },
- "end": {
- "line": 554,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 23118,
- 23121
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 31
- },
- "end": {
- "line": 554,
- "column": 34
- }
- }
- },
- "range": [
- 23110,
- 23121
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 23
- },
- "end": {
- "line": 554,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "editable",
- "range": [
- 23122,
- 23130
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 35
- },
- "end": {
- "line": 554,
- "column": 43
- }
- }
- },
- "range": [
- 23110,
- 23130
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 23
- },
- "end": {
- "line": 554,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 23157,
- 23168
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 24
- },
- "end": {
- "line": 555,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Editable",
- "range": [
- 23169,
- 23177
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 36
- },
- "end": {
- "line": 555,
- "column": 44
- }
- }
- },
- "range": [
- 23157,
- 23177
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 24
- },
- "end": {
- "line": 555,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Remove",
- "range": [
- 23178,
- 23184
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 45
- },
- "end": {
- "line": 555,
- "column": 51
- }
- }
- },
- "range": [
- 23157,
- 23184
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 24
- },
- "end": {
- "line": 555,
- "column": 51
- }
- }
- },
- "arguments": [],
- "range": [
- 23157,
- 23186
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 24
- },
- "end": {
- "line": 555,
- "column": 53
- }
- }
- },
- "range": [
- 23157,
- 23187
- ],
- "loc": {
- "start": {
- "line": 555,
- "column": 24
- },
- "end": {
- "line": 555,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 23131,
- 23209
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 44
- },
- "end": {
- "line": 556,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 23107,
- 23209
- ],
- "loc": {
- "start": {
- "line": 554,
- "column": 20
- },
- "end": {
- "line": 556,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "advGrid",
- "range": [
- 23233,
- 23240
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 23
- },
- "end": {
- "line": 557,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 23241,
- 23244
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 31
- },
- "end": {
- "line": 557,
- "column": 34
- }
- }
- },
- "range": [
- 23233,
- 23244
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 23
- },
- "end": {
- "line": 557,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "selection",
- "range": [
- 23245,
- 23254
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 35
- },
- "end": {
- "line": 557,
- "column": 44
- }
- }
- },
- "range": [
- 23233,
- 23254
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 23
- },
- "end": {
- "line": 557,
- "column": 44
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ezEditTable",
- "range": [
- 23281,
- 23292
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 24
- },
- "end": {
- "line": 558,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Selection",
- "range": [
- 23293,
- 23302
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 36
- },
- "end": {
- "line": 558,
- "column": 45
- }
- }
- },
- "range": [
- 23281,
- 23302
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 24
- },
- "end": {
- "line": 558,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Remove",
- "range": [
- 23303,
- 23309
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 46
- },
- "end": {
- "line": 558,
- "column": 52
- }
- }
- },
- "range": [
- 23281,
- 23309
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 24
- },
- "end": {
- "line": 558,
- "column": 52
- }
- }
- },
- "arguments": [],
- "range": [
- 23281,
- 23311
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 24
- },
- "end": {
- "line": 558,
- "column": 54
- }
- }
- },
- "range": [
- 23281,
- 23312
- ],
- "loc": {
- "start": {
- "line": 558,
- "column": 24
- },
- "end": {
- "line": 558,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 23255,
- 23334
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 45
- },
- "end": {
- "line": 559,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 23230,
- 23334
- ],
- "loc": {
- "start": {
- "line": 557,
- "column": 20
- },
- "end": {
- "line": 559,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 22959,
- 23352
- ],
- "loc": {
- "start": {
- "line": 551,
- "column": 53
- },
- "end": {
- "line": 560,
- "column": 17
- }
- }
- },
- "alternate": null,
"range": [
- 22922,
- 23352
+ 19833,
+ 19873
],
"loc": {
"start": {
- "line": 551,
+ "line": 477,
"column": 16
},
"end": {
- "line": 560,
- "column": 17
+ "line": 477,
+ "column": 56
}
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 22782,
- 22844
- ],
- "loc": {
- "start": {
- "line": 549,
- "column": 16
- },
- "end": {
- "line": 549,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 22861,
- 22905
- ],
- "loc": {
- "start": {
- "line": 550,
- "column": 16
- },
- "end": {
- "line": 550,
- "column": 60
- }
- }
- }
- ]
+ }
}
],
"range": [
- 22417,
- 23366
+ 19648,
+ 19887
],
"loc": {
"start": {
- "line": 540,
+ "line": 473,
"column": 26
},
"end": {
- "line": 561,
+ "line": 478,
"column": 13
}
}
@@ -51726,16 +45263,16 @@
"generator": false,
"expression": false,
"range": [
- 22413,
- 23366
+ 19644,
+ 19887
],
"loc": {
"start": {
- "line": 540,
+ "line": 473,
"column": 22
},
"end": {
- "line": 561,
+ "line": 478,
"column": 13
}
}
@@ -51745,16 +45282,16 @@
"shorthand": false,
"computed": false,
"range": [
- 22403,
- 23366
+ 19634,
+ 19887
],
"loc": {
"start": {
- "line": 540,
+ "line": 473,
"column": 12
},
"end": {
- "line": 561,
+ "line": 478,
"column": 13
}
},
@@ -51763,4016 +45300,64 @@
"type": "Line",
"value": " set focused text-box filter as active",
"range": [
- 22350,
- 22390
+ 19581,
+ 19621
],
"loc": {
"start": {
- "line": 539,
+ "line": 472,
"column": 12
},
"end": {
- "line": 539,
+ "line": 472,
"column": 52
}
}
}
]
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "onSlcFocus",
- "range": [
- 23434,
- 23444
- ],
- "loc": {
- "start": {
- "line": 563,
- "column": 12
- },
- "end": {
- "line": 563,
- "column": 22
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "e",
- "range": [
- 23445,
- 23446
- ],
- "loc": {
- "start": {
- "line": 563,
- "column": 23
- },
- "end": {
- "line": 563,
- "column": 24
- }
- }
- }
- ],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 23470,
- 23473
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 20
- },
- "end": {
- "line": 564,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 23476,
- 23477
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 26
- },
- "end": {
- "line": 564,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 23481,
- 23487
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 31
- },
- "end": {
- "line": 564,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 23488,
- 23493
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 38
- },
- "end": {
- "line": 564,
- "column": 43
- }
- }
- },
- "range": [
- 23481,
- 23493
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 31
- },
- "end": {
- "line": 564,
- "column": 43
- }
- }
- },
- "range": [
- 23476,
- 23493
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 26
- },
- "end": {
- "line": 564,
- "column": 43
- }
- }
- },
- "range": [
- 23470,
- 23493
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 20
- },
- "end": {
- "line": 564,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 23466,
- 23494
- ],
- "loc": {
- "start": {
- "line": 564,
- "column": 16
- },
- "end": {
- "line": 564,
- "column": 44
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 23515,
- 23518
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 20
- },
- "end": {
- "line": 565,
- "column": 23
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 23521,
- 23526
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 26
- },
- "end": {
- "line": 565,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "target",
- "range": [
- 23527,
- 23533
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 32
- },
- "end": {
- "line": 565,
- "column": 38
- }
- }
- },
- "range": [
- 23521,
- 23533
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 26
- },
- "end": {
- "line": 565,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 23534,
- 23537
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 39
- },
- "end": {
- "line": 565,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 23521,
- 23538
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 26
- },
- "end": {
- "line": 565,
- "column": 43
- }
- }
- },
- "range": [
- 23515,
- 23538
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 20
- },
- "end": {
- "line": 565,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 23511,
- 23539
- ],
- "loc": {
- "start": {
- "line": 565,
- "column": 16
- },
- "end": {
- "line": 565,
- "column": 44
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23556,
- 23560
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 16
- },
- "end": {
- "line": 566,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFilterId",
- "range": [
- 23561,
- 23575
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 21
- },
- "end": {
- "line": 566,
- "column": 35
- }
- }
- },
- "range": [
- 23556,
- 23575
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 16
- },
- "end": {
- "line": 566,
- "column": 35
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 23578,
- 23581
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 38
- },
- "end": {
- "line": 566,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 23582,
- 23594
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 42
- },
- "end": {
- "line": 566,
- "column": 54
- }
- }
- },
- "range": [
- 23578,
- 23594
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 38
- },
- "end": {
- "line": 566,
- "column": 54
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 23595,
- 23599
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 55
- },
- "end": {
- "line": 566,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 23578,
- 23600
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 38
- },
- "end": {
- "line": 566,
- "column": 60
- }
- }
- },
- "range": [
- 23556,
- 23600
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 16
- },
- "end": {
- "line": 566,
- "column": 60
- }
- }
- },
- "range": [
- 23556,
- 23601
- ],
- "loc": {
- "start": {
- "line": 566,
- "column": 16
- },
- "end": {
- "line": 566,
- "column": 61
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23618,
- 23622
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 16
- },
- "end": {
- "line": 567,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFlt",
- "range": [
- 23623,
- 23632
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 21
- },
- "end": {
- "line": 567,
- "column": 30
- }
- }
- },
- "range": [
- 23618,
- 23632
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 16
- },
- "end": {
- "line": 567,
- "column": 30
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 23635,
- 23638
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 33
- },
- "end": {
- "line": 567,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 23639,
- 23641
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 37
- },
- "end": {
- "line": 567,
- "column": 39
- }
- }
- },
- "range": [
- 23635,
- 23641
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 33
- },
- "end": {
- "line": 567,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23642,
- 23646
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 40
- },
- "end": {
- "line": 567,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFilterId",
- "range": [
- 23647,
- 23661
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 45
- },
- "end": {
- "line": 567,
- "column": 59
- }
- }
- },
- "range": [
- 23642,
- 23661
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 40
- },
- "end": {
- "line": 567,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 23635,
- 23662
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 33
- },
- "end": {
- "line": 567,
- "column": 60
- }
- }
- },
- "range": [
- 23618,
- 23662
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 16
- },
- "end": {
- "line": 567,
- "column": 60
- }
- }
- },
- "range": [
- 23618,
- 23663
- ],
- "loc": {
- "start": {
- "line": 567,
- "column": 16
- },
- "end": {
- "line": 567,
- "column": 61
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " select is populated when element has focus",
- "range": [
- 23680,
- 23725
- ],
- "loc": {
- "start": {
- "line": 568,
- "column": 16
- },
- "end": {
- "line": 568,
- "column": 61
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23745,
- 23749
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 19
- },
- "end": {
- "line": 569,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 23750,
- 23765
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 24
- },
- "end": {
- "line": 569,
- "column": 39
- }
- }
- },
- "range": [
- 23745,
- 23765
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 19
- },
- "end": {
- "line": 569,
- "column": 39
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 23769,
- 23772
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 43
- },
- "end": {
- "line": 569,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 23773,
- 23785
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 47
- },
- "end": {
- "line": 569,
- "column": 59
- }
- }
- },
- "range": [
- 23769,
- 23785
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 43
- },
- "end": {
- "line": 569,
- "column": 59
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "filled",
- "raw": "'filled'",
- "range": [
- 23786,
- 23794
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 60
- },
- "end": {
- "line": 569,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 23769,
- 23795
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 43
- },
- "end": {
- "line": 569,
- "column": 69
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "0",
- "raw": "'0'",
- "range": [
- 23800,
- 23803
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 74
- },
- "end": {
- "line": 569,
- "column": 77
- }
- }
- },
- "range": [
- 23769,
- 23803
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 43
- },
- "end": {
- "line": 569,
- "column": 77
- }
- }
- },
- "range": [
- 23745,
- 23803
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 19
- },
- "end": {
- "line": 569,
- "column": 77
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 23830,
- 23832
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 24
- },
- "end": {
- "line": 570,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 23835,
- 23838
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 29
- },
- "end": {
- "line": 570,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 23839,
- 23851
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 33
- },
- "end": {
- "line": 570,
- "column": 45
- }
- }
- },
- "range": [
- 23835,
- 23851
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 29
- },
- "end": {
- "line": 570,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "ct",
- "raw": "'ct'",
- "range": [
- 23852,
- 23856
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 46
- },
- "end": {
- "line": 570,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 23835,
- 23857
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 29
- },
- "end": {
- "line": 570,
- "column": 51
- }
- }
- },
- "range": [
- 23830,
- 23857
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 24
- },
- "end": {
- "line": 570,
- "column": 51
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 23826,
- 23858
- ],
- "loc": {
- "start": {
- "line": 570,
- "column": 20
- },
- "end": {
- "line": 570,
- "column": 52
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23879,
- 23883
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 23884,
- 23887
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 25
- },
- "end": {
- "line": 571,
- "column": 28
- }
- }
- },
- "range": [
- 23879,
- 23887
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 23888,
- 23896
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 29
- },
- "end": {
- "line": 571,
- "column": 37
- }
- }
- },
- "range": [
- 23879,
- 23896
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 23897,
- 23903
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 38
- },
- "end": {
- "line": 571,
- "column": 44
- }
- }
- },
- "range": [
- 23879,
- 23903
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 23904,
- 23906
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 45
- },
- "end": {
- "line": 571,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 23879,
- 23907
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 48
- }
- }
- },
- "range": [
- 23879,
- 23908
- ],
- "loc": {
- "start": {
- "line": 571,
- "column": 20
- },
- "end": {
- "line": 571,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 23804,
- 23926
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 78
- },
- "end": {
- "line": 572,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 23742,
- 23926
- ],
- "loc": {
- "start": {
- "line": 569,
- "column": 16
- },
- "end": {
- "line": 572,
- "column": 17
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " select is populated when element has focus",
- "range": [
- 23680,
- 23725
- ],
- "loc": {
- "start": {
- "line": 568,
- "column": 16
- },
- "end": {
- "line": 568,
- "column": 61
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 23946,
- 23950
- ],
- "loc": {
- "start": {
- "line": 573,
- "column": 19
- },
- "end": {
- "line": 573,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 23951,
- 23963
- ],
- "loc": {
- "start": {
- "line": 573,
- "column": 24
- },
- "end": {
- "line": 573,
- "column": 36
- }
- }
- },
- "range": [
- 23946,
- 23963
- ],
- "loc": {
- "start": {
- "line": 573,
- "column": 19
- },
- "end": {
- "line": 573,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 23986,
- 23991
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 20
- },
- "end": {
- "line": 574,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "cancel",
- "range": [
- 23992,
- 23998
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 26
- },
- "end": {
- "line": 574,
- "column": 32
- }
- }
- },
- "range": [
- 23986,
- 23998
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 20
- },
- "end": {
- "line": 574,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 23999,
- 24002
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 33
- },
- "end": {
- "line": 574,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 23986,
- 24003
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 20
- },
- "end": {
- "line": 574,
- "column": 37
- }
- }
- },
- "range": [
- 23986,
- 24004
- ],
- "loc": {
- "start": {
- "line": 574,
- "column": 20
- },
- "end": {
- "line": 574,
- "column": 38
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 24025,
- 24030
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 20
- },
- "end": {
- "line": 575,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "stop",
- "range": [
- 24031,
- 24035
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 26
- },
- "end": {
- "line": 575,
- "column": 30
- }
- }
- },
- "range": [
- 24025,
- 24035
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 20
- },
- "end": {
- "line": 575,
- "column": 30
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 24036,
- 24039
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 31
- },
- "end": {
- "line": 575,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 24025,
- 24040
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 20
- },
- "end": {
- "line": 575,
- "column": 35
- }
- }
- },
- "range": [
- 24025,
- 24041
- ],
- "loc": {
- "start": {
- "line": 575,
- "column": 20
- },
- "end": {
- "line": 575,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 23964,
- 24059
- ],
- "loc": {
- "start": {
- "line": 573,
- "column": 37
- },
- "end": {
- "line": 576,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 23943,
- 24059
- ],
- "loc": {
- "start": {
- "line": 573,
- "column": 16
- },
- "end": {
- "line": 576,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 23448,
- 24073
- ],
- "loc": {
- "start": {
- "line": 563,
- "column": 26
- },
- "end": {
- "line": 577,
- "column": 13
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 23444,
- 24073
- ],
- "loc": {
- "start": {
- "line": 563,
- "column": 22
- },
- "end": {
- "line": 577,
- "column": 13
- }
- }
- },
- "kind": "init",
- "method": true,
- "shorthand": false,
- "computed": false,
- "range": [
- 23434,
- 24073
- ],
- "loc": {
- "start": {
- "line": 563,
- "column": 12
- },
- "end": {
- "line": 577,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " set focused drop-down filter as active",
- "range": [
- 23380,
- 23421
- ],
- "loc": {
- "start": {
- "line": 562,
- "column": 12
- },
- "end": {
- "line": 562,
- "column": 53
- }
- }
- }
- ]
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "onSlcChange",
- "range": [
- 24144,
- 24155
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 12
- },
- "end": {
- "line": 579,
- "column": 23
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "e",
- "range": [
- 24156,
- 24157
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 24
- },
- "end": {
- "line": 579,
- "column": 25
- }
- }
- }
- ],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24181,
- 24185
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 20
- },
- "end": {
- "line": 580,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFlt",
- "range": [
- 24186,
- 24195
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 25
- },
- "end": {
- "line": 580,
- "column": 34
- }
- }
- },
- "range": [
- 24181,
- 24195
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 20
- },
- "end": {
- "line": 580,
- "column": 34
- }
- }
- },
- "prefix": true,
- "range": [
- 24180,
- 24195
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 19
- },
- "end": {
- "line": 580,
- "column": 34
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ReturnStatement",
- "argument": null,
- "range": [
- 24198,
- 24205
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 37
- },
- "end": {
- "line": 580,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 24196,
- 24207
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 35
- },
- "end": {
- "line": 580,
- "column": 46
- }
- }
- },
- "alternate": null,
- "range": [
- 24177,
- 24207
- ],
- "loc": {
- "start": {
- "line": 580,
- "column": 16
- },
- "end": {
- "line": 580,
- "column": 46
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 24228,
- 24231
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 20
- },
- "end": {
- "line": 581,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 24234,
- 24235
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 26
- },
- "end": {
- "line": 581,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 24239,
- 24245
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 31
- },
- "end": {
- "line": 581,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 24246,
- 24251
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 38
- },
- "end": {
- "line": 581,
- "column": 43
- }
- }
- },
- "range": [
- 24239,
- 24251
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 31
- },
- "end": {
- "line": 581,
- "column": 43
- }
- }
- },
- "range": [
- 24234,
- 24251
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 26
- },
- "end": {
- "line": 581,
- "column": 43
- }
- }
- },
- "range": [
- 24228,
- 24251
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 20
- },
- "end": {
- "line": 581,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 24224,
- 24252
- ],
- "loc": {
- "start": {
- "line": 581,
- "column": 16
- },
- "end": {
- "line": 581,
- "column": 44
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24272,
- 24276
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 19
- },
- "end": {
- "line": 582,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 24277,
- 24289
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 24
- },
- "end": {
- "line": 582,
- "column": 36
- }
- }
- },
- "range": [
- 24272,
- 24289
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 19
- },
- "end": {
- "line": 582,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 24292,
- 24297
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 39
- },
- "end": {
- "line": 582,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "stop",
- "range": [
- 24298,
- 24302
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 45
- },
- "end": {
- "line": 582,
- "column": 49
- }
- }
- },
- "range": [
- 24292,
- 24302
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 39
- },
- "end": {
- "line": 582,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 24303,
- 24306
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 50
- },
- "end": {
- "line": 582,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 24292,
- 24307
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 39
- },
- "end": {
- "line": 582,
- "column": 54
- }
- }
- },
- "range": [
- 24292,
- 24308
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 39
- },
- "end": {
- "line": 582,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 24290,
- 24310
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 37
- },
- "end": {
- "line": 582,
- "column": 57
- }
- }
- },
- "alternate": null,
- "range": [
- 24269,
- 24310
- ],
- "loc": {
- "start": {
- "line": 582,
- "column": 16
- },
- "end": {
- "line": 582,
- "column": 57
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24330,
- 24334
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 19
- },
- "end": {
- "line": 583,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onSlcChange",
- "range": [
- 24335,
- 24346
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 24
- },
- "end": {
- "line": 583,
- "column": 35
- }
- }
- },
- "range": [
- 24330,
- 24346
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 19
- },
- "end": {
- "line": 583,
- "column": 35
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24349,
- 24353
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 38
- },
- "end": {
- "line": 583,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filter",
- "range": [
- 24354,
- 24360
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 43
- },
- "end": {
- "line": 583,
- "column": 49
- }
- }
- },
- "range": [
- 24349,
- 24360
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 38
- },
- "end": {
- "line": 583,
- "column": 49
- }
- }
- },
- "arguments": [],
- "range": [
- 24349,
- 24362
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 38
- },
- "end": {
- "line": 583,
- "column": 51
- }
- }
- },
- "range": [
- 24349,
- 24363
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 38
- },
- "end": {
- "line": 583,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 24347,
- 24365
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 36
- },
- "end": {
- "line": 583,
- "column": 54
- }
- }
- },
- "alternate": null,
- "range": [
- 24327,
- 24365
- ],
- "loc": {
- "start": {
- "line": 583,
- "column": 16
- },
- "end": {
- "line": 583,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 24159,
- 24379
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 27
- },
- "end": {
- "line": 584,
- "column": 13
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 24155,
- 24379
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 23
- },
- "end": {
- "line": 584,
- "column": 13
- }
- }
- },
- "kind": "init",
- "method": true,
- "shorthand": false,
- "computed": false,
- "range": [
- 24144,
- 24379
- ],
- "loc": {
- "start": {
- "line": 579,
- "column": 12
- },
- "end": {
- "line": 584,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " filter columns on drop-down filter change",
- "range": [
- 24087,
- 24131
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 12
- },
- "end": {
- "line": 578,
- "column": 56
- }
- }
- }
- ]
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "onCheckListClick",
- "range": [
- 24451,
- 24467
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 12
- },
- "end": {
- "line": 586,
- "column": 28
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "e",
- "range": [
- 24468,
- 24469
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 29
- },
- "end": {
- "line": 586,
- "column": 30
- }
- }
- }
- ],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 24493,
- 24496
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 20
- },
- "end": {
- "line": 587,
- "column": 23
- }
- }
- },
- "init": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "Identifier",
- "name": "e",
- "range": [
- 24499,
- 24500
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 26
- },
- "end": {
- "line": 587,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 24504,
- 24510
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 31
- },
- "end": {
- "line": 587,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "event",
- "range": [
- 24511,
- 24516
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 38
- },
- "end": {
- "line": 587,
- "column": 43
- }
- }
- },
- "range": [
- 24504,
- 24516
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 31
- },
- "end": {
- "line": 587,
- "column": 43
- }
- }
- },
- "range": [
- 24499,
- 24516
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 26
- },
- "end": {
- "line": 587,
- "column": 43
- }
- }
- },
- "range": [
- 24493,
- 24516
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 20
- },
- "end": {
- "line": 587,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 24489,
- 24517
- ],
- "loc": {
- "start": {
- "line": 587,
- "column": 16
- },
- "end": {
- "line": 587,
- "column": 44
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 24538,
- 24541
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 20
- },
- "end": {
- "line": 588,
- "column": 23
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 24544,
- 24549
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 26
- },
- "end": {
- "line": 588,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "target",
- "range": [
- 24550,
- 24556
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 32
- },
- "end": {
- "line": 588,
- "column": 38
- }
- }
- },
- "range": [
- 24544,
- 24556
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 26
- },
- "end": {
- "line": 588,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "_ev",
- "range": [
- 24557,
- 24560
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 39
- },
- "end": {
- "line": 588,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 24544,
- 24561
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 26
- },
- "end": {
- "line": 588,
- "column": 43
- }
- }
- },
- "range": [
- 24538,
- 24561
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 20
- },
- "end": {
- "line": 588,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 24534,
- 24562
- ],
- "loc": {
- "start": {
- "line": 588,
- "column": 16
- },
- "end": {
- "line": 588,
- "column": 44
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24582,
- 24586
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 19
- },
- "end": {
- "line": 589,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 24587,
- 24602
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 24
- },
- "end": {
- "line": 589,
- "column": 39
- }
- }
- },
- "range": [
- 24582,
- 24602
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 19
- },
- "end": {
- "line": 589,
- "column": 39
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 24606,
- 24609
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 43
- },
- "end": {
- "line": 589,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 24610,
- 24622
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 47
- },
- "end": {
- "line": 589,
- "column": 59
- }
- }
- },
- "range": [
- 24606,
- 24622
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 43
- },
- "end": {
- "line": 589,
- "column": 59
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "filled",
- "raw": "'filled'",
- "range": [
- 24623,
- 24631
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 60
- },
- "end": {
- "line": 589,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 24606,
- 24632
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 43
- },
- "end": {
- "line": 589,
- "column": 69
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "0",
- "raw": "'0'",
- "range": [
- 24637,
- 24640
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 74
- },
- "end": {
- "line": 589,
- "column": 77
- }
- }
- },
- "range": [
- 24606,
- 24640
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 43
- },
- "end": {
- "line": 589,
- "column": 77
- }
- }
- },
- "range": [
- 24582,
- 24640
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 19
- },
- "end": {
- "line": 589,
- "column": 77
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 24667,
- 24669
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 24
- },
- "end": {
- "line": 590,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 24672,
- 24675
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 29
- },
- "end": {
- "line": 590,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getAttribute",
- "range": [
- 24676,
- 24688
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 33
- },
- "end": {
- "line": 590,
- "column": 45
- }
- }
- },
- "range": [
- 24672,
- 24688
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 29
- },
- "end": {
- "line": 590,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "ct",
- "raw": "'ct'",
- "range": [
- 24689,
- 24693
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 46
- },
- "end": {
- "line": 590,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 24672,
- 24694
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 29
- },
- "end": {
- "line": 590,
- "column": 51
- }
- }
- },
- "range": [
- 24667,
- 24694
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 24
- },
- "end": {
- "line": 590,
- "column": 51
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 24663,
- 24695
- ],
- "loc": {
- "start": {
- "line": 590,
- "column": 20
- },
- "end": {
- "line": 590,
- "column": 52
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24716,
- 24720
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 24721,
- 24724
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 25
- },
- "end": {
- "line": 591,
- "column": 28
- }
- }
- },
- "range": [
- 24716,
- 24724
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 24725,
- 24734
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 29
- },
- "end": {
- "line": 591,
- "column": 38
- }
- }
- },
- "range": [
- 24716,
- 24734
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 24735,
- 24741
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 39
- },
- "end": {
- "line": 591,
- "column": 45
- }
- }
- },
- "range": [
- 24716,
- 24741
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 24742,
- 24744
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 46
- },
- "end": {
- "line": 591,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 24716,
- 24745
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 49
- }
- }
- },
- "range": [
- 24716,
- 24746
- ],
- "loc": {
- "start": {
- "line": 591,
- "column": 20
- },
- "end": {
- "line": 591,
- "column": 50
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24767,
- 24771
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 24772,
- 24775
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 25
- },
- "end": {
- "line": 592,
- "column": 28
- }
- }
- },
- "range": [
- 24767,
- 24775
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 24776,
- 24785
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 29
- },
- "end": {
- "line": 592,
- "column": 38
- }
- }
- },
- "range": [
- 24767,
- 24785
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListDiv",
- "range": [
- 24786,
- 24798
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 39
- },
- "end": {
- "line": 592,
- "column": 51
- }
- }
- },
- "range": [
- 24767,
- 24798
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 24799,
- 24801
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 52
- },
- "end": {
- "line": 592,
- "column": 54
- }
- }
- },
- "range": [
- 24767,
- 24802
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onclick",
- "range": [
- 24803,
- 24810
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 56
- },
- "end": {
- "line": 592,
- "column": 63
- }
- }
- },
- "range": [
- 24767,
- 24810
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 63
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 24813,
- 24817
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 66
- },
- "end": {
- "line": 592,
- "column": 70
- }
- }
- },
- "range": [
- 24767,
- 24817
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 70
- }
- }
- },
- "range": [
- 24767,
- 24818
- ],
- "loc": {
- "start": {
- "line": 592,
- "column": 20
- },
- "end": {
- "line": 592,
- "column": 71
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 24839,
- 24843
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 24844,
- 24847
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 25
- },
- "end": {
- "line": 593,
- "column": 28
- }
- }
- },
- "range": [
- 24839,
- 24847
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 24848,
- 24857
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 29
- },
- "end": {
- "line": 593,
- "column": 38
- }
- }
- },
- "range": [
- 24839,
- 24857
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListDiv",
- "range": [
- 24858,
- 24870
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 39
- },
- "end": {
- "line": 593,
- "column": 51
- }
- }
- },
- "range": [
- 24839,
- 24870
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 24871,
- 24873
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 52
- },
- "end": {
- "line": 593,
- "column": 54
- }
- }
- },
- "range": [
- 24839,
- 24874
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "title",
- "range": [
- 24875,
- 24880
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 56
- },
- "end": {
- "line": 593,
- "column": 61
- }
- }
- },
- "range": [
- 24839,
- 24880
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 61
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 24883,
- 24885
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 64
- },
- "end": {
- "line": 593,
- "column": 66
- }
- }
- },
- "range": [
- 24839,
- 24885
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 66
- }
- }
- },
- "range": [
- 24839,
- 24886
- ],
- "loc": {
- "start": {
- "line": 593,
- "column": 20
- },
- "end": {
- "line": 593,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 24641,
- 24904
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 78
- },
- "end": {
- "line": 594,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 24579,
- 24904
- ],
- "loc": {
- "start": {
- "line": 589,
- "column": 16
- },
- "end": {
- "line": 594,
- "column": 17
- }
- }
- }
- ],
- "range": [
- 24471,
- 24918
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 32
- },
- "end": {
- "line": 595,
- "column": 13
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 24467,
- 24918
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 28
- },
- "end": {
- "line": 595,
- "column": 13
- }
- }
- },
- "kind": "init",
- "method": true,
- "shorthand": false,
- "computed": false,
- "range": [
- 24451,
- 24918
- ],
- "loc": {
- "start": {
- "line": 586,
- "column": 12
- },
- "end": {
- "line": 595,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " fill checklist filter on click if required",
- "range": [
- 24393,
- 24438
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 12
- },
- "end": {
- "line": 585,
- "column": 57
- }
- }
- }
- ]
}
],
"range": [
- 19001,
- 24928
+ 17361,
+ 19897
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 19
},
"end": {
- "line": 596,
+ "line": 479,
"column": 9
}
}
},
"range": [
- 18990,
- 24928
+ 17350,
+ 19897
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 8
},
"end": {
- "line": 596,
+ "line": 479,
"column": 9
}
}
},
"range": [
- 18990,
- 24929
+ 17350,
+ 19898
],
"loc": {
"start": {
- "line": 454,
+ "line": 414,
"column": 8
},
"end": {
- "line": 596,
+ "line": 479,
"column": 10
}
},
@@ -55781,16 +45366,16 @@
"type": "Block",
"value": "** TF events **",
"range": [
- 18962,
- 18981
+ 17322,
+ 17341
],
"loc": {
"start": {
- "line": 453,
+ "line": 413,
"column": 8
},
"end": {
- "line": 453,
+ "line": 413,
"column": 27
}
}
@@ -55799,16 +45384,16 @@
}
],
"range": [
- 1331,
- 24935
+ 1309,
+ 19904
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 25
},
"end": {
- "line": 597,
+ "line": 480,
"column": 5
}
}
@@ -55816,16 +45401,16 @@
"generator": false,
"expression": false,
"range": [
- 1321,
- 24935
+ 1299,
+ 19904
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 15
},
"end": {
- "line": 597,
+ "line": 480,
"column": 5
}
}
@@ -55833,16 +45418,16 @@
"kind": "constructor",
"computed": false,
"range": [
- 1310,
- 24935
+ 1288,
+ 19904
],
"loc": {
"start": {
- "line": 39,
+ "line": 38,
"column": 4
},
"end": {
- "line": 597,
+ "line": 480,
"column": 5
}
},
@@ -55851,16 +45436,16 @@
"type": "Block",
"value": "*\n * TableFilter object constructor\n * requires `table` or `id` arguments, `row` and `configuration` optional\n * @param {DOMElement} table Table DOM element\n * @param {String} id Table id\n * @param {Number} row index indicating the 1st row\n * @param {Object} configuration object\n ",
"range": [
- 992,
- 1305
+ 970,
+ 1283
],
"loc": {
"start": {
- "line": 31,
+ "line": 30,
"column": 4
},
"end": {
- "line": 38,
+ "line": 37,
"column": 7
}
}
@@ -55869,18 +45454,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Initialise filtering grid bar behaviours and layout\n *\n * TODO: decompose in smaller methods\n ",
+ "value": "*\n * Initialise features and layout\n ",
"range": [
- 24941,
- 25060
+ 19910,
+ 19959
],
"loc": {
"start": {
- "line": 599,
+ "line": 482,
"column": 4
},
"end": {
- "line": 603,
+ "line": 484,
"column": 7
}
}
@@ -55894,16 +45479,16 @@
"type": "Identifier",
"name": "init",
"range": [
- 25065,
- 25069
+ 19964,
+ 19968
],
"loc": {
"start": {
- "line": 604,
+ "line": 485,
"column": 4
},
"end": {
- "line": 604,
+ "line": 485,
"column": 8
}
}
@@ -55923,16 +45508,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25084,
- 25088
+ 19983,
+ 19987
],
"loc": {
"start": {
- "line": 605,
+ "line": 486,
"column": 11
},
"end": {
- "line": 605,
+ "line": 486,
"column": 15
}
}
@@ -55941,31 +45526,31 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 25089,
- 25097
+ 19988,
+ 19996
],
"loc": {
"start": {
- "line": 605,
+ "line": 486,
"column": 16
},
"end": {
- "line": 605,
+ "line": 486,
"column": 24
}
}
},
"range": [
- 25084,
- 25097
+ 19983,
+ 19996
],
"loc": {
"start": {
- "line": 605,
+ "line": 486,
"column": 11
},
"end": {
- "line": 605,
+ "line": 486,
"column": 24
}
}
@@ -55977,1212 +45562,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 25112,
- 25119
+ 20011,
+ 20018
],
"loc": {
"start": {
- "line": 606,
+ "line": 487,
"column": 12
},
"end": {
- "line": 606,
+ "line": 487,
"column": 19
}
}
}
],
"range": [
- 25098,
- 25129
+ 19997,
+ 20028
],
"loc": {
"start": {
- "line": 605,
+ "line": 486,
"column": 25
},
"end": {
- "line": 607,
+ "line": 488,
"column": 9
}
}
},
"alternate": null,
"range": [
- 25081,
- 25129
+ 19980,
+ 20028
],
"loc": {
"start": {
- "line": 605,
+ "line": 486,
"column": 8
},
"end": {
- "line": 607,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25142,
- 25146
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 12
- },
- "end": {
- "line": 608,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 25147,
- 25150
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 17
- },
- "end": {
- "line": 608,
- "column": 20
- }
- }
- },
- "range": [
- 25142,
- 25150
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 12
- },
- "end": {
- "line": 608,
- "column": 20
- }
- }
- },
- "prefix": true,
- "range": [
- 25141,
- 25150
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 11
- },
- "end": {
- "line": 608,
- "column": 20
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25165,
- 25169
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 12
- },
- "end": {
- "line": 609,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 25170,
- 25173
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 17
- },
- "end": {
- "line": 609,
- "column": 20
- }
- }
- },
- "range": [
- 25165,
- 25173
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 12
- },
- "end": {
- "line": 609,
- "column": 20
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 25176,
- 25179
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 23
- },
- "end": {
- "line": 609,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 25180,
- 25182
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 27
- },
- "end": {
- "line": 609,
- "column": 29
- }
- }
- },
- "range": [
- 25176,
- 25182
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 23
- },
- "end": {
- "line": 609,
- "column": 29
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25183,
- 25187
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 30
- },
- "end": {
- "line": 609,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 25188,
- 25190
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 35
- },
- "end": {
- "line": 609,
- "column": 37
- }
- }
- },
- "range": [
- 25183,
- 25190
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 30
- },
- "end": {
- "line": 609,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 25176,
- 25191
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 23
- },
- "end": {
- "line": 609,
- "column": 38
- }
- }
- },
- "range": [
- 25165,
- 25191
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 12
- },
- "end": {
- "line": 609,
- "column": 38
- }
- }
- },
- "range": [
- 25165,
- 25192
- ],
- "loc": {
- "start": {
- "line": 609,
- "column": 12
- },
- "end": {
- "line": 609,
- "column": 39
- }
- }
- }
- ],
- "range": [
- 25151,
- 25202
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 21
- },
- "end": {
- "line": 610,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 25138,
- 25202
- ],
- "loc": {
- "start": {
- "line": 608,
- "column": 8
- },
- "end": {
- "line": 610,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25214,
- 25218
- ],
- "loc": {
- "start": {
- "line": 611,
- "column": 11
- },
- "end": {
- "line": 611,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 25219,
- 25229
- ],
- "loc": {
- "start": {
- "line": 611,
- "column": 16
- },
- "end": {
- "line": 611,
- "column": 26
- }
- }
- },
- "range": [
- 25214,
- 25229
- ],
- "loc": {
- "start": {
- "line": 611,
- "column": 11
- },
- "end": {
- "line": 611,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25244,
- 25248
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 12
- },
- "end": {
- "line": 612,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 25249,
- 25255
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 17
- },
- "end": {
- "line": 612,
- "column": 23
- }
- }
- },
- "range": [
- 25244,
- 25255
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 12
- },
- "end": {
- "line": 612,
- "column": 23
- }
- }
- },
- "right": {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25258,
- 25262
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 26
- },
- "end": {
- "line": 612,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "startRow",
- "range": [
- 25263,
- 25271
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 31
- },
- "end": {
- "line": 612,
- "column": 39
- }
- }
- },
- "range": [
- 25258,
- 25271
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 26
- },
- "end": {
- "line": 612,
- "column": 39
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 25274,
- 25278
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 42
- },
- "end": {
- "line": 612,
- "column": 46
- }
- }
- },
- "range": [
- 25258,
- 25278
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 26
- },
- "end": {
- "line": 612,
- "column": 46
- }
- }
- },
- "consequent": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 25281,
- 25282
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 49
- },
- "end": {
- "line": 612,
- "column": 50
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25285,
- 25289
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 53
- },
- "end": {
- "line": 612,
- "column": 57
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "startRow",
- "range": [
- 25290,
- 25298
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 58
- },
- "end": {
- "line": 612,
- "column": 66
- }
- }
- },
- "range": [
- 25285,
- 25298
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 53
- },
- "end": {
- "line": 612,
- "column": 66
- }
- }
- },
- "range": [
- 25258,
- 25298
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 26
- },
- "end": {
- "line": 612,
- "column": 66
- }
- }
- },
- "range": [
- 25244,
- 25298
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 12
- },
- "end": {
- "line": 612,
- "column": 66
- }
- }
- },
- "range": [
- 25244,
- 25299
- ],
- "loc": {
- "start": {
- "line": 612,
- "column": 12
- },
- "end": {
- "line": 612,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 25230,
- 25309
- ],
- "loc": {
- "start": {
- "line": 611,
- "column": 27
- },
- "end": {
- "line": 613,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 25211,
- 25309
- ],
- "loc": {
- "start": {
- "line": 611,
- "column": 8
- },
- "end": {
- "line": 613,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25321,
- 25325
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 11
- },
- "end": {
- "line": 614,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 25326,
- 25338
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 16
- },
- "end": {
- "line": 614,
- "column": 28
- }
- }
- },
- "range": [
- 25321,
- 25338
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 11
- },
- "end": {
- "line": 614,
- "column": 28
- }
- }
- },
- "right": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25356,
- 25360
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 14
- },
- "end": {
- "line": 615,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 25361,
- 25376
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 19
- },
- "end": {
- "line": 615,
- "column": 34
- }
- }
- },
- "range": [
- 25356,
- 25376
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 14
- },
- "end": {
- "line": 615,
- "column": 34
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 25381,
- 25382
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 39
- },
- "end": {
- "line": 615,
- "column": 40
- }
- }
- },
- "range": [
- 25356,
- 25382
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 14
- },
- "end": {
- "line": 615,
- "column": 40
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25386,
- 25390
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 44
- },
- "end": {
- "line": 615,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 25391,
- 25401
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 49
- },
- "end": {
- "line": 615,
- "column": 59
- }
- }
- },
- "range": [
- 25386,
- 25401
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 44
- },
- "end": {
- "line": 615,
- "column": 59
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 25406,
- 25407
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 64
- },
- "end": {
- "line": 615,
- "column": 65
- }
- }
- },
- "range": [
- 25386,
- 25407
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 44
- },
- "end": {
- "line": 615,
- "column": 65
- }
- }
- },
- "range": [
- 25356,
- 25407
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 14
- },
- "end": {
- "line": 615,
- "column": 65
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25424,
- 25428
- ],
- "loc": {
- "start": {
- "line": 616,
- "column": 12
- },
- "end": {
- "line": 616,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 25429,
- 25439
- ],
- "loc": {
- "start": {
- "line": 616,
- "column": 17
- },
- "end": {
- "line": 616,
- "column": 27
- }
- }
- },
- "range": [
- 25424,
- 25439
- ],
- "loc": {
- "start": {
- "line": 616,
- "column": 12
- },
- "end": {
- "line": 616,
- "column": 27
- }
- }
- },
- "range": [
- 25355,
- 25439
- ],
- "loc": {
- "start": {
- "line": 615,
- "column": 13
- },
- "end": {
- "line": 616,
- "column": 27
- }
- }
- },
- "range": [
- 25321,
- 25440
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 11
- },
- "end": {
- "line": 616,
- "column": 28
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25455,
- 25459
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 12
- },
- "end": {
- "line": 617,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 25460,
- 25470
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 17
- },
- "end": {
- "line": 617,
- "column": 27
- }
- }
- },
- "range": [
- 25455,
- 25470
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 12
- },
- "end": {
- "line": 617,
- "column": 27
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 25473,
- 25474
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 30
- },
- "end": {
- "line": 617,
- "column": 31
- }
- }
- },
- "range": [
- 25455,
- 25474
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 12
- },
- "end": {
- "line": 617,
- "column": 31
- }
- }
- },
- "range": [
- 25455,
- 25475
- ],
- "loc": {
- "start": {
- "line": 617,
- "column": 12
- },
- "end": {
- "line": 617,
- "column": 32
- }
- }
- }
- ],
- "range": [
- 25441,
- 25485
- ],
- "loc": {
- "start": {
- "line": 616,
- "column": 29
- },
- "end": {
- "line": 618,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 25318,
- 25485
- ],
- "loc": {
- "start": {
- "line": 614,
- "column": 8
- },
- "end": {
- "line": 618,
+ "line": 488,
"column": 9
}
}
@@ -57196,16 +45617,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 25499,
- 25502
+ 20042,
+ 20045
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 12
},
"end": {
- "line": 620,
+ "line": 490,
"column": 15
}
}
@@ -57216,16 +45637,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25505,
- 25509
+ 20048,
+ 20052
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 18
},
"end": {
- "line": 620,
+ "line": 490,
"column": 22
}
}
@@ -57234,46 +45655,46 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 25510,
- 25513
+ 20053,
+ 20056
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 23
},
"end": {
- "line": 620,
+ "line": 490,
"column": 26
}
}
},
"range": [
- 25505,
- 25513
+ 20048,
+ 20056
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 18
},
"end": {
- "line": 620,
+ "line": 490,
"column": 26
}
}
},
"range": [
- 25499,
- 25513
+ 20042,
+ 20056
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 12
},
"end": {
- "line": 620,
+ "line": 490,
"column": 26
}
}
@@ -57281,16 +45702,16 @@
],
"kind": "let",
"range": [
- 25495,
- 25514
+ 20038,
+ 20057
],
"loc": {
"start": {
- "line": 620,
+ "line": 490,
"column": 8
},
"end": {
- "line": 620,
+ "line": 490,
"column": 27
}
}
@@ -57304,16 +45725,16 @@
"type": "Identifier",
"name": "n",
"range": [
- 25527,
- 25528
+ 20070,
+ 20071
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 12
},
"end": {
- "line": 621,
+ "line": 491,
"column": 13
}
}
@@ -57326,16 +45747,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25531,
- 25535
+ 20074,
+ 20078
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 16
},
"end": {
- "line": 621,
+ "line": 491,
"column": 20
}
}
@@ -57344,31 +45765,31 @@
"type": "Identifier",
"name": "singleSearchFlt",
"range": [
- 25536,
- 25551
+ 20079,
+ 20094
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 21
},
"end": {
- "line": 621,
+ "line": 491,
"column": 36
}
}
},
"range": [
- 25531,
- 25551
+ 20074,
+ 20094
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 16
},
"end": {
- "line": 621,
+ "line": 491,
"column": 36
}
}
@@ -57378,16 +45799,16 @@
"value": 1,
"raw": "1",
"range": [
- 25554,
- 25555
+ 20097,
+ 20098
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 39
},
"end": {
- "line": 621,
+ "line": 491,
"column": 40
}
}
@@ -57398,16 +45819,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25558,
- 25562
+ 20101,
+ 20105
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 43
},
"end": {
- "line": 621,
+ "line": 491,
"column": 47
}
}
@@ -57416,61 +45837,61 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 25563,
- 25570
+ 20106,
+ 20113
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 48
},
"end": {
- "line": 621,
+ "line": 491,
"column": 55
}
}
},
"range": [
- 25558,
- 25570
+ 20101,
+ 20113
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 43
},
"end": {
- "line": 621,
+ "line": 491,
"column": 55
}
}
},
"range": [
- 25531,
- 25570
+ 20074,
+ 20113
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 16
},
"end": {
- "line": 621,
+ "line": 491,
"column": 55
}
}
},
"range": [
- 25527,
- 25570
+ 20070,
+ 20113
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 12
},
"end": {
- "line": 621,
+ "line": 491,
"column": 55
}
}
@@ -57481,32 +45902,32 @@
"type": "Identifier",
"name": "inpclass",
"range": [
- 25584,
- 25592
+ 20127,
+ 20135
],
"loc": {
"start": {
- "line": 622,
+ "line": 492,
"column": 12
},
"end": {
- "line": 622,
+ "line": 492,
"column": 20
}
}
},
"init": null,
"range": [
- 25584,
- 25592
+ 20127,
+ 20135
],
"loc": {
"start": {
- "line": 622,
+ "line": 492,
"column": 12
},
"end": {
- "line": 622,
+ "line": 492,
"column": 20
}
}
@@ -57514,16 +45935,16 @@
],
"kind": "let",
"range": [
- 25523,
- 25593
+ 20066,
+ 20136
],
"loc": {
"start": {
- "line": 621,
+ "line": 491,
"column": 8
},
"end": {
- "line": 622,
+ "line": 492,
"column": 21
}
},
@@ -57532,16 +45953,16 @@
"type": "Line",
"value": "loads stylesheet if not imported",
"range": [
- 25603,
- 25637
+ 20146,
+ 20180
],
"loc": {
"start": {
- "line": 624,
+ "line": 494,
"column": 8
},
"end": {
- "line": 624,
+ "line": 494,
"column": 42
}
}
@@ -57558,16 +45979,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25646,
- 25650
+ 20189,
+ 20193
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 8
},
"end": {
- "line": 625,
+ "line": 495,
"column": 12
}
}
@@ -57576,31 +45997,31 @@
"type": "Identifier",
"name": "import",
"range": [
- 25651,
- 25657
+ 20194,
+ 20200
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 13
},
"end": {
- "line": 625,
+ "line": 495,
"column": 19
}
}
},
"range": [
- 25646,
- 25657
+ 20189,
+ 20200
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 8
},
"end": {
- "line": 625,
+ "line": 495,
"column": 19
}
}
@@ -57612,16 +46033,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25658,
- 25662
+ 20201,
+ 20205
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 20
},
"end": {
- "line": 625,
+ "line": 495,
"column": 24
}
}
@@ -57630,31 +46051,31 @@
"type": "Identifier",
"name": "stylesheetId",
"range": [
- 25663,
- 25675
+ 20206,
+ 20218
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 25
},
"end": {
- "line": 625,
+ "line": 495,
"column": 37
}
}
},
"range": [
- 25658,
- 25675
+ 20201,
+ 20218
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 20
},
"end": {
- "line": 625,
+ "line": 495,
"column": 37
}
}
@@ -57665,16 +46086,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25677,
- 25681
+ 20220,
+ 20224
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 39
},
"end": {
- "line": 625,
+ "line": 495,
"column": 43
}
}
@@ -57683,31 +46104,31 @@
"type": "Identifier",
"name": "stylesheet",
"range": [
- 25682,
- 25692
+ 20225,
+ 20235
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 44
},
"end": {
- "line": 625,
+ "line": 495,
"column": 54
}
}
},
"range": [
- 25677,
- 25692
+ 20220,
+ 20235
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 39
},
"end": {
- "line": 625,
+ "line": 495,
"column": 54
}
}
@@ -57717,16 +46138,16 @@
"value": null,
"raw": "null",
"range": [
- 25694,
- 25698
+ 20237,
+ 20241
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 56
},
"end": {
- "line": 625,
+ "line": 495,
"column": 60
}
}
@@ -57736,47 +46157,47 @@
"value": "link",
"raw": "'link'",
"range": [
- 25700,
- 25706
+ 20243,
+ 20249
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 62
},
"end": {
- "line": 625,
+ "line": 495,
"column": 68
}
}
}
],
"range": [
- 25646,
- 25707
+ 20189,
+ 20250
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 8
},
"end": {
- "line": 625,
+ "line": 495,
"column": 69
}
}
},
"range": [
- 25646,
- 25708
+ 20189,
+ 20251
],
"loc": {
"start": {
- "line": 625,
+ "line": 495,
"column": 8
},
"end": {
- "line": 625,
+ "line": 495,
"column": 70
}
},
@@ -57785,16 +46206,16 @@
"type": "Line",
"value": "loads stylesheet if not imported",
"range": [
- 25603,
- 25637
+ 20146,
+ 20180
],
"loc": {
"start": {
- "line": 624,
+ "line": 494,
"column": 8
},
"end": {
- "line": 624,
+ "line": 494,
"column": 42
}
}
@@ -57805,16 +46226,16 @@
"type": "Line",
"value": "loads theme",
"range": [
- 25718,
- 25731
+ 20261,
+ 20274
],
"loc": {
"start": {
- "line": 627,
+ "line": 497,
"column": 8
},
"end": {
- "line": 627,
+ "line": 497,
"column": 21
}
}
@@ -57829,16 +46250,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25743,
- 25747
+ 20286,
+ 20290
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 11
},
"end": {
- "line": 628,
+ "line": 498,
"column": 15
}
}
@@ -57847,31 +46268,31 @@
"type": "Identifier",
"name": "hasThemes",
"range": [
- 25748,
- 25757
+ 20291,
+ 20300
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 16
},
"end": {
- "line": 628,
+ "line": 498,
"column": 25
}
}
},
"range": [
- 25743,
- 25757
+ 20286,
+ 20300
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 11
},
"end": {
- "line": 628,
+ "line": 498,
"column": 25
}
}
@@ -57889,113 +46310,113 @@
"object": {
"type": "ThisExpression",
"range": [
- 25760,
- 25764
+ 20303,
+ 20307
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 28
},
"end": {
- "line": 628,
+ "line": 498,
"column": 32
}
}
},
"property": {
"type": "Identifier",
- "name": "_loadThemes",
+ "name": "loadThemes",
"range": [
- 25765,
- 25776
+ 20308,
+ 20318
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 33
},
"end": {
- "line": 628,
- "column": 44
+ "line": 498,
+ "column": 43
}
}
},
"range": [
- 25760,
- 25776
+ 20303,
+ 20318
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 28
},
"end": {
- "line": 628,
- "column": 44
+ "line": 498,
+ "column": 43
}
}
},
"arguments": [],
"range": [
- 25760,
- 25778
+ 20303,
+ 20320
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 28
},
"end": {
- "line": 628,
- "column": 46
+ "line": 498,
+ "column": 45
}
}
},
"range": [
- 25760,
- 25779
+ 20303,
+ 20321
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 28
},
"end": {
- "line": 628,
- "column": 47
+ "line": 498,
+ "column": 46
}
}
}
],
"range": [
- 25758,
- 25781
+ 20301,
+ 20323
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 26
},
"end": {
- "line": 628,
- "column": 49
+ "line": 498,
+ "column": 48
}
}
},
"alternate": null,
"range": [
- 25740,
- 25781
+ 20283,
+ 20323
],
"loc": {
"start": {
- "line": 628,
+ "line": 498,
"column": 8
},
"end": {
- "line": 628,
- "column": 49
+ "line": 498,
+ "column": 48
}
},
"leadingComments": [
@@ -58003,216 +46424,114 @@
"type": "Line",
"value": "loads theme",
"range": [
- 25718,
- 25731
+ 20261,
+ 20274
],
"loc": {
"start": {
- "line": 627,
+ "line": 497,
"column": 8
},
"end": {
- "line": 627,
+ "line": 497,
"column": 21
}
}
}
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Instantiate help feature and initialise only if set true",
+ "range": [
+ 20333,
+ 20392
+ ],
+ "loc": {
+ "start": {
+ "line": 500,
+ "column": 8
+ },
+ "end": {
+ "line": 500,
+ "column": 67
+ }
+ }
+ }
]
},
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25794,
- 25798
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 11
- },
- "end": {
- "line": 630,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 25799,
- 25817
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 16
- },
- "end": {
- "line": 630,
- "column": 34
- }
- }
- },
- "range": [
- 25794,
- 25817
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 11
- },
- "end": {
- "line": 630,
- "column": 34
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 25821,
- 25825
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 38
- },
- "end": {
- "line": 630,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageNb",
- "range": [
- 25826,
- 25840
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 43
- },
- "end": {
- "line": 630,
- "column": 57
- }
- }
- },
- "range": [
- 25821,
- 25840
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 38
- },
- "end": {
- "line": 630,
- "column": 57
- }
- }
- },
- "range": [
- 25794,
- 25840
- ],
- "loc": {
- "start": {
- "line": 630,
- "column": 11
- },
- "end": {
- "line": 630,
- "column": 57
- }
- }
- },
- "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "Identifier",
+ "name": "Mod",
"range": [
- 25856,
- 25860
+ 20405,
+ 20408
],
"loc": {
"start": {
- "line": 631,
+ "line": 501,
"column": 12
},
"end": {
- "line": 631,
- "column": 16
+ "line": 501,
+ "column": 15
}
}
},
"property": {
"type": "Identifier",
- "name": "rememberPageLen",
+ "name": "help",
"range": [
- 25861,
- 25876
+ 20409,
+ 20413
],
"loc": {
"start": {
- "line": 631,
- "column": 17
+ "line": 501,
+ "column": 16
},
"end": {
- "line": 631,
- "column": 32
+ "line": 501,
+ "column": 20
}
}
},
"range": [
- 25856,
- 25876
+ 20405,
+ 20413
],
"loc": {
"start": {
- "line": 631,
+ "line": 501,
"column": 12
},
"end": {
- "line": 631,
- "column": 32
+ "line": 501,
+ "column": 20
}
}
},
+ "prefix": true,
"range": [
- 25794,
- 25876
+ 20404,
+ 20413
],
"loc": {
"start": {
- "line": 630,
+ "line": 501,
"column": 11
},
"end": {
- "line": 631,
- "column": 32
+ "line": 501,
+ "column": 20
}
}
},
@@ -58231,8 +46550,10315 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 25891,
- 25894
+ 20428,
+ 20431
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 12
+ },
+ "end": {
+ "line": 502,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "help",
+ "range": [
+ 20432,
+ 20436
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 16
+ },
+ "end": {
+ "line": 502,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 20428,
+ 20436
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 12
+ },
+ "end": {
+ "line": 502,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Help",
+ "range": [
+ 20443,
+ 20447
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 27
+ },
+ "end": {
+ "line": 502,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 20448,
+ 20452
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 32
+ },
+ "end": {
+ "line": 502,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 20439,
+ 20453
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 23
+ },
+ "end": {
+ "line": 502,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 20428,
+ 20453
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 12
+ },
+ "end": {
+ "line": 502,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 20428,
+ 20454
+ ],
+ "loc": {
+ "start": {
+ "line": 502,
+ "column": 12
+ },
+ "end": {
+ "line": 502,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 20414,
+ 20464
+ ],
+ "loc": {
+ "start": {
+ "line": 501,
+ "column": 21
+ },
+ "end": {
+ "line": 503,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20401,
+ 20464
+ ],
+ "loc": {
+ "start": {
+ "line": 501,
+ "column": 8
+ },
+ "end": {
+ "line": 503,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Instantiate help feature and initialise only if set true",
+ "range": [
+ 20333,
+ 20392
+ ],
+ "loc": {
+ "start": {
+ "line": 500,
+ "column": 8
+ },
+ "end": {
+ "line": 500,
+ "column": 67
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20476,
+ 20480
+ ],
+ "loc": {
+ "start": {
+ "line": 504,
+ "column": 11
+ },
+ "end": {
+ "line": 504,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "help",
+ "range": [
+ 20481,
+ 20485
+ ],
+ "loc": {
+ "start": {
+ "line": 504,
+ "column": 16
+ },
+ "end": {
+ "line": 504,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 20476,
+ 20485
+ ],
+ "loc": {
+ "start": {
+ "line": 504,
+ "column": 11
+ },
+ "end": {
+ "line": 504,
+ "column": 20
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20500,
+ 20503
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 12
+ },
+ "end": {
+ "line": 505,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "help",
+ "range": [
+ 20504,
+ 20508
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 16
+ },
+ "end": {
+ "line": 505,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 20500,
+ 20508
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 12
+ },
+ "end": {
+ "line": 505,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 20509,
+ 20513
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 21
+ },
+ "end": {
+ "line": 505,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 20500,
+ 20513
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 12
+ },
+ "end": {
+ "line": 505,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 20500,
+ 20515
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 12
+ },
+ "end": {
+ "line": 505,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 20500,
+ 20516
+ ],
+ "loc": {
+ "start": {
+ "line": 505,
+ "column": 12
+ },
+ "end": {
+ "line": 505,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "range": [
+ 20486,
+ 20526
+ ],
+ "loc": {
+ "start": {
+ "line": 504,
+ "column": 21
+ },
+ "end": {
+ "line": 506,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20473,
+ 20526
+ ],
+ "loc": {
+ "start": {
+ "line": 504,
+ "column": 8
+ },
+ "end": {
+ "line": 506,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20539,
+ 20543
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 11
+ },
+ "end": {
+ "line": 508,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberGridValues",
+ "range": [
+ 20544,
+ 20562
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 16
+ },
+ "end": {
+ "line": 508,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 20539,
+ 20562
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 11
+ },
+ "end": {
+ "line": 508,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20566,
+ 20570
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 38
+ },
+ "end": {
+ "line": 508,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageNb",
+ "range": [
+ 20571,
+ 20585
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 43
+ },
+ "end": {
+ "line": 508,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 20566,
+ 20585
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 38
+ },
+ "end": {
+ "line": 508,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 20539,
+ 20585
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 11
+ },
+ "end": {
+ "line": 508,
+ "column": 57
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20601,
+ 20605
+ ],
+ "loc": {
+ "start": {
+ "line": 509,
+ "column": 12
+ },
+ "end": {
+ "line": 509,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rememberPageLen",
+ "range": [
+ 20606,
+ 20621
+ ],
+ "loc": {
+ "start": {
+ "line": 509,
+ "column": 17
+ },
+ "end": {
+ "line": 509,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 20601,
+ 20621
+ ],
+ "loc": {
+ "start": {
+ "line": 509,
+ "column": 12
+ },
+ "end": {
+ "line": 509,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 20539,
+ 20621
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 11
+ },
+ "end": {
+ "line": 509,
+ "column": 32
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20640,
+ 20643
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 16
+ },
+ "end": {
+ "line": 510,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "store",
+ "range": [
+ 20644,
+ 20649
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 20
+ },
+ "end": {
+ "line": 510,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 20640,
+ 20649
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 16
+ },
+ "end": {
+ "line": 510,
+ "column": 25
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 20639,
+ 20649
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 15
+ },
+ "end": {
+ "line": 510,
+ "column": 25
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20668,
+ 20671
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 16
+ },
+ "end": {
+ "line": 511,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "store",
+ "range": [
+ 20672,
+ 20677
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 20
+ },
+ "end": {
+ "line": 511,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 20668,
+ 20677
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 16
+ },
+ "end": {
+ "line": 511,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Store",
+ "range": [
+ 20684,
+ 20689
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 32
+ },
+ "end": {
+ "line": 511,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 20690,
+ 20694
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 38
+ },
+ "end": {
+ "line": 511,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 20680,
+ 20695
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 28
+ },
+ "end": {
+ "line": 511,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 20668,
+ 20695
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 16
+ },
+ "end": {
+ "line": 511,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 20668,
+ 20696
+ ],
+ "loc": {
+ "start": {
+ "line": 511,
+ "column": 16
+ },
+ "end": {
+ "line": 511,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 20650,
+ 20710
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 26
+ },
+ "end": {
+ "line": 512,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20636,
+ 20710
+ ],
+ "loc": {
+ "start": {
+ "line": 510,
+ "column": 12
+ },
+ "end": {
+ "line": 512,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20723,
+ 20726
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 12
+ },
+ "end": {
+ "line": 513,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "store",
+ "range": [
+ 20727,
+ 20732
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 16
+ },
+ "end": {
+ "line": 513,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 20723,
+ 20732
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 12
+ },
+ "end": {
+ "line": 513,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 20733,
+ 20737
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 22
+ },
+ "end": {
+ "line": 513,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 20723,
+ 20737
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 12
+ },
+ "end": {
+ "line": 513,
+ "column": 26
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 20723,
+ 20739
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 12
+ },
+ "end": {
+ "line": 513,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 20723,
+ 20740
+ ],
+ "loc": {
+ "start": {
+ "line": 513,
+ "column": 12
+ },
+ "end": {
+ "line": 513,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 20622,
+ 20750
+ ],
+ "loc": {
+ "start": {
+ "line": 509,
+ "column": 33
+ },
+ "end": {
+ "line": 514,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20536,
+ 20750
+ ],
+ "loc": {
+ "start": {
+ "line": 508,
+ "column": 8
+ },
+ "end": {
+ "line": 514,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20763,
+ 20767
+ ],
+ "loc": {
+ "start": {
+ "line": 516,
+ "column": 11
+ },
+ "end": {
+ "line": 516,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 20768,
+ 20778
+ ],
+ "loc": {
+ "start": {
+ "line": 516,
+ "column": 16
+ },
+ "end": {
+ "line": 516,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 20763,
+ 20778
+ ],
+ "loc": {
+ "start": {
+ "line": 516,
+ "column": 11
+ },
+ "end": {
+ "line": 516,
+ "column": 26
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20797,
+ 20800
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 16
+ },
+ "end": {
+ "line": 517,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 20801,
+ 20811
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 20
+ },
+ "end": {
+ "line": 517,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 20797,
+ 20811
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 16
+ },
+ "end": {
+ "line": 517,
+ "column": 30
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 20796,
+ 20811
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 15
+ },
+ "end": {
+ "line": 517,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20830,
+ 20833
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 16
+ },
+ "end": {
+ "line": 518,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 20834,
+ 20844
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 20
+ },
+ "end": {
+ "line": 518,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 20830,
+ 20844
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 16
+ },
+ "end": {
+ "line": 518,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "GridLayout",
+ "range": [
+ 20851,
+ 20861
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 37
+ },
+ "end": {
+ "line": 518,
+ "column": 47
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 20862,
+ 20866
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 48
+ },
+ "end": {
+ "line": 518,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 20847,
+ 20867
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 33
+ },
+ "end": {
+ "line": 518,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 20830,
+ 20867
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 16
+ },
+ "end": {
+ "line": 518,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 20830,
+ 20868
+ ],
+ "loc": {
+ "start": {
+ "line": 518,
+ "column": 16
+ },
+ "end": {
+ "line": 518,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 20812,
+ 20882
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 31
+ },
+ "end": {
+ "line": 519,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20793,
+ 20882
+ ],
+ "loc": {
+ "start": {
+ "line": 517,
+ "column": 12
+ },
+ "end": {
+ "line": 519,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20895,
+ 20898
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 12
+ },
+ "end": {
+ "line": 520,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 20899,
+ 20909
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 16
+ },
+ "end": {
+ "line": 520,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 20895,
+ 20909
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 12
+ },
+ "end": {
+ "line": 520,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 20910,
+ 20914
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 27
+ },
+ "end": {
+ "line": 520,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 20895,
+ 20914
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 12
+ },
+ "end": {
+ "line": 520,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 20895,
+ 20916
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 12
+ },
+ "end": {
+ "line": 520,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 20895,
+ 20917
+ ],
+ "loc": {
+ "start": {
+ "line": 520,
+ "column": 12
+ },
+ "end": {
+ "line": 520,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 20779,
+ 20927
+ ],
+ "loc": {
+ "start": {
+ "line": 516,
+ "column": 27
+ },
+ "end": {
+ "line": 521,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20760,
+ 20927
+ ],
+ "loc": {
+ "start": {
+ "line": 516,
+ "column": 8
+ },
+ "end": {
+ "line": 521,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 20940,
+ 20944
+ ],
+ "loc": {
+ "start": {
+ "line": 523,
+ "column": 11
+ },
+ "end": {
+ "line": 523,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loader",
+ "range": [
+ 20945,
+ 20951
+ ],
+ "loc": {
+ "start": {
+ "line": 523,
+ "column": 16
+ },
+ "end": {
+ "line": 523,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 20940,
+ 20951
+ ],
+ "loc": {
+ "start": {
+ "line": 523,
+ "column": 11
+ },
+ "end": {
+ "line": 523,
+ "column": 22
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20970,
+ 20973
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 16
+ },
+ "end": {
+ "line": 524,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loader",
+ "range": [
+ 20974,
+ 20980
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 20
+ },
+ "end": {
+ "line": 524,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 20970,
+ 20980
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 16
+ },
+ "end": {
+ "line": 524,
+ "column": 26
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 20969,
+ 20980
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 15
+ },
+ "end": {
+ "line": 524,
+ "column": 26
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 20999,
+ 21002
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 16
+ },
+ "end": {
+ "line": 525,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loader",
+ "range": [
+ 21003,
+ 21009
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 20
+ },
+ "end": {
+ "line": 525,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 20999,
+ 21009
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 16
+ },
+ "end": {
+ "line": 525,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Loader",
+ "range": [
+ 21016,
+ 21022
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 33
+ },
+ "end": {
+ "line": 525,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 21023,
+ 21027
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 40
+ },
+ "end": {
+ "line": 525,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 21012,
+ 21028
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 29
+ },
+ "end": {
+ "line": 525,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 20999,
+ 21028
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 16
+ },
+ "end": {
+ "line": 525,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 20999,
+ 21029
+ ],
+ "loc": {
+ "start": {
+ "line": 525,
+ "column": 16
+ },
+ "end": {
+ "line": 525,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 20981,
+ 21043
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 27
+ },
+ "end": {
+ "line": 526,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20966,
+ 21043
+ ],
+ "loc": {
+ "start": {
+ "line": 524,
+ "column": 12
+ },
+ "end": {
+ "line": 526,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21056,
+ 21059
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 12
+ },
+ "end": {
+ "line": 527,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loader",
+ "range": [
+ 21060,
+ 21066
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 16
+ },
+ "end": {
+ "line": 527,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 21056,
+ 21066
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 12
+ },
+ "end": {
+ "line": 527,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 21067,
+ 21071
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 23
+ },
+ "end": {
+ "line": 527,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 21056,
+ 21071
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 12
+ },
+ "end": {
+ "line": 527,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21056,
+ 21073
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 12
+ },
+ "end": {
+ "line": 527,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 21056,
+ 21074
+ ],
+ "loc": {
+ "start": {
+ "line": 527,
+ "column": 12
+ },
+ "end": {
+ "line": 527,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 20952,
+ 21084
+ ],
+ "loc": {
+ "start": {
+ "line": 523,
+ "column": 23
+ },
+ "end": {
+ "line": 528,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 20937,
+ 21084
+ ],
+ "loc": {
+ "start": {
+ "line": 523,
+ "column": 8
+ },
+ "end": {
+ "line": 528,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21097,
+ 21101
+ ],
+ "loc": {
+ "start": {
+ "line": 530,
+ "column": 11
+ },
+ "end": {
+ "line": 530,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightKeywords",
+ "range": [
+ 21102,
+ 21119
+ ],
+ "loc": {
+ "start": {
+ "line": 530,
+ "column": 16
+ },
+ "end": {
+ "line": 530,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 21097,
+ 21119
+ ],
+ "loc": {
+ "start": {
+ "line": 530,
+ "column": 11
+ },
+ "end": {
+ "line": 530,
+ "column": 33
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21134,
+ 21137
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 12
+ },
+ "end": {
+ "line": 531,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightKeyword",
+ "range": [
+ 21138,
+ 21154
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 16
+ },
+ "end": {
+ "line": 531,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 21134,
+ 21154
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 12
+ },
+ "end": {
+ "line": 531,
+ "column": 32
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "HighlightKeyword",
+ "range": [
+ 21161,
+ 21177
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 39
+ },
+ "end": {
+ "line": 531,
+ "column": 55
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 21178,
+ 21182
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 56
+ },
+ "end": {
+ "line": 531,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 21157,
+ 21183
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 35
+ },
+ "end": {
+ "line": 531,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 21134,
+ 21183
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 12
+ },
+ "end": {
+ "line": 531,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 21134,
+ 21184
+ ],
+ "loc": {
+ "start": {
+ "line": 531,
+ "column": 12
+ },
+ "end": {
+ "line": 531,
+ "column": 62
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21197,
+ 21200
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 12
+ },
+ "end": {
+ "line": 532,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "highlightKeyword",
+ "range": [
+ 21201,
+ 21217
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 16
+ },
+ "end": {
+ "line": 532,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 21197,
+ 21217
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 12
+ },
+ "end": {
+ "line": 532,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 21218,
+ 21222
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 33
+ },
+ "end": {
+ "line": 532,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 21197,
+ 21222
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 12
+ },
+ "end": {
+ "line": 532,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21197,
+ 21224
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 12
+ },
+ "end": {
+ "line": 532,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 21197,
+ 21225
+ ],
+ "loc": {
+ "start": {
+ "line": 532,
+ "column": 12
+ },
+ "end": {
+ "line": 532,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 21120,
+ 21235
+ ],
+ "loc": {
+ "start": {
+ "line": 530,
+ "column": 34
+ },
+ "end": {
+ "line": 533,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 21094,
+ 21235
+ ],
+ "loc": {
+ "start": {
+ "line": 530,
+ "column": 8
+ },
+ "end": {
+ "line": 533,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21248,
+ 21252
+ ],
+ "loc": {
+ "start": {
+ "line": 535,
+ "column": 11
+ },
+ "end": {
+ "line": 535,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "popupFilters",
+ "range": [
+ 21253,
+ 21265
+ ],
+ "loc": {
+ "start": {
+ "line": 535,
+ "column": 16
+ },
+ "end": {
+ "line": 535,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 21248,
+ 21265
+ ],
+ "loc": {
+ "start": {
+ "line": 535,
+ "column": 11
+ },
+ "end": {
+ "line": 535,
+ "column": 28
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21284,
+ 21287
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 16
+ },
+ "end": {
+ "line": 536,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "popupFilter",
+ "range": [
+ 21288,
+ 21299
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 20
+ },
+ "end": {
+ "line": 536,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 21284,
+ 21299
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 16
+ },
+ "end": {
+ "line": 536,
+ "column": 31
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 21283,
+ 21299
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 15
+ },
+ "end": {
+ "line": 536,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21318,
+ 21321
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 16
+ },
+ "end": {
+ "line": 537,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "popupFilter",
+ "range": [
+ 21322,
+ 21333
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 20
+ },
+ "end": {
+ "line": 537,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 21318,
+ 21333
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 16
+ },
+ "end": {
+ "line": 537,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "PopupFilter",
+ "range": [
+ 21340,
+ 21351
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 38
+ },
+ "end": {
+ "line": 537,
+ "column": 49
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 21352,
+ 21356
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 50
+ },
+ "end": {
+ "line": 537,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 21336,
+ 21357
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 34
+ },
+ "end": {
+ "line": 537,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 21318,
+ 21357
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 16
+ },
+ "end": {
+ "line": 537,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 21318,
+ 21358
+ ],
+ "loc": {
+ "start": {
+ "line": 537,
+ "column": 16
+ },
+ "end": {
+ "line": 537,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 21300,
+ 21372
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 32
+ },
+ "end": {
+ "line": 538,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 21280,
+ 21372
+ ],
+ "loc": {
+ "start": {
+ "line": 536,
+ "column": 12
+ },
+ "end": {
+ "line": 538,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 21385,
+ 21388
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 12
+ },
+ "end": {
+ "line": 539,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "popupFilter",
+ "range": [
+ 21389,
+ 21400
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 16
+ },
+ "end": {
+ "line": 539,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 21385,
+ 21400
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 12
+ },
+ "end": {
+ "line": 539,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 21401,
+ 21405
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 28
+ },
+ "end": {
+ "line": 539,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 21385,
+ 21405
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 12
+ },
+ "end": {
+ "line": 539,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21385,
+ 21407
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 12
+ },
+ "end": {
+ "line": 539,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 21385,
+ 21408
+ ],
+ "loc": {
+ "start": {
+ "line": 539,
+ "column": 12
+ },
+ "end": {
+ "line": 539,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 21266,
+ 21418
+ ],
+ "loc": {
+ "start": {
+ "line": 535,
+ "column": 29
+ },
+ "end": {
+ "line": 540,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 21245,
+ 21418
+ ],
+ "loc": {
+ "start": {
+ "line": 535,
+ "column": 8
+ },
+ "end": {
+ "line": 540,
+ "column": 9
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filters grid is not generated",
+ "range": [
+ 21428,
+ 21459
+ ],
+ "loc": {
+ "start": {
+ "line": 542,
+ "column": 8
+ },
+ "end": {
+ "line": 542,
+ "column": 39
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21472,
+ 21476
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 12
+ },
+ "end": {
+ "line": 543,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltGrid",
+ "range": [
+ 21477,
+ 21484
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 17
+ },
+ "end": {
+ "line": 543,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 21472,
+ 21484
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 12
+ },
+ "end": {
+ "line": 543,
+ "column": 24
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 21471,
+ 21484
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 11
+ },
+ "end": {
+ "line": 543,
+ "column": 24
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21499,
+ 21503
+ ],
+ "loc": {
+ "start": {
+ "line": 544,
+ "column": 12
+ },
+ "end": {
+ "line": 544,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_initNoFilters",
+ "range": [
+ 21504,
+ 21518
+ ],
+ "loc": {
+ "start": {
+ "line": 544,
+ "column": 17
+ },
+ "end": {
+ "line": 544,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 21499,
+ 21518
+ ],
+ "loc": {
+ "start": {
+ "line": 544,
+ "column": 12
+ },
+ "end": {
+ "line": 544,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21499,
+ 21520
+ ],
+ "loc": {
+ "start": {
+ "line": 544,
+ "column": 12
+ },
+ "end": {
+ "line": 544,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 21499,
+ 21521
+ ],
+ "loc": {
+ "start": {
+ "line": 544,
+ "column": 12
+ },
+ "end": {
+ "line": 544,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 21485,
+ 21531
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 25
+ },
+ "end": {
+ "line": 545,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 21555,
+ 21561
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 16
+ },
+ "end": {
+ "line": 546,
+ "column": 22
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21564,
+ 21568
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 25
+ },
+ "end": {
+ "line": 546,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_insertFiltersRow",
+ "range": [
+ 21569,
+ 21586
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 30
+ },
+ "end": {
+ "line": 546,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 21564,
+ 21586
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 25
+ },
+ "end": {
+ "line": 546,
+ "column": 47
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21564,
+ 21588
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 25
+ },
+ "end": {
+ "line": 546,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 21555,
+ 21588
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 16
+ },
+ "end": {
+ "line": 546,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 21551,
+ 21589
+ ],
+ "loc": {
+ "start": {
+ "line": 546,
+ "column": 12
+ },
+ "end": {
+ "line": 546,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21603,
+ 21607
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 12
+ },
+ "end": {
+ "line": 548,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 21608,
+ 21624
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 17
+ },
+ "end": {
+ "line": 548,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 21603,
+ 21624
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 12
+ },
+ "end": {
+ "line": 548,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21627,
+ 21631
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 36
+ },
+ "end": {
+ "line": 548,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getRowsNb",
+ "range": [
+ 21632,
+ 21641
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 41
+ },
+ "end": {
+ "line": 548,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 21627,
+ 21641
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 36
+ },
+ "end": {
+ "line": 548,
+ "column": 50
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 21627,
+ 21643
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 36
+ },
+ "end": {
+ "line": 548,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 21603,
+ 21643
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 12
+ },
+ "end": {
+ "line": 548,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 21603,
+ 21644
+ ],
+ "loc": {
+ "start": {
+ "line": 548,
+ "column": 12
+ },
+ "end": {
+ "line": 548,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21657,
+ 21661
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 12
+ },
+ "end": {
+ "line": 549,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 21662,
+ 21675
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 17
+ },
+ "end": {
+ "line": 549,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 21657,
+ 21675
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 12
+ },
+ "end": {
+ "line": 549,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21678,
+ 21682
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 33
+ },
+ "end": {
+ "line": 549,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 21683,
+ 21699
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 38
+ },
+ "end": {
+ "line": 549,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 21678,
+ 21699
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 33
+ },
+ "end": {
+ "line": 549,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 21657,
+ 21699
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 12
+ },
+ "end": {
+ "line": 549,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 21657,
+ 21700
+ ],
+ "loc": {
+ "start": {
+ "line": 549,
+ "column": 12
+ },
+ "end": {
+ "line": 549,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21713,
+ 21717
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 12
+ },
+ "end": {
+ "line": 550,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbRows",
+ "range": [
+ 21718,
+ 21724
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 17
+ },
+ "end": {
+ "line": 550,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 21713,
+ 21724
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 12
+ },
+ "end": {
+ "line": 550,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21727,
+ 21731
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 26
+ },
+ "end": {
+ "line": 550,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tbl",
+ "range": [
+ 21732,
+ 21735
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 31
+ },
+ "end": {
+ "line": 550,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 21727,
+ 21735
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 26
+ },
+ "end": {
+ "line": 550,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rows",
+ "range": [
+ 21736,
+ 21740
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 35
+ },
+ "end": {
+ "line": 550,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 21727,
+ 21740
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 26
+ },
+ "end": {
+ "line": 550,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 21741,
+ 21747
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 40
+ },
+ "end": {
+ "line": 550,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 21727,
+ 21747
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 26
+ },
+ "end": {
+ "line": 550,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 21713,
+ 21747
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 12
+ },
+ "end": {
+ "line": 550,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 21713,
+ 21748
+ ],
+ "loc": {
+ "start": {
+ "line": 550,
+ "column": 12
+ },
+ "end": {
+ "line": 550,
+ "column": 47
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Generate filters",
+ "range": [
+ 21762,
+ 21781
+ ],
+ "loc": {
+ "start": {
+ "line": 552,
+ "column": 12
+ },
+ "end": {
+ "line": 552,
+ "column": 31
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ForStatement",
+ "init": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 21802,
+ 21803
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 20
+ },
+ "end": {
+ "line": 553,
+ "column": 21
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 21804,
+ 21805
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 22
+ },
+ "end": {
+ "line": 553,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 21802,
+ 21805
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 20
+ },
+ "end": {
+ "line": 553,
+ "column": 23
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 21798,
+ 21805
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 16
+ },
+ "end": {
+ "line": 553,
+ "column": 23
+ }
+ }
+ },
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "<",
+ "left": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 21807,
+ 21808
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 25
+ },
+ "end": {
+ "line": 553,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "n",
+ "range": [
+ 21809,
+ 21810
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 27
+ },
+ "end": {
+ "line": 553,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 21807,
+ 21810
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 25
+ },
+ "end": {
+ "line": 553,
+ "column": 28
+ }
+ }
+ },
+ "update": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 21812,
+ 21813
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 30
+ },
+ "end": {
+ "line": 553,
+ "column": 31
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 21812,
+ 21815
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 30
+ },
+ "end": {
+ "line": 553,
+ "column": 33
+ }
+ }
+ },
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21834,
+ 21838
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 16
+ },
+ "end": {
+ "line": 554,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 21839,
+ 21846
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 21
+ },
+ "end": {
+ "line": 554,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 21834,
+ 21846
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 16
+ },
+ "end": {
+ "line": 554,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 21847,
+ 21851
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 29
+ },
+ "end": {
+ "line": 554,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 21834,
+ 21851
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 16
+ },
+ "end": {
+ "line": 554,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-filter-init",
+ "raw": "'before-filter-init'",
+ "range": [
+ 21852,
+ 21872
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 34
+ },
+ "end": {
+ "line": 554,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 21874,
+ 21878
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 56
+ },
+ "end": {
+ "line": 554,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 21880,
+ 21881
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 62
+ },
+ "end": {
+ "line": 554,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 21834,
+ 21882
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 16
+ },
+ "end": {
+ "line": 554,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 21834,
+ 21883
+ ],
+ "loc": {
+ "start": {
+ "line": 554,
+ "column": 16
+ },
+ "end": {
+ "line": 554,
+ "column": 65
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 21905,
+ 21912
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 20
+ },
+ "end": {
+ "line": 556,
+ "column": 27
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 21915,
+ 21918
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 30
+ },
+ "end": {
+ "line": 556,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "create",
+ "range": [
+ 21919,
+ 21925
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 34
+ },
+ "end": {
+ "line": 556,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 21915,
+ 21925
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 30
+ },
+ "end": {
+ "line": 556,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21926,
+ 21930
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 41
+ },
+ "end": {
+ "line": 556,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltCellTag",
+ "range": [
+ 21931,
+ 21941
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 46
+ },
+ "end": {
+ "line": 556,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 21926,
+ 21941
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 41
+ },
+ "end": {
+ "line": 556,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 21915,
+ 21942
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 30
+ },
+ "end": {
+ "line": 556,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 21905,
+ 21942
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 20
+ },
+ "end": {
+ "line": 556,
+ "column": 57
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 21964,
+ 21967
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 20
+ },
+ "end": {
+ "line": 557,
+ "column": 23
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 21970,
+ 21974
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 26
+ },
+ "end": {
+ "line": 557,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 21975,
+ 21988
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 31
+ },
+ "end": {
+ "line": 557,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 21970,
+ 21988
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 26
+ },
+ "end": {
+ "line": 557,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 21989,
+ 21990
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 45
+ },
+ "end": {
+ "line": 557,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 21970,
+ 21991
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 26
+ },
+ "end": {
+ "line": 557,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 21964,
+ 21991
+ ],
+ "loc": {
+ "start": {
+ "line": 557,
+ "column": 20
+ },
+ "end": {
+ "line": 557,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 21901,
+ 21992
+ ],
+ "loc": {
+ "start": {
+ "line": 556,
+ "column": 16
+ },
+ "end": {
+ "line": 557,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22013,
+ 22017
+ ],
+ "loc": {
+ "start": {
+ "line": 559,
+ "column": 19
+ },
+ "end": {
+ "line": 559,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "singleSearchFlt",
+ "range": [
+ 22018,
+ 22033
+ ],
+ "loc": {
+ "start": {
+ "line": 559,
+ "column": 24
+ },
+ "end": {
+ "line": 559,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 22013,
+ 22033
+ ],
+ "loc": {
+ "start": {
+ "line": 559,
+ "column": 19
+ },
+ "end": {
+ "line": 559,
+ "column": 39
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 22056,
+ 22063
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 20
+ },
+ "end": {
+ "line": 560,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colSpan",
+ "range": [
+ 22064,
+ 22071
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 28
+ },
+ "end": {
+ "line": 560,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 22056,
+ 22071
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 20
+ },
+ "end": {
+ "line": 560,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22074,
+ 22078
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 38
+ },
+ "end": {
+ "line": 560,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbCells",
+ "range": [
+ 22079,
+ 22086
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 43
+ },
+ "end": {
+ "line": 560,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 22074,
+ 22086
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 38
+ },
+ "end": {
+ "line": 560,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 22056,
+ 22086
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 20
+ },
+ "end": {
+ "line": 560,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 22056,
+ 22087
+ ],
+ "loc": {
+ "start": {
+ "line": 560,
+ "column": 20
+ },
+ "end": {
+ "line": 560,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 22034,
+ 22105
+ ],
+ "loc": {
+ "start": {
+ "line": 559,
+ "column": 40
+ },
+ "end": {
+ "line": 561,
+ "column": 17
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22010,
+ 22105
+ ],
+ "loc": {
+ "start": {
+ "line": 559,
+ "column": 16
+ },
+ "end": {
+ "line": 561,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22126,
+ 22130
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 20
+ },
+ "end": {
+ "line": 562,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 22131,
+ 22141
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 25
+ },
+ "end": {
+ "line": 562,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 22126,
+ 22141
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 20
+ },
+ "end": {
+ "line": 562,
+ "column": 35
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 22125,
+ 22141
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 19
+ },
+ "end": {
+ "line": 562,
+ "column": 35
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 22164,
+ 22170
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 20
+ },
+ "end": {
+ "line": 563,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 22171,
+ 22182
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 27
+ },
+ "end": {
+ "line": 563,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 22164,
+ 22182
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 20
+ },
+ "end": {
+ "line": 563,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 22183,
+ 22190
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 39
+ },
+ "end": {
+ "line": 563,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 22164,
+ 22191
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 20
+ },
+ "end": {
+ "line": 563,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 22164,
+ 22192
+ ],
+ "loc": {
+ "start": {
+ "line": 563,
+ "column": 20
+ },
+ "end": {
+ "line": 563,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 22142,
+ 22210
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 36
+ },
+ "end": {
+ "line": 564,
+ "column": 17
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22122,
+ 22210
+ ],
+ "loc": {
+ "start": {
+ "line": 562,
+ "column": 16
+ },
+ "end": {
+ "line": 564,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "inpclass",
+ "range": [
+ 22227,
+ 22235
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 16
+ },
+ "end": {
+ "line": 565,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "==",
+ "left": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 22239,
+ 22240
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 28
+ },
+ "end": {
+ "line": 565,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "-",
+ "left": {
+ "type": "Identifier",
+ "name": "n",
+ "range": [
+ 22242,
+ 22243
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 31
+ },
+ "end": {
+ "line": 565,
+ "column": 32
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 22244,
+ 22245
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 33
+ },
+ "end": {
+ "line": 565,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 22242,
+ 22245
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 31
+ },
+ "end": {
+ "line": 565,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 22239,
+ 22245
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 28
+ },
+ "end": {
+ "line": 565,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22249,
+ 22253
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 38
+ },
+ "end": {
+ "line": 565,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "displayBtn",
+ "range": [
+ 22254,
+ 22264
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 43
+ },
+ "end": {
+ "line": 565,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 22249,
+ 22264
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 38
+ },
+ "end": {
+ "line": 565,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 22239,
+ 22264
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 28
+ },
+ "end": {
+ "line": 565,
+ "column": 53
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22288,
+ 22292
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 20
+ },
+ "end": {
+ "line": 566,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltSmallCssClass",
+ "range": [
+ 22293,
+ 22309
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 25
+ },
+ "end": {
+ "line": 566,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 22288,
+ 22309
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 20
+ },
+ "end": {
+ "line": 566,
+ "column": 41
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22312,
+ 22316
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 44
+ },
+ "end": {
+ "line": 566,
+ "column": 48
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltCssClass",
+ "range": [
+ 22317,
+ 22328
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 49
+ },
+ "end": {
+ "line": 566,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 22312,
+ 22328
+ ],
+ "loc": {
+ "start": {
+ "line": 566,
+ "column": 44
+ },
+ "end": {
+ "line": 566,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 22238,
+ 22328
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 27
+ },
+ "end": {
+ "line": 566,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 22227,
+ 22328
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 16
+ },
+ "end": {
+ "line": 566,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 22227,
+ 22329
+ ],
+ "loc": {
+ "start": {
+ "line": 565,
+ "column": 16
+ },
+ "end": {
+ "line": 566,
+ "column": 61
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "only 1 input for single search",
+ "range": [
+ 22347,
+ 22379
+ ],
+ "loc": {
+ "start": {
+ "line": 568,
+ "column": 16
+ },
+ "end": {
+ "line": 568,
+ "column": 48
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22399,
+ 22403
+ ],
+ "loc": {
+ "start": {
+ "line": 569,
+ "column": 19
+ },
+ "end": {
+ "line": 569,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "singleSearchFlt",
+ "range": [
+ 22404,
+ 22419
+ ],
+ "loc": {
+ "start": {
+ "line": 569,
+ "column": 24
+ },
+ "end": {
+ "line": 569,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 22399,
+ 22419
+ ],
+ "loc": {
+ "start": {
+ "line": 569,
+ "column": 19
+ },
+ "end": {
+ "line": 569,
+ "column": 39
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 22442,
+ 22445
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 20
+ },
+ "end": {
+ "line": 570,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22448,
+ 22452
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 26
+ },
+ "end": {
+ "line": 570,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeInp",
+ "range": [
+ 22453,
+ 22463
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 31
+ },
+ "end": {
+ "line": 570,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 22448,
+ 22463
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 26
+ },
+ "end": {
+ "line": 570,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 22442,
+ 22463
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 20
+ },
+ "end": {
+ "line": 570,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 22442,
+ 22464
+ ],
+ "loc": {
+ "start": {
+ "line": 570,
+ "column": 20
+ },
+ "end": {
+ "line": 570,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "inpclass",
+ "range": [
+ 22485,
+ 22493
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 20
+ },
+ "end": {
+ "line": 571,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22496,
+ 22500
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 31
+ },
+ "end": {
+ "line": 571,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "singleFltCssClass",
+ "range": [
+ 22501,
+ 22518
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 36
+ },
+ "end": {
+ "line": 571,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 22496,
+ 22518
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 31
+ },
+ "end": {
+ "line": 571,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 22485,
+ 22518
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 20
+ },
+ "end": {
+ "line": 571,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 22485,
+ 22519
+ ],
+ "loc": {
+ "start": {
+ "line": 571,
+ "column": 20
+ },
+ "end": {
+ "line": 571,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 22420,
+ 22537
+ ],
+ "loc": {
+ "start": {
+ "line": 569,
+ "column": 40
+ },
+ "end": {
+ "line": 572,
+ "column": 17
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22396,
+ 22537
+ ],
+ "loc": {
+ "start": {
+ "line": 569,
+ "column": 16
+ },
+ "end": {
+ "line": 572,
+ "column": 17
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "only 1 input for single search",
+ "range": [
+ 22347,
+ 22379
+ ],
+ "loc": {
+ "start": {
+ "line": 568,
+ "column": 16
+ },
+ "end": {
+ "line": 568,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "drop-down filters",
+ "range": [
+ 22555,
+ 22574
+ ],
+ "loc": {
+ "start": {
+ "line": 574,
+ "column": 16
+ },
+ "end": {
+ "line": 574,
+ "column": 35
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 22594,
+ 22597
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 19
+ },
+ "end": {
+ "line": 575,
+ "column": 22
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22600,
+ 22604
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 25
+ },
+ "end": {
+ "line": 575,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeSlc",
+ "range": [
+ 22605,
+ 22615
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 30
+ },
+ "end": {
+ "line": 575,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 22600,
+ 22615
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 25
+ },
+ "end": {
+ "line": 575,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 22594,
+ 22615
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 19
+ },
+ "end": {
+ "line": 575,
+ "column": 40
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 22619,
+ 22622
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 44
+ },
+ "end": {
+ "line": 575,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22625,
+ 22629
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 50
+ },
+ "end": {
+ "line": 575,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeMulti",
+ "range": [
+ 22630,
+ 22642
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 55
+ },
+ "end": {
+ "line": 575,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 22625,
+ 22642
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 50
+ },
+ "end": {
+ "line": 575,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 22619,
+ 22642
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 44
+ },
+ "end": {
+ "line": 575,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 22594,
+ 22642
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 19
+ },
+ "end": {
+ "line": 575,
+ "column": 67
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 22669,
+ 22672
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 24
+ },
+ "end": {
+ "line": 576,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "dropdown",
+ "range": [
+ 22673,
+ 22681
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 28
+ },
+ "end": {
+ "line": 576,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 22669,
+ 22681
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 24
+ },
+ "end": {
+ "line": 576,
+ "column": 36
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 22668,
+ 22681
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 23
+ },
+ "end": {
+ "line": 576,
+ "column": 36
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 22708,
+ 22711
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 24
+ },
+ "end": {
+ "line": 577,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "dropdown",
+ "range": [
+ 22712,
+ 22720
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 28
+ },
+ "end": {
+ "line": 577,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 22708,
+ 22720
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 24
+ },
+ "end": {
+ "line": 577,
+ "column": 36
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Dropdown",
+ "range": [
+ 22727,
+ 22735
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 43
+ },
+ "end": {
+ "line": 577,
+ "column": 51
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 22736,
+ 22740
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 52
+ },
+ "end": {
+ "line": 577,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 22723,
+ 22741
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 39
+ },
+ "end": {
+ "line": 577,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 22708,
+ 22741
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 24
+ },
+ "end": {
+ "line": 577,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 22708,
+ 22742
+ ],
+ "loc": {
+ "start": {
+ "line": 577,
+ "column": 24
+ },
+ "end": {
+ "line": 577,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 22682,
+ 22764
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 37
+ },
+ "end": {
+ "line": 578,
+ "column": 21
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22665,
+ 22764
+ ],
+ "loc": {
+ "start": {
+ "line": 576,
+ "column": 20
+ },
+ "end": {
+ "line": 578,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 22785,
+ 22788
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 20
+ },
+ "end": {
+ "line": 579,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "dropdown",
+ "range": [
+ 22789,
+ 22797
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 24
+ },
+ "end": {
+ "line": 579,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 22785,
+ 22797
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 20
+ },
+ "end": {
+ "line": 579,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 22798,
+ 22802
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 33
+ },
+ "end": {
+ "line": 579,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 22785,
+ 22802
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 20
+ },
+ "end": {
+ "line": 579,
+ "column": 37
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 22803,
+ 22804
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 38
+ },
+ "end": {
+ "line": 579,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22806,
+ 22810
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 41
+ },
+ "end": {
+ "line": 579,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 22811,
+ 22824
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 46
+ },
+ "end": {
+ "line": 579,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 22806,
+ 22824
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 41
+ },
+ "end": {
+ "line": 579,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 22826,
+ 22833
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 61
+ },
+ "end": {
+ "line": 579,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "range": [
+ 22785,
+ 22834
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 20
+ },
+ "end": {
+ "line": 579,
+ "column": 69
+ }
+ }
+ },
+ "range": [
+ 22785,
+ 22835
+ ],
+ "loc": {
+ "start": {
+ "line": 579,
+ "column": 20
+ },
+ "end": {
+ "line": 579,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 22643,
+ 22853
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 68
+ },
+ "end": {
+ "line": 580,
+ "column": 17
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " checklist",
+ "range": [
+ 22870,
+ 22882
+ ],
+ "loc": {
+ "start": {
+ "line": 581,
+ "column": 16
+ },
+ "end": {
+ "line": 581,
+ "column": 28
+ }
+ }
+ }
+ ]
+ },
+ "alternate": {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 22907,
+ 22910
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 24
+ },
+ "end": {
+ "line": 582,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 22913,
+ 22917
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 30
+ },
+ "end": {
+ "line": 582,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeCheckList",
+ "range": [
+ 22918,
+ 22934
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 35
+ },
+ "end": {
+ "line": 582,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 22913,
+ 22934
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 30
+ },
+ "end": {
+ "line": 582,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 22907,
+ 22934
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 24
+ },
+ "end": {
+ "line": 582,
+ "column": 51
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 22961,
+ 22964
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 24
+ },
+ "end": {
+ "line": 583,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkList",
+ "range": [
+ 22965,
+ 22974
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 28
+ },
+ "end": {
+ "line": 583,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 22961,
+ 22974
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 24
+ },
+ "end": {
+ "line": 583,
+ "column": 37
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 22960,
+ 22974
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 23
+ },
+ "end": {
+ "line": 583,
+ "column": 37
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23001,
+ 23004
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 24
+ },
+ "end": {
+ "line": 584,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkList",
+ "range": [
+ 23005,
+ 23014
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 28
+ },
+ "end": {
+ "line": 584,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 23001,
+ 23014
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 24
+ },
+ "end": {
+ "line": 584,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "CheckList",
+ "range": [
+ 23021,
+ 23030
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 44
+ },
+ "end": {
+ "line": 584,
+ "column": 53
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 23031,
+ 23035
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 54
+ },
+ "end": {
+ "line": 584,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 23017,
+ 23036
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 40
+ },
+ "end": {
+ "line": 584,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 23001,
+ 23036
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 24
+ },
+ "end": {
+ "line": 584,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 23001,
+ 23037
+ ],
+ "loc": {
+ "start": {
+ "line": 584,
+ "column": 24
+ },
+ "end": {
+ "line": 584,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 22975,
+ 23059
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 38
+ },
+ "end": {
+ "line": 585,
+ "column": 21
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 22957,
+ 23059
+ ],
+ "loc": {
+ "start": {
+ "line": 583,
+ "column": 20
+ },
+ "end": {
+ "line": 585,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23080,
+ 23083
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 20
+ },
+ "end": {
+ "line": 586,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "checkList",
+ "range": [
+ 23084,
+ 23093
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 24
+ },
+ "end": {
+ "line": 586,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 23080,
+ 23093
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 20
+ },
+ "end": {
+ "line": 586,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 23094,
+ 23098
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 34
+ },
+ "end": {
+ "line": 586,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 23080,
+ 23098
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 20
+ },
+ "end": {
+ "line": 586,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 23099,
+ 23100
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 39
+ },
+ "end": {
+ "line": 586,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23102,
+ 23106
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 42
+ },
+ "end": {
+ "line": 586,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 23107,
+ 23120
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 47
+ },
+ "end": {
+ "line": 586,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 23102,
+ 23120
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 42
+ },
+ "end": {
+ "line": 586,
+ "column": 60
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 23122,
+ 23129
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 62
+ },
+ "end": {
+ "line": 586,
+ "column": 69
+ }
+ }
+ }
+ ],
+ "range": [
+ 23080,
+ 23130
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 20
+ },
+ "end": {
+ "line": 586,
+ "column": 70
+ }
+ }
+ },
+ "range": [
+ 23080,
+ 23131
+ ],
+ "loc": {
+ "start": {
+ "line": 586,
+ "column": 20
+ },
+ "end": {
+ "line": 586,
+ "column": 71
+ }
+ }
+ }
+ ],
+ "range": [
+ 22935,
+ 23149
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 52
+ },
+ "end": {
+ "line": 587,
+ "column": 17
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23177,
+ 23181
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 20
+ },
+ "end": {
+ "line": 588,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_buildInputFilter",
+ "range": [
+ 23182,
+ 23199
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 25
+ },
+ "end": {
+ "line": 588,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 23177,
+ 23199
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 20
+ },
+ "end": {
+ "line": 588,
+ "column": 42
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 23200,
+ 23201
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 43
+ },
+ "end": {
+ "line": 588,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "inpclass",
+ "range": [
+ 23203,
+ 23211
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 46
+ },
+ "end": {
+ "line": 588,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 23213,
+ 23220
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 56
+ },
+ "end": {
+ "line": 588,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 23177,
+ 23221
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 20
+ },
+ "end": {
+ "line": 588,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 23177,
+ 23222
+ ],
+ "loc": {
+ "start": {
+ "line": 588,
+ "column": 20
+ },
+ "end": {
+ "line": 588,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 23155,
+ 23240
+ ],
+ "loc": {
+ "start": {
+ "line": 587,
+ "column": 23
+ },
+ "end": {
+ "line": 589,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 22904,
+ 23240
+ ],
+ "loc": {
+ "start": {
+ "line": 582,
+ "column": 21
+ },
+ "end": {
+ "line": 589,
+ "column": 17
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " checklist",
+ "range": [
+ 22870,
+ 22882
+ ],
+ "loc": {
+ "start": {
+ "line": 581,
+ "column": 16
+ },
+ "end": {
+ "line": 581,
+ "column": 28
+ }
+ }
+ }
+ ]
+ },
+ "range": [
+ 22591,
+ 23240
+ ],
+ "loc": {
+ "start": {
+ "line": 575,
+ "column": 16
+ },
+ "end": {
+ "line": 589,
+ "column": 17
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "drop-down filters",
+ "range": [
+ 22555,
+ 22574
+ ],
+ "loc": {
+ "start": {
+ "line": 574,
+ "column": 16
+ },
+ "end": {
+ "line": 574,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " this adds submit button",
+ "range": [
+ 23258,
+ 23284
+ ],
+ "loc": {
+ "start": {
+ "line": 591,
+ "column": 16
+ },
+ "end": {
+ "line": 591,
+ "column": 42
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "==",
+ "left": {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 23304,
+ 23305
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 19
+ },
+ "end": {
+ "line": 592,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "-",
+ "left": {
+ "type": "Identifier",
+ "name": "n",
+ "range": [
+ 23307,
+ 23308
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 22
+ },
+ "end": {
+ "line": 592,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 23309,
+ 23310
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 24
+ },
+ "end": {
+ "line": 592,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23307,
+ 23310
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 22
+ },
+ "end": {
+ "line": 592,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23304,
+ 23310
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 19
+ },
+ "end": {
+ "line": 592,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23314,
+ 23318
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 29
+ },
+ "end": {
+ "line": 592,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "displayBtn",
+ "range": [
+ 23319,
+ 23329
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 34
+ },
+ "end": {
+ "line": 592,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 23314,
+ 23329
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 29
+ },
+ "end": {
+ "line": 592,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 23304,
+ 23329
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 19
+ },
+ "end": {
+ "line": 592,
+ "column": 44
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23352,
+ 23356
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 20
+ },
+ "end": {
+ "line": 593,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_buildSubmitButton",
+ "range": [
+ 23357,
+ 23375
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 25
+ },
+ "end": {
+ "line": 593,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 23352,
+ 23375
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 20
+ },
+ "end": {
+ "line": 593,
+ "column": 43
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 23376,
+ 23377
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 44
+ },
+ "end": {
+ "line": 593,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fltcell",
+ "range": [
+ 23379,
+ 23386
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 47
+ },
+ "end": {
+ "line": 593,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 23352,
+ 23387
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 20
+ },
+ "end": {
+ "line": 593,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 23352,
+ 23388
+ ],
+ "loc": {
+ "start": {
+ "line": 593,
+ "column": 20
+ },
+ "end": {
+ "line": 593,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 23330,
+ 23406
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 45
+ },
+ "end": {
+ "line": 594,
+ "column": 17
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23301,
+ 23406
+ ],
+ "loc": {
+ "start": {
+ "line": 592,
+ "column": 16
+ },
+ "end": {
+ "line": 594,
+ "column": 17
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " this adds submit button",
+ "range": [
+ 23258,
+ 23284
+ ],
+ "loc": {
+ "start": {
+ "line": 591,
+ "column": 16
+ },
+ "end": {
+ "line": 591,
+ "column": 42
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23424,
+ 23428
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 16
+ },
+ "end": {
+ "line": 596,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 23429,
+ 23436
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 21
+ },
+ "end": {
+ "line": 596,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 23424,
+ 23436
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 16
+ },
+ "end": {
+ "line": 596,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 23437,
+ 23441
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 29
+ },
+ "end": {
+ "line": 596,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 23424,
+ 23441
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 16
+ },
+ "end": {
+ "line": 596,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-filter-init",
+ "raw": "'after-filter-init'",
+ "range": [
+ 23442,
+ 23461
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 34
+ },
+ "end": {
+ "line": 596,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 23463,
+ 23467
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 55
+ },
+ "end": {
+ "line": 596,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 23469,
+ 23470
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 61
+ },
+ "end": {
+ "line": 596,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 23424,
+ 23471
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 16
+ },
+ "end": {
+ "line": 596,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 23424,
+ 23472
+ ],
+ "loc": {
+ "start": {
+ "line": 596,
+ "column": 16
+ },
+ "end": {
+ "line": 596,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 21816,
+ 23486
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 34
+ },
+ "end": {
+ "line": 597,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 21794,
+ 23486
+ ],
+ "loc": {
+ "start": {
+ "line": 553,
+ "column": 12
+ },
+ "end": {
+ "line": 597,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Generate filters",
+ "range": [
+ 21762,
+ 21781
+ ],
+ "loc": {
+ "start": {
+ "line": 552,
+ "column": 12
+ },
+ "end": {
+ "line": 552,
+ "column": 31
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "range": [
+ 21537,
+ 23497
+ ],
+ "loc": {
+ "start": {
+ "line": 545,
+ "column": 15
+ },
+ "end": {
+ "line": 599,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 21468,
+ 23497
+ ],
+ "loc": {
+ "start": {
+ "line": 543,
+ "column": 8
+ },
+ "end": {
+ "line": 599,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filters grid is not generated",
+ "range": [
+ 21428,
+ 21459
+ ],
+ "loc": {
+ "start": {
+ "line": 542,
+ "column": 8
+ },
+ "end": {
+ "line": 542,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "if this.fltGrid",
+ "range": [
+ 23497,
+ 23514
+ ],
+ "loc": {
+ "start": {
+ "line": 599,
+ "column": 9
+ },
+ "end": {
+ "line": 599,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": " Features ",
+ "range": [
+ 23524,
+ 23538
+ ],
+ "loc": {
+ "start": {
+ "line": 601,
+ "column": 8
+ },
+ "end": {
+ "line": 601,
+ "column": 22
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23550,
+ 23554
+ ],
+ "loc": {
+ "start": {
+ "line": 602,
+ "column": 11
+ },
+ "end": {
+ "line": 602,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasVisibleRows",
+ "range": [
+ 23555,
+ 23569
+ ],
+ "loc": {
+ "start": {
+ "line": 602,
+ "column": 16
+ },
+ "end": {
+ "line": 602,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 23550,
+ 23569
+ ],
+ "loc": {
+ "start": {
+ "line": 602,
+ "column": 11
+ },
+ "end": {
+ "line": 602,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23584,
+ 23588
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 12
+ },
+ "end": {
+ "line": 603,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 23589,
+ 23596
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 17
+ },
+ "end": {
+ "line": 603,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 23584,
+ 23596
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 12
+ },
+ "end": {
+ "line": 603,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 23597,
+ 23599
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 25
+ },
+ "end": {
+ "line": 603,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 23584,
+ 23599
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 12
+ },
+ "end": {
+ "line": 603,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 23601,
+ 23618
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 29
+ },
+ "end": {
+ "line": 603,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 23600,
+ 23619
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 28
+ },
+ "end": {
+ "line": 603,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23626,
+ 23630
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 54
+ },
+ "end": {
+ "line": 603,
+ "column": 58
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enforceVisibility",
+ "range": [
+ 23631,
+ 23648
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 59
+ },
+ "end": {
+ "line": 603,
+ "column": 76
+ }
+ }
+ },
+ "range": [
+ 23626,
+ 23648
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 54
+ },
+ "end": {
+ "line": 603,
+ "column": 76
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 23626,
+ 23650
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 54
+ },
+ "end": {
+ "line": 603,
+ "column": 78
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 23621,
+ 23650
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 49
+ },
+ "end": {
+ "line": 603,
+ "column": 78
+ }
+ }
+ }
+ ],
+ "range": [
+ 23584,
+ 23651
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 12
+ },
+ "end": {
+ "line": 603,
+ "column": 79
+ }
+ }
+ },
+ "range": [
+ 23584,
+ 23652
+ ],
+ "loc": {
+ "start": {
+ "line": 603,
+ "column": 12
+ },
+ "end": {
+ "line": 603,
+ "column": 80
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23665,
+ 23669
+ ],
+ "loc": {
+ "start": {
+ "line": 604,
+ "column": 12
+ },
+ "end": {
+ "line": 604,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enforceVisibility",
+ "range": [
+ 23670,
+ 23687
+ ],
+ "loc": {
+ "start": {
+ "line": 604,
+ "column": 17
+ },
+ "end": {
+ "line": 604,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 23665,
+ 23687
+ ],
+ "loc": {
+ "start": {
+ "line": 604,
+ "column": 12
+ },
+ "end": {
+ "line": 604,
+ "column": 34
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 23665,
+ 23689
+ ],
+ "loc": {
+ "start": {
+ "line": 604,
+ "column": 12
+ },
+ "end": {
+ "line": 604,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 23665,
+ 23690
+ ],
+ "loc": {
+ "start": {
+ "line": 604,
+ "column": 12
+ },
+ "end": {
+ "line": 604,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 23570,
+ 23700
+ ],
+ "loc": {
+ "start": {
+ "line": 602,
+ "column": 31
+ },
+ "end": {
+ "line": 605,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23547,
+ 23700
+ ],
+ "loc": {
+ "start": {
+ "line": 602,
+ "column": 8
+ },
+ "end": {
+ "line": 605,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "if this.fltGrid",
+ "range": [
+ 23497,
+ 23514
+ ],
+ "loc": {
+ "start": {
+ "line": 599,
+ "column": 9
+ },
+ "end": {
+ "line": 599,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": " Features ",
+ "range": [
+ 23524,
+ 23538
+ ],
+ "loc": {
+ "start": {
+ "line": 601,
+ "column": 8
+ },
+ "end": {
+ "line": 601,
+ "column": 22
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23712,
+ 23716
+ ],
+ "loc": {
+ "start": {
+ "line": 606,
+ "column": 11
+ },
+ "end": {
+ "line": 606,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rowsCounter",
+ "range": [
+ 23717,
+ 23728
+ ],
+ "loc": {
+ "start": {
+ "line": 606,
+ "column": 16
+ },
+ "end": {
+ "line": 606,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 23712,
+ 23728
+ ],
+ "loc": {
+ "start": {
+ "line": 606,
+ "column": 11
+ },
+ "end": {
+ "line": 606,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23743,
+ 23746
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 12
+ },
+ "end": {
+ "line": 607,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rowsCounter",
+ "range": [
+ 23747,
+ 23758
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 16
+ },
+ "end": {
+ "line": 607,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 23743,
+ 23758
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 12
+ },
+ "end": {
+ "line": 607,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "RowsCounter",
+ "range": [
+ 23765,
+ 23776
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 34
+ },
+ "end": {
+ "line": 607,
+ "column": 45
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 23777,
+ 23781
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 46
+ },
+ "end": {
+ "line": 607,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 23761,
+ 23782
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 30
+ },
+ "end": {
+ "line": 607,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 23743,
+ 23782
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 12
+ },
+ "end": {
+ "line": 607,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 23743,
+ 23783
+ ],
+ "loc": {
+ "start": {
+ "line": 607,
+ "column": 12
+ },
+ "end": {
+ "line": 607,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23796,
+ 23799
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 12
+ },
+ "end": {
+ "line": 608,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "rowsCounter",
+ "range": [
+ 23800,
+ 23811
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 16
+ },
+ "end": {
+ "line": 608,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 23796,
+ 23811
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 12
+ },
+ "end": {
+ "line": 608,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 23812,
+ 23816
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 28
+ },
+ "end": {
+ "line": 608,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 23796,
+ 23816
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 12
+ },
+ "end": {
+ "line": 608,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 23796,
+ 23818
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 12
+ },
+ "end": {
+ "line": 608,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 23796,
+ 23819
+ ],
+ "loc": {
+ "start": {
+ "line": 608,
+ "column": 12
+ },
+ "end": {
+ "line": 608,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 23729,
+ 23829
+ ],
+ "loc": {
+ "start": {
+ "line": 606,
+ "column": 28
+ },
+ "end": {
+ "line": 609,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23709,
+ 23829
+ ],
+ "loc": {
+ "start": {
+ "line": 606,
+ "column": 8
+ },
+ "end": {
+ "line": 609,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23841,
+ 23845
+ ],
+ "loc": {
+ "start": {
+ "line": 610,
+ "column": 11
+ },
+ "end": {
+ "line": 610,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "statusBar",
+ "range": [
+ 23846,
+ 23855
+ ],
+ "loc": {
+ "start": {
+ "line": 610,
+ "column": 16
+ },
+ "end": {
+ "line": 610,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23841,
+ 23855
+ ],
+ "loc": {
+ "start": {
+ "line": 610,
+ "column": 11
+ },
+ "end": {
+ "line": 610,
+ "column": 25
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23870,
+ 23873
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 12
+ },
+ "end": {
+ "line": 611,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "statusBar",
+ "range": [
+ 23874,
+ 23883
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 16
+ },
+ "end": {
+ "line": 611,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23870,
+ 23883
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 12
+ },
+ "end": {
+ "line": 611,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "StatusBar",
+ "range": [
+ 23890,
+ 23899
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 32
+ },
+ "end": {
+ "line": 611,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 23900,
+ 23904
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 42
+ },
+ "end": {
+ "line": 611,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 23886,
+ 23905
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 28
+ },
+ "end": {
+ "line": 611,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 23870,
+ 23905
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 12
+ },
+ "end": {
+ "line": 611,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 23870,
+ 23906
+ ],
+ "loc": {
+ "start": {
+ "line": 611,
+ "column": 12
+ },
+ "end": {
+ "line": 611,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23919,
+ 23922
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 12
+ },
+ "end": {
+ "line": 612,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "statusBar",
+ "range": [
+ 23923,
+ 23932
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 16
+ },
+ "end": {
+ "line": 612,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 23919,
+ 23932
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 12
+ },
+ "end": {
+ "line": 612,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 23933,
+ 23937
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 26
+ },
+ "end": {
+ "line": 612,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 23919,
+ 23937
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 12
+ },
+ "end": {
+ "line": 612,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 23919,
+ 23939
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 12
+ },
+ "end": {
+ "line": 612,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 23919,
+ 23940
+ ],
+ "loc": {
+ "start": {
+ "line": 612,
+ "column": 12
+ },
+ "end": {
+ "line": 612,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 23856,
+ 23950
+ ],
+ "loc": {
+ "start": {
+ "line": 610,
+ "column": 26
+ },
+ "end": {
+ "line": 613,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23838,
+ 23950
+ ],
+ "loc": {
+ "start": {
+ "line": 610,
+ "column": 8
+ },
+ "end": {
+ "line": 613,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 23962,
+ 23966
+ ],
+ "loc": {
+ "start": {
+ "line": 614,
+ "column": 11
+ },
+ "end": {
+ "line": 614,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 23967,
+ 23973
+ ],
+ "loc": {
+ "start": {
+ "line": 614,
+ "column": 16
+ },
+ "end": {
+ "line": 614,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 23962,
+ 23973
+ ],
+ "loc": {
+ "start": {
+ "line": 614,
+ "column": 11
+ },
+ "end": {
+ "line": 614,
+ "column": 22
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 23992,
+ 23995
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 16
+ },
+ "end": {
+ "line": 615,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 23996,
+ 24002
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 20
+ },
+ "end": {
+ "line": 615,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 23992,
+ 24002
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 16
+ },
+ "end": {
+ "line": 615,
+ "column": 26
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 23991,
+ 24002
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 15
+ },
+ "end": {
+ "line": 615,
+ "column": 26
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24021,
+ 24024
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 16
+ },
+ "end": {
+ "line": 616,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 24025,
+ 24031
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 20
+ },
+ "end": {
+ "line": 616,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 24021,
+ 24031
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 16
+ },
+ "end": {
+ "line": 616,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "Paging",
+ "range": [
+ 24038,
+ 24044
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 33
+ },
+ "end": {
+ "line": 616,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 24045,
+ 24049
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 40
+ },
+ "end": {
+ "line": 616,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 24034,
+ 24050
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 29
+ },
+ "end": {
+ "line": 616,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 24021,
+ 24050
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 16
+ },
+ "end": {
+ "line": 616,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 24021,
+ 24051
+ ],
+ "loc": {
+ "start": {
+ "line": 616,
+ "column": 16
+ },
+ "end": {
+ "line": 616,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24068,
+ 24071
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 16
+ },
+ "end": {
+ "line": 617,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 24072,
+ 24078
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 20
+ },
+ "end": {
+ "line": 617,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 24068,
+ 24078
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 16
+ },
+ "end": {
+ "line": 617,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 24079,
+ 24083
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 27
+ },
+ "end": {
+ "line": 617,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 24068,
+ 24083
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 16
+ },
+ "end": {
+ "line": 617,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 24068,
+ 24085
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 16
+ },
+ "end": {
+ "line": 617,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 24068,
+ 24086
+ ],
+ "loc": {
+ "start": {
+ "line": 617,
+ "column": 16
+ },
+ "end": {
+ "line": 617,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 24003,
+ 24100
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 27
+ },
+ "end": {
+ "line": 618,
+ "column": 13
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24122,
+ 24125
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 15
+ },
+ "end": {
+ "line": 619,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "paging",
+ "range": [
+ 24126,
+ 24132
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 19
+ },
+ "end": {
+ "line": 619,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 24122,
+ 24132
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 15
+ },
+ "end": {
+ "line": 619,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "reset",
+ "range": [
+ 24133,
+ 24138
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 26
+ },
+ "end": {
+ "line": 619,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 24122,
+ 24138
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 15
+ },
+ "end": {
+ "line": 619,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 24122,
+ 24140
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 15
+ },
+ "end": {
+ "line": 619,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 24122,
+ 24141
+ ],
+ "loc": {
+ "start": {
+ "line": 619,
+ "column": 15
+ },
+ "end": {
+ "line": 619,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 24105,
+ 24155
+ ],
+ "loc": {
+ "start": {
+ "line": 618,
+ "column": 18
+ },
+ "end": {
+ "line": 620,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 23988,
+ 24155
+ ],
+ "loc": {
+ "start": {
+ "line": 615,
+ "column": 12
+ },
+ "end": {
+ "line": 620,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "range": [
+ 23974,
+ 24165
+ ],
+ "loc": {
+ "start": {
+ "line": 614,
+ "column": 23
+ },
+ "end": {
+ "line": 621,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 23959,
+ 24165
+ ],
+ "loc": {
+ "start": {
+ "line": 614,
+ "column": 8
+ },
+ "end": {
+ "line": 621,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24177,
+ 24181
+ ],
+ "loc": {
+ "start": {
+ "line": 622,
+ "column": 11
+ },
+ "end": {
+ "line": 622,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "btnReset",
+ "range": [
+ 24182,
+ 24190
+ ],
+ "loc": {
+ "start": {
+ "line": 622,
+ "column": 16
+ },
+ "end": {
+ "line": 622,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 24177,
+ 24190
+ ],
+ "loc": {
+ "start": {
+ "line": 622,
+ "column": 11
+ },
+ "end": {
+ "line": 622,
+ "column": 24
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24205,
+ 24208
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 12
+ },
+ "end": {
+ "line": 623,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearButton",
+ "range": [
+ 24209,
+ 24220
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 16
+ },
+ "end": {
+ "line": 623,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 24205,
+ 24220
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 12
+ },
+ "end": {
+ "line": 623,
+ "column": 27
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "ClearButton",
+ "range": [
+ 24227,
+ 24238
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 34
+ },
+ "end": {
+ "line": 623,
+ "column": 45
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 24239,
+ 24243
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 46
+ },
+ "end": {
+ "line": 623,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 24223,
+ 24244
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 30
+ },
+ "end": {
+ "line": 623,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 24205,
+ 24244
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 12
+ },
+ "end": {
+ "line": 623,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 24205,
+ 24245
+ ],
+ "loc": {
+ "start": {
+ "line": 623,
+ "column": 12
+ },
+ "end": {
+ "line": 623,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24258,
+ 24261
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 12
+ },
+ "end": {
+ "line": 624,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearButton",
+ "range": [
+ 24262,
+ 24273
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 16
+ },
+ "end": {
+ "line": 624,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 24258,
+ 24273
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 12
+ },
+ "end": {
+ "line": 624,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "init",
+ "range": [
+ 24274,
+ 24278
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 28
+ },
+ "end": {
+ "line": 624,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 24258,
+ 24278
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 12
+ },
+ "end": {
+ "line": 624,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 24258,
+ 24280
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 12
+ },
+ "end": {
+ "line": 624,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 24258,
+ 24281
+ ],
+ "loc": {
+ "start": {
+ "line": 624,
+ "column": 12
+ },
+ "end": {
+ "line": 624,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 24191,
+ 24291
+ ],
+ "loc": {
+ "start": {
+ "line": 622,
+ "column": 25
+ },
+ "end": {
+ "line": 625,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 24174,
+ 24291
+ ],
+ "loc": {
+ "start": {
+ "line": 622,
+ "column": 8
+ },
+ "end": {
+ "line": 625,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24304,
+ 24308
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 11
+ },
+ "end": {
+ "line": 627,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasColWidths",
+ "range": [
+ 24309,
+ 24321
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 16
+ },
+ "end": {
+ "line": 627,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 24304,
+ 24321
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 11
+ },
+ "end": {
+ "line": 627,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24326,
+ 24330
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 33
+ },
+ "end": {
+ "line": 627,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 24331,
+ 24341
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 38
+ },
+ "end": {
+ "line": 627,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 24326,
+ 24341
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 33
+ },
+ "end": {
+ "line": 627,
+ "column": 48
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 24325,
+ 24341
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 32
+ },
+ "end": {
+ "line": 627,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 24304,
+ 24341
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 11
+ },
+ "end": {
+ "line": 627,
+ "column": 48
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24356,
+ 24360
+ ],
+ "loc": {
+ "start": {
+ "line": 628,
+ "column": 12
+ },
+ "end": {
+ "line": 628,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "setColWidths",
+ "range": [
+ 24361,
+ 24373
+ ],
+ "loc": {
+ "start": {
+ "line": 628,
+ "column": 17
+ },
+ "end": {
+ "line": 628,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 24356,
+ 24373
+ ],
+ "loc": {
+ "start": {
+ "line": 628,
+ "column": 12
+ },
+ "end": {
+ "line": 628,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 24356,
+ 24375
+ ],
+ "loc": {
+ "start": {
+ "line": 628,
+ "column": 12
+ },
+ "end": {
+ "line": 628,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 24356,
+ 24376
+ ],
+ "loc": {
+ "start": {
+ "line": 628,
+ "column": 12
+ },
+ "end": {
+ "line": 628,
+ "column": 32
+ }
+ }
+ }
+ ],
+ "range": [
+ 24342,
+ 24386
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 49
+ },
+ "end": {
+ "line": 629,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 24301,
+ 24386
+ ],
+ "loc": {
+ "start": {
+ "line": 627,
+ "column": 8
+ },
+ "end": {
+ "line": 629,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 24398,
+ 24402
+ ],
+ "loc": {
+ "start": {
+ "line": 630,
+ "column": 11
+ },
+ "end": {
+ "line": 630,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "alternateRows",
+ "range": [
+ 24403,
+ 24416
+ ],
+ "loc": {
+ "start": {
+ "line": 630,
+ "column": 16
+ },
+ "end": {
+ "line": 630,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 24398,
+ 24416
+ ],
+ "loc": {
+ "start": {
+ "line": 630,
+ "column": 11
+ },
+ "end": {
+ "line": 630,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24431,
+ 24434
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 12
+ },
+ "end": {
+ "line": 631,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "alternateRows",
+ "range": [
+ 24435,
+ 24448
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 16
+ },
+ "end": {
+ "line": 631,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 24431,
+ 24448
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 12
+ },
+ "end": {
+ "line": 631,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "NewExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "AlternateRows",
+ "range": [
+ 24455,
+ 24468
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 36
+ },
+ "end": {
+ "line": 631,
+ "column": 49
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 24469,
+ 24473
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 50
+ },
+ "end": {
+ "line": 631,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 24451,
+ 24474
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 32
+ },
+ "end": {
+ "line": 631,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 24431,
+ 24474
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 12
+ },
+ "end": {
+ "line": 631,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 24431,
+ 24475
+ ],
+ "loc": {
+ "start": {
+ "line": 631,
+ "column": 12
+ },
+ "end": {
+ "line": 631,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Mod",
+ "range": [
+ 24488,
+ 24491
+ ],
+ "loc": {
+ "start": {
+ "line": 632,
+ "column": 12
+ },
+ "end": {
+ "line": 632,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "alternateRows",
+ "range": [
+ 24492,
+ 24505
+ ],
+ "loc": {
+ "start": {
+ "line": 632,
+ "column": 16
+ },
+ "end": {
+ "line": 632,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 24488,
+ 24505
],
"loc": {
"start": {
@@ -58241,31 +56867,31 @@
},
"end": {
"line": 632,
- "column": 15
+ "column": 29
}
}
},
"property": {
"type": "Identifier",
- "name": "store",
+ "name": "init",
"range": [
- 25895,
- 25900
+ 24506,
+ 24510
],
"loc": {
"start": {
"line": 632,
- "column": 16
+ "column": 30
},
"end": {
"line": 632,
- "column": 21
+ "column": 34
}
}
},
"range": [
- 25891,
- 25900
+ 24488,
+ 24510
],
"loc": {
"start": {
@@ -58274,67 +56900,14 @@
},
"end": {
"line": 632,
- "column": 21
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Store",
- "range": [
- 25907,
- 25912
- ],
- "loc": {
- "start": {
- "line": 632,
- "column": 28
- },
- "end": {
- "line": 632,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 25913,
- 25917
- ],
- "loc": {
- "start": {
- "line": 632,
- "column": 34
- },
- "end": {
- "line": 632,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 25903,
- 25918
- ],
- "loc": {
- "start": {
- "line": 632,
- "column": 24
- },
- "end": {
- "line": 632,
- "column": 39
+ "column": 34
}
}
},
+ "arguments": [],
"range": [
- 25891,
- 25918
+ 24488,
+ 24512
],
"loc": {
"start": {
@@ -58343,13 +56916,13 @@
},
"end": {
"line": 632,
- "column": 39
+ "column": 36
}
}
},
"range": [
- 25891,
- 25919
+ 24488,
+ 24513
],
"loc": {
"start": {
@@ -58358,19 +56931,19 @@
},
"end": {
"line": 632,
- "column": 40
+ "column": 37
}
}
}
],
"range": [
- 25877,
- 25929
+ 24417,
+ 24523
],
"loc": {
"start": {
- "line": 631,
- "column": 33
+ "line": 630,
+ "column": 30
},
"end": {
"line": 633,
@@ -58380,8 +56953,8 @@
},
"alternate": null,
"range": [
- 25791,
- 25929
+ 24395,
+ 24523
],
"loc": {
"start": {
@@ -58402,23882 +56975,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 25942,
- 25946
+ 24535,
+ 24539
],
"loc": {
"start": {
- "line": 635,
+ "line": 634,
"column": 11
},
"end": {
- "line": 635,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 25947,
- 25957
- ],
- "loc": {
- "start": {
- "line": 635,
- "column": 16
- },
- "end": {
- "line": 635,
- "column": 26
- }
- }
- },
- "range": [
- 25942,
- 25957
- ],
- "loc": {
- "start": {
- "line": 635,
- "column": 11
- },
- "end": {
- "line": 635,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 25972,
- 25975
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 12
- },
- "end": {
- "line": 636,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 25976,
- 25986
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 16
- },
- "end": {
- "line": 636,
- "column": 26
- }
- }
- },
- "range": [
- 25972,
- 25986
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 12
- },
- "end": {
- "line": 636,
- "column": 26
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "GridLayout",
- "range": [
- 25993,
- 26003
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 33
- },
- "end": {
- "line": 636,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 26004,
- 26008
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 44
- },
- "end": {
- "line": 636,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 25989,
- 26009
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 29
- },
- "end": {
- "line": 636,
- "column": 49
- }
- }
- },
- "range": [
- 25972,
- 26009
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 12
- },
- "end": {
- "line": 636,
- "column": 49
- }
- }
- },
- "range": [
- 25972,
- 26010
- ],
- "loc": {
- "start": {
- "line": 636,
- "column": 12
- },
- "end": {
- "line": 636,
- "column": 50
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26023,
- 26026
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 12
- },
- "end": {
- "line": 637,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 26027,
- 26037
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 16
- },
- "end": {
- "line": 637,
- "column": 26
- }
- }
- },
- "range": [
- 26023,
- 26037
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 12
- },
- "end": {
- "line": 637,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 26038,
- 26042
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 27
- },
- "end": {
- "line": 637,
- "column": 31
- }
- }
- },
- "range": [
- 26023,
- 26042
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 12
- },
- "end": {
- "line": 637,
- "column": 31
- }
- }
- },
- "arguments": [],
- "range": [
- 26023,
- 26044
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 12
- },
- "end": {
- "line": 637,
- "column": 33
- }
- }
- },
- "range": [
- 26023,
- 26045
- ],
- "loc": {
- "start": {
- "line": 637,
- "column": 12
- },
- "end": {
- "line": 637,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 25958,
- 26055
- ],
- "loc": {
- "start": {
- "line": 635,
- "column": 27
- },
- "end": {
- "line": 638,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 25939,
- 26055
- ],
- "loc": {
- "start": {
- "line": 635,
- "column": 8
- },
- "end": {
- "line": 638,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26068,
- 26072
- ],
- "loc": {
- "start": {
- "line": 640,
- "column": 11
- },
- "end": {
- "line": 640,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 26073,
- 26079
- ],
- "loc": {
- "start": {
- "line": 640,
- "column": 16
- },
- "end": {
- "line": 640,
- "column": 22
- }
- }
- },
- "range": [
- 26068,
- 26079
- ],
- "loc": {
- "start": {
- "line": 640,
- "column": 11
- },
- "end": {
- "line": 640,
- "column": 22
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26098,
- 26101
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 16
- },
- "end": {
- "line": 641,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 26102,
- 26108
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 20
- },
- "end": {
- "line": 641,
- "column": 26
- }
- }
- },
- "range": [
- 26098,
- 26108
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 16
- },
- "end": {
- "line": 641,
- "column": 26
- }
- }
- },
- "prefix": true,
- "range": [
- 26097,
- 26108
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 15
- },
- "end": {
- "line": 641,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26127,
- 26130
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 16
- },
- "end": {
- "line": 642,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 26131,
- 26137
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 20
- },
- "end": {
- "line": 642,
- "column": 26
- }
- }
- },
- "range": [
- 26127,
- 26137
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 16
- },
- "end": {
- "line": 642,
- "column": 26
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Loader",
- "range": [
- 26144,
- 26150
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 33
- },
- "end": {
- "line": 642,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 26151,
- 26155
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 40
- },
- "end": {
- "line": 642,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 26140,
- 26156
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 29
- },
- "end": {
- "line": 642,
- "column": 45
- }
- }
- },
- "range": [
- 26127,
- 26156
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 16
- },
- "end": {
- "line": 642,
- "column": 45
- }
- }
- },
- "range": [
- 26127,
- 26157
- ],
- "loc": {
- "start": {
- "line": 642,
- "column": 16
- },
- "end": {
- "line": 642,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 26109,
- 26171
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 27
- },
- "end": {
- "line": 643,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 26094,
- 26171
- ],
- "loc": {
- "start": {
- "line": 641,
- "column": 12
- },
- "end": {
- "line": 643,
- "column": 13
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26184,
- 26187
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 12
- },
- "end": {
- "line": 644,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 26188,
- 26194
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 16
- },
- "end": {
- "line": 644,
- "column": 22
- }
- }
- },
- "range": [
- 26184,
- 26194
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 12
- },
- "end": {
- "line": 644,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 26195,
- 26199
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 23
- },
- "end": {
- "line": 644,
- "column": 27
- }
- }
- },
- "range": [
- 26184,
- 26199
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 12
- },
- "end": {
- "line": 644,
- "column": 27
- }
- }
- },
- "arguments": [],
- "range": [
- 26184,
- 26201
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 12
- },
- "end": {
- "line": 644,
- "column": 29
- }
- }
- },
- "range": [
- 26184,
- 26202
- ],
- "loc": {
- "start": {
- "line": 644,
- "column": 12
- },
- "end": {
- "line": 644,
- "column": 30
- }
- }
- }
- ],
- "range": [
- 26080,
- 26212
- ],
- "loc": {
- "start": {
- "line": 640,
- "column": 23
- },
- "end": {
- "line": 645,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 26065,
- 26212
- ],
- "loc": {
- "start": {
- "line": 640,
- "column": 8
- },
- "end": {
- "line": 645,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26225,
- 26229
- ],
- "loc": {
- "start": {
- "line": 647,
- "column": 11
- },
- "end": {
- "line": 647,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeywords",
- "range": [
- 26230,
- 26247
- ],
- "loc": {
- "start": {
- "line": 647,
- "column": 16
- },
- "end": {
- "line": 647,
- "column": 33
- }
- }
- },
- "range": [
- 26225,
- 26247
- ],
- "loc": {
- "start": {
- "line": 647,
- "column": 11
- },
- "end": {
- "line": 647,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26262,
- 26265
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 12
- },
- "end": {
- "line": 648,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeyword",
- "range": [
- 26266,
- 26282
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 16
- },
- "end": {
- "line": 648,
- "column": 32
- }
- }
- },
- "range": [
- 26262,
- 26282
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 12
- },
- "end": {
- "line": 648,
- "column": 32
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "HighlightKeyword",
- "range": [
- 26289,
- 26305
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 39
- },
- "end": {
- "line": 648,
- "column": 55
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 26306,
- 26310
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 56
- },
- "end": {
- "line": 648,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 26285,
- 26311
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 35
- },
- "end": {
- "line": 648,
- "column": 61
- }
- }
- },
- "range": [
- 26262,
- 26311
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 12
- },
- "end": {
- "line": 648,
- "column": 61
- }
- }
- },
- "range": [
- 26262,
- 26312
- ],
- "loc": {
- "start": {
- "line": 648,
- "column": 12
- },
- "end": {
- "line": 648,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 26248,
- 26322
- ],
- "loc": {
- "start": {
- "line": 647,
- "column": 34
- },
- "end": {
- "line": 649,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 26222,
- 26322
- ],
- "loc": {
- "start": {
- "line": 647,
- "column": 8
- },
- "end": {
- "line": 649,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26335,
- 26339
- ],
- "loc": {
- "start": {
- "line": 651,
- "column": 11
- },
- "end": {
- "line": 651,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 26340,
- 26352
- ],
- "loc": {
- "start": {
- "line": 651,
- "column": 16
- },
- "end": {
- "line": 651,
- "column": 28
- }
- }
- },
- "range": [
- 26335,
- 26352
- ],
- "loc": {
- "start": {
- "line": 651,
- "column": 11
- },
- "end": {
- "line": 651,
- "column": 28
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26371,
- 26374
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 16
- },
- "end": {
- "line": 652,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 26375,
- 26386
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 20
- },
- "end": {
- "line": 652,
- "column": 31
- }
- }
- },
- "range": [
- 26371,
- 26386
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 16
- },
- "end": {
- "line": 652,
- "column": 31
- }
- }
- },
- "prefix": true,
- "range": [
- 26370,
- 26386
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 15
- },
- "end": {
- "line": 652,
- "column": 31
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26405,
- 26408
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 16
- },
- "end": {
- "line": 653,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 26409,
- 26420
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 20
- },
- "end": {
- "line": 653,
- "column": 31
- }
- }
- },
- "range": [
- 26405,
- 26420
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 16
- },
- "end": {
- "line": 653,
- "column": 31
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "PopupFilter",
- "range": [
- 26427,
- 26438
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 38
- },
- "end": {
- "line": 653,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 26439,
- 26443
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 50
- },
- "end": {
- "line": 653,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 26423,
- 26444
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 34
- },
- "end": {
- "line": 653,
- "column": 55
- }
- }
- },
- "range": [
- 26405,
- 26444
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 16
- },
- "end": {
- "line": 653,
- "column": 55
- }
- }
- },
- "range": [
- 26405,
- 26445
- ],
- "loc": {
- "start": {
- "line": 653,
- "column": 16
- },
- "end": {
- "line": 653,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 26387,
- 26459
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 32
- },
- "end": {
- "line": 654,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 26367,
- 26459
- ],
- "loc": {
- "start": {
- "line": 652,
- "column": 12
- },
- "end": {
- "line": 654,
- "column": 13
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 26472,
- 26475
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 12
- },
- "end": {
- "line": 655,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 26476,
- 26487
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 16
- },
- "end": {
- "line": 655,
- "column": 27
- }
- }
- },
- "range": [
- 26472,
- 26487
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 12
- },
- "end": {
- "line": 655,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 26488,
- 26492
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 28
- },
- "end": {
- "line": 655,
- "column": 32
- }
- }
- },
- "range": [
- 26472,
- 26492
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 12
- },
- "end": {
- "line": 655,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 26472,
- 26494
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 12
- },
- "end": {
- "line": 655,
- "column": 34
- }
- }
- },
- "range": [
- 26472,
- 26495
- ],
- "loc": {
- "start": {
- "line": 655,
- "column": 12
- },
- "end": {
- "line": 655,
- "column": 35
- }
- }
- }
- ],
- "range": [
- 26353,
- 26505
- ],
- "loc": {
- "start": {
- "line": 651,
- "column": 29
- },
- "end": {
- "line": 656,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 26332,
- 26505
- ],
- "loc": {
- "start": {
- "line": 651,
- "column": 8
- },
- "end": {
- "line": 656,
- "column": 9
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "filters grid is not generated",
- "range": [
- 26515,
- 26546
- ],
- "loc": {
- "start": {
- "line": 658,
- "column": 8
- },
- "end": {
- "line": 658,
- "column": 39
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26559,
- 26563
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 12
- },
- "end": {
- "line": 659,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltGrid",
- "range": [
- 26564,
- 26571
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 17
- },
- "end": {
- "line": 659,
- "column": 24
- }
- }
- },
- "range": [
- 26559,
- 26571
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 12
- },
- "end": {
- "line": 659,
- "column": 24
- }
- }
- },
- "prefix": true,
- "range": [
- 26558,
- 26571
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 11
- },
- "end": {
- "line": 659,
- "column": 24
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26586,
- 26590
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 12
- },
- "end": {
- "line": 660,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 26591,
- 26597
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 17
- },
- "end": {
- "line": 660,
- "column": 23
- }
- }
- },
- "range": [
- 26586,
- 26597
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 12
- },
- "end": {
- "line": 660,
- "column": 23
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26600,
- 26604
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 26
- },
- "end": {
- "line": 660,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 26605,
- 26611
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 31
- },
- "end": {
- "line": 660,
- "column": 37
- }
- }
- },
- "range": [
- 26600,
- 26611
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 26
- },
- "end": {
- "line": 660,
- "column": 37
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 26612,
- 26613
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 38
- },
- "end": {
- "line": 660,
- "column": 39
- }
- }
- },
- "range": [
- 26600,
- 26613
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 26
- },
- "end": {
- "line": 660,
- "column": 39
- }
- }
- },
- "range": [
- 26586,
- 26613
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 12
- },
- "end": {
- "line": 660,
- "column": 39
- }
- }
- },
- "range": [
- 26586,
- 26614
- ],
- "loc": {
- "start": {
- "line": 660,
- "column": 12
- },
- "end": {
- "line": 660,
- "column": 40
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26630,
- 26634
- ],
- "loc": {
- "start": {
- "line": 661,
- "column": 15
- },
- "end": {
- "line": 661,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 26635,
- 26645
- ],
- "loc": {
- "start": {
- "line": 661,
- "column": 20
- },
- "end": {
- "line": 661,
- "column": 30
- }
- }
- },
- "range": [
- 26630,
- 26645
- ],
- "loc": {
- "start": {
- "line": 661,
- "column": 15
- },
- "end": {
- "line": 661,
- "column": 30
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26664,
- 26668
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 16
- },
- "end": {
- "line": 662,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 26669,
- 26675
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 21
- },
- "end": {
- "line": 662,
- "column": 27
- }
- }
- },
- "range": [
- 26664,
- 26675
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 16
- },
- "end": {
- "line": 662,
- "column": 27
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 26678,
- 26679
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 30
- },
- "end": {
- "line": 662,
- "column": 31
- }
- }
- },
- "range": [
- 26664,
- 26679
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 16
- },
- "end": {
- "line": 662,
- "column": 31
- }
- }
- },
- "range": [
- 26664,
- 26680
- ],
- "loc": {
- "start": {
- "line": 662,
- "column": 16
- },
- "end": {
- "line": 662,
- "column": 32
- }
- }
- }
- ],
- "range": [
- 26646,
- 26694
- ],
- "loc": {
- "start": {
- "line": 661,
- "column": 31
- },
- "end": {
- "line": 663,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 26627,
- 26694
- ],
- "loc": {
- "start": {
- "line": 661,
- "column": 12
- },
- "end": {
- "line": 663,
- "column": 13
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26707,
- 26711
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 12
- },
- "end": {
- "line": 664,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 26712,
- 26728
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 17
- },
- "end": {
- "line": 664,
- "column": 33
- }
- }
- },
- "range": [
- 26707,
- 26728
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 12
- },
- "end": {
- "line": 664,
- "column": 33
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26731,
- 26735
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 36
- },
- "end": {
- "line": 664,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getRowsNb",
- "range": [
- 26736,
- 26745
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 41
- },
- "end": {
- "line": 664,
- "column": 50
- }
- }
- },
- "range": [
- 26731,
- 26745
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 36
- },
- "end": {
- "line": 664,
- "column": 50
- }
- }
- },
- "arguments": [],
- "range": [
- 26731,
- 26747
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 36
- },
- "end": {
- "line": 664,
- "column": 52
- }
- }
- },
- "range": [
- 26707,
- 26747
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 12
- },
- "end": {
- "line": 664,
- "column": 52
- }
- }
- },
- "range": [
- 26707,
- 26748
- ],
- "loc": {
- "start": {
- "line": 664,
- "column": 12
- },
- "end": {
- "line": 664,
- "column": 53
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26761,
- 26765
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 12
- },
- "end": {
- "line": 665,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 26766,
- 26779
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 17
- },
- "end": {
- "line": 665,
- "column": 30
- }
- }
- },
- "range": [
- 26761,
- 26779
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 12
- },
- "end": {
- "line": 665,
- "column": 30
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26782,
- 26786
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 33
- },
- "end": {
- "line": 665,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 26787,
- 26803
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 38
- },
- "end": {
- "line": 665,
- "column": 54
- }
- }
- },
- "range": [
- 26782,
- 26803
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 33
- },
- "end": {
- "line": 665,
- "column": 54
- }
- }
- },
- "range": [
- 26761,
- 26803
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 12
- },
- "end": {
- "line": 665,
- "column": 54
- }
- }
- },
- "range": [
- 26761,
- 26804
- ],
- "loc": {
- "start": {
- "line": 665,
- "column": 12
- },
- "end": {
- "line": 665,
- "column": 55
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26817,
- 26821
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 12
- },
- "end": {
- "line": 666,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbRows",
- "range": [
- 26822,
- 26828
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 17
- },
- "end": {
- "line": 666,
- "column": 23
- }
- }
- },
- "range": [
- 26817,
- 26828
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 12
- },
- "end": {
- "line": 666,
- "column": 23
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26831,
- 26835
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 26
- },
- "end": {
- "line": 666,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 26836,
- 26852
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 31
- },
- "end": {
- "line": 666,
- "column": 47
- }
- }
- },
- "range": [
- 26831,
- 26852
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 26
- },
- "end": {
- "line": 666,
- "column": 47
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26855,
- 26859
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 50
- },
- "end": {
- "line": 666,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 26860,
- 26866
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 55
- },
- "end": {
- "line": 666,
- "column": 61
- }
- }
- },
- "range": [
- 26855,
- 26866
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 50
- },
- "end": {
- "line": 666,
- "column": 61
- }
- }
- },
- "range": [
- 26831,
- 26866
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 26
- },
- "end": {
- "line": 666,
- "column": 61
- }
- }
- },
- "range": [
- 26817,
- 26866
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 12
- },
- "end": {
- "line": 666,
- "column": 61
- }
- }
- },
- "range": [
- 26817,
- 26867
- ],
- "loc": {
- "start": {
- "line": 666,
- "column": 12
- },
- "end": {
- "line": 666,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 26572,
- 26877
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 25
- },
- "end": {
- "line": 667,
- "column": 9
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26900,
- 26904
- ],
- "loc": {
- "start": {
- "line": 668,
- "column": 15
- },
- "end": {
- "line": 668,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 26905,
- 26916
- ],
- "loc": {
- "start": {
- "line": 668,
- "column": 20
- },
- "end": {
- "line": 668,
- "column": 31
- }
- }
- },
- "range": [
- 26900,
- 26916
- ],
- "loc": {
- "start": {
- "line": 668,
- "column": 15
- },
- "end": {
- "line": 668,
- "column": 31
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 26939,
- 26945
- ],
- "loc": {
- "start": {
- "line": 669,
- "column": 20
- },
- "end": {
- "line": 669,
- "column": 26
- }
- }
- },
- "init": null,
- "range": [
- 26939,
- 26945
- ],
- "loc": {
- "start": {
- "line": 669,
- "column": 20
- },
- "end": {
- "line": 669,
- "column": 26
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 26935,
- 26946
- ],
- "loc": {
- "start": {
- "line": 669,
- "column": 16
- },
- "end": {
- "line": 669,
- "column": 27
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 26967,
- 26971
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 20
- },
- "end": {
- "line": 670,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 26972,
- 26982
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 25
- },
- "end": {
- "line": 670,
- "column": 35
- }
- }
- },
- "range": [
- 26967,
- 26982
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 20
- },
- "end": {
- "line": 670,
- "column": 35
- }
- }
- },
- "prefix": true,
- "range": [
- 26966,
- 26982
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 19
- },
- "end": {
- "line": 670,
- "column": 35
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "thead",
- "range": [
- 27009,
- 27014
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 24
- },
- "end": {
- "line": 671,
- "column": 29
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 27017,
- 27020
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 32
- },
- "end": {
- "line": 671,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tag",
- "range": [
- 27021,
- 27024
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 36
- },
- "end": {
- "line": 671,
- "column": 39
- }
- }
- },
- "range": [
- 27017,
- 27024
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 32
- },
- "end": {
- "line": 671,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27025,
- 27029
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 40
- },
- "end": {
- "line": 671,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 27030,
- 27033
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 45
- },
- "end": {
- "line": 671,
- "column": 48
- }
- }
- },
- "range": [
- 27025,
- 27033
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 40
- },
- "end": {
- "line": 671,
- "column": 48
- }
- }
- },
- {
- "type": "Literal",
- "value": "thead",
- "raw": "'thead'",
- "range": [
- 27035,
- 27042
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 50
- },
- "end": {
- "line": 671,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 27017,
- 27043
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 32
- },
- "end": {
- "line": 671,
- "column": 58
- }
- }
- },
- "range": [
- 27009,
- 27043
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 24
- },
- "end": {
- "line": 671,
- "column": 58
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 27005,
- 27044
- ],
- "loc": {
- "start": {
- "line": 671,
- "column": 20
- },
- "end": {
- "line": 671,
- "column": 59
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "thead",
- "range": [
- 27068,
- 27073
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 23
- },
- "end": {
- "line": 672,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 27074,
- 27080
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 29
- },
- "end": {
- "line": 672,
- "column": 35
- }
- }
- },
- "range": [
- 27068,
- 27080
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 23
- },
- "end": {
- "line": 672,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 27083,
- 27084
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 38
- },
- "end": {
- "line": 672,
- "column": 39
- }
- }
- },
- "range": [
- 27068,
- 27084
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 23
- },
- "end": {
- "line": 672,
- "column": 39
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 27111,
- 27117
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 24
- },
- "end": {
- "line": 673,
- "column": 30
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "thead",
- "range": [
- 27120,
- 27125
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 33
- },
- "end": {
- "line": 673,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 27126,
- 27127
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 39
- },
- "end": {
- "line": 673,
- "column": 40
- }
- }
- },
- "range": [
- 27120,
- 27128
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 33
- },
- "end": {
- "line": 673,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "insertRow",
- "range": [
- 27129,
- 27138
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 42
- },
- "end": {
- "line": 673,
- "column": 51
- }
- }
- },
- "range": [
- 27120,
- 27138
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 33
- },
- "end": {
- "line": 673,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27139,
- 27143
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 52
- },
- "end": {
- "line": 673,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 27144,
- 27159
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 57
- },
- "end": {
- "line": 673,
- "column": 72
- }
- }
- },
- "range": [
- 27139,
- 27159
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 52
- },
- "end": {
- "line": 673,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 27120,
- 27160
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 33
- },
- "end": {
- "line": 673,
- "column": 73
- }
- }
- },
- "range": [
- 27111,
- 27160
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 24
- },
- "end": {
- "line": 673,
- "column": 73
- }
- }
- },
- "range": [
- 27111,
- 27161
- ],
- "loc": {
- "start": {
- "line": 673,
- "column": 24
- },
- "end": {
- "line": 673,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 27085,
- 27183
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 40
- },
- "end": {
- "line": 674,
- "column": 21
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 27215,
- 27221
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 24
- },
- "end": {
- "line": 675,
- "column": 30
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27224,
- 27228
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 33
- },
- "end": {
- "line": 675,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 27229,
- 27232
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 38
- },
- "end": {
- "line": 675,
- "column": 41
- }
- }
- },
- "range": [
- 27224,
- 27232
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 33
- },
- "end": {
- "line": 675,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "insertRow",
- "range": [
- 27233,
- 27242
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 42
- },
- "end": {
- "line": 675,
- "column": 51
- }
- }
- },
- "range": [
- 27224,
- 27242
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 33
- },
- "end": {
- "line": 675,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27243,
- 27247
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 52
- },
- "end": {
- "line": 675,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 27248,
- 27263
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 57
- },
- "end": {
- "line": 675,
- "column": 72
- }
- }
- },
- "range": [
- 27243,
- 27263
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 52
- },
- "end": {
- "line": 675,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 27224,
- 27264
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 33
- },
- "end": {
- "line": 675,
- "column": 73
- }
- }
- },
- "range": [
- 27215,
- 27264
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 24
- },
- "end": {
- "line": 675,
- "column": 73
- }
- }
- },
- "range": [
- 27215,
- 27265
- ],
- "loc": {
- "start": {
- "line": 675,
- "column": 24
- },
- "end": {
- "line": 675,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 27189,
- 27287
- ],
- "loc": {
- "start": {
- "line": 674,
- "column": 27
- },
- "end": {
- "line": 676,
- "column": 21
- }
- }
- },
- "range": [
- 27065,
- 27287
- ],
- "loc": {
- "start": {
- "line": 672,
- "column": 20
- },
- "end": {
- "line": 676,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27312,
- 27316
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 23
- },
- "end": {
- "line": 678,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 27317,
- 27327
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 28
- },
- "end": {
- "line": 678,
- "column": 38
- }
- }
- },
- "range": [
- 27312,
- 27327
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 23
- },
- "end": {
- "line": 678,
- "column": 38
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 27330,
- 27331
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 41
- },
- "end": {
- "line": 678,
- "column": 42
- }
- }
- },
- "range": [
- 27312,
- 27331
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 23
- },
- "end": {
- "line": 678,
- "column": 42
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "<=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27359,
- 27363
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 24
- },
- "end": {
- "line": 679,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 27364,
- 27379
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 29
- },
- "end": {
- "line": 679,
- "column": 44
- }
- }
- },
- "range": [
- 27359,
- 27379
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 24
- },
- "end": {
- "line": 679,
- "column": 44
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27383,
- 27387
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 48
- },
- "end": {
- "line": 679,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 27388,
- 27398
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 53
- },
- "end": {
- "line": 679,
- "column": 63
- }
- }
- },
- "range": [
- 27383,
- 27398
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 48
- },
- "end": {
- "line": 679,
- "column": 63
- }
- }
- },
- "range": [
- 27359,
- 27398
- ],
- "loc": {
- "start": {
- "line": 679,
- "column": 24
- },
- "end": {
- "line": 679,
- "column": 63
- }
- }
- },
- "range": [
- 27312,
- 27398
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 23
- },
- "end": {
- "line": 679,
- "column": 63
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27427,
- 27431
- ],
- "loc": {
- "start": {
- "line": 680,
- "column": 25
- },
- "end": {
- "line": 680,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 27432,
- 27444
- ],
- "loc": {
- "start": {
- "line": 680,
- "column": 30
- },
- "end": {
- "line": 680,
- "column": 42
- }
- }
- },
- "range": [
- 27427,
- 27444
- ],
- "loc": {
- "start": {
- "line": 680,
- "column": 25
- },
- "end": {
- "line": 680,
- "column": 42
- }
- }
- },
- "prefix": true,
- "range": [
- 27426,
- 27444
- ],
- "loc": {
- "start": {
- "line": 680,
- "column": 24
- },
- "end": {
- "line": 680,
- "column": 42
- }
- }
- },
- "range": [
- 27312,
- 27444
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 23
- },
- "end": {
- "line": 680,
- "column": 42
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27471,
- 27475
- ],
- "loc": {
- "start": {
- "line": 681,
- "column": 24
- },
- "end": {
- "line": 681,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 27476,
- 27486
- ],
- "loc": {
- "start": {
- "line": 681,
- "column": 29
- },
- "end": {
- "line": 681,
- "column": 39
- }
- }
- },
- "range": [
- 27471,
- 27486
- ],
- "loc": {
- "start": {
- "line": 681,
- "column": 24
- },
- "end": {
- "line": 681,
- "column": 39
- }
- }
- },
- "prefix": false,
- "range": [
- 27471,
- 27488
- ],
- "loc": {
- "start": {
- "line": 681,
- "column": 24
- },
- "end": {
- "line": 681,
- "column": 41
- }
- }
- },
- "range": [
- 27471,
- 27489
- ],
- "loc": {
- "start": {
- "line": 681,
- "column": 24
- },
- "end": {
- "line": 681,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 27445,
- 27511
- ],
- "loc": {
- "start": {
- "line": 680,
- "column": 43
- },
- "end": {
- "line": 682,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 27309,
- 27511
- ],
- "loc": {
- "start": {
- "line": 678,
- "column": 20
- },
- "end": {
- "line": 682,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27535,
- 27539
- ],
- "loc": {
- "start": {
- "line": 683,
- "column": 23
- },
- "end": {
- "line": 683,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 27540,
- 27552
- ],
- "loc": {
- "start": {
- "line": 683,
- "column": 28
- },
- "end": {
- "line": 683,
- "column": 40
- }
- }
- },
- "range": [
- 27535,
- 27552
- ],
- "loc": {
- "start": {
- "line": 683,
- "column": 23
- },
- "end": {
- "line": 683,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27579,
- 27583
- ],
- "loc": {
- "start": {
- "line": 684,
- "column": 24
- },
- "end": {
- "line": 684,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 27584,
- 27594
- ],
- "loc": {
- "start": {
- "line": 684,
- "column": 29
- },
- "end": {
- "line": 684,
- "column": 39
- }
- }
- },
- "range": [
- 27579,
- 27594
- ],
- "loc": {
- "start": {
- "line": 684,
- "column": 24
- },
- "end": {
- "line": 684,
- "column": 39
- }
- }
- },
- "prefix": false,
- "range": [
- 27579,
- 27596
- ],
- "loc": {
- "start": {
- "line": 684,
- "column": 24
- },
- "end": {
- "line": 684,
- "column": 41
- }
- }
- },
- "range": [
- 27579,
- 27597
- ],
- "loc": {
- "start": {
- "line": 684,
- "column": 24
- },
- "end": {
- "line": 684,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 27553,
- 27619
- ],
- "loc": {
- "start": {
- "line": 683,
- "column": 41
- },
- "end": {
- "line": 685,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 27532,
- 27619
- ],
- "loc": {
- "start": {
- "line": 683,
- "column": 20
- },
- "end": {
- "line": 685,
- "column": 21
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 27641,
- 27647
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 20
- },
- "end": {
- "line": 687,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 27648,
- 27657
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 27
- },
- "end": {
- "line": 687,
- "column": 36
- }
- }
- },
- "range": [
- 27641,
- 27657
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 20
- },
- "end": {
- "line": 687,
- "column": 36
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27660,
- 27664
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 39
- },
- "end": {
- "line": 687,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsRowCssClass",
- "range": [
- 27665,
- 27680
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 44
- },
- "end": {
- "line": 687,
- "column": 59
- }
- }
- },
- "range": [
- 27660,
- 27680
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 39
- },
- "end": {
- "line": 687,
- "column": 59
- }
- }
- },
- "range": [
- 27641,
- 27680
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 20
- },
- "end": {
- "line": 687,
- "column": 59
- }
- }
- },
- "range": [
- 27641,
- 27681
- ],
- "loc": {
- "start": {
- "line": 687,
- "column": 20
- },
- "end": {
- "line": 687,
- "column": 60
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27706,
- 27710
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 23
- },
- "end": {
- "line": 689,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isExternalFlt",
- "range": [
- 27711,
- 27724
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 28
- },
- "end": {
- "line": 689,
- "column": 41
- }
- }
- },
- "range": [
- 27706,
- 27724
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 23
- },
- "end": {
- "line": 689,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27728,
- 27732
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 45
- },
- "end": {
- "line": 689,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 27733,
- 27745
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 50
- },
- "end": {
- "line": 689,
- "column": 62
- }
- }
- },
- "range": [
- 27728,
- 27745
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 45
- },
- "end": {
- "line": 689,
- "column": 62
- }
- }
- },
- "range": [
- 27706,
- 27745
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 23
- },
- "end": {
- "line": 689,
- "column": 62
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 27772,
- 27778
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 24
- },
- "end": {
- "line": 690,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "style",
- "range": [
- 27779,
- 27784
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 31
- },
- "end": {
- "line": 690,
- "column": 36
- }
- }
- },
- "range": [
- 27772,
- 27784
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 24
- },
- "end": {
- "line": 690,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "display",
- "range": [
- 27785,
- 27792
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 37
- },
- "end": {
- "line": 690,
- "column": 44
- }
- }
- },
- "range": [
- 27772,
- 27792
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 24
- },
- "end": {
- "line": 690,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "none",
- "raw": "'none'",
- "range": [
- 27795,
- 27801
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 47
- },
- "end": {
- "line": 690,
- "column": 53
- }
- }
- },
- "range": [
- 27772,
- 27801
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 24
- },
- "end": {
- "line": 690,
- "column": 53
- }
- }
- },
- "range": [
- 27772,
- 27802
- ],
- "loc": {
- "start": {
- "line": 690,
- "column": 24
- },
- "end": {
- "line": 690,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 27746,
- 27824
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 63
- },
- "end": {
- "line": 691,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 27703,
- 27824
- ],
- "loc": {
- "start": {
- "line": 689,
- "column": 20
- },
- "end": {
- "line": 691,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 26983,
- 27842
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 36
- },
- "end": {
- "line": 692,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 26963,
- 27842
- ],
- "loc": {
- "start": {
- "line": 670,
- "column": 16
- },
- "end": {
- "line": 692,
- "column": 17
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27860,
- 27864
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 16
- },
- "end": {
- "line": 694,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 27865,
- 27881
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 21
- },
- "end": {
- "line": 694,
- "column": 37
- }
- }
- },
- "range": [
- 27860,
- 27881
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 16
- },
- "end": {
- "line": 694,
- "column": 37
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27884,
- 27888
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 40
- },
- "end": {
- "line": 694,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getRowsNb",
- "range": [
- 27889,
- 27898
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 45
- },
- "end": {
- "line": 694,
- "column": 54
- }
- }
- },
- "range": [
- 27884,
- 27898
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 40
- },
- "end": {
- "line": 694,
- "column": 54
- }
- }
- },
- "arguments": [],
- "range": [
- 27884,
- 27900
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 40
- },
- "end": {
- "line": 694,
- "column": 56
- }
- }
- },
- "range": [
- 27860,
- 27900
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 16
- },
- "end": {
- "line": 694,
- "column": 56
- }
- }
- },
- "range": [
- 27860,
- 27901
- ],
- "loc": {
- "start": {
- "line": 694,
- "column": 16
- },
- "end": {
- "line": 694,
- "column": 57
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27918,
- 27922
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 16
- },
- "end": {
- "line": 695,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 27923,
- 27936
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 21
- },
- "end": {
- "line": 695,
- "column": 34
- }
- }
- },
- "range": [
- 27918,
- 27936
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 16
- },
- "end": {
- "line": 695,
- "column": 34
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27939,
- 27943
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 37
- },
- "end": {
- "line": 695,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 27944,
- 27960
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 42
- },
- "end": {
- "line": 695,
- "column": 58
- }
- }
- },
- "range": [
- 27939,
- 27960
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 37
- },
- "end": {
- "line": 695,
- "column": 58
- }
- }
- },
- "range": [
- 27918,
- 27960
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 16
- },
- "end": {
- "line": 695,
- "column": 58
- }
- }
- },
- "range": [
- 27918,
- 27961
- ],
- "loc": {
- "start": {
- "line": 695,
- "column": 16
- },
- "end": {
- "line": 695,
- "column": 59
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27978,
- 27982
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 16
- },
- "end": {
- "line": 696,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbRows",
- "range": [
- 27983,
- 27989
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 21
- },
- "end": {
- "line": 696,
- "column": 27
- }
- }
- },
- "range": [
- 27978,
- 27989
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 16
- },
- "end": {
- "line": 696,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 27992,
- 27996
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 30
- },
- "end": {
- "line": 696,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 27997,
- 28000
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 35
- },
- "end": {
- "line": 696,
- "column": 38
- }
- }
- },
- "range": [
- 27992,
- 28000
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 30
- },
- "end": {
- "line": 696,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 28001,
- 28005
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 39
- },
- "end": {
- "line": 696,
- "column": 43
- }
- }
- },
- "range": [
- 27992,
- 28005
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 30
- },
- "end": {
- "line": 696,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 28006,
- 28012
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 44
- },
- "end": {
- "line": 696,
- "column": 50
- }
- }
- },
- "range": [
- 27992,
- 28012
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 30
- },
- "end": {
- "line": 696,
- "column": 50
- }
- }
- },
- "range": [
- 27978,
- 28012
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 16
- },
- "end": {
- "line": 696,
- "column": 50
- }
- }
- },
- "range": [
- 27978,
- 28013
- ],
- "loc": {
- "start": {
- "line": 696,
- "column": 16
- },
- "end": {
- "line": 696,
- "column": 51
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28039,
- 28040
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 24
- },
- "end": {
- "line": 698,
- "column": 25
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 28041,
- 28042
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 26
- },
- "end": {
- "line": 698,
- "column": 27
- }
- }
- },
- "range": [
- 28039,
- 28042
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 24
- },
- "end": {
- "line": 698,
- "column": 27
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 28035,
- 28042
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 20
- },
- "end": {
- "line": 698,
- "column": 27
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28044,
- 28045
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 29
- },
- "end": {
- "line": 698,
- "column": 30
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "n",
- "range": [
- 28046,
- 28047
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 31
- },
- "end": {
- "line": 698,
- "column": 32
- }
- }
- },
- "range": [
- 28044,
- 28047
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 29
- },
- "end": {
- "line": 698,
- "column": 32
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28049,
- 28050
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 34
- },
- "end": {
- "line": 698,
- "column": 35
- }
- }
- },
- "prefix": false,
- "range": [
- 28049,
- 28052
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 34
- },
- "end": {
- "line": 698,
- "column": 37
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28104,
- 28108
- ],
- "loc": {
- "start": {
- "line": 700,
- "column": 23
- },
- "end": {
- "line": 700,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 28109,
- 28121
- ],
- "loc": {
- "start": {
- "line": 700,
- "column": 28
- },
- "end": {
- "line": 700,
- "column": 40
- }
- }
- },
- "range": [
- 28104,
- 28121
- ],
- "loc": {
- "start": {
- "line": 700,
- "column": 23
- },
- "end": {
- "line": 700,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 28148,
- 28151
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 24
- },
- "end": {
- "line": 701,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 28152,
- 28163
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 28
- },
- "end": {
- "line": 701,
- "column": 39
- }
- }
- },
- "range": [
- 28148,
- 28163
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 24
- },
- "end": {
- "line": 701,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "build",
- "range": [
- 28164,
- 28169
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 40
- },
- "end": {
- "line": 701,
- "column": 45
- }
- }
- },
- "range": [
- 28148,
- 28169
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 24
- },
- "end": {
- "line": 701,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28170,
- 28171
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 46
- },
- "end": {
- "line": 701,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 28148,
- 28172
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 24
- },
- "end": {
- "line": 701,
- "column": 48
- }
- }
- },
- "range": [
- 28148,
- 28173
- ],
- "loc": {
- "start": {
- "line": 701,
- "column": 24
- },
- "end": {
- "line": 701,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 28122,
- 28195
- ],
- "loc": {
- "start": {
- "line": 700,
- "column": 41
- },
- "end": {
- "line": 702,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 28101,
- 28195
- ],
- "loc": {
- "start": {
- "line": 700,
- "column": 20
- },
- "end": {
- "line": 702,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " this loop adds filters",
- "range": [
- 28054,
- 28079
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 39
- },
- "end": {
- "line": 698,
- "column": 64
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 28221,
- 28228
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 24
- },
- "end": {
- "line": 704,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 28231,
- 28234
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 34
- },
- "end": {
- "line": 704,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 28235,
- 28241
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 38
- },
- "end": {
- "line": 704,
- "column": 44
- }
- }
- },
- "range": [
- 28231,
- 28241
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 34
- },
- "end": {
- "line": 704,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28242,
- 28246
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 45
- },
- "end": {
- "line": 704,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltCellTag",
- "range": [
- 28247,
- 28257
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 50
- },
- "end": {
- "line": 704,
- "column": 60
- }
- }
- },
- "range": [
- 28242,
- 28257
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 45
- },
- "end": {
- "line": 704,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 28231,
- 28258
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 34
- },
- "end": {
- "line": 704,
- "column": 61
- }
- }
- },
- "range": [
- 28221,
- 28258
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 24
- },
- "end": {
- "line": 704,
- "column": 61
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 28284,
- 28287
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 24
- },
- "end": {
- "line": 705,
- "column": 27
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28290,
- 28294
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 30
- },
- "end": {
- "line": 705,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterType",
- "range": [
- 28295,
- 28308
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 35
- },
- "end": {
- "line": 705,
- "column": 48
- }
- }
- },
- "range": [
- 28290,
- 28308
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 30
- },
- "end": {
- "line": 705,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28309,
- 28310
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 49
- },
- "end": {
- "line": 705,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 28290,
- 28311
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 30
- },
- "end": {
- "line": 705,
- "column": 51
- }
- }
- },
- "range": [
- 28284,
- 28311
- ],
- "loc": {
- "start": {
- "line": 705,
- "column": 24
- },
- "end": {
- "line": 705,
- "column": 51
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 28337,
- 28353
- ],
- "loc": {
- "start": {
- "line": 706,
- "column": 24
- },
- "end": {
- "line": 706,
- "column": 40
- }
- }
- },
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28384,
- 28388
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 28
- },
- "end": {
- "line": 707,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isExternalFlt",
- "range": [
- 28389,
- 28402
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 33
- },
- "end": {
- "line": 707,
- "column": 46
- }
- }
- },
- "range": [
- 28384,
- 28402
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 28
- },
- "end": {
- "line": 707,
- "column": 46
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28406,
- 28410
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 50
- },
- "end": {
- "line": 707,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 28411,
- 28428
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 55
- },
- "end": {
- "line": 707,
- "column": 72
- }
- }
- },
- "range": [
- 28406,
- 28428
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 50
- },
- "end": {
- "line": 707,
- "column": 72
- }
- }
- },
- "range": [
- 28384,
- 28428
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 28
- },
- "end": {
- "line": 707,
- "column": 72
- }
- }
- },
- "consequent": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28459,
- 28463
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 28
- },
- "end": {
- "line": 708,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 28464,
- 28481
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 33
- },
- "end": {
- "line": 708,
- "column": 50
- }
- }
- },
- "range": [
- 28459,
- 28481
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 28
- },
- "end": {
- "line": 708,
- "column": 50
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28482,
- 28483
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 51
- },
- "end": {
- "line": 708,
- "column": 52
- }
- }
- },
- "range": [
- 28459,
- 28484
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 28
- },
- "end": {
- "line": 708,
- "column": 53
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 28487,
- 28491
- ],
- "loc": {
- "start": {
- "line": 708,
- "column": 56
- },
- "end": {
- "line": 708,
- "column": 60
- }
- }
- },
- "range": [
- 28384,
- 28491
- ],
- "loc": {
- "start": {
- "line": 707,
- "column": 28
- },
- "end": {
- "line": 708,
- "column": 60
- }
- }
- },
- "range": [
- 28337,
- 28491
- ],
- "loc": {
- "start": {
- "line": 706,
- "column": 24
- },
- "end": {
- "line": 708,
- "column": 60
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 28217,
- 28492
- ],
- "loc": {
- "start": {
- "line": 704,
- "column": 20
- },
- "end": {
- "line": 708,
- "column": 61
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28517,
- 28521
- ],
- "loc": {
- "start": {
- "line": 710,
- "column": 23
- },
- "end": {
- "line": 710,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "singleSearchFlt",
- "range": [
- 28522,
- 28537
- ],
- "loc": {
- "start": {
- "line": 710,
- "column": 28
- },
- "end": {
- "line": 710,
- "column": 43
- }
- }
- },
- "range": [
- 28517,
- 28537
- ],
- "loc": {
- "start": {
- "line": 710,
- "column": 23
- },
- "end": {
- "line": 710,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 28564,
- 28571
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 24
- },
- "end": {
- "line": 711,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "colSpan",
- "range": [
- 28572,
- 28579
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 32
- },
- "end": {
- "line": 711,
- "column": 39
- }
- }
- },
- "range": [
- 28564,
- 28579
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 24
- },
- "end": {
- "line": 711,
- "column": 39
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28582,
- 28586
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 42
- },
- "end": {
- "line": 711,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbCells",
- "range": [
- 28587,
- 28594
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 47
- },
- "end": {
- "line": 711,
- "column": 54
- }
- }
- },
- "range": [
- 28582,
- 28594
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 42
- },
- "end": {
- "line": 711,
- "column": 54
- }
- }
- },
- "range": [
- 28564,
- 28594
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 24
- },
- "end": {
- "line": 711,
- "column": 54
- }
- }
- },
- "range": [
- 28564,
- 28595
- ],
- "loc": {
- "start": {
- "line": 711,
- "column": 24
- },
- "end": {
- "line": 711,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 28538,
- 28617
- ],
- "loc": {
- "start": {
- "line": 710,
- "column": 44
- },
- "end": {
- "line": 712,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 28514,
- 28617
- ],
- "loc": {
- "start": {
- "line": 710,
- "column": 20
- },
- "end": {
- "line": 712,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28642,
- 28646
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 24
- },
- "end": {
- "line": 713,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 28647,
- 28657
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 29
- },
- "end": {
- "line": 713,
- "column": 39
- }
- }
- },
- "range": [
- 28642,
- 28657
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 24
- },
- "end": {
- "line": 713,
- "column": 39
- }
- }
- },
- "prefix": true,
- "range": [
- 28641,
- 28657
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 23
- },
- "end": {
- "line": 713,
- "column": 39
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltrow",
- "range": [
- 28684,
- 28690
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 24
- },
- "end": {
- "line": 714,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 28691,
- 28702
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 31
- },
- "end": {
- "line": 714,
- "column": 42
- }
- }
- },
- "range": [
- 28684,
- 28702
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 24
- },
- "end": {
- "line": 714,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 28703,
- 28710
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 43
- },
- "end": {
- "line": 714,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 28684,
- 28711
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 24
- },
- "end": {
- "line": 714,
- "column": 51
- }
- }
- },
- "range": [
- 28684,
- 28712
- ],
- "loc": {
- "start": {
- "line": 714,
- "column": 24
- },
- "end": {
- "line": 714,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 28658,
- 28734
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 40
- },
- "end": {
- "line": 715,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 28638,
- 28734
- ],
- "loc": {
- "start": {
- "line": 713,
- "column": 20
- },
- "end": {
- "line": 715,
- "column": 21
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "inpclass",
- "range": [
- 28755,
- 28763
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 20
- },
- "end": {
- "line": 716,
- "column": 28
- }
- }
- },
- "right": {
- "type": "ConditionalExpression",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "==",
- "left": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 28767,
- 28768
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 32
- },
- "end": {
- "line": 716,
- "column": 33
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "Identifier",
- "name": "n",
- "range": [
- 28770,
- 28771
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 35
- },
- "end": {
- "line": 716,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 28772,
- 28773
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 37
- },
- "end": {
- "line": 716,
- "column": 38
- }
- }
- },
- "range": [
- 28770,
- 28773
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 35
- },
- "end": {
- "line": 716,
- "column": 38
- }
- }
- },
- "range": [
- 28767,
- 28773
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 32
- },
- "end": {
- "line": 716,
- "column": 38
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28777,
- 28781
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 42
- },
- "end": {
- "line": 716,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "displayBtn",
- "range": [
- 28782,
- 28792
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 47
- },
- "end": {
- "line": 716,
- "column": 57
- }
- }
- },
- "range": [
- 28777,
- 28792
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 42
- },
- "end": {
- "line": 716,
- "column": 57
- }
- }
- },
- "range": [
- 28767,
- 28792
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 32
- },
- "end": {
- "line": 716,
- "column": 57
- }
- }
- },
- "consequent": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28820,
- 28824
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 24
- },
- "end": {
- "line": 717,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltSmallCssClass",
- "range": [
- 28825,
- 28841
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 29
- },
- "end": {
- "line": 717,
- "column": 45
- }
- }
- },
- "range": [
- 28820,
- 28841
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 24
- },
- "end": {
- "line": 717,
- "column": 45
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28844,
- 28848
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 48
- },
- "end": {
- "line": 717,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltCssClass",
- "range": [
- 28849,
- 28860
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 53
- },
- "end": {
- "line": 717,
- "column": 64
- }
- }
- },
- "range": [
- 28844,
- 28860
- ],
- "loc": {
- "start": {
- "line": 717,
- "column": 48
- },
- "end": {
- "line": 717,
- "column": 64
- }
- }
- },
- "range": [
- 28766,
- 28860
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 31
- },
- "end": {
- "line": 717,
- "column": 64
- }
- }
- },
- "range": [
- 28755,
- 28860
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 20
- },
- "end": {
- "line": 717,
- "column": 64
- }
- }
- },
- "range": [
- 28755,
- 28861
- ],
- "loc": {
- "start": {
- "line": 716,
- "column": 20
- },
- "end": {
- "line": 717,
- "column": 65
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "only 1 input for single search",
- "range": [
- 28883,
- 28915
- ],
- "loc": {
- "start": {
- "line": 719,
- "column": 20
- },
- "end": {
- "line": 719,
- "column": 52
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28939,
- 28943
- ],
- "loc": {
- "start": {
- "line": 720,
- "column": 23
- },
- "end": {
- "line": 720,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "singleSearchFlt",
- "range": [
- 28944,
- 28959
- ],
- "loc": {
- "start": {
- "line": 720,
- "column": 28
- },
- "end": {
- "line": 720,
- "column": 43
- }
- }
- },
- "range": [
- 28939,
- 28959
- ],
- "loc": {
- "start": {
- "line": 720,
- "column": 23
- },
- "end": {
- "line": 720,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 28986,
- 28989
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 24
- },
- "end": {
- "line": 721,
- "column": 27
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 28992,
- 28996
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 30
- },
- "end": {
- "line": 721,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeInp",
- "range": [
- 28997,
- 29007
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 35
- },
- "end": {
- "line": 721,
- "column": 45
- }
- }
- },
- "range": [
- 28992,
- 29007
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 30
- },
- "end": {
- "line": 721,
- "column": 45
- }
- }
- },
- "range": [
- 28986,
- 29007
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 24
- },
- "end": {
- "line": 721,
- "column": 45
- }
- }
- },
- "range": [
- 28986,
- 29008
- ],
- "loc": {
- "start": {
- "line": 721,
- "column": 24
- },
- "end": {
- "line": 721,
- "column": 46
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "inpclass",
- "range": [
- 29033,
- 29041
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 24
- },
- "end": {
- "line": 722,
- "column": 32
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29044,
- 29048
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 35
- },
- "end": {
- "line": 722,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "singleFltCssClass",
- "range": [
- 29049,
- 29066
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 40
- },
- "end": {
- "line": 722,
- "column": 57
- }
- }
- },
- "range": [
- 29044,
- 29066
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 35
- },
- "end": {
- "line": 722,
- "column": 57
- }
- }
- },
- "range": [
- 29033,
- 29066
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 24
- },
- "end": {
- "line": 722,
- "column": 57
- }
- }
- },
- "range": [
- 29033,
- 29067
- ],
- "loc": {
- "start": {
- "line": 722,
- "column": 24
- },
- "end": {
- "line": 722,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 28960,
- 29089
- ],
- "loc": {
- "start": {
- "line": 720,
- "column": 44
- },
- "end": {
- "line": 723,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 28936,
- 29089
- ],
- "loc": {
- "start": {
- "line": 720,
- "column": 20
- },
- "end": {
- "line": 723,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "only 1 input for single search",
- "range": [
- 28883,
- 28915
- ],
- "loc": {
- "start": {
- "line": 719,
- "column": 20
- },
- "end": {
- "line": 719,
- "column": 52
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "drop-down filters",
- "range": [
- 29111,
- 29130
- ],
- "loc": {
- "start": {
- "line": 725,
- "column": 20
- },
- "end": {
- "line": 725,
- "column": 39
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 29154,
- 29157
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 23
- },
- "end": {
- "line": 726,
- "column": 26
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29160,
- 29164
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 29
- },
- "end": {
- "line": 726,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 29165,
- 29175
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 34
- },
- "end": {
- "line": 726,
- "column": 44
- }
- }
- },
- "range": [
- 29160,
- 29175
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 29
- },
- "end": {
- "line": 726,
- "column": 44
- }
- }
- },
- "range": [
- 29154,
- 29175
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 23
- },
- "end": {
- "line": 726,
- "column": 44
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 29179,
- 29182
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 48
- },
- "end": {
- "line": 726,
- "column": 51
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29185,
- 29189
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 54
- },
- "end": {
- "line": 726,
- "column": 58
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 29190,
- 29202
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 59
- },
- "end": {
- "line": 726,
- "column": 71
- }
- }
- },
- "range": [
- 29185,
- 29202
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 54
- },
- "end": {
- "line": 726,
- "column": 71
- }
- }
- },
- "range": [
- 29179,
- 29202
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 48
- },
- "end": {
- "line": 726,
- "column": 71
- }
- }
- },
- "range": [
- 29154,
- 29202
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 23
- },
- "end": {
- "line": 726,
- "column": 71
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 29233,
- 29236
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 28
- },
- "end": {
- "line": 727,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 29237,
- 29245
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 32
- },
- "end": {
- "line": 727,
- "column": 40
- }
- }
- },
- "range": [
- 29233,
- 29245
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 28
- },
- "end": {
- "line": 727,
- "column": 40
- }
- }
- },
- "prefix": true,
- "range": [
- 29232,
- 29245
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 27
- },
- "end": {
- "line": 727,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 29276,
- 29279
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 28
- },
- "end": {
- "line": 728,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 29280,
- 29288
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 32
- },
- "end": {
- "line": 728,
- "column": 40
- }
- }
- },
- "range": [
- 29276,
- 29288
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 28
- },
- "end": {
- "line": 728,
- "column": 40
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Dropdown",
- "range": [
- 29295,
- 29303
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 47
- },
- "end": {
- "line": 728,
- "column": 55
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 29304,
- 29308
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 56
- },
- "end": {
- "line": 728,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 29291,
- 29309
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 43
- },
- "end": {
- "line": 728,
- "column": 61
- }
- }
- },
- "range": [
- 29276,
- 29309
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 28
- },
- "end": {
- "line": 728,
- "column": 61
- }
- }
- },
- "range": [
- 29276,
- 29310
- ],
- "loc": {
- "start": {
- "line": 728,
- "column": 28
- },
- "end": {
- "line": 728,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 29246,
- 29336
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 41
- },
- "end": {
- "line": 729,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 29229,
- 29336
- ],
- "loc": {
- "start": {
- "line": 727,
- "column": 24
- },
- "end": {
- "line": 729,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 29365,
- 29373
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 28
- },
- "end": {
- "line": 730,
- "column": 36
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 29376,
- 29379
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 39
- },
- "end": {
- "line": 730,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 29380,
- 29388
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 43
- },
- "end": {
- "line": 730,
- "column": 51
- }
- }
- },
- "range": [
- 29376,
- 29388
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 39
- },
- "end": {
- "line": 730,
- "column": 51
- }
- }
- },
- "range": [
- 29365,
- 29388
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 28
- },
- "end": {
- "line": 730,
- "column": 51
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 29361,
- 29389
- ],
- "loc": {
- "start": {
- "line": 730,
- "column": 24
- },
- "end": {
- "line": 730,
- "column": 52
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 29419,
- 29422
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 28
- },
- "end": {
- "line": 732,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 29425,
- 29428
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 34
- },
- "end": {
- "line": 732,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 29429,
- 29435
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 38
- },
- "end": {
- "line": 732,
- "column": 44
- }
- }
- },
- "range": [
- 29425,
- 29435
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 34
- },
- "end": {
- "line": 732,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29436,
- 29440
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 45
- },
- "end": {
- "line": 732,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 29441,
- 29451
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 50
- },
- "end": {
- "line": 732,
- "column": 60
- }
- }
- },
- "range": [
- 29436,
- 29451
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 45
- },
- "end": {
- "line": 732,
- "column": 60
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 29486,
- 29490
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 33
- },
- "end": {
- "line": 733,
- "column": 37
- }
- }
- },
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29492,
- 29496
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 39
- },
- "end": {
- "line": 733,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxFlt",
- "range": [
- 29497,
- 29504
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 44
- },
- "end": {
- "line": 733,
- "column": 51
- }
- }
- },
- "range": [
- 29492,
- 29504
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 39
- },
- "end": {
- "line": 733,
- "column": 51
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 29505,
- 29506
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 52
- },
- "end": {
- "line": 733,
- "column": 53
- }
- }
- },
- "range": [
- 29492,
- 29506
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 39
- },
- "end": {
- "line": 733,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 29507,
- 29510
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 54
- },
- "end": {
- "line": 733,
- "column": 57
- }
- }
- },
- "range": [
- 29492,
- 29510
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 39
- },
- "end": {
- "line": 733,
- "column": 57
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29511,
- 29515
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 58
- },
- "end": {
- "line": 733,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 29516,
- 29518
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 63
- },
- "end": {
- "line": 733,
- "column": 65
- }
- }
- },
- "range": [
- 29511,
- 29518
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 58
- },
- "end": {
- "line": 733,
- "column": 65
- }
- }
- },
- "range": [
- 29492,
- 29518
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 39
- },
- "end": {
- "line": 733,
- "column": 65
- }
- }
- }
- ],
- "range": [
- 29485,
- 29519
- ],
- "loc": {
- "start": {
- "line": 733,
- "column": 32
- },
- "end": {
- "line": 733,
- "column": 66
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "ct",
- "raw": "'ct'",
- "range": [
- 29554,
- 29558
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 33
- },
- "end": {
- "line": 734,
- "column": 37
- }
- }
- },
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 29560,
- 29561
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 39
- },
- "end": {
- "line": 734,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 29553,
- 29562
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 32
- },
- "end": {
- "line": 734,
- "column": 41
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "filled",
- "raw": "'filled'",
- "range": [
- 29565,
- 29573
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 44
- },
- "end": {
- "line": 734,
- "column": 52
- }
- }
- },
- {
- "type": "Literal",
- "value": "0",
- "raw": "'0'",
- "range": [
- 29575,
- 29578
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 54
- },
- "end": {
- "line": 734,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 29564,
- 29579
- ],
- "loc": {
- "start": {
- "line": 734,
- "column": 43
- },
- "end": {
- "line": 734,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 29425,
- 29609
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 34
- },
- "end": {
- "line": 735,
- "column": 29
- }
- }
- },
- "range": [
- 29419,
- 29609
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 28
- },
- "end": {
- "line": 735,
- "column": 29
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 29415,
- 29610
- ],
- "loc": {
- "start": {
- "line": 732,
- "column": 24
- },
- "end": {
- "line": 735,
- "column": 30
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 29639,
- 29642
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 27
- },
- "end": {
- "line": 737,
- "column": 30
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29645,
- 29649
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 33
- },
- "end": {
- "line": 737,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 29650,
- 29662
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 38
- },
- "end": {
- "line": 737,
- "column": 50
- }
- }
- },
- "range": [
- 29645,
- 29662
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 33
- },
- "end": {
- "line": 737,
- "column": 50
- }
- }
- },
- "range": [
- 29639,
- 29662
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 27
- },
- "end": {
- "line": 737,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 29693,
- 29696
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 28
- },
- "end": {
- "line": 738,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "multiple",
- "range": [
- 29697,
- 29705
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 32
- },
- "end": {
- "line": 738,
- "column": 40
- }
- }
- },
- "range": [
- 29693,
- 29705
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 28
- },
- "end": {
- "line": 738,
- "column": 40
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29708,
- 29712
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 43
- },
- "end": {
- "line": 738,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 29713,
- 29725
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 48
- },
- "end": {
- "line": 738,
- "column": 60
- }
- }
- },
- "range": [
- 29708,
- 29725
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 43
- },
- "end": {
- "line": 738,
- "column": 60
- }
- }
- },
- "range": [
- 29693,
- 29725
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 28
- },
- "end": {
- "line": 738,
- "column": 60
- }
- }
- },
- "range": [
- 29693,
- 29726
- ],
- "loc": {
- "start": {
- "line": 738,
- "column": 28
- },
- "end": {
- "line": 738,
- "column": 61
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 29755,
- 29758
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 28
- },
- "end": {
- "line": 739,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "title",
- "range": [
- 29759,
- 29764
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 32
- },
- "end": {
- "line": 739,
- "column": 37
- }
- }
- },
- "range": [
- 29755,
- 29764
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 28
- },
- "end": {
- "line": 739,
- "column": 37
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 29767,
- 29775
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 40
- },
- "end": {
- "line": 739,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "multipleSlcTooltip",
- "range": [
- 29776,
- 29794
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 49
- },
- "end": {
- "line": 739,
- "column": 67
- }
- }
- },
- "range": [
- 29767,
- 29794
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 40
- },
- "end": {
- "line": 739,
- "column": 67
- }
- }
- },
- "range": [
- 29755,
- 29794
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 28
- },
- "end": {
- "line": 739,
- "column": 67
- }
- }
- },
- "range": [
- 29755,
- 29795
- ],
- "loc": {
- "start": {
- "line": 739,
- "column": 28
- },
- "end": {
- "line": 739,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 29663,
- 29821
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 51
- },
- "end": {
- "line": 740,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 29636,
- 29821
- ],
- "loc": {
- "start": {
- "line": 737,
- "column": 24
- },
- "end": {
- "line": 740,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 29846,
- 29849
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 24
- },
- "end": {
- "line": 741,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 29850,
- 29859
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 28
- },
- "end": {
- "line": 741,
- "column": 37
- }
- }
- },
- "range": [
- 29846,
- 29859
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 24
- },
- "end": {
- "line": 741,
- "column": 37
- }
- }
- },
- "right": {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 29862,
- 29865
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 40
- },
- "end": {
- "line": 741,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "lower",
- "range": [
- 29866,
- 29871
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 44
- },
- "end": {
- "line": 741,
- "column": 49
- }
- }
- },
- "range": [
- 29862,
- 29871
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 40
- },
- "end": {
- "line": 741,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "col",
- "range": [
- 29872,
- 29875
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 50
- },
- "end": {
- "line": 741,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 29862,
- 29876
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 40
- },
- "end": {
- "line": 741,
- "column": 54
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29881,
- 29885
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 59
- },
- "end": {
- "line": 741,
- "column": 63
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 29886,
- 29896
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 64
- },
- "end": {
- "line": 741,
- "column": 74
- }
- }
- },
- "range": [
- 29881,
- 29896
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 59
- },
- "end": {
- "line": 741,
- "column": 74
- }
- }
- },
- "range": [
- 29862,
- 29896
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 40
- },
- "end": {
- "line": 741,
- "column": 74
- }
- }
- },
- "consequent": {
- "type": "Identifier",
- "name": "inpclass",
- "range": [
- 29927,
- 29935
- ],
- "loc": {
- "start": {
- "line": 742,
- "column": 28
- },
- "end": {
- "line": 742,
- "column": 36
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 29938,
- 29942
- ],
- "loc": {
- "start": {
- "line": 742,
- "column": 39
- },
- "end": {
- "line": 742,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltMultiCssClass",
- "range": [
- 29943,
- 29959
- ],
- "loc": {
- "start": {
- "line": 742,
- "column": 44
- },
- "end": {
- "line": 742,
- "column": 60
- }
- }
- },
- "range": [
- 29938,
- 29959
- ],
- "loc": {
- "start": {
- "line": 742,
- "column": 39
- },
- "end": {
- "line": 742,
- "column": 60
- }
- }
- },
- "range": [
- 29862,
- 29959
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 40
- },
- "end": {
- "line": 742,
- "column": 60
- }
- }
- },
- "range": [
- 29846,
- 29959
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 24
- },
- "end": {
- "line": 742,
- "column": 60
- }
- }
- },
- "range": [
- 29846,
- 29960
- ],
- "loc": {
- "start": {
- "line": 741,
- "column": 24
- },
- "end": {
- "line": 742,
- "column": 61
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired external element",
- "range": [
- 29986,
- 30034
- ],
- "loc": {
- "start": {
- "line": 744,
- "column": 24
- },
- "end": {
- "line": 744,
- "column": 72
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 30062,
- 30078
- ],
- "loc": {
- "start": {
- "line": 745,
- "column": 27
- },
- "end": {
- "line": 745,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 30109,
- 30112
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 30113,
- 30115
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 32
- },
- "end": {
- "line": 746,
- "column": 34
- }
- }
- },
- "range": [
- 30109,
- 30115
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 30116,
- 30132
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 35
- },
- "end": {
- "line": 746,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 30109,
- 30133
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 30134,
- 30145
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 53
- },
- "end": {
- "line": 746,
- "column": 64
- }
- }
- },
- "range": [
- 30109,
- 30145
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 64
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30146,
- 30149
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 65
- },
- "end": {
- "line": 746,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 30109,
- 30150
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 69
- }
- }
- },
- "range": [
- 30109,
- 30151
- ],
- "loc": {
- "start": {
- "line": 746,
- "column": 28
- },
- "end": {
- "line": 746,
- "column": 70
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30180,
- 30184
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 28
- },
- "end": {
- "line": 747,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltEls",
- "range": [
- 30185,
- 30199
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 33
- },
- "end": {
- "line": 747,
- "column": 47
- }
- }
- },
- "range": [
- 30180,
- 30199
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 28
- },
- "end": {
- "line": 747,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 30200,
- 30204
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 48
- },
- "end": {
- "line": 747,
- "column": 52
- }
- }
- },
- "range": [
- 30180,
- 30204
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 28
- },
- "end": {
- "line": 747,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30205,
- 30208
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 53
- },
- "end": {
- "line": 747,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 30180,
- 30209
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 28
- },
- "end": {
- "line": 747,
- "column": 57
- }
- }
- },
- "range": [
- 30180,
- 30210
- ],
- "loc": {
- "start": {
- "line": 747,
- "column": 28
- },
- "end": {
- "line": 747,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 30079,
- 30236
- ],
- "loc": {
- "start": {
- "line": 745,
- "column": 44
- },
- "end": {
- "line": 748,
- "column": 25
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 30272,
- 30279
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 28
- },
- "end": {
- "line": 749,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 30280,
- 30291
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 36
- },
- "end": {
- "line": 749,
- "column": 47
- }
- }
- },
- "range": [
- 30272,
- 30291
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 28
- },
- "end": {
- "line": 749,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30292,
- 30295
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 48
- },
- "end": {
- "line": 749,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 30272,
- 30296
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 28
- },
- "end": {
- "line": 749,
- "column": 52
- }
- }
- },
- "range": [
- 30272,
- 30297
- ],
- "loc": {
- "start": {
- "line": 749,
- "column": 28
- },
- "end": {
- "line": 749,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 30242,
- 30323
- ],
- "loc": {
- "start": {
- "line": 748,
- "column": 31
- },
- "end": {
- "line": 750,
- "column": 25
- }
- }
- },
- "range": [
- 30059,
- 30323
- ],
- "loc": {
- "start": {
- "line": 745,
- "column": 24
- },
- "end": {
- "line": 750,
- "column": 25
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired external element",
- "range": [
- 29986,
- 30034
- ],
- "loc": {
- "start": {
- "line": 744,
- "column": 24
- },
- "end": {
- "line": 744,
- "column": 72
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30349,
- 30353
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 24
- },
- "end": {
- "line": 752,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 30354,
- 30360
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 29
- },
- "end": {
- "line": 752,
- "column": 35
- }
- }
- },
- "range": [
- 30349,
- 30360
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 24
- },
- "end": {
- "line": 752,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 30361,
- 30365
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 36
- },
- "end": {
- "line": 752,
- "column": 40
- }
- }
- },
- "range": [
- 30349,
- 30365
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 24
- },
- "end": {
- "line": 752,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30366,
- 30370
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 41
- },
- "end": {
- "line": 752,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxFlt",
- "range": [
- 30371,
- 30378
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 46
- },
- "end": {
- "line": 752,
- "column": 53
- }
- }
- },
- "range": [
- 30366,
- 30378
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 41
- },
- "end": {
- "line": 752,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 30379,
- 30380
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 54
- },
- "end": {
- "line": 752,
- "column": 55
- }
- }
- },
- "range": [
- 30366,
- 30380
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 41
- },
- "end": {
- "line": 752,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 30381,
- 30384
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 56
- },
- "end": {
- "line": 752,
- "column": 59
- }
- }
- },
- "range": [
- 30366,
- 30384
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 41
- },
- "end": {
- "line": 752,
- "column": 59
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30385,
- 30389
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 60
- },
- "end": {
- "line": 752,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 30390,
- 30392
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 65
- },
- "end": {
- "line": 752,
- "column": 67
- }
- }
- },
- "range": [
- 30385,
- 30392
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 60
- },
- "end": {
- "line": 752,
- "column": 67
- }
- }
- },
- "range": [
- 30366,
- 30392
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 41
- },
- "end": {
- "line": 752,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 30349,
- 30393
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 24
- },
- "end": {
- "line": 752,
- "column": 68
- }
- }
- },
- "range": [
- 30349,
- 30394
- ],
- "loc": {
- "start": {
- "line": 752,
- "column": 24
- },
- "end": {
- "line": 752,
- "column": 69
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30424,
- 30428
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 28
- },
- "end": {
- "line": 754,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 30429,
- 30444
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 33
- },
- "end": {
- "line": 754,
- "column": 48
- }
- }
- },
- "range": [
- 30424,
- 30444
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 28
- },
- "end": {
- "line": 754,
- "column": 48
- }
- }
- },
- "prefix": true,
- "range": [
- 30423,
- 30444
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 27
- },
- "end": {
- "line": 754,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 30475,
- 30483
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 28
- },
- "end": {
- "line": 755,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 30484,
- 30490
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 37
- },
- "end": {
- "line": 755,
- "column": 43
- }
- }
- },
- "range": [
- 30475,
- 30490
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 28
- },
- "end": {
- "line": 755,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 30491,
- 30492
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 44
- },
- "end": {
- "line": 755,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 30475,
- 30493
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 28
- },
- "end": {
- "line": 755,
- "column": 46
- }
- }
- },
- "range": [
- 30475,
- 30494
- ],
- "loc": {
- "start": {
- "line": 755,
- "column": 28
- },
- "end": {
- "line": 755,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 30445,
- 30520
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 49
- },
- "end": {
- "line": 756,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 30420,
- 30520
- ],
- "loc": {
- "start": {
- "line": 754,
- "column": 24
- },
- "end": {
- "line": 756,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 30546,
- 30551
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 24
- },
- "end": {
- "line": 758,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 30552,
- 30555
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 30
- },
- "end": {
- "line": 758,
- "column": 33
- }
- }
- },
- "range": [
- 30546,
- 30555
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 24
- },
- "end": {
- "line": 758,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30556,
- 30559
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 34
- },
- "end": {
- "line": 758,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "keypress",
- "raw": "'keypress'",
- "range": [
- 30561,
- 30571
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 39
- },
- "end": {
- "line": 758,
- "column": 49
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30601,
- 30605
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 28
- },
- "end": {
- "line": 759,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 30606,
- 30609
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 33
- },
- "end": {
- "line": 759,
- "column": 36
- }
- }
- },
- "range": [
- 30601,
- 30609
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 28
- },
- "end": {
- "line": 759,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "detectKey",
- "range": [
- 30610,
- 30619
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 37
- },
- "end": {
- "line": 759,
- "column": 46
- }
- }
- },
- "range": [
- 30601,
- 30619
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 28
- },
- "end": {
- "line": 759,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 30620,
- 30624
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 47
- },
- "end": {
- "line": 759,
- "column": 51
- }
- }
- },
- "range": [
- 30601,
- 30624
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 28
- },
- "end": {
- "line": 759,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 30625,
- 30629
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 52
- },
- "end": {
- "line": 759,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 30601,
- 30630
- ],
- "loc": {
- "start": {
- "line": 759,
- "column": 28
- },
- "end": {
- "line": 759,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 30546,
- 30631
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 24
- },
- "end": {
- "line": 759,
- "column": 58
- }
- }
- },
- "range": [
- 30546,
- 30632
- ],
- "loc": {
- "start": {
- "line": 758,
- "column": 24
- },
- "end": {
- "line": 759,
- "column": 59
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 30657,
- 30662
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 24
- },
- "end": {
- "line": 760,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 30663,
- 30666
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 30
- },
- "end": {
- "line": 760,
- "column": 33
- }
- }
- },
- "range": [
- 30657,
- 30666
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 24
- },
- "end": {
- "line": 760,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30667,
- 30670
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 34
- },
- "end": {
- "line": 760,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "change",
- "raw": "'change'",
- "range": [
- 30672,
- 30680
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 39
- },
- "end": {
- "line": 760,
- "column": 47
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30710,
- 30714
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 28
- },
- "end": {
- "line": 761,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 30715,
- 30718
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 33
- },
- "end": {
- "line": 761,
- "column": 36
- }
- }
- },
- "range": [
- 30710,
- 30718
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 28
- },
- "end": {
- "line": 761,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onSlcChange",
- "range": [
- 30719,
- 30730
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 37
- },
- "end": {
- "line": 761,
- "column": 48
- }
- }
- },
- "range": [
- 30710,
- 30730
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 28
- },
- "end": {
- "line": 761,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 30731,
- 30735
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 49
- },
- "end": {
- "line": 761,
- "column": 53
- }
- }
- },
- "range": [
- 30710,
- 30735
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 28
- },
- "end": {
- "line": 761,
- "column": 53
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 30736,
- 30740
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 54
- },
- "end": {
- "line": 761,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 30710,
- 30741
- ],
- "loc": {
- "start": {
- "line": 761,
- "column": 28
- },
- "end": {
- "line": 761,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 30657,
- 30742
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 24
- },
- "end": {
- "line": 761,
- "column": 60
- }
- }
- },
- "range": [
- 30657,
- 30743
- ],
- "loc": {
- "start": {
- "line": 760,
- "column": 24
- },
- "end": {
- "line": 761,
- "column": 61
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 30768,
- 30773
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 24
- },
- "end": {
- "line": 762,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 30774,
- 30777
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 30
- },
- "end": {
- "line": 762,
- "column": 33
- }
- }
- },
- "range": [
- 30768,
- 30777
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 24
- },
- "end": {
- "line": 762,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 30778,
- 30781
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 34
- },
- "end": {
- "line": 762,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "focus",
- "raw": "'focus'",
- "range": [
- 30783,
- 30790
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 39
- },
- "end": {
- "line": 762,
- "column": 46
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30792,
- 30796
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 48
- },
- "end": {
- "line": 762,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 30797,
- 30800
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 53
- },
- "end": {
- "line": 762,
- "column": 56
- }
- }
- },
- "range": [
- 30792,
- 30800
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 48
- },
- "end": {
- "line": 762,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onSlcFocus",
- "range": [
- 30801,
- 30811
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 57
- },
- "end": {
- "line": 762,
- "column": 67
- }
- }
- },
- "range": [
- 30792,
- 30811
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 48
- },
- "end": {
- "line": 762,
- "column": 67
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 30812,
- 30816
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 68
- },
- "end": {
- "line": 762,
- "column": 72
- }
- }
- },
- "range": [
- 30792,
- 30816
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 48
- },
- "end": {
- "line": 762,
- "column": 72
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 30817,
- 30821
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 73
- },
- "end": {
- "line": 762,
- "column": 77
- }
- }
- }
- ],
- "range": [
- 30792,
- 30822
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 48
- },
- "end": {
- "line": 762,
- "column": 78
- }
- }
- }
- ],
- "range": [
- 30768,
- 30823
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 24
- },
- "end": {
- "line": 762,
- "column": 79
- }
- }
- },
- "range": [
- 30768,
- 30824
- ],
- "loc": {
- "start": {
- "line": 762,
- "column": 24
- },
- "end": {
- "line": 762,
- "column": 80
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "1st option is created here since dropdown.build isn't",
- "range": [
- 30850,
- 30905
- ],
- "loc": {
- "start": {
- "line": 764,
- "column": 24
- },
- "end": {
- "line": 764,
- "column": 79
- }
- }
- },
- {
- "type": "Line",
- "value": "invoked",
- "range": [
- 30930,
- 30939
- ],
- "loc": {
- "start": {
- "line": 765,
- "column": 24
- },
- "end": {
- "line": 765,
- "column": 33
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 30967,
- 30971
- ],
- "loc": {
- "start": {
- "line": 766,
- "column": 27
- },
- "end": {
- "line": 766,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 30972,
- 30987
- ],
- "loc": {
- "start": {
- "line": 766,
- "column": 32
- },
- "end": {
- "line": 766,
- "column": 47
- }
- }
- },
- "range": [
- 30967,
- 30987
- ],
- "loc": {
- "start": {
- "line": 766,
- "column": 27
- },
- "end": {
- "line": 766,
- "column": 47
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "opt0",
- "range": [
- 31022,
- 31026
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 32
- },
- "end": {
- "line": 767,
- "column": 36
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 31029,
- 31032
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 39
- },
- "end": {
- "line": 767,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createOpt",
- "range": [
- 31033,
- 31042
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 43
- },
- "end": {
- "line": 767,
- "column": 52
- }
- }
- },
- "range": [
- 31029,
- 31042
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 39
- },
- "end": {
- "line": 767,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 31043,
- 31047
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 53
- },
- "end": {
- "line": 767,
- "column": 57
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "displayAllText",
- "range": [
- 31048,
- 31062
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 58
- },
- "end": {
- "line": 767,
- "column": 72
- }
- }
- },
- "range": [
- 31043,
- 31062
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 53
- },
- "end": {
- "line": 767,
- "column": 72
- }
- }
- },
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 31064,
- 31066
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 74
- },
- "end": {
- "line": 767,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 31029,
- 31067
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 39
- },
- "end": {
- "line": 767,
- "column": 77
- }
- }
- },
- "range": [
- 31022,
- 31067
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 32
- },
- "end": {
- "line": 767,
- "column": 77
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 31018,
- 31068
- ],
- "loc": {
- "start": {
- "line": 767,
- "column": 28
- },
- "end": {
- "line": 767,
- "column": 78
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 31097,
- 31100
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 28
- },
- "end": {
- "line": 768,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 31101,
- 31112
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 32
- },
- "end": {
- "line": 768,
- "column": 43
- }
- }
- },
- "range": [
- 31097,
- 31112
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 28
- },
- "end": {
- "line": 768,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "opt0",
- "range": [
- 31113,
- 31117
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 44
- },
- "end": {
- "line": 768,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 31097,
- 31118
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 28
- },
- "end": {
- "line": 768,
- "column": 49
- }
- }
- },
- "range": [
- 31097,
- 31119
- ],
- "loc": {
- "start": {
- "line": 768,
- "column": 28
- },
- "end": {
- "line": 768,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 30988,
- 31145
- ],
- "loc": {
- "start": {
- "line": 766,
- "column": 48
- },
- "end": {
- "line": 769,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 30964,
- 31145
- ],
- "loc": {
- "start": {
- "line": 766,
- "column": 24
- },
- "end": {
- "line": 769,
- "column": 25
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "1st option is created here since dropdown.build isn't",
- "range": [
- 30850,
- 30905
- ],
- "loc": {
- "start": {
- "line": 764,
- "column": 24
- },
- "end": {
- "line": 764,
- "column": 79
- }
- }
- },
- {
- "type": "Line",
- "value": "invoked",
- "range": [
- 30930,
- 30939
- ],
- "loc": {
- "start": {
- "line": 765,
- "column": 24
- },
- "end": {
- "line": 765,
- "column": 33
- }
- }
- }
- ]
- }
- ],
- "range": [
- 29203,
- 31167
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 72
- },
- "end": {
- "line": 770,
- "column": 21
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " checklist",
- "range": [
- 31188,
- 31200
- ],
- "loc": {
- "start": {
- "line": 771,
- "column": 20
- },
- "end": {
- "line": 771,
- "column": 32
- }
- }
- }
- ]
- },
- "alternate": {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 31229,
- 31232
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 28
- },
- "end": {
- "line": 772,
- "column": 31
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 31235,
- 31239
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 34
- },
- "end": {
- "line": 772,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeCheckList",
- "range": [
- 31240,
- 31256
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 39
- },
- "end": {
- "line": 772,
- "column": 55
- }
- }
- },
- "range": [
- 31235,
- 31256
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 34
- },
- "end": {
- "line": 772,
- "column": 55
- }
- }
- },
- "range": [
- 31229,
- 31256
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 28
- },
- "end": {
- "line": 772,
- "column": 55
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31287,
- 31296
- ],
- "loc": {
- "start": {
- "line": 773,
- "column": 28
- },
- "end": {
- "line": 773,
- "column": 37
- }
- }
- },
- "init": null,
- "range": [
- 31287,
- 31296
- ],
- "loc": {
- "start": {
- "line": 773,
- "column": 28
- },
- "end": {
- "line": 773,
- "column": 37
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 31283,
- 31297
- ],
- "loc": {
- "start": {
- "line": 773,
- "column": 24
- },
- "end": {
- "line": 773,
- "column": 38
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 31322,
- 31325
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 24
- },
- "end": {
- "line": 774,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31326,
- 31335
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 28
- },
- "end": {
- "line": 774,
- "column": 37
- }
- }
- },
- "range": [
- 31322,
- 31335
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 24
- },
- "end": {
- "line": 774,
- "column": 37
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "CheckList",
- "range": [
- 31342,
- 31351
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 44
- },
- "end": {
- "line": 774,
- "column": 53
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 31352,
- 31356
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 54
- },
- "end": {
- "line": 774,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 31338,
- 31357
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 40
- },
- "end": {
- "line": 774,
- "column": 59
- }
- }
- },
- "range": [
- 31322,
- 31357
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 24
- },
- "end": {
- "line": 774,
- "column": 59
- }
- }
- },
- "range": [
- 31322,
- 31358
- ],
- "loc": {
- "start": {
- "line": 774,
- "column": 24
- },
- "end": {
- "line": 774,
- "column": 60
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31383,
- 31392
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 24
- },
- "end": {
- "line": 775,
- "column": 33
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 31395,
- 31398
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 36
- },
- "end": {
- "line": 775,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31399,
- 31408
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 40
- },
- "end": {
- "line": 775,
- "column": 49
- }
- }
- },
- "range": [
- 31395,
- 31408
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 36
- },
- "end": {
- "line": 775,
- "column": 49
- }
- }
- },
- "range": [
- 31383,
- 31408
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 24
- },
- "end": {
- "line": 775,
- "column": 49
- }
- }
- },
- "range": [
- 31383,
- 31409
- ],
- "loc": {
- "start": {
- "line": 775,
- "column": 24
- },
- "end": {
- "line": 775,
- "column": 50
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 31439,
- 31446
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 28
- },
- "end": {
- "line": 777,
- "column": 35
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 31449,
- 31452
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 38
- },
- "end": {
- "line": 777,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 31453,
- 31459
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 42
- },
- "end": {
- "line": 777,
- "column": 48
- }
- }
- },
- "range": [
- 31449,
- 31459
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 38
- },
- "end": {
- "line": 777,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "div",
- "raw": "'div'",
- "range": [
- 31460,
- 31465
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 49
- },
- "end": {
- "line": 777,
- "column": 54
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 31496,
- 31500
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 29
- },
- "end": {
- "line": 778,
- "column": 33
- }
- }
- },
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31502,
- 31511
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 35
- },
- "end": {
- "line": 778,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxCheckListDiv",
- "range": [
- 31512,
- 31528
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 45
- },
- "end": {
- "line": 778,
- "column": 61
- }
- }
- },
- "range": [
- 31502,
- 31528
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 35
- },
- "end": {
- "line": 778,
- "column": 61
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 31529,
- 31530
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 62
- },
- "end": {
- "line": 778,
- "column": 63
- }
- }
- },
- "range": [
- 31502,
- 31530
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 35
- },
- "end": {
- "line": 778,
- "column": 63
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 31531,
- 31534
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 64
- },
- "end": {
- "line": 778,
- "column": 67
- }
- }
- },
- "range": [
- 31502,
- 31534
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 35
- },
- "end": {
- "line": 778,
- "column": 67
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 31535,
- 31539
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 68
- },
- "end": {
- "line": 778,
- "column": 72
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 31540,
- 31542
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 73
- },
- "end": {
- "line": 778,
- "column": 75
- }
- }
- },
- "range": [
- 31535,
- 31542
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 68
- },
- "end": {
- "line": 778,
- "column": 75
- }
- }
- },
- "range": [
- 31502,
- 31542
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 35
- },
- "end": {
- "line": 778,
- "column": 75
- }
- }
- }
- ],
- "range": [
- 31495,
- 31543
- ],
- "loc": {
- "start": {
- "line": 778,
- "column": 28
- },
- "end": {
- "line": 778,
- "column": 76
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "ct",
- "raw": "'ct'",
- "range": [
- 31574,
- 31578
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 29
- },
- "end": {
- "line": 779,
- "column": 33
- }
- }
- },
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 31580,
- 31581
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 35
- },
- "end": {
- "line": 779,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 31573,
- 31582
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 28
- },
- "end": {
- "line": 779,
- "column": 37
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "filled",
- "raw": "'filled'",
- "range": [
- 31585,
- 31593
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 40
- },
- "end": {
- "line": 779,
- "column": 48
- }
- }
- },
- {
- "type": "Literal",
- "value": "0",
- "raw": "'0'",
- "range": [
- 31595,
- 31598
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 50
- },
- "end": {
- "line": 779,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 31584,
- 31599
- ],
- "loc": {
- "start": {
- "line": 779,
- "column": 39
- },
- "end": {
- "line": 779,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 31449,
- 31600
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 38
- },
- "end": {
- "line": 779,
- "column": 55
- }
- }
- },
- "range": [
- 31439,
- 31600
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 28
- },
- "end": {
- "line": 779,
- "column": 55
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 31435,
- 31601
- ],
- "loc": {
- "start": {
- "line": 777,
- "column": 24
- },
- "end": {
- "line": 779,
- "column": 56
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 31626,
- 31633
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 24
- },
- "end": {
- "line": 780,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 31634,
- 31643
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 32
- },
- "end": {
- "line": 780,
- "column": 41
- }
- }
- },
- "range": [
- 31626,
- 31643
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 24
- },
- "end": {
- "line": 780,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 31646,
- 31655
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 44
- },
- "end": {
- "line": 780,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListDivCssClass",
- "range": [
- 31656,
- 31676
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 54
- },
- "end": {
- "line": 780,
- "column": 74
- }
- }
- },
- "range": [
- 31646,
- 31676
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 44
- },
- "end": {
- "line": 780,
- "column": 74
- }
- }
- },
- "range": [
- 31626,
- 31676
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 24
- },
- "end": {
- "line": 780,
- "column": 74
- }
- }
- },
- "range": [
- 31626,
- 31677
- ],
- "loc": {
- "start": {
- "line": 780,
- "column": 24
- },
- "end": {
- "line": 780,
- "column": 75
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 31703,
- 31742
- ],
- "loc": {
- "start": {
- "line": 782,
- "column": 24
- },
- "end": {
- "line": 782,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 31770,
- 31786
- ],
- "loc": {
- "start": {
- "line": 783,
- "column": 27
- },
- "end": {
- "line": 783,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 31817,
- 31820
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 31821,
- 31823
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 32
- },
- "end": {
- "line": 784,
- "column": 34
- }
- }
- },
- "range": [
- 31817,
- 31823
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 31824,
- 31840
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 35
- },
- "end": {
- "line": 784,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 31817,
- 31841
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 31842,
- 31853
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 53
- },
- "end": {
- "line": 784,
- "column": 64
- }
- }
- },
- "range": [
- 31817,
- 31853
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 64
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 31854,
- 31861
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 65
- },
- "end": {
- "line": 784,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 31817,
- 31862
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 73
- }
- }
- },
- "range": [
- 31817,
- 31863
- ],
- "loc": {
- "start": {
- "line": 784,
- "column": 28
- },
- "end": {
- "line": 784,
- "column": 74
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 31892,
- 31896
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 28
- },
- "end": {
- "line": 785,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltEls",
- "range": [
- 31897,
- 31911
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 33
- },
- "end": {
- "line": 785,
- "column": 47
- }
- }
- },
- "range": [
- 31892,
- 31911
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 28
- },
- "end": {
- "line": 785,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 31912,
- 31916
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 48
- },
- "end": {
- "line": 785,
- "column": 52
- }
- }
- },
- "range": [
- 31892,
- 31916
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 28
- },
- "end": {
- "line": 785,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 31917,
- 31924
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 53
- },
- "end": {
- "line": 785,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 31892,
- 31925
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 28
- },
- "end": {
- "line": 785,
- "column": 61
- }
- }
- },
- "range": [
- 31892,
- 31926
- ],
- "loc": {
- "start": {
- "line": 785,
- "column": 28
- },
- "end": {
- "line": 785,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 31787,
- 31952
- ],
- "loc": {
- "start": {
- "line": 783,
- "column": 44
- },
- "end": {
- "line": 786,
- "column": 25
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 31988,
- 31995
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 28
- },
- "end": {
- "line": 787,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 31996,
- 32007
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 36
- },
- "end": {
- "line": 787,
- "column": 47
- }
- }
- },
- "range": [
- 31988,
- 32007
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 28
- },
- "end": {
- "line": 787,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 32008,
- 32015
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 48
- },
- "end": {
- "line": 787,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 31988,
- 32016
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 28
- },
- "end": {
- "line": 787,
- "column": 56
- }
- }
- },
- "range": [
- 31988,
- 32017
- ],
- "loc": {
- "start": {
- "line": 787,
- "column": 28
- },
- "end": {
- "line": 787,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 31958,
- 32043
- ],
- "loc": {
- "start": {
- "line": 786,
- "column": 31
- },
- "end": {
- "line": 788,
- "column": 25
- }
- }
- },
- "range": [
- 31767,
- 32043
- ],
- "loc": {
- "start": {
- "line": 783,
- "column": 24
- },
- "end": {
- "line": 788,
- "column": 25
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 31703,
- 31742
- ],
- "loc": {
- "start": {
- "line": 782,
- "column": 24
- },
- "end": {
- "line": 782,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 32069,
- 32078
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 24
- },
- "end": {
- "line": 790,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListDiv",
- "range": [
- 32079,
- 32091
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 34
- },
- "end": {
- "line": 790,
- "column": 46
- }
- }
- },
- "range": [
- 32069,
- 32091
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 24
- },
- "end": {
- "line": 790,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 32092,
- 32093
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 47
- },
- "end": {
- "line": 790,
- "column": 48
- }
- }
- },
- "range": [
- 32069,
- 32094
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 24
- },
- "end": {
- "line": 790,
- "column": 49
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 32097,
- 32104
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 52
- },
- "end": {
- "line": 790,
- "column": 59
- }
- }
- },
- "range": [
- 32069,
- 32104
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 24
- },
- "end": {
- "line": 790,
- "column": 59
- }
- }
- },
- "range": [
- 32069,
- 32105
- ],
- "loc": {
- "start": {
- "line": 790,
- "column": 24
- },
- "end": {
- "line": 790,
- "column": 60
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32130,
- 32134
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 24
- },
- "end": {
- "line": 791,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 32135,
- 32141
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 29
- },
- "end": {
- "line": 791,
- "column": 35
- }
- }
- },
- "range": [
- 32130,
- 32141
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 24
- },
- "end": {
- "line": 791,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 32142,
- 32146
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 36
- },
- "end": {
- "line": 791,
- "column": 40
- }
- }
- },
- "range": [
- 32130,
- 32146
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 24
- },
- "end": {
- "line": 791,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32147,
- 32151
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 41
- },
- "end": {
- "line": 791,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxFlt",
- "range": [
- 32152,
- 32159
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 46
- },
- "end": {
- "line": 791,
- "column": 53
- }
- }
- },
- "range": [
- 32147,
- 32159
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 41
- },
- "end": {
- "line": 791,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 32160,
- 32161
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 54
- },
- "end": {
- "line": 791,
- "column": 55
- }
- }
- },
- "range": [
- 32147,
- 32161
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 41
- },
- "end": {
- "line": 791,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 32162,
- 32165
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 56
- },
- "end": {
- "line": 791,
- "column": 59
- }
- }
- },
- "range": [
- 32147,
- 32165
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 41
- },
- "end": {
- "line": 791,
- "column": 59
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32166,
- 32170
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 60
- },
- "end": {
- "line": 791,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 32171,
- 32173
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 65
- },
- "end": {
- "line": 791,
- "column": 67
- }
- }
- },
- "range": [
- 32166,
- 32173
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 60
- },
- "end": {
- "line": 791,
- "column": 67
- }
- }
- },
- "range": [
- 32147,
- 32173
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 41
- },
- "end": {
- "line": 791,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 32130,
- 32174
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 24
- },
- "end": {
- "line": 791,
- "column": 68
- }
- }
- },
- "range": [
- 32130,
- 32175
- ],
- "loc": {
- "start": {
- "line": 791,
- "column": 24
- },
- "end": {
- "line": 791,
- "column": 69
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32204,
- 32208
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 28
- },
- "end": {
- "line": 792,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 32209,
- 32224
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 33
- },
- "end": {
- "line": 792,
- "column": 48
- }
- }
- },
- "range": [
- 32204,
- 32224
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 28
- },
- "end": {
- "line": 792,
- "column": 48
- }
- }
- },
- "prefix": true,
- "range": [
- 32203,
- 32224
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 27
- },
- "end": {
- "line": 792,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 32255,
- 32264
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 28
- },
- "end": {
- "line": 793,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 32265,
- 32271
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 38
- },
- "end": {
- "line": 793,
- "column": 44
- }
- }
- },
- "range": [
- 32255,
- 32271
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 28
- },
- "end": {
- "line": 793,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 32272,
- 32273
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 45
- },
- "end": {
- "line": 793,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 32255,
- 32274
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 28
- },
- "end": {
- "line": 793,
- "column": 47
- }
- }
- },
- "range": [
- 32255,
- 32275
- ],
- "loc": {
- "start": {
- "line": 793,
- "column": 28
- },
- "end": {
- "line": 793,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 32225,
- 32301
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 49
- },
- "end": {
- "line": 794,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 32200,
- 32301
- ],
- "loc": {
- "start": {
- "line": 792,
- "column": 24
- },
- "end": {
- "line": 794,
- "column": 25
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32330,
- 32334
- ],
- "loc": {
- "start": {
- "line": 796,
- "column": 27
- },
- "end": {
- "line": 796,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 32335,
- 32350
- ],
- "loc": {
- "start": {
- "line": 796,
- "column": 32
- },
- "end": {
- "line": 796,
- "column": 47
- }
- }
- },
- "range": [
- 32330,
- 32350
- ],
- "loc": {
- "start": {
- "line": 796,
- "column": 27
- },
- "end": {
- "line": 796,
- "column": 47
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 32381,
- 32386
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 28
- },
- "end": {
- "line": 797,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 32387,
- 32390
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 34
- },
- "end": {
- "line": 797,
- "column": 37
- }
- }
- },
- "range": [
- 32381,
- 32390
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 28
- },
- "end": {
- "line": 797,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 32391,
- 32398
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 38
- },
- "end": {
- "line": 797,
- "column": 45
- }
- }
- },
- {
- "type": "Literal",
- "value": "click",
- "raw": "'click'",
- "range": [
- 32400,
- 32407
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 47
- },
- "end": {
- "line": 797,
- "column": 54
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32441,
- 32445
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 32
- },
- "end": {
- "line": 798,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 32446,
- 32449
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 37
- },
- "end": {
- "line": 798,
- "column": 40
- }
- }
- },
- "range": [
- 32441,
- 32449
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 32
- },
- "end": {
- "line": 798,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onCheckListClick",
- "range": [
- 32450,
- 32466
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 41
- },
- "end": {
- "line": 798,
- "column": 57
- }
- }
- },
- "range": [
- 32441,
- 32466
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 32
- },
- "end": {
- "line": 798,
- "column": 57
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 32467,
- 32471
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 58
- },
- "end": {
- "line": 798,
- "column": 62
- }
- }
- },
- "range": [
- 32441,
- 32471
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 32
- },
- "end": {
- "line": 798,
- "column": 62
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 32472,
- 32476
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 63
- },
- "end": {
- "line": 798,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 32441,
- 32477
- ],
- "loc": {
- "start": {
- "line": 798,
- "column": 32
- },
- "end": {
- "line": 798,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 32381,
- 32478
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 28
- },
- "end": {
- "line": 798,
- "column": 69
- }
- }
- },
- "range": [
- 32381,
- 32479
- ],
- "loc": {
- "start": {
- "line": 797,
- "column": 28
- },
- "end": {
- "line": 798,
- "column": 70
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divCont",
- "range": [
- 32508,
- 32515
- ],
- "loc": {
- "start": {
- "line": 799,
- "column": 28
- },
- "end": {
- "line": 799,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 32516,
- 32527
- ],
- "loc": {
- "start": {
- "line": 799,
- "column": 36
- },
- "end": {
- "line": 799,
- "column": 47
- }
- }
- },
- "range": [
- 32508,
- 32527
- ],
- "loc": {
- "start": {
- "line": 799,
- "column": 28
- },
- "end": {
- "line": 799,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 32561,
- 32564
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 32
- },
- "end": {
- "line": 800,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "text",
- "range": [
- 32565,
- 32569
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 36
- },
- "end": {
- "line": 800,
- "column": 40
- }
- }
- },
- "range": [
- 32561,
- 32569
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 32
- },
- "end": {
- "line": 800,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 32570,
- 32579
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 41
- },
- "end": {
- "line": 800,
- "column": 50
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activateCheckListTxt",
- "range": [
- 32580,
- 32600
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 51
- },
- "end": {
- "line": 800,
- "column": 71
- }
- }
- },
- "range": [
- 32570,
- 32600
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 41
- },
- "end": {
- "line": 800,
- "column": 71
- }
- }
- }
- ],
- "range": [
- 32561,
- 32601
- ],
- "loc": {
- "start": {
- "line": 800,
- "column": 32
- },
- "end": {
- "line": 800,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 32508,
- 32602
- ],
- "loc": {
- "start": {
- "line": 799,
- "column": 28
- },
- "end": {
- "line": 800,
- "column": 73
- }
- }
- },
- "range": [
- 32508,
- 32603
- ],
- "loc": {
- "start": {
- "line": 799,
- "column": 28
- },
- "end": {
- "line": 800,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 32351,
- 32629
- ],
- "loc": {
- "start": {
- "line": 796,
- "column": 48
- },
- "end": {
- "line": 801,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 32327,
- 32629
- ],
- "loc": {
- "start": {
- "line": 796,
- "column": 24
- },
- "end": {
- "line": 801,
- "column": 25
- }
- }
- }
- ],
- "range": [
- 31257,
- 32651
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 56
- },
- "end": {
- "line": 802,
- "column": 21
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "inptype",
- "range": [
- 32749,
- 32756
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 28
- },
- "end": {
- "line": 806,
- "column": 35
- }
- }
- },
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "col",
- "range": [
- 32759,
- 32762
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 38
- },
- "end": {
- "line": 806,
- "column": 41
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32765,
- 32769
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 44
- },
- "end": {
- "line": 806,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeInp",
- "range": [
- 32770,
- 32780
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 49
- },
- "end": {
- "line": 806,
- "column": 59
- }
- }
- },
- "range": [
- 32765,
- 32780
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 44
- },
- "end": {
- "line": 806,
- "column": 59
- }
- }
- },
- "range": [
- 32759,
- 32780
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 38
- },
- "end": {
- "line": 806,
- "column": 59
- }
- }
- },
- "consequent": {
- "type": "Literal",
- "value": "text",
- "raw": "'text'",
- "range": [
- 32783,
- 32789
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 62
- },
- "end": {
- "line": 806,
- "column": 68
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": "hidden",
- "raw": "'hidden'",
- "range": [
- 32792,
- 32800
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 71
- },
- "end": {
- "line": 806,
- "column": 79
- }
- }
- },
- "range": [
- 32759,
- 32800
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 38
- },
- "end": {
- "line": 806,
- "column": 79
- }
- }
- },
- "range": [
- 32749,
- 32800
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 28
- },
- "end": {
- "line": 806,
- "column": 79
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 32745,
- 32801
- ],
- "loc": {
- "start": {
- "line": 806,
- "column": 24
- },
- "end": {
- "line": 806,
- "column": 80
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "show/hide input",
- "range": [
- 32703,
- 32720
- ],
- "loc": {
- "start": {
- "line": 805,
- "column": 24
- },
- "end": {
- "line": 805,
- "column": 41
- }
- }
- }
- ]
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 32830,
- 32833
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 28
- },
- "end": {
- "line": 807,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 32836,
- 32839
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 34
- },
- "end": {
- "line": 807,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 32840,
- 32846
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 38
- },
- "end": {
- "line": 807,
- "column": 44
- }
- }
- },
- "range": [
- 32836,
- 32846
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 34
- },
- "end": {
- "line": 807,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32847,
- 32851
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 45
- },
- "end": {
- "line": 807,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeInp",
- "range": [
- 32852,
- 32862
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 50
- },
- "end": {
- "line": 807,
- "column": 60
- }
- }
- },
- "range": [
- 32847,
- 32862
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 45
- },
- "end": {
- "line": 807,
- "column": 60
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 32893,
- 32897
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 29
- },
- "end": {
- "line": 808,
- "column": 33
- }
- }
- },
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32898,
- 32902
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 34
- },
- "end": {
- "line": 808,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxFlt",
- "range": [
- 32903,
- 32910
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 39
- },
- "end": {
- "line": 808,
- "column": 46
- }
- }
- },
- "range": [
- 32898,
- 32910
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 34
- },
- "end": {
- "line": 808,
- "column": 46
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 32911,
- 32912
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 47
- },
- "end": {
- "line": 808,
- "column": 48
- }
- }
- },
- "range": [
- 32898,
- 32912
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 34
- },
- "end": {
- "line": 808,
- "column": 48
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 32913,
- 32916
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 49
- },
- "end": {
- "line": 808,
- "column": 52
- }
- }
- },
- "range": [
- 32898,
- 32916
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 34
- },
- "end": {
- "line": 808,
- "column": 52
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 32917,
- 32921
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 53
- },
- "end": {
- "line": 808,
- "column": 57
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 32922,
- 32924
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 58
- },
- "end": {
- "line": 808,
- "column": 60
- }
- }
- },
- "range": [
- 32917,
- 32924
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 53
- },
- "end": {
- "line": 808,
- "column": 60
- }
- }
- },
- "range": [
- 32898,
- 32924
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 34
- },
- "end": {
- "line": 808,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 32892,
- 32925
- ],
- "loc": {
- "start": {
- "line": 808,
- "column": 28
- },
- "end": {
- "line": 808,
- "column": 61
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "type",
- "raw": "'type'",
- "range": [
- 32956,
- 32962
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 29
- },
- "end": {
- "line": 809,
- "column": 35
- }
- }
- },
- {
- "type": "Identifier",
- "name": "inptype",
- "range": [
- 32963,
- 32970
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 36
- },
- "end": {
- "line": 809,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 32955,
- 32971
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 28
- },
- "end": {
- "line": 809,
- "column": 44
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "ct",
- "raw": "'ct'",
- "range": [
- 32974,
- 32978
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 47
- },
- "end": {
- "line": 809,
- "column": 51
- }
- }
- },
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 32979,
- 32980
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 52
- },
- "end": {
- "line": 809,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 32973,
- 32981
- ],
- "loc": {
- "start": {
- "line": 809,
- "column": 46
- },
- "end": {
- "line": 809,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 32836,
- 32982
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 34
- },
- "end": {
- "line": 809,
- "column": 55
- }
- }
- },
- "range": [
- 32830,
- 32982
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 28
- },
- "end": {
- "line": 809,
- "column": 55
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 32826,
- 32983
- ],
- "loc": {
- "start": {
- "line": 807,
- "column": 24
- },
- "end": {
- "line": 809,
- "column": 56
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "Identifier",
- "name": "inptype",
- "range": [
- 33011,
- 33018
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 27
- },
- "end": {
- "line": 810,
- "column": 34
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "hidden",
- "raw": "'hidden'",
- "range": [
- 33021,
- 33029
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 37
- },
- "end": {
- "line": 810,
- "column": 45
- }
- }
- },
- "range": [
- 33011,
- 33029
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 27
- },
- "end": {
- "line": 810,
- "column": 45
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33033,
- 33037
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 49
- },
- "end": {
- "line": 810,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "watermark",
- "range": [
- 33038,
- 33047
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 54
- },
- "end": {
- "line": 810,
- "column": 63
- }
- }
- },
- "range": [
- 33033,
- 33047
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 49
- },
- "end": {
- "line": 810,
- "column": 63
- }
- }
- },
- "range": [
- 33011,
- 33047
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 27
- },
- "end": {
- "line": 810,
- "column": 63
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33078,
- 33081
- ],
- "loc": {
- "start": {
- "line": 811,
- "column": 28
- },
- "end": {
- "line": 811,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setAttribute",
- "range": [
- 33082,
- 33094
- ],
- "loc": {
- "start": {
- "line": 811,
- "column": 32
- },
- "end": {
- "line": 811,
- "column": 44
- }
- }
- },
- "range": [
- 33078,
- 33094
- ],
- "loc": {
- "start": {
- "line": 811,
- "column": 28
- },
- "end": {
- "line": 811,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "placeholder",
- "raw": "'placeholder'",
- "range": [
- 33128,
- 33141
- ],
- "loc": {
- "start": {
- "line": 812,
- "column": 32
- },
- "end": {
- "line": 812,
- "column": 45
- }
- }
- },
- {
- "type": "ConditionalExpression",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33175,
- 33179
- ],
- "loc": {
- "start": {
- "line": 813,
- "column": 32
- },
- "end": {
- "line": 813,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isWatermarkArray",
- "range": [
- 33180,
- 33196
- ],
- "loc": {
- "start": {
- "line": 813,
- "column": 37
- },
- "end": {
- "line": 813,
- "column": 53
- }
- }
- },
- "range": [
- 33175,
- 33196
- ],
- "loc": {
- "start": {
- "line": 813,
- "column": 32
- },
- "end": {
- "line": 813,
- "column": 53
- }
- }
- },
- "consequent": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33236,
- 33240
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 37
- },
- "end": {
- "line": 814,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "watermark",
- "range": [
- 33241,
- 33250
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 42
- },
- "end": {
- "line": 814,
- "column": 51
- }
- }
- },
- "range": [
- 33236,
- 33250
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 37
- },
- "end": {
- "line": 814,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 33251,
- 33252
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 52
- },
- "end": {
- "line": 814,
- "column": 53
- }
- }
- },
- "range": [
- 33236,
- 33253
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 37
- },
- "end": {
- "line": 814,
- "column": 54
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 33257,
- 33259
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 58
- },
- "end": {
- "line": 814,
- "column": 60
- }
- }
- },
- "range": [
- 33236,
- 33259
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 37
- },
- "end": {
- "line": 814,
- "column": 60
- }
- }
- },
- "alternate": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33263,
- 33267
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 64
- },
- "end": {
- "line": 814,
- "column": 68
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "watermark",
- "range": [
- 33268,
- 33277
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 69
- },
- "end": {
- "line": 814,
- "column": 78
- }
- }
- },
- "range": [
- 33263,
- 33277
- ],
- "loc": {
- "start": {
- "line": 814,
- "column": 64
- },
- "end": {
- "line": 814,
- "column": 78
- }
- }
- },
- "range": [
- 33175,
- 33277
- ],
- "loc": {
- "start": {
- "line": 813,
- "column": 32
- },
- "end": {
- "line": 814,
- "column": 78
- }
- }
- }
- ],
- "range": [
- 33078,
- 33307
- ],
- "loc": {
- "start": {
- "line": 811,
- "column": 28
- },
- "end": {
- "line": 815,
- "column": 29
- }
- }
- },
- "range": [
- 33078,
- 33308
- ],
- "loc": {
- "start": {
- "line": 811,
- "column": 28
- },
- "end": {
- "line": 815,
- "column": 30
- }
- }
- }
- ],
- "range": [
- 33048,
- 33334
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 64
- },
- "end": {
- "line": 816,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 33008,
- 33334
- ],
- "loc": {
- "start": {
- "line": 810,
- "column": 24
- },
- "end": {
- "line": 816,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33359,
- 33362
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 24
- },
- "end": {
- "line": 817,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 33363,
- 33372
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 28
- },
- "end": {
- "line": 817,
- "column": 37
- }
- }
- },
- "range": [
- 33359,
- 33372
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 24
- },
- "end": {
- "line": 817,
- "column": 37
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "inpclass",
- "range": [
- 33375,
- 33383
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 40
- },
- "end": {
- "line": 817,
- "column": 48
- }
- }
- },
- "range": [
- 33359,
- 33383
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 24
- },
- "end": {
- "line": 817,
- "column": 48
- }
- }
- },
- "range": [
- 33359,
- 33384
- ],
- "loc": {
- "start": {
- "line": 817,
- "column": 24
- },
- "end": {
- "line": 817,
- "column": 49
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 33409,
- 33414
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 24
- },
- "end": {
- "line": 818,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 33415,
- 33418
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 30
- },
- "end": {
- "line": 818,
- "column": 33
- }
- }
- },
- "range": [
- 33409,
- 33418
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 24
- },
- "end": {
- "line": 818,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33419,
- 33422
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 34
- },
- "end": {
- "line": 818,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "focus",
- "raw": "'focus'",
- "range": [
- 33424,
- 33431
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 39
- },
- "end": {
- "line": 818,
- "column": 46
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33433,
- 33437
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 48
- },
- "end": {
- "line": 818,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 33438,
- 33441
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 53
- },
- "end": {
- "line": 818,
- "column": 56
- }
- }
- },
- "range": [
- 33433,
- 33441
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 48
- },
- "end": {
- "line": 818,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onInpFocus",
- "range": [
- 33442,
- 33452
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 57
- },
- "end": {
- "line": 818,
- "column": 67
- }
- }
- },
- "range": [
- 33433,
- 33452
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 48
- },
- "end": {
- "line": 818,
- "column": 67
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 33453,
- 33457
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 68
- },
- "end": {
- "line": 818,
- "column": 72
- }
- }
- },
- "range": [
- 33433,
- 33457
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 48
- },
- "end": {
- "line": 818,
- "column": 72
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 33458,
- 33462
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 73
- },
- "end": {
- "line": 818,
- "column": 77
- }
- }
- }
- ],
- "range": [
- 33433,
- 33463
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 48
- },
- "end": {
- "line": 818,
- "column": 78
- }
- }
- }
- ],
- "range": [
- 33409,
- 33464
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 24
- },
- "end": {
- "line": 818,
- "column": 79
- }
- }
- },
- "range": [
- 33409,
- 33465
- ],
- "loc": {
- "start": {
- "line": 818,
- "column": 24
- },
- "end": {
- "line": 818,
- "column": 80
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 33491,
- 33530
- ],
- "loc": {
- "start": {
- "line": 820,
- "column": 24
- },
- "end": {
- "line": 820,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 33558,
- 33574
- ],
- "loc": {
- "start": {
- "line": 821,
- "column": 27
- },
- "end": {
- "line": 821,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 33605,
- 33608
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 33609,
- 33611
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 32
- },
- "end": {
- "line": 822,
- "column": 34
- }
- }
- },
- "range": [
- 33605,
- 33611
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 33612,
- 33628
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 35
- },
- "end": {
- "line": 822,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 33605,
- 33629
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 33630,
- 33641
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 53
- },
- "end": {
- "line": 822,
- "column": 64
- }
- }
- },
- "range": [
- 33605,
- 33641
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 64
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33642,
- 33645
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 65
- },
- "end": {
- "line": 822,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 33605,
- 33646
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 69
- }
- }
- },
- "range": [
- 33605,
- 33647
- ],
- "loc": {
- "start": {
- "line": 822,
- "column": 28
- },
- "end": {
- "line": 822,
- "column": 70
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33676,
- 33680
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 28
- },
- "end": {
- "line": 823,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltEls",
- "range": [
- 33681,
- 33695
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 33
- },
- "end": {
- "line": 823,
- "column": 47
- }
- }
- },
- "range": [
- 33676,
- 33695
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 28
- },
- "end": {
- "line": 823,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 33696,
- 33700
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 48
- },
- "end": {
- "line": 823,
- "column": 52
- }
- }
- },
- "range": [
- 33676,
- 33700
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 28
- },
- "end": {
- "line": 823,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33701,
- 33704
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 53
- },
- "end": {
- "line": 823,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 33676,
- 33705
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 28
- },
- "end": {
- "line": 823,
- "column": 57
- }
- }
- },
- "range": [
- 33676,
- 33706
- ],
- "loc": {
- "start": {
- "line": 823,
- "column": 28
- },
- "end": {
- "line": 823,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 33575,
- 33732
- ],
- "loc": {
- "start": {
- "line": 821,
- "column": 44
- },
- "end": {
- "line": 824,
- "column": 25
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 33768,
- 33775
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 28
- },
- "end": {
- "line": 825,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 33776,
- 33787
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 36
- },
- "end": {
- "line": 825,
- "column": 47
- }
- }
- },
- "range": [
- 33768,
- 33787
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 28
- },
- "end": {
- "line": 825,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33788,
- 33791
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 48
- },
- "end": {
- "line": 825,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 33768,
- 33792
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 28
- },
- "end": {
- "line": 825,
- "column": 52
- }
- }
- },
- "range": [
- 33768,
- 33793
- ],
- "loc": {
- "start": {
- "line": 825,
- "column": 28
- },
- "end": {
- "line": 825,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 33738,
- 33819
- ],
- "loc": {
- "start": {
- "line": 824,
- "column": 31
- },
- "end": {
- "line": 826,
- "column": 25
- }
- }
- },
- "range": [
- 33555,
- 33819
- ],
- "loc": {
- "start": {
- "line": 821,
- "column": 24
- },
- "end": {
- "line": 826,
- "column": 25
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 33491,
- 33530
- ],
- "loc": {
- "start": {
- "line": 820,
- "column": 24
- },
- "end": {
- "line": 820,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33845,
- 33849
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 24
- },
- "end": {
- "line": 828,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 33850,
- 33856
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 29
- },
- "end": {
- "line": 828,
- "column": 35
- }
- }
- },
- "range": [
- 33845,
- 33856
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 24
- },
- "end": {
- "line": 828,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 33857,
- 33861
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 36
- },
- "end": {
- "line": 828,
- "column": 40
- }
- }
- },
- "range": [
- 33845,
- 33861
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 24
- },
- "end": {
- "line": 828,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33862,
- 33866
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 41
- },
- "end": {
- "line": 828,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxFlt",
- "range": [
- 33867,
- 33874
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 46
- },
- "end": {
- "line": 828,
- "column": 53
- }
- }
- },
- "range": [
- 33862,
- 33874
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 41
- },
- "end": {
- "line": 828,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 33875,
- 33876
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 54
- },
- "end": {
- "line": 828,
- "column": 55
- }
- }
- },
- "range": [
- 33862,
- 33876
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 41
- },
- "end": {
- "line": 828,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 33877,
- 33880
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 56
- },
- "end": {
- "line": 828,
- "column": 59
- }
- }
- },
- "range": [
- 33862,
- 33880
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 41
- },
- "end": {
- "line": 828,
- "column": 59
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33881,
- 33885
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 60
- },
- "end": {
- "line": 828,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 33886,
- 33888
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 65
- },
- "end": {
- "line": 828,
- "column": 67
- }
- }
- },
- "range": [
- 33881,
- 33888
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 60
- },
- "end": {
- "line": 828,
- "column": 67
- }
- }
- },
- "range": [
- 33862,
- 33888
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 41
- },
- "end": {
- "line": 828,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 33845,
- 33889
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 24
- },
- "end": {
- "line": 828,
- "column": 68
- }
- }
- },
- "range": [
- 33845,
- 33890
- ],
- "loc": {
- "start": {
- "line": 828,
- "column": 24
- },
- "end": {
- "line": 828,
- "column": 69
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 33916,
- 33921
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 24
- },
- "end": {
- "line": 830,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 33922,
- 33925
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 30
- },
- "end": {
- "line": 830,
- "column": 33
- }
- }
- },
- "range": [
- 33916,
- 33925
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 24
- },
- "end": {
- "line": 830,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 33926,
- 33929
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 34
- },
- "end": {
- "line": 830,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "keypress",
- "raw": "'keypress'",
- "range": [
- 33931,
- 33941
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 39
- },
- "end": {
- "line": 830,
- "column": 49
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 33971,
- 33975
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 28
- },
- "end": {
- "line": 831,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 33976,
- 33979
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 33
- },
- "end": {
- "line": 831,
- "column": 36
- }
- }
- },
- "range": [
- 33971,
- 33979
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 28
- },
- "end": {
- "line": 831,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "detectKey",
- "range": [
- 33980,
- 33989
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 37
- },
- "end": {
- "line": 831,
- "column": 46
- }
- }
- },
- "range": [
- 33971,
- 33989
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 28
- },
- "end": {
- "line": 831,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 33990,
- 33994
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 47
- },
- "end": {
- "line": 831,
- "column": 51
- }
- }
- },
- "range": [
- 33971,
- 33994
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 28
- },
- "end": {
- "line": 831,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 33995,
- 33999
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 52
- },
- "end": {
- "line": 831,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 33971,
- 34000
- ],
- "loc": {
- "start": {
- "line": 831,
- "column": 28
- },
- "end": {
- "line": 831,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 33916,
- 34001
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 24
- },
- "end": {
- "line": 831,
- "column": 58
- }
- }
- },
- "range": [
- 33916,
- 34002
- ],
- "loc": {
- "start": {
- "line": 830,
- "column": 24
- },
- "end": {
- "line": 831,
- "column": 59
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 34027,
- 34032
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 24
- },
- "end": {
- "line": 832,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 34033,
- 34036
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 30
- },
- "end": {
- "line": 832,
- "column": 33
- }
- }
- },
- "range": [
- 34027,
- 34036
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 24
- },
- "end": {
- "line": 832,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 34037,
- 34040
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 34
- },
- "end": {
- "line": 832,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "keydown",
- "raw": "'keydown'",
- "range": [
- 34042,
- 34051
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 39
- },
- "end": {
- "line": 832,
- "column": 48
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34081,
- 34085
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 28
- },
- "end": {
- "line": 833,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 34086,
- 34089
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 33
- },
- "end": {
- "line": 833,
- "column": 36
- }
- }
- },
- "range": [
- 34081,
- 34089
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 28
- },
- "end": {
- "line": 833,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onKeyDown",
- "range": [
- 34090,
- 34099
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 37
- },
- "end": {
- "line": 833,
- "column": 46
- }
- }
- },
- "range": [
- 34081,
- 34099
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 28
- },
- "end": {
- "line": 833,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 34100,
- 34104
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 47
- },
- "end": {
- "line": 833,
- "column": 51
- }
- }
- },
- "range": [
- 34081,
- 34104
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 28
- },
- "end": {
- "line": 833,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 34105,
- 34109
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 52
- },
- "end": {
- "line": 833,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 34081,
- 34110
- ],
- "loc": {
- "start": {
- "line": 833,
- "column": 28
- },
- "end": {
- "line": 833,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 34027,
- 34111
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 24
- },
- "end": {
- "line": 833,
- "column": 58
- }
- }
- },
- "range": [
- 34027,
- 34112
- ],
- "loc": {
- "start": {
- "line": 832,
- "column": 24
- },
- "end": {
- "line": 833,
- "column": 59
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 34137,
- 34142
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 24
- },
- "end": {
- "line": 834,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 34143,
- 34146
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 30
- },
- "end": {
- "line": 834,
- "column": 33
- }
- }
- },
- "range": [
- 34137,
- 34146
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 24
- },
- "end": {
- "line": 834,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 34147,
- 34150
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 34
- },
- "end": {
- "line": 834,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "keyup",
- "raw": "'keyup'",
- "range": [
- 34152,
- 34159
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 39
- },
- "end": {
- "line": 834,
- "column": 46
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34161,
- 34165
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 48
- },
- "end": {
- "line": 834,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 34166,
- 34169
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 53
- },
- "end": {
- "line": 834,
- "column": 56
- }
- }
- },
- "range": [
- 34161,
- 34169
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 48
- },
- "end": {
- "line": 834,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onKeyUp",
- "range": [
- 34170,
- 34177
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 57
- },
- "end": {
- "line": 834,
- "column": 64
- }
- }
- },
- "range": [
- 34161,
- 34177
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 48
- },
- "end": {
- "line": 834,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 34178,
- 34182
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 65
- },
- "end": {
- "line": 834,
- "column": 69
- }
- }
- },
- "range": [
- 34161,
- 34182
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 48
- },
- "end": {
- "line": 834,
- "column": 69
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 34183,
- 34187
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 70
- },
- "end": {
- "line": 834,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 34161,
- 34188
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 48
- },
- "end": {
- "line": 834,
- "column": 75
- }
- }
- }
- ],
- "range": [
- 34137,
- 34189
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 24
- },
- "end": {
- "line": 834,
- "column": 76
- }
- }
- },
- "range": [
- 34137,
- 34190
- ],
- "loc": {
- "start": {
- "line": 834,
- "column": 24
- },
- "end": {
- "line": 834,
- "column": 77
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 34215,
- 34220
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 24
- },
- "end": {
- "line": 835,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 34221,
- 34224
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 30
- },
- "end": {
- "line": 835,
- "column": 33
- }
- }
- },
- "range": [
- 34215,
- 34224
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 24
- },
- "end": {
- "line": 835,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "inp",
- "range": [
- 34225,
- 34228
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 34
- },
- "end": {
- "line": 835,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "blur",
- "raw": "'blur'",
- "range": [
- 34230,
- 34236
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 39
- },
- "end": {
- "line": 835,
- "column": 45
- }
- }
- },
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34238,
- 34242
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 47
- },
- "end": {
- "line": 835,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 34243,
- 34246
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 52
- },
- "end": {
- "line": 835,
- "column": 55
- }
- }
- },
- "range": [
- 34238,
- 34246
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 47
- },
- "end": {
- "line": 835,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onInpBlur",
- "range": [
- 34247,
- 34256
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 56
- },
- "end": {
- "line": 835,
- "column": 65
- }
- }
- },
- "range": [
- 34238,
- 34256
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 47
- },
- "end": {
- "line": 835,
- "column": 65
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 34257,
- 34261
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 66
- },
- "end": {
- "line": 835,
- "column": 70
- }
- }
- },
- "range": [
- 34238,
- 34261
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 47
- },
- "end": {
- "line": 835,
- "column": 70
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 34262,
- 34266
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 71
- },
- "end": {
- "line": 835,
- "column": 75
- }
- }
- }
- ],
- "range": [
- 34238,
- 34267
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 47
- },
- "end": {
- "line": 835,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 34215,
- 34268
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 24
- },
- "end": {
- "line": 835,
- "column": 77
- }
- }
- },
- "range": [
- 34215,
- 34269
- ],
- "loc": {
- "start": {
- "line": 835,
- "column": 24
- },
- "end": {
- "line": 835,
- "column": 78
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34298,
- 34302
- ],
- "loc": {
- "start": {
- "line": 837,
- "column": 27
- },
- "end": {
- "line": 837,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 34303,
- 34321
- ],
- "loc": {
- "start": {
- "line": 837,
- "column": 32
- },
- "end": {
- "line": 837,
- "column": 50
- }
- }
- },
- "range": [
- 34298,
- 34321
- ],
- "loc": {
- "start": {
- "line": 837,
- "column": 27
- },
- "end": {
- "line": 837,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "flts_values",
- "range": [
- 34356,
- 34367
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 32
- },
- "end": {
- "line": 838,
- "column": 43
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34370,
- 34374
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 46
- },
- "end": {
- "line": 838,
- "column": 50
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 34375,
- 34378
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 51
- },
- "end": {
- "line": 838,
- "column": 54
- }
- }
- },
- "range": [
- 34370,
- 34378
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 46
- },
- "end": {
- "line": 838,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "store",
- "range": [
- 34379,
- 34384
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 55
- },
- "end": {
- "line": 838,
- "column": 60
- }
- }
- },
- "range": [
- 34370,
- 34384
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 46
- },
- "end": {
- "line": 838,
- "column": 60
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterValues",
- "range": [
- 34385,
- 34400
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 61
- },
- "end": {
- "line": 838,
- "column": 76
- }
- }
- },
- "range": [
- 34370,
- 34400
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 46
- },
- "end": {
- "line": 838,
- "column": 76
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34434,
- 34438
- ],
- "loc": {
- "start": {
- "line": 839,
- "column": 32
- },
- "end": {
- "line": 839,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 34439,
- 34455
- ],
- "loc": {
- "start": {
- "line": 839,
- "column": 37
- },
- "end": {
- "line": 839,
- "column": 53
- }
- }
- },
- "range": [
- 34434,
- 34455
- ],
- "loc": {
- "start": {
- "line": 839,
- "column": 32
- },
- "end": {
- "line": 839,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 34370,
- 34456
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 46
- },
- "end": {
- "line": 839,
- "column": 54
- }
- }
- },
- "range": [
- 34356,
- 34456
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 32
- },
- "end": {
- "line": 839,
- "column": 54
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 34352,
- 34457
- ],
- "loc": {
- "start": {
- "line": 838,
- "column": 28
- },
- "end": {
- "line": 839,
- "column": 55
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "flts_values",
- "range": [
- 34489,
- 34500
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 31
- },
- "end": {
- "line": 840,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 34501,
- 34502
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 43
- },
- "end": {
- "line": 840,
- "column": 44
- }
- }
- },
- "range": [
- 34489,
- 34503
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 31
- },
- "end": {
- "line": 840,
- "column": 45
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 34505,
- 34508
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 47
- },
- "end": {
- "line": 840,
- "column": 50
- }
- }
- },
- "range": [
- 34489,
- 34508
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 31
- },
- "end": {
- "line": 840,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34543,
- 34547
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 32
- },
- "end": {
- "line": 841,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setFilterValue",
- "range": [
- 34548,
- 34562
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 37
- },
- "end": {
- "line": 841,
- "column": 51
- }
- }
- },
- "range": [
- 34543,
- 34562
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 32
- },
- "end": {
- "line": 841,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 34563,
- 34564
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 52
- },
- "end": {
- "line": 841,
- "column": 53
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "flts_values",
- "range": [
- 34566,
- 34577
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 55
- },
- "end": {
- "line": 841,
- "column": 66
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 34578,
- 34579
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 67
- },
- "end": {
- "line": 841,
- "column": 68
- }
- }
- },
- "range": [
- 34566,
- 34580
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 55
- },
- "end": {
- "line": 841,
- "column": 69
- }
- }
- },
- {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 34582,
- 34587
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 71
- },
- "end": {
- "line": 841,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 34543,
- 34588
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 32
- },
- "end": {
- "line": 841,
- "column": 77
- }
- }
- },
- "range": [
- 34543,
- 34589
- ],
- "loc": {
- "start": {
- "line": 841,
- "column": 32
- },
- "end": {
- "line": 841,
- "column": 78
- }
- }
- }
- ],
- "range": [
- 34509,
- 34619
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 51
- },
- "end": {
- "line": 842,
- "column": 29
- }
- }
- },
- "alternate": null,
- "range": [
- 34486,
- 34619
- ],
- "loc": {
- "start": {
- "line": 840,
- "column": 28
- },
- "end": {
- "line": 842,
- "column": 29
- }
- }
- }
- ],
- "range": [
- 34322,
- 34645
- ],
- "loc": {
- "start": {
- "line": 837,
- "column": 51
- },
- "end": {
- "line": 843,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 34295,
- 34645
- ],
- "loc": {
- "start": {
- "line": 837,
- "column": 24
- },
- "end": {
- "line": 843,
- "column": 25
- }
- }
- }
- ],
- "range": [
- 32677,
- 34667
- ],
- "loc": {
- "start": {
- "line": 804,
- "column": 24
- },
- "end": {
- "line": 844,
- "column": 21
- }
- }
- },
- "range": [
- 31226,
- 34667
- ],
- "loc": {
- "start": {
- "line": 772,
- "column": 25
- },
- "end": {
- "line": 844,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " checklist",
- "range": [
- 31188,
- 31200
- ],
- "loc": {
- "start": {
- "line": 771,
- "column": 20
- },
- "end": {
- "line": 771,
- "column": 32
- }
- }
- }
- ]
- },
- "range": [
- 29151,
- 34667
- ],
- "loc": {
- "start": {
- "line": 726,
- "column": 20
- },
- "end": {
- "line": 844,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "drop-down filters",
- "range": [
- 29111,
- 29130
- ],
- "loc": {
- "start": {
- "line": 725,
- "column": 20
- },
- "end": {
- "line": 725,
- "column": 39
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": " this adds submit button",
- "range": [
- 34688,
- 34714
- ],
- "loc": {
- "start": {
- "line": 845,
- "column": 20
- },
- "end": {
- "line": 845,
- "column": 46
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "==",
- "left": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 34738,
- 34739
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 23
- },
- "end": {
- "line": 846,
- "column": 24
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "Identifier",
- "name": "n",
- "range": [
- 34741,
- 34742
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 26
- },
- "end": {
- "line": 846,
- "column": 27
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 34743,
- 34744
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 28
- },
- "end": {
- "line": 846,
- "column": 29
- }
- }
- },
- "range": [
- 34741,
- 34744
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 26
- },
- "end": {
- "line": 846,
- "column": 29
- }
- }
- },
- "range": [
- 34738,
- 34744
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 23
- },
- "end": {
- "line": 846,
- "column": 29
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34748,
- 34752
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 33
- },
- "end": {
- "line": 846,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "displayBtn",
- "range": [
- 34753,
- 34763
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 38
- },
- "end": {
- "line": 846,
- "column": 48
- }
- }
- },
- "range": [
- 34748,
- 34763
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 33
- },
- "end": {
- "line": 846,
- "column": 48
- }
- }
- },
- "range": [
- 34738,
- 34763
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 23
- },
- "end": {
- "line": 846,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "btn",
- "range": [
- 34794,
- 34797
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 28
- },
- "end": {
- "line": 847,
- "column": 31
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 34800,
- 34803
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 34
- },
- "end": {
- "line": 847,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 34804,
- 34810
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 38
- },
- "end": {
- "line": 847,
- "column": 44
- }
- }
- },
- "range": [
- 34800,
- 34810
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 34
- },
- "end": {
- "line": 847,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34811,
- 34815
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 45
- },
- "end": {
- "line": 847,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeInp",
- "range": [
- 34816,
- 34826
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 50
- },
- "end": {
- "line": 847,
- "column": 60
- }
- }
- },
- "range": [
- 34811,
- 34826
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 45
- },
- "end": {
- "line": 847,
- "column": 60
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 34857,
- 34861
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 29
- },
- "end": {
- "line": 848,
- "column": 33
- }
- }
- },
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34863,
- 34867
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 35
- },
- "end": {
- "line": 848,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxValButton",
- "range": [
- 34868,
- 34881
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 40
- },
- "end": {
- "line": 848,
- "column": 53
- }
- }
- },
- "range": [
- 34863,
- 34881
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 35
- },
- "end": {
- "line": 848,
- "column": 53
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 34882,
- 34883
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 54
- },
- "end": {
- "line": 848,
- "column": 55
- }
- }
- },
- "range": [
- 34863,
- 34883
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 35
- },
- "end": {
- "line": 848,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 34884,
- 34887
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 56
- },
- "end": {
- "line": 848,
- "column": 59
- }
- }
- },
- "range": [
- 34863,
- 34887
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 35
- },
- "end": {
- "line": 848,
- "column": 59
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34888,
- 34892
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 60
- },
- "end": {
- "line": 848,
- "column": 64
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 34893,
- 34895
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 65
- },
- "end": {
- "line": 848,
- "column": 67
- }
- }
- },
- "range": [
- 34888,
- 34895
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 60
- },
- "end": {
- "line": 848,
- "column": 67
- }
- }
- },
- "range": [
- 34863,
- 34895
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 35
- },
- "end": {
- "line": 848,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 34856,
- 34896
- ],
- "loc": {
- "start": {
- "line": 848,
- "column": 28
- },
- "end": {
- "line": 848,
- "column": 68
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "type",
- "raw": "'type'",
- "range": [
- 34927,
- 34933
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 29
- },
- "end": {
- "line": 849,
- "column": 35
- }
- }
- },
- {
- "type": "Literal",
- "value": "button",
- "raw": "'button'",
- "range": [
- 34935,
- 34943
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 37
- },
- "end": {
- "line": 849,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 34926,
- 34944
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 28
- },
- "end": {
- "line": 849,
- "column": 46
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "value",
- "raw": "'value'",
- "range": [
- 34947,
- 34954
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 49
- },
- "end": {
- "line": 849,
- "column": 56
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 34956,
- 34960
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 58
- },
- "end": {
- "line": 849,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "btnText",
- "range": [
- 34961,
- 34968
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 63
- },
- "end": {
- "line": 849,
- "column": 70
- }
- }
- },
- "range": [
- 34956,
- 34968
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 58
- },
- "end": {
- "line": 849,
- "column": 70
- }
- }
- }
- ],
- "range": [
- 34946,
- 34969
- ],
- "loc": {
- "start": {
- "line": 849,
- "column": 48
- },
- "end": {
- "line": 849,
- "column": 71
- }
- }
- }
- ],
- "range": [
- 34800,
- 34970
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 34
- },
- "end": {
- "line": 849,
- "column": 72
- }
- }
- },
- "range": [
- 34794,
- 34970
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 28
- },
- "end": {
- "line": 849,
- "column": 72
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 34790,
- 34971
- ],
- "loc": {
- "start": {
- "line": 847,
- "column": 24
- },
- "end": {
- "line": 849,
- "column": 73
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "btn",
- "range": [
- 34996,
- 34999
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 24
- },
- "end": {
- "line": 850,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 35000,
- 35009
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 28
- },
- "end": {
- "line": 850,
- "column": 37
- }
- }
- },
- "range": [
- 34996,
- 35009
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 24
- },
- "end": {
- "line": 850,
- "column": 37
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35012,
- 35016
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 40
- },
- "end": {
- "line": 850,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "btnCssClass",
- "range": [
- 35017,
- 35028
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 45
- },
- "end": {
- "line": 850,
- "column": 56
- }
- }
- },
- "range": [
- 35012,
- 35028
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 40
- },
- "end": {
- "line": 850,
- "column": 56
- }
- }
- },
- "range": [
- 34996,
- 35028
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 24
- },
- "end": {
- "line": 850,
- "column": 56
- }
- }
- },
- "range": [
- 34996,
- 35029
- ],
- "loc": {
- "start": {
- "line": 850,
- "column": 24
- },
- "end": {
- "line": 850,
- "column": 57
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 35055,
- 35094
- ],
- "loc": {
- "start": {
- "line": 852,
- "column": 24
- },
- "end": {
- "line": 852,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 35122,
- 35138
- ],
- "loc": {
- "start": {
- "line": 853,
- "column": 27
- },
- "end": {
- "line": 853,
- "column": 43
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 35169,
- 35172
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 35173,
- 35175
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 32
- },
- "end": {
- "line": 854,
- "column": 34
- }
- }
- },
- "range": [
- 35169,
- 35175
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "externalFltTgtId",
- "range": [
- 35176,
- 35192
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 35
- },
- "end": {
- "line": 854,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 35169,
- 35193
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 35194,
- 35205
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 53
- },
- "end": {
- "line": 854,
- "column": 64
- }
- }
- },
- "range": [
- 35169,
- 35205
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 64
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "btn",
- "range": [
- 35206,
- 35209
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 65
- },
- "end": {
- "line": 854,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 35169,
- 35210
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 69
- }
- }
- },
- "range": [
- 35169,
- 35211
- ],
- "loc": {
- "start": {
- "line": 854,
- "column": 28
- },
- "end": {
- "line": 854,
- "column": 70
- }
- }
- }
- ],
- "range": [
- 35139,
- 35237
- ],
- "loc": {
- "start": {
- "line": 853,
- "column": 44
- },
- "end": {
- "line": 855,
- "column": 25
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltcell",
- "range": [
- 35272,
- 35279
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 28
- },
- "end": {
- "line": 856,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 35280,
- 35291
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 36
- },
- "end": {
- "line": 856,
- "column": 47
- }
- }
- },
- "range": [
- 35272,
- 35291
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 28
- },
- "end": {
- "line": 856,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "btn",
- "range": [
- 35292,
- 35295
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 48
- },
- "end": {
- "line": 856,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 35272,
- 35296
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 28
- },
- "end": {
- "line": 856,
- "column": 52
- }
- }
- },
- "range": [
- 35272,
- 35297
- ],
- "loc": {
- "start": {
- "line": 856,
- "column": 28
- },
- "end": {
- "line": 856,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 35242,
- 35323
- ],
- "loc": {
- "start": {
- "line": 855,
- "column": 30
- },
- "end": {
- "line": 857,
- "column": 25
- }
- }
- },
- "range": [
- 35119,
- 35323
- ],
- "loc": {
- "start": {
- "line": 853,
- "column": 24
- },
- "end": {
- "line": 857,
- "column": 25
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 35055,
- 35094
- ],
- "loc": {
- "start": {
- "line": 852,
- "column": 24
- },
- "end": {
- "line": 852,
- "column": 63
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Event",
- "range": [
- 35349,
- 35354
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 24
- },
- "end": {
- "line": 859,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "add",
- "range": [
- 35355,
- 35358
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 30
- },
- "end": {
- "line": 859,
- "column": 33
- }
- }
- },
- "range": [
- 35349,
- 35358
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 24
- },
- "end": {
- "line": 859,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "btn",
- "range": [
- 35359,
- 35362
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 34
- },
- "end": {
- "line": 859,
- "column": 37
- }
- }
- },
- {
- "type": "Literal",
- "value": "click",
- "raw": "'click'",
- "range": [
- 35364,
- 35371
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 39
- },
- "end": {
- "line": 859,
- "column": 46
- }
- }
- },
- {
- "type": "ArrowFunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35378,
- 35382
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 53
- },
- "end": {
- "line": 859,
- "column": 57
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filter",
- "range": [
- 35383,
- 35389
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 58
- },
- "end": {
- "line": 859,
- "column": 64
- }
- }
- },
- "range": [
- 35378,
- 35389
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 53
- },
- "end": {
- "line": 859,
- "column": 64
- }
- }
- },
- "arguments": [],
- "range": [
- 35378,
- 35391
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 53
- },
- "end": {
- "line": 859,
- "column": 66
- }
- }
- },
- "generator": false,
- "expression": true,
- "range": [
- 35373,
- 35391
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 48
- },
- "end": {
- "line": 859,
- "column": 66
- }
- }
- }
- ],
- "range": [
- 35349,
- 35392
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 24
- },
- "end": {
- "line": 859,
- "column": 67
- }
- }
- },
- "range": [
- 35349,
- 35393
- ],
- "loc": {
- "start": {
- "line": 859,
- "column": 24
- },
- "end": {
- "line": 859,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 34764,
- 35415
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 49
- },
- "end": {
- "line": 860,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 34735,
- 35415
- ],
- "loc": {
- "start": {
- "line": 846,
- "column": 20
- },
- "end": {
- "line": 860,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " this adds submit button",
- "range": [
- 34688,
- 34714
- ],
- "loc": {
- "start": {
- "line": 845,
- "column": 20
- },
- "end": {
- "line": 845,
- "column": 46
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "if",
- "range": [
- 35415,
- 35419
- ],
- "loc": {
- "start": {
- "line": 860,
- "column": 21
- },
- "end": {
- "line": 860,
- "column": 25
- }
- }
- }
- ]
- }
- ],
- "range": [
- 28053,
- 35438
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 38
- },
- "end": {
- "line": 862,
- "column": 17
- }
- }
- },
- "range": [
- 28031,
- 35438
- ],
- "loc": {
- "start": {
- "line": 698,
- "column": 16
- },
- "end": {
- "line": 862,
- "column": 17
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " for i",
- "range": [
- 35438,
- 35446
- ],
- "loc": {
- "start": {
- "line": 862,
- "column": 17
- },
- "end": {
- "line": 862,
- "column": 25
- }
- }
- }
- ]
- }
- ],
- "range": [
- 26917,
- 35461
- ],
- "loc": {
- "start": {
- "line": 668,
- "column": 32
- },
- "end": {
- "line": 864,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35485,
- 35489
- ],
- "loc": {
- "start": {
- "line": 865,
- "column": 16
- },
- "end": {
- "line": 865,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_resetGrid",
- "range": [
- 35490,
- 35500
- ],
- "loc": {
- "start": {
- "line": 865,
- "column": 21
- },
- "end": {
- "line": 865,
- "column": 31
- }
- }
- },
- "range": [
- 35485,
- 35500
- ],
- "loc": {
- "start": {
- "line": 865,
- "column": 16
- },
- "end": {
- "line": 865,
- "column": 31
- }
- }
- },
- "arguments": [],
- "range": [
- 35485,
- 35502
- ],
- "loc": {
- "start": {
- "line": 865,
- "column": 16
- },
- "end": {
- "line": 865,
- "column": 33
- }
- }
- },
- "range": [
- 35485,
- 35503
- ],
- "loc": {
- "start": {
- "line": 865,
- "column": 16
- },
- "end": {
- "line": 865,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 35467,
- 35517
- ],
- "loc": {
- "start": {
- "line": 864,
- "column": 19
- },
- "end": {
- "line": 866,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "if",
- "range": [
- 35415,
- 35419
- ],
- "loc": {
- "start": {
- "line": 860,
- "column": 21
- },
- "end": {
- "line": 860,
- "column": 25
- }
- }
- },
- {
- "type": "Line",
- "value": " for i",
- "range": [
- 35438,
- 35446
- ],
- "loc": {
- "start": {
- "line": 862,
- "column": 17
- },
- "end": {
- "line": 862,
- "column": 25
- }
- }
- }
- ]
- },
- "range": [
- 26897,
- 35517
- ],
- "loc": {
- "start": {
- "line": 668,
- "column": 12
- },
- "end": {
- "line": 866,
- "column": 13
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "if isFirstLoad",
- "range": [
- 35517,
- 35533
- ],
- "loc": {
- "start": {
- "line": 866,
- "column": 13
- },
- "end": {
- "line": 866,
- "column": 29
- }
- }
- }
- ]
- }
- ],
- "range": [
- 26883,
- 35544
- ],
- "loc": {
- "start": {
- "line": 667,
- "column": 15
- },
- "end": {
- "line": 868,
- "column": 9
- }
- }
- },
- "range": [
- 26555,
- 35544
- ],
- "loc": {
- "start": {
- "line": 659,
- "column": 8
- },
- "end": {
- "line": 868,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "filters grid is not generated",
- "range": [
- 26515,
- 26546
- ],
- "loc": {
- "start": {
- "line": 658,
- "column": 8
- },
- "end": {
- "line": 658,
- "column": 39
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "if this.fltGrid",
- "range": [
- 35544,
- 35561
- ],
- "loc": {
- "start": {
- "line": 868,
- "column": 9
- },
- "end": {
- "line": 868,
- "column": 26
- }
- }
- },
- {
- "type": "Block",
- "value": " Features ",
- "range": [
- 35571,
- 35585
- ],
- "loc": {
- "start": {
- "line": 870,
- "column": 8
- },
- "end": {
- "line": 870,
- "column": 22
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35597,
- 35601
- ],
- "loc": {
- "start": {
- "line": 871,
- "column": 11
- },
- "end": {
- "line": 871,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasVisibleRows",
- "range": [
- 35602,
- 35616
- ],
- "loc": {
- "start": {
- "line": 871,
- "column": 16
- },
- "end": {
- "line": 871,
- "column": 30
- }
- }
- },
- "range": [
- 35597,
- 35616
- ],
- "loc": {
- "start": {
- "line": 871,
- "column": 11
- },
- "end": {
- "line": 871,
- "column": 30
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35631,
- 35635
- ],
- "loc": {
- "start": {
- "line": 872,
- "column": 12
- },
- "end": {
- "line": 872,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "enforceVisibility",
- "range": [
- 35636,
- 35653
- ],
- "loc": {
- "start": {
- "line": 872,
- "column": 17
- },
- "end": {
- "line": 872,
- "column": 34
- }
- }
- },
- "range": [
- 35631,
- 35653
- ],
- "loc": {
- "start": {
- "line": 872,
- "column": 12
- },
- "end": {
- "line": 872,
- "column": 34
- }
- }
- },
- "arguments": [],
- "range": [
- 35631,
- 35655
- ],
- "loc": {
- "start": {
- "line": 872,
- "column": 12
- },
- "end": {
- "line": 872,
- "column": 36
- }
- }
- },
- "range": [
- 35631,
- 35656
- ],
- "loc": {
- "start": {
- "line": 872,
- "column": 12
- },
- "end": {
- "line": 872,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 35617,
- 35666
- ],
- "loc": {
- "start": {
- "line": 871,
- "column": 31
- },
- "end": {
- "line": 873,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 35594,
- 35666
- ],
- "loc": {
- "start": {
- "line": 871,
- "column": 8
- },
- "end": {
- "line": 873,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "if isFirstLoad",
- "range": [
- 35517,
- 35533
- ],
- "loc": {
- "start": {
- "line": 866,
- "column": 13
- },
- "end": {
- "line": 866,
- "column": 29
- }
- }
- },
- {
- "type": "Line",
- "value": "if this.fltGrid",
- "range": [
- 35544,
- 35561
- ],
- "loc": {
- "start": {
- "line": 868,
- "column": 9
- },
- "end": {
- "line": 868,
- "column": 26
- }
- }
- },
- {
- "type": "Block",
- "value": " Features ",
- "range": [
- 35571,
- 35585
- ],
- "loc": {
- "start": {
- "line": 870,
- "column": 8
- },
- "end": {
- "line": 870,
- "column": 22
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35678,
- 35682
- ],
- "loc": {
- "start": {
- "line": 874,
- "column": 11
- },
- "end": {
- "line": 874,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rowsCounter",
- "range": [
- 35683,
- 35694
- ],
- "loc": {
- "start": {
- "line": 874,
- "column": 16
- },
- "end": {
- "line": 874,
- "column": 27
- }
- }
- },
- "range": [
- 35678,
- 35694
- ],
- "loc": {
- "start": {
- "line": 874,
- "column": 11
- },
- "end": {
- "line": 874,
- "column": 27
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35709,
- 35712
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 12
- },
- "end": {
- "line": 875,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rowsCounter",
- "range": [
- 35713,
- 35724
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 16
- },
- "end": {
- "line": 875,
- "column": 27
- }
- }
- },
- "range": [
- 35709,
- 35724
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 12
- },
- "end": {
- "line": 875,
- "column": 27
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "RowsCounter",
- "range": [
- 35731,
- 35742
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 34
- },
- "end": {
- "line": 875,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 35743,
- 35747
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 46
- },
- "end": {
- "line": 875,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 35727,
- 35748
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 30
- },
- "end": {
- "line": 875,
- "column": 51
- }
- }
- },
- "range": [
- 35709,
- 35748
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 12
- },
- "end": {
- "line": 875,
- "column": 51
- }
- }
- },
- "range": [
- 35709,
- 35749
- ],
- "loc": {
- "start": {
- "line": 875,
- "column": 12
- },
- "end": {
- "line": 875,
- "column": 52
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35762,
- 35765
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 12
- },
- "end": {
- "line": 876,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rowsCounter",
- "range": [
- 35766,
- 35777
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 16
- },
- "end": {
- "line": 876,
- "column": 27
- }
- }
- },
- "range": [
- 35762,
- 35777
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 12
- },
- "end": {
- "line": 876,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 35778,
- 35782
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 28
- },
- "end": {
- "line": 876,
- "column": 32
- }
- }
- },
- "range": [
- 35762,
- 35782
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 12
- },
- "end": {
- "line": 876,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 35762,
- 35784
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 12
- },
- "end": {
- "line": 876,
- "column": 34
- }
- }
- },
- "range": [
- 35762,
- 35785
- ],
- "loc": {
- "start": {
- "line": 876,
- "column": 12
- },
- "end": {
- "line": 876,
- "column": 35
- }
- }
- }
- ],
- "range": [
- 35695,
- 35795
- ],
- "loc": {
- "start": {
- "line": 874,
- "column": 28
- },
- "end": {
- "line": 877,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 35675,
- 35795
- ],
- "loc": {
- "start": {
- "line": 874,
- "column": 8
- },
- "end": {
- "line": 877,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35807,
- 35811
- ],
- "loc": {
- "start": {
- "line": 878,
- "column": 11
- },
- "end": {
- "line": 878,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 35812,
- 35821
- ],
- "loc": {
- "start": {
- "line": 878,
- "column": 16
- },
- "end": {
- "line": 878,
- "column": 25
- }
- }
- },
- "range": [
- 35807,
- 35821
- ],
- "loc": {
- "start": {
- "line": 878,
- "column": 11
- },
- "end": {
- "line": 878,
- "column": 25
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35836,
- 35839
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 12
- },
- "end": {
- "line": 879,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 35840,
- 35849
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 16
- },
- "end": {
- "line": 879,
- "column": 25
- }
- }
- },
- "range": [
- 35836,
- 35849
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 12
- },
- "end": {
- "line": 879,
- "column": 25
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "StatusBar",
- "range": [
- 35856,
- 35865
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 32
- },
- "end": {
- "line": 879,
- "column": 41
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 35866,
- 35870
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 42
- },
- "end": {
- "line": 879,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 35852,
- 35871
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 28
- },
- "end": {
- "line": 879,
- "column": 47
- }
- }
- },
- "range": [
- 35836,
- 35871
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 12
- },
- "end": {
- "line": 879,
- "column": 47
- }
- }
- },
- "range": [
- 35836,
- 35872
- ],
- "loc": {
- "start": {
- "line": 879,
- "column": 12
- },
- "end": {
- "line": 879,
- "column": 48
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35885,
- 35888
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 12
- },
- "end": {
- "line": 880,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 35889,
- 35898
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 16
- },
- "end": {
- "line": 880,
- "column": 25
- }
- }
- },
- "range": [
- 35885,
- 35898
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 12
- },
- "end": {
- "line": 880,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 35899,
- 35903
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 26
- },
- "end": {
- "line": 880,
- "column": 30
- }
- }
- },
- "range": [
- 35885,
- 35903
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 12
- },
- "end": {
- "line": 880,
- "column": 30
- }
- }
- },
- "arguments": [],
- "range": [
- 35885,
- 35905
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 12
- },
- "end": {
- "line": 880,
- "column": 32
- }
- }
- },
- "range": [
- 35885,
- 35906
- ],
- "loc": {
- "start": {
- "line": 880,
- "column": 12
- },
- "end": {
- "line": 880,
- "column": 33
- }
- }
- }
- ],
- "range": [
- 35822,
- 35916
- ],
- "loc": {
- "start": {
- "line": 878,
- "column": 26
- },
- "end": {
- "line": 881,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 35804,
- 35916
- ],
- "loc": {
- "start": {
- "line": 878,
- "column": 8
- },
- "end": {
- "line": 881,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 35928,
- 35932
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 11
- },
- "end": {
- "line": 882,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 35933,
- 35939
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 16
- },
- "end": {
- "line": 882,
- "column": 22
- }
- }
- },
- "range": [
- 35928,
- 35939
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 11
- },
- "end": {
- "line": 882,
- "column": 22
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35943,
- 35946
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 26
- },
- "end": {
- "line": 882,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 35947,
- 35953
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 30
- },
- "end": {
- "line": 882,
- "column": 36
- }
- }
- },
- "range": [
- 35943,
- 35953
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 26
- },
- "end": {
- "line": 882,
- "column": 36
- }
- }
- },
- "range": [
- 35928,
- 35953
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 11
- },
- "end": {
- "line": 882,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 35972,
- 35975
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 16
- },
- "end": {
- "line": 883,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 35976,
- 35982
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 20
- },
- "end": {
- "line": 883,
- "column": 26
- }
- }
- },
- "range": [
- 35972,
- 35982
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 16
- },
- "end": {
- "line": 883,
- "column": 26
- }
- }
- },
- "prefix": true,
- "range": [
- 35971,
- 35982
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 15
- },
- "end": {
- "line": 883,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36001,
- 36004
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 16
- },
- "end": {
- "line": 884,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 36005,
- 36011
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 20
- },
- "end": {
- "line": 884,
- "column": 26
- }
- }
- },
- "range": [
- 36001,
- 36011
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 16
- },
- "end": {
- "line": 884,
- "column": 26
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Paging",
- "range": [
- 36018,
- 36024
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 33
- },
- "end": {
- "line": 884,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 36025,
- 36029
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 40
- },
- "end": {
- "line": 884,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 36014,
- 36030
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 29
- },
- "end": {
- "line": 884,
- "column": 45
- }
- }
- },
- "range": [
- 36001,
- 36030
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 16
- },
- "end": {
- "line": 884,
- "column": 45
- }
- }
- },
- "range": [
- 36001,
- 36031
- ],
- "loc": {
- "start": {
- "line": 884,
- "column": 16
- },
- "end": {
- "line": 884,
- "column": 46
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36048,
- 36051
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 16
- },
- "end": {
- "line": 885,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 36052,
- 36058
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 20
- },
- "end": {
- "line": 885,
- "column": 26
- }
- }
- },
- "range": [
- 36048,
- 36058
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 16
- },
- "end": {
- "line": 885,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 36059,
- 36063
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 27
- },
- "end": {
- "line": 885,
- "column": 31
- }
- }
- },
- "range": [
- 36048,
- 36063
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 16
- },
- "end": {
- "line": 885,
- "column": 31
- }
- }
- },
- "arguments": [],
- "range": [
- 36048,
- 36065
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 16
- },
- "end": {
- "line": 885,
- "column": 33
- }
- }
- },
- "range": [
- 36048,
- 36066
- ],
- "loc": {
- "start": {
- "line": 885,
- "column": 16
- },
- "end": {
- "line": 885,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 35983,
- 36080
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 27
- },
- "end": {
- "line": 886,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 35968,
- 36080
- ],
- "loc": {
- "start": {
- "line": 883,
- "column": 12
- },
- "end": {
- "line": 886,
- "column": 13
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36093,
- 36096
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 12
- },
- "end": {
- "line": 887,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 36097,
- 36103
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 16
- },
- "end": {
- "line": 887,
- "column": 22
- }
- }
- },
- "range": [
- 36093,
- 36103
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 12
- },
- "end": {
- "line": 887,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "reset",
- "range": [
- 36104,
- 36109
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 23
- },
- "end": {
- "line": 887,
- "column": 28
- }
- }
- },
- "range": [
- 36093,
- 36109
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 12
- },
- "end": {
- "line": 887,
- "column": 28
- }
- }
- },
- "arguments": [],
- "range": [
- 36093,
- 36111
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 12
- },
- "end": {
- "line": 887,
- "column": 30
- }
- }
- },
- "range": [
- 36093,
- 36112
- ],
- "loc": {
- "start": {
- "line": 887,
- "column": 12
- },
- "end": {
- "line": 887,
- "column": 31
- }
- }
- }
- ],
- "range": [
- 35954,
- 36122
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 37
- },
- "end": {
- "line": 888,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 35925,
- 36122
- ],
- "loc": {
- "start": {
- "line": 882,
- "column": 8
- },
- "end": {
- "line": 888,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36134,
- 36138
- ],
- "loc": {
- "start": {
- "line": 889,
- "column": 11
- },
- "end": {
- "line": 889,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "btnReset",
- "range": [
- 36139,
- 36147
- ],
- "loc": {
- "start": {
- "line": 889,
- "column": 16
- },
- "end": {
- "line": 889,
- "column": 24
- }
- }
- },
- "range": [
- 36134,
- 36147
- ],
- "loc": {
- "start": {
- "line": 889,
- "column": 11
- },
- "end": {
- "line": 889,
- "column": 24
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36162,
- 36165
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 12
- },
- "end": {
- "line": 890,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "clearButton",
- "range": [
- 36166,
- 36177
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 16
- },
- "end": {
- "line": 890,
- "column": 27
- }
- }
- },
- "range": [
- 36162,
- 36177
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 12
- },
- "end": {
- "line": 890,
- "column": 27
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "ClearButton",
- "range": [
- 36184,
- 36195
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 34
- },
- "end": {
- "line": 890,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 36196,
- 36200
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 46
- },
- "end": {
- "line": 890,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 36180,
- 36201
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 30
- },
- "end": {
- "line": 890,
- "column": 51
- }
- }
- },
- "range": [
- 36162,
- 36201
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 12
- },
- "end": {
- "line": 890,
- "column": 51
- }
- }
- },
- "range": [
- 36162,
- 36202
- ],
- "loc": {
- "start": {
- "line": 890,
- "column": 12
- },
- "end": {
- "line": 890,
- "column": 52
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36215,
- 36218
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 12
- },
- "end": {
- "line": 891,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "clearButton",
- "range": [
- 36219,
- 36230
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 16
- },
- "end": {
- "line": 891,
- "column": 27
- }
- }
- },
- "range": [
- 36215,
- 36230
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 12
- },
- "end": {
- "line": 891,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 36231,
- 36235
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 28
- },
- "end": {
- "line": 891,
- "column": 32
- }
- }
- },
- "range": [
- 36215,
- 36235
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 12
- },
- "end": {
- "line": 891,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 36215,
- 36237
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 12
- },
- "end": {
- "line": 891,
- "column": 34
- }
- }
- },
- "range": [
- 36215,
- 36238
- ],
- "loc": {
- "start": {
- "line": 891,
- "column": 12
- },
- "end": {
- "line": 891,
- "column": 35
- }
- }
- }
- ],
- "range": [
- 36148,
- 36248
- ],
- "loc": {
- "start": {
- "line": 889,
- "column": 25
- },
- "end": {
- "line": 892,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 36131,
- 36248
- ],
- "loc": {
- "start": {
- "line": 889,
- "column": 8
- },
- "end": {
- "line": 892,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36260,
- 36264
- ],
- "loc": {
- "start": {
- "line": 893,
- "column": 11
- },
- "end": {
- "line": 893,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 36265,
- 36269
- ],
- "loc": {
- "start": {
- "line": 893,
- "column": 16
- },
- "end": {
- "line": 893,
- "column": 20
- }
- }
- },
- "range": [
- 36260,
- 36269
- ],
- "loc": {
- "start": {
- "line": 893,
- "column": 11
- },
- "end": {
- "line": 893,
- "column": 20
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36288,
- 36291
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 16
- },
- "end": {
- "line": 894,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 36292,
- 36296
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 20
- },
- "end": {
- "line": 894,
- "column": 24
- }
- }
- },
- "range": [
- 36288,
- 36296
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 16
- },
- "end": {
- "line": 894,
- "column": 24
- }
- }
- },
- "prefix": true,
- "range": [
- 36287,
- 36296
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 15
- },
- "end": {
- "line": 894,
- "column": 24
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36315,
- 36318
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 16
- },
- "end": {
- "line": 895,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 36319,
- 36323
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 20
- },
- "end": {
- "line": 895,
- "column": 24
- }
- }
- },
- "range": [
- 36315,
- 36323
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 16
- },
- "end": {
- "line": 895,
- "column": 24
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Help",
- "range": [
- 36330,
- 36334
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 31
- },
- "end": {
- "line": 895,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 36335,
- 36339
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 36
- },
- "end": {
- "line": 895,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 36326,
- 36340
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 27
- },
- "end": {
- "line": 895,
- "column": 41
- }
- }
- },
- "range": [
- 36315,
- 36340
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 16
- },
- "end": {
- "line": 895,
- "column": 41
- }
- }
- },
- "range": [
- 36315,
- 36341
- ],
- "loc": {
- "start": {
- "line": 895,
- "column": 16
- },
- "end": {
- "line": 895,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 36297,
- 36355
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 25
- },
- "end": {
- "line": 896,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 36284,
- 36355
- ],
- "loc": {
- "start": {
- "line": 894,
- "column": 12
- },
- "end": {
- "line": 896,
- "column": 13
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36368,
- 36371
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 12
- },
- "end": {
- "line": 897,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 36372,
- 36376
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 16
- },
- "end": {
- "line": 897,
- "column": 20
- }
- }
- },
- "range": [
- 36368,
- 36376
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 12
- },
- "end": {
- "line": 897,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 36377,
- 36381
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 21
- },
- "end": {
- "line": 897,
- "column": 25
- }
- }
- },
- "range": [
- 36368,
- 36381
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 12
- },
- "end": {
- "line": 897,
- "column": 25
- }
- }
- },
- "arguments": [],
- "range": [
- 36368,
- 36383
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 12
- },
- "end": {
- "line": 897,
- "column": 27
- }
- }
- },
- "range": [
- 36368,
- 36384
- ],
- "loc": {
- "start": {
- "line": 897,
- "column": 12
- },
- "end": {
- "line": 897,
- "column": 28
- }
- }
- }
- ],
- "range": [
- 36270,
- 36394
- ],
- "loc": {
- "start": {
- "line": 893,
- "column": 21
- },
- "end": {
- "line": 898,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 36257,
- 36394
- ],
- "loc": {
- "start": {
- "line": 893,
- "column": 8
- },
- "end": {
- "line": 898,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36406,
- 36410
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 11
- },
- "end": {
- "line": 899,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasColWidths",
- "range": [
- 36411,
- 36423
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 16
- },
- "end": {
- "line": 899,
- "column": 28
- }
- }
- },
- "range": [
- 36406,
- 36423
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 11
- },
- "end": {
- "line": 899,
- "column": 28
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36428,
- 36432
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 33
- },
- "end": {
- "line": 899,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 36433,
- 36443
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 38
- },
- "end": {
- "line": 899,
- "column": 48
- }
- }
- },
- "range": [
- 36428,
- 36443
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 33
- },
- "end": {
- "line": 899,
- "column": 48
- }
- }
- },
- "prefix": true,
- "range": [
- 36427,
- 36443
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 32
- },
- "end": {
- "line": 899,
- "column": 48
- }
- }
- },
- "range": [
- 36406,
- 36443
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 11
- },
- "end": {
- "line": 899,
- "column": 48
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36458,
- 36462
- ],
- "loc": {
- "start": {
- "line": 900,
- "column": 12
- },
- "end": {
- "line": 900,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setColWidths",
- "range": [
- 36463,
- 36475
- ],
- "loc": {
- "start": {
- "line": 900,
- "column": 17
- },
- "end": {
- "line": 900,
- "column": 29
- }
- }
- },
- "range": [
- 36458,
- 36475
- ],
- "loc": {
- "start": {
- "line": 900,
- "column": 12
- },
- "end": {
- "line": 900,
- "column": 29
- }
- }
- },
- "arguments": [],
- "range": [
- 36458,
- 36477
- ],
- "loc": {
- "start": {
- "line": 900,
- "column": 12
- },
- "end": {
- "line": 900,
- "column": 31
- }
- }
- },
- "range": [
- 36458,
- 36478
- ],
- "loc": {
- "start": {
- "line": 900,
- "column": 12
- },
- "end": {
- "line": 900,
- "column": 32
- }
- }
- }
- ],
- "range": [
- 36444,
- 36488
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 49
- },
- "end": {
- "line": 901,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 36403,
- 36488
- ],
- "loc": {
- "start": {
- "line": 899,
- "column": 8
- },
- "end": {
- "line": 901,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36500,
- 36504
- ],
- "loc": {
- "start": {
- "line": 902,
- "column": 11
- },
- "end": {
- "line": 902,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 36505,
- 36518
- ],
- "loc": {
- "start": {
- "line": 902,
- "column": 16
- },
- "end": {
- "line": 902,
- "column": 29
- }
- }
- },
- "range": [
- 36500,
- 36518
- ],
- "loc": {
- "start": {
- "line": 902,
- "column": 11
- },
- "end": {
- "line": 902,
- "column": 29
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36533,
- 36536
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 12
- },
- "end": {
- "line": 903,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 36537,
- 36550
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 16
- },
- "end": {
- "line": 903,
- "column": 29
- }
- }
- },
- "range": [
- 36533,
- 36550
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 12
- },
- "end": {
- "line": 903,
- "column": 29
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "AlternateRows",
- "range": [
- 36557,
- 36570
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 36
- },
- "end": {
- "line": 903,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 36571,
- 36575
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 50
- },
- "end": {
- "line": 903,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 36553,
- 36576
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 32
- },
- "end": {
- "line": 903,
- "column": 55
- }
- }
- },
- "range": [
- 36533,
- 36576
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 12
- },
- "end": {
- "line": 903,
- "column": 55
- }
- }
- },
- "range": [
- 36533,
- 36577
- ],
- "loc": {
- "start": {
- "line": 903,
- "column": 12
- },
- "end": {
- "line": 903,
- "column": 56
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 36590,
- 36593
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 12
- },
- "end": {
- "line": 904,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 36594,
- 36607
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 16
- },
- "end": {
- "line": 904,
- "column": 29
- }
- }
- },
- "range": [
- 36590,
- 36607
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 12
- },
- "end": {
- "line": 904,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "init",
- "range": [
- 36608,
- 36612
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 30
- },
- "end": {
- "line": 904,
- "column": 34
- }
- }
- },
- "range": [
- 36590,
- 36612
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 12
- },
- "end": {
- "line": 904,
- "column": 34
- }
- }
- },
- "arguments": [],
- "range": [
- 36590,
- 36614
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 12
- },
- "end": {
- "line": 904,
- "column": 36
- }
- }
- },
- "range": [
- 36590,
- 36615
- ],
- "loc": {
- "start": {
- "line": 904,
- "column": 12
- },
- "end": {
- "line": 904,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 36519,
- 36625
- ],
- "loc": {
- "start": {
- "line": 902,
- "column": 30
- },
- "end": {
- "line": 905,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 36497,
- 36625
- ],
- "loc": {
- "start": {
- "line": 902,
- "column": 8
- },
- "end": {
- "line": 905,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36637,
- 36641
- ],
- "loc": {
- "start": {
- "line": 906,
- "column": 11
- },
- "end": {
- "line": 906,
+ "line": 634,
"column": 15
}
}
@@ -82286,31 +56993,31 @@
"type": "Identifier",
"name": "noResults",
"range": [
- 36642,
- 36651
+ 24540,
+ 24549
],
"loc": {
"start": {
- "line": 906,
+ "line": 634,
"column": 16
},
"end": {
- "line": 906,
+ "line": 634,
"column": 25
}
}
},
"range": [
- 36637,
- 36651
+ 24535,
+ 24549
],
"loc": {
"start": {
- "line": 906,
+ "line": 634,
"column": 11
},
"end": {
- "line": 906,
+ "line": 634,
"column": 25
}
}
@@ -82330,16 +57037,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 36670,
- 36673
+ 24568,
+ 24571
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 16
},
"end": {
- "line": 907,
+ "line": 635,
"column": 19
}
}
@@ -82348,47 +57055,47 @@
"type": "Identifier",
"name": "noResults",
"range": [
- 36674,
- 36683
+ 24572,
+ 24581
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 20
},
"end": {
- "line": 907,
+ "line": 635,
"column": 29
}
}
},
"range": [
- 36670,
- 36683
+ 24568,
+ 24581
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 16
},
"end": {
- "line": 907,
+ "line": 635,
"column": 29
}
}
},
"prefix": true,
"range": [
- 36669,
- 36683
+ 24567,
+ 24581
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 15
},
"end": {
- "line": 907,
+ "line": 635,
"column": 29
}
}
@@ -82408,16 +57115,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 36702,
- 36705
+ 24600,
+ 24603
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 16
},
"end": {
- "line": 908,
+ "line": 636,
"column": 19
}
}
@@ -82426,31 +57133,31 @@
"type": "Identifier",
"name": "noResults",
"range": [
- 36706,
- 36715
+ 24604,
+ 24613
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 20
},
"end": {
- "line": 908,
+ "line": 636,
"column": 29
}
}
},
"range": [
- 36702,
- 36715
+ 24600,
+ 24613
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 16
},
"end": {
- "line": 908,
+ "line": 636,
"column": 29
}
}
@@ -82461,16 +57168,16 @@
"type": "Identifier",
"name": "NoResults",
"range": [
- 36722,
- 36731
+ 24620,
+ 24629
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 36
},
"end": {
- "line": 908,
+ "line": 636,
"column": 45
}
}
@@ -82479,94 +57186,94 @@
{
"type": "ThisExpression",
"range": [
- 36732,
- 36736
+ 24630,
+ 24634
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 46
},
"end": {
- "line": 908,
+ "line": 636,
"column": 50
}
}
}
],
"range": [
- 36718,
- 36737
+ 24616,
+ 24635
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 32
},
"end": {
- "line": 908,
+ "line": 636,
"column": 51
}
}
},
"range": [
- 36702,
- 36737
+ 24600,
+ 24635
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 16
},
"end": {
- "line": 908,
+ "line": 636,
"column": 51
}
}
},
"range": [
- 36702,
- 36738
+ 24600,
+ 24636
],
"loc": {
"start": {
- "line": 908,
+ "line": 636,
"column": 16
},
"end": {
- "line": 908,
+ "line": 636,
"column": 52
}
}
}
],
"range": [
- 36684,
- 36752
+ 24582,
+ 24650
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 30
},
"end": {
- "line": 909,
+ "line": 637,
"column": 13
}
}
},
"alternate": null,
"range": [
- 36666,
- 36752
+ 24564,
+ 24650
],
"loc": {
"start": {
- "line": 907,
+ "line": 635,
"column": 12
},
"end": {
- "line": 909,
+ "line": 637,
"column": 13
}
}
@@ -82585,16 +57292,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 36765,
- 36768
+ 24663,
+ 24666
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 12
},
"end": {
- "line": 910,
+ "line": 638,
"column": 15
}
}
@@ -82603,31 +57310,31 @@
"type": "Identifier",
"name": "noResults",
"range": [
- 36769,
- 36778
+ 24667,
+ 24676
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 16
},
"end": {
- "line": 910,
+ "line": 638,
"column": 25
}
}
},
"range": [
- 36765,
- 36778
+ 24663,
+ 24676
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 12
},
"end": {
- "line": 910,
+ "line": 638,
"column": 25
}
}
@@ -82636,94 +57343,94 @@
"type": "Identifier",
"name": "init",
"range": [
- 36779,
- 36783
+ 24677,
+ 24681
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 26
},
"end": {
- "line": 910,
+ "line": 638,
"column": 30
}
}
},
"range": [
- 36765,
- 36783
+ 24663,
+ 24681
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 12
},
"end": {
- "line": 910,
+ "line": 638,
"column": 30
}
}
},
"arguments": [],
"range": [
- 36765,
- 36785
+ 24663,
+ 24683
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 12
},
"end": {
- "line": 910,
+ "line": 638,
"column": 32
}
}
},
"range": [
- 36765,
- 36786
+ 24663,
+ 24684
],
"loc": {
"start": {
- "line": 910,
+ "line": 638,
"column": 12
},
"end": {
- "line": 910,
+ "line": 638,
"column": 33
}
}
}
],
"range": [
- 36652,
- 36796
+ 24550,
+ 24694
],
"loc": {
"start": {
- "line": 906,
+ "line": 634,
"column": 26
},
"end": {
- "line": 911,
+ "line": 639,
"column": 9
}
}
},
"alternate": null,
"range": [
- 36634,
- 36796
+ 24532,
+ 24694
],
"loc": {
"start": {
- "line": 906,
+ "line": 634,
"column": 8
},
"end": {
- "line": 911,
+ "line": 639,
"column": 9
}
}
@@ -82739,123 +57446,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 36806,
- 36810
+ 24704,
+ 24708
],
"loc": {
"start": {
- "line": 913,
+ "line": 641,
"column": 8
},
"end": {
- "line": 913,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 36811,
- 36822
- ],
- "loc": {
- "start": {
- "line": 913,
- "column": 13
- },
- "end": {
- "line": 913,
- "column": 24
- }
- }
- },
- "range": [
- 36806,
- 36822
- ],
- "loc": {
- "start": {
- "line": 913,
- "column": 8
- },
- "end": {
- "line": 913,
- "column": 24
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 36825,
- 36830
- ],
- "loc": {
- "start": {
- "line": 913,
- "column": 27
- },
- "end": {
- "line": 913,
- "column": 32
- }
- }
- },
- "range": [
- 36806,
- 36830
- ],
- "loc": {
- "start": {
- "line": 913,
- "column": 8
- },
- "end": {
- "line": 913,
- "column": 32
- }
- }
- },
- "range": [
- 36806,
- 36831
- ],
- "loc": {
- "start": {
- "line": 913,
- "column": 8
- },
- "end": {
- "line": 913,
- "column": 33
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 36840,
- 36844
- ],
- "loc": {
- "start": {
- "line": 914,
- "column": 8
- },
- "end": {
- "line": 914,
+ "line": 641,
"column": 12
}
}
@@ -82864,31 +57464,31 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 36845,
- 36853
+ 24709,
+ 24717
],
"loc": {
"start": {
- "line": 914,
+ "line": 641,
"column": 13
},
"end": {
- "line": 914,
+ "line": 641,
"column": 21
}
}
},
"range": [
- 36840,
- 36853
+ 24704,
+ 24717
],
"loc": {
"start": {
- "line": 914,
+ "line": 641,
"column": 8
},
"end": {
- "line": 914,
+ "line": 641,
"column": 21
}
}
@@ -82898,46 +57498,46 @@
"value": true,
"raw": "true",
"range": [
- 36856,
- 36860
+ 24720,
+ 24724
],
"loc": {
"start": {
- "line": 914,
+ "line": 641,
"column": 24
},
"end": {
- "line": 914,
+ "line": 641,
"column": 28
}
}
},
"range": [
- 36840,
- 36860
+ 24704,
+ 24724
],
"loc": {
"start": {
- "line": 914,
+ "line": 641,
"column": 8
},
"end": {
- "line": 914,
+ "line": 641,
"column": 28
}
}
},
"range": [
- 36840,
- 36861
+ 24704,
+ 24725
],
"loc": {
"start": {
- "line": 914,
+ "line": 641,
"column": 8
},
"end": {
- "line": 914,
+ "line": 641,
"column": 29
}
}
@@ -82956,16 +57556,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 36874,
- 36878
+ 24738,
+ 24742
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 11
},
"end": {
- "line": 916,
+ "line": 643,
"column": 15
}
}
@@ -82974,31 +57574,31 @@
"type": "Identifier",
"name": "rememberGridValues",
"range": [
- 36879,
- 36897
+ 24743,
+ 24761
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 16
},
"end": {
- "line": 916,
+ "line": 643,
"column": 34
}
}
},
"range": [
- 36874,
- 36897
+ 24738,
+ 24761
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 11
},
"end": {
- "line": 916,
+ "line": 643,
"column": 34
}
}
@@ -83009,16 +57609,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 36901,
- 36905
+ 24765,
+ 24769
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 38
},
"end": {
- "line": 916,
+ "line": 643,
"column": 42
}
}
@@ -83027,46 +57627,46 @@
"type": "Identifier",
"name": "rememberPageLen",
"range": [
- 36906,
- 36921
+ 24770,
+ 24785
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 43
},
"end": {
- "line": 916,
+ "line": 643,
"column": 58
}
}
},
"range": [
- 36901,
- 36921
+ 24765,
+ 24785
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 38
},
"end": {
- "line": 916,
+ "line": 643,
"column": 58
}
}
},
"range": [
- 36874,
- 36921
+ 24738,
+ 24785
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 11
},
"end": {
- "line": 916,
+ "line": 643,
"column": 58
}
}
@@ -83077,16 +57677,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 36937,
- 36941
+ 24801,
+ 24805
],
"loc": {
"start": {
- "line": 917,
+ "line": 644,
"column": 12
},
"end": {
- "line": 917,
+ "line": 644,
"column": 16
}
}
@@ -83095,46 +57695,46 @@
"type": "Identifier",
"name": "rememberPageNb",
"range": [
- 36942,
- 36956
+ 24806,
+ 24820
],
"loc": {
"start": {
- "line": 917,
+ "line": 644,
"column": 17
},
"end": {
- "line": 917,
+ "line": 644,
"column": 31
}
}
},
"range": [
- 36937,
- 36956
+ 24801,
+ 24820
],
"loc": {
"start": {
- "line": 917,
+ "line": 644,
"column": 12
},
"end": {
- "line": 917,
+ "line": 644,
"column": 31
}
}
},
"range": [
- 36874,
- 36956
+ 24738,
+ 24820
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 11
},
"end": {
- "line": 917,
+ "line": 644,
"column": 31
}
}
@@ -83152,16 +57752,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 36971,
- 36975
+ 24835,
+ 24839
],
"loc": {
"start": {
- "line": 918,
+ "line": 645,
"column": 12
},
"end": {
- "line": 918,
+ "line": 645,
"column": 16
}
}
@@ -83170,94 +57770,94 @@
"type": "Identifier",
"name": "resetValues",
"range": [
- 36976,
- 36987
+ 24840,
+ 24851
],
"loc": {
"start": {
- "line": 918,
+ "line": 645,
"column": 17
},
"end": {
- "line": 918,
+ "line": 645,
"column": 28
}
}
},
"range": [
- 36971,
- 36987
+ 24835,
+ 24851
],
"loc": {
"start": {
- "line": 918,
+ "line": 645,
"column": 12
},
"end": {
- "line": 918,
+ "line": 645,
"column": 28
}
}
},
"arguments": [],
"range": [
- 36971,
- 36989
+ 24835,
+ 24853
],
"loc": {
"start": {
- "line": 918,
+ "line": 645,
"column": 12
},
"end": {
- "line": 918,
+ "line": 645,
"column": 30
}
}
},
"range": [
- 36971,
- 36990
+ 24835,
+ 24854
],
"loc": {
"start": {
- "line": 918,
+ "line": 645,
"column": 12
},
"end": {
- "line": 918,
+ "line": 645,
"column": 31
}
}
}
],
"range": [
- 36957,
- 37000
+ 24821,
+ 24864
],
"loc": {
"start": {
- "line": 917,
+ "line": 644,
"column": 32
},
"end": {
- "line": 919,
+ "line": 646,
"column": 9
}
}
},
"alternate": null,
"range": [
- 36871,
- 37000
+ 24735,
+ 24864
],
"loc": {
"start": {
- "line": 916,
+ "line": 643,
"column": 8
},
"end": {
- "line": 919,
+ "line": 646,
"column": 9
}
},
@@ -83266,16 +57866,16 @@
"type": "Line",
"value": "TF css class is added to table",
"range": [
- 37010,
- 37042
+ 24874,
+ 24906
],
"loc": {
"start": {
- "line": 921,
+ "line": 648,
"column": 8
},
"end": {
- "line": 921,
+ "line": 648,
"column": 40
}
}
@@ -83293,16 +57893,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37055,
- 37059
+ 24919,
+ 24923
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 12
},
"end": {
- "line": 922,
+ "line": 649,
"column": 16
}
}
@@ -83311,47 +57911,47 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 37060,
- 37070
+ 24924,
+ 24934
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 17
},
"end": {
- "line": 922,
+ "line": 649,
"column": 27
}
}
},
"range": [
- 37055,
- 37070
+ 24919,
+ 24934
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 12
},
"end": {
- "line": 922,
+ "line": 649,
"column": 27
}
}
},
"prefix": true,
"range": [
- 37054,
- 37070
+ 24918,
+ 24934
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 11
},
"end": {
- "line": 922,
+ "line": 649,
"column": 27
}
}
@@ -83370,16 +57970,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 37085,
- 37088
+ 24949,
+ 24952
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 12
},
"end": {
- "line": 923,
+ "line": 650,
"column": 15
}
}
@@ -83388,31 +57988,31 @@
"type": "Identifier",
"name": "addClass",
"range": [
- 37089,
- 37097
+ 24953,
+ 24961
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 16
},
"end": {
- "line": 923,
+ "line": 650,
"column": 24
}
}
},
"range": [
- 37085,
- 37097
+ 24949,
+ 24961
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 12
},
"end": {
- "line": 923,
+ "line": 650,
"column": 24
}
}
@@ -83424,16 +58024,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37098,
- 37102
+ 24962,
+ 24966
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 25
},
"end": {
- "line": 923,
+ "line": 650,
"column": 29
}
}
@@ -83442,31 +58042,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 37103,
- 37106
+ 24967,
+ 24970
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 30
},
"end": {
- "line": 923,
+ "line": 650,
"column": 33
}
}
},
"range": [
- 37098,
- 37106
+ 24962,
+ 24970
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 25
},
"end": {
- "line": 923,
+ "line": 650,
"column": 33
}
}
@@ -83477,16 +58077,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37108,
- 37112
+ 24972,
+ 24976
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 35
},
"end": {
- "line": 923,
+ "line": 650,
"column": 39
}
}
@@ -83495,94 +58095,94 @@
"type": "Identifier",
"name": "prfxTf",
"range": [
- 37113,
- 37119
+ 24977,
+ 24983
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 40
},
"end": {
- "line": 923,
+ "line": 650,
"column": 46
}
}
},
"range": [
- 37108,
- 37119
+ 24972,
+ 24983
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 35
},
"end": {
- "line": 923,
+ "line": 650,
"column": 46
}
}
}
],
"range": [
- 37085,
- 37120
+ 24949,
+ 24984
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 12
},
"end": {
- "line": 923,
+ "line": 650,
"column": 47
}
}
},
"range": [
- 37085,
- 37121
+ 24949,
+ 24985
],
"loc": {
"start": {
- "line": 923,
+ "line": 650,
"column": 12
},
"end": {
- "line": 923,
+ "line": 650,
"column": 48
}
}
}
],
"range": [
- 37071,
- 37131
+ 24935,
+ 24995
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 28
},
"end": {
- "line": 924,
+ "line": 651,
"column": 9
}
}
},
"alternate": null,
"range": [
- 37051,
- 37131
+ 24915,
+ 24995
],
"loc": {
"start": {
- "line": 922,
+ "line": 649,
"column": 8
},
"end": {
- "line": 924,
+ "line": 651,
"column": 9
}
},
@@ -83591,271 +58191,36 @@
"type": "Line",
"value": "TF css class is added to table",
"range": [
- 37010,
- 37042
+ 24874,
+ 24906
],
"loc": {
"start": {
- "line": 921,
+ "line": 648,
"column": 8
},
"end": {
- "line": 921,
+ "line": 648,
"column": 40
}
}
}
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 37144,
- 37148
- ],
- "loc": {
- "start": {
- "line": 926,
- "column": 11
- },
- "end": {
- "line": 926,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 37149,
- 37155
- ],
- "loc": {
- "start": {
- "line": 926,
- "column": 16
- },
- "end": {
- "line": 926,
- "column": 22
- }
- }
- },
- "range": [
- 37144,
- 37155
- ],
- "loc": {
- "start": {
- "line": 926,
- "column": 11
- },
- "end": {
- "line": 926,
- "column": 22
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 37170,
- 37173
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 12
- },
- "end": {
- "line": 927,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 37174,
- 37180
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 16
- },
- "end": {
- "line": 927,
- "column": 22
- }
- }
- },
- "range": [
- 37170,
- 37180
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 12
- },
- "end": {
- "line": 927,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "show",
- "range": [
- 37181,
- 37185
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 23
- },
- "end": {
- "line": 927,
- "column": 27
- }
- }
- },
- "range": [
- 37170,
- 37185
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 12
- },
- "end": {
- "line": 927,
- "column": 27
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "none",
- "raw": "'none'",
- "range": [
- 37186,
- 37192
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 28
- },
- "end": {
- "line": 927,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 37170,
- 37193
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 12
- },
- "end": {
- "line": 927,
- "column": 35
- }
- }
- },
- "range": [
- 37170,
- 37194
- ],
- "loc": {
- "start": {
- "line": 927,
- "column": 12
- },
- "end": {
- "line": 927,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 37156,
- 37204
- ],
- "loc": {
- "start": {
- "line": 926,
- "column": 23
- },
- "end": {
- "line": 928,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 37141,
- 37204
],
- "loc": {
- "start": {
- "line": 926,
- "column": 8
- },
- "end": {
- "line": 928,
- "column": 9
- }
- },
"trailingComments": [
{
"type": "Block",
"value": " Loads extensions ",
"range": [
- 37214,
- 37236
+ 25005,
+ 25027
],
"loc": {
"start": {
- "line": 930,
+ "line": 653,
"column": 8
},
"end": {
- "line": 930,
+ "line": 653,
"column": 30
}
}
@@ -83870,16 +58235,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37248,
- 37252
+ 25039,
+ 25043
],
"loc": {
"start": {
- "line": 931,
+ "line": 654,
"column": 11
},
"end": {
- "line": 931,
+ "line": 654,
"column": 15
}
}
@@ -83888,31 +58253,31 @@
"type": "Identifier",
"name": "hasExtensions",
"range": [
- 37253,
- 37266
+ 25044,
+ 25057
],
"loc": {
"start": {
- "line": 931,
+ "line": 654,
"column": 16
},
"end": {
- "line": 931,
+ "line": 654,
"column": 29
}
}
},
"range": [
- 37248,
- 37266
+ 25039,
+ 25057
],
"loc": {
"start": {
- "line": 931,
+ "line": 654,
"column": 11
},
"end": {
- "line": 931,
+ "line": 654,
"column": 29
}
}
@@ -83930,16 +58295,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37281,
- 37285
+ 25072,
+ 25076
],
"loc": {
"start": {
- "line": 932,
+ "line": 655,
"column": 12
},
"end": {
- "line": 932,
+ "line": 655,
"column": 16
}
}
@@ -83948,94 +58313,94 @@
"type": "Identifier",
"name": "initExtensions",
"range": [
- 37286,
- 37300
+ 25077,
+ 25091
],
"loc": {
"start": {
- "line": 932,
+ "line": 655,
"column": 17
},
"end": {
- "line": 932,
+ "line": 655,
"column": 31
}
}
},
"range": [
- 37281,
- 37300
+ 25072,
+ 25091
],
"loc": {
"start": {
- "line": 932,
+ "line": 655,
"column": 12
},
"end": {
- "line": 932,
+ "line": 655,
"column": 31
}
}
},
"arguments": [],
"range": [
- 37281,
- 37302
+ 25072,
+ 25093
],
"loc": {
"start": {
- "line": 932,
+ "line": 655,
"column": 12
},
"end": {
- "line": 932,
+ "line": 655,
"column": 33
}
}
},
"range": [
- 37281,
- 37303
+ 25072,
+ 25094
],
"loc": {
"start": {
- "line": 932,
+ "line": 655,
"column": 12
},
"end": {
- "line": 932,
+ "line": 655,
"column": 34
}
}
}
],
"range": [
- 37267,
- 37313
+ 25058,
+ 25104
],
"loc": {
"start": {
- "line": 931,
+ "line": 654,
"column": 30
},
"end": {
- "line": 933,
+ "line": 656,
"column": 9
}
}
},
"alternate": null,
"range": [
- 37245,
- 37313
+ 25036,
+ 25104
],
"loc": {
"start": {
- "line": 931,
+ "line": 654,
"column": 8
},
"end": {
- "line": 933,
+ "line": 656,
"column": 9
}
},
@@ -84044,16 +58409,36 @@
"type": "Block",
"value": " Loads extensions ",
"range": [
- 37214,
- 37236
+ 25005,
+ 25027
],
"loc": {
"start": {
- "line": 930,
+ "line": 653,
"column": 8
},
"end": {
- "line": 930,
+ "line": 653,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 25114,
+ 25136
+ ],
+ "loc": {
+ "start": {
+ "line": 658,
+ "column": 8
+ },
+ "end": {
+ "line": 658,
"column": 30
}
}
@@ -84068,16 +58453,1037 @@
"object": {
"type": "ThisExpression",
"range": [
- 37326,
- 37330
+ 25148,
+ 25152
],
"loc": {
"start": {
- "line": 935,
+ "line": 659,
"column": 11
},
"end": {
- "line": 935,
+ "line": 659,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "markActiveColumns",
+ "range": [
+ 25153,
+ 25170
+ ],
+ "loc": {
+ "start": {
+ "line": 659,
+ "column": 16
+ },
+ "end": {
+ "line": 659,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 25148,
+ 25170
+ ],
+ "loc": {
+ "start": {
+ "line": 659,
+ "column": 11
+ },
+ "end": {
+ "line": 659,
+ "column": 33
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25185,
+ 25189
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 12
+ },
+ "end": {
+ "line": 660,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 25190,
+ 25197
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 17
+ },
+ "end": {
+ "line": 660,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 25185,
+ 25197
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 12
+ },
+ "end": {
+ "line": 660,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 25198,
+ 25200
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 25
+ },
+ "end": {
+ "line": 660,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 25185,
+ 25200
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 12
+ },
+ "end": {
+ "line": 660,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 25202,
+ 25220
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 29
+ },
+ "end": {
+ "line": 660,
+ "column": 47
+ }
+ }
+ }
+ ],
+ "range": [
+ 25201,
+ 25221
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 28
+ },
+ "end": {
+ "line": 660,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25244,
+ 25248
+ ],
+ "loc": {
+ "start": {
+ "line": 661,
+ "column": 21
+ },
+ "end": {
+ "line": 661,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearActiveColumns",
+ "range": [
+ 25249,
+ 25267
+ ],
+ "loc": {
+ "start": {
+ "line": 661,
+ "column": 26
+ },
+ "end": {
+ "line": 661,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 25244,
+ 25267
+ ],
+ "loc": {
+ "start": {
+ "line": 661,
+ "column": 21
+ },
+ "end": {
+ "line": 661,
+ "column": 44
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 25244,
+ 25269
+ ],
+ "loc": {
+ "start": {
+ "line": 661,
+ "column": 21
+ },
+ "end": {
+ "line": 661,
+ "column": 46
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 25239,
+ 25269
+ ],
+ "loc": {
+ "start": {
+ "line": 661,
+ "column": 16
+ },
+ "end": {
+ "line": 661,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 25185,
+ 25270
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 12
+ },
+ "end": {
+ "line": 661,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 25185,
+ 25271
+ ],
+ "loc": {
+ "start": {
+ "line": 660,
+ "column": 12
+ },
+ "end": {
+ "line": 661,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25284,
+ 25288
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 12
+ },
+ "end": {
+ "line": 662,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 25289,
+ 25296
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 17
+ },
+ "end": {
+ "line": 662,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 25284,
+ 25296
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 12
+ },
+ "end": {
+ "line": 662,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 25297,
+ 25299
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 25
+ },
+ "end": {
+ "line": 662,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 25284,
+ 25299
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 12
+ },
+ "end": {
+ "line": 662,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "cell-processed",
+ "raw": "'cell-processed'",
+ "range": [
+ 25301,
+ 25317
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 29
+ },
+ "end": {
+ "line": 662,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 25300,
+ 25318
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 28
+ },
+ "end": {
+ "line": 662,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 25337,
+ 25339
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 17
+ },
+ "end": {
+ "line": 663,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 25341,
+ 25349
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 21
+ },
+ "end": {
+ "line": 663,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25353,
+ 25357
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 33
+ },
+ "end": {
+ "line": 663,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "markActiveColumn",
+ "range": [
+ 25358,
+ 25374
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 38
+ },
+ "end": {
+ "line": 663,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 25353,
+ 25374
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 33
+ },
+ "end": {
+ "line": 663,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 25375,
+ 25383
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 55
+ },
+ "end": {
+ "line": 663,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 25353,
+ 25384
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 33
+ },
+ "end": {
+ "line": 663,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 25336,
+ 25384
+ ],
+ "loc": {
+ "start": {
+ "line": 663,
+ "column": 16
+ },
+ "end": {
+ "line": 663,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 25284,
+ 25385
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 12
+ },
+ "end": {
+ "line": 663,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 25284,
+ 25386
+ ],
+ "loc": {
+ "start": {
+ "line": 662,
+ "column": 12
+ },
+ "end": {
+ "line": 663,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 25171,
+ 25396
+ ],
+ "loc": {
+ "start": {
+ "line": 659,
+ "column": 34
+ },
+ "end": {
+ "line": 664,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 25145,
+ 25396
+ ],
+ "loc": {
+ "start": {
+ "line": 659,
+ "column": 8
+ },
+ "end": {
+ "line": 664,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 25114,
+ 25136
+ ],
+ "loc": {
+ "start": {
+ "line": 658,
+ "column": 8
+ },
+ "end": {
+ "line": 658,
+ "column": 30
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25408,
+ 25412
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 11
+ },
+ "end": {
+ "line": 665,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkedFilters",
+ "range": [
+ 25413,
+ 25426
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 16
+ },
+ "end": {
+ "line": 665,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 25408,
+ 25426
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 11
+ },
+ "end": {
+ "line": 665,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25441,
+ 25445
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 12
+ },
+ "end": {
+ "line": 666,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 25446,
+ 25453
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 17
+ },
+ "end": {
+ "line": 666,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 25441,
+ 25453
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 12
+ },
+ "end": {
+ "line": 666,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "on",
+ "range": [
+ 25454,
+ 25456
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 25
+ },
+ "end": {
+ "line": 666,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 25441,
+ 25456
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 12
+ },
+ "end": {
+ "line": 666,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 25458,
+ 25475
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 29
+ },
+ "end": {
+ "line": 666,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 25457,
+ 25476
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 28
+ },
+ "end": {
+ "line": 666,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25483,
+ 25487
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 54
+ },
+ "end": {
+ "line": 666,
+ "column": 58
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkFilters",
+ "range": [
+ 25488,
+ 25499
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 59
+ },
+ "end": {
+ "line": 666,
+ "column": 70
+ }
+ }
+ },
+ "range": [
+ 25483,
+ 25499
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 54
+ },
+ "end": {
+ "line": 666,
+ "column": 70
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 25483,
+ 25501
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 54
+ },
+ "end": {
+ "line": 666,
+ "column": 72
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 25478,
+ 25501
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 49
+ },
+ "end": {
+ "line": 666,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 25441,
+ 25502
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 12
+ },
+ "end": {
+ "line": 666,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 25441,
+ 25503
+ ],
+ "loc": {
+ "start": {
+ "line": 666,
+ "column": 12
+ },
+ "end": {
+ "line": 666,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 25427,
+ 25513
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 30
+ },
+ "end": {
+ "line": 667,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 25405,
+ 25513
+ ],
+ "loc": {
+ "start": {
+ "line": 665,
+ "column": 8
+ },
+ "end": {
+ "line": 667,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25526,
+ 25530
+ ],
+ "loc": {
+ "start": {
+ "line": 669,
+ "column": 11
+ },
+ "end": {
+ "line": 669,
"column": 15
}
}
@@ -84086,31 +59492,31 @@
"type": "Identifier",
"name": "onFiltersLoaded",
"range": [
- 37331,
- 37346
+ 25531,
+ 25546
],
"loc": {
"start": {
- "line": 935,
+ "line": 669,
"column": 16
},
"end": {
- "line": 935,
+ "line": 669,
"column": 31
}
}
},
"range": [
- 37326,
- 37346
+ 25526,
+ 25546
],
"loc": {
"start": {
- "line": 935,
+ "line": 669,
"column": 11
},
"end": {
- "line": 935,
+ "line": 669,
"column": 31
}
}
@@ -84131,16 +59537,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 37361,
- 37365
+ 25561,
+ 25565
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 12
},
"end": {
- "line": 936,
+ "line": 670,
"column": 16
}
}
@@ -84149,31 +59555,31 @@
"type": "Identifier",
"name": "onFiltersLoaded",
"range": [
- 37366,
- 37381
+ 25566,
+ 25581
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 17
},
"end": {
- "line": 936,
+ "line": 670,
"column": 32
}
}
},
"range": [
- 37361,
- 37381
+ 25561,
+ 25581
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 12
},
"end": {
- "line": 936,
+ "line": 670,
"column": 32
}
}
@@ -84182,31 +59588,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 37382,
- 37386
+ 25582,
+ 25586
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 33
},
"end": {
- "line": 936,
+ "line": 670,
"column": 37
}
}
},
"range": [
- 37361,
- 37386
+ 25561,
+ 25586
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 12
},
"end": {
- "line": 936,
+ "line": 670,
"column": 37
}
}
@@ -84217,16 +59623,16 @@
"value": null,
"raw": "null",
"range": [
- 37387,
- 37391
+ 25587,
+ 25591
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 38
},
"end": {
- "line": 936,
+ "line": 670,
"column": 42
}
}
@@ -84234,95 +59640,363 @@
{
"type": "ThisExpression",
"range": [
- 37393,
- 37397
+ 25593,
+ 25597
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 44
},
"end": {
- "line": 936,
+ "line": 670,
"column": 48
}
}
}
],
"range": [
- 37361,
- 37398
+ 25561,
+ 25598
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 12
},
"end": {
- "line": 936,
+ "line": 670,
"column": 49
}
}
},
"range": [
- 37361,
- 37399
+ 25561,
+ 25599
],
"loc": {
"start": {
- "line": 936,
+ "line": 670,
"column": 12
},
"end": {
- "line": 936,
+ "line": 670,
"column": 50
}
}
}
],
"range": [
- 37347,
- 37409
+ 25547,
+ 25609
],
"loc": {
"start": {
- "line": 935,
+ "line": 669,
"column": 32
},
"end": {
- "line": 937,
+ "line": 671,
"column": 9
}
}
},
"alternate": null,
"range": [
- 37323,
- 37409
+ 25523,
+ 25609
],
"loc": {
"start": {
- "line": 935,
+ "line": 669,
"column": 8
},
"end": {
- "line": 937,
+ "line": 671,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25619,
+ 25623
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 8
+ },
+ "end": {
+ "line": 673,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 25624,
+ 25635
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 13
+ },
+ "end": {
+ "line": 673,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 25619,
+ 25635
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 8
+ },
+ "end": {
+ "line": 673,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": true,
+ "raw": "true",
+ "range": [
+ 25638,
+ 25642
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 27
+ },
+ "end": {
+ "line": 673,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 25619,
+ 25642
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 8
+ },
+ "end": {
+ "line": 673,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 25619,
+ 25643
+ ],
+ "loc": {
+ "start": {
+ "line": 673,
+ "column": 8
+ },
+ "end": {
+ "line": 673,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25652,
+ 25656
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 8
+ },
+ "end": {
+ "line": 674,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 25657,
+ 25664
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 13
+ },
+ "end": {
+ "line": 674,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 25652,
+ 25664
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 8
+ },
+ "end": {
+ "line": 674,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 25665,
+ 25669
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 21
+ },
+ "end": {
+ "line": 674,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 25652,
+ 25669
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 8
+ },
+ "end": {
+ "line": 674,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "initialized",
+ "raw": "'initialized'",
+ "range": [
+ 25670,
+ 25683
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 26
+ },
+ "end": {
+ "line": 674,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 25685,
+ 25689
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 41
+ },
+ "end": {
+ "line": 674,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 25652,
+ 25690
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 8
+ },
+ "end": {
+ "line": 674,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 25652,
+ 25691
+ ],
+ "loc": {
+ "start": {
+ "line": 674,
+ "column": 8
+ },
+ "end": {
+ "line": 674,
+ "column": 47
+ }
+ }
}
],
"range": [
- 25071,
- 37415
+ 19970,
+ 25697
],
"loc": {
"start": {
- "line": 604,
+ "line": 485,
"column": 10
},
"end": {
- "line": 938,
+ "line": 675,
"column": 5
}
}
@@ -84330,16 +60004,16 @@
"generator": false,
"expression": false,
"range": [
- 25069,
- 37415
+ 19968,
+ 25697
],
"loc": {
"start": {
- "line": 604,
+ "line": 485,
"column": 8
},
"end": {
- "line": 938,
+ "line": 675,
"column": 5
}
}
@@ -84347,34 +60021,34 @@
"kind": "method",
"computed": false,
"range": [
- 25065,
- 37415
+ 19964,
+ 25697
],
"loc": {
"start": {
- "line": 604,
+ "line": 485,
"column": 4
},
"end": {
- "line": 938,
+ "line": 675,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Initialise filtering grid bar behaviours and layout\n *\n * TODO: decompose in smaller methods\n ",
+ "value": "*\n * Initialise features and layout\n ",
"range": [
- 24941,
- 25060
+ 19910,
+ 19959
],
"loc": {
"start": {
- "line": 599,
+ "line": 482,
"column": 4
},
"end": {
- "line": 603,
+ "line": 484,
"column": 7
}
}
@@ -84383,18 +60057,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Manages state messages\n * @param {String} evt Event name\n * @param {Object} cfg Config object\n ",
+ "value": "*\n * Insert filters row at initialization\n ",
"range": [
- 37421,
- 37541
+ 25703,
+ 25758
],
"loc": {
"start": {
- "line": 940,
+ "line": 677,
"column": 4
},
"end": {
- "line": 944,
+ "line": 679,
"column": 7
}
}
@@ -84406,19 +60080,3067 @@
"type": "MethodDefinition",
"key": {
"type": "Identifier",
- "name": "EvtManager",
+ "name": "_insertFiltersRow",
"range": [
- 37546,
- 37556
+ 25763,
+ 25780
],
"loc": {
"start": {
- "line": 945,
+ "line": 680,
"column": 4
},
"end": {
- "line": 945,
- "column": 14
+ "line": 680,
+ "column": 21
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25796,
+ 25800
+ ],
+ "loc": {
+ "start": {
+ "line": 681,
+ "column": 11
+ },
+ "end": {
+ "line": 681,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "gridLayout",
+ "range": [
+ 25801,
+ 25811
+ ],
+ "loc": {
+ "start": {
+ "line": 681,
+ "column": 16
+ },
+ "end": {
+ "line": 681,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 25796,
+ 25811
+ ],
+ "loc": {
+ "start": {
+ "line": 681,
+ "column": 11
+ },
+ "end": {
+ "line": 681,
+ "column": 26
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 25826,
+ 25833
+ ],
+ "loc": {
+ "start": {
+ "line": 682,
+ "column": 12
+ },
+ "end": {
+ "line": 682,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 25812,
+ 25843
+ ],
+ "loc": {
+ "start": {
+ "line": 681,
+ "column": 27
+ },
+ "end": {
+ "line": 683,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 25793,
+ 25843
+ ],
+ "loc": {
+ "start": {
+ "line": 681,
+ "column": 8
+ },
+ "end": {
+ "line": 683,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 25856,
+ 25862
+ ],
+ "loc": {
+ "start": {
+ "line": 684,
+ "column": 12
+ },
+ "end": {
+ "line": 684,
+ "column": 18
+ }
+ }
+ },
+ "init": null,
+ "range": [
+ 25856,
+ 25862
+ ],
+ "loc": {
+ "start": {
+ "line": 684,
+ "column": 12
+ },
+ "end": {
+ "line": 684,
+ "column": 18
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 25852,
+ 25863
+ ],
+ "loc": {
+ "start": {
+ "line": 684,
+ "column": 8
+ },
+ "end": {
+ "line": 684,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "thead",
+ "range": [
+ 25877,
+ 25882
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 12
+ },
+ "end": {
+ "line": 686,
+ "column": 17
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 25885,
+ 25888
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 20
+ },
+ "end": {
+ "line": 686,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tag",
+ "range": [
+ 25889,
+ 25892
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 24
+ },
+ "end": {
+ "line": 686,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 25885,
+ 25892
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 20
+ },
+ "end": {
+ "line": 686,
+ "column": 27
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25893,
+ 25897
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 28
+ },
+ "end": {
+ "line": 686,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tbl",
+ "range": [
+ 25898,
+ 25901
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 33
+ },
+ "end": {
+ "line": 686,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 25893,
+ 25901
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 28
+ },
+ "end": {
+ "line": 686,
+ "column": 36
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "thead",
+ "raw": "'thead'",
+ "range": [
+ 25903,
+ 25910
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 38
+ },
+ "end": {
+ "line": 686,
+ "column": 45
+ }
+ }
+ }
+ ],
+ "range": [
+ 25885,
+ 25911
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 20
+ },
+ "end": {
+ "line": 686,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 25877,
+ 25911
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 12
+ },
+ "end": {
+ "line": 686,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 25873,
+ 25912
+ ],
+ "loc": {
+ "start": {
+ "line": 686,
+ "column": 8
+ },
+ "end": {
+ "line": 686,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "thead",
+ "range": [
+ 25924,
+ 25929
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 11
+ },
+ "end": {
+ "line": 687,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 25930,
+ 25936
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 17
+ },
+ "end": {
+ "line": 687,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 25924,
+ 25936
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 11
+ },
+ "end": {
+ "line": 687,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 25939,
+ 25940
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 26
+ },
+ "end": {
+ "line": 687,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 25924,
+ 25940
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 11
+ },
+ "end": {
+ "line": 687,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 25955,
+ 25961
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 12
+ },
+ "end": {
+ "line": 688,
+ "column": 18
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "thead",
+ "range": [
+ 25964,
+ 25969
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 21
+ },
+ "end": {
+ "line": 688,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 25970,
+ 25971
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 27
+ },
+ "end": {
+ "line": 688,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 25964,
+ 25972
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 21
+ },
+ "end": {
+ "line": 688,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "insertRow",
+ "range": [
+ 25973,
+ 25982
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 30
+ },
+ "end": {
+ "line": 688,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 25964,
+ 25982
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 21
+ },
+ "end": {
+ "line": 688,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 25983,
+ 25987
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 40
+ },
+ "end": {
+ "line": 688,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filtersRowIndex",
+ "range": [
+ 25988,
+ 26003
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 45
+ },
+ "end": {
+ "line": 688,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 25983,
+ 26003
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 40
+ },
+ "end": {
+ "line": 688,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 25964,
+ 26004
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 21
+ },
+ "end": {
+ "line": 688,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 25955,
+ 26004
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 12
+ },
+ "end": {
+ "line": 688,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 25955,
+ 26005
+ ],
+ "loc": {
+ "start": {
+ "line": 688,
+ "column": 12
+ },
+ "end": {
+ "line": 688,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 25941,
+ 26015
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 28
+ },
+ "end": {
+ "line": 689,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 26035,
+ 26041
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 12
+ },
+ "end": {
+ "line": 690,
+ "column": 18
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26044,
+ 26048
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 21
+ },
+ "end": {
+ "line": 690,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "tbl",
+ "range": [
+ 26049,
+ 26052
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 26
+ },
+ "end": {
+ "line": 690,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 26044,
+ 26052
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 21
+ },
+ "end": {
+ "line": 690,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "insertRow",
+ "range": [
+ 26053,
+ 26062
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 30
+ },
+ "end": {
+ "line": 690,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 26044,
+ 26062
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 21
+ },
+ "end": {
+ "line": 690,
+ "column": 39
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26063,
+ 26067
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 40
+ },
+ "end": {
+ "line": 690,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filtersRowIndex",
+ "range": [
+ 26068,
+ 26083
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 45
+ },
+ "end": {
+ "line": 690,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 26063,
+ 26083
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 40
+ },
+ "end": {
+ "line": 690,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 26044,
+ 26084
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 21
+ },
+ "end": {
+ "line": 690,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 26035,
+ 26084
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 12
+ },
+ "end": {
+ "line": 690,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 26035,
+ 26085
+ ],
+ "loc": {
+ "start": {
+ "line": 690,
+ "column": 12
+ },
+ "end": {
+ "line": 690,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 26021,
+ 26095
+ ],
+ "loc": {
+ "start": {
+ "line": 689,
+ "column": 15
+ },
+ "end": {
+ "line": 691,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 25921,
+ 26095
+ ],
+ "loc": {
+ "start": {
+ "line": 687,
+ "column": 8
+ },
+ "end": {
+ "line": 691,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26108,
+ 26112
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 11
+ },
+ "end": {
+ "line": 693,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 26113,
+ 26123
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 16
+ },
+ "end": {
+ "line": 693,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 26108,
+ 26123
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 11
+ },
+ "end": {
+ "line": 693,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 26126,
+ 26127
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 29
+ },
+ "end": {
+ "line": 693,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 26108,
+ 26127
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 11
+ },
+ "end": {
+ "line": 693,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "<=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26131,
+ 26135
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 34
+ },
+ "end": {
+ "line": 693,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filtersRowIndex",
+ "range": [
+ 26136,
+ 26151
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 39
+ },
+ "end": {
+ "line": 693,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 26131,
+ 26151
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 34
+ },
+ "end": {
+ "line": 693,
+ "column": 54
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26155,
+ 26159
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 58
+ },
+ "end": {
+ "line": 693,
+ "column": 62
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 26160,
+ 26170
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 63
+ },
+ "end": {
+ "line": 693,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 26155,
+ 26170
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 58
+ },
+ "end": {
+ "line": 693,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 26131,
+ 26170
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 34
+ },
+ "end": {
+ "line": 693,
+ "column": 73
+ }
+ }
+ },
+ "range": [
+ 26108,
+ 26170
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 11
+ },
+ "end": {
+ "line": 693,
+ "column": 73
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26185,
+ 26189
+ ],
+ "loc": {
+ "start": {
+ "line": 694,
+ "column": 12
+ },
+ "end": {
+ "line": 694,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "headersRow",
+ "range": [
+ 26190,
+ 26200
+ ],
+ "loc": {
+ "start": {
+ "line": 694,
+ "column": 17
+ },
+ "end": {
+ "line": 694,
+ "column": 27
+ }
+ }
+ },
+ "range": [
+ 26185,
+ 26200
+ ],
+ "loc": {
+ "start": {
+ "line": 694,
+ "column": 12
+ },
+ "end": {
+ "line": 694,
+ "column": 27
+ }
+ }
+ },
+ "prefix": false,
+ "range": [
+ 26185,
+ 26202
+ ],
+ "loc": {
+ "start": {
+ "line": 694,
+ "column": 12
+ },
+ "end": {
+ "line": 694,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 26185,
+ 26203
+ ],
+ "loc": {
+ "start": {
+ "line": 694,
+ "column": 12
+ },
+ "end": {
+ "line": 694,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "range": [
+ 26171,
+ 26213
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 74
+ },
+ "end": {
+ "line": 695,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 26105,
+ 26213
+ ],
+ "loc": {
+ "start": {
+ "line": 693,
+ "column": 8
+ },
+ "end": {
+ "line": 695,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 26223,
+ 26229
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 8
+ },
+ "end": {
+ "line": 697,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "className",
+ "range": [
+ 26230,
+ 26239
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 15
+ },
+ "end": {
+ "line": 697,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 26223,
+ 26239
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 8
+ },
+ "end": {
+ "line": 697,
+ "column": 24
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26242,
+ 26246
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 27
+ },
+ "end": {
+ "line": 697,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltsRowCssClass",
+ "range": [
+ 26247,
+ 26262
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 32
+ },
+ "end": {
+ "line": 697,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 26242,
+ 26262
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 27
+ },
+ "end": {
+ "line": 697,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 26223,
+ 26262
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 8
+ },
+ "end": {
+ "line": 697,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 26223,
+ 26263
+ ],
+ "loc": {
+ "start": {
+ "line": 697,
+ "column": 8
+ },
+ "end": {
+ "line": 697,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26276,
+ 26280
+ ],
+ "loc": {
+ "start": {
+ "line": 699,
+ "column": 11
+ },
+ "end": {
+ "line": 699,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 26281,
+ 26294
+ ],
+ "loc": {
+ "start": {
+ "line": 699,
+ "column": 16
+ },
+ "end": {
+ "line": 699,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 26276,
+ 26294
+ ],
+ "loc": {
+ "start": {
+ "line": 699,
+ "column": 11
+ },
+ "end": {
+ "line": 699,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 26309,
+ 26315
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 12
+ },
+ "end": {
+ "line": 700,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "style",
+ "range": [
+ 26316,
+ 26321
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 19
+ },
+ "end": {
+ "line": 700,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 26309,
+ 26321
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 12
+ },
+ "end": {
+ "line": 700,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "display",
+ "range": [
+ 26322,
+ 26329
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 25
+ },
+ "end": {
+ "line": 700,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 26309,
+ 26329
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 12
+ },
+ "end": {
+ "line": 700,
+ "column": 32
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "none",
+ "raw": "'none'",
+ "range": [
+ 26332,
+ 26338
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 35
+ },
+ "end": {
+ "line": 700,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 26309,
+ 26338
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 12
+ },
+ "end": {
+ "line": 700,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 26309,
+ 26339
+ ],
+ "loc": {
+ "start": {
+ "line": 700,
+ "column": 12
+ },
+ "end": {
+ "line": 700,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 26295,
+ 26349
+ ],
+ "loc": {
+ "start": {
+ "line": 699,
+ "column": 30
+ },
+ "end": {
+ "line": 701,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 26273,
+ 26349
+ ],
+ "loc": {
+ "start": {
+ "line": 699,
+ "column": 8
+ },
+ "end": {
+ "line": 701,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26359,
+ 26363
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 8
+ },
+ "end": {
+ "line": 703,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 26364,
+ 26371
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 13
+ },
+ "end": {
+ "line": 703,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 26359,
+ 26371
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 8
+ },
+ "end": {
+ "line": 703,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 26372,
+ 26376
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 21
+ },
+ "end": {
+ "line": 703,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 26359,
+ 26376
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 8
+ },
+ "end": {
+ "line": 703,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "filters-row-inserted",
+ "raw": "'filters-row-inserted'",
+ "range": [
+ 26377,
+ 26399
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 26
+ },
+ "end": {
+ "line": 703,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 26401,
+ 26405
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 50
+ },
+ "end": {
+ "line": 703,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 26407,
+ 26413
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 56
+ },
+ "end": {
+ "line": 703,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 26359,
+ 26414
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 8
+ },
+ "end": {
+ "line": 703,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 26359,
+ 26415
+ ],
+ "loc": {
+ "start": {
+ "line": 703,
+ "column": 8
+ },
+ "end": {
+ "line": 703,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "ReturnStatement",
+ "argument": {
+ "type": "Identifier",
+ "name": "fltrow",
+ "range": [
+ 26431,
+ 26437
+ ],
+ "loc": {
+ "start": {
+ "line": 704,
+ "column": 15
+ },
+ "end": {
+ "line": 704,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 26424,
+ 26438
+ ],
+ "loc": {
+ "start": {
+ "line": 704,
+ "column": 8
+ },
+ "end": {
+ "line": 704,
+ "column": 22
+ }
+ }
+ }
+ ],
+ "range": [
+ 25783,
+ 26444
+ ],
+ "loc": {
+ "start": {
+ "line": 680,
+ "column": 24
+ },
+ "end": {
+ "line": 705,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 25780,
+ 26444
+ ],
+ "loc": {
+ "start": {
+ "line": 680,
+ "column": 21
+ },
+ "end": {
+ "line": 705,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 25763,
+ 26444
+ ],
+ "loc": {
+ "start": {
+ "line": 680,
+ "column": 4
+ },
+ "end": {
+ "line": 705,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Insert filters row at initialization\n ",
+ "range": [
+ 25703,
+ 25758
+ ],
+ "loc": {
+ "start": {
+ "line": 677,
+ "column": 4
+ },
+ "end": {
+ "line": 679,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Initialize filtersless table\n ",
+ "range": [
+ 26450,
+ 26497
+ ],
+ "loc": {
+ "start": {
+ "line": 707,
+ "column": 4
+ },
+ "end": {
+ "line": 709,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "_initNoFilters",
+ "range": [
+ 26502,
+ 26516
+ ],
+ "loc": {
+ "start": {
+ "line": 710,
+ "column": 4
+ },
+ "end": {
+ "line": 710,
+ "column": 18
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26531,
+ 26535
+ ],
+ "loc": {
+ "start": {
+ "line": 711,
+ "column": 11
+ },
+ "end": {
+ "line": 711,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltGrid",
+ "range": [
+ 26536,
+ 26543
+ ],
+ "loc": {
+ "start": {
+ "line": 711,
+ "column": 16
+ },
+ "end": {
+ "line": 711,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 26531,
+ 26543
+ ],
+ "loc": {
+ "start": {
+ "line": 711,
+ "column": 11
+ },
+ "end": {
+ "line": 711,
+ "column": 23
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 26558,
+ 26565
+ ],
+ "loc": {
+ "start": {
+ "line": 712,
+ "column": 12
+ },
+ "end": {
+ "line": 712,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 26544,
+ 26575
+ ],
+ "loc": {
+ "start": {
+ "line": 711,
+ "column": 24
+ },
+ "end": {
+ "line": 713,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 26528,
+ 26575
+ ],
+ "loc": {
+ "start": {
+ "line": 711,
+ "column": 8
+ },
+ "end": {
+ "line": 713,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26584,
+ 26588
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 8
+ },
+ "end": {
+ "line": 714,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 26589,
+ 26595
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 13
+ },
+ "end": {
+ "line": 714,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 26584,
+ 26595
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 8
+ },
+ "end": {
+ "line": 714,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26598,
+ 26602
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 22
+ },
+ "end": {
+ "line": 714,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 26603,
+ 26609
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 27
+ },
+ "end": {
+ "line": 714,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 26598,
+ 26609
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 22
+ },
+ "end": {
+ "line": 714,
+ "column": 33
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 26612,
+ 26613
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 36
+ },
+ "end": {
+ "line": 714,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 26598,
+ 26613
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 22
+ },
+ "end": {
+ "line": 714,
+ "column": 37
+ }
+ }
+ },
+ "consequent": {
+ "type": "BinaryExpression",
+ "operator": "-",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26616,
+ 26620
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 40
+ },
+ "end": {
+ "line": 714,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 26621,
+ 26627
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 45
+ },
+ "end": {
+ "line": 714,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 26616,
+ 26627
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 40
+ },
+ "end": {
+ "line": 714,
+ "column": 51
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 26628,
+ 26629
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 52
+ },
+ "end": {
+ "line": 714,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 26616,
+ 26629
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 40
+ },
+ "end": {
+ "line": 714,
+ "column": 53
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 26632,
+ 26633
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 56
+ },
+ "end": {
+ "line": 714,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26598,
+ 26633
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 22
+ },
+ "end": {
+ "line": 714,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26584,
+ 26633
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 8
+ },
+ "end": {
+ "line": 714,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26584,
+ 26634
+ ],
+ "loc": {
+ "start": {
+ "line": 714,
+ "column": 8
+ },
+ "end": {
+ "line": 714,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26643,
+ 26647
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 8
+ },
+ "end": {
+ "line": 715,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 26648,
+ 26664
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 13
+ },
+ "end": {
+ "line": 715,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 26643,
+ 26664
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 8
+ },
+ "end": {
+ "line": 715,
+ "column": 29
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26667,
+ 26671
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 32
+ },
+ "end": {
+ "line": 715,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getRowsNb",
+ "range": [
+ 26672,
+ 26681
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 37
+ },
+ "end": {
+ "line": 715,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 26667,
+ 26681
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 32
+ },
+ "end": {
+ "line": 715,
+ "column": 46
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 26667,
+ 26683
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 32
+ },
+ "end": {
+ "line": 715,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 26643,
+ 26683
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 8
+ },
+ "end": {
+ "line": 715,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 26643,
+ 26684
+ ],
+ "loc": {
+ "start": {
+ "line": 715,
+ "column": 8
+ },
+ "end": {
+ "line": 715,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26693,
+ 26697
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 8
+ },
+ "end": {
+ "line": 716,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbVisibleRows",
+ "range": [
+ 26698,
+ 26711
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 13
+ },
+ "end": {
+ "line": 716,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 26693,
+ 26711
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 8
+ },
+ "end": {
+ "line": 716,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26714,
+ 26718
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 29
+ },
+ "end": {
+ "line": 716,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 26719,
+ 26735
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 34
+ },
+ "end": {
+ "line": 716,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 26714,
+ 26735
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 29
+ },
+ "end": {
+ "line": 716,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 26693,
+ 26735
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 8
+ },
+ "end": {
+ "line": 716,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 26693,
+ 26736
+ ],
+ "loc": {
+ "start": {
+ "line": 716,
+ "column": 8
+ },
+ "end": {
+ "line": 716,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26745,
+ 26749
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 8
+ },
+ "end": {
+ "line": 717,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbRows",
+ "range": [
+ 26750,
+ 26756
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 13
+ },
+ "end": {
+ "line": 717,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 26745,
+ 26756
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 8
+ },
+ "end": {
+ "line": 717,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26759,
+ 26763
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 22
+ },
+ "end": {
+ "line": 717,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "nbFilterableRows",
+ "range": [
+ 26764,
+ 26780
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 27
+ },
+ "end": {
+ "line": 717,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 26759,
+ 26780
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 22
+ },
+ "end": {
+ "line": 717,
+ "column": 43
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 26783,
+ 26787
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 46
+ },
+ "end": {
+ "line": 717,
+ "column": 50
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "refRow",
+ "range": [
+ 26788,
+ 26794
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 51
+ },
+ "end": {
+ "line": 717,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26783,
+ 26794
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 46
+ },
+ "end": {
+ "line": 717,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26759,
+ 26794
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 22
+ },
+ "end": {
+ "line": 717,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26745,
+ 26794
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 8
+ },
+ "end": {
+ "line": 717,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 26745,
+ 26795
+ ],
+ "loc": {
+ "start": {
+ "line": 717,
+ "column": 8
+ },
+ "end": {
+ "line": 717,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 26518,
+ 26801
+ ],
+ "loc": {
+ "start": {
+ "line": 710,
+ "column": 20
+ },
+ "end": {
+ "line": 718,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 26516,
+ 26801
+ ],
+ "loc": {
+ "start": {
+ "line": 710,
+ "column": 18
+ },
+ "end": {
+ "line": 718,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 26502,
+ 26801
+ ],
+ "loc": {
+ "start": {
+ "line": 710,
+ "column": 4
+ },
+ "end": {
+ "line": 718,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Initialize filtersless table\n ",
+ "range": [
+ 26450,
+ 26497
+ ],
+ "loc": {
+ "start": {
+ "line": 707,
+ "column": 4
+ },
+ "end": {
+ "line": 709,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Build input filter type\n * @param {Number} colIndex Column index\n * @param {String} cssClass Css class applied to filter\n * @param {DOMElement} container Container DOM element\n ",
+ "range": [
+ 26807,
+ 27026
+ ],
+ "loc": {
+ "start": {
+ "line": 720,
+ "column": 4
+ },
+ "end": {
+ "line": 725,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "_buildInputFilter",
+ "range": [
+ 27031,
+ 27048
+ ],
+ "loc": {
+ "start": {
+ "line": 726,
+ "column": 4
+ },
+ "end": {
+ "line": 726,
+ "column": 21
}
}
},
@@ -84428,305 +63150,55 @@
"params": [
{
"type": "Identifier",
- "name": "evt",
+ "name": "colIndex",
"range": [
- 37557,
- 37560
+ 27049,
+ 27057
],
"loc": {
"start": {
- "line": 945,
- "column": 15
+ "line": 726,
+ "column": 22
},
"end": {
- "line": 945,
- "column": 18
+ "line": 726,
+ "column": 30
}
}
},
{
- "type": "AssignmentPattern",
- "left": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 37570,
- 37573
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 8
- },
- "end": {
- "line": 946,
- "column": 11
- }
- }
- },
- "right": {
- "type": "ObjectExpression",
- "properties": [
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 37576,
- 37584
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 14
- },
- "end": {
- "line": 946,
- "column": 22
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 37586,
- 37590
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 24
- },
- "end": {
- "line": 946,
- "column": 28
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 37576,
- 37590
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 14
- },
- "end": {
- "line": 946,
- "column": 28
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 37592,
- 37603
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 30
- },
- "end": {
- "line": 946,
- "column": 41
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 37605,
- 37610
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 43
- },
- "end": {
- "line": 946,
- "column": 48
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 37592,
- 37610
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 30
- },
- "end": {
- "line": 946,
- "column": 48
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 37612,
- 37617
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 50
- },
- "end": {
- "line": 946,
- "column": 55
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 37619,
- 37623
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 57
- },
- "end": {
- "line": 946,
- "column": 61
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 37612,
- 37623
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 50
- },
- "end": {
- "line": 946,
- "column": 61
- }
- }
- },
- {
- "type": "Property",
- "key": {
- "type": "Identifier",
- "name": "pgIndex",
- "range": [
- 37625,
- 37632
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 63
- },
- "end": {
- "line": 946,
- "column": 70
- }
- }
- },
- "value": {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 37634,
- 37638
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 72
- },
- "end": {
- "line": 946,
- "column": 76
- }
- }
- },
- "kind": "init",
- "method": false,
- "shorthand": false,
- "computed": false,
- "range": [
- 37625,
- 37638
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 63
- },
- "end": {
- "line": 946,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 37574,
- 37640
- ],
- "loc": {
- "start": {
- "line": 946,
- "column": 12
- },
- "end": {
- "line": 946,
- "column": 78
- }
- }
- },
+ "type": "Identifier",
+ "name": "cssClass",
"range": [
- 37570,
- 37640
+ 27059,
+ 27067
],
"loc": {
"start": {
- "line": 946,
- "column": 8
+ "line": 726,
+ "column": 32
},
"end": {
- "line": 946,
- "column": 78
+ "line": 726,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 27069,
+ 27078
+ ],
+ "loc": {
+ "start": {
+ "line": 726,
+ "column": 42
+ },
+ "end": {
+ "line": 726,
+ "column": 51
}
}
}
@@ -84741,4162 +63213,1101 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "slcIndex",
+ "name": "col",
"range": [
- 37655,
- 37663
+ 27093,
+ 27096
],
"loc": {
"start": {
- "line": 947,
+ "line": 727,
"column": 12
},
"end": {
- "line": 947,
- "column": 20
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 37666,
- 37669
- ],
- "loc": {
- "start": {
- "line": 947,
- "column": 23
- },
- "end": {
- "line": 947,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 37670,
- 37678
- ],
- "loc": {
- "start": {
- "line": 947,
- "column": 27
- },
- "end": {
- "line": 947,
- "column": 35
- }
- }
- },
- "range": [
- 37666,
- 37678
- ],
- "loc": {
- "start": {
- "line": 947,
- "column": 23
- },
- "end": {
- "line": 947,
- "column": 35
- }
- }
- },
- "range": [
- 37655,
- 37678
- ],
- "loc": {
- "start": {
- "line": 947,
- "column": 12
- },
- "end": {
- "line": 947,
- "column": 35
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 37651,
- 37679
- ],
- "loc": {
- "start": {
- "line": 947,
- "column": 8
- },
- "end": {
- "line": 947,
- "column": 36
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 37692,
- 37703
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 12
- },
- "end": {
- "line": 948,
- "column": 23
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 37706,
- 37709
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 26
- },
- "end": {
- "line": 948,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 37710,
- 37721
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 30
- },
- "end": {
- "line": 948,
- "column": 41
- }
- }
- },
- "range": [
- 37706,
- 37721
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 26
- },
- "end": {
- "line": 948,
- "column": 41
- }
- }
- },
- "range": [
- 37692,
- 37721
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 12
- },
- "end": {
- "line": 948,
- "column": 41
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 37688,
- 37722
- ],
- "loc": {
- "start": {
- "line": 948,
- "column": 8
- },
- "end": {
- "line": 948,
- "column": 42
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 37735,
- 37740
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 12
- },
- "end": {
- "line": 949,
- "column": 17
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 37743,
- 37746
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 20
- },
- "end": {
- "line": 949,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 37747,
- 37752
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 24
- },
- "end": {
- "line": 949,
- "column": 29
- }
- }
- },
- "range": [
- 37743,
- 37752
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 20
- },
- "end": {
- "line": 949,
- "column": 29
- }
- }
- },
- "range": [
- 37735,
- 37752
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 12
- },
- "end": {
- "line": 949,
- "column": 29
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 37731,
- 37753
- ],
- "loc": {
- "start": {
- "line": 949,
- "column": 8
- },
- "end": {
- "line": 949,
- "column": 30
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "pgIndex",
- "range": [
- 37766,
- 37773
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 12
- },
- "end": {
- "line": 950,
- "column": 19
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cfg",
- "range": [
- 37776,
- 37779
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 22
- },
- "end": {
- "line": 950,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgIndex",
- "range": [
- 37780,
- 37787
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 26
- },
- "end": {
- "line": 950,
- "column": 33
- }
- }
- },
- "range": [
- 37776,
- 37787
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 22
- },
- "end": {
- "line": 950,
- "column": 33
- }
- }
- },
- "range": [
- 37766,
- 37787
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 12
- },
- "end": {
- "line": 950,
- "column": 33
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 37762,
- 37788
- ],
- "loc": {
- "start": {
- "line": 950,
- "column": 8
- },
- "end": {
- "line": 950,
- "column": 34
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 37801,
- 37804
- ],
- "loc": {
- "start": {
- "line": 951,
- "column": 12
- },
- "end": {
- "line": 951,
+ "line": 727,
"column": 15
}
}
},
"init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27099,
+ 27103
+ ],
+ "loc": {
+ "start": {
+ "line": 727,
+ "column": 18
+ },
+ "end": {
+ "line": 727,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterType",
+ "range": [
+ 27104,
+ 27117
+ ],
+ "loc": {
+ "start": {
+ "line": 727,
+ "column": 23
+ },
+ "end": {
+ "line": 727,
+ "column": 36
+ }
+ }
+ },
"range": [
- 37807,
- 37811
+ 27099,
+ 27117
],
"loc": {
"start": {
- "line": 951,
+ "line": 727,
"column": 18
},
"end": {
- "line": 951,
- "column": 22
+ "line": 727,
+ "column": 36
}
}
},
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 37812,
- 37815
- ],
- "loc": {
- "start": {
- "line": 951,
- "column": 23
- },
- "end": {
- "line": 951,
- "column": 26
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 27118,
+ 27126
+ ],
+ "loc": {
+ "start": {
+ "line": 727,
+ "column": 37
+ },
+ "end": {
+ "line": 727,
+ "column": 45
+ }
}
}
- },
+ ],
"range": [
- 37807,
- 37815
+ 27099,
+ 27127
],
"loc": {
"start": {
- "line": 951,
+ "line": 727,
"column": 18
},
"end": {
- "line": 951,
- "column": 26
+ "line": 727,
+ "column": 46
}
}
},
"range": [
- 37801,
- 37815
+ 27093,
+ 27127
],
"loc": {
"start": {
- "line": 951,
+ "line": 727,
"column": 12
},
"end": {
- "line": 951,
- "column": 26
+ "line": 727,
+ "column": 46
}
}
}
],
"kind": "let",
"range": [
- 37797,
- 37816
+ 27089,
+ 27128
],
"loc": {
"start": {
- "line": 951,
+ "line": 727,
"column": 8
},
"end": {
- "line": 951,
- "column": 27
+ "line": 727,
+ "column": 47
}
}
},
{
- "type": "FunctionDeclaration",
- "id": {
- "type": "Identifier",
- "name": "efx",
- "range": [
- 37835,
- 37838
- ],
- "loc": {
- "start": {
- "line": 953,
- "column": 17
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 27141,
+ 27157
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 12
+ },
+ "end": {
+ "line": 728,
+ "column": 28
+ }
+ }
},
- "end": {
- "line": 953,
- "column": 20
- }
- }
- },
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ev",
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27160,
+ 27164
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 31
+ },
+ "end": {
+ "line": 728,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 27165,
+ 27178
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 36
+ },
+ "end": {
+ "line": 728,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 27160,
+ 27178
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 31
+ },
+ "end": {
+ "line": 728,
+ "column": 49
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 37897,
- 37899
+ 27193,
+ 27197
],
"loc": {
"start": {
- "line": 955,
- "column": 16
+ "line": 729,
+ "column": 12
},
"end": {
- "line": 955,
- "column": 18
+ "line": 729,
+ "column": 16
}
}
},
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 37902,
- 37906
- ],
- "loc": {
- "start": {
- "line": 955,
- "column": 21
- },
- "end": {
- "line": 955,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 37907,
- 37910
- ],
- "loc": {
- "start": {
- "line": 955,
- "column": 26
- },
- "end": {
- "line": 955,
- "column": 29
- }
- }
- },
- "range": [
- 37902,
- 37910
- ],
- "loc": {
- "start": {
- "line": 955,
- "column": 21
- },
- "end": {
- "line": 955,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 37911,
- 37915
- ],
- "loc": {
- "start": {
- "line": 955,
- "column": 30
- },
- "end": {
- "line": 955,
- "column": 34
- }
- }
- },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltTgtIds",
"range": [
- 37902,
- 37915
+ 27198,
+ 27215
],
"loc": {
"start": {
- "line": 955,
- "column": 21
+ "line": 729,
+ "column": 17
},
"end": {
- "line": 955,
+ "line": 729,
"column": 34
}
}
},
"range": [
- 37897,
- 37915
+ 27193,
+ 27215
],
"loc": {
"start": {
- "line": 955,
- "column": 16
- },
- "end": {
- "line": 955,
- "column": 34
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 37893,
- 37916
- ],
- "loc": {
- "start": {
- "line": 955,
- "column": 12
- },
- "end": {
- "line": 955,
- "column": 35
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "jshint validthis:true ",
- "range": [
- 37854,
- 37880
- ],
- "loc": {
- "start": {
- "line": 954,
+ "line": 729,
"column": 12
},
"end": {
- "line": 954,
- "column": 38
- }
- }
- }
- ]
- },
- {
- "type": "SwitchStatement",
- "discriminant": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 37937,
- 37940
- ],
- "loc": {
- "start": {
- "line": 957,
- "column": 19
- },
- "end": {
- "line": 957,
- "column": 22
- }
- }
- },
- "cases": [
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 37964,
- 37966
- ],
- "loc": {
- "start": {
- "line": 958,
- "column": 21
- },
- "end": {
- "line": 958,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filter",
- "range": [
- 37967,
- 37973
- ],
- "loc": {
- "start": {
- "line": 958,
- "column": 24
- },
- "end": {
- "line": 958,
- "column": 30
- }
- }
- },
- "range": [
- 37964,
- 37973
- ],
- "loc": {
- "start": {
- "line": 958,
- "column": 21
- },
- "end": {
- "line": 958,
- "column": 30
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 37995,
- 37999
- ],
- "loc": {
- "start": {
- "line": 959,
- "column": 20
- },
- "end": {
- "line": 959,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_filter",
- "range": [
- 38000,
- 38007
- ],
- "loc": {
- "start": {
- "line": 959,
- "column": 25
- },
- "end": {
- "line": 959,
- "column": 32
- }
- }
- },
- "range": [
- 37995,
- 38007
- ],
- "loc": {
- "start": {
- "line": 959,
- "column": 20
- },
- "end": {
- "line": 959,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 37995,
- 38009
- ],
- "loc": {
- "start": {
- "line": 959,
- "column": 20
- },
- "end": {
- "line": 959,
- "column": 34
- }
- }
- },
- "range": [
- 37995,
- 38010
- ],
- "loc": {
- "start": {
- "line": 959,
- "column": 20
- },
- "end": {
- "line": 959,
- "column": 35
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38027,
- 38033
- ],
- "loc": {
- "start": {
- "line": 960,
- "column": 16
- },
- "end": {
- "line": 960,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 37959,
- 38033
- ],
- "loc": {
- "start": {
- "line": 958,
- "column": 16
- },
- "end": {
- "line": 960,
- "column": 22
+ "line": 729,
+ "column": 34
}
}
},
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 38055,
- 38057
- ],
- "loc": {
- "start": {
- "line": 961,
- "column": 21
- },
- "end": {
- "line": 961,
- "column": 23
- }
- }
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 27216,
+ 27224
+ ],
+ "loc": {
+ "start": {
+ "line": 729,
+ "column": 35
},
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 38058,
- 38066
- ],
- "loc": {
- "start": {
- "line": 961,
- "column": 24
- },
- "end": {
- "line": 961,
- "column": 32
- }
- }
+ "end": {
+ "line": 729,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 27193,
+ 27225
+ ],
+ "loc": {
+ "start": {
+ "line": 729,
+ "column": 12
+ },
+ "end": {
+ "line": 729,
+ "column": 44
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 27228,
+ 27232
+ ],
+ "loc": {
+ "start": {
+ "line": 729,
+ "column": 47
+ },
+ "end": {
+ "line": 729,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 27160,
+ 27232
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 31
+ },
+ "end": {
+ "line": 729,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 27141,
+ 27232
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 12
+ },
+ "end": {
+ "line": 729,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 27137,
+ 27233
+ ],
+ "loc": {
+ "start": {
+ "line": 728,
+ "column": 8
+ },
+ "end": {
+ "line": 729,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "inptype",
+ "range": [
+ 27246,
+ 27253
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 12
+ },
+ "end": {
+ "line": 730,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "col",
+ "range": [
+ 27256,
+ 27259
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 22
},
+ "end": {
+ "line": 730,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 38055,
- 38066
+ 27262,
+ 27266
],
"loc": {
"start": {
- "line": 961,
- "column": 21
+ "line": 730,
+ "column": 28
},
"end": {
- "line": 961,
+ "line": 730,
"column": 32
}
}
},
- "consequent": [
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeInp",
+ "range": [
+ 27267,
+ 27277
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 33
+ },
+ "end": {
+ "line": 730,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 27262,
+ 27277
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 28
+ },
+ "end": {
+ "line": 730,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 27256,
+ 27277
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 22
+ },
+ "end": {
+ "line": 730,
+ "column": 43
+ }
+ }
+ },
+ "consequent": {
+ "type": "Literal",
+ "value": "text",
+ "raw": "'text'",
+ "range": [
+ 27280,
+ 27286
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 46
+ },
+ "end": {
+ "line": 730,
+ "column": 52
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": "hidden",
+ "raw": "'hidden'",
+ "range": [
+ 27289,
+ 27297
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 55
+ },
+ "end": {
+ "line": 730,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 27256,
+ 27297
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 22
+ },
+ "end": {
+ "line": 730,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 27246,
+ 27297
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 12
+ },
+ "end": {
+ "line": 730,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 27242,
+ 27298
+ ],
+ "loc": {
+ "start": {
+ "line": 730,
+ "column": 8
+ },
+ "end": {
+ "line": 730,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 27311,
+ 27314
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 12
+ },
+ "end": {
+ "line": 731,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 27317,
+ 27320
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 18
+ },
+ "end": {
+ "line": 731,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "create",
+ "range": [
+ 27321,
+ 27327
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 22
+ },
+ "end": {
+ "line": 731,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 27317,
+ 27327
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 18
+ },
+ "end": {
+ "line": 731,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27328,
+ 27332
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 29
+ },
+ "end": {
+ "line": 731,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeInp",
+ "range": [
+ 27333,
+ 27343
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 34
+ },
+ "end": {
+ "line": 731,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 27328,
+ 27343
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 29
+ },
+ "end": {
+ "line": 731,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
{
- "type": "IfStatement",
- "test": {
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
+ "range": [
+ 27358,
+ 27362
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 13
+ },
+ "end": {
+ "line": 732,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27364,
+ 27368
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 19
+ },
+ "end": {
+ "line": 732,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxFlt",
+ "range": [
+ 27369,
+ 27376
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 24
+ },
+ "end": {
+ "line": 732,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 27364,
+ 27376
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 19
+ },
+ "end": {
+ "line": 732,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 27377,
+ 27385
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 32
+ },
+ "end": {
+ "line": 732,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 27364,
+ 27385
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 19
+ },
+ "end": {
+ "line": 732,
+ "column": 40
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "_",
+ "raw": "'_'",
+ "range": [
+ 27386,
+ 27389
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 41
+ },
+ "end": {
+ "line": 732,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 27364,
+ 27389
+ ],
+ "loc": {
+ "start": {
+ "line": 732,
+ "column": 19
+ },
+ "end": {
+ "line": 732,
+ "column": 44
+ }
+ }
+ },
+ "right": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 38091,
- 38095
+ 27390,
+ 27394
],
"loc": {
"start": {
- "line": 962,
- "column": 23
+ "line": 732,
+ "column": 45
},
"end": {
- "line": 962,
- "column": 27
+ "line": 732,
+ "column": 49
}
}
},
"property": {
"type": "Identifier",
- "name": "linkedFilters",
+ "name": "id",
"range": [
- 38096,
- 38109
+ 27395,
+ 27397
],
"loc": {
"start": {
- "line": 962,
- "column": 28
+ "line": 732,
+ "column": 50
},
"end": {
- "line": 962,
- "column": 41
- }
- }
- },
- "range": [
- 38091,
- 38109
- ],
- "loc": {
- "start": {
- "line": 962,
- "column": 23
- },
- "end": {
- "line": 962,
- "column": 41
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 38136,
- 38139
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 24
- },
- "end": {
- "line": 963,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 38140,
- 38148
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 28
- },
- "end": {
- "line": 963,
- "column": 36
- }
- }
- },
- "range": [
- 38136,
- 38148
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 24
- },
- "end": {
- "line": 963,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 38149,
- 38155
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 37
- },
- "end": {
- "line": 963,
- "column": 43
- }
- }
- },
- "range": [
- 38136,
- 38155
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 24
- },
- "end": {
- "line": 963,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 38156,
- 38164
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 44
- },
- "end": {
- "line": 963,
- "column": 52
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 38166,
- 38170
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 54
- },
- "end": {
- "line": 963,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 38136,
- 38171
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 24
- },
- "end": {
- "line": 963,
- "column": 59
- }
- }
- },
- "range": [
- 38136,
- 38172
- ],
- "loc": {
- "start": {
- "line": 963,
- "column": 24
- },
- "end": {
- "line": 963,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 38110,
- 38194
- ],
- "loc": {
- "start": {
- "line": 962,
- "column": 42
- },
- "end": {
- "line": 964,
- "column": 21
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 38226,
- 38229
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 24
- },
- "end": {
- "line": 965,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 38230,
- 38238
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 28
- },
- "end": {
- "line": 965,
- "column": 36
- }
- }
- },
- "range": [
- 38226,
- 38238
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 24
- },
- "end": {
- "line": 965,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 38239,
- 38245
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 37
- },
- "end": {
- "line": 965,
- "column": 43
- }
- }
- },
- "range": [
- 38226,
- 38245
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 24
- },
- "end": {
- "line": 965,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 38275,
- 38283
- ],
- "loc": {
- "start": {
- "line": 966,
- "column": 28
- },
- "end": {
- "line": 966,
- "column": 36
- }
- }
- },
- {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 38285,
- 38290
- ],
- "loc": {
- "start": {
- "line": 966,
- "column": 38
- },
- "end": {
- "line": 966,
- "column": 43
- }
- }
- },
- {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 38292,
- 38303
- ],
- "loc": {
- "start": {
- "line": 966,
- "column": 45
- },
- "end": {
- "line": 966,
- "column": 56
- }
- }
- },
- {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 38305,
- 38310
- ],
- "loc": {
- "start": {
- "line": 966,
- "column": 58
- },
- "end": {
- "line": 966,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 38226,
- 38311
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 24
- },
- "end": {
- "line": 966,
- "column": 64
- }
- }
- },
- "range": [
- 38226,
- 38312
- ],
- "loc": {
- "start": {
- "line": 965,
- "column": 24
- },
- "end": {
- "line": 966,
- "column": 65
- }
- }
- }
- ],
- "range": [
- 38200,
- 38334
- ],
- "loc": {
- "start": {
- "line": 964,
- "column": 27
- },
- "end": {
- "line": 967,
- "column": 21
- }
- }
- },
- "range": [
- 38088,
- 38334
- ],
- "loc": {
- "start": {
- "line": 962,
- "column": 20
- },
- "end": {
- "line": 967,
- "column": 21
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38351,
- 38357
- ],
- "loc": {
- "start": {
- "line": 968,
- "column": 16
- },
- "end": {
- "line": 968,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 38050,
- 38357
- ],
- "loc": {
- "start": {
- "line": 961,
- "column": 16
- },
- "end": {
- "line": 968,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 38379,
- 38381
- ],
- "loc": {
- "start": {
- "line": 969,
- "column": 21
- },
- "end": {
- "line": 969,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checklist",
- "range": [
- 38382,
- 38391
- ],
- "loc": {
- "start": {
- "line": 969,
- "column": 24
- },
- "end": {
- "line": 969,
- "column": 33
- }
- }
- },
- "range": [
- 38379,
- 38391
- ],
- "loc": {
- "start": {
- "line": 969,
- "column": 21
- },
- "end": {
- "line": 969,
- "column": 33
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 38413,
- 38416
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 20
- },
- "end": {
- "line": 970,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 38417,
- 38426
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 24
- },
- "end": {
- "line": 970,
- "column": 33
- }
- }
- },
- "range": [
- 38413,
- 38426
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 20
- },
- "end": {
- "line": 970,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_build",
- "range": [
- 38427,
- 38433
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 34
- },
- "end": {
- "line": 970,
- "column": 40
- }
- }
- },
- "range": [
- 38413,
- 38433
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 20
- },
- "end": {
- "line": 970,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slcIndex",
- "range": [
- 38434,
- 38442
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 41
- },
- "end": {
- "line": 970,
- "column": 49
- }
- }
- },
- {
- "type": "Identifier",
- "name": "slcExternal",
- "range": [
- 38444,
- 38455
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 51
- },
- "end": {
- "line": 970,
- "column": 62
- }
- }
- },
- {
- "type": "Identifier",
- "name": "slcId",
- "range": [
- 38457,
- 38462
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 64
- },
- "end": {
- "line": 970,
- "column": 69
- }
- }
- }
- ],
- "range": [
- 38413,
- 38463
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 20
- },
- "end": {
- "line": 970,
- "column": 70
- }
- }
- },
- "range": [
- 38413,
- 38464
- ],
- "loc": {
- "start": {
- "line": 970,
- "column": 20
- },
- "end": {
- "line": 970,
- "column": 71
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38481,
- 38487
- ],
- "loc": {
- "start": {
- "line": 971,
- "column": 16
- },
- "end": {
- "line": 971,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 38374,
- 38487
- ],
- "loc": {
- "start": {
- "line": 969,
- "column": 16
- },
- "end": {
- "line": 971,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 38509,
- 38511
- ],
- "loc": {
- "start": {
- "line": 972,
- "column": 21
- },
- "end": {
- "line": 972,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "changepage",
- "range": [
- 38512,
- 38522
- ],
- "loc": {
- "start": {
- "line": 972,
- "column": 24
- },
- "end": {
- "line": 972,
- "column": 34
- }
- }
- },
- "range": [
- 38509,
- 38522
- ],
- "loc": {
- "start": {
- "line": 972,
- "column": 21
- },
- "end": {
- "line": 972,
- "column": 34
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 38544,
- 38547
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 20
- },
- "end": {
- "line": 973,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 38548,
- 38554
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 24
- },
- "end": {
- "line": 973,
- "column": 30
- }
- }
- },
- "range": [
- 38544,
- 38554
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 20
- },
- "end": {
- "line": 973,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_changePage",
- "range": [
- 38555,
- 38566
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 31
- },
- "end": {
- "line": 973,
- "column": 42
- }
- }
- },
- "range": [
- 38544,
- 38566
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 20
- },
- "end": {
- "line": 973,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "pgIndex",
- "range": [
- 38567,
- 38574
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 43
- },
- "end": {
- "line": 973,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 38544,
- 38575
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 20
- },
- "end": {
- "line": 973,
- "column": 51
- }
- }
- },
- "range": [
- 38544,
- 38576
- ],
- "loc": {
- "start": {
- "line": 973,
- "column": 20
- },
- "end": {
- "line": 973,
- "column": 52
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38593,
- 38599
- ],
- "loc": {
- "start": {
- "line": 974,
- "column": 16
- },
- "end": {
- "line": 974,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 38504,
- 38599
- ],
- "loc": {
- "start": {
- "line": 972,
- "column": 16
- },
- "end": {
- "line": 974,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 38621,
- 38623
- ],
- "loc": {
- "start": {
- "line": 975,
- "column": 21
- },
- "end": {
- "line": 975,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "clear",
- "range": [
- 38624,
- 38629
- ],
- "loc": {
- "start": {
- "line": 975,
- "column": 24
- },
- "end": {
- "line": 975,
- "column": 29
- }
- }
- },
- "range": [
- 38621,
- 38629
- ],
- "loc": {
- "start": {
- "line": 975,
- "column": 21
- },
- "end": {
- "line": 975,
- "column": 29
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 38651,
- 38655
- ],
- "loc": {
- "start": {
- "line": 976,
- "column": 20
- },
- "end": {
- "line": 976,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_clearFilters",
- "range": [
- 38656,
- 38669
- ],
- "loc": {
- "start": {
- "line": 976,
- "column": 25
- },
- "end": {
- "line": 976,
- "column": 38
- }
- }
- },
- "range": [
- 38651,
- 38669
- ],
- "loc": {
- "start": {
- "line": 976,
- "column": 20
- },
- "end": {
- "line": 976,
- "column": 38
- }
- }
- },
- "arguments": [],
- "range": [
- 38651,
- 38671
- ],
- "loc": {
- "start": {
- "line": 976,
- "column": 20
- },
- "end": {
- "line": 976,
- "column": 40
- }
- }
- },
- "range": [
- 38651,
- 38672
- ],
- "loc": {
- "start": {
- "line": 976,
- "column": 20
- },
- "end": {
- "line": 976,
- "column": 41
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 38693,
- 38697
- ],
- "loc": {
- "start": {
- "line": 977,
- "column": 20
- },
- "end": {
- "line": 977,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_filter",
- "range": [
- 38698,
- 38705
- ],
- "loc": {
- "start": {
- "line": 977,
- "column": 25
- },
- "end": {
- "line": 977,
- "column": 32
- }
- }
- },
- "range": [
- 38693,
- 38705
- ],
- "loc": {
- "start": {
- "line": 977,
- "column": 20
- },
- "end": {
- "line": 977,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 38693,
- 38707
- ],
- "loc": {
- "start": {
- "line": 977,
- "column": 20
- },
- "end": {
- "line": 977,
- "column": 34
- }
- }
- },
- "range": [
- 38693,
- 38708
- ],
- "loc": {
- "start": {
- "line": 977,
- "column": 20
- },
- "end": {
- "line": 977,
- "column": 35
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38725,
- 38731
- ],
- "loc": {
- "start": {
- "line": 978,
- "column": 16
- },
- "end": {
- "line": 978,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 38616,
- 38731
- ],
- "loc": {
- "start": {
- "line": 975,
- "column": 16
- },
- "end": {
- "line": 978,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 38753,
- 38755
- ],
- "loc": {
- "start": {
- "line": 979,
- "column": 21
- },
- "end": {
- "line": 979,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "changeresultsperpage",
- "range": [
- 38756,
- 38776
- ],
- "loc": {
- "start": {
- "line": 979,
- "column": 24
- },
- "end": {
- "line": 979,
- "column": 44
- }
- }
- },
- "range": [
- 38753,
- 38776
- ],
- "loc": {
- "start": {
- "line": 979,
- "column": 21
- },
- "end": {
- "line": 979,
- "column": 44
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 38798,
- 38801
- ],
- "loc": {
- "start": {
- "line": 980,
- "column": 20
- },
- "end": {
- "line": 980,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 38802,
- 38808
- ],
- "loc": {
- "start": {
- "line": 980,
- "column": 24
- },
- "end": {
- "line": 980,
- "column": 30
- }
- }
- },
- "range": [
- 38798,
- 38808
- ],
- "loc": {
- "start": {
- "line": 980,
- "column": 20
- },
- "end": {
- "line": 980,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_changeResultsPerPage",
- "range": [
- 38809,
- 38830
- ],
- "loc": {
- "start": {
- "line": 980,
- "column": 31
- },
- "end": {
- "line": 980,
- "column": 52
- }
- }
- },
- "range": [
- 38798,
- 38830
- ],
- "loc": {
- "start": {
- "line": 980,
- "column": 20
- },
- "end": {
- "line": 980,
+ "line": 732,
"column": 52
}
}
},
- "arguments": [],
"range": [
- 38798,
- 38832
+ 27390,
+ 27397
],
"loc": {
"start": {
- "line": 980,
- "column": 20
+ "line": 732,
+ "column": 45
},
"end": {
- "line": 980,
- "column": 54
+ "line": 732,
+ "column": 52
}
}
},
"range": [
- 38798,
- 38833
+ 27364,
+ 27397
],
"loc": {
"start": {
- "line": 980,
- "column": 20
+ "line": 732,
+ "column": 19
},
"end": {
- "line": 980,
- "column": 55
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38850,
- 38856
- ],
- "loc": {
- "start": {
- "line": 981,
- "column": 16
- },
- "end": {
- "line": 981,
- "column": 22
+ "line": 732,
+ "column": 52
}
}
}
],
"range": [
- 38748,
- 38856
+ 27357,
+ 27398
],
"loc": {
"start": {
- "line": 979,
- "column": 16
+ "line": 732,
+ "column": 12
},
"end": {
- "line": 981,
- "column": 22
+ "line": 732,
+ "column": 53
}
}
},
{
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "type",
+ "raw": "'type'",
"range": [
- 38878,
- 38880
+ 27413,
+ 27419
],
"loc": {
"start": {
- "line": 982,
+ "line": 733,
+ "column": 13
+ },
+ "end": {
+ "line": 733,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "inptype",
+ "range": [
+ 27421,
+ 27428
+ ],
+ "loc": {
+ "start": {
+ "line": 733,
"column": 21
},
"end": {
- "line": 982,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetvalues",
- "range": [
- 38881,
- 38892
- ],
- "loc": {
- "start": {
- "line": 982,
- "column": 24
- },
- "end": {
- "line": 982,
- "column": 35
- }
- }
- },
- "range": [
- 38878,
- 38892
- ],
- "loc": {
- "start": {
- "line": 982,
- "column": 21
- },
- "end": {
- "line": 982,
- "column": 35
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 38914,
- 38918
- ],
- "loc": {
- "start": {
- "line": 983,
- "column": 20
- },
- "end": {
- "line": 983,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_resetValues",
- "range": [
- 38919,
- 38931
- ],
- "loc": {
- "start": {
- "line": 983,
- "column": 25
- },
- "end": {
- "line": 983,
- "column": 37
- }
- }
- },
- "range": [
- 38914,
- 38931
- ],
- "loc": {
- "start": {
- "line": 983,
- "column": 20
- },
- "end": {
- "line": 983,
- "column": 37
- }
- }
- },
- "arguments": [],
- "range": [
- 38914,
- 38933
- ],
- "loc": {
- "start": {
- "line": 983,
- "column": 20
- },
- "end": {
- "line": 983,
- "column": 39
- }
- }
- },
- "range": [
- 38914,
- 38934
- ],
- "loc": {
- "start": {
- "line": 983,
- "column": 20
- },
- "end": {
- "line": 983,
- "column": 40
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 38955,
- 38959
- ],
- "loc": {
- "start": {
- "line": 984,
- "column": 20
- },
- "end": {
- "line": 984,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_filter",
- "range": [
- 38960,
- 38967
- ],
- "loc": {
- "start": {
- "line": 984,
- "column": 25
- },
- "end": {
- "line": 984,
- "column": 32
- }
- }
- },
- "range": [
- 38955,
- 38967
- ],
- "loc": {
- "start": {
- "line": 984,
- "column": 20
- },
- "end": {
- "line": 984,
- "column": 32
- }
- }
- },
- "arguments": [],
- "range": [
- 38955,
- 38969
- ],
- "loc": {
- "start": {
- "line": 984,
- "column": 20
- },
- "end": {
- "line": 984,
- "column": 34
- }
- }
- },
- "range": [
- 38955,
- 38970
- ],
- "loc": {
- "start": {
- "line": 984,
- "column": 20
- },
- "end": {
- "line": 984,
- "column": 35
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 38987,
- 38993
- ],
- "loc": {
- "start": {
- "line": 985,
- "column": 16
- },
- "end": {
- "line": 985,
- "column": 22
+ "line": 733,
+ "column": 28
}
}
}
],
"range": [
- 38873,
- 38993
+ 27412,
+ 27429
],
"loc": {
"start": {
- "line": 982,
- "column": 16
+ "line": 733,
+ "column": 12
},
"end": {
- "line": 985,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 39015,
- 39017
- ],
- "loc": {
- "start": {
- "line": 986,
- "column": 21
- },
- "end": {
- "line": 986,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetpage",
- "range": [
- 39018,
- 39027
- ],
- "loc": {
- "start": {
- "line": 986,
- "column": 24
- },
- "end": {
- "line": 986,
- "column": 33
- }
- }
- },
- "range": [
- 39015,
- 39027
- ],
- "loc": {
- "start": {
- "line": 986,
- "column": 21
- },
- "end": {
- "line": 986,
- "column": 33
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39049,
- 39052
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 20
- },
- "end": {
- "line": 987,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 39053,
- 39059
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 24
- },
- "end": {
- "line": 987,
- "column": 30
- }
- }
- },
- "range": [
- 39049,
- 39059
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 20
- },
- "end": {
- "line": 987,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_resetPage",
- "range": [
- 39060,
- 39070
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 31
- },
- "end": {
- "line": 987,
- "column": 41
- }
- }
- },
- "range": [
- 39049,
- 39070
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 20
- },
- "end": {
- "line": 987,
- "column": 41
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39071,
- 39075
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 42
- },
- "end": {
- "line": 987,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgNbCookie",
- "range": [
- 39076,
- 39086
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 47
- },
- "end": {
- "line": 987,
- "column": 57
- }
- }
- },
- "range": [
- 39071,
- 39086
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 42
- },
- "end": {
- "line": 987,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 39049,
- 39087
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 20
- },
- "end": {
- "line": 987,
- "column": 58
- }
- }
- },
- "range": [
- 39049,
- 39088
- ],
- "loc": {
- "start": {
- "line": 987,
- "column": 20
- },
- "end": {
- "line": 987,
- "column": 59
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 39105,
- 39111
- ],
- "loc": {
- "start": {
- "line": 988,
- "column": 16
- },
- "end": {
- "line": 988,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 39010,
- 39111
- ],
- "loc": {
- "start": {
- "line": 986,
- "column": 16
- },
- "end": {
- "line": 988,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 39133,
- 39135
- ],
- "loc": {
- "start": {
- "line": 989,
- "column": 21
- },
- "end": {
- "line": 989,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetpagelength",
- "range": [
- 39136,
- 39151
- ],
- "loc": {
- "start": {
- "line": 989,
- "column": 24
- },
- "end": {
- "line": 989,
- "column": 39
- }
- }
- },
- "range": [
- 39133,
- 39151
- ],
- "loc": {
- "start": {
- "line": 989,
- "column": 21
- },
- "end": {
- "line": 989,
- "column": 39
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39173,
- 39176
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 20
- },
- "end": {
- "line": 990,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 39177,
- 39183
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 24
- },
- "end": {
- "line": 990,
- "column": 30
- }
- }
- },
- "range": [
- 39173,
- 39183
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 20
- },
- "end": {
- "line": 990,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_resetPageLength",
- "range": [
- 39184,
- 39200
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 31
- },
- "end": {
- "line": 990,
- "column": 47
- }
- }
- },
- "range": [
- 39173,
- 39200
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 20
- },
- "end": {
- "line": 990,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39201,
- 39205
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 48
- },
- "end": {
- "line": 990,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgLenCookie",
- "range": [
- 39206,
- 39217
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 53
- },
- "end": {
- "line": 990,
- "column": 64
- }
- }
- },
- "range": [
- 39201,
- 39217
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 48
- },
- "end": {
- "line": 990,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 39173,
- 39218
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 20
- },
- "end": {
- "line": 990,
- "column": 65
- }
- }
- },
- "range": [
- 39173,
- 39219
- ],
- "loc": {
- "start": {
- "line": 990,
- "column": 20
- },
- "end": {
- "line": 990,
- "column": 66
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 39236,
- 39242
- ],
- "loc": {
- "start": {
- "line": 991,
- "column": 16
- },
- "end": {
- "line": 991,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 39128,
- 39242
- ],
- "loc": {
- "start": {
- "line": 989,
- "column": 16
- },
- "end": {
- "line": 991,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 39264,
- 39266
- ],
- "loc": {
- "start": {
- "line": 992,
- "column": 21
- },
- "end": {
- "line": 992,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadextensions",
- "range": [
- 39267,
- 39281
- ],
- "loc": {
- "start": {
- "line": 992,
- "column": 24
- },
- "end": {
- "line": 992,
- "column": 38
- }
- }
- },
- "range": [
- 39264,
- 39281
- ],
- "loc": {
- "start": {
- "line": 992,
- "column": 21
- },
- "end": {
- "line": 992,
- "column": 38
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39303,
- 39307
- ],
- "loc": {
- "start": {
- "line": 993,
- "column": 20
- },
- "end": {
- "line": 993,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_loadExtensions",
- "range": [
- 39308,
- 39323
- ],
- "loc": {
- "start": {
- "line": 993,
- "column": 25
- },
- "end": {
- "line": 993,
- "column": 40
- }
- }
- },
- "range": [
- 39303,
- 39323
- ],
- "loc": {
- "start": {
- "line": 993,
- "column": 20
- },
- "end": {
- "line": 993,
- "column": 40
- }
- }
- },
- "arguments": [],
- "range": [
- 39303,
- 39325
- ],
- "loc": {
- "start": {
- "line": 993,
- "column": 20
- },
- "end": {
- "line": 993,
- "column": 42
- }
- }
- },
- "range": [
- 39303,
- 39326
- ],
- "loc": {
- "start": {
- "line": 993,
- "column": 20
- },
- "end": {
- "line": 993,
- "column": 43
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 39343,
- 39349
- ],
- "loc": {
- "start": {
- "line": 994,
- "column": 16
- },
- "end": {
- "line": 994,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 39259,
- 39349
- ],
- "loc": {
- "start": {
- "line": 992,
- "column": 16
- },
- "end": {
- "line": 994,
- "column": 22
- }
- }
- },
- {
- "type": "SwitchCase",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ev",
- "range": [
- 39371,
- 39373
- ],
- "loc": {
- "start": {
- "line": 995,
- "column": 21
- },
- "end": {
- "line": 995,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadthemes",
- "range": [
- 39374,
- 39384
- ],
- "loc": {
- "start": {
- "line": 995,
- "column": 24
- },
- "end": {
- "line": 995,
- "column": 34
- }
- }
- },
- "range": [
- 39371,
- 39384
- ],
- "loc": {
- "start": {
- "line": 995,
- "column": 21
- },
- "end": {
- "line": 995,
- "column": 34
- }
- }
- },
- "consequent": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39406,
- 39410
- ],
- "loc": {
- "start": {
- "line": 996,
- "column": 20
- },
- "end": {
- "line": 996,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_loadThemes",
- "range": [
- 39411,
- 39422
- ],
- "loc": {
- "start": {
- "line": 996,
- "column": 25
- },
- "end": {
- "line": 996,
- "column": 36
- }
- }
- },
- "range": [
- 39406,
- 39422
- ],
- "loc": {
- "start": {
- "line": 996,
- "column": 20
- },
- "end": {
- "line": 996,
- "column": 36
- }
- }
- },
- "arguments": [],
- "range": [
- 39406,
- 39424
- ],
- "loc": {
- "start": {
- "line": 996,
- "column": 20
- },
- "end": {
- "line": 996,
- "column": 38
- }
- }
- },
- "range": [
- 39406,
- 39425
- ],
- "loc": {
- "start": {
- "line": 996,
- "column": 20
- },
- "end": {
- "line": 996,
- "column": 39
- }
- }
- },
- {
- "type": "BreakStatement",
- "label": null,
- "range": [
- 39442,
- 39448
- ],
- "loc": {
- "start": {
- "line": 997,
- "column": 16
- },
- "end": {
- "line": 997,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 39366,
- 39448
- ],
- "loc": {
- "start": {
- "line": 995,
- "column": 16
- },
- "end": {
- "line": 997,
- "column": 22
- }
- }
- }
- ],
- "range": [
- 37930,
- 39462
- ],
- "loc": {
- "start": {
- "line": 957,
- "column": 12
- },
- "end": {
- "line": 998,
- "column": 13
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39478,
- 39482
- ],
- "loc": {
- "start": {
- "line": 999,
- "column": 15
- },
- "end": {
- "line": 999,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 39483,
- 39492
- ],
- "loc": {
- "start": {
- "line": 999,
- "column": 20
- },
- "end": {
- "line": 999,
+ "line": 733,
"column": 29
}
}
},
- "range": [
- 39478,
- 39492
- ],
- "loc": {
- "start": {
- "line": 999,
- "column": 15
- },
- "end": {
- "line": 999,
- "column": 29
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39511,
- 39514
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 16
- },
- "end": {
- "line": 1000,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 39515,
- 39524
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 20
- },
- "end": {
- "line": 1000,
- "column": 29
- }
- }
- },
- "range": [
- 39511,
- 39524
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 16
- },
- "end": {
- "line": 1000,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "message",
- "range": [
- 39525,
- 39532
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 30
- },
- "end": {
- "line": 1000,
- "column": 37
- }
- }
- },
- "range": [
- 39511,
- 39532
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 16
- },
- "end": {
- "line": 1000,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 39533,
- 39535
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 38
- },
- "end": {
- "line": 1000,
- "column": 40
- }
- }
- }
- ],
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "ct",
+ "raw": "'ct'",
"range": [
- 39511,
- 39536
+ 27432,
+ 27436
],
"loc": {
"start": {
- "line": 1000,
- "column": 16
+ "line": 733,
+ "column": 32
},
"end": {
- "line": 1000,
- "column": 41
+ "line": 733,
+ "column": 36
}
}
},
- "range": [
- 39511,
- 39537
- ],
- "loc": {
- "start": {
- "line": 1000,
- "column": 16
- },
- "end": {
- "line": 1000,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 39493,
- 39551
- ],
- "loc": {
- "start": {
- "line": 999,
- "column": 30
- },
- "end": {
- "line": 1001,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 39475,
- 39551
- ],
- "loc": {
- "start": {
- "line": 999,
- "column": 12
- },
- "end": {
- "line": 1001,
- "column": 13
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39567,
- 39571
- ],
- "loc": {
- "start": {
- "line": 1002,
- "column": 15
- },
- "end": {
- "line": 1002,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 39572,
- 39578
- ],
- "loc": {
- "start": {
- "line": 1002,
- "column": 20
- },
- "end": {
- "line": 1002,
- "column": 26
- }
- }
- },
- "range": [
- 39567,
- 39578
- ],
- "loc": {
- "start": {
- "line": 1002,
- "column": 15
- },
- "end": {
- "line": 1002,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39597,
- 39600
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 16
- },
- "end": {
- "line": 1003,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 39601,
- 39607
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 20
- },
- "end": {
- "line": 1003,
- "column": 26
- }
- }
- },
- "range": [
- 39597,
- 39607
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 16
- },
- "end": {
- "line": 1003,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "show",
- "range": [
- 39608,
- 39612
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 27
- },
- "end": {
- "line": 1003,
- "column": 31
- }
- }
- },
- "range": [
- 39597,
- 39612
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 16
- },
- "end": {
- "line": 1003,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "none",
- "raw": "'none'",
- "range": [
- 39613,
- 39619
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 32
- },
- "end": {
- "line": 1003,
- "column": 38
- }
- }
- }
- ],
+ {
+ "type": "Identifier",
+ "name": "colIndex",
"range": [
- 39597,
- 39620
+ 27438,
+ 27446
],
"loc": {
"start": {
- "line": 1003,
- "column": 16
+ "line": 733,
+ "column": 38
},
"end": {
- "line": 1003,
- "column": 39
+ "line": 733,
+ "column": 46
}
}
+ }
+ ],
+ "range": [
+ 27431,
+ 27447
+ ],
+ "loc": {
+ "start": {
+ "line": 733,
+ "column": 31
},
- "range": [
- 39597,
- 39621
- ],
- "loc": {
- "start": {
- "line": 1003,
- "column": 16
- },
- "end": {
- "line": 1003,
- "column": 40
- }
+ "end": {
+ "line": 733,
+ "column": 47
}
}
- ],
- "range": [
- 39579,
- 39635
- ],
- "loc": {
- "start": {
- "line": 1002,
- "column": 27
- },
- "end": {
- "line": 1004,
- "column": 13
- }
}
- },
- "alternate": null,
+ ],
"range": [
- 39564,
- 39635
+ 27317,
+ 27448
],
"loc": {
"start": {
- "line": 1002,
- "column": 12
+ "line": 731,
+ "column": 18
},
"end": {
- "line": 1004,
- "column": 13
+ "line": 733,
+ "column": 48
}
}
- }
- ],
- "range": [
- 37840,
- 39645
- ],
- "loc": {
- "start": {
- "line": 953,
- "column": 22
},
- "end": {
- "line": 1005,
- "column": 9
+ "range": [
+ 27311,
+ 27448
+ ],
+ "loc": {
+ "start": {
+ "line": 731,
+ "column": 12
+ },
+ "end": {
+ "line": 733,
+ "column": 48
+ }
}
}
- },
- "generator": false,
- "expression": false,
+ ],
+ "kind": "let",
"range": [
- 37826,
- 39645
+ 27307,
+ 27449
],
"loc": {
"start": {
- "line": 953,
+ "line": 731,
"column": 8
},
"end": {
- "line": 1005,
- "column": 9
+ "line": 733,
+ "column": 49
}
}
},
@@ -88906,251 +64317,125 @@
"type": "LogicalExpression",
"operator": "&&",
"left": {
- "type": "LogicalExpression",
- "operator": "&&",
+ "type": "BinaryExpression",
+ "operator": "!==",
"left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39659,
- 39663
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 12
- },
- "end": {
- "line": 1007,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 39664,
- 39670
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 17
- },
- "end": {
- "line": 1007,
- "column": 23
- }
- }
- },
- "range": [
- 39659,
- 39670
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 12
- },
- "end": {
- "line": 1007,
- "column": 23
- }
- }
- },
- "prefix": true,
+ "type": "Identifier",
+ "name": "inptype",
"range": [
- 39658,
- 39670
+ 27462,
+ 27469
],
"loc": {
"start": {
- "line": 1007,
+ "line": 735,
"column": 11
},
"end": {
- "line": 1007,
- "column": 23
+ "line": 735,
+ "column": 18
}
}
},
"right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39675,
- 39679
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 28
- },
- "end": {
- "line": 1007,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 39680,
- 39689
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 33
- },
- "end": {
- "line": 1007,
- "column": 42
- }
- }
- },
- "range": [
- 39675,
- 39689
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 28
- },
- "end": {
- "line": 1007,
- "column": 42
- }
- }
- },
- "prefix": true,
+ "type": "Literal",
+ "value": "hidden",
+ "raw": "'hidden'",
"range": [
- 39674,
- 39689
+ 27474,
+ 27482
],
"loc": {
"start": {
- "line": 1007,
- "column": 27
+ "line": 735,
+ "column": 23
},
"end": {
- "line": 1007,
- "column": 42
+ "line": 735,
+ "column": 31
}
}
},
"range": [
- 39658,
- 39689
+ 27462,
+ 27482
],
"loc": {
"start": {
- "line": 1007,
+ "line": 735,
"column": 11
},
"end": {
- "line": 1007,
- "column": 42
+ "line": 735,
+ "column": 31
}
}
},
"right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39694,
- 39698
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 47
- },
- "end": {
- "line": 1007,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "linkedFilters",
- "range": [
- 39699,
- 39712
- ],
- "loc": {
- "start": {
- "line": 1007,
- "column": 52
- },
- "end": {
- "line": 1007,
- "column": 65
- }
- }
- },
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 39694,
- 39712
+ 27486,
+ 27490
],
"loc": {
"start": {
- "line": 1007,
- "column": 47
+ "line": 735,
+ "column": 35
},
"end": {
- "line": 1007,
- "column": 65
+ "line": 735,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "watermark",
+ "range": [
+ 27491,
+ 27500
+ ],
+ "loc": {
+ "start": {
+ "line": 735,
+ "column": 40
+ },
+ "end": {
+ "line": 735,
+ "column": 49
}
}
},
- "prefix": true,
"range": [
- 39693,
- 39712
+ 27486,
+ 27500
],
"loc": {
"start": {
- "line": 1007,
- "column": 46
+ "line": 735,
+ "column": 35
},
"end": {
- "line": 1007,
- "column": 65
+ "line": 735,
+ "column": 49
}
}
},
"range": [
- 39658,
- 39712
+ 27462,
+ 27500
],
"loc": {
"start": {
- "line": 1007,
+ "line": 735,
"column": 11
},
"end": {
- "line": 1007,
- "column": 65
+ "line": 735,
+ "column": 49
}
}
},
@@ -89166,661 +64451,1074 @@
"computed": false,
"object": {
"type": "Identifier",
- "name": "efx",
+ "name": "inp",
"range": [
- 39728,
- 39731
+ 27515,
+ 27518
],
"loc": {
"start": {
- "line": 1008,
+ "line": 736,
"column": 12
},
"end": {
- "line": 1008,
+ "line": 736,
"column": 15
}
}
},
"property": {
"type": "Identifier",
- "name": "call",
+ "name": "setAttribute",
"range": [
- 39732,
- 39736
+ 27519,
+ 27531
],
"loc": {
"start": {
- "line": 1008,
+ "line": 736,
"column": 16
},
"end": {
- "line": 1008,
- "column": 20
+ "line": 736,
+ "column": 28
}
}
},
"range": [
- 39728,
- 39736
+ 27515,
+ 27531
],
"loc": {
"start": {
- "line": 1008,
+ "line": 736,
"column": 12
},
"end": {
- "line": 1008,
- "column": 20
+ "line": 736,
+ "column": 28
}
}
},
"arguments": [
{
- "type": "ThisExpression",
+ "type": "Literal",
+ "value": "placeholder",
+ "raw": "'placeholder'",
"range": [
- 39737,
- 39741
+ 27532,
+ 27545
],
"loc": {
"start": {
- "line": 1008,
- "column": 21
+ "line": 736,
+ "column": 29
},
"end": {
- "line": 1008,
- "column": 25
+ "line": 736,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27563,
+ 27567
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 16
+ },
+ "end": {
+ "line": 737,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isWatermarkArray",
+ "range": [
+ 27568,
+ 27584
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 21
+ },
+ "end": {
+ "line": 737,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 27563,
+ 27584
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 16
+ },
+ "end": {
+ "line": 737,
+ "column": 37
+ }
+ }
+ },
+ "consequent": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27588,
+ 27592
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 41
+ },
+ "end": {
+ "line": 737,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "watermark",
+ "range": [
+ 27593,
+ 27602
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 46
+ },
+ "end": {
+ "line": 737,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 27588,
+ 27602
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 41
+ },
+ "end": {
+ "line": 737,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 27603,
+ 27611
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 56
+ },
+ "end": {
+ "line": 737,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 27588,
+ 27612
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 41
+ },
+ "end": {
+ "line": 737,
+ "column": 65
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 27616,
+ 27618
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 69
+ },
+ "end": {
+ "line": 737,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 27588,
+ 27618
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 41
+ },
+ "end": {
+ "line": 737,
+ "column": 71
+ }
+ }
+ },
+ "alternate": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27642,
+ 27646
+ ],
+ "loc": {
+ "start": {
+ "line": 738,
+ "column": 20
+ },
+ "end": {
+ "line": 738,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "watermark",
+ "range": [
+ 27647,
+ 27656
+ ],
+ "loc": {
+ "start": {
+ "line": 738,
+ "column": 25
+ },
+ "end": {
+ "line": 738,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 27642,
+ 27656
+ ],
+ "loc": {
+ "start": {
+ "line": 738,
+ "column": 20
+ },
+ "end": {
+ "line": 738,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 27563,
+ 27656
+ ],
+ "loc": {
+ "start": {
+ "line": 737,
+ "column": 16
+ },
+ "end": {
+ "line": 738,
+ "column": 34
}
}
}
],
"range": [
- 39728,
- 39742
+ 27515,
+ 27670
],
"loc": {
"start": {
- "line": 1008,
+ "line": 736,
"column": 12
},
"end": {
- "line": 1008,
- "column": 26
+ "line": 739,
+ "column": 13
}
}
},
"range": [
- 39728,
- 39743
+ 27515,
+ 27671
],
"loc": {
"start": {
- "line": 1008,
+ "line": 736,
"column": 12
},
"end": {
- "line": 1008,
- "column": 27
+ "line": 739,
+ "column": 14
}
}
}
],
"range": [
- 39714,
- 39753
+ 27501,
+ 27681
],
"loc": {
"start": {
- "line": 1007,
- "column": 67
+ "line": 735,
+ "column": 50
},
"end": {
- "line": 1009,
+ "line": 740,
"column": 9
}
}
},
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39776,
- 39780
- ],
- "loc": {
- "start": {
- "line": 1010,
- "column": 15
- },
- "end": {
- "line": 1010,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 39781,
- 39787
- ],
- "loc": {
- "start": {
- "line": 1010,
- "column": 20
- },
- "end": {
- "line": 1010,
- "column": 26
- }
- }
- },
- "range": [
- 39776,
- 39787
- ],
- "loc": {
- "start": {
- "line": 1010,
- "column": 15
- },
- "end": {
- "line": 1010,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39806,
- 39809
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 16
- },
- "end": {
- "line": 1011,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loader",
- "range": [
- 39810,
- 39816
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 20
- },
- "end": {
- "line": 1011,
- "column": 26
- }
- }
- },
- "range": [
- 39806,
- 39816
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 16
- },
- "end": {
- "line": 1011,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "show",
- "range": [
- 39817,
- 39821
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 27
- },
- "end": {
- "line": 1011,
- "column": 31
- }
- }
- },
- "range": [
- 39806,
- 39821
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 16
- },
- "end": {
- "line": 1011,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 39822,
- 39824
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 32
- },
- "end": {
- "line": 1011,
- "column": 34
- }
- }
- }
- ],
- "range": [
- 39806,
- 39825
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 16
- },
- "end": {
- "line": 1011,
- "column": 35
- }
- }
- },
- "range": [
- 39806,
- 39826
- ],
- "loc": {
- "start": {
- "line": 1011,
- "column": 16
- },
- "end": {
- "line": 1011,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 39788,
- 39840
- ],
- "loc": {
- "start": {
- "line": 1010,
- "column": 27
- },
- "end": {
- "line": 1012,
- "column": 13
- }
- }
- },
- "alternate": null,
+ "alternate": null,
+ "range": [
+ 27459,
+ 27681
+ ],
+ "loc": {
+ "start": {
+ "line": 735,
+ "column": 8
+ },
+ "end": {
+ "line": 740,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "inp",
"range": [
- 39773,
- 39840
+ 27690,
+ 27693
],
"loc": {
"start": {
- "line": 1010,
+ "line": 741,
+ "column": 8
+ },
+ "end": {
+ "line": 741,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "className",
+ "range": [
+ 27694,
+ 27703
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
"column": 12
},
"end": {
- "line": 1012,
+ "line": 741,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 27690,
+ 27703
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 8
+ },
+ "end": {
+ "line": 741,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "Identifier",
+ "name": "cssClass",
+ "range": [
+ 27706,
+ 27714
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 24
+ },
+ "end": {
+ "line": 741,
+ "column": 32
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27718,
+ 27722
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 36
+ },
+ "end": {
+ "line": 741,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltCssClass",
+ "range": [
+ 27723,
+ 27734
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 41
+ },
+ "end": {
+ "line": 741,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 27718,
+ 27734
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 36
+ },
+ "end": {
+ "line": 741,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 27706,
+ 27734
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 24
+ },
+ "end": {
+ "line": 741,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 27690,
+ 27734
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 8
+ },
+ "end": {
+ "line": 741,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 27690,
+ 27735
+ ],
+ "loc": {
+ "start": {
+ "line": 741,
+ "column": 8
+ },
+ "end": {
+ "line": 741,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 27744,
+ 27749
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 8
+ },
+ "end": {
+ "line": 742,
"column": 13
}
}
},
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 27750,
+ 27753
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 14
+ },
+ "end": {
+ "line": 742,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 27744,
+ 27753
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 8
+ },
+ "end": {
+ "line": 742,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
{
- "type": "IfStatement",
- "test": {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 27754,
+ 27757
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 18
+ },
+ "end": {
+ "line": 742,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "focus",
+ "raw": "'focus'",
+ "range": [
+ 27759,
+ 27766
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 23
+ },
+ "end": {
+ "line": 742,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 27768,
+ 27772
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 32
+ },
+ "end": {
+ "line": 742,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Evt",
+ "range": [
+ 27773,
+ 27776
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 37
+ },
+ "end": {
+ "line": 742,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 27768,
+ 27776
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 32
+ },
+ "end": {
+ "line": 742,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onInpFocus",
+ "range": [
+ 27777,
+ 27787
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 41
+ },
+ "end": {
+ "line": 742,
+ "column": 51
+ }
+ }
+ },
"range": [
- 39856,
- 39860
+ 27768,
+ 27787
],
"loc": {
"start": {
- "line": 1013,
- "column": 15
+ "line": 742,
+ "column": 32
},
"end": {
- "line": 1013,
- "column": 19
+ "line": 742,
+ "column": 51
}
}
},
"property": {
"type": "Identifier",
- "name": "statusBar",
+ "name": "bind",
"range": [
- 39861,
- 39870
+ 27788,
+ 27792
],
"loc": {
"start": {
- "line": 1013,
- "column": 20
+ "line": 742,
+ "column": 52
},
"end": {
- "line": 1013,
- "column": 29
+ "line": 742,
+ "column": 56
}
}
},
"range": [
- 39856,
- 39870
+ 27768,
+ 27792
],
"loc": {
"start": {
- "line": 1013,
- "column": 15
+ "line": 742,
+ "column": 32
},
"end": {
- "line": 1013,
- "column": 29
+ "line": 742,
+ "column": 56
}
}
},
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "cpt",
- "range": [
- 39889,
- 39892
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 16
- },
- "end": {
- "line": 1014,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "statusBar",
- "range": [
- 39893,
- 39902
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 20
- },
- "end": {
- "line": 1014,
- "column": 29
- }
- }
- },
- "range": [
- 39889,
- 39902
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 16
- },
- "end": {
- "line": 1014,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "message",
- "range": [
- 39903,
- 39910
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 30
- },
- "end": {
- "line": 1014,
- "column": 37
- }
- }
- },
- "range": [
- 39889,
- 39910
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 16
- },
- "end": {
- "line": 1014,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "ThisExpression",
- "range": [
- 39911,
- 39915
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 38
- },
- "end": {
- "line": 1014,
- "column": 42
- }
- }
- },
- "property": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": "msg",
- "raw": "'msg'",
- "range": [
- 39916,
- 39921
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 43
- },
- "end": {
- "line": 1014,
- "column": 48
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "evt",
- "range": [
- 39922,
- 39925
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 49
- },
- "end": {
- "line": 1014,
- "column": 52
- }
- }
- },
- "range": [
- 39916,
- 39925
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 43
- },
- "end": {
- "line": 1014,
- "column": 52
- }
- }
- },
- "range": [
- 39911,
- 39926
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 38
- },
- "end": {
- "line": 1014,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 39889,
- 39927
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 16
- },
- "end": {
- "line": 1014,
- "column": 54
- }
- }
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 27793,
+ 27797
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 57
},
- "range": [
- 39889,
- 39928
- ],
- "loc": {
- "start": {
- "line": 1014,
- "column": 16
- },
- "end": {
- "line": 1014,
- "column": 55
- }
+ "end": {
+ "line": 742,
+ "column": 61
}
}
- ],
- "range": [
- 39871,
- 39942
- ],
- "loc": {
- "start": {
- "line": 1013,
- "column": 30
- },
- "end": {
- "line": 1015,
- "column": 13
- }
}
- },
- "alternate": null,
+ ],
"range": [
- 39853,
- 39942
+ 27768,
+ 27798
],
"loc": {
"start": {
- "line": 1013,
+ "line": 742,
+ "column": 32
+ },
+ "end": {
+ "line": 742,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 27744,
+ 27799
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 8
+ },
+ "end": {
+ "line": 742,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 27744,
+ 27800
+ ],
+ "loc": {
+ "start": {
+ "line": 742,
+ "column": 8
+ },
+ "end": {
+ "line": 742,
+ "column": 64
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 27810,
+ 27848
+ ],
+ "loc": {
+ "start": {
+ "line": 744,
+ "column": 8
+ },
+ "end": {
+ "line": 744,
+ "column": 46
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 27860,
+ 27876
+ ],
+ "loc": {
+ "start": {
+ "line": 745,
+ "column": 11
+ },
+ "end": {
+ "line": 745,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 27891,
+ 27894
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 12
+ },
+ "end": {
+ "line": 746,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 27895,
+ 27897
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 16
+ },
+ "end": {
+ "line": 746,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 27891,
+ 27897
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 12
+ },
+ "end": {
+ "line": 746,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 27898,
+ 27914
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 19
+ },
+ "end": {
+ "line": 746,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 27891,
+ 27915
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 12
+ },
+ "end": {
+ "line": 746,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 27916,
+ 27927
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 37
+ },
+ "end": {
+ "line": 746,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 27891,
+ 27927
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 12
+ },
+ "end": {
+ "line": 746,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 27928,
+ 27931
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 49
+ },
+ "end": {
+ "line": 746,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 27891,
+ 27932
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
+ "column": 12
+ },
+ "end": {
+ "line": 746,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 27891,
+ 27933
+ ],
+ "loc": {
+ "start": {
+ "line": 746,
"column": 12
},
"end": {
- "line": 1015,
- "column": 13
+ "line": 746,
+ "column": 54
}
}
},
@@ -89832,274 +65530,1662 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "global",
- "range": [
- 39955,
- 39961
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 12
- },
- "end": {
- "line": 1016,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setTimeout",
- "range": [
- 39962,
- 39972
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 19
- },
- "end": {
- "line": 1016,
- "column": 29
- }
- }
- },
- "range": [
- 39955,
- 39972
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 12
- },
- "end": {
- "line": 1016,
- "column": 29
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "efx",
- "range": [
- 39973,
- 39976
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 30
- },
- "end": {
- "line": 1016,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "bind",
- "range": [
- 39977,
- 39981
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 34
- },
- "end": {
- "line": 1016,
- "column": 38
- }
- }
- },
- "range": [
- 39973,
- 39981
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 30
- },
- "end": {
- "line": 1016,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 39982,
- 39986
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 39
- },
- "end": {
- "line": 1016,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 39973,
- 39987
- ],
- "loc": {
- "start": {
- "line": 1016,
- "column": 30
- },
- "end": {
- "line": 1016,
- "column": 44
- }
- }
- },
- {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 39989,
- 39993
+ 27946,
+ 27950
],
"loc": {
"start": {
- "line": 1016,
- "column": 46
+ "line": 747,
+ "column": 12
},
"end": {
- "line": 1016,
- "column": 50
+ "line": 747,
+ "column": 16
}
}
},
"property": {
"type": "Identifier",
- "name": "execDelay",
+ "name": "externalFltEls",
"range": [
- 39994,
- 40003
+ 27951,
+ 27965
],
"loc": {
"start": {
- "line": 1016,
- "column": 51
+ "line": 747,
+ "column": 17
},
"end": {
- "line": 1016,
- "column": 60
+ "line": 747,
+ "column": 31
}
}
},
"range": [
- 39989,
- 40003
+ 27946,
+ 27965
],
"loc": {
"start": {
- "line": 1016,
- "column": 46
+ "line": 747,
+ "column": 12
},
"end": {
- "line": 1016,
- "column": 60
+ "line": 747,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 27966,
+ 27970
+ ],
+ "loc": {
+ "start": {
+ "line": 747,
+ "column": 32
+ },
+ "end": {
+ "line": 747,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 27946,
+ 27970
+ ],
+ "loc": {
+ "start": {
+ "line": 747,
+ "column": 12
+ },
+ "end": {
+ "line": 747,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 27971,
+ 27974
+ ],
+ "loc": {
+ "start": {
+ "line": 747,
+ "column": 37
+ },
+ "end": {
+ "line": 747,
+ "column": 40
}
}
}
],
"range": [
- 39955,
- 40004
+ 27946,
+ 27975
],
"loc": {
"start": {
- "line": 1016,
+ "line": 747,
"column": 12
},
"end": {
- "line": 1016,
- "column": 61
+ "line": 747,
+ "column": 41
}
}
},
"range": [
- 39955,
- 40005
+ 27946,
+ 27976
],
"loc": {
"start": {
- "line": 1016,
+ "line": 747,
"column": 12
},
"end": {
- "line": 1016,
- "column": 62
+ "line": 747,
+ "column": 42
}
}
}
],
"range": [
- 39759,
- 40015
+ 27877,
+ 27986
],
"loc": {
"start": {
- "line": 1009,
+ "line": 745,
+ "column": 28
+ },
+ "end": {
+ "line": 748,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 28006,
+ 28015
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 12
+ },
+ "end": {
+ "line": 749,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 28016,
+ 28027
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 22
+ },
+ "end": {
+ "line": 749,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 28006,
+ 28027
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 12
+ },
+ "end": {
+ "line": 749,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28028,
+ 28031
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 34
+ },
+ "end": {
+ "line": 749,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 28006,
+ 28032
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 12
+ },
+ "end": {
+ "line": 749,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 28006,
+ 28033
+ ],
+ "loc": {
+ "start": {
+ "line": 749,
+ "column": 12
+ },
+ "end": {
+ "line": 749,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 27992,
+ 28043
+ ],
+ "loc": {
+ "start": {
+ "line": 748,
"column": 15
},
"end": {
- "line": 1017,
+ "line": 750,
"column": 9
}
}
},
"range": [
- 39655,
- 40015
+ 27857,
+ 28043
],
"loc": {
"start": {
- "line": 1007,
+ "line": 745,
"column": 8
},
"end": {
- "line": 1017,
+ "line": 750,
"column": 9
}
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 27810,
+ 27848
+ ],
+ "loc": {
+ "start": {
+ "line": 744,
+ "column": 8
+ },
+ "end": {
+ "line": 744,
+ "column": 46
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28053,
+ 28057
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 8
+ },
+ "end": {
+ "line": 752,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltIds",
+ "range": [
+ 28058,
+ 28064
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 13
+ },
+ "end": {
+ "line": 752,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 28053,
+ 28064
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 8
+ },
+ "end": {
+ "line": 752,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 28065,
+ 28069
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 20
+ },
+ "end": {
+ "line": 752,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 28053,
+ 28069
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 8
+ },
+ "end": {
+ "line": 752,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28070,
+ 28073
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 25
+ },
+ "end": {
+ "line": 752,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 28074,
+ 28076
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 29
+ },
+ "end": {
+ "line": 752,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 28070,
+ 28076
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 25
+ },
+ "end": {
+ "line": 752,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "range": [
+ 28053,
+ 28077
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 8
+ },
+ "end": {
+ "line": 752,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 28053,
+ 28078
+ ],
+ "loc": {
+ "start": {
+ "line": 752,
+ "column": 8
+ },
+ "end": {
+ "line": 752,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 28088,
+ 28093
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 8
+ },
+ "end": {
+ "line": 754,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 28094,
+ 28097
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 14
+ },
+ "end": {
+ "line": 754,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 28088,
+ 28097
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 8
+ },
+ "end": {
+ "line": 754,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28098,
+ 28101
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 18
+ },
+ "end": {
+ "line": 754,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "keypress",
+ "raw": "'keypress'",
+ "range": [
+ 28103,
+ 28113
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 23
+ },
+ "end": {
+ "line": 754,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28115,
+ 28119
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 35
+ },
+ "end": {
+ "line": 754,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Evt",
+ "range": [
+ 28120,
+ 28123
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 40
+ },
+ "end": {
+ "line": 754,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 28115,
+ 28123
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 35
+ },
+ "end": {
+ "line": 754,
+ "column": 43
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "detectKey",
+ "range": [
+ 28124,
+ 28133
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 44
+ },
+ "end": {
+ "line": 754,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 28115,
+ 28133
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 35
+ },
+ "end": {
+ "line": 754,
+ "column": 53
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "bind",
+ "range": [
+ 28134,
+ 28138
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 54
+ },
+ "end": {
+ "line": 754,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 28115,
+ 28138
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 35
+ },
+ "end": {
+ "line": 754,
+ "column": 58
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 28139,
+ 28143
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 59
+ },
+ "end": {
+ "line": 754,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 28115,
+ 28144
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 35
+ },
+ "end": {
+ "line": 754,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 28088,
+ 28145
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 8
+ },
+ "end": {
+ "line": 754,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 28088,
+ 28146
+ ],
+ "loc": {
+ "start": {
+ "line": 754,
+ "column": 8
+ },
+ "end": {
+ "line": 754,
+ "column": 66
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 28155,
+ 28160
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 8
+ },
+ "end": {
+ "line": 755,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 28161,
+ 28164
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 14
+ },
+ "end": {
+ "line": 755,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 28155,
+ 28164
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 8
+ },
+ "end": {
+ "line": 755,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28165,
+ 28168
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 18
+ },
+ "end": {
+ "line": 755,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "keydown",
+ "raw": "'keydown'",
+ "range": [
+ 28170,
+ 28179
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 23
+ },
+ "end": {
+ "line": 755,
+ "column": 32
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28181,
+ 28185
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 34
+ },
+ "end": {
+ "line": 755,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Evt",
+ "range": [
+ 28186,
+ 28189
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 39
+ },
+ "end": {
+ "line": 755,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 28181,
+ 28189
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 34
+ },
+ "end": {
+ "line": 755,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onKeyDown",
+ "range": [
+ 28190,
+ 28199
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 43
+ },
+ "end": {
+ "line": 755,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 28181,
+ 28199
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 34
+ },
+ "end": {
+ "line": 755,
+ "column": 52
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "bind",
+ "range": [
+ 28200,
+ 28204
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 53
+ },
+ "end": {
+ "line": 755,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 28181,
+ 28204
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 34
+ },
+ "end": {
+ "line": 755,
+ "column": 57
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 28205,
+ 28209
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 58
+ },
+ "end": {
+ "line": 755,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 28181,
+ 28210
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 34
+ },
+ "end": {
+ "line": 755,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 28155,
+ 28211
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 8
+ },
+ "end": {
+ "line": 755,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 28155,
+ 28212
+ ],
+ "loc": {
+ "start": {
+ "line": 755,
+ "column": 8
+ },
+ "end": {
+ "line": 755,
+ "column": 65
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 28221,
+ 28226
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 8
+ },
+ "end": {
+ "line": 756,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 28227,
+ 28230
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 14
+ },
+ "end": {
+ "line": 756,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 28221,
+ 28230
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 8
+ },
+ "end": {
+ "line": 756,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28231,
+ 28234
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 18
+ },
+ "end": {
+ "line": 756,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "keyup",
+ "raw": "'keyup'",
+ "range": [
+ 28236,
+ 28243
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 23
+ },
+ "end": {
+ "line": 756,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28245,
+ 28249
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 32
+ },
+ "end": {
+ "line": 756,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Evt",
+ "range": [
+ 28250,
+ 28253
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 37
+ },
+ "end": {
+ "line": 756,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 28245,
+ 28253
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 32
+ },
+ "end": {
+ "line": 756,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onKeyUp",
+ "range": [
+ 28254,
+ 28261
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 41
+ },
+ "end": {
+ "line": 756,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 28245,
+ 28261
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 32
+ },
+ "end": {
+ "line": 756,
+ "column": 48
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "bind",
+ "range": [
+ 28262,
+ 28266
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 49
+ },
+ "end": {
+ "line": 756,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 28245,
+ 28266
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 32
+ },
+ "end": {
+ "line": 756,
+ "column": 53
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 28267,
+ 28271
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 54
+ },
+ "end": {
+ "line": 756,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 28245,
+ 28272
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 32
+ },
+ "end": {
+ "line": 756,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 28221,
+ 28273
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 8
+ },
+ "end": {
+ "line": 756,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 28221,
+ 28274
+ ],
+ "loc": {
+ "start": {
+ "line": 756,
+ "column": 8
+ },
+ "end": {
+ "line": 756,
+ "column": 61
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 28283,
+ 28288
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 8
+ },
+ "end": {
+ "line": 757,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 28289,
+ 28292
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 14
+ },
+ "end": {
+ "line": 757,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 28283,
+ 28292
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 8
+ },
+ "end": {
+ "line": 757,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "inp",
+ "range": [
+ 28293,
+ 28296
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 18
+ },
+ "end": {
+ "line": 757,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "blur",
+ "raw": "'blur'",
+ "range": [
+ 28298,
+ 28304
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 23
+ },
+ "end": {
+ "line": 757,
+ "column": 29
+ }
+ }
+ },
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28306,
+ 28310
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 31
+ },
+ "end": {
+ "line": 757,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Evt",
+ "range": [
+ 28311,
+ 28314
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 36
+ },
+ "end": {
+ "line": 757,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 28306,
+ 28314
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 31
+ },
+ "end": {
+ "line": 757,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onInpBlur",
+ "range": [
+ 28315,
+ 28324
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 40
+ },
+ "end": {
+ "line": 757,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 28306,
+ 28324
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 31
+ },
+ "end": {
+ "line": 757,
+ "column": 49
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "bind",
+ "range": [
+ 28325,
+ 28329
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 50
+ },
+ "end": {
+ "line": 757,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 28306,
+ 28329
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 31
+ },
+ "end": {
+ "line": 757,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ThisExpression",
+ "range": [
+ 28330,
+ 28334
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 55
+ },
+ "end": {
+ "line": 757,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 28306,
+ 28335
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 31
+ },
+ "end": {
+ "line": 757,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 28283,
+ 28336
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 8
+ },
+ "end": {
+ "line": 757,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 28283,
+ 28337
+ ],
+ "loc": {
+ "start": {
+ "line": 757,
+ "column": 8
+ },
+ "end": {
+ "line": 757,
+ "column": 62
+ }
}
}
],
"range": [
- 37641,
- 40021
+ 27079,
+ 28343
],
"loc": {
"start": {
- "line": 946,
- "column": 79
+ "line": 726,
+ "column": 52
},
"end": {
- "line": 1018,
+ "line": 758,
"column": 5
}
}
@@ -90107,16 +67193,16 @@
"generator": false,
"expression": false,
"range": [
- 37556,
- 40021
+ 27048,
+ 28343
],
"loc": {
"start": {
- "line": 945,
- "column": 14
+ "line": 726,
+ "column": 21
},
"end": {
- "line": 1018,
+ "line": 758,
"column": 5
}
}
@@ -90124,34 +67210,1749 @@
"kind": "method",
"computed": false,
"range": [
- 37546,
- 40021
+ 27031,
+ 28343
],
"loc": {
"start": {
- "line": 945,
+ "line": 726,
"column": 4
},
"end": {
- "line": 1018,
+ "line": 758,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Manages state messages\n * @param {String} evt Event name\n * @param {Object} cfg Config object\n ",
+ "value": "*\n * Build input filter type\n * @param {Number} colIndex Column index\n * @param {String} cssClass Css class applied to filter\n * @param {DOMElement} container Container DOM element\n ",
"range": [
- 37421,
- 37541
+ 26807,
+ 27026
],
"loc": {
"start": {
- "line": 940,
+ "line": 720,
"column": 4
},
"end": {
- "line": 944,
+ "line": 725,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Build submit button\n * @param {Number} colIndex Column index\n * @param {DOMElement} container Container DOM element\n ",
+ "range": [
+ 28349,
+ 28498
+ ],
+ "loc": {
+ "start": {
+ "line": 760,
+ "column": 4
+ },
+ "end": {
+ "line": 764,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "_buildSubmitButton",
+ "range": [
+ 28503,
+ 28521
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 4
+ },
+ "end": {
+ "line": 765,
+ "column": 22
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 28522,
+ 28530
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 23
+ },
+ "end": {
+ "line": 765,
+ "column": 31
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 28532,
+ 28541
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 33
+ },
+ "end": {
+ "line": 765,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 28556,
+ 28572
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 12
+ },
+ "end": {
+ "line": 766,
+ "column": 28
+ }
+ }
+ },
+ "init": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28575,
+ 28579
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 31
+ },
+ "end": {
+ "line": 766,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 28580,
+ 28593
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 36
+ },
+ "end": {
+ "line": 766,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 28575,
+ 28593
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 31
+ },
+ "end": {
+ "line": 766,
+ "column": 49
+ }
+ }
+ },
+ "consequent": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28608,
+ 28612
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 12
+ },
+ "end": {
+ "line": 767,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "externalFltTgtIds",
+ "range": [
+ 28613,
+ 28630
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 17
+ },
+ "end": {
+ "line": 767,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 28608,
+ 28630
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 12
+ },
+ "end": {
+ "line": 767,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 28631,
+ 28639
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 35
+ },
+ "end": {
+ "line": 767,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 28608,
+ 28640
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 12
+ },
+ "end": {
+ "line": 767,
+ "column": 44
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 28643,
+ 28647
+ ],
+ "loc": {
+ "start": {
+ "line": 767,
+ "column": 47
+ },
+ "end": {
+ "line": 767,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 28575,
+ 28647
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 31
+ },
+ "end": {
+ "line": 767,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 28556,
+ 28647
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 12
+ },
+ "end": {
+ "line": 767,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 28552,
+ 28648
+ ],
+ "loc": {
+ "start": {
+ "line": 766,
+ "column": 8
+ },
+ "end": {
+ "line": 767,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "btn",
+ "range": [
+ 28661,
+ 28664
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 12
+ },
+ "end": {
+ "line": 768,
+ "column": 15
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 28667,
+ 28670
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 18
+ },
+ "end": {
+ "line": 768,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "create",
+ "range": [
+ 28671,
+ 28677
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 22
+ },
+ "end": {
+ "line": 768,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 28667,
+ 28677
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 18
+ },
+ "end": {
+ "line": 768,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28678,
+ 28682
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 29
+ },
+ "end": {
+ "line": 768,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeInp",
+ "range": [
+ 28683,
+ 28693
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 34
+ },
+ "end": {
+ "line": 768,
+ "column": 44
+ }
+ }
+ },
+ "range": [
+ 28678,
+ 28693
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 29
+ },
+ "end": {
+ "line": 768,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "id",
+ "raw": "'id'",
+ "range": [
+ 28708,
+ 28712
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 13
+ },
+ "end": {
+ "line": 769,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28714,
+ 28718
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 19
+ },
+ "end": {
+ "line": 769,
+ "column": 23
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "prfxValButton",
+ "range": [
+ 28719,
+ 28732
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 24
+ },
+ "end": {
+ "line": 769,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 28714,
+ 28732
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 19
+ },
+ "end": {
+ "line": 769,
+ "column": 37
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 28733,
+ 28741
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 38
+ },
+ "end": {
+ "line": 769,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 28714,
+ 28741
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 19
+ },
+ "end": {
+ "line": 769,
+ "column": 46
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "_",
+ "raw": "'_'",
+ "range": [
+ 28742,
+ 28745
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 47
+ },
+ "end": {
+ "line": 769,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 28714,
+ 28745
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 19
+ },
+ "end": {
+ "line": 769,
+ "column": 50
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28746,
+ 28750
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 51
+ },
+ "end": {
+ "line": 769,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 28751,
+ 28753
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 56
+ },
+ "end": {
+ "line": 769,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 28746,
+ 28753
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 51
+ },
+ "end": {
+ "line": 769,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 28714,
+ 28753
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 19
+ },
+ "end": {
+ "line": 769,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 28707,
+ 28754
+ ],
+ "loc": {
+ "start": {
+ "line": 769,
+ "column": 12
+ },
+ "end": {
+ "line": 769,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "type",
+ "raw": "'type'",
+ "range": [
+ 28769,
+ 28775
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 13
+ },
+ "end": {
+ "line": 770,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "button",
+ "raw": "'button'",
+ "range": [
+ 28777,
+ 28785
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 21
+ },
+ "end": {
+ "line": 770,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "range": [
+ 28768,
+ 28786
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 12
+ },
+ "end": {
+ "line": 770,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "value",
+ "raw": "'value'",
+ "range": [
+ 28789,
+ 28796
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 33
+ },
+ "end": {
+ "line": 770,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28798,
+ 28802
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 42
+ },
+ "end": {
+ "line": 770,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "btnText",
+ "range": [
+ 28803,
+ 28810
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 47
+ },
+ "end": {
+ "line": 770,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 28798,
+ 28810
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 42
+ },
+ "end": {
+ "line": 770,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 28788,
+ 28811
+ ],
+ "loc": {
+ "start": {
+ "line": 770,
+ "column": 32
+ },
+ "end": {
+ "line": 770,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 28667,
+ 28812
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 18
+ },
+ "end": {
+ "line": 770,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 28661,
+ 28812
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 12
+ },
+ "end": {
+ "line": 770,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 28657,
+ 28813
+ ],
+ "loc": {
+ "start": {
+ "line": 768,
+ "column": 8
+ },
+ "end": {
+ "line": 770,
+ "column": 57
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "btn",
+ "range": [
+ 28822,
+ 28825
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 8
+ },
+ "end": {
+ "line": 771,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "className",
+ "range": [
+ 28826,
+ 28835
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 12
+ },
+ "end": {
+ "line": 771,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 28822,
+ 28835
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 8
+ },
+ "end": {
+ "line": 771,
+ "column": 21
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 28838,
+ 28842
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 24
+ },
+ "end": {
+ "line": 771,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "btnCssClass",
+ "range": [
+ 28843,
+ 28854
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 29
+ },
+ "end": {
+ "line": 771,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 28838,
+ 28854
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 24
+ },
+ "end": {
+ "line": 771,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 28822,
+ 28854
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 8
+ },
+ "end": {
+ "line": 771,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 28822,
+ 28855
+ ],
+ "loc": {
+ "start": {
+ "line": 771,
+ "column": 8
+ },
+ "end": {
+ "line": 771,
+ "column": 41
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 28865,
+ 28903
+ ],
+ "loc": {
+ "start": {
+ "line": 773,
+ "column": 8
+ },
+ "end": {
+ "line": 773,
+ "column": 46
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 28915,
+ 28931
+ ],
+ "loc": {
+ "start": {
+ "line": 774,
+ "column": 11
+ },
+ "end": {
+ "line": 774,
+ "column": 27
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 28946,
+ 28949
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "id",
+ "range": [
+ 28950,
+ 28952
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 16
+ },
+ "end": {
+ "line": 775,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 28946,
+ 28952
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 18
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "externalFltTgtId",
+ "range": [
+ 28953,
+ 28969
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 19
+ },
+ "end": {
+ "line": 775,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 28946,
+ 28970
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 28971,
+ 28982
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 37
+ },
+ "end": {
+ "line": 775,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 28946,
+ 28982
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "btn",
+ "range": [
+ 28983,
+ 28986
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 49
+ },
+ "end": {
+ "line": 775,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 28946,
+ 28987
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 28946,
+ 28988
+ ],
+ "loc": {
+ "start": {
+ "line": 775,
+ "column": 12
+ },
+ "end": {
+ "line": 775,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 28932,
+ 28998
+ ],
+ "loc": {
+ "start": {
+ "line": 774,
+ "column": 28
+ },
+ "end": {
+ "line": 776,
+ "column": 9
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 29017,
+ 29026
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 12
+ },
+ "end": {
+ "line": 777,
+ "column": 21
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "appendChild",
+ "range": [
+ 29027,
+ 29038
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 22
+ },
+ "end": {
+ "line": 777,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 29017,
+ 29038
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 12
+ },
+ "end": {
+ "line": 777,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "btn",
+ "range": [
+ 29039,
+ 29042
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 34
+ },
+ "end": {
+ "line": 777,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "range": [
+ 29017,
+ 29043
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 12
+ },
+ "end": {
+ "line": 777,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 29017,
+ 29044
+ ],
+ "loc": {
+ "start": {
+ "line": 777,
+ "column": 12
+ },
+ "end": {
+ "line": 777,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 29003,
+ 29054
+ ],
+ "loc": {
+ "start": {
+ "line": 776,
+ "column": 14
+ },
+ "end": {
+ "line": 778,
+ "column": 9
+ }
+ }
+ },
+ "range": [
+ 28912,
+ 29054
+ ],
+ "loc": {
+ "start": {
+ "line": 774,
+ "column": 8
+ },
+ "end": {
+ "line": 778,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 28865,
+ 28903
+ ],
+ "loc": {
+ "start": {
+ "line": 773,
+ "column": 8
+ },
+ "end": {
+ "line": 773,
+ "column": 46
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Event",
+ "range": [
+ 29064,
+ 29069
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 8
+ },
+ "end": {
+ "line": 780,
+ "column": 13
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "add",
+ "range": [
+ 29070,
+ 29073
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 14
+ },
+ "end": {
+ "line": 780,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 29064,
+ 29073
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 8
+ },
+ "end": {
+ "line": 780,
+ "column": 17
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "btn",
+ "range": [
+ 29074,
+ 29077
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 18
+ },
+ "end": {
+ "line": 780,
+ "column": 21
+ }
+ }
+ },
+ {
+ "type": "Literal",
+ "value": "click",
+ "raw": "'click'",
+ "range": [
+ 29079,
+ 29086
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 23
+ },
+ "end": {
+ "line": 780,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 29093,
+ 29097
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 37
+ },
+ "end": {
+ "line": 780,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filter",
+ "range": [
+ 29098,
+ 29104
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 42
+ },
+ "end": {
+ "line": 780,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 29093,
+ 29104
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 37
+ },
+ "end": {
+ "line": 780,
+ "column": 48
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 29093,
+ 29106
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 37
+ },
+ "end": {
+ "line": 780,
+ "column": 50
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 29088,
+ 29106
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 32
+ },
+ "end": {
+ "line": 780,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 29064,
+ 29107
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 8
+ },
+ "end": {
+ "line": 780,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 29064,
+ 29108
+ ],
+ "loc": {
+ "start": {
+ "line": 780,
+ "column": 8
+ },
+ "end": {
+ "line": 780,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 28542,
+ 29114
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 43
+ },
+ "end": {
+ "line": 781,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 28521,
+ 29114
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 22
+ },
+ "end": {
+ "line": 781,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 28503,
+ 29114
+ ],
+ "loc": {
+ "start": {
+ "line": 765,
+ "column": 4
+ },
+ "end": {
+ "line": 781,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Build submit button\n * @param {Number} colIndex Column index\n * @param {DOMElement} container Container DOM element\n ",
+ "range": [
+ 28349,
+ 28498
+ ],
+ "loc": {
+ "start": {
+ "line": 760,
+ "column": 4
+ },
+ "end": {
+ "line": 764,
"column": 7
}
}
@@ -90162,16 +68963,16 @@
"type": "Block",
"value": "*\n * Return a feature instance for a given name\n * @param {String} name Name of the feature\n * @return {Object}\n ",
"range": [
- 40027,
- 40161
+ 29120,
+ 29254
],
"loc": {
"start": {
- "line": 1020,
+ "line": 783,
"column": 4
},
"end": {
- "line": 1024,
+ "line": 787,
"column": 7
}
}
@@ -90185,16 +68986,16 @@
"type": "Identifier",
"name": "feature",
"range": [
- 40166,
- 40173
+ 29259,
+ 29266
],
"loc": {
"start": {
- "line": 1025,
+ "line": 788,
"column": 4
},
"end": {
- "line": 1025,
+ "line": 788,
"column": 11
}
}
@@ -90207,16 +69008,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 40174,
- 40178
+ 29267,
+ 29271
],
"loc": {
"start": {
- "line": 1025,
+ "line": 788,
"column": 12
},
"end": {
- "line": 1025,
+ "line": 788,
"column": 16
}
}
@@ -90236,16 +69037,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 40196,
- 40200
+ 29289,
+ 29293
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 15
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 19
}
}
@@ -90254,31 +69055,31 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 40201,
- 40204
+ 29294,
+ 29297
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 20
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 23
}
}
},
"range": [
- 40196,
- 40204
+ 29289,
+ 29297
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 15
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 23
}
}
@@ -90287,62 +69088,62 @@
"type": "Identifier",
"name": "name",
"range": [
- 40205,
- 40209
+ 29298,
+ 29302
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 24
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 28
}
}
},
"range": [
- 40196,
- 40210
+ 29289,
+ 29303
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 15
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 29
}
}
},
"range": [
- 40189,
- 40211
+ 29282,
+ 29304
],
"loc": {
"start": {
- "line": 1026,
+ "line": 789,
"column": 8
},
"end": {
- "line": 1026,
+ "line": 789,
"column": 30
}
}
}
],
"range": [
- 40179,
- 40217
+ 29272,
+ 29310
],
"loc": {
"start": {
- "line": 1025,
+ "line": 788,
"column": 17
},
"end": {
- "line": 1027,
+ "line": 790,
"column": 5
}
}
@@ -90350,16 +69151,16 @@
"generator": false,
"expression": false,
"range": [
- 40173,
- 40217
+ 29266,
+ 29310
],
"loc": {
"start": {
- "line": 1025,
+ "line": 788,
"column": 11
},
"end": {
- "line": 1027,
+ "line": 790,
"column": 5
}
}
@@ -90367,16 +69168,16 @@
"kind": "method",
"computed": false,
"range": [
- 40166,
- 40217
+ 29259,
+ 29310
],
"loc": {
"start": {
- "line": 1025,
+ "line": 788,
"column": 4
},
"end": {
- "line": 1027,
+ "line": 790,
"column": 5
}
},
@@ -90385,16 +69186,16 @@
"type": "Block",
"value": "*\n * Return a feature instance for a given name\n * @param {String} name Name of the feature\n * @return {Object}\n ",
"range": [
- 40027,
- 40161
+ 29120,
+ 29254
],
"loc": {
"start": {
- "line": 1020,
+ "line": 783,
"column": 4
},
"end": {
- "line": 1024,
+ "line": 787,
"column": 7
}
}
@@ -90405,16 +69206,16 @@
"type": "Block",
"value": "*\n * Initialise all the extensions defined in the configuration object\n ",
"range": [
- 40223,
- 40307
+ 29316,
+ 29400
],
"loc": {
"start": {
- "line": 1029,
+ "line": 792,
"column": 4
},
"end": {
- "line": 1031,
+ "line": 794,
"column": 7
}
}
@@ -90428,16 +69229,16 @@
"type": "Identifier",
"name": "initExtensions",
"range": [
- 40312,
- 40326
+ 29405,
+ 29419
],
"loc": {
"start": {
- "line": 1032,
+ "line": 795,
"column": 4
},
"end": {
- "line": 1032,
+ "line": 795,
"column": 18
}
}
@@ -90458,16 +69259,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 40342,
- 40346
+ 29435,
+ 29439
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 12
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 16
}
}
@@ -90478,16 +69279,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 40349,
- 40353
+ 29442,
+ 29446
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 19
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 23
}
}
@@ -90496,46 +69297,46 @@
"type": "Identifier",
"name": "extensions",
"range": [
- 40354,
- 40364
+ 29447,
+ 29457
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 24
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 34
}
}
},
"range": [
- 40349,
- 40364
+ 29442,
+ 29457
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 19
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 34
}
}
},
"range": [
- 40342,
- 40364
+ 29435,
+ 29457
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 12
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 34
}
}
@@ -90543,18 +69344,325 @@
],
"kind": "let",
"range": [
- 40338,
- 40365
+ 29431,
+ 29458
],
"loc": {
"start": {
- "line": 1033,
+ "line": 796,
"column": 8
},
"end": {
- "line": 1033,
+ "line": 796,
"column": 35
}
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " Set config's publicPath dynamically for Webpack...",
+ "range": [
+ 29467,
+ 29520
+ ],
+ "loc": {
+ "start": {
+ "line": 797,
+ "column": 8
+ },
+ "end": {
+ "line": 797,
+ "column": 61
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "__webpack_public_path__",
+ "range": [
+ 29529,
+ 29552
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 8
+ },
+ "end": {
+ "line": 798,
+ "column": 31
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 29555,
+ 29559
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 34
+ },
+ "end": {
+ "line": 798,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "basePath",
+ "range": [
+ 29560,
+ 29568
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 39
+ },
+ "end": {
+ "line": 798,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 29555,
+ 29568
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 34
+ },
+ "end": {
+ "line": 798,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 29529,
+ 29568
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 8
+ },
+ "end": {
+ "line": 798,
+ "column": 47
+ }
+ }
+ },
+ "range": [
+ 29529,
+ 29569
+ ],
+ "loc": {
+ "start": {
+ "line": 798,
+ "column": 8
+ },
+ "end": {
+ "line": 798,
+ "column": 48
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Set config's publicPath dynamically for Webpack...",
+ "range": [
+ 29467,
+ 29520
+ ],
+ "loc": {
+ "start": {
+ "line": 797,
+ "column": 8
+ },
+ "end": {
+ "line": 797,
+ "column": 61
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 29579,
+ 29583
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 8
+ },
+ "end": {
+ "line": 800,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 29584,
+ 29591
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 13
+ },
+ "end": {
+ "line": 800,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 29579,
+ 29591
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 8
+ },
+ "end": {
+ "line": 800,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 29592,
+ 29596
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 21
+ },
+ "end": {
+ "line": 800,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 29579,
+ 29596
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 8
+ },
+ "end": {
+ "line": 800,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-loading-extensions",
+ "raw": "'before-loading-extensions'",
+ "range": [
+ 29597,
+ 29624
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 26
+ },
+ "end": {
+ "line": 800,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 29626,
+ 29630
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 55
+ },
+ "end": {
+ "line": 800,
+ "column": 59
+ }
+ }
+ }
+ ],
+ "range": [
+ 29579,
+ 29631
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 8
+ },
+ "end": {
+ "line": 800,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 29579,
+ 29632
+ ],
+ "loc": {
+ "start": {
+ "line": 800,
+ "column": 8
+ },
+ "end": {
+ "line": 800,
+ "column": 61
+ }
}
},
{
@@ -90568,16 +69676,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 40383,
- 40384
+ 29649,
+ 29650
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 16
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 17
}
}
@@ -90587,31 +69695,31 @@
"value": 0,
"raw": "0",
"range": [
- 40385,
- 40386
+ 29651,
+ 29652
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 18
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 19
}
}
},
"range": [
- 40383,
- 40386
+ 29649,
+ 29652
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 16
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 19
}
}
@@ -90622,16 +69730,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 40388,
- 40391
+ 29654,
+ 29657
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 21
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 24
}
}
@@ -90643,16 +69751,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 40392,
- 40396
+ 29658,
+ 29662
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 25
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 29
}
}
@@ -90661,46 +69769,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 40397,
- 40403
+ 29663,
+ 29669
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 30
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 36
}
}
},
"range": [
- 40392,
- 40403
+ 29658,
+ 29669
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 25
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 36
}
}
},
"range": [
- 40388,
- 40403
+ 29654,
+ 29669
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 21
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 36
}
}
@@ -90708,16 +69816,16 @@
],
"kind": "let",
"range": [
- 40379,
- 40403
+ 29645,
+ 29669
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 12
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 36
}
}
@@ -90729,16 +69837,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 40405,
- 40406
+ 29671,
+ 29672
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 38
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 39
}
}
@@ -90747,31 +69855,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 40407,
- 40410
+ 29673,
+ 29676
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 40
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 43
}
}
},
"range": [
- 40405,
- 40410
+ 29671,
+ 29676
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 38
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 43
}
}
@@ -90783,32 +69891,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 40412,
- 40413
+ 29678,
+ 29679
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 45
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 46
}
}
},
"prefix": false,
"range": [
- 40412,
- 40415
+ 29678,
+ 29681
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 45
},
"end": {
- "line": 1035,
+ "line": 801,
"column": 48
}
}
@@ -90825,16 +69933,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40434,
- 40437
+ 29700,
+ 29703
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 16
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 19
}
}
@@ -90846,16 +69954,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 40440,
- 40444
+ 29706,
+ 29710
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 22
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 26
}
}
@@ -90864,46 +69972,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 40445,
- 40446
+ 29711,
+ 29712
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 27
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 28
}
}
},
"range": [
- 40440,
- 40447
+ 29706,
+ 29713
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 22
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 29
}
}
},
"range": [
- 40434,
- 40447
+ 29700,
+ 29713
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 16
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 29
}
}
@@ -90911,16 +70019,16 @@
],
"kind": "let",
"range": [
- 40430,
- 40448
+ 29696,
+ 29714
],
"loc": {
"start": {
- "line": 1036,
+ "line": 802,
"column": 12
},
"end": {
- "line": 1036,
+ "line": 802,
"column": 30
}
}
@@ -90939,16 +70047,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 40465,
- 40469
+ 29731,
+ 29735
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 16
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 20
}
}
@@ -90957,31 +70065,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 40470,
- 40481
+ 29736,
+ 29747
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 21
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 32
}
}
},
"range": [
- 40465,
- 40481
+ 29731,
+ 29747
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 16
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 32
}
}
@@ -90993,16 +70101,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40482,
- 40485
+ 29748,
+ 29751
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 33
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 36
}
}
@@ -91011,62 +70119,62 @@
"type": "Identifier",
"name": "name",
"range": [
- 40486,
- 40490
+ 29752,
+ 29756
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 37
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 41
}
}
},
"range": [
- 40482,
- 40490
+ 29748,
+ 29756
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 33
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 41
}
}
},
"range": [
- 40465,
- 40491
+ 29731,
+ 29757
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 16
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 42
}
}
},
"prefix": true,
"range": [
- 40464,
- 40491
+ 29730,
+ 29757
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 15
},
"end": {
- "line": 1037,
+ "line": 803,
"column": 42
}
}
@@ -91084,16 +70192,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 40510,
- 40514
+ 29776,
+ 29780
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 16
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 20
}
}
@@ -91102,31 +70210,31 @@
"type": "Identifier",
"name": "loadExtension",
"range": [
- 40515,
- 40528
+ 29781,
+ 29794
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 21
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 34
}
}
},
"range": [
- 40510,
- 40528
+ 29776,
+ 29794
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 16
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 34
}
}
@@ -91136,126 +70244,287 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40529,
- 40532
+ 29795,
+ 29798
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 35
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 38
}
}
}
],
"range": [
- 40510,
- 40533
+ 29776,
+ 29799
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 16
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 39
}
}
},
"range": [
- 40510,
- 40534
+ 29776,
+ 29800
],
"loc": {
"start": {
- "line": 1038,
+ "line": 804,
"column": 16
},
"end": {
- "line": 1038,
+ "line": 804,
"column": 40
}
}
}
],
"range": [
- 40492,
- 40548
+ 29758,
+ 29814
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 43
},
"end": {
- "line": 1039,
+ "line": 805,
"column": 13
}
}
},
"alternate": null,
"range": [
- 40461,
- 40548
+ 29727,
+ 29814
],
"loc": {
"start": {
- "line": 1037,
+ "line": 803,
"column": 12
},
"end": {
- "line": 1039,
+ "line": 805,
"column": 13
}
}
}
],
"range": [
- 40416,
- 40558
+ 29682,
+ 29824
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 49
},
"end": {
- "line": 1040,
+ "line": 806,
"column": 9
}
}
},
"range": [
- 40375,
- 40558
+ 29641,
+ 29824
],
"loc": {
"start": {
- "line": 1035,
+ "line": 801,
"column": 8
},
"end": {
- "line": 1040,
+ "line": 806,
"column": 9
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 29833,
+ 29837
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 8
+ },
+ "end": {
+ "line": 807,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 29838,
+ 29845
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 13
+ },
+ "end": {
+ "line": 807,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 29833,
+ 29845
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 8
+ },
+ "end": {
+ "line": 807,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 29846,
+ 29850
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 21
+ },
+ "end": {
+ "line": 807,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 29833,
+ 29850
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 8
+ },
+ "end": {
+ "line": 807,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-loading-extensions",
+ "raw": "'after-loading-extensions'",
+ "range": [
+ 29851,
+ 29877
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 26
+ },
+ "end": {
+ "line": 807,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 29879,
+ 29883
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 54
+ },
+ "end": {
+ "line": 807,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 29833,
+ 29884
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 8
+ },
+ "end": {
+ "line": 807,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 29833,
+ 29885
+ ],
+ "loc": {
+ "start": {
+ "line": 807,
+ "column": 8
+ },
+ "end": {
+ "line": 807,
+ "column": 60
+ }
+ }
}
],
"range": [
- 40328,
- 40564
+ 29421,
+ 29891
],
"loc": {
"start": {
- "line": 1032,
+ "line": 795,
"column": 20
},
"end": {
- "line": 1041,
+ "line": 808,
"column": 5
}
}
@@ -91263,16 +70532,16 @@
"generator": false,
"expression": false,
"range": [
- 40326,
- 40564
+ 29419,
+ 29891
],
"loc": {
"start": {
- "line": 1032,
+ "line": 795,
"column": 18
},
"end": {
- "line": 1041,
+ "line": 808,
"column": 5
}
}
@@ -91280,16 +70549,16 @@
"kind": "method",
"computed": false,
"range": [
- 40312,
- 40564
+ 29405,
+ 29891
],
"loc": {
"start": {
- "line": 1032,
+ "line": 795,
"column": 4
},
"end": {
- "line": 1041,
+ "line": 808,
"column": 5
}
},
@@ -91298,16 +70567,16 @@
"type": "Block",
"value": "*\n * Initialise all the extensions defined in the configuration object\n ",
"range": [
- 40223,
- 40307
+ 29316,
+ 29400
],
"loc": {
"start": {
- "line": 1029,
+ "line": 792,
"column": 4
},
"end": {
- "line": 1031,
+ "line": 794,
"column": 7
}
}
@@ -91318,16 +70587,16 @@
"type": "Block",
"value": "*\n * Load an extension module\n * @param {Object} ext Extension config object\n ",
"range": [
- 40570,
- 40665
+ 29897,
+ 29992
],
"loc": {
"start": {
- "line": 1043,
+ "line": 810,
"column": 4
},
"end": {
- "line": 1046,
+ "line": 813,
"column": 7
}
}
@@ -91341,16 +70610,16 @@
"type": "Identifier",
"name": "loadExtension",
"range": [
- 40670,
- 40683
+ 29997,
+ 30010
],
"loc": {
"start": {
- "line": 1047,
+ "line": 814,
"column": 4
},
"end": {
- "line": 1047,
+ "line": 814,
"column": 17
}
}
@@ -91363,16 +70632,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40684,
- 40687
+ 30011,
+ 30014
],
"loc": {
"start": {
- "line": 1047,
+ "line": 814,
"column": 18
},
"end": {
- "line": 1047,
+ "line": 814,
"column": 21
}
}
@@ -91393,32 +70662,32 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40702,
- 40705
+ 30029,
+ 30032
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 12
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 15
}
}
},
"prefix": true,
"range": [
- 40701,
- 40705
+ 30028,
+ 30032
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 11
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 15
}
}
@@ -91433,16 +70702,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40710,
- 40713
+ 30037,
+ 30040
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 20
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 23
}
}
@@ -91451,62 +70720,62 @@
"type": "Identifier",
"name": "name",
"range": [
- 40714,
- 40718
+ 30041,
+ 30045
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 24
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 28
}
}
},
"range": [
- 40710,
- 40718
+ 30037,
+ 30045
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 20
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 28
}
}
},
"prefix": true,
"range": [
- 40709,
- 40718
+ 30036,
+ 30045
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 19
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 28
}
}
},
"range": [
- 40701,
- 40718
+ 30028,
+ 30045
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 11
},
"end": {
- "line": 1048,
+ "line": 815,
"column": 28
}
}
@@ -91518,48 +70787,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 40733,
- 40740
+ 30060,
+ 30067
],
"loc": {
"start": {
- "line": 1049,
+ "line": 816,
"column": 12
},
"end": {
- "line": 1049,
+ "line": 816,
"column": 19
}
}
}
],
"range": [
- 40719,
- 40750
+ 30046,
+ 30077
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 29
},
"end": {
- "line": 1050,
+ "line": 817,
"column": 9
}
}
},
"alternate": null,
"range": [
- 40698,
- 40750
+ 30025,
+ 30077
],
"loc": {
"start": {
- "line": 1048,
+ "line": 815,
"column": 8
},
"end": {
- "line": 1050,
+ "line": 817,
"column": 9
}
}
@@ -91573,16 +70842,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 40764,
- 40768
+ 30091,
+ 30095
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 12
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 16
}
}
@@ -91594,16 +70863,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40771,
- 40774
+ 30098,
+ 30101
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 19
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 22
}
}
@@ -91612,46 +70881,46 @@
"type": "Identifier",
"name": "name",
"range": [
- 40775,
- 40779
+ 30102,
+ 30106
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 23
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 27
}
}
},
"range": [
- 40771,
- 40779
+ 30098,
+ 30106
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 19
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 27
}
}
},
"range": [
- 40764,
- 40779
+ 30091,
+ 30106
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 12
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 27
}
}
@@ -91659,16 +70928,16 @@
],
"kind": "let",
"range": [
- 40760,
- 40780
+ 30087,
+ 30107
],
"loc": {
"start": {
- "line": 1052,
+ "line": 819,
"column": 8
},
"end": {
- "line": 1052,
+ "line": 819,
"column": 28
}
}
@@ -91682,16 +70951,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 40793,
- 40797
+ 30120,
+ 30124
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 12
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 16
}
}
@@ -91703,16 +70972,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40800,
- 40803
+ 30127,
+ 30130
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 19
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 22
}
}
@@ -91721,46 +70990,46 @@
"type": "Identifier",
"name": "path",
"range": [
- 40804,
- 40808
+ 30131,
+ 30135
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 23
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 27
}
}
},
"range": [
- 40800,
- 40808
+ 30127,
+ 30135
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 19
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 27
}
}
},
"range": [
- 40793,
- 40808
+ 30120,
+ 30135
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 12
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 27
}
}
@@ -91768,16 +71037,16 @@
],
"kind": "let",
"range": [
- 40789,
- 40809
+ 30116,
+ 30136
],
"loc": {
"start": {
- "line": 1053,
+ "line": 820,
"column": 8
},
"end": {
- "line": 1053,
+ "line": 820,
"column": 28
}
}
@@ -91791,32 +71060,32 @@
"type": "Identifier",
"name": "modulePath",
"range": [
- 40822,
- 40832
+ 30149,
+ 30159
],
"loc": {
"start": {
- "line": 1054,
+ "line": 821,
"column": 12
},
"end": {
- "line": 1054,
+ "line": 821,
"column": 22
}
}
},
"init": null,
"range": [
- 40822,
- 40832
+ 30149,
+ 30159
],
"loc": {
"start": {
- "line": 1054,
+ "line": 821,
"column": 12
},
"end": {
- "line": 1054,
+ "line": 821,
"column": 22
}
}
@@ -91824,16 +71093,16 @@
],
"kind": "let",
"range": [
- 40818,
- 40833
+ 30145,
+ 30160
],
"loc": {
"start": {
- "line": 1054,
+ "line": 821,
"column": 8
},
"end": {
- "line": 1054,
+ "line": 821,
"column": 23
}
}
@@ -91847,16 +71116,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 40846,
- 40850
+ 30173,
+ 30177
],
"loc": {
"start": {
- "line": 1056,
+ "line": 823,
"column": 11
},
"end": {
- "line": 1056,
+ "line": 823,
"column": 15
}
}
@@ -91865,31 +71134,31 @@
"type": "Identifier",
"name": "path",
"range": [
- 40854,
- 40858
+ 30181,
+ 30185
],
"loc": {
"start": {
- "line": 1056,
+ "line": 823,
"column": 19
},
"end": {
- "line": 1056,
+ "line": 823,
"column": 23
}
}
},
"range": [
- 40846,
- 40858
+ 30173,
+ 30185
],
"loc": {
"start": {
- "line": 1056,
+ "line": 823,
"column": 11
},
"end": {
- "line": 1056,
+ "line": 823,
"column": 23
}
}
@@ -91906,16 +71175,16 @@
"type": "Identifier",
"name": "modulePath",
"range": [
- 40873,
- 40883
+ 30200,
+ 30210
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 12
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 22
}
}
@@ -91930,16 +71199,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 40886,
- 40889
+ 30213,
+ 30216
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 25
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 28
}
}
@@ -91948,31 +71217,31 @@
"type": "Identifier",
"name": "path",
"range": [
- 40890,
- 40894
+ 30217,
+ 30221
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 29
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 33
}
}
},
"range": [
- 40886,
- 40894
+ 30213,
+ 30221
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 25
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 33
}
}
@@ -91981,77 +71250,77 @@
"type": "Identifier",
"name": "name",
"range": [
- 40897,
- 40901
+ 30224,
+ 30228
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 36
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 40
}
}
},
"range": [
- 40886,
- 40901
+ 30213,
+ 30228
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 25
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 40
}
}
},
"range": [
- 40873,
- 40901
+ 30200,
+ 30228
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 12
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 40
}
}
},
"range": [
- 40873,
- 40902
+ 30200,
+ 30229
],
"loc": {
"start": {
- "line": 1057,
+ "line": 824,
"column": 12
},
"end": {
- "line": 1057,
+ "line": 824,
"column": 41
}
}
}
],
"range": [
- 40859,
- 40912
+ 30186,
+ 30239
],
"loc": {
"start": {
- "line": 1056,
+ "line": 823,
"column": 24
},
"end": {
- "line": 1058,
+ "line": 825,
"column": 9
}
}
@@ -92068,16 +71337,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 40932,
- 40936
+ 30259,
+ 30263
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 12
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 16
}
}
@@ -92091,16 +71360,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 40939,
- 40943
+ 30266,
+ 30270
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 19
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 23
}
}
@@ -92109,31 +71378,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 40944,
- 40951
+ 30271,
+ 30278
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 24
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 31
}
}
},
"range": [
- 40939,
- 40951
+ 30266,
+ 30278
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 19
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 31
}
}
@@ -92144,16 +71413,16 @@
"value": ".js",
"raw": "'.js'",
"range": [
- 40952,
- 40957
+ 30279,
+ 30284
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 32
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 37
}
}
@@ -92163,62 +71432,62 @@
"value": "",
"raw": "''",
"range": [
- 40959,
- 40961
+ 30286,
+ 30288
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 39
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 41
}
}
}
],
"range": [
- 40939,
- 40962
+ 30266,
+ 30289
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 19
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 42
}
}
},
"range": [
- 40932,
- 40962
+ 30259,
+ 30289
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 12
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 42
}
}
},
"range": [
- 40932,
- 40963
+ 30259,
+ 30290
],
"loc": {
"start": {
- "line": 1059,
+ "line": 826,
"column": 12
},
"end": {
- "line": 1059,
+ "line": 826,
"column": 43
}
}
@@ -92232,16 +71501,16 @@
"type": "Identifier",
"name": "modulePath",
"range": [
- 40976,
- 40986
+ 30303,
+ 30313
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 12
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 22
}
}
@@ -92256,16 +71525,16 @@
"value": "extensions/{}/{}",
"raw": "'extensions/{}/{}'",
"range": [
- 40989,
- 41007
+ 30316,
+ 30334
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 25
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 43
}
}
@@ -92274,31 +71543,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 41008,
- 41015
+ 30335,
+ 30342
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 44
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 51
}
}
},
"range": [
- 40989,
- 41015
+ 30316,
+ 30342
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 25
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 51
}
}
@@ -92313,16 +71582,16 @@
"flags": "g"
},
"range": [
- 41016,
- 41021
+ 30343,
+ 30348
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 52
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 57
}
}
@@ -92331,238 +71600,112 @@
"type": "Identifier",
"name": "name",
"range": [
- 41023,
- 41027
+ 30350,
+ 30354
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 59
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 63
}
}
}
],
"range": [
- 40989,
- 41028
+ 30316,
+ 30355
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 25
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 64
}
}
},
"range": [
- 40976,
- 41028
+ 30303,
+ 30355
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 12
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 64
}
}
},
"range": [
- 40976,
- 41029
+ 30303,
+ 30356
],
"loc": {
"start": {
- "line": 1060,
+ "line": 827,
"column": 12
},
"end": {
- "line": 1060,
+ "line": 827,
"column": 65
}
}
}
],
"range": [
- 40918,
- 41039
+ 30245,
+ 30366
],
"loc": {
"start": {
- "line": 1058,
+ "line": 825,
"column": 15
},
"end": {
- "line": 1061,
+ "line": 828,
"column": 9
}
}
},
"range": [
- 40843,
- 41039
+ 30170,
+ 30366
],
"loc": {
"start": {
- "line": 1056,
+ "line": 823,
"column": 8
},
"end": {
- "line": 1061,
+ "line": 828,
"column": 9
}
},
"trailingComments": [
{
"type": "Line",
- "value": " Trick to set config's publicPath dynamically for Webpack...",
+ "value": " Require pattern for Webpack",
"range": [
- 41049,
- 41111
+ 30376,
+ 30406
],
"loc": {
"start": {
- "line": 1063,
+ "line": 830,
"column": 8
},
"end": {
- "line": 1063,
- "column": 70
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "__webpack_public_path__",
- "range": [
- 41120,
- 41143
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 8
- },
- "end": {
- "line": 1064,
- "column": 31
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 41146,
- 41150
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 34
- },
- "end": {
- "line": 1064,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "basePath",
- "range": [
- 41151,
- 41159
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 39
- },
- "end": {
- "line": 1064,
- "column": 47
- }
- }
- },
- "range": [
- 41146,
- 41159
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 34
- },
- "end": {
- "line": 1064,
- "column": 47
- }
- }
- },
- "range": [
- 41120,
- 41159
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 8
- },
- "end": {
- "line": 1064,
- "column": 47
- }
- }
- },
- "range": [
- 41120,
- 41160
- ],
- "loc": {
- "start": {
- "line": 1064,
- "column": 8
- },
- "end": {
- "line": 1064,
- "column": 48
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " Trick to set config's publicPath dynamically for Webpack...",
- "range": [
- 41049,
- 41111
- ],
- "loc": {
- "start": {
- "line": 1063,
- "column": 8
- },
- "end": {
- "line": 1063,
- "column": 70
+ "line": 830,
+ "column": 38
}
}
}
@@ -92576,16 +71719,16 @@
"type": "Identifier",
"name": "require",
"range": [
- 41170,
- 41177
+ 30415,
+ 30422
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 8
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 15
}
}
@@ -92602,16 +71745,16 @@
"value": "./",
"raw": "'./'",
"range": [
- 41179,
- 41183
+ 30424,
+ 30428
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 17
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 21
}
}
@@ -92620,47 +71763,47 @@
"type": "Identifier",
"name": "modulePath",
"range": [
- 41186,
- 41196
+ 30431,
+ 30441
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 24
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 34
}
}
},
"range": [
- 41179,
- 41196
+ 30424,
+ 30441
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 17
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 34
}
}
}
],
"range": [
- 41178,
- 41197
+ 30423,
+ 30442
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 16
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 35
}
}
@@ -92673,16 +71816,16 @@
"type": "Identifier",
"name": "mod",
"range": [
- 41200,
- 41203
+ 30445,
+ 30448
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 38
},
"end": {
- "line": 1066,
+ "line": 831,
"column": 41
}
}
@@ -92700,16 +71843,16 @@
"type": "Identifier",
"name": "inst",
"range": [
- 41225,
- 41229
+ 30470,
+ 30474
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 16
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 20
}
}
@@ -92723,16 +71866,16 @@
"type": "Identifier",
"name": "mod",
"range": [
- 41236,
- 41239
+ 30481,
+ 30484
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 27
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 30
}
}
@@ -92741,31 +71884,31 @@
"type": "Identifier",
"name": "default",
"range": [
- 41240,
- 41247
+ 30485,
+ 30492
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 31
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 38
}
}
},
"range": [
- 41236,
- 41247
+ 30481,
+ 30492
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 27
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 38
}
}
@@ -92774,16 +71917,16 @@
{
"type": "ThisExpression",
"range": [
- 41248,
- 41252
+ 30493,
+ 30497
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 39
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 43
}
}
@@ -92792,47 +71935,47 @@
"type": "Identifier",
"name": "ext",
"range": [
- 41254,
- 41257
+ 30499,
+ 30502
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 45
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 48
}
}
}
],
"range": [
- 41232,
- 41258
+ 30477,
+ 30503
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 23
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 49
}
}
},
"range": [
- 41225,
- 41258
+ 30470,
+ 30503
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 16
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 49
}
}
@@ -92840,16 +71983,16 @@
],
"kind": "let",
"range": [
- 41221,
- 41259
+ 30466,
+ 30504
],
"loc": {
"start": {
- "line": 1067,
+ "line": 832,
"column": 12
},
"end": {
- "line": 1067,
+ "line": 832,
"column": 50
}
}
@@ -92865,16 +72008,16 @@
"type": "Identifier",
"name": "inst",
"range": [
- 41272,
- 41276
+ 30517,
+ 30521
],
"loc": {
"start": {
- "line": 1068,
+ "line": 833,
"column": 12
},
"end": {
- "line": 1068,
+ "line": 833,
"column": 16
}
}
@@ -92883,62 +72026,62 @@
"type": "Identifier",
"name": "init",
"range": [
- 41277,
- 41281
+ 30522,
+ 30526
],
"loc": {
"start": {
- "line": 1068,
+ "line": 833,
"column": 17
},
"end": {
- "line": 1068,
+ "line": 833,
"column": 21
}
}
},
"range": [
- 41272,
- 41281
+ 30517,
+ 30526
],
"loc": {
"start": {
- "line": 1068,
+ "line": 833,
"column": 12
},
"end": {
- "line": 1068,
+ "line": 833,
"column": 21
}
}
},
"arguments": [],
"range": [
- 41272,
- 41283
+ 30517,
+ 30528
],
"loc": {
"start": {
- "line": 1068,
+ "line": 833,
"column": 12
},
"end": {
- "line": 1068,
+ "line": 833,
"column": 23
}
}
},
"range": [
- 41272,
- 41284
+ 30517,
+ 30529
],
"loc": {
"start": {
- "line": 1068,
+ "line": 833,
"column": 12
},
"end": {
- "line": 1068,
+ "line": 833,
"column": 24
}
}
@@ -92957,16 +72100,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 41297,
- 41301
+ 30542,
+ 30546
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 12
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 16
}
}
@@ -92975,31 +72118,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 41302,
- 41313
+ 30547,
+ 30558
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 17
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 28
}
}
},
"range": [
- 41297,
- 41313
+ 30542,
+ 30558
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 12
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 28
}
}
@@ -93008,31 +72151,31 @@
"type": "Identifier",
"name": "name",
"range": [
- 41314,
- 41318
+ 30559,
+ 30563
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 29
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 33
}
}
},
"range": [
- 41297,
- 41319
+ 30542,
+ 30564
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 12
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 34
}
}
@@ -93041,62 +72184,62 @@
"type": "Identifier",
"name": "inst",
"range": [
- 41322,
- 41326
+ 30567,
+ 30571
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 37
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 41
}
}
},
"range": [
- 41297,
- 41326
+ 30542,
+ 30571
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 12
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 41
}
}
},
"range": [
- 41297,
- 41327
+ 30542,
+ 30572
],
"loc": {
"start": {
- "line": 1069,
+ "line": 834,
"column": 12
},
"end": {
- "line": 1069,
+ "line": 834,
"column": 42
}
}
}
],
"range": [
- 41207,
- 41337
+ 30452,
+ 30582
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 45
},
"end": {
- "line": 1070,
+ "line": 835,
"column": 9
}
}
@@ -93104,63 +72247,83 @@
"generator": false,
"expression": false,
"range": [
- 41199,
- 41337
+ 30444,
+ 30582
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 37
},
"end": {
- "line": 1070,
+ "line": 835,
"column": 9
}
}
}
],
"range": [
- 41170,
- 41338
+ 30415,
+ 30583
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 8
},
"end": {
- "line": 1070,
+ "line": 835,
"column": 10
}
}
},
"range": [
- 41170,
- 41339
+ 30415,
+ 30584
],
"loc": {
"start": {
- "line": 1066,
+ "line": 831,
"column": 8
},
"end": {
- "line": 1070,
+ "line": 835,
"column": 11
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " Require pattern for Webpack",
+ "range": [
+ 30376,
+ 30406
+ ],
+ "loc": {
+ "start": {
+ "line": 830,
+ "column": 8
+ },
+ "end": {
+ "line": 830,
+ "column": 38
+ }
+ }
+ }
+ ]
}
],
"range": [
- 40688,
- 41345
+ 30015,
+ 30590
],
"loc": {
"start": {
- "line": 1047,
+ "line": 814,
"column": 22
},
"end": {
- "line": 1071,
+ "line": 836,
"column": 5
}
}
@@ -93168,16 +72331,16 @@
"generator": false,
"expression": false,
"range": [
- 40683,
- 41345
+ 30010,
+ 30590
],
"loc": {
"start": {
- "line": 1047,
+ "line": 814,
"column": 17
},
"end": {
- "line": 1071,
+ "line": 836,
"column": 5
}
}
@@ -93185,16 +72348,16 @@
"kind": "method",
"computed": false,
"range": [
- 40670,
- 41345
+ 29997,
+ 30590
],
"loc": {
"start": {
- "line": 1047,
+ "line": 814,
"column": 4
},
"end": {
- "line": 1071,
+ "line": 836,
"column": 5
}
},
@@ -93203,16 +72366,16 @@
"type": "Block",
"value": "*\n * Load an extension module\n * @param {Object} ext Extension config object\n ",
"range": [
- 40570,
- 40665
+ 29897,
+ 29992
],
"loc": {
"start": {
- "line": 1043,
+ "line": 810,
"column": 4
},
"end": {
- "line": 1046,
+ "line": 813,
"column": 7
}
}
@@ -93223,16 +72386,16 @@
"type": "Block",
"value": "*\n * Get an extension instance\n * @param {String} name Name of the extension\n * @return {Object} Extension instance\n ",
"range": [
- 41351,
- 41494
+ 30596,
+ 30739
],
"loc": {
"start": {
- "line": 1073,
+ "line": 838,
"column": 4
},
"end": {
- "line": 1077,
+ "line": 842,
"column": 7
}
}
@@ -93246,16 +72409,16 @@
"type": "Identifier",
"name": "extension",
"range": [
- 41499,
- 41508
+ 30744,
+ 30753
],
"loc": {
"start": {
- "line": 1078,
+ "line": 843,
"column": 4
},
"end": {
- "line": 1078,
+ "line": 843,
"column": 13
}
}
@@ -93268,16 +72431,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 41509,
- 41513
+ 30754,
+ 30758
],
"loc": {
"start": {
- "line": 1078,
+ "line": 843,
"column": 14
},
"end": {
- "line": 1078,
+ "line": 843,
"column": 18
}
}
@@ -93297,16 +72460,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 41531,
- 41535
+ 30776,
+ 30780
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 15
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 19
}
}
@@ -93315,31 +72478,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 41536,
- 41547
+ 30781,
+ 30792
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 20
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 31
}
}
},
"range": [
- 41531,
- 41547
+ 30776,
+ 30792
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 15
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 31
}
}
@@ -93348,62 +72511,62 @@
"type": "Identifier",
"name": "name",
"range": [
- 41548,
- 41552
+ 30793,
+ 30797
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 32
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 36
}
}
},
"range": [
- 41531,
- 41553
+ 30776,
+ 30798
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 15
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 37
}
}
},
"range": [
- 41524,
- 41554
+ 30769,
+ 30799
],
"loc": {
"start": {
- "line": 1079,
+ "line": 844,
"column": 8
},
"end": {
- "line": 1079,
+ "line": 844,
"column": 38
}
}
}
],
"range": [
- 41514,
- 41560
+ 30759,
+ 30805
],
"loc": {
"start": {
- "line": 1078,
+ "line": 843,
"column": 19
},
"end": {
- "line": 1080,
+ "line": 845,
"column": 5
}
}
@@ -93411,16 +72574,16 @@
"generator": false,
"expression": false,
"range": [
- 41508,
- 41560
+ 30753,
+ 30805
],
"loc": {
"start": {
- "line": 1078,
+ "line": 843,
"column": 13
},
"end": {
- "line": 1080,
+ "line": 845,
"column": 5
}
}
@@ -93428,16 +72591,16 @@
"kind": "method",
"computed": false,
"range": [
- 41499,
- 41560
+ 30744,
+ 30805
],
"loc": {
"start": {
- "line": 1078,
+ "line": 843,
"column": 4
},
"end": {
- "line": 1080,
+ "line": 845,
"column": 5
}
},
@@ -93446,16 +72609,16 @@
"type": "Block",
"value": "*\n * Get an extension instance\n * @param {String} name Name of the extension\n * @return {Object} Extension instance\n ",
"range": [
- 41351,
- 41494
+ 30596,
+ 30739
],
"loc": {
"start": {
- "line": 1073,
+ "line": 838,
"column": 4
},
"end": {
- "line": 1077,
+ "line": 842,
"column": 7
}
}
@@ -93466,16 +72629,16 @@
"type": "Block",
"value": "*\n * Check passed extension name exists\n * @param {String} name Name of the extension\n * @return {Boolean}\n ",
"range": [
- 41566,
- 41696
+ 30811,
+ 30941
],
"loc": {
"start": {
- "line": 1082,
+ "line": 847,
"column": 4
},
"end": {
- "line": 1086,
+ "line": 851,
"column": 7
}
}
@@ -93489,16 +72652,16 @@
"type": "Identifier",
"name": "hasExtension",
"range": [
- 41701,
- 41713
+ 30946,
+ 30958
],
"loc": {
"start": {
- "line": 1087,
+ "line": 852,
"column": 4
},
"end": {
- "line": 1087,
+ "line": 852,
"column": 16
}
}
@@ -93511,16 +72674,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 41714,
- 41718
+ 30959,
+ 30963
],
"loc": {
"start": {
- "line": 1087,
+ "line": 852,
"column": 17
},
"end": {
- "line": 1087,
+ "line": 852,
"column": 21
}
}
@@ -93543,16 +72706,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 41737,
- 41742
+ 30982,
+ 30987
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 16
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 21
}
}
@@ -93561,31 +72724,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 41743,
- 41750
+ 30988,
+ 30995
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 22
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 29
}
}
},
"range": [
- 41737,
- 41750
+ 30982,
+ 30995
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 16
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 29
}
}
@@ -93600,16 +72763,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 41751,
- 41755
+ 30996,
+ 31000
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 30
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 34
}
}
@@ -93618,31 +72781,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 41756,
- 41767
+ 31001,
+ 31012
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 35
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 46
}
}
},
"range": [
- 41751,
- 41767
+ 30996,
+ 31012
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 30
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 46
}
}
@@ -93651,94 +72814,94 @@
"type": "Identifier",
"name": "name",
"range": [
- 41768,
- 41772
+ 31013,
+ 31017
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 47
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 51
}
}
},
"range": [
- 41751,
- 41773
+ 30996,
+ 31018
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 30
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 52
}
}
}
],
"range": [
- 41737,
- 41774
+ 30982,
+ 31019
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 16
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 53
}
}
},
"prefix": true,
"range": [
- 41736,
- 41774
+ 30981,
+ 31019
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 15
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 53
}
}
},
"range": [
- 41729,
- 41775
+ 30974,
+ 31020
],
"loc": {
"start": {
- "line": 1088,
+ "line": 853,
"column": 8
},
"end": {
- "line": 1088,
+ "line": 853,
"column": 54
}
}
}
],
"range": [
- 41719,
- 41781
+ 30964,
+ 31026
],
"loc": {
"start": {
- "line": 1087,
+ "line": 852,
"column": 22
},
"end": {
- "line": 1089,
+ "line": 854,
"column": 5
}
}
@@ -93746,16 +72909,16 @@
"generator": false,
"expression": false,
"range": [
- 41713,
- 41781
+ 30958,
+ 31026
],
"loc": {
"start": {
- "line": 1087,
+ "line": 852,
"column": 16
},
"end": {
- "line": 1089,
+ "line": 854,
"column": 5
}
}
@@ -93763,16 +72926,16 @@
"kind": "method",
"computed": false,
"range": [
- 41701,
- 41781
+ 30946,
+ 31026
],
"loc": {
"start": {
- "line": 1087,
+ "line": 852,
"column": 4
},
"end": {
- "line": 1089,
+ "line": 854,
"column": 5
}
},
@@ -93781,16 +72944,16 @@
"type": "Block",
"value": "*\n * Check passed extension name exists\n * @param {String} name Name of the extension\n * @return {Boolean}\n ",
"range": [
- 41566,
- 41696
+ 30811,
+ 30941
],
"loc": {
"start": {
- "line": 1082,
+ "line": 847,
"column": 4
},
"end": {
- "line": 1086,
+ "line": 851,
"column": 7
}
}
@@ -93801,16 +72964,16 @@
"type": "Block",
"value": "*\n * Destroy all the extensions defined in the configuration object\n ",
"range": [
- 41787,
- 41868
+ 31032,
+ 31113
],
"loc": {
"start": {
- "line": 1091,
+ "line": 856,
"column": 4
},
"end": {
- "line": 1093,
+ "line": 858,
"column": 7
}
}
@@ -93824,16 +72987,16 @@
"type": "Identifier",
"name": "destroyExtensions",
"range": [
- 41873,
- 41890
+ 31118,
+ 31135
],
"loc": {
"start": {
- "line": 1094,
+ "line": 859,
"column": 4
},
"end": {
- "line": 1094,
+ "line": 859,
"column": 21
}
}
@@ -93854,16 +73017,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 41906,
- 41910
+ 31151,
+ 31155
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 12
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 16
}
}
@@ -93874,16 +73037,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 41913,
- 41917
+ 31158,
+ 31162
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 19
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 23
}
}
@@ -93892,46 +73055,46 @@
"type": "Identifier",
"name": "extensions",
"range": [
- 41918,
- 41928
+ 31163,
+ 31173
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 24
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 34
}
}
},
"range": [
- 41913,
- 41928
+ 31158,
+ 31173
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 19
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 34
}
}
},
"range": [
- 41906,
- 41928
+ 31151,
+ 31173
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 12
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 34
}
}
@@ -93939,16 +73102,16 @@
],
"kind": "let",
"range": [
- 41902,
- 41929
+ 31147,
+ 31174
],
"loc": {
"start": {
- "line": 1095,
+ "line": 860,
"column": 8
},
"end": {
- "line": 1095,
+ "line": 860,
"column": 35
}
}
@@ -93964,16 +73127,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 41947,
- 41948
+ 31192,
+ 31193
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 16
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 17
}
}
@@ -93983,31 +73146,31 @@
"value": 0,
"raw": "0",
"range": [
- 41949,
- 41950
+ 31194,
+ 31195
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 18
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 19
}
}
},
"range": [
- 41947,
- 41950
+ 31192,
+ 31195
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 16
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 19
}
}
@@ -94018,16 +73181,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 41952,
- 41955
+ 31197,
+ 31200
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 21
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 24
}
}
@@ -94039,16 +73202,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 41956,
- 41960
+ 31201,
+ 31205
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 25
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 29
}
}
@@ -94057,46 +73220,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 41961,
- 41967
+ 31206,
+ 31212
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 30
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 36
}
}
},
"range": [
- 41956,
- 41967
+ 31201,
+ 31212
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 25
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 36
}
}
},
"range": [
- 41952,
- 41967
+ 31197,
+ 31212
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 21
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 36
}
}
@@ -94104,16 +73267,16 @@
],
"kind": "let",
"range": [
- 41943,
- 41967
+ 31188,
+ 31212
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 12
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 36
}
}
@@ -94125,16 +73288,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 41969,
- 41970
+ 31214,
+ 31215
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 38
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 39
}
}
@@ -94143,31 +73306,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 41971,
- 41974
+ 31216,
+ 31219
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 40
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 43
}
}
},
"range": [
- 41969,
- 41974
+ 31214,
+ 31219
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 38
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 43
}
}
@@ -94179,32 +73342,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 41976,
- 41977
+ 31221,
+ 31222
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 45
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 46
}
}
},
"prefix": false,
"range": [
- 41976,
- 41979
+ 31221,
+ 31224
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 45
},
"end": {
- "line": 1097,
+ "line": 862,
"column": 48
}
}
@@ -94221,16 +73384,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 41998,
- 42001
+ 31243,
+ 31246
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 16
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 19
}
}
@@ -94242,16 +73405,16 @@
"type": "Identifier",
"name": "exts",
"range": [
- 42004,
- 42008
+ 31249,
+ 31253
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 22
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 26
}
}
@@ -94260,46 +73423,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 42009,
- 42010
+ 31254,
+ 31255
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 27
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 28
}
}
},
"range": [
- 42004,
- 42011
+ 31249,
+ 31256
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 22
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 29
}
}
},
"range": [
- 41998,
- 42011
+ 31243,
+ 31256
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 16
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 29
}
}
@@ -94307,16 +73470,16 @@
],
"kind": "let",
"range": [
- 41994,
- 42012
+ 31239,
+ 31257
],
"loc": {
"start": {
- "line": 1098,
+ "line": 863,
"column": 12
},
"end": {
- "line": 1098,
+ "line": 863,
"column": 30
}
}
@@ -94330,16 +73493,16 @@
"type": "Identifier",
"name": "extInstance",
"range": [
- 42029,
- 42040
+ 31274,
+ 31285
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 16
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 27
}
}
@@ -94353,16 +73516,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42043,
- 42047
+ 31288,
+ 31292
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 30
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 34
}
}
@@ -94371,31 +73534,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 42048,
- 42059
+ 31293,
+ 31304
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 35
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 46
}
}
},
"range": [
- 42043,
- 42059
+ 31288,
+ 31304
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 30
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 46
}
}
@@ -94407,16 +73570,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 42060,
- 42063
+ 31305,
+ 31308
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 47
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 50
}
}
@@ -94425,61 +73588,61 @@
"type": "Identifier",
"name": "name",
"range": [
- 42064,
- 42068
+ 31309,
+ 31313
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 51
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 55
}
}
},
"range": [
- 42060,
- 42068
+ 31305,
+ 31313
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 47
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 55
}
}
},
"range": [
- 42043,
- 42069
+ 31288,
+ 31314
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 30
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 56
}
}
},
"range": [
- 42029,
- 42069
+ 31274,
+ 31314
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 16
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 56
}
}
@@ -94487,16 +73650,16 @@
],
"kind": "let",
"range": [
- 42025,
- 42070
+ 31270,
+ 31315
],
"loc": {
"start": {
- "line": 1099,
+ "line": 864,
"column": 12
},
"end": {
- "line": 1099,
+ "line": 864,
"column": 57
}
}
@@ -94507,16 +73670,16 @@
"type": "Identifier",
"name": "extInstance",
"range": [
- 42086,
- 42097
+ 31331,
+ 31342
],
"loc": {
"start": {
- "line": 1100,
+ "line": 865,
"column": 15
},
"end": {
- "line": 1100,
+ "line": 865,
"column": 26
}
}
@@ -94535,16 +73698,16 @@
"type": "Identifier",
"name": "extInstance",
"range": [
- 42116,
- 42127
+ 31361,
+ 31372
],
"loc": {
"start": {
- "line": 1101,
+ "line": 866,
"column": 16
},
"end": {
- "line": 1101,
+ "line": 866,
"column": 27
}
}
@@ -94553,62 +73716,62 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 42128,
- 42135
+ 31373,
+ 31380
],
"loc": {
"start": {
- "line": 1101,
+ "line": 866,
"column": 28
},
"end": {
- "line": 1101,
+ "line": 866,
"column": 35
}
}
},
"range": [
- 42116,
- 42135
+ 31361,
+ 31380
],
"loc": {
"start": {
- "line": 1101,
+ "line": 866,
"column": 16
},
"end": {
- "line": 1101,
+ "line": 866,
"column": 35
}
}
},
"arguments": [],
"range": [
- 42116,
- 42137
+ 31361,
+ 31382
],
"loc": {
"start": {
- "line": 1101,
+ "line": 866,
"column": 16
},
"end": {
- "line": 1101,
+ "line": 866,
"column": 37
}
}
},
"range": [
- 42116,
- 42138
+ 31361,
+ 31383
],
"loc": {
"start": {
- "line": 1101,
+ "line": 866,
"column": 16
},
"end": {
- "line": 1101,
+ "line": 866,
"column": 38
}
}
@@ -94627,16 +73790,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42155,
- 42159
+ 31400,
+ 31404
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 16
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 20
}
}
@@ -94645,31 +73808,31 @@
"type": "Identifier",
"name": "ExtRegistry",
"range": [
- 42160,
- 42171
+ 31405,
+ 31416
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 21
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 32
}
}
},
"range": [
- 42155,
- 42171
+ 31400,
+ 31416
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 16
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 32
}
}
@@ -94681,16 +73844,16 @@
"type": "Identifier",
"name": "ext",
"range": [
- 42172,
- 42175
+ 31417,
+ 31420
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 33
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 36
}
}
@@ -94699,46 +73862,46 @@
"type": "Identifier",
"name": "name",
"range": [
- 42176,
- 42180
+ 31421,
+ 31425
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 37
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 41
}
}
},
"range": [
- 42172,
- 42180
+ 31417,
+ 31425
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 33
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 41
}
}
},
"range": [
- 42155,
- 42181
+ 31400,
+ 31426
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 16
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 42
}
}
@@ -94748,125 +73911,125 @@
"value": null,
"raw": "null",
"range": [
- 42184,
- 42188
+ 31429,
+ 31433
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 45
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 49
}
}
},
"range": [
- 42155,
- 42188
+ 31400,
+ 31433
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 16
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 49
}
}
},
"range": [
- 42155,
- 42189
+ 31400,
+ 31434
],
"loc": {
"start": {
- "line": 1102,
+ "line": 867,
"column": 16
},
"end": {
- "line": 1102,
+ "line": 867,
"column": 50
}
}
}
],
"range": [
- 42098,
- 42203
+ 31343,
+ 31448
],
"loc": {
"start": {
- "line": 1100,
+ "line": 865,
"column": 27
},
"end": {
- "line": 1103,
+ "line": 868,
"column": 13
}
}
},
"alternate": null,
"range": [
- 42083,
- 42203
+ 31328,
+ 31448
],
"loc": {
"start": {
- "line": 1100,
+ "line": 865,
"column": 12
},
"end": {
- "line": 1103,
+ "line": 868,
"column": 13
}
}
}
],
"range": [
- 41980,
- 42213
+ 31225,
+ 31458
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 49
},
"end": {
- "line": 1104,
+ "line": 869,
"column": 9
}
}
},
"range": [
- 41939,
- 42213
+ 31184,
+ 31458
],
"loc": {
"start": {
- "line": 1097,
+ "line": 862,
"column": 8
},
"end": {
- "line": 1104,
+ "line": 869,
"column": 9
}
}
}
],
"range": [
- 41892,
- 42219
+ 31137,
+ 31464
],
"loc": {
"start": {
- "line": 1094,
+ "line": 859,
"column": 23
},
"end": {
- "line": 1105,
+ "line": 870,
"column": 5
}
}
@@ -94874,16 +74037,16 @@
"generator": false,
"expression": false,
"range": [
- 41890,
- 42219
+ 31135,
+ 31464
],
"loc": {
"start": {
- "line": 1094,
+ "line": 859,
"column": 21
},
"end": {
- "line": 1105,
+ "line": 870,
"column": 5
}
}
@@ -94891,16 +74054,16 @@
"kind": "method",
"computed": false,
"range": [
- 41873,
- 42219
+ 31118,
+ 31464
],
"loc": {
"start": {
- "line": 1094,
+ "line": 859,
"column": 4
},
"end": {
- "line": 1105,
+ "line": 870,
"column": 5
}
},
@@ -94909,16 +74072,36 @@
"type": "Block",
"value": "*\n * Destroy all the extensions defined in the configuration object\n ",
"range": [
- 41787,
- 41868
+ 31032,
+ 31113
],
"loc": {
"start": {
- "line": 1091,
+ "line": 856,
"column": 4
},
"end": {
- "line": 1093,
+ "line": 858,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Load themes defined in the configuration object\n ",
+ "range": [
+ 31470,
+ 31536
+ ],
+ "loc": {
+ "start": {
+ "line": 872,
+ "column": 4
+ },
+ "end": {
+ "line": 874,
"column": 7
}
}
@@ -94932,332 +74115,20 @@
"type": "Identifier",
"name": "loadThemes",
"range": [
- 42225,
- 42235
+ 31541,
+ 31551
],
"loc": {
"start": {
- "line": 1107,
+ "line": 875,
"column": 4
},
"end": {
- "line": 1107,
+ "line": 875,
"column": 14
}
}
},
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 42247,
- 42251
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 8
- },
- "end": {
- "line": 1108,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 42252,
- 42262
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 13
- },
- "end": {
- "line": 1108,
- "column": 23
- }
- }
- },
- "range": [
- 42247,
- 42262
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 8
- },
- "end": {
- "line": 1108,
- "column": 23
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 42263,
- 42267
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 24
- },
- "end": {
- "line": 1108,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 42268,
- 42271
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 29
- },
- "end": {
- "line": 1108,
- "column": 32
- }
- }
- },
- "range": [
- 42263,
- 42271
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 24
- },
- "end": {
- "line": 1108,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 42272,
- 42276
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 33
- },
- "end": {
- "line": 1108,
- "column": 37
- }
- }
- },
- "range": [
- 42263,
- 42276
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 24
- },
- "end": {
- "line": 1108,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadthemes",
- "range": [
- 42277,
- 42287
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 38
- },
- "end": {
- "line": 1108,
- "column": 48
- }
- }
- },
- "range": [
- 42263,
- 42287
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 24
- },
- "end": {
- "line": 1108,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 42247,
- 42288
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 8
- },
- "end": {
- "line": 1108,
- "column": 49
- }
- }
- },
- "range": [
- 42247,
- 42289
- ],
- "loc": {
- "start": {
- "line": 1108,
- "column": 8
- },
- "end": {
- "line": 1108,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 42237,
- 42295
- ],
- "loc": {
- "start": {
- "line": 1107,
- "column": 16
- },
- "end": {
- "line": 1109,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 42235,
- 42295
- ],
- "loc": {
- "start": {
- "line": 1107,
- "column": 14
- },
- "end": {
- "line": 1109,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 42225,
- 42295
- ],
- "loc": {
- "start": {
- "line": 1107,
- "column": 4
- },
- "end": {
- "line": 1109,
- "column": 5
- }
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Load themes defined in the configuration object\n ",
- "range": [
- 42301,
- 42367
- ],
- "loc": {
- "start": {
- "line": 1111,
- "column": 4
- },
- "end": {
- "line": 1113,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_loadThemes",
- "range": [
- 42372,
- 42383
- ],
- "loc": {
- "start": {
- "line": 1114,
- "column": 4
- },
- "end": {
- "line": 1114,
- "column": 15
- }
- }
- },
"value": {
"type": "FunctionExpression",
"id": null,
@@ -95274,16 +74145,16 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42399,
- 42405
+ 31567,
+ 31573
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 12
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 18
}
}
@@ -95294,16 +74165,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42408,
- 42412
+ 31576,
+ 31580
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 21
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 25
}
}
@@ -95312,46 +74183,46 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42413,
- 42419
+ 31581,
+ 31587
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 26
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 32
}
}
},
"range": [
- 42408,
- 42419
+ 31576,
+ 31587
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 21
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 32
}
}
},
"range": [
- 42399,
- 42419
+ 31567,
+ 31587
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 12
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 32
}
}
@@ -95359,34 +74230,195 @@
],
"kind": "let",
"range": [
- 42395,
- 42420
+ 31563,
+ 31588
],
"loc": {
"start": {
- "line": 1115,
+ "line": 876,
"column": 8
},
"end": {
- "line": 1115,
+ "line": 876,
"column": 33
}
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 31597,
+ 31601
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 8
+ },
+ "end": {
+ "line": 877,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 31602,
+ 31609
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 13
+ },
+ "end": {
+ "line": 877,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 31597,
+ 31609
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 8
+ },
+ "end": {
+ "line": 877,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 31610,
+ 31614
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 21
+ },
+ "end": {
+ "line": 877,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 31597,
+ 31614
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 8
+ },
+ "end": {
+ "line": 877,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-loading-themes",
+ "raw": "'before-loading-themes'",
+ "range": [
+ 31615,
+ 31638
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 26
+ },
+ "end": {
+ "line": 877,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 31640,
+ 31644
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 51
+ },
+ "end": {
+ "line": 877,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 31597,
+ 31645
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 8
+ },
+ "end": {
+ "line": 877,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 31597,
+ 31646
+ ],
+ "loc": {
+ "start": {
+ "line": 877,
+ "column": 8
+ },
+ "end": {
+ "line": 877,
+ "column": 57
+ }
},
"trailingComments": [
{
"type": "Line",
"value": "Default theme config",
"range": [
- 42429,
- 42451
+ 31656,
+ 31678
],
"loc": {
"start": {
- "line": 1116,
+ "line": 879,
"column": 8
},
"end": {
- "line": 1116,
+ "line": 879,
"column": 30
}
}
@@ -95401,16 +74433,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42463,
- 42467
+ 31690,
+ 31694
],
"loc": {
"start": {
- "line": 1117,
+ "line": 880,
"column": 11
},
"end": {
- "line": 1117,
+ "line": 880,
"column": 15
}
}
@@ -95419,31 +74451,31 @@
"type": "Identifier",
"name": "enableDefaultTheme",
"range": [
- 42468,
- 42486
+ 31695,
+ 31713
],
"loc": {
"start": {
- "line": 1117,
+ "line": 880,
"column": 16
},
"end": {
- "line": 1117,
+ "line": 880,
"column": 34
}
}
},
"range": [
- 42463,
- 42486
+ 31690,
+ 31713
],
"loc": {
"start": {
- "line": 1117,
+ "line": 880,
"column": 11
},
"end": {
- "line": 1117,
+ "line": 880,
"column": 34
}
}
@@ -95460,16 +74492,16 @@
"type": "Identifier",
"name": "defaultTheme",
"range": [
- 42505,
- 42517
+ 31732,
+ 31744
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 16
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 28
}
}
@@ -95483,16 +74515,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 42522,
- 42526
+ 31749,
+ 31753
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 33
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 37
}
}
@@ -95502,16 +74534,16 @@
"value": "default",
"raw": "'default'",
"range": [
- 42528,
- 42537
+ 31755,
+ 31764
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 39
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 48
}
}
@@ -95521,47 +74553,47 @@
"shorthand": false,
"computed": false,
"range": [
- 42522,
- 42537
+ 31749,
+ 31764
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 33
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 48
}
}
}
],
"range": [
- 42520,
- 42539
+ 31747,
+ 31766
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 31
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 50
}
}
},
"range": [
- 42505,
- 42539
+ 31732,
+ 31766
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 16
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 50
}
}
@@ -95569,16 +74601,16 @@
],
"kind": "let",
"range": [
- 42501,
- 42540
+ 31728,
+ 31767
],
"loc": {
"start": {
- "line": 1118,
+ "line": 881,
"column": 12
},
"end": {
- "line": 1118,
+ "line": 881,
"column": 51
}
}
@@ -95596,16 +74628,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42553,
- 42557
+ 31780,
+ 31784
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 12
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 16
}
}
@@ -95614,31 +74646,31 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42558,
- 42564
+ 31785,
+ 31791
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 17
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 23
}
}
},
"range": [
- 42553,
- 42564
+ 31780,
+ 31791
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 12
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 23
}
}
@@ -95647,31 +74679,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 42565,
- 42569
+ 31792,
+ 31796
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 24
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 28
}
}
},
"range": [
- 42553,
- 42569
+ 31780,
+ 31796
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 12
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 28
}
}
@@ -95681,79 +74713,79 @@
"type": "Identifier",
"name": "defaultTheme",
"range": [
- 42570,
- 42582
+ 31797,
+ 31809
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 29
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 41
}
}
}
],
"range": [
- 42553,
- 42583
+ 31780,
+ 31810
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 12
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 42
}
}
},
"range": [
- 42553,
- 42584
+ 31780,
+ 31811
],
"loc": {
"start": {
- "line": 1119,
+ "line": 882,
"column": 12
},
"end": {
- "line": 1119,
+ "line": 882,
"column": 43
}
}
}
],
"range": [
- 42487,
- 42594
+ 31714,
+ 31821
],
"loc": {
"start": {
- "line": 1117,
+ "line": 880,
"column": 35
},
"end": {
- "line": 1120,
+ "line": 883,
"column": 9
}
}
},
"alternate": null,
"range": [
- 42460,
- 42594
+ 31687,
+ 31821
],
"loc": {
"start": {
- "line": 1117,
+ "line": 880,
"column": 8
},
"end": {
- "line": 1120,
+ "line": 883,
"column": 9
}
},
@@ -95762,16 +74794,16 @@
"type": "Line",
"value": "Default theme config",
"range": [
- 42429,
- 42451
+ 31656,
+ 31678
],
"loc": {
"start": {
- "line": 1116,
+ "line": 879,
"column": 8
},
"end": {
- "line": 1116,
+ "line": 879,
"column": 30
}
}
@@ -95789,16 +74821,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 42606,
- 42611
+ 31833,
+ 31838
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 11
},
"end": {
- "line": 1121,
+ "line": 884,
"column": 16
}
}
@@ -95807,31 +74839,31 @@
"type": "Identifier",
"name": "isArray",
"range": [
- 42612,
- 42619
+ 31839,
+ 31846
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 17
},
"end": {
- "line": 1121,
+ "line": 884,
"column": 24
}
}
},
"range": [
- 42606,
- 42619
+ 31833,
+ 31846
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 11
},
"end": {
- "line": 1121,
+ "line": 884,
"column": 24
}
}
@@ -95841,32 +74873,32 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42620,
- 42626
+ 31847,
+ 31853
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 25
},
"end": {
- "line": 1121,
+ "line": 884,
"column": 31
}
}
}
],
"range": [
- 42606,
- 42627
+ 31833,
+ 31854
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 11
},
"end": {
- "line": 1121,
+ "line": 884,
"column": 32
}
}
@@ -95885,16 +74917,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 42650,
- 42651
+ 31877,
+ 31878
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 20
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 21
}
}
@@ -95904,31 +74936,31 @@
"value": 0,
"raw": "0",
"range": [
- 42652,
- 42653
+ 31879,
+ 31880
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 22
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 23
}
}
},
"range": [
- 42650,
- 42653
+ 31877,
+ 31880
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 20
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 23
}
}
@@ -95939,16 +74971,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 42655,
- 42658
+ 31882,
+ 31885
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 25
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 28
}
}
@@ -95960,16 +74992,16 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42659,
- 42665
+ 31886,
+ 31892
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 29
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 35
}
}
@@ -95978,46 +75010,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 42666,
- 42672
+ 31893,
+ 31899
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 36
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 42
}
}
},
"range": [
- 42659,
- 42672
+ 31886,
+ 31899
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 29
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 42
}
}
},
"range": [
- 42655,
- 42672
+ 31882,
+ 31899
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 25
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 42
}
}
@@ -96025,16 +75057,16 @@
],
"kind": "let",
"range": [
- 42646,
- 42672
+ 31873,
+ 31899
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 16
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 42
}
}
@@ -96046,16 +75078,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 42674,
- 42675
+ 31901,
+ 31902
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 44
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 45
}
}
@@ -96064,31 +75096,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 42676,
- 42679
+ 31903,
+ 31906
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 46
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 49
}
}
},
"range": [
- 42674,
- 42679
+ 31901,
+ 31906
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 44
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 49
}
}
@@ -96100,32 +75132,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 42681,
- 42682
+ 31908,
+ 31909
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 51
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 52
}
}
},
"prefix": false,
"range": [
- 42681,
- 42684
+ 31908,
+ 31911
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 51
},
"end": {
- "line": 1122,
+ "line": 885,
"column": 54
}
}
@@ -96142,16 +75174,16 @@
"type": "Identifier",
"name": "theme",
"range": [
- 42707,
- 42712
+ 31934,
+ 31939
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 20
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 25
}
}
@@ -96163,16 +75195,16 @@
"type": "Identifier",
"name": "themes",
"range": [
- 42715,
- 42721
+ 31942,
+ 31948
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 28
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 34
}
}
@@ -96181,46 +75213,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 42722,
- 42723
+ 31949,
+ 31950
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 35
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 36
}
}
},
"range": [
- 42715,
- 42724
+ 31942,
+ 31951
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 28
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 37
}
}
},
"range": [
- 42707,
- 42724
+ 31934,
+ 31951
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 20
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 37
}
}
@@ -96228,16 +75260,16 @@
],
"kind": "let",
"range": [
- 42703,
- 42725
+ 31930,
+ 31952
],
"loc": {
"start": {
- "line": 1123,
+ "line": 886,
"column": 16
},
"end": {
- "line": 1123,
+ "line": 886,
"column": 38
}
}
@@ -96251,16 +75283,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 42746,
- 42750
+ 31973,
+ 31977
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 20
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 24
}
}
@@ -96272,16 +75304,16 @@
"type": "Identifier",
"name": "theme",
"range": [
- 42753,
- 42758
+ 31980,
+ 31985
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 27
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 32
}
}
@@ -96290,46 +75322,46 @@
"type": "Identifier",
"name": "name",
"range": [
- 42759,
- 42763
+ 31986,
+ 31990
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 33
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 37
}
}
},
"range": [
- 42753,
- 42763
+ 31980,
+ 31990
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 27
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 37
}
}
},
"range": [
- 42746,
- 42763
+ 31973,
+ 31990
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 20
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 37
}
}
@@ -96337,16 +75369,16 @@
],
"kind": "let",
"range": [
- 42742,
- 42764
+ 31969,
+ 31991
],
"loc": {
"start": {
- "line": 1124,
+ "line": 887,
"column": 16
},
"end": {
- "line": 1124,
+ "line": 887,
"column": 38
}
}
@@ -96360,16 +75392,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 42785,
- 42789
+ 32012,
+ 32016
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 20
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 24
}
}
@@ -96381,16 +75413,16 @@
"type": "Identifier",
"name": "theme",
"range": [
- 42792,
- 42797
+ 32019,
+ 32024
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 27
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 32
}
}
@@ -96399,46 +75431,46 @@
"type": "Identifier",
"name": "path",
"range": [
- 42798,
- 42802
+ 32025,
+ 32029
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 33
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 37
}
}
},
"range": [
- 42792,
- 42802
+ 32019,
+ 32029
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 27
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 37
}
}
},
"range": [
- 42785,
- 42802
+ 32012,
+ 32029
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 20
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 37
}
}
@@ -96446,16 +75478,16 @@
],
"kind": "let",
"range": [
- 42781,
- 42803
+ 32008,
+ 32030
],
"loc": {
"start": {
- "line": 1125,
+ "line": 888,
"column": 16
},
"end": {
- "line": 1125,
+ "line": 888,
"column": 38
}
}
@@ -96469,16 +75501,16 @@
"type": "Identifier",
"name": "styleId",
"range": [
- 42824,
- 42831
+ 32051,
+ 32058
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 20
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 27
}
}
@@ -96492,16 +75524,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42834,
- 42838
+ 32061,
+ 32065
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 30
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 34
}
}
@@ -96510,31 +75542,31 @@
"type": "Identifier",
"name": "prfxTf",
"range": [
- 42839,
- 42845
+ 32066,
+ 32072
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 35
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 41
}
}
},
"range": [
- 42834,
- 42845
+ 32061,
+ 32072
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 30
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 41
}
}
@@ -96543,46 +75575,46 @@
"type": "Identifier",
"name": "name",
"range": [
- 42848,
- 42852
+ 32075,
+ 32079
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 44
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 48
}
}
},
"range": [
- 42834,
- 42852
+ 32061,
+ 32079
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 30
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 48
}
}
},
"range": [
- 42824,
- 42852
+ 32051,
+ 32079
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 20
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 48
}
}
@@ -96590,16 +75622,16 @@
],
"kind": "let",
"range": [
- 42820,
- 42853
+ 32047,
+ 32080
],
"loc": {
"start": {
- "line": 1126,
+ "line": 889,
"column": 16
},
"end": {
- "line": 1126,
+ "line": 889,
"column": 49
}
}
@@ -96613,16 +75645,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 42873,
- 42877
+ 32100,
+ 32104
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 19
},
"end": {
- "line": 1127,
+ "line": 890,
"column": 23
}
}
@@ -96634,47 +75666,47 @@
"type": "Identifier",
"name": "path",
"range": [
- 42882,
- 42886
+ 32109,
+ 32113
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 28
},
"end": {
- "line": 1127,
+ "line": 890,
"column": 32
}
}
},
"prefix": true,
"range": [
- 42881,
- 42886
+ 32108,
+ 32113
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 27
},
"end": {
- "line": 1127,
+ "line": 890,
"column": 32
}
}
},
"range": [
- 42873,
- 42886
+ 32100,
+ 32113
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 19
},
"end": {
- "line": 1127,
+ "line": 890,
"column": 32
}
}
@@ -96691,16 +75723,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 42909,
- 42913
+ 32136,
+ 32140
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 20
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 24
}
}
@@ -96723,16 +75755,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 42916,
- 42920
+ 32143,
+ 32147
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 31
}
}
@@ -96741,31 +75773,31 @@
"type": "Identifier",
"name": "themesPath",
"range": [
- 42921,
- 42931
+ 32148,
+ 32158
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 32
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 42
}
}
},
"range": [
- 42916,
- 42931
+ 32143,
+ 32158
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 42
}
}
@@ -96774,31 +75806,31 @@
"type": "Identifier",
"name": "name",
"range": [
- 42934,
- 42938
+ 32161,
+ 32165
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 45
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 49
}
}
},
"range": [
- 42916,
- 42938
+ 32143,
+ 32165
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 49
}
}
@@ -96808,31 +75840,31 @@
"value": "/",
"raw": "'/'",
"range": [
- 42941,
- 42944
+ 32168,
+ 32171
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 52
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 55
}
}
},
"range": [
- 42916,
- 42944
+ 32143,
+ 32171
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 55
}
}
@@ -96841,31 +75873,31 @@
"type": "Identifier",
"name": "name",
"range": [
- 42947,
- 42951
+ 32174,
+ 32178
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 58
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 62
}
}
},
"range": [
- 42916,
- 42951
+ 32143,
+ 32178
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 62
}
}
@@ -96875,77 +75907,77 @@
"value": ".css",
"raw": "'.css'",
"range": [
- 42954,
- 42960
+ 32181,
+ 32187
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 65
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 71
}
}
},
"range": [
- 42916,
- 42960
+ 32143,
+ 32187
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 27
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 71
}
}
},
"range": [
- 42909,
- 42960
+ 32136,
+ 32187
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 20
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 71
}
}
},
"range": [
- 42909,
- 42961
+ 32136,
+ 32188
],
"loc": {
"start": {
- "line": 1128,
+ "line": 891,
"column": 20
},
"end": {
- "line": 1128,
+ "line": 891,
"column": 72
}
}
}
],
"range": [
- 42887,
- 42979
+ 32114,
+ 32206
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 33
},
"end": {
- "line": 1129,
+ "line": 892,
"column": 17
}
}
@@ -96962,32 +75994,32 @@
"type": "Identifier",
"name": "name",
"range": [
- 43005,
- 43009
+ 32232,
+ 32236
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 25
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 29
}
}
},
"prefix": true,
"range": [
- 43004,
- 43009
+ 32231,
+ 32236
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 24
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 29
}
}
@@ -96999,16 +76031,16 @@
"type": "Identifier",
"name": "theme",
"range": [
- 43013,
- 43018
+ 32240,
+ 32245
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 33
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 38
}
}
@@ -97017,46 +76049,46 @@
"type": "Identifier",
"name": "path",
"range": [
- 43019,
- 43023
+ 32246,
+ 32250
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 39
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 43
}
}
},
"range": [
- 43013,
- 43023
+ 32240,
+ 32250
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 33
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 43
}
}
},
"range": [
- 43004,
- 43023
+ 32231,
+ 32250
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 24
},
"end": {
- "line": 1130,
+ "line": 893,
"column": 43
}
}
@@ -97073,16 +76105,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 43046,
- 43050
+ 32273,
+ 32277
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 20
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 24
}
}
@@ -97097,16 +76129,16 @@
"value": "theme{0}",
"raw": "'theme{0}'",
"range": [
- 43053,
- 43063
+ 32280,
+ 32290
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 27
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 37
}
}
@@ -97115,31 +76147,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 43064,
- 43071
+ 32291,
+ 32298
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 38
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 45
}
}
},
"range": [
- 43053,
- 43071
+ 32280,
+ 32298
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 27
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 45
}
}
@@ -97150,16 +76182,16 @@
"value": "{0}",
"raw": "'{0}'",
"range": [
- 43072,
- 43077
+ 32299,
+ 32304
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 46
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 51
}
}
@@ -97168,109 +76200,109 @@
"type": "Identifier",
"name": "i",
"range": [
- 43079,
- 43080
+ 32306,
+ 32307
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 53
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 54
}
}
}
],
"range": [
- 43053,
- 43081
+ 32280,
+ 32308
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 27
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 55
}
}
},
"range": [
- 43046,
- 43081
+ 32273,
+ 32308
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 20
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 55
}
}
},
"range": [
- 43046,
- 43082
+ 32273,
+ 32309
],
"loc": {
"start": {
- "line": 1131,
+ "line": 894,
"column": 20
},
"end": {
- "line": 1131,
+ "line": 894,
"column": 56
}
}
}
],
"range": [
- 43024,
- 43100
+ 32251,
+ 32327
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 44
},
"end": {
- "line": 1132,
+ "line": 895,
"column": 17
}
}
},
"alternate": null,
"range": [
- 43001,
- 43100
+ 32228,
+ 32327
],
"loc": {
"start": {
- "line": 1130,
+ "line": 893,
"column": 21
},
"end": {
- "line": 1132,
+ "line": 895,
"column": 17
}
}
},
"range": [
- 42870,
- 43100
+ 32097,
+ 32327
],
"loc": {
"start": {
- "line": 1127,
+ "line": 890,
"column": 16
},
"end": {
- "line": 1132,
+ "line": 895,
"column": 17
}
}
@@ -97288,16 +76320,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43122,
- 43126
+ 32349,
+ 32353
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 20
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 24
}
}
@@ -97306,31 +76338,31 @@
"type": "Identifier",
"name": "isImported",
"range": [
- 43127,
- 43137
+ 32354,
+ 32364
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 25
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 35
}
}
},
"range": [
- 43122,
- 43137
+ 32349,
+ 32364
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 20
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 35
}
}
@@ -97340,16 +76372,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 43138,
- 43142
+ 32365,
+ 32369
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 36
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 40
}
}
@@ -97359,48 +76391,48 @@
"value": "link",
"raw": "'link'",
"range": [
- 43144,
- 43150
+ 32371,
+ 32377
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 42
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 48
}
}
}
],
"range": [
- 43122,
- 43151
+ 32349,
+ 32378
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 20
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 49
}
}
},
"prefix": true,
"range": [
- 43121,
- 43151
+ 32348,
+ 32378
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 19
},
"end": {
- "line": 1134,
+ "line": 897,
"column": 49
}
}
@@ -97418,16 +76450,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43174,
- 43178
+ 32401,
+ 32405
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 20
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 24
}
}
@@ -97436,31 +76468,31 @@
"type": "Identifier",
"name": "import",
"range": [
- 43179,
- 43185
+ 32406,
+ 32412
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 25
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 31
}
}
},
"range": [
- 43174,
- 43185
+ 32401,
+ 32412
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 20
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 31
}
}
@@ -97470,16 +76502,16 @@
"type": "Identifier",
"name": "styleId",
"range": [
- 43186,
- 43193
+ 32413,
+ 32420
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 32
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 39
}
}
@@ -97488,16 +76520,16 @@
"type": "Identifier",
"name": "path",
"range": [
- 43195,
- 43199
+ 32422,
+ 32426
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 41
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 45
}
}
@@ -97507,16 +76539,16 @@
"value": null,
"raw": "null",
"range": [
- 43201,
- 43205
+ 32428,
+ 32432
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 47
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 51
}
}
@@ -97526,142 +76558,142 @@
"value": "link",
"raw": "'link'",
"range": [
- 43207,
- 43213
+ 32434,
+ 32440
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 53
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 59
}
}
}
],
"range": [
- 43174,
- 43214
+ 32401,
+ 32441
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 20
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 60
}
}
},
"range": [
- 43174,
- 43215
+ 32401,
+ 32442
],
"loc": {
"start": {
- "line": 1135,
+ "line": 898,
"column": 20
},
"end": {
- "line": 1135,
+ "line": 898,
"column": 61
}
}
}
],
"range": [
- 43152,
- 43233
+ 32379,
+ 32460
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 50
},
"end": {
- "line": 1136,
+ "line": 899,
"column": 17
}
}
},
"alternate": null,
"range": [
- 43118,
- 43233
+ 32345,
+ 32460
],
"loc": {
"start": {
- "line": 1134,
+ "line": 897,
"column": 16
},
"end": {
- "line": 1136,
+ "line": 899,
"column": 17
}
}
}
],
"range": [
- 42685,
- 43247
+ 31912,
+ 32474
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 55
},
"end": {
- "line": 1137,
+ "line": 900,
"column": 13
}
}
},
"range": [
- 42642,
- 43247
+ 31869,
+ 32474
],
"loc": {
"start": {
- "line": 1122,
+ "line": 885,
"column": 12
},
"end": {
- "line": 1137,
+ "line": 900,
"column": 13
}
}
}
],
"range": [
- 42628,
- 43257
+ 31855,
+ 32484
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 33
},
"end": {
- "line": 1138,
+ "line": 901,
"column": 9
}
}
},
"alternate": null,
"range": [
- 42603,
- 43257
+ 31830,
+ 32484
],
"loc": {
"start": {
- "line": 1121,
+ "line": 884,
"column": 8
},
"end": {
- "line": 1138,
+ "line": 901,
"column": 9
}
},
@@ -97670,16 +76702,16 @@
"type": "Line",
"value": "Some elements need to be overriden for default theme",
"range": [
- 43267,
- 43321
+ 32494,
+ 32548
],
"loc": {
"start": {
- "line": 1140,
+ "line": 903,
"column": 8
},
"end": {
- "line": 1140,
+ "line": 903,
"column": 62
}
}
@@ -97688,16 +76720,16 @@
"type": "Line",
"value": "Reset button",
"range": [
- 43330,
- 43344
+ 32557,
+ 32571
],
"loc": {
"start": {
- "line": 1141,
+ "line": 904,
"column": 8
},
"end": {
- "line": 1141,
+ "line": 904,
"column": 22
}
}
@@ -97715,16 +76747,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43353,
- 43357
+ 32580,
+ 32584
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 8
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 12
}
}
@@ -97733,31 +76765,31 @@
"type": "Identifier",
"name": "btnResetText",
"range": [
- 43358,
- 43370
+ 32585,
+ 32597
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 13
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 25
}
}
},
"range": [
- 43353,
- 43370
+ 32580,
+ 32597
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 8
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 25
}
}
@@ -97767,46 +76799,46 @@
"value": null,
"raw": "null",
"range": [
- 43373,
- 43377
+ 32600,
+ 32604
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 28
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 32
}
}
},
"range": [
- 43353,
- 43377
+ 32580,
+ 32604
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 8
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 32
}
}
},
"range": [
- 43353,
- 43378
+ 32580,
+ 32605
],
"loc": {
"start": {
- "line": 1142,
+ "line": 905,
"column": 8
},
"end": {
- "line": 1142,
+ "line": 905,
"column": 33
}
},
@@ -97815,16 +76847,16 @@
"type": "Line",
"value": "Some elements need to be overriden for default theme",
"range": [
- 43267,
- 43321
+ 32494,
+ 32548
],
"loc": {
"start": {
- "line": 1140,
+ "line": 903,
"column": 8
},
"end": {
- "line": 1140,
+ "line": 903,
"column": 62
}
}
@@ -97833,16 +76865,16 @@
"type": "Line",
"value": "Reset button",
"range": [
- 43330,
- 43344
+ 32557,
+ 32571
],
"loc": {
"start": {
- "line": 1141,
+ "line": 904,
"column": 8
},
"end": {
- "line": 1141,
+ "line": 904,
"column": 22
}
}
@@ -97860,16 +76892,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43387,
- 43391
+ 32614,
+ 32618
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 8
},
"end": {
- "line": 1143,
+ "line": 906,
"column": 12
}
}
@@ -97878,31 +76910,31 @@
"type": "Identifier",
"name": "btnResetHtml",
"range": [
- 43392,
- 43404
+ 32619,
+ 32631
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 13
},
"end": {
- "line": 1143,
+ "line": 906,
"column": 25
}
}
},
"range": [
- 43387,
- 43404
+ 32614,
+ 32631
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 8
},
"end": {
- "line": 1143,
+ "line": 906,
"column": 25
}
}
@@ -97918,16 +76950,16 @@
"value": " ",
"raw": "'\" title=\"Clear filters\" />'",
"range": [
- 43483,
- 43511
+ 32710,
+ 32738
],
"loc": {
"start": {
- "line": 1144,
+ "line": 907,
"column": 34
},
"end": {
- "line": 1144,
+ "line": 907,
"column": 62
}
}
},
"range": [
- 43407,
- 43511
+ 32634,
+ 32738
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 28
},
"end": {
- "line": 1144,
+ "line": 907,
"column": 62
}
}
},
"range": [
- 43387,
- 43511
+ 32614,
+ 32738
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 8
},
"end": {
- "line": 1144,
+ "line": 907,
"column": 62
}
}
},
"range": [
- 43387,
- 43512
+ 32614,
+ 32739
],
"loc": {
"start": {
- "line": 1143,
+ "line": 906,
"column": 8
},
"end": {
- "line": 1144,
+ "line": 907,
"column": 63
}
},
@@ -98068,16 +77100,16 @@
"type": "Line",
"value": "Paging buttons",
"range": [
- 43522,
- 43538
+ 32749,
+ 32765
],
"loc": {
"start": {
- "line": 1146,
+ "line": 909,
"column": 8
},
"end": {
- "line": 1146,
+ "line": 909,
"column": 24
}
}
@@ -98095,16 +77127,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43547,
- 43551
+ 32774,
+ 32778
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 8
},
"end": {
- "line": 1147,
+ "line": 910,
"column": 12
}
}
@@ -98113,31 +77145,31 @@
"type": "Identifier",
"name": "btnPrevPageHtml",
"range": [
- 43552,
- 43567
+ 32779,
+ 32794
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 13
},
"end": {
- "line": 1147,
+ "line": 910,
"column": 28
}
}
},
"range": [
- 43547,
- 43567
+ 32774,
+ 32794
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 8
},
"end": {
- "line": 1147,
+ "line": 910,
"column": 28
}
}
@@ -98153,16 +77185,16 @@
"value": " ",
"raw": "' previousPage\" title=\"Previous page\" />'",
"range": [
- 43645,
- 43686
+ 32872,
+ 32913
],
"loc": {
"start": {
- "line": 1148,
+ "line": 911,
"column": 33
},
"end": {
- "line": 1148,
+ "line": 911,
"column": 74
}
}
},
"range": [
- 43570,
- 43686
+ 32797,
+ 32913
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 31
},
"end": {
- "line": 1148,
+ "line": 911,
"column": 74
}
}
},
"range": [
- 43547,
- 43686
+ 32774,
+ 32913
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 8
},
"end": {
- "line": 1148,
+ "line": 911,
"column": 74
}
}
},
"range": [
- 43547,
- 43687
+ 32774,
+ 32914
],
"loc": {
"start": {
- "line": 1147,
+ "line": 910,
"column": 8
},
"end": {
- "line": 1148,
+ "line": 911,
"column": 75
}
},
@@ -98303,16 +77335,16 @@
"type": "Line",
"value": "Paging buttons",
"range": [
- 43522,
- 43538
+ 32749,
+ 32765
],
"loc": {
"start": {
- "line": 1146,
+ "line": 909,
"column": 8
},
"end": {
- "line": 1146,
+ "line": 909,
"column": 24
}
}
@@ -98330,16 +77362,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43696,
- 43700
+ 32923,
+ 32927
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 8
},
"end": {
- "line": 1149,
+ "line": 912,
"column": 12
}
}
@@ -98348,31 +77380,31 @@
"type": "Identifier",
"name": "btnNextPageHtml",
"range": [
- 43701,
- 43716
+ 32928,
+ 32943
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 13
},
"end": {
- "line": 1149,
+ "line": 912,
"column": 28
}
}
},
"range": [
- 43696,
- 43716
+ 32923,
+ 32943
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 8
},
"end": {
- "line": 1149,
+ "line": 912,
"column": 28
}
}
@@ -98388,16 +77420,16 @@
"value": " ",
"raw": "' nextPage\" title=\"Next page\" />'",
"range": [
- 43794,
- 43827
+ 33021,
+ 33054
],
"loc": {
"start": {
- "line": 1150,
+ "line": 913,
"column": 33
},
"end": {
- "line": 1150,
+ "line": 913,
"column": 66
}
}
},
"range": [
- 43719,
- 43827
+ 32946,
+ 33054
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 31
},
"end": {
- "line": 1150,
+ "line": 913,
"column": 66
}
}
},
"range": [
- 43696,
- 43827
+ 32923,
+ 33054
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 8
},
"end": {
- "line": 1150,
+ "line": 913,
"column": 66
}
}
},
"range": [
- 43696,
- 43828
+ 32923,
+ 33055
],
"loc": {
"start": {
- "line": 1149,
+ "line": 912,
"column": 8
},
"end": {
- "line": 1150,
+ "line": 913,
"column": 67
}
}
@@ -98545,16 +77577,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43837,
- 43841
+ 33064,
+ 33068
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 8
},
"end": {
- "line": 1151,
+ "line": 914,
"column": 12
}
}
@@ -98563,31 +77595,31 @@
"type": "Identifier",
"name": "btnFirstPageHtml",
"range": [
- 43842,
- 43858
+ 33069,
+ 33085
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 13
},
"end": {
- "line": 1151,
+ "line": 914,
"column": 29
}
}
},
"range": [
- 43837,
- 43858
+ 33064,
+ 33085
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 8
},
"end": {
- "line": 1151,
+ "line": 914,
"column": 29
}
}
@@ -98603,16 +77635,16 @@
"value": " ",
"raw": "' firstPage\" title=\"First page\" />'",
"range": [
- 43936,
- 43971
+ 33163,
+ 33198
],
"loc": {
"start": {
- "line": 1152,
+ "line": 915,
"column": 33
},
"end": {
- "line": 1152,
+ "line": 915,
"column": 68
}
}
},
"range": [
- 43861,
- 43971
+ 33088,
+ 33198
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 32
},
"end": {
- "line": 1152,
+ "line": 915,
"column": 68
}
}
},
"range": [
- 43837,
- 43971
+ 33064,
+ 33198
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 8
},
"end": {
- "line": 1152,
+ "line": 915,
"column": 68
}
}
},
"range": [
- 43837,
- 43972
+ 33064,
+ 33199
],
"loc": {
"start": {
- "line": 1151,
+ "line": 914,
"column": 8
},
"end": {
- "line": 1152,
+ "line": 915,
"column": 69
}
}
@@ -98760,16 +77792,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 43981,
- 43985
+ 33208,
+ 33212
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 8
},
"end": {
- "line": 1153,
+ "line": 916,
"column": 12
}
}
@@ -98778,31 +77810,31 @@
"type": "Identifier",
"name": "btnLastPageHtml",
"range": [
- 43986,
- 44001
+ 33213,
+ 33228
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 13
},
"end": {
- "line": 1153,
+ "line": 916,
"column": 28
}
}
},
"range": [
- 43981,
- 44001
+ 33208,
+ 33228
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 8
},
"end": {
- "line": 1153,
+ "line": 916,
"column": 28
}
}
@@ -98818,16 +77850,16 @@
"value": " ",
"raw": "' lastPage\" title=\"Last page\" />'",
"range": [
- 44079,
- 44112
+ 33306,
+ 33339
],
"loc": {
"start": {
- "line": 1154,
+ "line": 917,
"column": 33
},
"end": {
- "line": 1154,
+ "line": 917,
"column": 66
}
}
},
"range": [
- 44004,
- 44112
+ 33231,
+ 33339
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 31
},
"end": {
- "line": 1154,
+ "line": 917,
"column": 66
}
}
},
"range": [
- 43981,
- 44112
+ 33208,
+ 33339
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 8
},
"end": {
- "line": 1154,
+ "line": 917,
"column": 66
}
}
},
"range": [
- 43981,
- 44113
+ 33208,
+ 33340
],
"loc": {
"start": {
- "line": 1153,
+ "line": 916,
"column": 8
},
"end": {
- "line": 1154,
+ "line": 917,
"column": 67
}
},
@@ -98968,16 +78000,16 @@
"type": "Line",
"value": "Loader",
"range": [
- 44123,
- 44131
+ 33350,
+ 33358
],
"loc": {
"start": {
- "line": 1156,
+ "line": 919,
"column": 8
},
"end": {
- "line": 1156,
+ "line": 919,
"column": 16
}
}
@@ -98995,16 +78027,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44140,
- 44144
+ 33367,
+ 33371
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 8
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 12
}
}
@@ -99013,31 +78045,31 @@
"type": "Identifier",
"name": "loader",
"range": [
- 44145,
- 44151
+ 33372,
+ 33378
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 13
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 19
}
}
},
"range": [
- 44140,
- 44151
+ 33367,
+ 33378
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 8
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 19
}
}
@@ -99047,46 +78079,46 @@
"value": true,
"raw": "true",
"range": [
- 44154,
- 44158
+ 33381,
+ 33385
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 22
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 26
}
}
},
"range": [
- 44140,
- 44158
+ 33367,
+ 33385
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 8
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 26
}
}
},
"range": [
- 44140,
- 44159
+ 33367,
+ 33386
],
"loc": {
"start": {
- "line": 1157,
+ "line": 920,
"column": 8
},
"end": {
- "line": 1157,
+ "line": 920,
"column": 27
}
},
@@ -99095,16 +78127,16 @@
"type": "Line",
"value": "Loader",
"range": [
- 44123,
- 44131
+ 33350,
+ 33358
],
"loc": {
"start": {
- "line": 1156,
+ "line": 919,
"column": 8
},
"end": {
- "line": 1156,
+ "line": 919,
"column": 16
}
}
@@ -99122,16 +78154,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44168,
- 44172
+ 33395,
+ 33399
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 8
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 12
}
}
@@ -99140,31 +78172,31 @@
"type": "Identifier",
"name": "loaderHtml",
"range": [
- 44173,
- 44183
+ 33400,
+ 33410
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 13
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 23
}
}
},
"range": [
- 44168,
- 44183
+ 33395,
+ 33410
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 8
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 23
}
}
@@ -99174,46 +78206,46 @@
"value": "
",
"raw": "'
'",
"range": [
- 44186,
- 44221
+ 33413,
+ 33448
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 26
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 61
}
}
},
"range": [
- 44168,
- 44221
+ 33395,
+ 33448
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 8
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 61
}
}
},
"range": [
- 44168,
- 44222
+ 33395,
+ 33449
],
"loc": {
"start": {
- "line": 1158,
+ "line": 921,
"column": 8
},
"end": {
- "line": 1158,
+ "line": 921,
"column": 62
}
}
@@ -99229,16 +78261,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44231,
- 44235
+ 33458,
+ 33462
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 8
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 12
}
}
@@ -99247,31 +78279,31 @@
"type": "Identifier",
"name": "loaderText",
"range": [
- 44236,
- 44246
+ 33463,
+ 33473
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 13
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 23
}
}
},
"range": [
- 44231,
- 44246
+ 33458,
+ 33473
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 8
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 23
}
}
@@ -99281,62 +78313,223 @@
"value": null,
"raw": "null",
"range": [
- 44249,
- 44253
+ 33476,
+ 33480
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 26
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 30
}
}
},
"range": [
- 44231,
- 44253
+ 33458,
+ 33480
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 8
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 30
}
}
},
"range": [
- 44231,
- 44254
+ 33458,
+ 33481
],
"loc": {
"start": {
- "line": 1159,
+ "line": 922,
"column": 8
},
"end": {
- "line": 1159,
+ "line": 922,
"column": 31
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 33491,
+ 33495
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 8
+ },
+ "end": {
+ "line": 924,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 33496,
+ 33503
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 13
+ },
+ "end": {
+ "line": 924,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 33491,
+ 33503
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 8
+ },
+ "end": {
+ "line": 924,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 33504,
+ 33508
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 21
+ },
+ "end": {
+ "line": 924,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 33491,
+ 33508
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 8
+ },
+ "end": {
+ "line": 924,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-loading-themes",
+ "raw": "'after-loading-themes'",
+ "range": [
+ 33509,
+ 33531
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 26
+ },
+ "end": {
+ "line": 924,
+ "column": 48
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 33533,
+ 33537
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 50
+ },
+ "end": {
+ "line": 924,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 33491,
+ 33538
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 8
+ },
+ "end": {
+ "line": 924,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 33491,
+ 33539
+ ],
+ "loc": {
+ "start": {
+ "line": 924,
+ "column": 8
+ },
+ "end": {
+ "line": 924,
+ "column": 56
+ }
+ }
}
],
"range": [
- 42385,
- 44260
+ 31553,
+ 33545
],
"loc": {
"start": {
- "line": 1114,
- "column": 17
+ "line": 875,
+ "column": 16
},
"end": {
- "line": 1160,
+ "line": 925,
"column": 5
}
}
@@ -99344,16 +78537,16 @@
"generator": false,
"expression": false,
"range": [
- 42383,
- 44260
+ 31551,
+ 33545
],
"loc": {
"start": {
- "line": 1114,
- "column": 15
+ "line": 875,
+ "column": 14
},
"end": {
- "line": 1160,
+ "line": 925,
"column": 5
}
}
@@ -99361,16 +78554,16 @@
"kind": "method",
"computed": false,
"range": [
- 42372,
- 44260
+ 31541,
+ 33545
],
"loc": {
"start": {
- "line": 1114,
+ "line": 875,
"column": 4
},
"end": {
- "line": 1160,
+ "line": 925,
"column": 5
}
},
@@ -99379,16 +78572,16 @@
"type": "Block",
"value": "*\n * Load themes defined in the configuration object\n ",
"range": [
- 42301,
- 42367
+ 31470,
+ 31536
],
"loc": {
"start": {
- "line": 1111,
+ "line": 872,
"column": 4
},
"end": {
- "line": 1113,
+ "line": 874,
"column": 7
}
}
@@ -99399,16 +78592,16 @@
"type": "Block",
"value": "*\n * Return stylesheet DOM element for a given theme name\n * @return {DOMElement} stylesheet element\n ",
"range": [
- 44266,
- 44384
+ 33551,
+ 33669
],
"loc": {
"start": {
- "line": 1162,
+ "line": 927,
"column": 4
},
"end": {
- "line": 1165,
+ "line": 930,
"column": 7
}
}
@@ -99422,16 +78615,16 @@
"type": "Identifier",
"name": "getStylesheet",
"range": [
- 44389,
- 44402
+ 33674,
+ 33687
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 4
},
"end": {
- "line": 1166,
+ "line": 931,
"column": 17
}
}
@@ -99446,16 +78639,16 @@
"type": "Identifier",
"name": "name",
"range": [
- 44403,
- 44407
+ 33688,
+ 33692
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 18
},
"end": {
- "line": 1166,
+ "line": 931,
"column": 22
}
}
@@ -99465,31 +78658,31 @@
"value": "default",
"raw": "'default'",
"range": [
- 44408,
- 44417
+ 33693,
+ 33702
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 23
},
"end": {
- "line": 1166,
+ "line": 931,
"column": 32
}
}
},
"range": [
- 44403,
- 44417
+ 33688,
+ 33702
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 18
},
"end": {
- "line": 1166,
+ "line": 931,
"column": 32
}
}
@@ -99509,16 +78702,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 44435,
- 44438
+ 33720,
+ 33723
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 15
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 18
}
}
@@ -99527,31 +78720,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 44439,
- 44441
+ 33724,
+ 33726
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 19
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 21
}
}
},
"range": [
- 44435,
- 44441
+ 33720,
+ 33726
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 15
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 21
}
}
@@ -99566,16 +78759,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44442,
- 44446
+ 33727,
+ 33731
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 22
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 26
}
}
@@ -99584,31 +78777,31 @@
"type": "Identifier",
"name": "prfxTf",
"range": [
- 44447,
- 44453
+ 33732,
+ 33738
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 27
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 33
}
}
},
"range": [
- 44442,
- 44453
+ 33727,
+ 33738
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 22
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 33
}
}
@@ -99617,78 +78810,78 @@
"type": "Identifier",
"name": "name",
"range": [
- 44456,
- 44460
+ 33741,
+ 33745
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 36
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 40
}
}
},
"range": [
- 44442,
- 44460
+ 33727,
+ 33745
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 22
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 40
}
}
}
],
"range": [
- 44435,
- 44461
+ 33720,
+ 33746
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 15
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 41
}
}
},
"range": [
- 44428,
- 44462
+ 33713,
+ 33747
],
"loc": {
"start": {
- "line": 1167,
+ "line": 932,
"column": 8
},
"end": {
- "line": 1167,
+ "line": 932,
"column": 42
}
}
}
],
"range": [
- 44418,
- 44468
+ 33703,
+ 33753
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 33
},
"end": {
- "line": 1168,
+ "line": 933,
"column": 5
}
}
@@ -99696,16 +78889,16 @@
"generator": false,
"expression": false,
"range": [
- 44402,
- 44468
+ 33687,
+ 33753
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 17
},
"end": {
- "line": 1168,
+ "line": 933,
"column": 5
}
}
@@ -99713,16 +78906,16 @@
"kind": "method",
"computed": false,
"range": [
- 44389,
- 44468
+ 33674,
+ 33753
],
"loc": {
"start": {
- "line": 1166,
+ "line": 931,
"column": 4
},
"end": {
- "line": 1168,
+ "line": 933,
"column": 5
}
},
@@ -99731,16 +78924,16 @@
"type": "Block",
"value": "*\n * Return stylesheet DOM element for a given theme name\n * @return {DOMElement} stylesheet element\n ",
"range": [
- 44266,
- 44384
+ 33551,
+ 33669
],
"loc": {
"start": {
- "line": 1162,
+ "line": 927,
"column": 4
},
"end": {
- "line": 1165,
+ "line": 930,
"column": 7
}
}
@@ -99751,16 +78944,16 @@
"type": "Block",
"value": "*\n * Destroy filter grid\n ",
"range": [
- 44474,
- 44512
+ 33759,
+ 33797
],
"loc": {
"start": {
- "line": 1170,
+ "line": 935,
"column": 4
},
"end": {
- "line": 1172,
+ "line": 937,
"column": 7
}
}
@@ -99774,16 +78967,16 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 44517,
- 44524
+ 33802,
+ 33809
],
"loc": {
"start": {
- "line": 1173,
+ "line": 938,
"column": 4
},
"end": {
- "line": 1173,
+ "line": 938,
"column": 11
}
}
@@ -99806,16 +78999,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44540,
- 44544
+ 33825,
+ 33829
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 12
},
"end": {
- "line": 1174,
+ "line": 939,
"column": 16
}
}
@@ -99824,47 +79017,47 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 44545,
- 44553
+ 33830,
+ 33838
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 17
},
"end": {
- "line": 1174,
+ "line": 939,
"column": 25
}
}
},
"range": [
- 44540,
- 44553
+ 33825,
+ 33838
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 12
},
"end": {
- "line": 1174,
+ "line": 939,
"column": 25
}
}
},
"prefix": true,
"range": [
- 44539,
- 44553
+ 33824,
+ 33838
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 11
},
"end": {
- "line": 1174,
+ "line": 939,
"column": 25
}
}
@@ -99876,48 +79069,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 44568,
- 44575
+ 33853,
+ 33860
],
"loc": {
"start": {
- "line": 1175,
+ "line": 940,
"column": 12
},
"end": {
- "line": 1175,
+ "line": 940,
"column": 19
}
}
}
],
"range": [
- 44554,
- 44585
+ 33839,
+ 33870
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 26
},
"end": {
- "line": 1176,
+ "line": 941,
"column": 9
}
}
},
"alternate": null,
"range": [
- 44536,
- 44585
+ 33821,
+ 33870
],
"loc": {
"start": {
- "line": 1174,
+ "line": 939,
"column": 8
},
"end": {
- "line": 1176,
+ "line": 941,
"column": 9
}
}
@@ -99931,16 +79124,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 44598,
- 44602
+ 33883,
+ 33887
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 12
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 16
}
}
@@ -99954,16 +79147,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44605,
- 44609
+ 33890,
+ 33894
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 19
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 23
}
}
@@ -99972,31 +79165,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 44610,
- 44613
+ 33895,
+ 33898
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 24
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 27
}
}
},
"range": [
- 44605,
- 44613
+ 33890,
+ 33898
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 19
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 27
}
}
@@ -100005,46 +79198,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 44614,
- 44618
+ 33899,
+ 33903
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 28
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 32
}
}
},
"range": [
- 44605,
- 44618
+ 33890,
+ 33903
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 19
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 32
}
}
},
"range": [
- 44598,
- 44618
+ 33883,
+ 33903
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 12
},
"end": {
- "line": 1177,
+ "line": 942,
"column": 32
}
}
@@ -100055,16 +79248,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 44632,
- 44635
+ 33917,
+ 33920
],
"loc": {
"start": {
- "line": 1178,
+ "line": 943,
"column": 12
},
"end": {
- "line": 1178,
+ "line": 943,
"column": 15
}
}
@@ -100075,16 +79268,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44638,
- 44642
+ 33923,
+ 33927
],
"loc": {
"start": {
- "line": 1178,
+ "line": 943,
"column": 18
},
"end": {
- "line": 1178,
+ "line": 943,
"column": 22
}
}
@@ -100093,152 +79286,152 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 44643,
- 44646
+ 33928,
+ 33931
],
"loc": {
"start": {
- "line": 1178,
+ "line": 943,
"column": 23
},
"end": {
- "line": 1178,
+ "line": 943,
"column": 26
}
}
},
"range": [
- 44638,
- 44646
+ 33923,
+ 33931
],
"loc": {
"start": {
- "line": 1178,
+ "line": 943,
"column": 18
},
"end": {
- "line": 1178,
+ "line": 943,
"column": 26
}
}
},
"range": [
- 44632,
- 44646
+ 33917,
+ 33931
],
"loc": {
"start": {
- "line": 1178,
+ "line": 943,
"column": 12
},
"end": {
- "line": 1178,
+ "line": 943,
"column": 26
}
}
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 33945,
+ 33952
+ ],
+ "loc": {
+ "start": {
+ "line": 944,
+ "column": 12
+ },
+ "end": {
+ "line": 944,
+ "column": 19
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 33955,
+ 33959
+ ],
+ "loc": {
+ "start": {
+ "line": 944,
+ "column": 22
+ },
+ "end": {
+ "line": 944,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 33960,
+ 33967
+ ],
+ "loc": {
+ "start": {
+ "line": 944,
+ "column": 27
+ },
+ "end": {
+ "line": 944,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 33955,
+ 33967
+ ],
+ "loc": {
+ "start": {
+ "line": 944,
+ "column": 22
+ },
+ "end": {
+ "line": 944,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 33945,
+ 33967
+ ],
+ "loc": {
+ "start": {
+ "line": 944,
+ "column": 12
+ },
+ "end": {
+ "line": 944,
+ "column": 34
+ }
+ }
}
],
"kind": "let",
"range": [
- 44594,
- 44647
+ 33879,
+ 33968
],
"loc": {
"start": {
- "line": 1177,
+ "line": 942,
"column": 8
},
"end": {
- "line": 1178,
- "column": 27
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 44657,
- 44661
- ],
- "loc": {
- "start": {
- "line": 1180,
- "column": 8
- },
- "end": {
- "line": 1180,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_clearFilters",
- "range": [
- 44662,
- 44675
- ],
- "loc": {
- "start": {
- "line": 1180,
- "column": 13
- },
- "end": {
- "line": 1180,
- "column": 26
- }
- }
- },
- "range": [
- 44657,
- 44675
- ],
- "loc": {
- "start": {
- "line": 1180,
- "column": 8
- },
- "end": {
- "line": 1180,
- "column": 26
- }
- }
- },
- "arguments": [],
- "range": [
- 44657,
- 44677
- ],
- "loc": {
- "start": {
- "line": 1180,
- "column": 8
- },
- "end": {
- "line": 1180,
- "column": 28
- }
- }
- },
- "range": [
- 44657,
- 44678
- ],
- "loc": {
- "start": {
- "line": 1180,
- "column": 8
- },
- "end": {
- "line": 1180,
- "column": 29
+ "line": 944,
+ "column": 35
}
}
},
@@ -100253,16 +79446,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44691,
- 44695
+ 33981,
+ 33985
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 11
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 15
}
}
@@ -100271,31 +79464,31 @@
"type": "Identifier",
"name": "isExternalFlt",
"range": [
- 44696,
- 44709
+ 33986,
+ 33999
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 16
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 29
}
}
},
"range": [
- 44691,
- 44709
+ 33981,
+ 33999
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 11
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 29
}
}
@@ -100309,16 +79502,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44714,
- 44718
+ 34004,
+ 34008
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 34
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 38
}
}
@@ -100327,62 +79520,62 @@
"type": "Identifier",
"name": "popupFilters",
"range": [
- 44719,
- 44731
+ 34009,
+ 34021
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 39
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 51
}
}
},
"range": [
- 44714,
- 44731
+ 34004,
+ 34021
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 34
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 51
}
}
},
"prefix": true,
"range": [
- 44713,
- 44731
+ 34003,
+ 34021
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 33
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 51
}
}
},
"range": [
- 44691,
- 44731
+ 33981,
+ 34021
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 11
},
"end": {
- "line": 1182,
+ "line": 946,
"column": 51
}
}
@@ -100400,16 +79593,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44746,
- 44750
+ 34036,
+ 34040
],
"loc": {
"start": {
- "line": 1183,
+ "line": 947,
"column": 12
},
"end": {
- "line": 1183,
+ "line": 947,
"column": 16
}
}
@@ -100418,94 +79611,94 @@
"type": "Identifier",
"name": "removeExternalFlts",
"range": [
- 44751,
- 44769
+ 34041,
+ 34059
],
"loc": {
"start": {
- "line": 1183,
+ "line": 947,
"column": 17
},
"end": {
- "line": 1183,
+ "line": 947,
"column": 35
}
}
},
"range": [
- 44746,
- 44769
+ 34036,
+ 34059
],
"loc": {
"start": {
- "line": 1183,
+ "line": 947,
"column": 12
},
"end": {
- "line": 1183,
+ "line": 947,
"column": 35
}
}
},
"arguments": [],
"range": [
- 44746,
- 44771
+ 34036,
+ 34061
],
"loc": {
"start": {
- "line": 1183,
+ "line": 947,
"column": 12
},
"end": {
- "line": 1183,
+ "line": 947,
"column": 37
}
}
},
"range": [
- 44746,
- 44772
+ 34036,
+ 34062
],
"loc": {
"start": {
- "line": 1183,
+ "line": 947,
"column": 12
},
"end": {
- "line": 1183,
+ "line": 947,
"column": 38
}
}
}
],
"range": [
- 44732,
- 44782
+ 34022,
+ 34072
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 52
},
"end": {
- "line": 1184,
+ "line": 948,
"column": 9
}
}
},
"alternate": null,
"range": [
- 44688,
- 44782
+ 33978,
+ 34072
],
"loc": {
"start": {
- "line": 1182,
+ "line": 946,
"column": 8
},
"end": {
- "line": 1184,
+ "line": 948,
"column": 9
}
}
@@ -100518,16 +79711,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44794,
- 44798
+ 34084,
+ 34088
],
"loc": {
"start": {
- "line": 1185,
+ "line": 949,
"column": 11
},
"end": {
- "line": 1185,
+ "line": 949,
"column": 15
}
}
@@ -100536,31 +79729,31 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 44799,
- 44805
+ 34089,
+ 34095
],
"loc": {
"start": {
- "line": 1185,
+ "line": 949,
"column": 16
},
"end": {
- "line": 1185,
+ "line": 949,
"column": 22
}
}
},
"range": [
- 44794,
- 44805
+ 34084,
+ 34095
],
"loc": {
"start": {
- "line": 1185,
+ "line": 949,
"column": 11
},
"end": {
- "line": 1185,
+ "line": 949,
"column": 22
}
}
@@ -100578,16 +79771,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44820,
- 44824
+ 34110,
+ 34114
],
"loc": {
"start": {
- "line": 1186,
+ "line": 950,
"column": 12
},
"end": {
- "line": 1186,
+ "line": 950,
"column": 16
}
}
@@ -100596,94 +79789,94 @@
"type": "Identifier",
"name": "removeToolbar",
"range": [
- 44825,
- 44838
+ 34115,
+ 34128
],
"loc": {
"start": {
- "line": 1186,
+ "line": 950,
"column": 17
},
"end": {
- "line": 1186,
+ "line": 950,
"column": 30
}
}
},
"range": [
- 44820,
- 44838
+ 34110,
+ 34128
],
"loc": {
"start": {
- "line": 1186,
+ "line": 950,
"column": 12
},
"end": {
- "line": 1186,
+ "line": 950,
"column": 30
}
}
},
"arguments": [],
"range": [
- 44820,
- 44840
+ 34110,
+ 34130
],
"loc": {
"start": {
- "line": 1186,
+ "line": 950,
"column": 12
},
"end": {
- "line": 1186,
+ "line": 950,
"column": 32
}
}
},
"range": [
- 44820,
- 44841
+ 34110,
+ 34131
],
"loc": {
"start": {
- "line": 1186,
+ "line": 950,
"column": 12
},
"end": {
- "line": 1186,
+ "line": 950,
"column": 33
}
}
}
],
"range": [
- 44806,
- 44851
+ 34096,
+ 34141
],
"loc": {
"start": {
- "line": 1185,
+ "line": 949,
"column": 23
},
"end": {
- "line": 1187,
+ "line": 951,
"column": 9
}
}
},
"alternate": null,
"range": [
- 44791,
- 44851
+ 34081,
+ 34141
],
"loc": {
"start": {
- "line": 1185,
+ "line": 949,
"column": 8
},
"end": {
- "line": 1187,
+ "line": 951,
"column": 9
}
}
@@ -100696,231 +79889,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44863,
- 44867
+ 34153,
+ 34157
],
"loc": {
"start": {
- "line": 1188,
+ "line": 952,
"column": 11
},
"end": {
- "line": 1188,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeywords",
- "range": [
- 44868,
- 44885
- ],
- "loc": {
- "start": {
- "line": 1188,
- "column": 16
- },
- "end": {
- "line": 1188,
- "column": 33
- }
- }
- },
- "range": [
- 44863,
- 44885
- ],
- "loc": {
- "start": {
- "line": 1188,
- "column": 11
- },
- "end": {
- "line": 1188,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 44900,
- 44903
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 12
- },
- "end": {
- "line": 1189,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeyword",
- "range": [
- 44904,
- 44920
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 16
- },
- "end": {
- "line": 1189,
- "column": 32
- }
- }
- },
- "range": [
- 44900,
- 44920
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 12
- },
- "end": {
- "line": 1189,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "unhighlightAll",
- "range": [
- 44921,
- 44935
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 33
- },
- "end": {
- "line": 1189,
- "column": 47
- }
- }
- },
- "range": [
- 44900,
- 44935
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 12
- },
- "end": {
- "line": 1189,
- "column": 47
- }
- }
- },
- "arguments": [],
- "range": [
- 44900,
- 44937
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 12
- },
- "end": {
- "line": 1189,
- "column": 49
- }
- }
- },
- "range": [
- 44900,
- 44938
- ],
- "loc": {
- "start": {
- "line": 1189,
- "column": 12
- },
- "end": {
- "line": 1189,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 44886,
- 44948
- ],
- "loc": {
- "start": {
- "line": 1188,
- "column": 34
- },
- "end": {
- "line": 1190,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 44860,
- 44948
- ],
- "loc": {
- "start": {
- "line": 1188,
- "column": 8
- },
- "end": {
- "line": 1190,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 44960,
- 44964
- ],
- "loc": {
- "start": {
- "line": 1191,
- "column": 11
- },
- "end": {
- "line": 1191,
+ "line": 952,
"column": 15
}
}
@@ -100929,31 +79907,31 @@
"type": "Identifier",
"name": "markActiveColumns",
"range": [
- 44965,
- 44982
+ 34158,
+ 34175
],
"loc": {
"start": {
- "line": 1191,
+ "line": 952,
"column": 16
},
"end": {
- "line": 1191,
+ "line": 952,
"column": 33
}
}
},
"range": [
- 44960,
- 44982
+ 34153,
+ 34175
],
"loc": {
"start": {
- "line": 1191,
+ "line": 952,
"column": 11
},
"end": {
- "line": 1191,
+ "line": 952,
"column": 33
}
}
@@ -100971,16 +79949,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 44997,
- 45001
+ 34190,
+ 34194
],
"loc": {
"start": {
- "line": 1192,
+ "line": 953,
"column": 12
},
"end": {
- "line": 1192,
+ "line": 953,
"column": 16
}
}
@@ -100989,94 +79967,590 @@
"type": "Identifier",
"name": "clearActiveColumns",
"range": [
- 45002,
- 45020
+ 34195,
+ 34213
],
"loc": {
"start": {
- "line": 1192,
+ "line": 953,
"column": 17
},
"end": {
- "line": 1192,
+ "line": 953,
"column": 35
}
}
},
"range": [
- 44997,
- 45020
+ 34190,
+ 34213
],
"loc": {
"start": {
- "line": 1192,
+ "line": 953,
"column": 12
},
"end": {
- "line": 1192,
+ "line": 953,
"column": 35
}
}
},
"arguments": [],
"range": [
- 44997,
- 45022
+ 34190,
+ 34215
],
"loc": {
"start": {
- "line": 1192,
+ "line": 953,
"column": 12
},
"end": {
- "line": 1192,
+ "line": 953,
"column": 37
}
}
},
"range": [
- 44997,
- 45023
+ 34190,
+ 34216
],
"loc": {
"start": {
- "line": 1192,
+ "line": 953,
"column": 12
},
"end": {
- "line": 1192,
+ "line": 953,
"column": 38
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 34229,
+ 34236
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 12
+ },
+ "end": {
+ "line": 954,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 34237,
+ 34240
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 20
+ },
+ "end": {
+ "line": 954,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 34229,
+ 34240
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 12
+ },
+ "end": {
+ "line": 954,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 34242,
+ 34260
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 25
+ },
+ "end": {
+ "line": 954,
+ "column": 43
+ }
+ }
+ }
+ ],
+ "range": [
+ 34241,
+ 34261
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 24
+ },
+ "end": {
+ "line": 954,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 34268,
+ 34272
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 51
+ },
+ "end": {
+ "line": 954,
+ "column": 55
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "clearActiveColumns",
+ "range": [
+ 34273,
+ 34291
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 56
+ },
+ "end": {
+ "line": 954,
+ "column": 74
+ }
+ }
+ },
+ "range": [
+ 34268,
+ 34291
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 51
+ },
+ "end": {
+ "line": 954,
+ "column": 74
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 34268,
+ 34293
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 51
+ },
+ "end": {
+ "line": 954,
+ "column": 76
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 34263,
+ 34293
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 46
+ },
+ "end": {
+ "line": 954,
+ "column": 76
+ }
+ }
+ }
+ ],
+ "range": [
+ 34229,
+ 34294
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 12
+ },
+ "end": {
+ "line": 954,
+ "column": 77
+ }
+ }
+ },
+ "range": [
+ 34229,
+ 34295
+ ],
+ "loc": {
+ "start": {
+ "line": 954,
+ "column": 12
+ },
+ "end": {
+ "line": 954,
+ "column": 78
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 34308,
+ 34315
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 12
+ },
+ "end": {
+ "line": 955,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 34316,
+ 34319
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 20
+ },
+ "end": {
+ "line": 955,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 34308,
+ 34319
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 12
+ },
+ "end": {
+ "line": 955,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "cell-processed",
+ "raw": "'cell-processed'",
+ "range": [
+ 34321,
+ 34337
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 25
+ },
+ "end": {
+ "line": 955,
+ "column": 41
+ }
+ }
+ }
+ ],
+ "range": [
+ 34320,
+ 34338
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 24
+ },
+ "end": {
+ "line": 955,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "tf",
+ "range": [
+ 34357,
+ 34359
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 17
+ },
+ "end": {
+ "line": 956,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 34361,
+ 34369
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 21
+ },
+ "end": {
+ "line": 956,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 34373,
+ 34377
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 33
+ },
+ "end": {
+ "line": 956,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "markActiveColumn",
+ "range": [
+ 34378,
+ 34394
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 38
+ },
+ "end": {
+ "line": 956,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 34373,
+ 34394
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 33
+ },
+ "end": {
+ "line": 956,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 34395,
+ 34403
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 55
+ },
+ "end": {
+ "line": 956,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 34373,
+ 34404
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 33
+ },
+ "end": {
+ "line": 956,
+ "column": 64
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 34356,
+ 34404
+ ],
+ "loc": {
+ "start": {
+ "line": 956,
+ "column": 16
+ },
+ "end": {
+ "line": 956,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 34308,
+ 34405
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 12
+ },
+ "end": {
+ "line": 956,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 34308,
+ 34406
+ ],
+ "loc": {
+ "start": {
+ "line": 955,
+ "column": 12
+ },
+ "end": {
+ "line": 956,
+ "column": 66
+ }
+ }
}
],
"range": [
- 44983,
- 45033
+ 34176,
+ 34416
],
"loc": {
"start": {
- "line": 1191,
+ "line": 952,
"column": 34
},
"end": {
- "line": 1193,
+ "line": 957,
"column": 9
}
}
},
"alternate": null,
"range": [
- 44957,
- 45033
+ 34150,
+ 34416
],
"loc": {
"start": {
- "line": 1191,
+ "line": 952,
"column": 8
},
"end": {
- "line": 1193,
+ "line": 957,
"column": 9
}
}
@@ -101089,16 +80563,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45045,
- 45049
+ 34428,
+ 34432
],
"loc": {
"start": {
- "line": 1194,
+ "line": 958,
"column": 11
},
"end": {
- "line": 1194,
+ "line": 958,
"column": 15
}
}
@@ -101107,31 +80581,31 @@
"type": "Identifier",
"name": "hasExtensions",
"range": [
- 45050,
- 45063
+ 34433,
+ 34446
],
"loc": {
"start": {
- "line": 1194,
+ "line": 958,
"column": 16
},
"end": {
- "line": 1194,
+ "line": 958,
"column": 29
}
}
},
"range": [
- 45045,
- 45063
+ 34428,
+ 34446
],
"loc": {
"start": {
- "line": 1194,
+ "line": 958,
"column": 11
},
"end": {
- "line": 1194,
+ "line": 958,
"column": 29
}
}
@@ -101149,16 +80623,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45078,
- 45082
+ 34461,
+ 34465
],
"loc": {
"start": {
- "line": 1195,
+ "line": 959,
"column": 12
},
"end": {
- "line": 1195,
+ "line": 959,
"column": 16
}
}
@@ -101167,807 +80641,185 @@
"type": "Identifier",
"name": "destroyExtensions",
"range": [
- 45083,
- 45100
+ 34466,
+ 34483
],
"loc": {
"start": {
- "line": 1195,
+ "line": 959,
"column": 17
},
"end": {
- "line": 1195,
+ "line": 959,
"column": 34
}
}
},
"range": [
- 45078,
- 45100
+ 34461,
+ 34483
],
"loc": {
"start": {
- "line": 1195,
+ "line": 959,
"column": 12
},
"end": {
- "line": 1195,
+ "line": 959,
"column": 34
}
}
},
"arguments": [],
"range": [
- 45078,
- 45102
+ 34461,
+ 34485
],
"loc": {
"start": {
- "line": 1195,
+ "line": 959,
"column": 12
},
"end": {
- "line": 1195,
+ "line": 959,
"column": 36
}
}
},
"range": [
- 45078,
- 45103
+ 34461,
+ 34486
],
"loc": {
"start": {
- "line": 1195,
+ "line": 959,
"column": 12
},
"end": {
- "line": 1195,
+ "line": 959,
"column": 37
}
}
}
],
"range": [
- 45064,
- 45113
+ 34447,
+ 34496
],
"loc": {
"start": {
- "line": 1194,
+ "line": 958,
"column": 30
},
"end": {
- "line": 1196,
+ "line": 960,
"column": 9
}
}
},
"alternate": null,
"range": [
- 45042,
- 45113
+ 34425,
+ 34496
],
"loc": {
"start": {
- "line": 1194,
+ "line": 958,
"column": 8
},
"end": {
- "line": 1196,
+ "line": 960,
"column": 9
}
}
},
{
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 45131,
- 45132
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 16
- },
- "end": {
- "line": 1198,
- "column": 17
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 45133,
- 45137
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 18
- },
- "end": {
- "line": 1198,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 45138,
- 45144
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 23
- },
- "end": {
- "line": 1198,
- "column": 29
- }
- }
- },
- "range": [
- 45133,
- 45144
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 18
- },
- "end": {
- "line": 1198,
- "column": 29
- }
- }
- },
- "range": [
- 45131,
- 45144
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 16
- },
- "end": {
- "line": 1198,
- "column": 29
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 45127,
- 45144
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 12
- },
- "end": {
- "line": 1198,
- "column": 29
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 45146,
- 45147
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 31
- },
- "end": {
- "line": 1198,
- "column": 32
- }
- }
- },
- "right": {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "ThisExpression",
"range": [
- 45148,
- 45152
+ 34506,
+ 34510
],
"loc": {
"start": {
- "line": 1198,
- "column": 33
+ "line": 962,
+ "column": 8
},
"end": {
- "line": 1198,
- "column": 37
+ "line": 962,
+ "column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "nbRows",
+ "name": "validateAllRows",
"range": [
- 45153,
- 45159
+ 34511,
+ 34526
],
"loc": {
"start": {
- "line": 1198,
- "column": 38
- },
- "end": {
- "line": 1198,
- "column": 44
- }
- }
- },
- "range": [
- 45148,
- 45159
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 33
- },
- "end": {
- "line": 1198,
- "column": 44
- }
- }
- },
- "range": [
- 45146,
- 45159
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 31
- },
- "end": {
- "line": 1198,
- "column": 44
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 45161,
- 45162
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 46
- },
- "end": {
- "line": 1198,
- "column": 47
- }
- }
- },
- "prefix": false,
- "range": [
- 45161,
- 45164
- ],
- "loc": {
- "start": {
- "line": 1198,
- "column": 46
- },
- "end": {
- "line": 1198,
- "column": 49
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 45207,
- 45211
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 12
- },
- "end": {
- "line": 1200,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validateRow",
- "range": [
- 45212,
- 45223
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 17
- },
- "end": {
- "line": 1200,
- "column": 28
- }
- }
- },
- "range": [
- 45207,
- 45223
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 12
- },
- "end": {
- "line": 1200,
- "column": 28
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 45224,
- 45225
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 29
- },
- "end": {
- "line": 1200,
- "column": 30
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 45227,
- 45231
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 32
- },
- "end": {
- "line": 1200,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 45207,
- 45232
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 12
- },
- "end": {
- "line": 1200,
- "column": 37
- }
- }
- },
- "range": [
- 45207,
- 45233
- ],
- "loc": {
- "start": {
- "line": 1200,
- "column": 12
- },
- "end": {
- "line": 1200,
- "column": 38
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " validate row",
- "range": [
- 45179,
- 45194
- ],
- "loc": {
- "start": {
- "line": 1199,
- "column": 12
- },
- "end": {
- "line": 1199,
- "column": 27
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "removes alternating colors",
- "range": [
- 45247,
- 45275
- ],
- "loc": {
- "start": {
- "line": 1202,
- "column": 12
- },
- "end": {
- "line": 1202,
- "column": 40
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 45291,
- 45295
- ],
- "loc": {
- "start": {
- "line": 1203,
- "column": 15
- },
- "end": {
- "line": 1203,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 45296,
- 45309
- ],
- "loc": {
- "start": {
- "line": 1203,
- "column": 20
- },
- "end": {
- "line": 1203,
- "column": 33
- }
- }
- },
- "range": [
- 45291,
- 45309
- ],
- "loc": {
- "start": {
- "line": 1203,
- "column": 15
- },
- "end": {
- "line": 1203,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 45328,
- 45331
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 16
- },
- "end": {
- "line": 1204,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 45332,
- 45345
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 20
- },
- "end": {
- "line": 1204,
- "column": 33
- }
- }
- },
- "range": [
- 45328,
- 45345
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 16
- },
- "end": {
- "line": 1204,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeRowBg",
- "range": [
- 45346,
- 45357
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 34
- },
- "end": {
- "line": 1204,
- "column": 45
- }
- }
- },
- "range": [
- 45328,
- 45357
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 16
- },
- "end": {
- "line": 1204,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 45358,
- 45359
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 46
- },
- "end": {
- "line": 1204,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 45328,
- 45360
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 16
- },
- "end": {
- "line": 1204,
- "column": 48
- }
- }
- },
- "range": [
- 45328,
- 45361
- ],
- "loc": {
- "start": {
- "line": 1204,
- "column": 16
- },
- "end": {
- "line": 1204,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 45310,
- 45375
- ],
- "loc": {
- "start": {
- "line": 1203,
- "column": 34
- },
- "end": {
- "line": 1205,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 45288,
- 45375
- ],
- "loc": {
- "start": {
- "line": 1203,
- "column": 12
- },
- "end": {
- "line": 1205,
+ "line": 962,
"column": 13
+ },
+ "end": {
+ "line": 962,
+ "column": 28
}
+ }
+ },
+ "range": [
+ 34506,
+ 34526
+ ],
+ "loc": {
+ "start": {
+ "line": 962,
+ "column": 8
},
- "leadingComments": [
- {
- "type": "Line",
- "value": "removes alternating colors",
- "range": [
- 45247,
- 45275
- ],
- "loc": {
- "start": {
- "line": 1202,
- "column": 12
- },
- "end": {
- "line": 1202,
- "column": 40
- }
- }
- }
- ]
+ "end": {
+ "line": 962,
+ "column": 28
+ }
}
- ],
+ },
+ "arguments": [],
"range": [
- 45165,
- 45386
+ 34506,
+ 34528
],
"loc": {
"start": {
- "line": 1198,
- "column": 50
+ "line": 962,
+ "column": 8
},
"end": {
- "line": 1207,
- "column": 9
+ "line": 962,
+ "column": 30
}
}
},
"range": [
- 45123,
- 45386
+ 34506,
+ 34529
],
"loc": {
"start": {
- "line": 1198,
+ "line": 962,
"column": 8
},
"end": {
- "line": 1207,
- "column": 9
+ "line": 962,
+ "column": 31
}
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "for j",
- "range": [
- 45386,
- 45393
- ],
- "loc": {
- "start": {
- "line": 1207,
- "column": 9
- },
- "end": {
- "line": 1207,
- "column": 16
- }
- }
- }
- ]
+ }
},
{
"type": "IfStatement",
@@ -101980,16 +80832,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45406,
- 45410
+ 34542,
+ 34546
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 11
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 15
}
}
@@ -101998,31 +80850,31 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 45411,
- 45418
+ 34547,
+ 34554
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 16
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 23
}
}
},
"range": [
- 45406,
- 45418
+ 34542,
+ 34554
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 11
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 23
}
}
@@ -102036,16 +80888,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45423,
- 45427
+ 34559,
+ 34563
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 28
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 32
}
}
@@ -102054,62 +80906,62 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 45428,
- 45438
+ 34564,
+ 34574
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 33
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 43
}
}
},
"range": [
- 45423,
- 45438
+ 34559,
+ 34574
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 28
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 43
}
}
},
"prefix": true,
"range": [
- 45422,
- 45438
+ 34558,
+ 34574
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 27
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 43
}
}
},
"range": [
- 45406,
- 45438
+ 34542,
+ 34574
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 11
},
"end": {
- "line": 1209,
+ "line": 964,
"column": 43
}
}
@@ -102128,16 +80980,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45453,
- 45457
+ 34589,
+ 34593
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 12
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 16
}
}
@@ -102146,31 +80998,31 @@
"type": "Identifier",
"name": "fltGridEl",
"range": [
- 45458,
- 45467
+ 34594,
+ 34603
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 17
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 26
}
}
},
"range": [
- 45453,
- 45467
+ 34589,
+ 34603
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 12
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 26
}
}
@@ -102182,16 +81034,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 45470,
- 45474
+ 34606,
+ 34610
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 29
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 33
}
}
@@ -102202,16 +81054,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45475,
- 45479
+ 34611,
+ 34615
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 34
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 38
}
}
@@ -102220,76 +81072,76 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 45480,
- 45495
+ 34616,
+ 34631
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 39
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 54
}
}
},
"range": [
- 45475,
- 45495
+ 34611,
+ 34631
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 34
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 54
}
}
},
"range": [
- 45470,
- 45496
+ 34606,
+ 34632
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 29
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 55
}
}
},
"range": [
- 45453,
- 45496
+ 34589,
+ 34632
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 12
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 55
}
}
},
"range": [
- 45453,
- 45497
+ 34589,
+ 34633
],
"loc": {
"start": {
- "line": 1210,
+ "line": 965,
"column": 12
},
"end": {
- "line": 1210,
+ "line": 965,
"column": 56
}
}
@@ -102307,16 +81159,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45510,
- 45514
+ 34646,
+ 34650
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 12
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 16
}
}
@@ -102325,31 +81177,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 45515,
- 45518
+ 34651,
+ 34654
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 17
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 20
}
}
},
"range": [
- 45510,
- 45518
+ 34646,
+ 34654
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 12
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 20
}
}
@@ -102358,31 +81210,31 @@
"type": "Identifier",
"name": "deleteRow",
"range": [
- 45519,
- 45528
+ 34655,
+ 34664
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 21
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 30
}
}
},
"range": [
- 45510,
- 45528
+ 34646,
+ 34664
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 12
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 30
}
}
@@ -102394,16 +81246,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45529,
- 45533
+ 34665,
+ 34669
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 31
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 35
}
}
@@ -102412,113 +81264,259 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 45534,
- 45549
+ 34670,
+ 34685
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 36
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 51
}
}
},
"range": [
- 45529,
- 45549
+ 34665,
+ 34685
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 31
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 51
}
}
}
],
"range": [
- 45510,
- 45550
+ 34646,
+ 34686
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 12
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 52
}
}
},
"range": [
- 45510,
- 45551
+ 34646,
+ 34687
],
"loc": {
"start": {
- "line": 1211,
+ "line": 966,
"column": 12
},
"end": {
- "line": 1211,
+ "line": 966,
"column": 53
}
}
}
],
"range": [
- 45439,
- 45561
+ 34575,
+ 34697
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 44
},
"end": {
- "line": 1212,
+ "line": 967,
"column": 9
}
}
},
"alternate": null,
"range": [
- 45403,
- 45561
+ 34539,
+ 34697
],
"loc": {
"start": {
- "line": 1209,
+ "line": 964,
"column": 8
},
"end": {
- "line": 1212,
+ "line": 967,
"column": 9
}
},
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " broadcast destroy event",
+ "range": [
+ 34707,
+ 34733
+ ],
+ "loc": {
+ "start": {
+ "line": 969,
+ "column": 8
+ },
+ "end": {
+ "line": 969,
+ "column": 34
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 34742,
+ 34749
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 8
+ },
+ "end": {
+ "line": 970,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 34750,
+ 34754
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 16
+ },
+ "end": {
+ "line": 970,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 34742,
+ 34754
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 8
+ },
+ "end": {
+ "line": 970,
+ "column": 20
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "destroy",
+ "raw": "'destroy'",
+ "range": [
+ 34755,
+ 34764
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 21
+ },
+ "end": {
+ "line": 970,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 34766,
+ 34770
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 32
+ },
+ "end": {
+ "line": 970,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "range": [
+ 34742,
+ 34771
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 8
+ },
+ "end": {
+ "line": 970,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 34742,
+ 34772
+ ],
+ "loc": {
+ "start": {
+ "line": 970,
+ "column": 8
+ },
+ "end": {
+ "line": 970,
+ "column": 38
+ }
+ },
"leadingComments": [
{
"type": "Line",
- "value": "for j",
+ "value": " broadcast destroy event",
"range": [
- 45386,
- 45393
+ 34707,
+ 34733
],
"loc": {
"start": {
- "line": 1207,
- "column": 9
+ "line": 969,
+ "column": 8
},
"end": {
- "line": 1207,
- "column": 16
+ "line": 969,
+ "column": 34
}
}
}
@@ -102528,19 +81526,37 @@
"type": "Line",
"value": " Destroy modules",
"range": [
- 45571,
- 45589
+ 34782,
+ 34800
],
"loc": {
"start": {
- "line": 1214,
+ "line": 972,
"column": 8
},
"end": {
- "line": 1214,
+ "line": 972,
"column": 26
}
}
+ },
+ {
+ "type": "Line",
+ "value": " TODO: subcribe modules to destroy event instead",
+ "range": [
+ 34809,
+ 34859
+ ],
+ "loc": {
+ "start": {
+ "line": 973,
+ "column": 8
+ },
+ "end": {
+ "line": 973,
+ "column": 58
+ }
+ }
}
]
},
@@ -102560,16 +81576,16 @@
"type": "Identifier",
"name": "Object",
"range": [
- 45598,
- 45604
+ 34868,
+ 34874
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 14
}
}
@@ -102578,31 +81594,31 @@
"type": "Identifier",
"name": "keys",
"range": [
- 45605,
- 45609
+ 34875,
+ 34879
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 15
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 19
}
}
},
"range": [
- 45598,
- 45609
+ 34868,
+ 34879
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 19
}
}
@@ -102612,32 +81628,32 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 45610,
- 45613
+ 34880,
+ 34883
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 20
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 23
}
}
}
],
"range": [
- 45598,
- 45614
+ 34868,
+ 34884
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 24
}
}
@@ -102646,31 +81662,31 @@
"type": "Identifier",
"name": "forEach",
"range": [
- 45615,
- 45622
+ 34885,
+ 34892
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 25
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 32
}
}
},
"range": [
- 45598,
- 45622
+ 34868,
+ 34892
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 32
}
}
@@ -102684,16 +81700,16 @@
"type": "Identifier",
"name": "key",
"range": [
- 45632,
- 45635
+ 34902,
+ 34905
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 42
},
"end": {
- "line": 1215,
+ "line": 974,
"column": 45
}
}
@@ -102711,16 +81727,16 @@
"type": "Identifier",
"name": "feature",
"range": [
- 45655,
- 45662
+ 34924,
+ 34931
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 16
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 23
}
}
@@ -102732,16 +81748,16 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 45665,
- 45668
+ 34934,
+ 34937
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 26
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 29
}
}
@@ -102750,46 +81766,46 @@
"type": "Identifier",
"name": "key",
"range": [
- 45669,
- 45672
+ 34938,
+ 34941
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 30
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 33
}
}
},
"range": [
- 45665,
- 45673
+ 34934,
+ 34942
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 26
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 34
}
}
},
"range": [
- 45655,
- 45673
+ 34924,
+ 34942
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 16
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 34
}
}
@@ -102797,16 +81813,16 @@
],
"kind": "var",
"range": [
- 45651,
- 45674
+ 34920,
+ 34943
],
"loc": {
"start": {
- "line": 1216,
+ "line": 975,
"column": 12
},
"end": {
- "line": 1216,
+ "line": 975,
"column": 35
}
}
@@ -102820,16 +81836,16 @@
"type": "Identifier",
"name": "feature",
"range": [
- 45690,
- 45697
+ 34959,
+ 34966
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 15
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 22
}
}
@@ -102843,16 +81859,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 45701,
- 45706
+ 34970,
+ 34975
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 26
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 31
}
}
@@ -102861,31 +81877,31 @@
"type": "Identifier",
"name": "isFn",
"range": [
- 45707,
- 45711
+ 34976,
+ 34980
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 32
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 36
}
}
},
"range": [
- 45701,
- 45711
+ 34970,
+ 34980
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 26
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 36
}
}
@@ -102898,16 +81914,16 @@
"type": "Identifier",
"name": "feature",
"range": [
- 45712,
- 45719
+ 34981,
+ 34988
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 37
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 44
}
}
@@ -102916,62 +81932,62 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 45720,
- 45727
+ 34989,
+ 34996
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 45
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 52
}
}
},
"range": [
- 45712,
- 45727
+ 34981,
+ 34996
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 37
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 52
}
}
}
],
"range": [
- 45701,
- 45728
+ 34970,
+ 34997
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 26
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 53
}
}
},
"range": [
- 45690,
- 45728
+ 34959,
+ 34997
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 15
},
"end": {
- "line": 1217,
+ "line": 976,
"column": 53
}
}
@@ -102990,16 +82006,16 @@
"type": "Identifier",
"name": "feature",
"range": [
- 45747,
- 45754
+ 35016,
+ 35023
],
"loc": {
"start": {
- "line": 1218,
+ "line": 977,
"column": 16
},
"end": {
- "line": 1218,
+ "line": 977,
"column": 23
}
}
@@ -103008,110 +82024,110 @@
"type": "Identifier",
"name": "destroy",
"range": [
- 45755,
- 45762
+ 35024,
+ 35031
],
"loc": {
"start": {
- "line": 1218,
+ "line": 977,
"column": 24
},
"end": {
- "line": 1218,
+ "line": 977,
"column": 31
}
}
},
"range": [
- 45747,
- 45762
+ 35016,
+ 35031
],
"loc": {
"start": {
- "line": 1218,
+ "line": 977,
"column": 16
},
"end": {
- "line": 1218,
+ "line": 977,
"column": 31
}
}
},
"arguments": [],
"range": [
- 45747,
- 45764
+ 35016,
+ 35033
],
"loc": {
"start": {
- "line": 1218,
+ "line": 977,
"column": 16
},
"end": {
- "line": 1218,
+ "line": 977,
"column": 33
}
}
},
"range": [
- 45747,
- 45765
+ 35016,
+ 35034
],
"loc": {
"start": {
- "line": 1218,
+ "line": 977,
"column": 16
},
"end": {
- "line": 1218,
+ "line": 977,
"column": 34
}
}
}
],
"range": [
- 45729,
- 45779
+ 34998,
+ 35048
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 54
},
"end": {
- "line": 1219,
+ "line": 978,
"column": 13
}
}
},
"alternate": null,
"range": [
- 45687,
- 45779
+ 34956,
+ 35048
],
"loc": {
"start": {
- "line": 1217,
+ "line": 976,
"column": 12
},
"end": {
- "line": 1219,
+ "line": 978,
"column": 13
}
}
}
],
"range": [
- 45637,
- 45789
+ 34906,
+ 35058
],
"loc": {
"start": {
- "line": 1215,
- "column": 47
+ "line": 974,
+ "column": 46
},
"end": {
- "line": 1220,
+ "line": 979,
"column": 9
}
}
@@ -103119,47 +82135,47 @@
"generator": false,
"expression": false,
"range": [
- 45623,
- 45789
+ 34893,
+ 35058
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 33
},
"end": {
- "line": 1220,
+ "line": 979,
"column": 9
}
}
}
],
"range": [
- 45598,
- 45790
+ 34868,
+ 35059
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1220,
+ "line": 979,
"column": 10
}
}
},
"range": [
- 45598,
- 45791
+ 34868,
+ 35060
],
"loc": {
"start": {
- "line": 1215,
+ "line": 974,
"column": 8
},
"end": {
- "line": 1220,
+ "line": 979,
"column": 11
}
},
@@ -103168,22 +82184,700 @@
"type": "Line",
"value": " Destroy modules",
"range": [
- 45571,
- 45589
+ 34782,
+ 34800
],
"loc": {
"start": {
- "line": 1214,
+ "line": 972,
"column": 8
},
"end": {
- "line": 1214,
+ "line": 972,
"column": 26
}
}
+ },
+ {
+ "type": "Line",
+ "value": " TODO: subcribe modules to destroy event instead",
+ "range": [
+ 34809,
+ 34859
+ ],
+ "loc": {
+ "start": {
+ "line": 973,
+ "column": 8
+ },
+ "end": {
+ "line": 973,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 35070,
+ 35094
+ ],
+ "loc": {
+ "start": {
+ "line": 981,
+ "column": 8
+ },
+ "end": {
+ "line": 981,
+ "column": 32
+ }
+ }
}
]
},
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 35106,
+ 35110
+ ],
+ "loc": {
+ "start": {
+ "line": 982,
+ "column": 11
+ },
+ "end": {
+ "line": 982,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasVisibleRows",
+ "range": [
+ 35111,
+ 35125
+ ],
+ "loc": {
+ "start": {
+ "line": 982,
+ "column": 16
+ },
+ "end": {
+ "line": 982,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 35106,
+ 35125
+ ],
+ "loc": {
+ "start": {
+ "line": 982,
+ "column": 11
+ },
+ "end": {
+ "line": 982,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 35140,
+ 35147
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 12
+ },
+ "end": {
+ "line": 983,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 35148,
+ 35151
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 20
+ },
+ "end": {
+ "line": 983,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 35140,
+ 35151
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 12
+ },
+ "end": {
+ "line": 983,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 35153,
+ 35170
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 25
+ },
+ "end": {
+ "line": 983,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 35152,
+ 35171
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 24
+ },
+ "end": {
+ "line": 983,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 35178,
+ 35182
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 50
+ },
+ "end": {
+ "line": 983,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "enforceVisibility",
+ "range": [
+ 35183,
+ 35200
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 55
+ },
+ "end": {
+ "line": 983,
+ "column": 72
+ }
+ }
+ },
+ "range": [
+ 35178,
+ 35200
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 50
+ },
+ "end": {
+ "line": 983,
+ "column": 72
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 35178,
+ 35202
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 50
+ },
+ "end": {
+ "line": 983,
+ "column": 74
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 35173,
+ 35202
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 45
+ },
+ "end": {
+ "line": 983,
+ "column": 74
+ }
+ }
+ }
+ ],
+ "range": [
+ 35140,
+ 35203
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 12
+ },
+ "end": {
+ "line": 983,
+ "column": 75
+ }
+ }
+ },
+ "range": [
+ 35140,
+ 35204
+ ],
+ "loc": {
+ "start": {
+ "line": 983,
+ "column": 12
+ },
+ "end": {
+ "line": 983,
+ "column": 76
+ }
+ }
+ }
+ ],
+ "range": [
+ 35126,
+ 35214
+ ],
+ "loc": {
+ "start": {
+ "line": 982,
+ "column": 31
+ },
+ "end": {
+ "line": 984,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 35103,
+ 35214
+ ],
+ "loc": {
+ "start": {
+ "line": 982,
+ "column": 8
+ },
+ "end": {
+ "line": 984,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 35070,
+ 35094
+ ],
+ "loc": {
+ "start": {
+ "line": 981,
+ "column": 8
+ },
+ "end": {
+ "line": 981,
+ "column": 32
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 35226,
+ 35230
+ ],
+ "loc": {
+ "start": {
+ "line": 985,
+ "column": 11
+ },
+ "end": {
+ "line": 985,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkedFilters",
+ "range": [
+ 35231,
+ 35244
+ ],
+ "loc": {
+ "start": {
+ "line": 985,
+ "column": 16
+ },
+ "end": {
+ "line": 985,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 35226,
+ 35244
+ ],
+ "loc": {
+ "start": {
+ "line": 985,
+ "column": 11
+ },
+ "end": {
+ "line": 985,
+ "column": 29
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 35259,
+ 35266
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 12
+ },
+ "end": {
+ "line": 986,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "off",
+ "range": [
+ 35267,
+ 35270
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 20
+ },
+ "end": {
+ "line": 986,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 35259,
+ 35270
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 12
+ },
+ "end": {
+ "line": 986,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "ArrayExpression",
+ "elements": [
+ {
+ "type": "Literal",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
+ "range": [
+ 35272,
+ 35289
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 25
+ },
+ "end": {
+ "line": 986,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 35271,
+ 35290
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 24
+ },
+ "end": {
+ "line": 986,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 35297,
+ 35301
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 50
+ },
+ "end": {
+ "line": 986,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkFilters",
+ "range": [
+ 35302,
+ 35313
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 55
+ },
+ "end": {
+ "line": 986,
+ "column": 66
+ }
+ }
+ },
+ "range": [
+ 35297,
+ 35313
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 50
+ },
+ "end": {
+ "line": 986,
+ "column": 66
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 35297,
+ 35315
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 50
+ },
+ "end": {
+ "line": 986,
+ "column": 68
+ }
+ }
+ },
+ "generator": false,
+ "expression": true,
+ "range": [
+ 35292,
+ 35315
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 45
+ },
+ "end": {
+ "line": 986,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "range": [
+ 35259,
+ 35316
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 12
+ },
+ "end": {
+ "line": 986,
+ "column": 69
+ }
+ }
+ },
+ "range": [
+ 35259,
+ 35317
+ ],
+ "loc": {
+ "start": {
+ "line": 986,
+ "column": 12
+ },
+ "end": {
+ "line": 986,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 35245,
+ 35327
+ ],
+ "loc": {
+ "start": {
+ "line": 985,
+ "column": 30
+ },
+ "end": {
+ "line": 987,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 35223,
+ 35327
+ ],
+ "loc": {
+ "start": {
+ "line": 985,
+ "column": 8
+ },
+ "end": {
+ "line": 987,
+ "column": 9
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -103195,16 +82889,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 45801,
- 45804
+ 35337,
+ 35340
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 8
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 11
}
}
@@ -103213,31 +82907,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 45805,
- 45816
+ 35341,
+ 35352
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 12
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 23
}
}
},
"range": [
- 45801,
- 45816
+ 35337,
+ 35352
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 8
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 23
}
}
@@ -103249,16 +82943,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45817,
- 45821
+ 35353,
+ 35357
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 24
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 28
}
}
@@ -103267,31 +82961,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 45822,
- 45825
+ 35358,
+ 35361
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 29
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 32
}
}
},
"range": [
- 45817,
- 45825
+ 35353,
+ 35361
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 24
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 32
}
}
@@ -103302,16 +82996,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45827,
- 45831
+ 35363,
+ 35367
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 34
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 38
}
}
@@ -103320,62 +83014,62 @@
"type": "Identifier",
"name": "prfxTf",
"range": [
- 45832,
- 45838
+ 35368,
+ 35374
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 39
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 45
}
}
},
"range": [
- 45827,
- 45838
+ 35363,
+ 35374
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 34
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 45
}
}
}
],
"range": [
- 45801,
- 45839
+ 35337,
+ 35375
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 8
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 46
}
}
},
"range": [
- 45801,
- 45840
+ 35337,
+ 35376
],
"loc": {
"start": {
- "line": 1222,
+ "line": 989,
"column": 8
},
"end": {
- "line": 1222,
+ "line": 989,
"column": 47
}
}
@@ -103391,16 +83085,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45849,
- 45853
+ 35385,
+ 35389
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 8
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 12
}
}
@@ -103409,31 +83103,31 @@
"type": "Identifier",
"name": "nbHiddenRows",
"range": [
- 45854,
- 45866
+ 35390,
+ 35402
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 13
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 25
}
}
},
"range": [
- 45849,
- 45866
+ 35385,
+ 35402
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 8
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 25
}
}
@@ -103443,46 +83137,46 @@
"value": 0,
"raw": "0",
"range": [
- 45869,
- 45870
+ 35405,
+ 35406
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 28
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 29
}
}
},
"range": [
- 45849,
- 45870
+ 35385,
+ 35406
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 8
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 29
}
}
},
"range": [
- 45849,
- 45871
+ 35385,
+ 35407
],
"loc": {
"start": {
- "line": 1223,
+ "line": 990,
"column": 8
},
"end": {
- "line": 1223,
+ "line": 990,
"column": 30
}
}
@@ -103498,16 +83192,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45880,
- 45884
+ 35416,
+ 35420
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 8
},
"end": {
- "line": 1224,
+ "line": 991,
"column": 12
}
}
@@ -103516,81 +83210,80 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 45885,
- 45899
+ 35421,
+ 35435
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 13
},
"end": {
- "line": 1224,
+ "line": 991,
"column": 27
}
}
},
"range": [
- 45880,
- 45899
+ 35416,
+ 35435
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 8
},
"end": {
- "line": 1224,
+ "line": 991,
"column": 27
}
}
},
"right": {
- "type": "Literal",
- "value": null,
- "raw": "null",
+ "type": "ArrayExpression",
+ "elements": [],
"range": [
- 45902,
- 45906
+ 35438,
+ 35440
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 30
},
"end": {
- "line": 1224,
- "column": 34
+ "line": 991,
+ "column": 32
}
}
},
"range": [
- 45880,
- 45906
+ 35416,
+ 35440
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 8
},
"end": {
- "line": 1224,
- "column": 34
+ "line": 991,
+ "column": 32
}
}
},
"range": [
- 45880,
- 45907
+ 35416,
+ 35441
],
"loc": {
"start": {
- "line": 1224,
+ "line": 991,
"column": 8
},
"end": {
- "line": 1224,
- "column": 35
+ "line": 991,
+ "column": 33
}
}
},
@@ -103605,16 +83298,122 @@
"object": {
"type": "ThisExpression",
"range": [
- 45916,
- 45920
+ 35450,
+ 35454
],
"loc": {
"start": {
- "line": 1225,
+ "line": 992,
"column": 8
},
"end": {
- "line": 1225,
+ "line": 992,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltIds",
+ "range": [
+ 35455,
+ 35461
+ ],
+ "loc": {
+ "start": {
+ "line": 992,
+ "column": 13
+ },
+ "end": {
+ "line": 992,
+ "column": 19
+ }
+ }
+ },
+ "range": [
+ 35450,
+ 35461
+ ],
+ "loc": {
+ "start": {
+ "line": 992,
+ "column": 8
+ },
+ "end": {
+ "line": 992,
+ "column": 19
+ }
+ }
+ },
+ "right": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 35464,
+ 35466
+ ],
+ "loc": {
+ "start": {
+ "line": 992,
+ "column": 22
+ },
+ "end": {
+ "line": 992,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 35450,
+ 35466
+ ],
+ "loc": {
+ "start": {
+ "line": 992,
+ "column": 8
+ },
+ "end": {
+ "line": 992,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 35450,
+ 35467
+ ],
+ "loc": {
+ "start": {
+ "line": 992,
+ "column": 8
+ },
+ "end": {
+ "line": 992,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 35476,
+ 35480
+ ],
+ "loc": {
+ "start": {
+ "line": 993,
+ "column": 8
+ },
+ "end": {
+ "line": 993,
"column": 12
}
}
@@ -103623,31 +83422,31 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 45921,
- 45930
+ 35481,
+ 35490
],
"loc": {
"start": {
- "line": 1225,
+ "line": 993,
"column": 13
},
"end": {
- "line": 1225,
+ "line": 993,
"column": 22
}
}
},
"range": [
- 45916,
- 45930
+ 35476,
+ 35490
],
"loc": {
"start": {
- "line": 1225,
+ "line": 993,
"column": 8
},
"end": {
- "line": 1225,
+ "line": 993,
"column": 22
}
}
@@ -103657,46 +83456,46 @@
"value": null,
"raw": "null",
"range": [
- 45933,
- 45937
+ 35493,
+ 35497
],
"loc": {
"start": {
- "line": 1225,
+ "line": 993,
"column": 25
},
"end": {
- "line": 1225,
+ "line": 993,
"column": 29
}
}
},
"range": [
- 45916,
- 45937
+ 35476,
+ 35497
],
"loc": {
"start": {
- "line": 1225,
+ "line": 993,
"column": 8
},
"end": {
- "line": 1225,
+ "line": 993,
"column": 29
}
}
},
"range": [
- 45916,
- 45938
+ 35476,
+ 35498
],
"loc": {
"start": {
- "line": 1225,
+ "line": 993,
"column": 8
},
"end": {
- "line": 1225,
+ "line": 993,
"column": 30
}
}
@@ -103712,16 +83511,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 45947,
- 45951
+ 35507,
+ 35511
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 8
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 12
}
}
@@ -103730,31 +83529,31 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 45952,
- 45960
+ 35512,
+ 35520
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 13
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 21
}
}
},
"range": [
- 45947,
- 45960
+ 35507,
+ 35520
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 8
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 21
}
}
@@ -103764,46 +83563,46 @@
"value": false,
"raw": "false",
"range": [
- 45963,
- 45968
+ 35523,
+ 35528
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 24
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 29
}
}
},
"range": [
- 45947,
- 45968
+ 35507,
+ 35528
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 8
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 29
}
}
},
"range": [
- 45947,
- 45969
+ 35507,
+ 35529
],
"loc": {
"start": {
- "line": 1226,
+ "line": 994,
"column": 8
},
"end": {
- "line": 1226,
+ "line": 994,
"column": 30
}
}
@@ -103819,114 +83618,114 @@
"object": {
"type": "ThisExpression",
"range": [
- 45978,
- 45982
+ 35538,
+ 35542
],
"loc": {
"start": {
- "line": 1227,
+ "line": 995,
"column": 8
},
"end": {
- "line": 1227,
+ "line": 995,
"column": 12
}
}
},
"property": {
"type": "Identifier",
- "name": "tbl",
+ "name": "initialized",
"range": [
- 45983,
- 45986
+ 35543,
+ 35554
],
"loc": {
"start": {
- "line": 1227,
+ "line": 995,
"column": 13
},
"end": {
- "line": 1227,
- "column": 16
+ "line": 995,
+ "column": 24
}
}
},
"range": [
- 45978,
- 45986
+ 35538,
+ 35554
],
"loc": {
"start": {
- "line": 1227,
+ "line": 995,
"column": 8
},
"end": {
- "line": 1227,
- "column": 16
+ "line": 995,
+ "column": 24
}
}
},
"right": {
"type": "Literal",
- "value": null,
- "raw": "null",
+ "value": false,
+ "raw": "false",
"range": [
- 45989,
- 45993
+ 35557,
+ 35562
],
"loc": {
"start": {
- "line": 1227,
- "column": 19
+ "line": 995,
+ "column": 27
},
"end": {
- "line": 1227,
- "column": 23
+ "line": 995,
+ "column": 32
}
}
},
"range": [
- 45978,
- 45993
+ 35538,
+ 35562
],
"loc": {
"start": {
- "line": 1227,
+ "line": 995,
"column": 8
},
"end": {
- "line": 1227,
- "column": 23
+ "line": 995,
+ "column": 32
}
}
},
"range": [
- 45978,
- 45994
+ 35538,
+ 35563
],
"loc": {
"start": {
- "line": 1227,
+ "line": 995,
"column": 8
},
"end": {
- "line": 1227,
- "column": 24
+ "line": 995,
+ "column": 33
}
}
}
],
"range": [
- 44526,
- 46000
+ 33811,
+ 35569
],
"loc": {
"start": {
- "line": 1173,
+ "line": 938,
"column": 13
},
"end": {
- "line": 1228,
+ "line": 996,
"column": 5
}
}
@@ -103934,16 +83733,16 @@
"generator": false,
"expression": false,
"range": [
- 44524,
- 46000
+ 33809,
+ 35569
],
"loc": {
"start": {
- "line": 1173,
+ "line": 938,
"column": 11
},
"end": {
- "line": 1228,
+ "line": 996,
"column": 5
}
}
@@ -103951,16 +83750,16 @@
"kind": "method",
"computed": false,
"range": [
- 44517,
- 46000
+ 33802,
+ 35569
],
"loc": {
"start": {
- "line": 1173,
+ "line": 938,
"column": 4
},
"end": {
- "line": 1228,
+ "line": 996,
"column": 5
}
},
@@ -103969,16 +83768,16 @@
"type": "Block",
"value": "*\n * Destroy filter grid\n ",
"range": [
- 44474,
- 44512
+ 33759,
+ 33797
],
"loc": {
"start": {
- "line": 1170,
+ "line": 935,
"column": 4
},
"end": {
- "line": 1172,
+ "line": 937,
"column": 7
}
}
@@ -103989,16 +83788,16 @@
"type": "Block",
"value": "*\n * Generate container element for paging, reset button, rows counter etc.\n ",
"range": [
- 46006,
- 46095
+ 35575,
+ 35664
],
"loc": {
"start": {
- "line": 1230,
+ "line": 998,
"column": 4
},
"end": {
- "line": 1232,
+ "line": 1000,
"column": 7
}
}
@@ -104012,16 +83811,16 @@
"type": "Identifier",
"name": "setToolbar",
"range": [
- 46100,
- 46110
+ 35669,
+ 35679
],
"loc": {
"start": {
- "line": 1233,
+ "line": 1001,
"column": 4
},
"end": {
- "line": 1233,
+ "line": 1001,
"column": 14
}
}
@@ -104041,16 +83840,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46125,
- 46129
+ 35694,
+ 35698
],
"loc": {
"start": {
- "line": 1234,
+ "line": 1002,
"column": 11
},
"end": {
- "line": 1234,
+ "line": 1002,
"column": 15
}
}
@@ -104059,31 +83858,31 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 46130,
- 46136
+ 35699,
+ 35705
],
"loc": {
"start": {
- "line": 1234,
+ "line": 1002,
"column": 16
},
"end": {
- "line": 1234,
+ "line": 1002,
"column": 22
}
}
},
"range": [
- 46125,
- 46136
+ 35694,
+ 35705
],
"loc": {
"start": {
- "line": 1234,
+ "line": 1002,
"column": 11
},
"end": {
- "line": 1234,
+ "line": 1002,
"column": 22
}
}
@@ -104095,48 +83894,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 46151,
- 46158
+ 35720,
+ 35727
],
"loc": {
"start": {
- "line": 1235,
+ "line": 1003,
"column": 12
},
"end": {
- "line": 1235,
+ "line": 1003,
"column": 19
}
}
}
],
"range": [
- 46137,
- 46168
+ 35706,
+ 35737
],
"loc": {
"start": {
- "line": 1234,
+ "line": 1002,
"column": 23
},
"end": {
- "line": 1236,
+ "line": 1004,
"column": 9
}
}
},
"alternate": null,
"range": [
- 46122,
- 46168
+ 35691,
+ 35737
],
"loc": {
"start": {
- "line": 1234,
+ "line": 1002,
"column": 8
},
"end": {
- "line": 1236,
+ "line": 1004,
"column": 9
}
},
@@ -104145,16 +83944,16 @@
"type": "Block",
"value": "** container div **",
"range": [
- 46178,
- 46201
+ 35747,
+ 35770
],
"loc": {
"start": {
- "line": 1238,
+ "line": 1006,
"column": 8
},
"end": {
- "line": 1238,
+ "line": 1006,
"column": 31
}
}
@@ -104170,16 +83969,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46214,
- 46220
+ 35783,
+ 35789
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 12
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 18
}
}
@@ -104193,16 +83992,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 46223,
- 46226
+ 35792,
+ 35795
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 21
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 24
}
}
@@ -104211,31 +84010,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 46227,
- 46233
+ 35796,
+ 35802
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 25
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 31
}
}
},
"range": [
- 46223,
- 46233
+ 35792,
+ 35802
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 21
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 31
}
}
@@ -104246,16 +84045,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 46234,
- 46239
+ 35803,
+ 35808
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 32
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 37
}
}
@@ -104268,16 +84067,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 46242,
- 46246
+ 35811,
+ 35815
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 40
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 44
}
}
@@ -104291,16 +84090,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46248,
- 46252
+ 35817,
+ 35821
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 46
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 50
}
}
@@ -104309,31 +84108,31 @@
"type": "Identifier",
"name": "prfxInfDiv",
"range": [
- 46253,
- 46263
+ 35822,
+ 35832
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 51
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 61
}
}
},
"range": [
- 46248,
- 46263
+ 35817,
+ 35832
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 46
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 61
}
}
@@ -104344,16 +84143,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46264,
- 46268
+ 35833,
+ 35837
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 62
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 66
}
}
@@ -104362,93 +84161,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 46269,
- 46271
+ 35838,
+ 35840
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 67
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 69
}
}
},
"range": [
- 46264,
- 46271
+ 35833,
+ 35840
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 62
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 69
}
}
},
"range": [
- 46248,
- 46271
+ 35817,
+ 35840
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 46
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 69
}
}
}
],
"range": [
- 46241,
- 46272
+ 35810,
+ 35841
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 39
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 70
}
}
}
],
"range": [
- 46223,
- 46273
+ 35792,
+ 35842
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 21
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 71
}
}
},
"range": [
- 46214,
- 46273
+ 35783,
+ 35842
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 12
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 71
}
}
@@ -104456,16 +84255,16 @@
],
"kind": "let",
"range": [
- 46210,
- 46274
+ 35779,
+ 35843
],
"loc": {
"start": {
- "line": 1239,
+ "line": 1007,
"column": 8
},
"end": {
- "line": 1239,
+ "line": 1007,
"column": 72
}
},
@@ -104474,16 +84273,16 @@
"type": "Block",
"value": "** container div **",
"range": [
- 46178,
- 46201
+ 35747,
+ 35770
],
"loc": {
"start": {
- "line": 1238,
+ "line": 1006,
"column": 8
},
"end": {
- "line": 1238,
+ "line": 1006,
"column": 31
}
}
@@ -104502,16 +84301,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46283,
- 46289
+ 35852,
+ 35858
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 8
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 14
}
}
@@ -104520,31 +84319,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 46290,
- 46299
+ 35859,
+ 35868
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 15
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 24
}
}
},
"range": [
- 46283,
- 46299
+ 35852,
+ 35868
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 8
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 24
}
}
@@ -104555,16 +84354,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46302,
- 46306
+ 35871,
+ 35875
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 27
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 31
}
}
@@ -104573,61 +84372,61 @@
"type": "Identifier",
"name": "infDivCssClass",
"range": [
- 46307,
- 46321
+ 35876,
+ 35890
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 32
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 46
}
}
},
"range": [
- 46302,
- 46321
+ 35871,
+ 35890
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 27
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 46
}
}
},
"range": [
- 46283,
- 46321
+ 35852,
+ 35890
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 8
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 46
}
}
},
"range": [
- 46283,
- 46322
+ 35852,
+ 35891
],
"loc": {
"start": {
- "line": 1240,
+ "line": 1008,
"column": 8
},
"end": {
- "line": 1240,
+ "line": 1008,
"column": 47
}
},
@@ -104636,16 +84435,16 @@
"type": "Line",
"value": "custom container",
"range": [
- 46332,
- 46350
+ 35901,
+ 35919
],
"loc": {
"start": {
- "line": 1242,
+ "line": 1010,
"column": 8
},
"end": {
- "line": 1242,
+ "line": 1010,
"column": 26
}
}
@@ -104660,16 +84459,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46362,
- 46366
+ 35931,
+ 35935
],
"loc": {
"start": {
- "line": 1243,
+ "line": 1011,
"column": 11
},
"end": {
- "line": 1243,
+ "line": 1011,
"column": 15
}
}
@@ -104678,31 +84477,31 @@
"type": "Identifier",
"name": "toolBarTgtId",
"range": [
- 46367,
- 46379
+ 35936,
+ 35948
],
"loc": {
"start": {
- "line": 1243,
+ "line": 1011,
"column": 16
},
"end": {
- "line": 1243,
+ "line": 1011,
"column": 28
}
}
},
"range": [
- 46362,
- 46379
+ 35931,
+ 35948
],
"loc": {
"start": {
- "line": 1243,
+ "line": 1011,
"column": 11
},
"end": {
- "line": 1243,
+ "line": 1011,
"column": 28
}
}
@@ -104726,16 +84525,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 46394,
- 46397
+ 35963,
+ 35966
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 15
}
}
@@ -104744,31 +84543,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 46398,
- 46400
+ 35967,
+ 35969
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 16
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 18
}
}
},
"range": [
- 46394,
- 46400
+ 35963,
+ 35969
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 18
}
}
@@ -104780,16 +84579,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46401,
- 46405
+ 35970,
+ 35974
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 19
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 23
}
}
@@ -104798,47 +84597,47 @@
"type": "Identifier",
"name": "toolBarTgtId",
"range": [
- 46406,
- 46418
+ 35975,
+ 35987
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 24
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 36
}
}
},
"range": [
- 46401,
- 46418
+ 35970,
+ 35987
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 19
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 36
}
}
}
],
"range": [
- 46394,
- 46419
+ 35963,
+ 35988
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 37
}
}
@@ -104847,31 +84646,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 46420,
- 46431
+ 35989,
+ 36000
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 38
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 49
}
}
},
"range": [
- 46394,
- 46431
+ 35963,
+ 36000
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 49
}
}
@@ -104881,63 +84680,63 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46432,
- 46438
+ 36001,
+ 36007
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 50
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 56
}
}
}
],
"range": [
- 46394,
- 46439
+ 35963,
+ 36008
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 57
}
}
},
"range": [
- 46394,
- 46440
+ 35963,
+ 36009
],
"loc": {
"start": {
- "line": 1244,
+ "line": 1012,
"column": 12
},
"end": {
- "line": 1244,
+ "line": 1012,
"column": 58
}
}
}
],
"range": [
- 46380,
- 46450
+ 35949,
+ 36019
],
"loc": {
"start": {
- "line": 1243,
+ "line": 1011,
"column": 29
},
"end": {
- "line": 1245,
+ "line": 1013,
"column": 9
}
},
@@ -104946,16 +84745,16 @@
"type": "Line",
"value": "grid-layout",
"range": [
- 46459,
- 46472
+ 36028,
+ 36041
],
"loc": {
"start": {
- "line": 1246,
+ "line": 1014,
"column": 8
},
"end": {
- "line": 1246,
+ "line": 1014,
"column": 21
}
}
@@ -104970,16 +84769,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46489,
- 46493
+ 36058,
+ 36062
],
"loc": {
"start": {
- "line": 1247,
+ "line": 1015,
"column": 16
},
"end": {
- "line": 1247,
+ "line": 1015,
"column": 20
}
}
@@ -104988,31 +84787,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 46494,
- 46504
+ 36063,
+ 36073
],
"loc": {
"start": {
- "line": 1247,
+ "line": 1015,
"column": 21
},
"end": {
- "line": 1247,
+ "line": 1015,
"column": 31
}
}
},
"range": [
- 46489,
- 46504
+ 36058,
+ 36073
],
"loc": {
"start": {
- "line": 1247,
+ "line": 1015,
"column": 16
},
"end": {
- "line": 1247,
+ "line": 1015,
"column": 31
}
}
@@ -105029,16 +84828,16 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 46523,
- 46533
+ 36092,
+ 36102
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 16
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 26
}
}
@@ -105052,16 +84851,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46536,
- 46540
+ 36105,
+ 36109
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 29
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 33
}
}
@@ -105070,31 +84869,31 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 46541,
- 46544
+ 36110,
+ 36113
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 34
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 37
}
}
},
"range": [
- 46536,
- 46544
+ 36105,
+ 36113
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 29
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 37
}
}
@@ -105103,46 +84902,46 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 46545,
- 46555
+ 36114,
+ 36124
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 38
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 48
}
}
},
"range": [
- 46536,
- 46555
+ 36105,
+ 36124
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 29
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 48
}
}
},
"range": [
- 46523,
- 46555
+ 36092,
+ 36124
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 16
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 48
}
}
@@ -105150,16 +84949,16 @@
],
"kind": "let",
"range": [
- 46519,
- 46556
+ 36088,
+ 36125
],
"loc": {
"start": {
- "line": 1248,
+ "line": 1016,
"column": 12
},
"end": {
- "line": 1248,
+ "line": 1016,
"column": 49
}
}
@@ -105178,16 +84977,16 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 46569,
- 46579
+ 36138,
+ 36148
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 12
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 22
}
}
@@ -105196,31 +84995,31 @@
"type": "Identifier",
"name": "tblMainCont",
"range": [
- 46580,
- 46591
+ 36149,
+ 36160
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 23
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 34
}
}
},
"range": [
- 46569,
- 46591
+ 36138,
+ 36160
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 12
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 34
}
}
@@ -105229,31 +85028,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 46592,
- 46603
+ 36161,
+ 36172
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 35
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 46
}
}
},
"range": [
- 46569,
- 46603
+ 36138,
+ 36172
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 12
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 46
}
}
@@ -105263,47 +85062,47 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46604,
- 46610
+ 36173,
+ 36179
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 47
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 53
}
}
}
],
"range": [
- 46569,
- 46611
+ 36138,
+ 36180
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 12
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 54
}
}
},
"range": [
- 46569,
- 46612
+ 36138,
+ 36181
],
"loc": {
"start": {
- "line": 1249,
+ "line": 1017,
"column": 12
},
"end": {
- "line": 1249,
+ "line": 1017,
"column": 55
}
}
@@ -105320,16 +85119,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46625,
- 46631
+ 36194,
+ 36200
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 12
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 18
}
}
@@ -105338,31 +85137,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 46632,
- 46641
+ 36201,
+ 36210
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 19
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 28
}
}
},
"range": [
- 46625,
- 46641
+ 36194,
+ 36210
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 12
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 28
}
}
@@ -105374,16 +85173,16 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 46644,
- 46654
+ 36213,
+ 36223
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 31
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 41
}
}
@@ -105392,77 +85191,77 @@
"type": "Identifier",
"name": "gridInfDivCssClass",
"range": [
- 46655,
- 46673
+ 36224,
+ 36242
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 42
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 60
}
}
},
"range": [
- 46644,
- 46673
+ 36213,
+ 36242
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 31
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 60
}
}
},
"range": [
- 46625,
- 46673
+ 36194,
+ 36242
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 12
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 60
}
}
},
"range": [
- 46625,
- 46674
+ 36194,
+ 36243
],
"loc": {
"start": {
- "line": 1250,
+ "line": 1018,
"column": 12
},
"end": {
- "line": 1250,
+ "line": 1018,
"column": 61
}
}
}
],
"range": [
- 46505,
- 46684
+ 36074,
+ 36253
],
"loc": {
"start": {
- "line": 1247,
+ "line": 1015,
"column": 32
},
"end": {
- "line": 1251,
+ "line": 1019,
"column": 9
}
},
@@ -105471,16 +85270,16 @@
"type": "Line",
"value": "default location: just above the table",
"range": [
- 46693,
- 46733
+ 36262,
+ 36302
],
"loc": {
"start": {
- "line": 1252,
+ "line": 1020,
"column": 8
},
"end": {
- "line": 1252,
+ "line": 1020,
"column": 48
}
}
@@ -105499,16 +85298,16 @@
"type": "Identifier",
"name": "cont",
"range": [
- 46764,
- 46768
+ 36333,
+ 36337
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 16
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 20
}
}
@@ -105522,16 +85321,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 46771,
- 46774
+ 36340,
+ 36343
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 23
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 26
}
}
@@ -105540,31 +85339,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 46775,
- 46781
+ 36344,
+ 36350
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 27
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 33
}
}
},
"range": [
- 46771,
- 46781
+ 36340,
+ 36350
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 23
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 33
}
}
@@ -105575,47 +85374,47 @@
"value": "caption",
"raw": "'caption'",
"range": [
- 46782,
- 46791
+ 36351,
+ 36360
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 34
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 43
}
}
}
],
"range": [
- 46771,
- 46792
+ 36340,
+ 36361
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 23
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 44
}
}
},
"range": [
- 46764,
- 46792
+ 36333,
+ 36361
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 16
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 44
}
}
@@ -105623,16 +85422,16 @@
],
"kind": "var",
"range": [
- 46760,
- 46793
+ 36329,
+ 36362
],
"loc": {
"start": {
- "line": 1254,
+ "line": 1022,
"column": 12
},
"end": {
- "line": 1254,
+ "line": 1022,
"column": 45
}
}
@@ -105648,16 +85447,16 @@
"type": "Identifier",
"name": "cont",
"range": [
- 46806,
- 46810
+ 36375,
+ 36379
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 12
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 16
}
}
@@ -105666,31 +85465,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 46811,
- 46822
+ 36380,
+ 36391
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 17
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 28
}
}
},
"range": [
- 46806,
- 46822
+ 36375,
+ 36391
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 12
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 28
}
}
@@ -105700,47 +85499,47 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 46823,
- 46829
+ 36392,
+ 36398
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 29
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 35
}
}
}
],
"range": [
- 46806,
- 46830
+ 36375,
+ 36399
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 12
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 36
}
}
},
"range": [
- 46806,
- 46831
+ 36375,
+ 36400
],
"loc": {
"start": {
- "line": 1255,
+ "line": 1023,
"column": 12
},
"end": {
- "line": 1255,
+ "line": 1023,
"column": 37
}
}
@@ -105758,16 +85557,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46844,
- 46848
+ 36413,
+ 36417
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 12
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 16
}
}
@@ -105776,31 +85575,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 46849,
- 46852
+ 36418,
+ 36421
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 17
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 20
}
}
},
"range": [
- 46844,
- 46852
+ 36413,
+ 36421
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 12
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 20
}
}
@@ -105809,31 +85608,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 46853,
- 46865
+ 36422,
+ 36434
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 21
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 33
}
}
},
"range": [
- 46844,
- 46865
+ 36413,
+ 36434
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 12
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 33
}
}
@@ -105843,16 +85642,16 @@
"type": "Identifier",
"name": "cont",
"range": [
- 46866,
- 46870
+ 36435,
+ 36439
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 34
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 38
}
}
@@ -105866,16 +85665,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46872,
- 46876
+ 36441,
+ 36445
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 40
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 44
}
}
@@ -105884,31 +85683,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 46877,
- 46880
+ 36446,
+ 36449
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 45
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 48
}
}
},
"range": [
- 46872,
- 46880
+ 36441,
+ 36449
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 40
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 48
}
}
@@ -105917,78 +85716,78 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 46881,
- 46891
+ 36450,
+ 36460
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 49
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 59
}
}
},
"range": [
- 46872,
- 46891
+ 36441,
+ 36460
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 40
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 59
}
}
}
],
"range": [
- 46844,
- 46892
+ 36413,
+ 36461
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 12
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 60
}
}
},
"range": [
- 46844,
- 46893
+ 36413,
+ 36462
],
"loc": {
"start": {
- "line": 1256,
+ "line": 1024,
"column": 12
},
"end": {
- "line": 1256,
+ "line": 1024,
"column": 61
}
}
}
],
"range": [
- 46746,
- 46903
+ 36315,
+ 36472
],
"loc": {
"start": {
- "line": 1253,
+ "line": 1021,
"column": 12
},
"end": {
- "line": 1257,
+ "line": 1025,
"column": 9
}
},
@@ -105997,16 +85796,16 @@
"type": "Line",
"value": "default location: just above the table",
"range": [
- 46693,
- 46733
+ 36262,
+ 36302
],
"loc": {
"start": {
- "line": 1252,
+ "line": 1020,
"column": 8
},
"end": {
- "line": 1252,
+ "line": 1020,
"column": 48
}
}
@@ -106014,16 +85813,16 @@
]
},
"range": [
- 46486,
- 46903
+ 36055,
+ 36472
],
"loc": {
"start": {
- "line": 1247,
+ "line": 1015,
"column": 13
},
"end": {
- "line": 1257,
+ "line": 1025,
"column": 9
}
},
@@ -106032,16 +85831,16 @@
"type": "Line",
"value": "grid-layout",
"range": [
- 46459,
- 46472
+ 36028,
+ 36041
],
"loc": {
"start": {
- "line": 1246,
+ "line": 1014,
"column": 8
},
"end": {
- "line": 1246,
+ "line": 1014,
"column": 21
}
}
@@ -106049,16 +85848,16 @@
]
},
"range": [
- 46359,
- 46903
+ 35928,
+ 36472
],
"loc": {
"start": {
- "line": 1243,
+ "line": 1011,
"column": 8
},
"end": {
- "line": 1257,
+ "line": 1025,
"column": 9
}
},
@@ -106067,16 +85866,16 @@
"type": "Line",
"value": "custom container",
"range": [
- 46332,
- 46350
+ 35901,
+ 35919
],
"loc": {
"start": {
- "line": 1242,
+ "line": 1010,
"column": 8
},
"end": {
- "line": 1242,
+ "line": 1010,
"column": 26
}
}
@@ -106094,16 +85893,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46912,
- 46916
+ 36481,
+ 36485
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 8
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 12
}
}
@@ -106112,31 +85911,31 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 46917,
- 46923
+ 36486,
+ 36492
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 13
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 19
}
}
},
"range": [
- 46912,
- 46923
+ 36481,
+ 36492
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 8
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 19
}
}
@@ -106150,16 +85949,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 46926,
- 46929
+ 36495,
+ 36498
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 22
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 25
}
}
@@ -106168,31 +85967,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 46930,
- 46932
+ 36499,
+ 36501
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 26
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 28
}
}
},
"range": [
- 46926,
- 46932
+ 36495,
+ 36501
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 22
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 28
}
}
@@ -106207,16 +86006,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46933,
- 46937
+ 36502,
+ 36506
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 29
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 33
}
}
@@ -106225,31 +86024,31 @@
"type": "Identifier",
"name": "prfxInfDiv",
"range": [
- 46938,
- 46948
+ 36507,
+ 36517
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 34
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 44
}
}
},
"range": [
- 46933,
- 46948
+ 36502,
+ 36517
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 29
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 44
}
}
@@ -106260,16 +86059,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 46949,
- 46953
+ 36518,
+ 36522
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 45
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 49
}
}
@@ -106278,92 +86077,92 @@
"type": "Identifier",
"name": "id",
"range": [
- 46954,
- 46956
+ 36523,
+ 36525
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 50
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 52
}
}
},
"range": [
- 46949,
- 46956
+ 36518,
+ 36525
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 45
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 52
}
}
},
"range": [
- 46933,
- 46956
+ 36502,
+ 36525
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 29
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 52
}
}
}
],
"range": [
- 46926,
- 46957
+ 36495,
+ 36526
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 22
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 53
}
}
},
"range": [
- 46912,
- 46957
+ 36481,
+ 36526
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 8
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 53
}
}
},
"range": [
- 46912,
- 46958
+ 36481,
+ 36527
],
"loc": {
"start": {
- "line": 1258,
+ "line": 1026,
"column": 8
},
"end": {
- "line": 1258,
+ "line": 1026,
"column": 54
}
},
@@ -106372,16 +86171,16 @@
"type": "Block",
"value": "** left div containing rows # displayer **",
"range": [
- 46968,
- 47014
+ 36537,
+ 36583
],
"loc": {
"start": {
- "line": 1260,
+ "line": 1028,
"column": 8
},
"end": {
- "line": 1260,
+ "line": 1028,
"column": 54
}
}
@@ -106397,16 +86196,16 @@
"type": "Identifier",
"name": "ldiv",
"range": [
- 47027,
- 47031
+ 36596,
+ 36600
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 12
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 16
}
}
@@ -106420,16 +86219,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47034,
- 47037
+ 36603,
+ 36606
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 19
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 22
}
}
@@ -106438,31 +86237,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 47038,
- 47044
+ 36607,
+ 36613
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 23
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 29
}
}
},
"range": [
- 47034,
- 47044
+ 36603,
+ 36613
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 19
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 29
}
}
@@ -106473,16 +86272,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 47045,
- 47050
+ 36614,
+ 36619
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 30
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 35
}
}
@@ -106495,16 +86294,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 47053,
- 47057
+ 36622,
+ 36626
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 38
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 42
}
}
@@ -106518,16 +86317,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47059,
- 47063
+ 36628,
+ 36632
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 44
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 48
}
}
@@ -106536,31 +86335,31 @@
"type": "Identifier",
"name": "prfxLDiv",
"range": [
- 47064,
- 47072
+ 36633,
+ 36641
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 49
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 57
}
}
},
"range": [
- 47059,
- 47072
+ 36628,
+ 36641
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 44
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 57
}
}
@@ -106571,16 +86370,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47073,
- 47077
+ 36642,
+ 36646
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 58
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 62
}
}
@@ -106589,93 +86388,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 47078,
- 47080
+ 36647,
+ 36649
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 63
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 65
}
}
},
"range": [
- 47073,
- 47080
+ 36642,
+ 36649
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 58
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 65
}
}
},
"range": [
- 47059,
- 47080
+ 36628,
+ 36649
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 44
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 65
}
}
}
],
"range": [
- 47052,
- 47081
+ 36621,
+ 36650
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 37
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 66
}
}
}
],
"range": [
- 47034,
- 47082
+ 36603,
+ 36651
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 19
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 67
}
}
},
"range": [
- 47027,
- 47082
+ 36596,
+ 36651
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 12
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 67
}
}
@@ -106683,16 +86482,16 @@
],
"kind": "let",
"range": [
- 47023,
- 47083
+ 36592,
+ 36652
],
"loc": {
"start": {
- "line": 1261,
+ "line": 1029,
"column": 8
},
"end": {
- "line": 1261,
+ "line": 1029,
"column": 68
}
},
@@ -106701,16 +86500,16 @@
"type": "Block",
"value": "** left div containing rows # displayer **",
"range": [
- 46968,
- 47014
+ 36537,
+ 36583
],
"loc": {
"start": {
- "line": 1260,
+ "line": 1028,
"column": 8
},
"end": {
- "line": 1260,
+ "line": 1028,
"column": 54
}
}
@@ -106729,16 +86528,16 @@
"type": "Identifier",
"name": "ldiv",
"range": [
- 47092,
- 47096
+ 36661,
+ 36665
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 8
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 12
}
}
@@ -106747,31 +86546,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 47097,
- 47106
+ 36666,
+ 36675
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 13
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 22
}
}
},
"range": [
- 47092,
- 47106
+ 36661,
+ 36675
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 8
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 22
}
}
@@ -106782,16 +86581,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47109,
- 47113
+ 36678,
+ 36682
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 25
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 29
}
}
@@ -106800,61 +86599,61 @@
"type": "Identifier",
"name": "lDivCssClass",
"range": [
- 47114,
- 47126
+ 36683,
+ 36695
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 30
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 42
}
}
},
"range": [
- 47109,
- 47126
+ 36678,
+ 36695
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 25
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 42
}
}
},
"range": [
- 47092,
- 47126
+ 36661,
+ 36695
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 8
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 42
}
}
},
"range": [
- 47092,
- 47127
+ 36661,
+ 36696
],
"loc": {
"start": {
- "line": 1262,
+ "line": 1030,
"column": 8
},
"end": {
- "line": 1262,
+ "line": 1030,
"column": 43
}
}
@@ -106870,16 +86669,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 47136,
- 47142
+ 36705,
+ 36711
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 8
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 14
}
}
@@ -106888,31 +86687,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 47143,
- 47154
+ 36712,
+ 36723
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 15
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 26
}
}
},
"range": [
- 47136,
- 47154
+ 36705,
+ 36723
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 8
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 26
}
}
@@ -106922,47 +86721,47 @@
"type": "Identifier",
"name": "ldiv",
"range": [
- 47155,
- 47159
+ 36724,
+ 36728
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 27
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 31
}
}
}
],
"range": [
- 47136,
- 47160
+ 36705,
+ 36729
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 8
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 32
}
}
},
"range": [
- 47136,
- 47161
+ 36705,
+ 36730
],
"loc": {
"start": {
- "line": 1263,
+ "line": 1031,
"column": 8
},
"end": {
- "line": 1263,
+ "line": 1031,
"column": 33
}
}
@@ -106978,16 +86777,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47170,
- 47174
+ 36739,
+ 36743
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 8
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 12
}
}
@@ -106996,31 +86795,31 @@
"type": "Identifier",
"name": "lDiv",
"range": [
- 47175,
- 47179
+ 36744,
+ 36748
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 13
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 17
}
}
},
"range": [
- 47170,
- 47179
+ 36739,
+ 36748
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 8
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 17
}
}
@@ -107034,16 +86833,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47182,
- 47185
+ 36751,
+ 36754
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 20
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 23
}
}
@@ -107052,31 +86851,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 47186,
- 47188
+ 36755,
+ 36757
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 24
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 26
}
}
},
"range": [
- 47182,
- 47188
+ 36751,
+ 36757
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 20
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 26
}
}
@@ -107091,16 +86890,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47189,
- 47193
+ 36758,
+ 36762
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 27
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 31
}
}
@@ -107109,31 +86908,31 @@
"type": "Identifier",
"name": "prfxLDiv",
"range": [
- 47194,
- 47202
+ 36763,
+ 36771
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 32
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 40
}
}
},
"range": [
- 47189,
- 47202
+ 36758,
+ 36771
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 27
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 40
}
}
@@ -107144,16 +86943,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47203,
- 47207
+ 36772,
+ 36776
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 41
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 45
}
}
@@ -107162,92 +86961,92 @@
"type": "Identifier",
"name": "id",
"range": [
- 47208,
- 47210
+ 36777,
+ 36779
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 46
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 48
}
}
},
"range": [
- 47203,
- 47210
+ 36772,
+ 36779
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 41
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 48
}
}
},
"range": [
- 47189,
- 47210
+ 36758,
+ 36779
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 27
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 48
}
}
}
],
"range": [
- 47182,
- 47211
+ 36751,
+ 36780
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 20
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 49
}
}
},
"range": [
- 47170,
- 47211
+ 36739,
+ 36780
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 8
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 49
}
}
},
"range": [
- 47170,
- 47212
+ 36739,
+ 36781
],
"loc": {
"start": {
- "line": 1264,
+ "line": 1032,
"column": 8
},
"end": {
- "line": 1264,
+ "line": 1032,
"column": 50
}
},
@@ -107256,16 +87055,16 @@
"type": "Block",
"value": "** right div containing reset button\n + nb results per page select **",
"range": [
- 47222,
- 47316
+ 36791,
+ 36885
],
"loc": {
"start": {
- "line": 1266,
+ "line": 1034,
"column": 8
},
"end": {
- "line": 1267,
+ "line": 1035,
"column": 52
}
}
@@ -107281,16 +87080,16 @@
"type": "Identifier",
"name": "rdiv",
"range": [
- 47329,
- 47333
+ 36898,
+ 36902
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 12
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 16
}
}
@@ -107304,16 +87103,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47336,
- 47339
+ 36905,
+ 36908
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 19
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 22
}
}
@@ -107322,31 +87121,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 47340,
- 47346
+ 36909,
+ 36915
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 23
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 29
}
}
},
"range": [
- 47336,
- 47346
+ 36905,
+ 36915
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 19
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 29
}
}
@@ -107357,16 +87156,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 47347,
- 47352
+ 36916,
+ 36921
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 30
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 35
}
}
@@ -107379,16 +87178,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 47355,
- 47359
+ 36924,
+ 36928
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 38
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 42
}
}
@@ -107402,16 +87201,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47361,
- 47365
+ 36930,
+ 36934
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 44
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 48
}
}
@@ -107420,31 +87219,31 @@
"type": "Identifier",
"name": "prfxRDiv",
"range": [
- 47366,
- 47374
+ 36935,
+ 36943
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 49
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 57
}
}
},
"range": [
- 47361,
- 47374
+ 36930,
+ 36943
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 44
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 57
}
}
@@ -107455,16 +87254,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47375,
- 47379
+ 36944,
+ 36948
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 58
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 62
}
}
@@ -107473,93 +87272,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 47380,
- 47382
+ 36949,
+ 36951
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 63
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 65
}
}
},
"range": [
- 47375,
- 47382
+ 36944,
+ 36951
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 58
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 65
}
}
},
"range": [
- 47361,
- 47382
+ 36930,
+ 36951
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 44
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 65
}
}
}
],
"range": [
- 47354,
- 47383
+ 36923,
+ 36952
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 37
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 66
}
}
}
],
"range": [
- 47336,
- 47384
+ 36905,
+ 36953
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 19
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 67
}
}
},
"range": [
- 47329,
- 47384
+ 36898,
+ 36953
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 12
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 67
}
}
@@ -107567,16 +87366,16 @@
],
"kind": "let",
"range": [
- 47325,
- 47385
+ 36894,
+ 36954
],
"loc": {
"start": {
- "line": 1268,
+ "line": 1036,
"column": 8
},
"end": {
- "line": 1268,
+ "line": 1036,
"column": 68
}
},
@@ -107585,16 +87384,16 @@
"type": "Block",
"value": "** right div containing reset button\n + nb results per page select **",
"range": [
- 47222,
- 47316
+ 36791,
+ 36885
],
"loc": {
"start": {
- "line": 1266,
+ "line": 1034,
"column": 8
},
"end": {
- "line": 1267,
+ "line": 1035,
"column": 52
}
}
@@ -107613,16 +87412,16 @@
"type": "Identifier",
"name": "rdiv",
"range": [
- 47394,
- 47398
+ 36963,
+ 36967
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 8
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 12
}
}
@@ -107631,31 +87430,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 47399,
- 47408
+ 36968,
+ 36977
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 13
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 22
}
}
},
"range": [
- 47394,
- 47408
+ 36963,
+ 36977
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 8
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 22
}
}
@@ -107666,16 +87465,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47411,
- 47415
+ 36980,
+ 36984
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 25
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 29
}
}
@@ -107684,61 +87483,61 @@
"type": "Identifier",
"name": "rDivCssClass",
"range": [
- 47416,
- 47428
+ 36985,
+ 36997
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 30
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 42
}
}
},
"range": [
- 47411,
- 47428
+ 36980,
+ 36997
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 25
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 42
}
}
},
"range": [
- 47394,
- 47428
+ 36963,
+ 36997
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 8
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 42
}
}
},
"range": [
- 47394,
- 47429
+ 36963,
+ 36998
],
"loc": {
"start": {
- "line": 1269,
+ "line": 1037,
"column": 8
},
"end": {
- "line": 1269,
+ "line": 1037,
"column": 43
}
}
@@ -107754,16 +87553,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 47438,
- 47444
+ 37007,
+ 37013
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 8
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 14
}
}
@@ -107772,31 +87571,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 47445,
- 47456
+ 37014,
+ 37025
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 15
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 26
}
}
},
"range": [
- 47438,
- 47456
+ 37007,
+ 37025
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 8
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 26
}
}
@@ -107806,47 +87605,47 @@
"type": "Identifier",
"name": "rdiv",
"range": [
- 47457,
- 47461
+ 37026,
+ 37030
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 27
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 31
}
}
}
],
"range": [
- 47438,
- 47462
+ 37007,
+ 37031
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 8
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 32
}
}
},
"range": [
- 47438,
- 47463
+ 37007,
+ 37032
],
"loc": {
"start": {
- "line": 1270,
+ "line": 1038,
"column": 8
},
"end": {
- "line": 1270,
+ "line": 1038,
"column": 33
}
}
@@ -107862,16 +87661,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47472,
- 47476
+ 37041,
+ 37045
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 8
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 12
}
}
@@ -107880,31 +87679,31 @@
"type": "Identifier",
"name": "rDiv",
"range": [
- 47477,
- 47481
+ 37046,
+ 37050
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 13
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 17
}
}
},
"range": [
- 47472,
- 47481
+ 37041,
+ 37050
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 8
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 17
}
}
@@ -107918,16 +87717,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47484,
- 47487
+ 37053,
+ 37056
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 20
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 23
}
}
@@ -107936,31 +87735,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 47488,
- 47490
+ 37057,
+ 37059
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 24
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 26
}
}
},
"range": [
- 47484,
- 47490
+ 37053,
+ 37059
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 20
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 26
}
}
@@ -107975,16 +87774,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47491,
- 47495
+ 37060,
+ 37064
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 27
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 31
}
}
@@ -107993,31 +87792,31 @@
"type": "Identifier",
"name": "prfxRDiv",
"range": [
- 47496,
- 47504
+ 37065,
+ 37073
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 32
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 40
}
}
},
"range": [
- 47491,
- 47504
+ 37060,
+ 37073
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 27
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 40
}
}
@@ -108028,16 +87827,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47505,
- 47509
+ 37074,
+ 37078
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 41
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 45
}
}
@@ -108046,92 +87845,92 @@
"type": "Identifier",
"name": "id",
"range": [
- 47510,
- 47512
+ 37079,
+ 37081
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 46
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 48
}
}
},
"range": [
- 47505,
- 47512
+ 37074,
+ 37081
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 41
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 48
}
}
},
"range": [
- 47491,
- 47512
+ 37060,
+ 37081
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 27
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 48
}
}
}
],
"range": [
- 47484,
- 47513
+ 37053,
+ 37082
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 20
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 49
}
}
},
"range": [
- 47472,
- 47513
+ 37041,
+ 37082
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 8
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 49
}
}
},
"range": [
- 47472,
- 47514
+ 37041,
+ 37083
],
"loc": {
"start": {
- "line": 1271,
+ "line": 1039,
"column": 8
},
"end": {
- "line": 1271,
+ "line": 1039,
"column": 50
}
},
@@ -108140,16 +87939,16 @@
"type": "Block",
"value": "** mid div containing paging elements **",
"range": [
- 47524,
- 47568
+ 37093,
+ 37137
],
"loc": {
"start": {
- "line": 1273,
+ "line": 1041,
"column": 8
},
"end": {
- "line": 1273,
+ "line": 1041,
"column": 52
}
}
@@ -108165,16 +87964,16 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 47581,
- 47585
+ 37150,
+ 37154
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 12
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 16
}
}
@@ -108188,16 +87987,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47588,
- 47591
+ 37157,
+ 37160
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 19
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 22
}
}
@@ -108206,31 +88005,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 47592,
- 47598
+ 37161,
+ 37167
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 23
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 29
}
}
},
"range": [
- 47588,
- 47598
+ 37157,
+ 37167
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 19
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 29
}
}
@@ -108241,16 +88040,16 @@
"value": "div",
"raw": "'div'",
"range": [
- 47599,
- 47604
+ 37168,
+ 37173
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 30
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 35
}
}
@@ -108263,16 +88062,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 47607,
- 47611
+ 37176,
+ 37180
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 38
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 42
}
}
@@ -108286,16 +88085,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47613,
- 47617
+ 37182,
+ 37186
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 44
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 48
}
}
@@ -108304,31 +88103,31 @@
"type": "Identifier",
"name": "prfxMDiv",
"range": [
- 47618,
- 47626
+ 37187,
+ 37195
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 49
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 57
}
}
},
"range": [
- 47613,
- 47626
+ 37182,
+ 37195
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 44
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 57
}
}
@@ -108339,16 +88138,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47627,
- 47631
+ 37196,
+ 37200
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 58
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 62
}
}
@@ -108357,93 +88156,93 @@
"type": "Identifier",
"name": "id",
"range": [
- 47632,
- 47634
+ 37201,
+ 37203
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 63
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 65
}
}
},
"range": [
- 47627,
- 47634
+ 37196,
+ 37203
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 58
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 65
}
}
},
"range": [
- 47613,
- 47634
+ 37182,
+ 37203
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 44
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 65
}
}
}
],
"range": [
- 47606,
- 47635
+ 37175,
+ 37204
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 37
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 66
}
}
}
],
"range": [
- 47588,
- 47636
+ 37157,
+ 37205
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 19
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 67
}
}
},
"range": [
- 47581,
- 47636
+ 37150,
+ 37205
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 12
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 67
}
}
@@ -108451,16 +88250,16 @@
],
"kind": "let",
"range": [
- 47577,
- 47637
+ 37146,
+ 37206
],
"loc": {
"start": {
- "line": 1274,
+ "line": 1042,
"column": 8
},
"end": {
- "line": 1274,
+ "line": 1042,
"column": 68
}
},
@@ -108469,16 +88268,16 @@
"type": "Block",
"value": "** mid div containing paging elements **",
"range": [
- 47524,
- 47568
+ 37093,
+ 37137
],
"loc": {
"start": {
- "line": 1273,
+ "line": 1041,
"column": 8
},
"end": {
- "line": 1273,
+ "line": 1041,
"column": 52
}
}
@@ -108497,16 +88296,16 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 47646,
- 47650
+ 37215,
+ 37219
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 8
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 12
}
}
@@ -108515,31 +88314,31 @@
"type": "Identifier",
"name": "className",
"range": [
- 47651,
- 47660
+ 37220,
+ 37229
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 13
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 22
}
}
},
"range": [
- 47646,
- 47660
+ 37215,
+ 37229
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 8
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 22
}
}
@@ -108550,16 +88349,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47663,
- 47667
+ 37232,
+ 37236
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 25
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 29
}
}
@@ -108568,61 +88367,61 @@
"type": "Identifier",
"name": "mDivCssClass",
"range": [
- 47668,
- 47680
+ 37237,
+ 37249
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 30
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 42
}
}
},
"range": [
- 47663,
- 47680
+ 37232,
+ 37249
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 25
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 42
}
}
},
"range": [
- 47646,
- 47680
+ 37215,
+ 37249
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 8
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 42
}
}
},
"range": [
- 47646,
- 47681
+ 37215,
+ 37250
],
"loc": {
"start": {
- "line": 1275,
+ "line": 1043,
"column": 8
},
"end": {
- "line": 1275,
+ "line": 1043,
"column": 43
}
}
@@ -108638,16 +88437,16 @@
"type": "Identifier",
"name": "infdiv",
"range": [
- 47690,
- 47696
+ 37259,
+ 37265
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 8
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 14
}
}
@@ -108656,31 +88455,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 47697,
- 47708
+ 37266,
+ 37277
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 15
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 26
}
}
},
"range": [
- 47690,
- 47708
+ 37259,
+ 37277
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 8
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 26
}
}
@@ -108690,47 +88489,47 @@
"type": "Identifier",
"name": "mdiv",
"range": [
- 47709,
- 47713
+ 37278,
+ 37282
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 27
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 31
}
}
}
],
"range": [
- 47690,
- 47714
+ 37259,
+ 37283
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 8
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 32
}
}
},
"range": [
- 47690,
- 47715
+ 37259,
+ 37284
],
"loc": {
"start": {
- "line": 1276,
+ "line": 1044,
"column": 8
},
"end": {
- "line": 1276,
+ "line": 1044,
"column": 33
}
}
@@ -108746,16 +88545,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47724,
- 47728
+ 37293,
+ 37297
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 8
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 12
}
}
@@ -108764,31 +88563,31 @@
"type": "Identifier",
"name": "mDiv",
"range": [
- 47729,
- 47733
+ 37298,
+ 37302
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 13
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 17
}
}
},
"range": [
- 47724,
- 47733
+ 37293,
+ 37302
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 8
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 17
}
}
@@ -108802,16 +88601,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 47736,
- 47739
+ 37305,
+ 37308
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 20
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 23
}
}
@@ -108820,31 +88619,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 47740,
- 47742
+ 37309,
+ 37311
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 24
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 26
}
}
},
"range": [
- 47736,
- 47742
+ 37305,
+ 37311
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 20
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 26
}
}
@@ -108859,16 +88658,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47743,
- 47747
+ 37312,
+ 37316
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 27
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 31
}
}
@@ -108877,31 +88676,31 @@
"type": "Identifier",
"name": "prfxMDiv",
"range": [
- 47748,
- 47756
+ 37317,
+ 37325
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 32
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 40
}
}
},
"range": [
- 47743,
- 47756
+ 37312,
+ 37325
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 27
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 40
}
}
@@ -108912,16 +88711,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47757,
- 47761
+ 37326,
+ 37330
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 41
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 45
}
}
@@ -108930,129 +88729,111 @@
"type": "Identifier",
"name": "id",
"range": [
- 47762,
- 47764
+ 37331,
+ 37333
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 46
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 48
}
}
},
"range": [
- 47757,
- 47764
+ 37326,
+ 37333
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 41
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 48
}
}
},
"range": [
- 47743,
- 47764
+ 37312,
+ 37333
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 27
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 48
}
}
}
],
"range": [
- 47736,
- 47765
+ 37305,
+ 37334
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 20
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 49
}
}
},
"range": [
- 47724,
- 47765
+ 37293,
+ 37334
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 8
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 49
}
}
},
"range": [
- 47724,
- 47766
+ 37293,
+ 37335
],
"loc": {
"start": {
- "line": 1277,
+ "line": 1045,
"column": 8
},
"end": {
- "line": 1277,
+ "line": 1045,
"column": 50
}
},
"trailingComments": [
{
"type": "Line",
- "value": " Enable help instructions by default if topbar is generated and not",
+ "value": " emit help initialisation only if undefined",
"range": [
- 47776,
- 47845
+ 37345,
+ 37390
],
"loc": {
"start": {
- "line": 1279,
+ "line": 1047,
"column": 8
},
"end": {
- "line": 1279,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " explicitely set to false",
- "range": [
- 47854,
- 47881
- ],
- "loc": {
- "start": {
- "line": 1280,
- "column": 8
- },
- "end": {
- "line": 1280,
- "column": 35
+ "line": 1047,
+ "column": 53
}
}
}
@@ -109069,16 +88850,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 47893,
- 47898
+ 37402,
+ 37407
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 11
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 16
}
}
@@ -109087,31 +88868,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 47899,
- 47906
+ 37408,
+ 37415
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 17
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 24
}
}
},
"range": [
- 47893,
- 47906
+ 37402,
+ 37415
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 11
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 24
}
}
@@ -109123,16 +88904,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 47907,
- 47911
+ 37416,
+ 37420
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 25
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 29
}
}
@@ -109141,47 +88922,47 @@
"type": "Identifier",
"name": "help",
"range": [
- 47912,
- 47916
+ 37421,
+ 37425
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 30
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 34
}
}
},
"range": [
- 47907,
- 47916
+ 37416,
+ 37425
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 25
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 34
}
}
}
],
"range": [
- 47893,
- 47917
+ 37402,
+ 37426
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 11
},
"end": {
- "line": 1281,
+ "line": 1048,
"column": 35
}
}
@@ -109189,329 +88970,6 @@
"consequent": {
"type": "BlockStatement",
"body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 47936,
- 47940
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 16
- },
- "end": {
- "line": 1282,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 47941,
- 47944
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 21
- },
- "end": {
- "line": 1282,
- "column": 24
- }
- }
- },
- "range": [
- 47936,
- 47944
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 16
- },
- "end": {
- "line": 1282,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 47945,
- 47949
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 25
- },
- "end": {
- "line": 1282,
- "column": 29
- }
- }
- },
- "range": [
- 47936,
- 47949
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 16
- },
- "end": {
- "line": 1282,
- "column": 29
- }
- }
- },
- "prefix": true,
- "range": [
- 47935,
- 47949
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 15
- },
- "end": {
- "line": 1282,
- "column": 29
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 47968,
- 47972
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 16
- },
- "end": {
- "line": 1283,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 47973,
- 47976
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 21
- },
- "end": {
- "line": 1283,
- "column": 24
- }
- }
- },
- "range": [
- 47968,
- 47976
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 16
- },
- "end": {
- "line": 1283,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 47977,
- 47981
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 25
- },
- "end": {
- "line": 1283,
- "column": 29
- }
- }
- },
- "range": [
- 47968,
- 47981
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 16
- },
- "end": {
- "line": 1283,
- "column": 29
- }
- }
- },
- "right": {
- "type": "NewExpression",
- "callee": {
- "type": "Identifier",
- "name": "Help",
- "range": [
- 47988,
- 47992
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 36
- },
- "end": {
- "line": 1283,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "ThisExpression",
- "range": [
- 47993,
- 47997
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 41
- },
- "end": {
- "line": 1283,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 47984,
- 47998
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 32
- },
- "end": {
- "line": 1283,
- "column": 46
- }
- }
- },
- "range": [
- 47968,
- 47998
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 16
- },
- "end": {
- "line": 1283,
- "column": 46
- }
- }
- },
- "range": [
- 47968,
- 47999
- ],
- "loc": {
- "start": {
- "line": 1283,
- "column": 16
- },
- "end": {
- "line": 1283,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 47950,
- 48013
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 30
- },
- "end": {
- "line": 1284,
- "column": 13
- }
- }
- },
- "alternate": null,
- "range": [
- 47932,
- 48013
- ],
- "loc": {
- "start": {
- "line": 1282,
- "column": 12
- },
- "end": {
- "line": 1284,
- "column": 13
- }
- }
- },
{
"type": "ExpressionStatement",
"expression": {
@@ -109523,327 +88981,203 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 48026,
- 48030
- ],
- "loc": {
- "start": {
- "line": 1285,
- "column": 12
- },
- "end": {
- "line": 1285,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 48031,
- 48034
- ],
- "loc": {
- "start": {
- "line": 1285,
- "column": 17
- },
- "end": {
- "line": 1285,
- "column": 20
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 48026,
- 48034
+ 37441,
+ 37445
],
"loc": {
"start": {
- "line": 1285,
+ "line": 1049,
"column": 12
},
"end": {
- "line": 1285,
- "column": 20
+ "line": 1049,
+ "column": 16
}
}
},
"property": {
"type": "Identifier",
- "name": "help",
+ "name": "emitter",
"range": [
- 48035,
- 48039
+ 37446,
+ 37453
],
"loc": {
"start": {
- "line": 1285,
- "column": 21
+ "line": 1049,
+ "column": 17
},
"end": {
- "line": 1285,
- "column": 25
+ "line": 1049,
+ "column": 24
}
}
},
"range": [
- 48026,
- 48039
+ 37441,
+ 37453
],
"loc": {
"start": {
- "line": 1285,
+ "line": 1049,
"column": 12
},
"end": {
- "line": 1285,
- "column": 25
+ "line": 1049,
+ "column": 24
}
}
},
"property": {
"type": "Identifier",
- "name": "init",
+ "name": "emit",
"range": [
- 48040,
- 48044
+ 37454,
+ 37458
],
"loc": {
"start": {
- "line": 1285,
- "column": 26
+ "line": 1049,
+ "column": 25
},
"end": {
- "line": 1285,
- "column": 30
+ "line": 1049,
+ "column": 29
}
}
},
"range": [
- 48026,
- 48044
+ 37441,
+ 37458
],
"loc": {
"start": {
- "line": 1285,
+ "line": 1049,
"column": 12
},
"end": {
- "line": 1285,
- "column": 30
+ "line": 1049,
+ "column": 29
}
}
},
- "arguments": [],
- "range": [
- 48026,
- 48046
- ],
- "loc": {
- "start": {
- "line": 1285,
- "column": 12
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "init-help",
+ "raw": "'init-help'",
+ "range": [
+ 37459,
+ 37470
+ ],
+ "loc": {
+ "start": {
+ "line": 1049,
+ "column": 30
+ },
+ "end": {
+ "line": 1049,
+ "column": 41
+ }
+ }
},
- "end": {
- "line": 1285,
- "column": 32
- }
- }
- },
- "range": [
- 48026,
- 48047
- ],
- "loc": {
- "start": {
- "line": 1285,
- "column": 12
- },
- "end": {
- "line": 1285,
- "column": 33
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
+ {
"type": "ThisExpression",
"range": [
- 48060,
- 48064
+ 37472,
+ 37476
],
"loc": {
"start": {
- "line": 1286,
- "column": 12
+ "line": 1049,
+ "column": 43
},
"end": {
- "line": 1286,
- "column": 16
+ "line": 1049,
+ "column": 47
}
}
- },
- "property": {
- "type": "Identifier",
- "name": "help",
- "range": [
- 48065,
- 48069
- ],
- "loc": {
- "start": {
- "line": 1286,
- "column": 17
- },
- "end": {
- "line": 1286,
- "column": 21
- }
- }
- },
- "range": [
- 48060,
- 48069
- ],
- "loc": {
- "start": {
- "line": 1286,
- "column": 12
- },
- "end": {
- "line": 1286,
- "column": 21
- }
}
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 48072,
- 48076
- ],
- "loc": {
- "start": {
- "line": 1286,
- "column": 24
- },
- "end": {
- "line": 1286,
- "column": 28
- }
- }
- },
+ ],
"range": [
- 48060,
- 48076
+ 37441,
+ 37477
],
"loc": {
"start": {
- "line": 1286,
+ "line": 1049,
"column": 12
},
"end": {
- "line": 1286,
- "column": 28
+ "line": 1049,
+ "column": 48
}
}
},
"range": [
- 48060,
- 48077
+ 37441,
+ 37478
],
"loc": {
"start": {
- "line": 1286,
+ "line": 1049,
"column": 12
},
"end": {
- "line": 1286,
- "column": 29
+ "line": 1049,
+ "column": 49
}
}
}
],
"range": [
- 47918,
- 48087
+ 37427,
+ 37488
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 36
},
"end": {
- "line": 1287,
+ "line": 1050,
"column": 9
}
}
},
"alternate": null,
"range": [
- 47890,
- 48087
+ 37399,
+ 37488
],
"loc": {
"start": {
- "line": 1281,
+ "line": 1048,
"column": 8
},
"end": {
- "line": 1287,
+ "line": 1050,
"column": 9
}
},
"leadingComments": [
{
"type": "Line",
- "value": " Enable help instructions by default if topbar is generated and not",
+ "value": " emit help initialisation only if undefined",
"range": [
- 47776,
- 47845
+ 37345,
+ 37390
],
"loc": {
"start": {
- "line": 1279,
+ "line": 1047,
"column": 8
},
"end": {
- "line": 1279,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " explicitely set to false",
- "range": [
- 47854,
- 47881
- ],
- "loc": {
- "start": {
- "line": 1280,
- "column": 8
- },
- "end": {
- "line": 1280,
- "column": 35
+ "line": 1047,
+ "column": 53
}
}
}
@@ -109851,16 +89185,16 @@
}
],
"range": [
- 46112,
- 48093
+ 35681,
+ 37494
],
"loc": {
"start": {
- "line": 1233,
+ "line": 1001,
"column": 16
},
"end": {
- "line": 1288,
+ "line": 1051,
"column": 5
}
}
@@ -109868,16 +89202,16 @@
"generator": false,
"expression": false,
"range": [
- 46110,
- 48093
+ 35679,
+ 37494
],
"loc": {
"start": {
- "line": 1233,
+ "line": 1001,
"column": 14
},
"end": {
- "line": 1288,
+ "line": 1051,
"column": 5
}
}
@@ -109885,16 +89219,16 @@
"kind": "method",
"computed": false,
"range": [
- 46100,
- 48093
+ 35669,
+ 37494
],
"loc": {
"start": {
- "line": 1233,
+ "line": 1001,
"column": 4
},
"end": {
- "line": 1288,
+ "line": 1051,
"column": 5
}
},
@@ -109903,16 +89237,16 @@
"type": "Block",
"value": "*\n * Generate container element for paging, reset button, rows counter etc.\n ",
"range": [
- 46006,
- 46095
+ 35575,
+ 35664
],
"loc": {
"start": {
- "line": 1230,
+ "line": 998,
"column": 4
},
"end": {
- "line": 1232,
+ "line": 1000,
"column": 7
}
}
@@ -109923,16 +89257,16 @@
"type": "Block",
"value": "*\n * Remove toolbar container element\n ",
"range": [
- 48099,
- 48150
+ 37500,
+ 37551
],
"loc": {
"start": {
- "line": 1290,
+ "line": 1053,
"column": 4
},
"end": {
- "line": 1292,
+ "line": 1055,
"column": 7
}
}
@@ -109946,16 +89280,16 @@
"type": "Identifier",
"name": "removeToolbar",
"range": [
- 48155,
- 48168
+ 37556,
+ 37569
],
"loc": {
"start": {
- "line": 1293,
+ "line": 1056,
"column": 4
},
"end": {
- "line": 1293,
+ "line": 1056,
"column": 17
}
}
@@ -109978,16 +89312,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 48184,
- 48188
+ 37585,
+ 37589
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 12
},
"end": {
- "line": 1294,
+ "line": 1057,
"column": 16
}
}
@@ -109996,47 +89330,47 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 48189,
- 48195
+ 37590,
+ 37596
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 17
},
"end": {
- "line": 1294,
+ "line": 1057,
"column": 23
}
}
},
"range": [
- 48184,
- 48195
+ 37585,
+ 37596
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 12
},
"end": {
- "line": 1294,
+ "line": 1057,
"column": 23
}
}
},
"prefix": true,
"range": [
- 48183,
- 48195
+ 37584,
+ 37596
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 11
},
"end": {
- "line": 1294,
+ "line": 1057,
"column": 23
}
}
@@ -110048,48 +89382,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 48210,
- 48217
+ 37611,
+ 37618
],
"loc": {
"start": {
- "line": 1295,
+ "line": 1058,
"column": 12
},
"end": {
- "line": 1295,
+ "line": 1058,
"column": 19
}
}
}
],
"range": [
- 48196,
- 48227
+ 37597,
+ 37628
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 24
},
"end": {
- "line": 1296,
+ "line": 1059,
"column": 9
}
}
},
"alternate": null,
"range": [
- 48180,
- 48227
+ 37581,
+ 37628
],
"loc": {
"start": {
- "line": 1294,
+ "line": 1057,
"column": 8
},
"end": {
- "line": 1296,
+ "line": 1059,
"column": 9
}
}
@@ -110105,16 +89439,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 48236,
- 48239
+ 37637,
+ 37640
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 8
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 11
}
}
@@ -110123,31 +89457,31 @@
"type": "Identifier",
"name": "remove",
"range": [
- 48240,
- 48246
+ 37641,
+ 37647
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 12
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 18
}
}
},
"range": [
- 48236,
- 48246
+ 37637,
+ 37647
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 8
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 18
}
}
@@ -110159,16 +89493,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 48247,
- 48251
+ 37648,
+ 37652
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 19
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 23
}
}
@@ -110177,62 +89511,62 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 48252,
- 48258
+ 37653,
+ 37659
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 24
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 30
}
}
},
"range": [
- 48247,
- 48258
+ 37648,
+ 37659
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 19
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 30
}
}
}
],
"range": [
- 48236,
- 48259
+ 37637,
+ 37660
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 8
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 31
}
}
},
"range": [
- 48236,
- 48260
+ 37637,
+ 37661
],
"loc": {
"start": {
- "line": 1297,
+ "line": 1060,
"column": 8
},
"end": {
- "line": 1297,
+ "line": 1060,
"column": 32
}
}
@@ -110248,16 +89582,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 48269,
- 48273
+ 37670,
+ 37674
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 8
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 12
}
}
@@ -110266,31 +89600,31 @@
"type": "Identifier",
"name": "infDiv",
"range": [
- 48274,
- 48280
+ 37675,
+ 37681
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 13
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 19
}
}
},
"range": [
- 48269,
- 48280
+ 37670,
+ 37681
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 8
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 19
}
}
@@ -110300,46 +89634,46 @@
"value": null,
"raw": "null",
"range": [
- 48283,
- 48287
+ 37684,
+ 37688
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 22
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 26
}
}
},
"range": [
- 48269,
- 48287
+ 37670,
+ 37688
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 8
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 26
}
}
},
"range": [
- 48269,
- 48288
+ 37670,
+ 37689
],
"loc": {
"start": {
- "line": 1298,
+ "line": 1061,
"column": 8
},
"end": {
- "line": 1298,
+ "line": 1061,
"column": 27
}
}
@@ -110353,16 +89687,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 48302,
- 48305
+ 37703,
+ 37706
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 12
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 15
}
}
@@ -110373,16 +89707,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 48308,
- 48312
+ 37709,
+ 37713
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 18
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 22
}
}
@@ -110391,46 +89725,46 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 48313,
- 48316
+ 37714,
+ 37717
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 23
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 26
}
}
},
"range": [
- 48308,
- 48316
+ 37709,
+ 37717
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 18
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 26
}
}
},
"range": [
- 48302,
- 48316
+ 37703,
+ 37717
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 12
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 26
}
}
@@ -110438,16 +89772,16 @@
],
"kind": "let",
"range": [
- 48298,
- 48317
+ 37699,
+ 37718
],
"loc": {
"start": {
- "line": 1300,
+ "line": 1063,
"column": 8
},
"end": {
- "line": 1300,
+ "line": 1063,
"column": 27
}
}
@@ -110461,16 +89795,16 @@
"type": "Identifier",
"name": "captions",
"range": [
- 48330,
- 48338
+ 37731,
+ 37739
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 12
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 20
}
}
@@ -110484,16 +89818,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 48341,
- 48344
+ 37742,
+ 37745
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 23
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 26
}
}
@@ -110502,31 +89836,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 48345,
- 48348
+ 37746,
+ 37749
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 27
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 30
}
}
},
"range": [
- 48341,
- 48348
+ 37742,
+ 37749
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 23
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 30
}
}
@@ -110536,16 +89870,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 48349,
- 48352
+ 37750,
+ 37753
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 31
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 34
}
}
@@ -110555,47 +89889,47 @@
"value": "caption",
"raw": "'caption'",
"range": [
- 48354,
- 48363
+ 37755,
+ 37764
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 36
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 45
}
}
}
],
"range": [
- 48341,
- 48364
+ 37742,
+ 37765
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 23
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 46
}
}
},
"range": [
- 48330,
- 48364
+ 37731,
+ 37765
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 12
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 46
}
}
@@ -110603,16 +89937,16 @@
],
"kind": "let",
"range": [
- 48326,
- 48365
+ 37727,
+ 37766
],
"loc": {
"start": {
- "line": 1301,
+ "line": 1064,
"column": 8
},
"end": {
- "line": 1301,
+ "line": 1064,
"column": 47
}
}
@@ -110629,16 +89963,16 @@
"type": "Identifier",
"name": "captions",
"range": [
- 48377,
- 48385
+ 37778,
+ 37786
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 11
},
"end": {
- "line": 1302,
+ "line": 1065,
"column": 19
}
}
@@ -110647,31 +89981,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 48386,
- 48392
+ 37787,
+ 37793
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 20
},
"end": {
- "line": 1302,
+ "line": 1065,
"column": 26
}
}
},
"range": [
- 48377,
- 48392
+ 37778,
+ 37793
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 11
},
"end": {
- "line": 1302,
+ "line": 1065,
"column": 26
}
}
@@ -110681,31 +90015,31 @@
"value": 0,
"raw": "0",
"range": [
- 48395,
- 48396
+ 37796,
+ 37797
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 29
},
"end": {
- "line": 1302,
+ "line": 1065,
"column": 30
}
}
},
"range": [
- 48377,
- 48396
+ 37778,
+ 37797
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 11
},
"end": {
- "line": 1302,
+ "line": 1065,
"column": 30
}
}
@@ -110727,16 +90061,16 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 48411,
- 48413
+ 37812,
+ 37814
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 12
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 14
}
}
@@ -110745,31 +90079,31 @@
"type": "Identifier",
"name": "forEach",
"range": [
- 48414,
- 48421
+ 37815,
+ 37822
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 15
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 22
}
}
},
"range": [
- 48411,
- 48421
+ 37812,
+ 37822
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 12
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 22
}
}
@@ -110778,31 +90112,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 48422,
- 48426
+ 37823,
+ 37827
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 23
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 27
}
}
},
"range": [
- 48411,
- 48426
+ 37812,
+ 37827
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 12
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 27
}
}
@@ -110812,262 +90146,226 @@
"type": "Identifier",
"name": "captions",
"range": [
- 48427,
- 48435
+ 37828,
+ 37836
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 28
},
"end": {
- "line": 1303,
+ "line": 1066,
"column": 36
}
}
},
{
- "type": "FunctionExpression",
+ "type": "ArrowFunctionExpression",
"id": null,
"params": [
{
"type": "Identifier",
"name": "elm",
"range": [
- 48446,
- 48449
+ 37839,
+ 37842
],
"loc": {
"start": {
- "line": 1303,
- "column": 47
+ "line": 1066,
+ "column": 39
},
"end": {
- "line": 1303,
- "column": 50
+ "line": 1066,
+ "column": 42
}
}
}
],
"body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 48469,
- 48472
- ],
- "loc": {
- "start": {
- "line": 1304,
- "column": 16
- },
- "end": {
- "line": 1304,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeChild",
- "range": [
- 48473,
- 48484
- ],
- "loc": {
- "start": {
- "line": 1304,
- "column": 20
- },
- "end": {
- "line": 1304,
- "column": 31
- }
- }
- },
- "range": [
- 48469,
- 48484
- ],
- "loc": {
- "start": {
- "line": 1304,
- "column": 16
- },
- "end": {
- "line": 1304,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "elm",
- "range": [
- 48485,
- 48488
- ],
- "loc": {
- "start": {
- "line": 1304,
- "column": 32
- },
- "end": {
- "line": 1304,
- "column": 35
- }
- }
- }
- ],
- "range": [
- 48469,
- 48489
- ],
- "loc": {
- "start": {
- "line": 1304,
- "column": 16
- },
- "end": {
- "line": 1304,
- "column": 36
- }
- }
- },
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "tbl",
"range": [
- 48469,
- 48490
+ 37846,
+ 37849
],
"loc": {
"start": {
- "line": 1304,
- "column": 16
+ "line": 1066,
+ "column": 46
},
"end": {
- "line": 1304,
- "column": 37
+ "line": 1066,
+ "column": 49
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "removeChild",
+ "range": [
+ 37850,
+ 37861
+ ],
+ "loc": {
+ "start": {
+ "line": 1066,
+ "column": 50
+ },
+ "end": {
+ "line": 1066,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 37846,
+ 37861
+ ],
+ "loc": {
+ "start": {
+ "line": 1066,
+ "column": 46
+ },
+ "end": {
+ "line": 1066,
+ "column": 61
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "elm",
+ "range": [
+ 37862,
+ 37865
+ ],
+ "loc": {
+ "start": {
+ "line": 1066,
+ "column": 62
+ },
+ "end": {
+ "line": 1066,
+ "column": 65
}
}
}
],
"range": [
- 48451,
- 48504
+ 37846,
+ 37866
],
"loc": {
"start": {
- "line": 1303,
- "column": 52
+ "line": 1066,
+ "column": 46
},
"end": {
- "line": 1305,
- "column": 13
+ "line": 1066,
+ "column": 66
}
}
},
"generator": false,
- "expression": false,
+ "expression": true,
"range": [
- 48437,
- 48504
+ 37838,
+ 37866
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 38
},
"end": {
- "line": 1305,
- "column": 13
+ "line": 1066,
+ "column": 66
}
}
}
],
"range": [
- 48411,
- 48505
+ 37812,
+ 37867
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 12
},
"end": {
- "line": 1305,
- "column": 14
+ "line": 1066,
+ "column": 67
}
}
},
"range": [
- 48411,
- 48506
+ 37812,
+ 37868
],
"loc": {
"start": {
- "line": 1303,
+ "line": 1066,
"column": 12
},
"end": {
- "line": 1305,
- "column": 15
+ "line": 1066,
+ "column": 68
}
}
}
],
"range": [
- 48397,
- 48516
+ 37798,
+ 37878
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 31
},
"end": {
- "line": 1306,
+ "line": 1067,
"column": 9
}
}
},
"alternate": null,
"range": [
- 48374,
- 48516
+ 37775,
+ 37878
],
"loc": {
"start": {
- "line": 1302,
+ "line": 1065,
"column": 8
},
"end": {
- "line": 1306,
+ "line": 1067,
"column": 9
}
}
}
],
"range": [
- 48170,
- 48522
+ 37571,
+ 37884
],
"loc": {
"start": {
- "line": 1293,
+ "line": 1056,
"column": 19
},
"end": {
- "line": 1307,
+ "line": 1068,
"column": 5
}
}
@@ -111075,16 +90373,16 @@
"generator": false,
"expression": false,
"range": [
- 48168,
- 48522
+ 37569,
+ 37884
],
"loc": {
"start": {
- "line": 1293,
+ "line": 1056,
"column": 17
},
"end": {
- "line": 1307,
+ "line": 1068,
"column": 5
}
}
@@ -111092,16 +90390,16 @@
"kind": "method",
"computed": false,
"range": [
- 48155,
- 48522
+ 37556,
+ 37884
],
"loc": {
"start": {
- "line": 1293,
+ "line": 1056,
"column": 4
},
"end": {
- "line": 1307,
+ "line": 1068,
"column": 5
}
},
@@ -111110,16 +90408,16 @@
"type": "Block",
"value": "*\n * Remove toolbar container element\n ",
"range": [
- 48099,
- 48150
+ 37500,
+ 37551
],
"loc": {
"start": {
- "line": 1290,
+ "line": 1053,
"column": 4
},
"end": {
- "line": 1292,
+ "line": 1055,
"column": 7
}
}
@@ -111130,16 +90428,16 @@
"type": "Block",
"value": "*\n * Remove all the external column filters\n ",
"range": [
- 48528,
- 48585
+ 37890,
+ 37947
],
"loc": {
"start": {
- "line": 1309,
+ "line": 1070,
"column": 4
},
"end": {
- "line": 1311,
+ "line": 1072,
"column": 7
}
}
@@ -111153,16 +90451,16 @@
"type": "Identifier",
"name": "removeExternalFlts",
"range": [
- 48590,
- 48608
+ 37952,
+ 37970
],
"loc": {
"start": {
- "line": 1312,
+ "line": 1073,
"column": 4
},
"end": {
- "line": 1312,
+ "line": 1073,
"column": 22
}
}
@@ -111177,164 +90475,74 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 48624,
- 48628
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 12
- },
- "end": {
- "line": 1313,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isExternalFlt",
- "range": [
- 48629,
- 48642
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 17
- },
- "end": {
- "line": 1313,
- "column": 30
- }
- }
- },
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 48624,
- 48642
+ 37986,
+ 37990
],
"loc": {
"start": {
- "line": 1313,
+ "line": 1074,
"column": 12
},
"end": {
- "line": 1313,
+ "line": 1074,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 37991,
+ 38004
+ ],
+ "loc": {
+ "start": {
+ "line": 1074,
+ "column": 17
+ },
+ "end": {
+ "line": 1074,
"column": 30
}
}
},
- "prefix": true,
"range": [
- 48623,
- 48642
+ 37986,
+ 38004
],
"loc": {
"start": {
- "line": 1313,
- "column": 11
+ "line": 1074,
+ "column": 12
},
"end": {
- "line": 1313,
+ "line": 1074,
"column": 30
}
}
},
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 48647,
- 48651
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 35
- },
- "end": {
- "line": 1313,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 48652,
- 48669
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 40
- },
- "end": {
- "line": 1313,
- "column": 57
- }
- }
- },
- "range": [
- 48647,
- 48669
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 35
- },
- "end": {
- "line": 1313,
- "column": 57
- }
- }
- },
- "prefix": true,
- "range": [
- 48646,
- 48669
- ],
- "loc": {
- "start": {
- "line": 1313,
- "column": 34
- },
- "end": {
- "line": 1313,
- "column": 57
- }
- }
- },
+ "prefix": true,
"range": [
- 48623,
- 48669
+ 37985,
+ 38004
],
"loc": {
"start": {
- "line": 1313,
+ "line": 1074,
"column": 11
},
"end": {
- "line": 1313,
- "column": 57
+ "line": 1074,
+ "column": 30
}
}
},
@@ -111345,48 +90553,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 48684,
- 48691
+ 38019,
+ 38026
],
"loc": {
"start": {
- "line": 1314,
+ "line": 1075,
"column": 12
},
"end": {
- "line": 1314,
+ "line": 1075,
"column": 19
}
}
}
],
"range": [
- 48670,
- 48701
+ 38005,
+ 38036
],
"loc": {
"start": {
- "line": 1313,
- "column": 58
+ "line": 1074,
+ "column": 31
},
"end": {
- "line": 1315,
+ "line": 1076,
"column": 9
}
}
},
"alternate": null,
"range": [
- 48620,
- 48701
+ 37982,
+ 38036
],
"loc": {
"start": {
- "line": 1313,
+ "line": 1074,
"column": 8
},
"end": {
- "line": 1315,
+ "line": 1076,
"column": 9
}
}
@@ -111400,16 +90608,16 @@
"type": "Identifier",
"name": "ids",
"range": [
- 48714,
- 48717
+ 38049,
+ 38052
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 12
},
"end": {
- "line": 1316,
+ "line": 1077,
"column": 15
}
}
@@ -111420,16 +90628,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 48720,
- 48724
+ 38055,
+ 38059
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 18
},
"end": {
- "line": 1316,
+ "line": 1077,
"column": 22
}
}
@@ -111438,46 +90646,46 @@
"type": "Identifier",
"name": "externalFltTgtIds",
"range": [
- 48725,
- 48742
+ 38060,
+ 38077
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 23
},
"end": {
- "line": 1316,
+ "line": 1077,
"column": 40
}
}
},
"range": [
- 48720,
- 48742
+ 38055,
+ 38077
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 18
},
"end": {
- "line": 1316,
+ "line": 1077,
"column": 40
}
}
},
"range": [
- 48714,
- 48742
+ 38049,
+ 38077
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 12
},
"end": {
- "line": 1316,
+ "line": 1077,
"column": 40
}
}
@@ -111488,16 +90696,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 48756,
- 48759
+ 38091,
+ 38094
],
"loc": {
"start": {
- "line": 1317,
+ "line": 1078,
"column": 12
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 15
}
}
@@ -111509,16 +90717,16 @@
"type": "Identifier",
"name": "ids",
"range": [
- 48762,
- 48765
+ 38097,
+ 38100
],
"loc": {
"start": {
- "line": 1317,
+ "line": 1078,
"column": 18
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 21
}
}
@@ -111527,46 +90735,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 48766,
- 48772
+ 38101,
+ 38107
],
"loc": {
"start": {
- "line": 1317,
+ "line": 1078,
"column": 22
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 28
}
}
},
"range": [
- 48762,
- 48772
+ 38097,
+ 38107
],
"loc": {
"start": {
- "line": 1317,
+ "line": 1078,
"column": 18
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 28
}
}
},
"range": [
- 48756,
- 48772
+ 38091,
+ 38107
],
"loc": {
"start": {
- "line": 1317,
+ "line": 1078,
"column": 12
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 28
}
}
@@ -111574,16 +90782,16 @@
],
"kind": "let",
"range": [
- 48710,
- 48773
+ 38045,
+ 38108
],
"loc": {
"start": {
- "line": 1316,
+ "line": 1077,
"column": 8
},
"end": {
- "line": 1317,
+ "line": 1078,
"column": 29
}
}
@@ -111599,16 +90807,16 @@
"type": "Identifier",
"name": "ct",
"range": [
- 48790,
- 48792
+ 38125,
+ 38127
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 16
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 18
}
}
@@ -111618,31 +90826,31 @@
"value": 0,
"raw": "0",
"range": [
- 48793,
- 48794
+ 38128,
+ 38129
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 19
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 20
}
}
},
"range": [
- 48790,
- 48794
+ 38125,
+ 38129
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 16
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 20
}
}
@@ -111650,16 +90858,16 @@
],
"kind": "let",
"range": [
- 48786,
- 48794
+ 38121,
+ 38129
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 12
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 20
}
}
@@ -111671,16 +90879,16 @@
"type": "Identifier",
"name": "ct",
"range": [
- 48796,
- 48798
+ 38131,
+ 38133
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 22
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 24
}
}
@@ -111689,31 +90897,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 48799,
- 48802
+ 38134,
+ 38137
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 25
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 28
}
}
},
"range": [
- 48796,
- 48802
+ 38131,
+ 38137
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 22
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 28
}
}
@@ -111725,32 +90933,32 @@
"type": "Identifier",
"name": "ct",
"range": [
- 48804,
- 48806
+ 38139,
+ 38141
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 30
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 32
}
}
},
"prefix": false,
"range": [
- 48804,
- 48808
+ 38139,
+ 38143
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 30
},
"end": {
- "line": 1318,
+ "line": 1079,
"column": 34
}
}
@@ -111767,16 +90975,16 @@
"type": "Identifier",
"name": "externalFltTgtId",
"range": [
- 48827,
- 48843
+ 38162,
+ 38178
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 16
},
"end": {
- "line": 1319,
+ "line": 1080,
"column": 32
}
}
@@ -111788,16 +90996,16 @@
"type": "Identifier",
"name": "ids",
"range": [
- 48846,
- 48849
+ 38181,
+ 38184
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 35
},
"end": {
- "line": 1319,
+ "line": 1080,
"column": 38
}
}
@@ -111806,46 +91014,46 @@
"type": "Identifier",
"name": "ct",
"range": [
- 48850,
- 48852
+ 38185,
+ 38187
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 39
},
"end": {
- "line": 1319,
+ "line": 1080,
"column": 41
}
}
},
"range": [
- 48846,
- 48853
+ 38181,
+ 38188
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 35
},
"end": {
- "line": 1319,
+ "line": 1080,
"column": 42
}
}
},
"range": [
- 48827,
- 48853
+ 38162,
+ 38188
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 16
},
"end": {
- "line": 1319,
+ "line": 1080,
"column": 42
}
}
@@ -111856,16 +91064,16 @@
"type": "Identifier",
"name": "externalFlt",
"range": [
- 48871,
- 48882
+ 38206,
+ 38217
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 16
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 27
}
}
@@ -111879,16 +91087,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 48885,
- 48888
+ 38220,
+ 38223
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 30
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 33
}
}
@@ -111897,31 +91105,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 48889,
- 48891
+ 38224,
+ 38226
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 34
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 36
}
}
},
"range": [
- 48885,
- 48891
+ 38220,
+ 38226
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 30
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 36
}
}
@@ -111931,47 +91139,47 @@
"type": "Identifier",
"name": "externalFltTgtId",
"range": [
- 48892,
- 48908
+ 38227,
+ 38243
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 37
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 53
}
}
}
],
"range": [
- 48885,
- 48909
+ 38220,
+ 38244
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 30
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 54
}
}
},
"range": [
- 48871,
- 48909
+ 38206,
+ 38244
],
"loc": {
"start": {
- "line": 1320,
+ "line": 1081,
"column": 16
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 54
}
}
@@ -111979,16 +91187,16 @@
],
"kind": "let",
"range": [
- 48823,
- 48910
+ 38158,
+ 38245
],
"loc": {
"start": {
- "line": 1319,
+ "line": 1080,
"column": 12
},
"end": {
- "line": 1320,
+ "line": 1081,
"column": 55
}
}
@@ -111999,16 +91207,16 @@
"type": "Identifier",
"name": "externalFlt",
"range": [
- 48926,
- 48937
+ 38261,
+ 38272
],
"loc": {
"start": {
- "line": 1321,
+ "line": 1082,
"column": 15
},
"end": {
- "line": 1321,
+ "line": 1082,
"column": 26
}
}
@@ -112028,16 +91236,16 @@
"type": "Identifier",
"name": "externalFlt",
"range": [
- 48956,
- 48967
+ 38291,
+ 38302
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 16
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 27
}
}
@@ -112046,31 +91254,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 48968,
- 48977
+ 38303,
+ 38312
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 28
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 37
}
}
},
"range": [
- 48956,
- 48977
+ 38291,
+ 38312
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 16
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 37
}
}
@@ -112080,125 +91288,125 @@
"value": "",
"raw": "''",
"range": [
- 48980,
- 48982
+ 38315,
+ 38317
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 40
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 42
}
}
},
"range": [
- 48956,
- 48982
+ 38291,
+ 38317
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 16
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 42
}
}
},
"range": [
- 48956,
- 48983
+ 38291,
+ 38318
],
"loc": {
"start": {
- "line": 1322,
+ "line": 1083,
"column": 16
},
"end": {
- "line": 1322,
+ "line": 1083,
"column": 43
}
}
}
],
"range": [
- 48938,
- 48997
+ 38273,
+ 38332
],
"loc": {
"start": {
- "line": 1321,
+ "line": 1082,
"column": 27
},
"end": {
- "line": 1323,
+ "line": 1084,
"column": 13
}
}
},
"alternate": null,
"range": [
- 48923,
- 48997
+ 38258,
+ 38332
],
"loc": {
"start": {
- "line": 1321,
+ "line": 1082,
"column": 12
},
"end": {
- "line": 1323,
+ "line": 1084,
"column": 13
}
}
}
],
"range": [
- 48809,
- 49007
+ 38144,
+ 38342
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 35
},
"end": {
- "line": 1324,
+ "line": 1085,
"column": 9
}
}
},
"range": [
- 48782,
- 49007
+ 38117,
+ 38342
],
"loc": {
"start": {
- "line": 1318,
+ "line": 1079,
"column": 8
},
"end": {
- "line": 1324,
+ "line": 1085,
"column": 9
}
}
}
],
"range": [
- 48610,
- 49013
+ 37972,
+ 38348
],
"loc": {
"start": {
- "line": 1312,
+ "line": 1073,
"column": 24
},
"end": {
- "line": 1325,
+ "line": 1086,
"column": 5
}
}
@@ -112206,16 +91414,16 @@
"generator": false,
"expression": false,
"range": [
- 48608,
- 49013
+ 37970,
+ 38348
],
"loc": {
"start": {
- "line": 1312,
+ "line": 1073,
"column": 22
},
"end": {
- "line": 1325,
+ "line": 1086,
"column": 5
}
}
@@ -112223,16 +91431,16 @@
"kind": "method",
"computed": false,
"range": [
- 48590,
- 49013
+ 37952,
+ 38348
],
"loc": {
"start": {
- "line": 1312,
+ "line": 1073,
"column": 4
},
"end": {
- "line": 1325,
+ "line": 1086,
"column": 5
}
},
@@ -112241,16 +91449,16 @@
"type": "Block",
"value": "*\n * Remove all the external column filters\n ",
"range": [
- 48528,
- 48585
+ 37890,
+ 37947
],
"loc": {
"start": {
- "line": 1309,
+ "line": 1070,
"column": 4
},
"end": {
- "line": 1311,
+ "line": 1072,
"column": 7
}
}
@@ -112261,16 +91469,16 @@
"type": "Block",
"value": "*\n * Check if given column implements a filter with custom options\n * @param {Number} colIndex Column's index\n * @return {Boolean}\n ",
"range": [
- 49019,
- 49173
+ 38354,
+ 38508
],
"loc": {
"start": {
- "line": 1327,
+ "line": 1088,
"column": 4
},
"end": {
- "line": 1331,
+ "line": 1092,
"column": 7
}
}
@@ -112284,16 +91492,16 @@
"type": "Identifier",
"name": "isCustomOptions",
"range": [
- 49178,
- 49193
+ 38513,
+ 38528
],
"loc": {
"start": {
- "line": 1332,
+ "line": 1093,
"column": 4
},
"end": {
- "line": 1332,
+ "line": 1093,
"column": 19
}
}
@@ -112306,16 +91514,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49194,
- 49202
+ 38529,
+ 38537
],
"loc": {
"start": {
- "line": 1332,
+ "line": 1093,
"column": 20
},
"end": {
- "line": 1332,
+ "line": 1093,
"column": 28
}
}
@@ -112335,16 +91543,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 49221,
- 49225
+ 38556,
+ 38560
],
"loc": {
"start": {
- "line": 1333,
+ "line": 1094,
"column": 15
},
"end": {
- "line": 1333,
+ "line": 1094,
"column": 19
}
}
@@ -112353,31 +91561,31 @@
"type": "Identifier",
"name": "hasCustomOptions",
"range": [
- 49226,
- 49242
+ 38561,
+ 38577
],
"loc": {
"start": {
- "line": 1333,
+ "line": 1094,
"column": 20
},
"end": {
- "line": 1333,
+ "line": 1094,
"column": 36
}
}
},
"range": [
- 49221,
- 49242
+ 38556,
+ 38577
],
"loc": {
"start": {
- "line": 1333,
+ "line": 1094,
"column": 15
},
"end": {
- "line": 1333,
+ "line": 1094,
"column": 36
}
}
@@ -112399,16 +91607,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 49258,
- 49262
+ 38593,
+ 38597
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 16
}
}
@@ -112417,31 +91625,31 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49263,
- 49276
+ 38598,
+ 38611
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 17
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 30
}
}
},
"range": [
- 49258,
- 49276
+ 38593,
+ 38611
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 30
}
}
@@ -112450,31 +91658,31 @@
"type": "Identifier",
"name": "cols",
"range": [
- 49277,
- 49281
+ 38612,
+ 38616
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 31
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 35
}
}
},
"range": [
- 49258,
- 49281
+ 38593,
+ 38616
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 35
}
}
@@ -112483,31 +91691,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 49282,
- 49289
+ 38617,
+ 38624
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 36
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 43
}
}
},
"range": [
- 49258,
- 49289
+ 38593,
+ 38624
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 43
}
}
@@ -112517,32 +91725,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49290,
- 49298
+ 38625,
+ 38633
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 44
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 52
}
}
}
],
"range": [
- 49258,
- 49299
+ 38593,
+ 38634
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 53
}
}
@@ -112555,93 +91763,93 @@
"value": 1,
"raw": "1",
"range": [
- 49304,
- 49305
+ 38639,
+ 38640
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 58
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 59
}
}
},
"prefix": true,
"range": [
- 49303,
- 49305
+ 38638,
+ 38640
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 57
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 59
}
}
},
"range": [
- 49258,
- 49305
+ 38593,
+ 38640
],
"loc": {
"start": {
- "line": 1334,
+ "line": 1095,
"column": 12
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 59
}
}
},
"range": [
- 49221,
- 49305
+ 38556,
+ 38640
],
"loc": {
"start": {
- "line": 1333,
+ "line": 1094,
"column": 15
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 59
}
}
},
"range": [
- 49214,
- 49306
+ 38549,
+ 38641
],
"loc": {
"start": {
- "line": 1333,
+ "line": 1094,
"column": 8
},
"end": {
- "line": 1334,
+ "line": 1095,
"column": 60
}
}
}
],
"range": [
- 49204,
- 49312
+ 38539,
+ 38647
],
"loc": {
"start": {
- "line": 1332,
+ "line": 1093,
"column": 30
},
"end": {
- "line": 1335,
+ "line": 1096,
"column": 5
}
}
@@ -112649,16 +91857,16 @@
"generator": false,
"expression": false,
"range": [
- 49193,
- 49312
+ 38528,
+ 38647
],
"loc": {
"start": {
- "line": 1332,
+ "line": 1093,
"column": 19
},
"end": {
- "line": 1335,
+ "line": 1096,
"column": 5
}
}
@@ -112666,16 +91874,16 @@
"kind": "method",
"computed": false,
"range": [
- 49178,
- 49312
+ 38513,
+ 38647
],
"loc": {
"start": {
- "line": 1332,
+ "line": 1093,
"column": 4
},
"end": {
- "line": 1335,
+ "line": 1096,
"column": 5
}
},
@@ -112684,16 +91892,16 @@
"type": "Block",
"value": "*\n * Check if given column implements a filter with custom options\n * @param {Number} colIndex Column's index\n * @return {Boolean}\n ",
"range": [
- 49019,
- 49173
+ 38354,
+ 38508
],
"loc": {
"start": {
- "line": 1327,
+ "line": 1088,
"column": 4
},
"end": {
- "line": 1331,
+ "line": 1092,
"column": 7
}
}
@@ -112704,16 +91912,16 @@
"type": "Block",
"value": "*\n * Returns an array [[value0, value1 ...],[text0, text1 ...]] with the\n * custom options values and texts\n * @param {Number} colIndex Column's index\n * @return {Array}\n ",
"range": [
- 49318,
- 49514
+ 38653,
+ 38849
],
"loc": {
"start": {
- "line": 1337,
+ "line": 1098,
"column": 4
},
"end": {
- "line": 1342,
+ "line": 1103,
"column": 7
}
}
@@ -112727,16 +91935,16 @@
"type": "Identifier",
"name": "getCustomOptions",
"range": [
- 49519,
- 49535
+ 38854,
+ 38870
],
"loc": {
"start": {
- "line": 1343,
+ "line": 1104,
"column": 4
},
"end": {
- "line": 1343,
+ "line": 1104,
"column": 20
}
}
@@ -112749,16 +91957,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49536,
- 49544
+ 38871,
+ 38879
],
"loc": {
"start": {
- "line": 1343,
+ "line": 1104,
"column": 21
},
"end": {
- "line": 1343,
+ "line": 1104,
"column": 29
}
}
@@ -112781,16 +91989,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 49558,
- 49563
+ 38893,
+ 38898
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 11
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 16
}
}
@@ -112799,31 +92007,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 49564,
- 49571
+ 38899,
+ 38906
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 17
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 24
}
}
},
"range": [
- 49558,
- 49571
+ 38893,
+ 38906
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 11
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 24
}
}
@@ -112833,32 +92041,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49572,
- 49580
+ 38907,
+ 38915
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 25
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 33
}
}
}
],
"range": [
- 49558,
- 49581
+ 38893,
+ 38916
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 11
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 34
}
}
@@ -112874,16 +92082,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 49586,
- 49590
+ 38921,
+ 38925
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 39
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 43
}
}
@@ -112892,31 +92100,31 @@
"type": "Identifier",
"name": "isCustomOptions",
"range": [
- 49591,
- 49606
+ 38926,
+ 38941
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 44
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 59
}
}
},
"range": [
- 49586,
- 49606
+ 38921,
+ 38941
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 39
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 59
}
}
@@ -112926,63 +92134,63 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49607,
- 49615
+ 38942,
+ 38950
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 60
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 68
}
}
}
],
"range": [
- 49586,
- 49616
+ 38921,
+ 38951
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 39
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 69
}
}
},
"prefix": true,
"range": [
- 49585,
- 49616
+ 38920,
+ 38951
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 38
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 69
}
}
},
"range": [
- 49558,
- 49616
+ 38893,
+ 38951
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 11
},
"end": {
- "line": 1344,
+ "line": 1105,
"column": 69
}
}
@@ -112994,48 +92202,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 49631,
- 49638
+ 38966,
+ 38973
],
"loc": {
"start": {
- "line": 1345,
+ "line": 1106,
"column": 12
},
"end": {
- "line": 1345,
+ "line": 1106,
"column": 19
}
}
}
],
"range": [
- 49617,
- 49648
+ 38952,
+ 38983
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 70
},
"end": {
- "line": 1346,
+ "line": 1107,
"column": 9
}
}
},
"alternate": null,
"range": [
- 49555,
- 49648
+ 38890,
+ 38983
],
"loc": {
"start": {
- "line": 1344,
+ "line": 1105,
"column": 8
},
"end": {
- "line": 1346,
+ "line": 1107,
"column": 9
}
}
@@ -113049,16 +92257,16 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49662,
- 49675
+ 38997,
+ 39010
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 12
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 25
}
}
@@ -113069,16 +92277,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 49678,
- 49682
+ 39013,
+ 39017
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 28
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 32
}
}
@@ -113087,46 +92295,46 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49683,
- 49696
+ 39018,
+ 39031
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 33
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 46
}
}
},
"range": [
- 49678,
- 49696
+ 39013,
+ 39031
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 28
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 46
}
}
},
"range": [
- 49662,
- 49696
+ 38997,
+ 39031
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 12
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 46
}
}
@@ -113134,16 +92342,16 @@
],
"kind": "let",
"range": [
- 49658,
- 49697
+ 38993,
+ 39032
],
"loc": {
"start": {
- "line": 1348,
+ "line": 1109,
"column": 8
},
"end": {
- "line": 1348,
+ "line": 1109,
"column": 47
}
}
@@ -113157,16 +92365,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 49710,
- 49714
+ 39045,
+ 39049
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 12
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 16
}
}
@@ -113178,16 +92386,16 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49717,
- 49730
+ 39052,
+ 39065
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 19
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 32
}
}
@@ -113196,46 +92404,46 @@
"type": "Identifier",
"name": "cols",
"range": [
- 49731,
- 49735
+ 39066,
+ 39070
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 33
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 37
}
}
},
"range": [
- 49717,
- 49735
+ 39052,
+ 39070
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 19
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 37
}
}
},
"range": [
- 49710,
- 49735
+ 39045,
+ 39070
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 12
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 37
}
}
@@ -113243,16 +92451,16 @@
],
"kind": "let",
"range": [
- 49706,
- 49736
+ 39041,
+ 39071
],
"loc": {
"start": {
- "line": 1349,
+ "line": 1110,
"column": 8
},
"end": {
- "line": 1349,
+ "line": 1110,
"column": 38
}
}
@@ -113266,16 +92474,16 @@
"type": "Identifier",
"name": "optTxt",
"range": [
- 49749,
- 49755
+ 39084,
+ 39090
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 12
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 18
}
}
@@ -113284,31 +92492,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 49758,
- 49760
+ 39093,
+ 39095
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 21
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 23
}
}
},
"range": [
- 49749,
- 49760
+ 39084,
+ 39095
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 12
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 23
}
}
@@ -113319,16 +92527,16 @@
"type": "Identifier",
"name": "optArray",
"range": [
- 49762,
- 49770
+ 39097,
+ 39105
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 25
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 33
}
}
@@ -113337,31 +92545,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 49773,
- 49775
+ 39108,
+ 39110
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 36
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 38
}
}
},
"range": [
- 49762,
- 49775
+ 39097,
+ 39110
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 25
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 38
}
}
@@ -113369,16 +92577,16 @@
],
"kind": "let",
"range": [
- 49745,
- 49776
+ 39080,
+ 39111
],
"loc": {
"start": {
- "line": 1350,
+ "line": 1111,
"column": 8
},
"end": {
- "line": 1350,
+ "line": 1111,
"column": 39
}
}
@@ -113392,16 +92600,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 49789,
- 49794
+ 39124,
+ 39129
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 12
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 17
}
}
@@ -113415,16 +92623,16 @@
"type": "Identifier",
"name": "cols",
"range": [
- 49797,
- 49801
+ 39132,
+ 39136
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 20
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 24
}
}
@@ -113433,31 +92641,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 49802,
- 49809
+ 39137,
+ 39144
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 25
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 32
}
}
},
"range": [
- 49797,
- 49809
+ 39132,
+ 39144
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 20
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 32
}
}
@@ -113467,47 +92675,47 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 49810,
- 49818
+ 39145,
+ 39153
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 33
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 41
}
}
}
],
"range": [
- 49797,
- 49819
+ 39132,
+ 39154
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 20
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 42
}
}
},
"range": [
- 49789,
- 49819
+ 39124,
+ 39154
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 12
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 42
}
}
@@ -113515,16 +92723,16 @@
],
"kind": "let",
"range": [
- 49785,
- 49820
+ 39120,
+ 39155
],
"loc": {
"start": {
- "line": 1351,
+ "line": 1112,
"column": 8
},
"end": {
- "line": 1351,
+ "line": 1112,
"column": 43
}
}
@@ -113538,16 +92746,16 @@
"type": "Identifier",
"name": "slcValues",
"range": [
- 49833,
- 49842
+ 39168,
+ 39177
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 12
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 21
}
}
@@ -113562,16 +92770,16 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49845,
- 49858
+ 39180,
+ 39193
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 24
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 37
}
}
@@ -113580,31 +92788,31 @@
"type": "Identifier",
"name": "values",
"range": [
- 49859,
- 49865
+ 39194,
+ 39200
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 38
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 44
}
}
},
"range": [
- 49845,
- 49865
+ 39180,
+ 39200
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 24
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 44
}
}
@@ -113613,46 +92821,46 @@
"type": "Identifier",
"name": "index",
"range": [
- 49866,
- 49871
+ 39201,
+ 39206
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 45
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 50
}
}
},
"range": [
- 49845,
- 49872
+ 39180,
+ 39207
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 24
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 51
}
}
},
"range": [
- 49833,
- 49872
+ 39168,
+ 39207
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 12
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 51
}
}
@@ -113660,16 +92868,16 @@
],
"kind": "let",
"range": [
- 49829,
- 49873
+ 39164,
+ 39208
],
"loc": {
"start": {
- "line": 1352,
+ "line": 1113,
"column": 8
},
"end": {
- "line": 1352,
+ "line": 1113,
"column": 52
}
}
@@ -113683,16 +92891,16 @@
"type": "Identifier",
"name": "slcTexts",
"range": [
- 49886,
- 49894
+ 39221,
+ 39229
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 12
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 20
}
}
@@ -113707,16 +92915,16 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49897,
- 49910
+ 39232,
+ 39245
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 23
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 36
}
}
@@ -113725,31 +92933,31 @@
"type": "Identifier",
"name": "texts",
"range": [
- 49911,
- 49916
+ 39246,
+ 39251
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 37
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 42
}
}
},
"range": [
- 49897,
- 49916
+ 39232,
+ 39251
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 23
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 42
}
}
@@ -113758,46 +92966,46 @@
"type": "Identifier",
"name": "index",
"range": [
- 49917,
- 49922
+ 39252,
+ 39257
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 43
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 48
}
}
},
"range": [
- 49897,
- 49923
+ 39232,
+ 39258
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 23
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 49
}
}
},
"range": [
- 49886,
- 49923
+ 39221,
+ 39258
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 12
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 49
}
}
@@ -113805,16 +93013,16 @@
],
"kind": "let",
"range": [
- 49882,
- 49924
+ 39217,
+ 39259
],
"loc": {
"start": {
- "line": 1353,
+ "line": 1114,
"column": 8
},
"end": {
- "line": 1353,
+ "line": 1114,
"column": 50
}
}
@@ -113828,16 +93036,16 @@
"type": "Identifier",
"name": "slcSort",
"range": [
- 49937,
- 49944
+ 39272,
+ 39279
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 12
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 19
}
}
@@ -113852,16 +93060,16 @@
"type": "Identifier",
"name": "customOptions",
"range": [
- 49947,
- 49960
+ 39282,
+ 39295
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 22
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 35
}
}
@@ -113870,31 +93078,31 @@
"type": "Identifier",
"name": "sorts",
"range": [
- 49961,
- 49966
+ 39296,
+ 39301
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 36
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 41
}
}
},
"range": [
- 49947,
- 49966
+ 39282,
+ 39301
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 22
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 41
}
}
@@ -113903,46 +93111,46 @@
"type": "Identifier",
"name": "index",
"range": [
- 49967,
- 49972
+ 39302,
+ 39307
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 42
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 47
}
}
},
"range": [
- 49947,
- 49973
+ 39282,
+ 39308
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 22
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 48
}
}
},
"range": [
- 49937,
- 49973
+ 39272,
+ 39308
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 12
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 48
}
}
@@ -113950,16 +93158,16 @@
],
"kind": "let",
"range": [
- 49933,
- 49974
+ 39268,
+ 39309
],
"loc": {
"start": {
- "line": 1354,
+ "line": 1115,
"column": 8
},
"end": {
- "line": 1354,
+ "line": 1115,
"column": 49
}
}
@@ -113975,16 +93183,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 49992,
- 49993
+ 39327,
+ 39328
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 16
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 17
}
}
@@ -113994,31 +93202,31 @@
"value": 0,
"raw": "0",
"range": [
- 49994,
- 49995
+ 39329,
+ 39330
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 18
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 19
}
}
},
"range": [
- 49992,
- 49995
+ 39327,
+ 39330
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 16
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 19
}
}
@@ -114029,16 +93237,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 49997,
- 50000
+ 39332,
+ 39335
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 21
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 24
}
}
@@ -114050,16 +93258,16 @@
"type": "Identifier",
"name": "slcValues",
"range": [
- 50001,
- 50010
+ 39336,
+ 39345
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 25
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 34
}
}
@@ -114068,46 +93276,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 50011,
- 50017
+ 39346,
+ 39352
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 35
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 41
}
}
},
"range": [
- 50001,
- 50017
+ 39336,
+ 39352
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 25
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 41
}
}
},
"range": [
- 49997,
- 50017
+ 39332,
+ 39352
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 21
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 41
}
}
@@ -114115,16 +93323,16 @@
],
"kind": "let",
"range": [
- 49988,
- 50017
+ 39323,
+ 39352
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 12
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 41
}
}
@@ -114136,16 +93344,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 50019,
- 50020
+ 39354,
+ 39355
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 43
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 44
}
}
@@ -114154,31 +93362,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 50021,
- 50024
+ 39356,
+ 39359
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 45
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 48
}
}
},
"range": [
- 50019,
- 50024
+ 39354,
+ 39359
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 43
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 48
}
}
@@ -114190,32 +93398,32 @@
"type": "Identifier",
"name": "r",
"range": [
- 50026,
- 50027
+ 39361,
+ 39362
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 50
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 51
}
}
},
"prefix": false,
"range": [
- 50026,
- 50029
+ 39361,
+ 39364
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 50
},
"end": {
- "line": 1356,
+ "line": 1117,
"column": 53
}
}
@@ -114234,16 +93442,16 @@
"type": "Identifier",
"name": "optArray",
"range": [
- 50044,
- 50052
+ 39379,
+ 39387
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 12
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 20
}
}
@@ -114252,31 +93460,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 50053,
- 50057
+ 39388,
+ 39392
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 21
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 25
}
}
},
"range": [
- 50044,
- 50057
+ 39379,
+ 39392
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 12
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 25
}
}
@@ -114289,16 +93497,16 @@
"type": "Identifier",
"name": "slcValues",
"range": [
- 50058,
- 50067
+ 39393,
+ 39402
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 26
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 35
}
}
@@ -114307,62 +93515,62 @@
"type": "Identifier",
"name": "r",
"range": [
- 50068,
- 50069
+ 39403,
+ 39404
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 36
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 37
}
}
},
"range": [
- 50058,
- 50070
+ 39393,
+ 39405
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 26
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 38
}
}
}
],
"range": [
- 50044,
- 50071
+ 39379,
+ 39406
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 12
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 39
}
}
},
"range": [
- 50044,
- 50072
+ 39379,
+ 39407
],
"loc": {
"start": {
- "line": 1357,
+ "line": 1118,
"column": 12
},
"end": {
- "line": 1357,
+ "line": 1118,
"column": 40
}
}
@@ -114376,16 +93584,16 @@
"type": "Identifier",
"name": "slcTexts",
"range": [
- 50088,
- 50096
+ 39423,
+ 39431
],
"loc": {
"start": {
- "line": 1358,
+ "line": 1119,
"column": 15
},
"end": {
- "line": 1358,
+ "line": 1119,
"column": 23
}
}
@@ -114394,31 +93602,31 @@
"type": "Identifier",
"name": "r",
"range": [
- 50097,
- 50098
+ 39432,
+ 39433
],
"loc": {
"start": {
- "line": 1358,
+ "line": 1119,
"column": 24
},
"end": {
- "line": 1358,
+ "line": 1119,
"column": 25
}
}
},
"range": [
- 50088,
- 50099
+ 39423,
+ 39434
],
"loc": {
"start": {
- "line": 1358,
+ "line": 1119,
"column": 15
},
"end": {
- "line": 1358,
+ "line": 1119,
"column": 26
}
}
@@ -114437,16 +93645,16 @@
"type": "Identifier",
"name": "optTxt",
"range": [
- 50118,
- 50124
+ 39453,
+ 39459
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 16
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 22
}
}
@@ -114455,31 +93663,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 50125,
- 50129
+ 39460,
+ 39464
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 23
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 27
}
}
},
"range": [
- 50118,
- 50129
+ 39453,
+ 39464
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 16
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 27
}
}
@@ -114492,16 +93700,16 @@
"type": "Identifier",
"name": "slcTexts",
"range": [
- 50130,
- 50138
+ 39465,
+ 39473
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 28
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 36
}
}
@@ -114510,78 +93718,78 @@
"type": "Identifier",
"name": "r",
"range": [
- 50139,
- 50140
+ 39474,
+ 39475
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 37
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 38
}
}
},
"range": [
- 50130,
- 50141
+ 39465,
+ 39476
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 28
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 39
}
}
}
],
"range": [
- 50118,
- 50142
+ 39453,
+ 39477
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 16
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 40
}
}
},
"range": [
- 50118,
- 50143
+ 39453,
+ 39478
],
"loc": {
"start": {
- "line": 1359,
+ "line": 1120,
"column": 16
},
"end": {
- "line": 1359,
+ "line": 1120,
"column": 41
}
}
}
],
"range": [
- 50100,
- 50157
+ 39435,
+ 39492
],
"loc": {
"start": {
- "line": 1358,
+ "line": 1119,
"column": 27
},
"end": {
- "line": 1360,
+ "line": 1121,
"column": 13
}
}
@@ -114600,16 +93808,16 @@
"type": "Identifier",
"name": "optTxt",
"range": [
- 50181,
- 50187
+ 39516,
+ 39522
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 16
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 22
}
}
@@ -114618,31 +93826,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 50188,
- 50192
+ 39523,
+ 39527
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 23
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 27
}
}
},
"range": [
- 50181,
- 50192
+ 39516,
+ 39527
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 16
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 27
}
}
@@ -114655,16 +93863,16 @@
"type": "Identifier",
"name": "slcValues",
"range": [
- 50193,
- 50202
+ 39528,
+ 39537
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 28
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 37
}
}
@@ -114673,124 +93881,124 @@
"type": "Identifier",
"name": "r",
"range": [
- 50203,
- 50204
+ 39538,
+ 39539
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 38
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 39
}
}
},
"range": [
- 50193,
- 50205
+ 39528,
+ 39540
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 28
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 40
}
}
}
],
"range": [
- 50181,
- 50206
+ 39516,
+ 39541
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 16
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 41
}
}
},
"range": [
- 50181,
- 50207
+ 39516,
+ 39542
],
"loc": {
"start": {
- "line": 1361,
+ "line": 1122,
"column": 16
},
"end": {
- "line": 1361,
+ "line": 1122,
"column": 42
}
}
}
],
"range": [
- 50163,
- 50221
+ 39498,
+ 39556
],
"loc": {
"start": {
- "line": 1360,
+ "line": 1121,
"column": 19
},
"end": {
- "line": 1362,
+ "line": 1123,
"column": 13
}
}
},
"range": [
- 50085,
- 50221
+ 39420,
+ 39556
],
"loc": {
"start": {
- "line": 1358,
+ "line": 1119,
"column": 12
},
"end": {
- "line": 1362,
+ "line": 1123,
"column": 13
}
}
}
],
"range": [
- 50030,
- 50231
+ 39365,
+ 39566
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 54
},
"end": {
- "line": 1363,
+ "line": 1124,
"column": 9
}
}
},
"range": [
- 49984,
- 50231
+ 39319,
+ 39566
],
"loc": {
"start": {
- "line": 1356,
+ "line": 1117,
"column": 8
},
"end": {
- "line": 1363,
+ "line": 1124,
"column": 9
}
}
@@ -114801,16 +94009,16 @@
"type": "Identifier",
"name": "slcSort",
"range": [
- 50243,
- 50250
+ 39578,
+ 39585
],
"loc": {
"start": {
- "line": 1364,
+ "line": 1125,
"column": 11
},
"end": {
- "line": 1364,
+ "line": 1125,
"column": 18
}
}
@@ -114829,16 +94037,16 @@
"type": "Identifier",
"name": "optArray",
"range": [
- 50265,
- 50273
+ 39600,
+ 39608
],
"loc": {
"start": {
- "line": 1365,
+ "line": 1126,
"column": 12
},
"end": {
- "line": 1365,
+ "line": 1126,
"column": 20
}
}
@@ -114847,62 +94055,62 @@
"type": "Identifier",
"name": "sort",
"range": [
- 50274,
- 50278
+ 39609,
+ 39613
],
"loc": {
"start": {
- "line": 1365,
+ "line": 1126,
"column": 21
},
"end": {
- "line": 1365,
+ "line": 1126,
"column": 25
}
}
},
"range": [
- 50265,
- 50278
+ 39600,
+ 39613
],
"loc": {
"start": {
- "line": 1365,
+ "line": 1126,
"column": 12
},
"end": {
- "line": 1365,
+ "line": 1126,
"column": 25
}
}
},
"arguments": [],
"range": [
- 50265,
- 50280
+ 39600,
+ 39615
],
"loc": {
"start": {
- "line": 1365,
+ "line": 1126,
"column": 12
},
"end": {
- "line": 1365,
+ "line": 1126,
"column": 27
}
}
},
"range": [
- 50265,
- 50281
+ 39600,
+ 39616
],
"loc": {
"start": {
- "line": 1365,
+ "line": 1126,
"column": 12
},
"end": {
- "line": 1365,
+ "line": 1126,
"column": 28
}
}
@@ -114918,16 +94126,16 @@
"type": "Identifier",
"name": "optTxt",
"range": [
- 50294,
- 50300
+ 39629,
+ 39635
],
"loc": {
"start": {
- "line": 1366,
+ "line": 1127,
"column": 12
},
"end": {
- "line": 1366,
+ "line": 1127,
"column": 18
}
}
@@ -114936,94 +94144,94 @@
"type": "Identifier",
"name": "sort",
"range": [
- 50301,
- 50305
+ 39636,
+ 39640
],
"loc": {
"start": {
- "line": 1366,
+ "line": 1127,
"column": 19
},
"end": {
- "line": 1366,
+ "line": 1127,
"column": 23
}
}
},
"range": [
- 50294,
- 50305
+ 39629,
+ 39640
],
"loc": {
"start": {
- "line": 1366,
+ "line": 1127,
"column": 12
},
"end": {
- "line": 1366,
+ "line": 1127,
"column": 23
}
}
},
"arguments": [],
"range": [
- 50294,
- 50307
+ 39629,
+ 39642
],
"loc": {
"start": {
- "line": 1366,
+ "line": 1127,
"column": 12
},
"end": {
- "line": 1366,
+ "line": 1127,
"column": 25
}
}
},
"range": [
- 50294,
- 50308
+ 39629,
+ 39643
],
"loc": {
"start": {
- "line": 1366,
+ "line": 1127,
"column": 12
},
"end": {
- "line": 1366,
+ "line": 1127,
"column": 26
}
}
}
],
"range": [
- 50251,
- 50318
+ 39586,
+ 39653
],
"loc": {
"start": {
- "line": 1364,
+ "line": 1125,
"column": 19
},
"end": {
- "line": 1367,
+ "line": 1128,
"column": 9
}
}
},
"alternate": null,
"range": [
- 50240,
- 50318
+ 39575,
+ 39653
],
"loc": {
"start": {
- "line": 1364,
+ "line": 1125,
"column": 8
},
"end": {
- "line": 1367,
+ "line": 1128,
"column": 9
}
}
@@ -115037,16 +94245,16 @@
"type": "Identifier",
"name": "optArray",
"range": [
- 50335,
- 50343
+ 39670,
+ 39678
],
"loc": {
"start": {
- "line": 1368,
+ "line": 1129,
"column": 16
},
"end": {
- "line": 1368,
+ "line": 1129,
"column": 24
}
}
@@ -115055,63 +94263,63 @@
"type": "Identifier",
"name": "optTxt",
"range": [
- 50345,
- 50351
+ 39680,
+ 39686
],
"loc": {
"start": {
- "line": 1368,
+ "line": 1129,
"column": 26
},
"end": {
- "line": 1368,
+ "line": 1129,
"column": 32
}
}
}
],
"range": [
- 50334,
- 50352
+ 39669,
+ 39687
],
"loc": {
"start": {
- "line": 1368,
+ "line": 1129,
"column": 15
},
"end": {
- "line": 1368,
+ "line": 1129,
"column": 33
}
}
},
"range": [
- 50327,
- 50353
+ 39662,
+ 39688
],
"loc": {
"start": {
- "line": 1368,
+ "line": 1129,
"column": 8
},
"end": {
- "line": 1368,
+ "line": 1129,
"column": 34
}
}
}
],
"range": [
- 49545,
- 50359
+ 38880,
+ 39694
],
"loc": {
"start": {
- "line": 1343,
+ "line": 1104,
"column": 30
},
"end": {
- "line": 1369,
+ "line": 1130,
"column": 5
}
}
@@ -115119,16 +94327,16 @@
"generator": false,
"expression": false,
"range": [
- 49535,
- 50359
+ 38870,
+ 39694
],
"loc": {
"start": {
- "line": 1343,
+ "line": 1104,
"column": 20
},
"end": {
- "line": 1369,
+ "line": 1130,
"column": 5
}
}
@@ -115136,16 +94344,16 @@
"kind": "method",
"computed": false,
"range": [
- 49519,
- 50359
+ 38854,
+ 39694
],
"loc": {
"start": {
- "line": 1343,
+ "line": 1104,
"column": 4
},
"end": {
- "line": 1369,
+ "line": 1130,
"column": 5
}
},
@@ -115154,16 +94362,36 @@
"type": "Block",
"value": "*\n * Returns an array [[value0, value1 ...],[text0, text1 ...]] with the\n * custom options values and texts\n * @param {Number} colIndex Column's index\n * @return {Array}\n ",
"range": [
- 49318,
- 49514
+ 38653,
+ 38849
],
"loc": {
"start": {
- "line": 1337,
+ "line": 1098,
"column": 4
},
"end": {
- "line": 1342,
+ "line": 1103,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Reset persisted filter values\n ",
+ "range": [
+ 39700,
+ 39748
+ ],
+ "loc": {
+ "start": {
+ "line": 1132,
+ "column": 4
+ },
+ "end": {
+ "line": 1134,
"column": 7
}
}
@@ -115177,16 +94405,16 @@
"type": "Identifier",
"name": "resetValues",
"range": [
- 50365,
- 50376
+ 39753,
+ 39764
],
"loc": {
"start": {
- "line": 1371,
+ "line": 1135,
"column": 4
},
"end": {
- "line": 1371,
+ "line": 1135,
"column": 15
}
}
@@ -115195,1600 +94423,6 @@
"type": "FunctionExpression",
"id": null,
"params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50388,
- 50392
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 8
- },
- "end": {
- "line": 1372,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 50393,
- 50403
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 13
- },
- "end": {
- "line": 1372,
- "column": 23
- }
- }
- },
- "range": [
- 50388,
- 50403
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 8
- },
- "end": {
- "line": 1372,
- "column": 23
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50404,
- 50408
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 24
- },
- "end": {
- "line": 1372,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 50409,
- 50412
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 29
- },
- "end": {
- "line": 1372,
- "column": 32
- }
- }
- },
- "range": [
- 50404,
- 50412
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 24
- },
- "end": {
- "line": 1372,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 50413,
- 50417
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 33
- },
- "end": {
- "line": 1372,
- "column": 37
- }
- }
- },
- "range": [
- 50404,
- 50417
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 24
- },
- "end": {
- "line": 1372,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetvalues",
- "range": [
- 50418,
- 50429
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 38
- },
- "end": {
- "line": 1372,
- "column": 49
- }
- }
- },
- "range": [
- 50404,
- 50429
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 24
- },
- "end": {
- "line": 1372,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 50388,
- 50430
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 8
- },
- "end": {
- "line": 1372,
- "column": 50
- }
- }
- },
- "range": [
- 50388,
- 50431
- ],
- "loc": {
- "start": {
- "line": 1372,
- "column": 8
- },
- "end": {
- "line": 1372,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 50378,
- 50437
- ],
- "loc": {
- "start": {
- "line": 1371,
- "column": 17
- },
- "end": {
- "line": 1373,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 50376,
- 50437
- ],
- "loc": {
- "start": {
- "line": 1371,
- "column": 15
- },
- "end": {
- "line": 1373,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 50365,
- 50437
- ],
- "loc": {
- "start": {
- "line": 1371,
- "column": 4
- },
- "end": {
- "line": 1373,
- "column": 5
- }
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Reset persisted filter values\n ",
- "range": [
- 50443,
- 50491
- ],
- "loc": {
- "start": {
- "line": 1375,
- "column": 4
- },
- "end": {
- "line": 1377,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_resetValues",
- "range": [
- 50496,
- 50508
- ],
- "loc": {
- "start": {
- "line": 1378,
- "column": 4
- },
- "end": {
- "line": 1378,
- "column": 16
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50554,
- 50558
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 11
- },
- "end": {
- "line": 1380,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 50559,
- 50577
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 16
- },
- "end": {
- "line": 1380,
- "column": 34
- }
- }
- },
- "range": [
- 50554,
- 50577
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 11
- },
- "end": {
- "line": 1380,
- "column": 34
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50581,
- 50585
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 38
- },
- "end": {
- "line": 1380,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "loadFltOnDemand",
- "range": [
- 50586,
- 50601
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 43
- },
- "end": {
- "line": 1380,
- "column": 58
- }
- }
- },
- "range": [
- 50581,
- 50601
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 38
- },
- "end": {
- "line": 1380,
- "column": 58
- }
- }
- },
- "range": [
- 50554,
- 50601
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 11
- },
- "end": {
- "line": 1380,
- "column": 58
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50616,
- 50620
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 12
- },
- "end": {
- "line": 1381,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_resetGridValues",
- "range": [
- 50621,
- 50637
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 17
- },
- "end": {
- "line": 1381,
- "column": 33
- }
- }
- },
- "range": [
- 50616,
- 50637
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 12
- },
- "end": {
- "line": 1381,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50638,
- 50642
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 34
- },
- "end": {
- "line": 1381,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 50643,
- 50659
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 39
- },
- "end": {
- "line": 1381,
- "column": 55
- }
- }
- },
- "range": [
- 50638,
- 50659
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 34
- },
- "end": {
- "line": 1381,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 50616,
- 50660
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 12
- },
- "end": {
- "line": 1381,
- "column": 56
- }
- }
- },
- "range": [
- 50616,
- 50661
- ],
- "loc": {
- "start": {
- "line": 1381,
- "column": 12
- },
- "end": {
- "line": 1381,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 50602,
- 50671
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 59
- },
- "end": {
- "line": 1382,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 50551,
- 50671
- ],
- "loc": {
- "start": {
- "line": 1380,
- "column": 8
- },
- "end": {
- "line": 1382,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "only loadFltOnDemand",
- "range": [
- 50520,
- 50542
- ],
- "loc": {
- "start": {
- "line": 1379,
- "column": 8
- },
- "end": {
- "line": 1379,
- "column": 30
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50683,
- 50687
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 11
- },
- "end": {
- "line": 1383,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageLen",
- "range": [
- 50688,
- 50703
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 16
- },
- "end": {
- "line": 1383,
- "column": 31
- }
- }
- },
- "range": [
- 50683,
- 50703
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 11
- },
- "end": {
- "line": 1383,
- "column": 31
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50707,
- 50711
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 35
- },
- "end": {
- "line": 1383,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 50712,
- 50715
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 40
- },
- "end": {
- "line": 1383,
- "column": 43
- }
- }
- },
- "range": [
- 50707,
- 50715
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 35
- },
- "end": {
- "line": 1383,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 50716,
- 50722
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 44
- },
- "end": {
- "line": 1383,
- "column": 50
- }
- }
- },
- "range": [
- 50707,
- 50722
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 35
- },
- "end": {
- "line": 1383,
- "column": 50
- }
- }
- },
- "range": [
- 50683,
- 50722
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 11
- },
- "end": {
- "line": 1383,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50737,
- 50741
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 50742,
- 50745
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 17
- },
- "end": {
- "line": 1384,
- "column": 20
- }
- }
- },
- "range": [
- 50737,
- 50745
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 50746,
- 50752
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 21
- },
- "end": {
- "line": 1384,
- "column": 27
- }
- }
- },
- "range": [
- 50737,
- 50752
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetPageLength",
- "range": [
- 50753,
- 50768
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 28
- },
- "end": {
- "line": 1384,
- "column": 43
- }
- }
- },
- "range": [
- 50737,
- 50768
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50769,
- 50773
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 44
- },
- "end": {
- "line": 1384,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgLenCookie",
- "range": [
- 50774,
- 50785
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 49
- },
- "end": {
- "line": 1384,
- "column": 60
- }
- }
- },
- "range": [
- 50769,
- 50785
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 44
- },
- "end": {
- "line": 1384,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 50737,
- 50786
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 61
- }
- }
- },
- "range": [
- 50737,
- 50787
- ],
- "loc": {
- "start": {
- "line": 1384,
- "column": 12
- },
- "end": {
- "line": 1384,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 50723,
- 50797
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 51
- },
- "end": {
- "line": 1385,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 50680,
- 50797
- ],
- "loc": {
- "start": {
- "line": 1383,
- "column": 8
- },
- "end": {
- "line": 1385,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50809,
- 50813
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 11
- },
- "end": {
- "line": 1386,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageNb",
- "range": [
- 50814,
- 50828
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 16
- },
- "end": {
- "line": 1386,
- "column": 30
- }
- }
- },
- "range": [
- 50809,
- 50828
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 11
- },
- "end": {
- "line": 1386,
- "column": 30
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50832,
- 50836
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 34
- },
- "end": {
- "line": 1386,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 50837,
- 50840
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 39
- },
- "end": {
- "line": 1386,
- "column": 42
- }
- }
- },
- "range": [
- 50832,
- 50840
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 34
- },
- "end": {
- "line": 1386,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 50841,
- 50847
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 43
- },
- "end": {
- "line": 1386,
- "column": 49
- }
- }
- },
- "range": [
- 50832,
- 50847
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 34
- },
- "end": {
- "line": 1386,
- "column": 49
- }
- }
- },
- "range": [
- 50809,
- 50847
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 11
- },
- "end": {
- "line": 1386,
- "column": 49
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50862,
- 50866
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 50867,
- 50870
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 17
- },
- "end": {
- "line": 1387,
- "column": 20
- }
- }
- },
- "range": [
- 50862,
- 50870
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 50871,
- 50877
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 21
- },
- "end": {
- "line": 1387,
- "column": 27
- }
- }
- },
- "range": [
- 50862,
- 50877
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "resetPage",
- "range": [
- 50878,
- 50887
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 28
- },
- "end": {
- "line": 1387,
- "column": 37
- }
- }
- },
- "range": [
- 50862,
- 50887
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 50888,
- 50892
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 38
- },
- "end": {
- "line": 1387,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgNbCookie",
- "range": [
- 50893,
- 50903
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 43
- },
- "end": {
- "line": 1387,
- "column": 53
- }
- }
- },
- "range": [
- 50888,
- 50903
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 38
- },
- "end": {
- "line": 1387,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 50862,
- 50904
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 54
- }
- }
- },
- "range": [
- 50862,
- 50905
- ],
- "loc": {
- "start": {
- "line": 1387,
- "column": 12
- },
- "end": {
- "line": 1387,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 50848,
- 50915
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 50
- },
- "end": {
- "line": 1388,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 50806,
- 50915
- ],
- "loc": {
- "start": {
- "line": 1386,
- "column": 8
- },
- "end": {
- "line": 1388,
- "column": 9
- }
- }
- }
- ],
- "range": [
- 50510,
- 50921
- ],
- "loc": {
- "start": {
- "line": 1378,
- "column": 18
- },
- "end": {
- "line": 1389,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 50508,
- 50921
- ],
- "loc": {
- "start": {
- "line": 1378,
- "column": 16
- },
- "end": {
- "line": 1389,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 50496,
- 50921
- ],
- "loc": {
- "start": {
- "line": 1378,
- "column": 4
- },
- "end": {
- "line": 1389,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Reset persisted filter values\n ",
- "range": [
- 50443,
- 50491
- ],
- "loc": {
- "start": {
- "line": 1375,
- "column": 4
- },
- "end": {
- "line": 1377,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Reset persisted filter values when load filters on demand feature is\n * enabled\n * @param {String} name cookie name storing filter values\n ",
- "range": [
- 50927,
- 51092
- ],
- "loc": {
- "start": {
- "line": 1391,
- "column": 4
- },
- "end": {
- "line": 1395,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_resetGridValues",
- "range": [
- 51097,
- 51113
- ],
- "loc": {
- "start": {
- "line": 1396,
- "column": 4
- },
- "end": {
- "line": 1396,
- "column": 20
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [
- {
- "type": "Identifier",
- "name": "name",
- "range": [
- 51114,
- 51118
- ],
- "loc": {
- "start": {
- "line": 1396,
- "column": 21
- },
- "end": {
- "line": 1396,
- "column": 25
- }
- }
- }
- ],
"body": {
"type": "BlockStatement",
"body": [
@@ -116803,66 +94437,66 @@
"object": {
"type": "ThisExpression",
"range": [
- 51133,
- 51137
+ 39780,
+ 39784
],
"loc": {
"start": {
- "line": 1397,
+ "line": 1136,
"column": 12
},
"end": {
- "line": 1397,
+ "line": 1136,
"column": 16
}
}
},
"property": {
"type": "Identifier",
- "name": "loadFltOnDemand",
+ "name": "rememberGridValues",
"range": [
- 51138,
- 51153
+ 39785,
+ 39803
],
"loc": {
"start": {
- "line": 1397,
+ "line": 1136,
"column": 17
},
"end": {
- "line": 1397,
- "column": 32
+ "line": 1136,
+ "column": 35
}
}
},
"range": [
- 51133,
- 51153
+ 39780,
+ 39803
],
"loc": {
"start": {
- "line": 1397,
+ "line": 1136,
"column": 12
},
"end": {
- "line": 1397,
- "column": 32
+ "line": 1136,
+ "column": 35
}
}
},
"prefix": true,
"range": [
- 51132,
- 51153
+ 39779,
+ 39803
],
"loc": {
"start": {
- "line": 1397,
+ "line": 1136,
"column": 11
},
"end": {
- "line": 1397,
- "column": 32
+ "line": 1136,
+ "column": 35
}
}
},
@@ -116873,48 +94507,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 51168,
- 51175
+ 39818,
+ 39825
],
"loc": {
"start": {
- "line": 1398,
+ "line": 1137,
"column": 12
},
"end": {
- "line": 1398,
+ "line": 1137,
"column": 19
}
}
}
],
"range": [
- 51154,
- 51185
+ 39804,
+ 39835
],
"loc": {
"start": {
- "line": 1397,
- "column": 33
+ "line": 1136,
+ "column": 36
},
"end": {
- "line": 1399,
+ "line": 1138,
"column": 9
}
}
},
"alternate": null,
"range": [
- 51129,
- 51185
+ 39776,
+ 39835
],
"loc": {
"start": {
- "line": 1397,
+ "line": 1136,
"column": 8
},
"end": {
- "line": 1399,
+ "line": 1138,
"column": 9
}
}
@@ -116926,19 +94560,19 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "fltsValues",
+ "name": "fltValues",
"range": [
- 51198,
- 51208
+ 39849,
+ 39858
],
"loc": {
"start": {
- "line": 1400,
+ "line": 1140,
"column": 12
},
"end": {
- "line": 1400,
- "column": 22
+ "line": 1140,
+ "column": 21
}
}
},
@@ -116956,17 +94590,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 51211,
- 51215
+ 39861,
+ 39865
],
"loc": {
"start": {
- "line": 1400,
- "column": 25
+ "line": 1140,
+ "column": 24
},
"end": {
- "line": 1400,
- "column": 29
+ "line": 1140,
+ "column": 28
}
}
},
@@ -116974,32 +94608,32 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 51216,
- 51219
+ 39866,
+ 39869
],
"loc": {
"start": {
- "line": 1400,
- "column": 30
+ "line": 1140,
+ "column": 29
},
"end": {
- "line": 1400,
- "column": 33
+ "line": 1140,
+ "column": 32
}
}
},
"range": [
- 51211,
- 51219
+ 39861,
+ 39869
],
"loc": {
"start": {
- "line": 1400,
- "column": 25
+ "line": 1140,
+ "column": 24
},
"end": {
- "line": 1400,
- "column": 33
+ "line": 1140,
+ "column": 32
}
}
},
@@ -117007,32 +94641,32 @@
"type": "Identifier",
"name": "store",
"range": [
- 51220,
- 51225
+ 39870,
+ 39875
],
"loc": {
"start": {
- "line": 1400,
- "column": 34
+ "line": 1140,
+ "column": 33
},
"end": {
- "line": 1400,
- "column": 39
+ "line": 1140,
+ "column": 38
}
}
},
"range": [
- 51211,
- 51225
+ 39861,
+ 39875
],
"loc": {
"start": {
- "line": 1400,
- "column": 25
+ "line": 1140,
+ "column": 24
},
"end": {
- "line": 1400,
- "column": 39
+ "line": 1140,
+ "column": 38
}
}
},
@@ -117040,157 +94674,32 @@
"type": "Identifier",
"name": "getFilterValues",
"range": [
- 51226,
- 51241
+ 39876,
+ 39891
],
"loc": {
"start": {
- "line": 1400,
- "column": 40
+ "line": 1140,
+ "column": 39
},
"end": {
- "line": 1400,
- "column": 55
+ "line": 1140,
+ "column": 54
}
}
},
"range": [
- 51211,
- 51241
+ 39861,
+ 39891
],
"loc": {
"start": {
- "line": 1400,
- "column": 25
+ "line": 1140,
+ "column": 24
},
"end": {
- "line": 1400,
- "column": 55
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "name",
- "range": [
- 51242,
- 51246
- ],
- "loc": {
- "start": {
- "line": 1400,
- "column": 56
- },
- "end": {
- "line": 1400,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 51211,
- 51247
- ],
- "loc": {
- "start": {
- "line": 1400,
- "column": 25
- },
- "end": {
- "line": 1400,
- "column": 61
- }
- }
- },
- "range": [
- 51198,
- 51247
- ],
- "loc": {
- "start": {
- "line": 1400,
- "column": 12
- },
- "end": {
- "line": 1400,
- "column": 61
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "slcFltsIndex",
- "range": [
- 51261,
- 51273
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 12
- },
- "end": {
- "line": 1401,
- "column": 24
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51276,
- 51280
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 27
- },
- "end": {
- "line": 1401,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFiltersByType",
- "range": [
- 51281,
- 51297
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 32
- },
- "end": {
- "line": 1401,
- "column": 48
- }
- }
- },
- "range": [
- 51276,
- 51297
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 27
- },
- "end": {
- "line": 1401,
- "column": 48
+ "line": 1140,
+ "column": 54
}
}
},
@@ -117201,835 +94710,201 @@
"object": {
"type": "ThisExpression",
"range": [
- 51298,
- 51302
+ 39892,
+ 39896
],
"loc": {
"start": {
- "line": 1401,
- "column": 49
- },
- "end": {
- "line": 1401,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 51303,
- 51313
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 54
- },
- "end": {
- "line": 1401,
- "column": 64
- }
- }
- },
- "range": [
- 51298,
- 51313
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 49
- },
- "end": {
- "line": 1401,
- "column": 64
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 51315,
- 51319
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 66
- },
- "end": {
- "line": 1401,
- "column": 70
- }
- }
- }
- ],
- "range": [
- 51276,
- 51320
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 27
- },
- "end": {
- "line": 1401,
- "column": 71
- }
- }
- },
- "range": [
- 51261,
- 51320
- ],
- "loc": {
- "start": {
- "line": 1401,
- "column": 12
- },
- "end": {
- "line": 1401,
- "column": 71
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "multiFltsIndex",
- "range": [
- 51334,
- 51348
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 12
- },
- "end": {
- "line": 1402,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51351,
- 51355
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 29
- },
- "end": {
- "line": 1402,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFiltersByType",
- "range": [
- 51356,
- 51372
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 34
- },
- "end": {
- "line": 1402,
- "column": 50
- }
- }
- },
- "range": [
- 51351,
- 51372
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 29
- },
- "end": {
- "line": 1402,
- "column": 50
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51373,
- 51377
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 51
- },
- "end": {
- "line": 1402,
+ "line": 1140,
"column": 55
+ },
+ "end": {
+ "line": 1140,
+ "column": 59
}
}
},
"property": {
"type": "Identifier",
- "name": "fltTypeMulti",
+ "name": "fltsValuesCookie",
"range": [
- 51378,
- 51390
+ 39897,
+ 39913
],
"loc": {
"start": {
- "line": 1402,
- "column": 56
+ "line": 1140,
+ "column": 60
},
"end": {
- "line": 1402,
- "column": 68
+ "line": 1140,
+ "column": 76
}
}
},
"range": [
- 51373,
- 51390
+ 39892,
+ 39913
],
"loc": {
"start": {
- "line": 1402,
- "column": 51
+ "line": 1140,
+ "column": 55
},
"end": {
- "line": 1402,
- "column": 68
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 51392,
- 51396
- ],
- "loc": {
- "start": {
- "line": 1402,
- "column": 70
- },
- "end": {
- "line": 1402,
- "column": 74
+ "line": 1140,
+ "column": 76
}
}
}
],
"range": [
- 51351,
- 51397
+ 39861,
+ 39914
],
"loc": {
"start": {
- "line": 1402,
- "column": 29
+ "line": 1140,
+ "column": 24
},
"end": {
- "line": 1402,
- "column": 75
+ "line": 1140,
+ "column": 77
}
}
},
"range": [
- 51334,
- 51397
+ 39849,
+ 39914
],
"loc": {
"start": {
- "line": 1402,
+ "line": 1140,
"column": 12
},
"end": {
- "line": 1402,
- "column": 75
+ "line": 1140,
+ "column": 77
}
}
}
],
"kind": "let",
"range": [
- 51194,
- 51398
+ 39845,
+ 39915
],
"loc": {
"start": {
- "line": 1400,
+ "line": 1140,
"column": 8
},
"end": {
- "line": 1402,
- "column": 76
+ "line": 1140,
+ "column": 78
}
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "if the number of columns is the same as before page reload",
- "range": [
- 51408,
- 51468
- ],
- "loc": {
- "start": {
- "line": 1404,
- "column": 8
- },
- "end": {
- "line": 1404,
- "column": 68
- }
- }
- }
- ]
+ }
},
{
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "Identifier",
- "name": "Number",
- "range": [
- 51480,
- 51486
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 11
- },
- "end": {
- "line": 1405,
- "column": 17
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 51487,
- 51497
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 18
- },
- "end": {
- "line": 1405,
- "column": 28
- }
- }
- },
- "property": {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 51499,
- 51509
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 30
- },
- "end": {
- "line": 1405,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 51510,
- 51516
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 41
- },
- "end": {
- "line": 1405,
- "column": 47
- }
- }
- },
- "range": [
- 51499,
- 51516
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 30
- },
- "end": {
- "line": 1405,
- "column": 47
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 51517,
- 51518
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 48
- },
- "end": {
- "line": 1405,
- "column": 49
- }
- }
- },
- "range": [
- 51499,
- 51518
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 30
- },
- "end": {
- "line": 1405,
- "column": 49
- }
- }
- },
- "range": [
- 51487,
- 51520
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 18
- },
- "end": {
- "line": 1405,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 51480,
- 51521
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 11
- },
- "end": {
- "line": 1405,
- "column": 52
- }
- }
- },
- "right": {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51526,
- 51530
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 57
- },
- "end": {
- "line": 1405,
- "column": 61
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 51531,
- 51537
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 62
- },
- "end": {
- "line": 1405,
- "column": 68
- }
- }
- },
+ "type": "Identifier",
+ "name": "fltValues",
"range": [
- 51526,
- 51537
+ 39924,
+ 39933
],
"loc": {
"start": {
- "line": 1405,
- "column": 57
+ "line": 1141,
+ "column": 8
},
"end": {
- "line": 1405,
- "column": 68
+ "line": 1141,
+ "column": 17
}
}
},
"property": {
"type": "Identifier",
- "name": "length",
+ "name": "forEach",
"range": [
- 51538,
- 51544
+ 39934,
+ 39941
],
"loc": {
"start": {
- "line": 1405,
- "column": 69
+ "line": 1141,
+ "column": 18
},
"end": {
- "line": 1405,
- "column": 75
+ "line": 1141,
+ "column": 25
}
}
},
"range": [
- 51526,
- 51544
+ 39924,
+ 39941
],
"loc": {
"start": {
- "line": 1405,
- "column": 57
+ "line": 1141,
+ "column": 8
},
"end": {
- "line": 1405,
- "column": 75
+ "line": 1141,
+ "column": 25
}
}
},
- "range": [
- 51480,
- 51544
- ],
- "loc": {
- "start": {
- "line": 1405,
- "column": 11
- },
- "end": {
- "line": 1405,
- "column": 75
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
+ "arguments": [
{
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 51567,
- 51568
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 20
- },
- "end": {
- "line": 1406,
- "column": 21
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 51569,
- 51570
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 22
- },
- "end": {
- "line": 1406,
- "column": 23
- }
- }
- },
- "range": [
- 51567,
- 51570
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 20
- },
- "end": {
- "line": 1406,
- "column": 23
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 51563,
- 51570
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 16
- },
- "end": {
- "line": 1406,
- "column": 23
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
+ "type": "ArrowFunctionExpression",
+ "id": null,
+ "params": [
+ {
"type": "Identifier",
- "name": "i",
+ "name": "val",
"range": [
- 51572,
- 51573
+ 39943,
+ 39946
],
"loc": {
"start": {
- "line": 1406,
- "column": 25
+ "line": 1141,
+ "column": 27
},
"end": {
- "line": 1406,
- "column": 26
+ "line": 1141,
+ "column": 30
}
}
},
- "right": {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 51575,
- 51585
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 28
- },
- "end": {
- "line": 1406,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 51586,
- 51592
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 39
- },
- "end": {
- "line": 1406,
- "column": 45
- }
- }
- },
- "range": [
- 51575,
- 51592
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 28
- },
- "end": {
- "line": 1406,
- "column": 45
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 51595,
- 51596
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 48
- },
- "end": {
- "line": 1406,
- "column": 49
- }
- }
- },
- "range": [
- 51575,
- 51596
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 28
- },
- "end": {
- "line": 1406,
- "column": 49
- }
- }
- },
- "range": [
- 51572,
- 51597
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 25
- },
- "end": {
- "line": 1406,
- "column": 50
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
+ {
"type": "Identifier",
- "name": "i",
+ "name": "idx",
"range": [
- 51599,
- 51600
+ 39948,
+ 39951
],
"loc": {
"start": {
- "line": 1406,
- "column": 52
+ "line": 1141,
+ "column": 32
},
"end": {
- "line": 1406,
- "column": 53
+ "line": 1141,
+ "column": 35
}
}
- },
- "prefix": false,
- "range": [
- 51599,
- 51602
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 52
- },
- "end": {
- "line": 1406,
- "column": 55
- }
}
- },
+ ],
"body": {
"type": "BlockStatement",
"body": [
@@ -118037,58 +94912,22 @@
"type": "IfStatement",
"test": {
"type": "BinaryExpression",
- "operator": "===",
+ "operator": "!==",
"left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 51624,
- 51634
- ],
- "loc": {
- "start": {
- "line": 1407,
- "column": 19
- },
- "end": {
- "line": 1407,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 51635,
- 51636
- ],
- "loc": {
- "start": {
- "line": 1407,
- "column": 30
- },
- "end": {
- "line": 1407,
- "column": 31
- }
- }
- },
+ "type": "Identifier",
+ "name": "val",
"range": [
- 51624,
- 51637
+ 39972,
+ 39975
],
"loc": {
"start": {
- "line": 1407,
- "column": 19
+ "line": 1142,
+ "column": 15
},
"end": {
- "line": 1407,
- "column": 32
+ "line": 1142,
+ "column": 18
}
}
},
@@ -118097,7305 +94936,359 @@
"value": " ",
"raw": "' '",
"range": [
- 51640,
- 51643
+ 39980,
+ 39983
],
"loc": {
"start": {
- "line": 1407,
- "column": 35
- },
- "end": {
- "line": 1407,
- "column": 38
- }
- }
- },
- "range": [
- 51624,
- 51643
- ],
- "loc": {
- "start": {
- "line": 1407,
- "column": 19
- },
- "end": {
- "line": 1407,
- "column": 38
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ContinueStatement",
- "label": null,
- "range": [
- 51666,
- 51675
- ],
- "loc": {
- "start": {
- "line": 1408,
- "column": 20
- },
- "end": {
- "line": 1408,
- "column": 29
- }
- }
- }
- ],
- "range": [
- 51644,
- 51693
- ],
- "loc": {
- "start": {
- "line": 1407,
- "column": 39
- },
- "end": {
- "line": 1409,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 51621,
- 51693
- ],
- "loc": {
- "start": {
- "line": 1407,
- "column": 16
- },
- "end": {
- "line": 1409,
- "column": 17
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 51714,
- 51715
- ],
- "loc": {
- "start": {
- "line": 1410,
- "column": 20
- },
- "end": {
- "line": 1410,
- "column": 21
- }
- }
- },
- "init": null,
- "range": [
- 51714,
- 51715
- ],
- "loc": {
- "start": {
- "line": 1410,
- "column": 20
- },
- "end": {
- "line": 1410,
- "column": 21
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 51717,
- 51720
- ],
- "loc": {
- "start": {
- "line": 1410,
- "column": 23
- },
- "end": {
- "line": 1410,
- "column": 26
- }
- }
- },
- "init": null,
- "range": [
- 51717,
- 51720
- ],
- "loc": {
- "start": {
- "line": 1410,
+ "line": 1142,
"column": 23
},
"end": {
- "line": 1410,
+ "line": 1142,
"column": 26
}
}
- }
- ],
- "kind": "let",
- "range": [
- 51710,
- 51721
- ],
- "loc": {
- "start": {
- "line": 1410,
- "column": 16
- },
- "end": {
- "line": 1410,
- "column": 27
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "fltType",
- "range": [
- 51742,
- 51749
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 20
- },
- "end": {
- "line": 1411,
- "column": 27
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51752,
- 51756
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 30
- },
- "end": {
- "line": 1411,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterType",
- "range": [
- 51757,
- 51770
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 35
- },
- "end": {
- "line": 1411,
- "column": 48
- }
- }
- },
- "range": [
- 51752,
- 51770
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 30
- },
- "end": {
- "line": 1411,
- "column": 48
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 51771,
- 51772
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 49
- },
- "end": {
- "line": 1411,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 51752,
- 51773
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 30
- },
- "end": {
- "line": 1411,
- "column": 51
- }
- }
- },
- "range": [
- 51742,
- 51773
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 20
- },
- "end": {
- "line": 1411,
- "column": 51
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 51738,
- 51774
- ],
- "loc": {
- "start": {
- "line": 1411,
- "column": 16
- },
- "end": {
- "line": 1411,
- "column": 52
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " if loadFltOnDemand, drop-down needs to contain stored",
- "range": [
- 51791,
- 51847
- ],
- "loc": {
- "start": {
- "line": 1412,
- "column": 16
- },
- "end": {
- "line": 1412,
- "column": 72
- }
- }
- },
- {
- "type": "Line",
- "value": " value(s) for filtering",
- "range": [
- 51864,
- 51889
- ],
- "loc": {
- "start": {
- "line": 1413,
- "column": 16
- },
- "end": {
- "line": 1413,
- "column": 41
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "fltType",
- "range": [
- 51909,
- 51916
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 19
- },
- "end": {
- "line": 1414,
- "column": 26
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51919,
- 51923
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 29
- },
- "end": {
- "line": 1414,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 51924,
- 51934
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 34
- },
- "end": {
- "line": 1414,
- "column": 44
- }
- }
- },
- "range": [
- 51919,
- 51934
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 29
- },
- "end": {
- "line": 1414,
- "column": 44
- }
- }
- },
- "range": [
- 51909,
- 51934
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 19
- },
- "end": {
- "line": 1414,
- "column": 44
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "fltType",
- "range": [
- 51938,
- 51945
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 48
- },
- "end": {
- "line": 1414,
- "column": 55
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 51948,
- 51952
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 58
- },
- "end": {
- "line": 1414,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 51953,
- 51965
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 63
- },
- "end": {
- "line": 1414,
- "column": 75
- }
- }
- },
- "range": [
- 51948,
- 51965
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 58
- },
- "end": {
- "line": 1414,
- "column": 75
- }
- }
- },
- "range": [
- 51938,
- 51965
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 48
- },
- "end": {
- "line": 1414,
- "column": 75
- }
- }
},
"range": [
- 51909,
- 51965
+ 39972,
+ 39983
],
"loc": {
"start": {
- "line": 1414,
- "column": 19
+ "line": 1142,
+ "column": 15
},
"end": {
- "line": 1414,
- "column": 75
+ "line": 1142,
+ "column": 26
}
}
},
"consequent": {
"type": "BlockStatement",
"body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 51992,
- 51995
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 24
- },
- "end": {
- "line": 1415,
- "column": 27
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 51998,
- 52001
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 30
- },
- "end": {
- "line": 1415,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 52002,
- 52004
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 34
- },
- "end": {
- "line": 1415,
- "column": 36
- }
- }
- },
- "range": [
- 51998,
- 52004
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 30
- },
- "end": {
- "line": 1415,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 52006,
- 52010
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 38
- },
- "end": {
- "line": 1415,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 52011,
- 52017
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 43
- },
- "end": {
- "line": 1415,
- "column": 49
- }
- }
- },
- "range": [
- 52006,
- 52017
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 38
- },
- "end": {
- "line": 1415,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52018,
- 52019
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 50
- },
- "end": {
- "line": 1415,
- "column": 51
- }
- }
- },
- "range": [
- 52006,
- 52020
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 38
- },
- "end": {
- "line": 1415,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 51998,
- 52022
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 30
- },
- "end": {
- "line": 1415,
- "column": 54
- }
- }
- },
- "range": [
- 51992,
- 52022
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 24
- },
- "end": {
- "line": 1415,
- "column": 54
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 51988,
- 52023
- ],
- "loc": {
- "start": {
- "line": 1415,
- "column": 20
- },
- "end": {
- "line": 1415,
- "column": 55
- }
- }
- },
{
"type": "ExpressionStatement",
"expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
+ "type": "CallExpression",
+ "callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 52044,
- 52047
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 20
- },
- "end": {
- "line": 1416,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "options",
- "range": [
- 52048,
- 52055
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 24
- },
- "end": {
- "line": 1416,
- "column": 31
- }
- }
- },
- "range": [
- 52044,
- 52055
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 20
- },
- "end": {
- "line": 1416,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 52056,
- 52057
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 32
- },
- "end": {
- "line": 1416,
- "column": 33
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 52044,
- 52058
+ 40002,
+ 40006
],
"loc": {
"start": {
- "line": 1416,
- "column": 20
+ "line": 1143,
+ "column": 16
},
"end": {
- "line": 1416,
- "column": 34
+ "line": 1143,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "selected",
+ "name": "setFilterValue",
"range": [
- 52059,
- 52067
+ 40007,
+ 40021
],
"loc": {
"start": {
- "line": 1416,
- "column": 35
- },
- "end": {
- "line": 1416,
- "column": 43
- }
- }
- },
- "range": [
- 52044,
- 52067
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 20
- },
- "end": {
- "line": 1416,
- "column": 43
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 52070,
- 52075
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 46
- },
- "end": {
- "line": 1416,
- "column": 51
- }
- }
- },
- "range": [
- 52044,
- 52075
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 20
- },
- "end": {
- "line": 1416,
- "column": 51
- }
- }
- },
- "range": [
- 52044,
- 52076
- ],
- "loc": {
- "start": {
- "line": 1416,
- "column": 20
- },
- "end": {
- "line": 1416,
- "column": 52
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "selects",
- "range": [
- 52098,
- 52107
- ],
- "loc": {
- "start": {
- "line": 1418,
- "column": 20
- },
- "end": {
- "line": 1418,
- "column": 29
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slcFltsIndex",
- "range": [
- 52131,
- 52143
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 23
- },
- "end": {
- "line": 1419,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 52144,
- 52151
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 36
- },
- "end": {
- "line": 1419,
- "column": 43
- }
- }
- },
- "range": [
- 52131,
- 52151
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 23
- },
- "end": {
- "line": 1419,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52152,
- 52153
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 44
- },
- "end": {
- "line": 1419,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 52131,
- 52154
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 23
- },
- "end": {
- "line": 1419,
- "column": 46
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 52159,
- 52160
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 51
- },
- "end": {
- "line": 1419,
- "column": 52
- }
- }
- },
- "prefix": true,
- "range": [
- 52158,
- 52160
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 50
- },
- "end": {
- "line": 1419,
- "column": 52
- }
- }
- },
- "range": [
- 52131,
- 52160
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 23
- },
- "end": {
- "line": 1419,
- "column": 52
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 52187,
- 52190
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 24
- },
- "end": {
- "line": 1420,
- "column": 27
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 52193,
- 52196
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 30
- },
- "end": {
- "line": 1420,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createOpt",
- "range": [
- 52197,
- 52206
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 34
- },
- "end": {
- "line": 1420,
- "column": 43
- }
- }
- },
- "range": [
- 52193,
- 52206
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 30
- },
- "end": {
- "line": 1420,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 52207,
- 52217
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 44
- },
- "end": {
- "line": 1420,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52218,
- 52219
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 55
- },
- "end": {
- "line": 1420,
- "column": 56
- }
- }
- },
- "range": [
- 52207,
- 52220
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 44
- },
- "end": {
- "line": 1420,
- "column": 57
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 52221,
- 52231
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 58
- },
- "end": {
- "line": 1420,
- "column": 68
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52232,
- 52233
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 69
- },
- "end": {
- "line": 1420,
- "column": 70
- }
- }
- },
- "range": [
- 52221,
- 52234
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 58
- },
- "end": {
- "line": 1420,
- "column": 71
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 52235,
- 52239
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 72
- },
- "end": {
- "line": 1420,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 52193,
- 52240
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 30
- },
- "end": {
- "line": 1420,
- "column": 77
- }
- }
- },
- "range": [
- 52187,
- 52240
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 24
- },
- "end": {
- "line": 1420,
- "column": 77
- }
- }
- },
- "range": [
- 52187,
- 52241
- ],
- "loc": {
- "start": {
- "line": 1420,
- "column": 24
- },
- "end": {
- "line": 1420,
- "column": 78
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 52266,
- 52269
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 24
- },
- "end": {
- "line": 1421,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 52270,
- 52281
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 28
- },
- "end": {
- "line": 1421,
- "column": 39
- }
- }
- },
- "range": [
- 52266,
- 52281
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 24
- },
- "end": {
- "line": 1421,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 52282,
- 52285
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 40
- },
- "end": {
- "line": 1421,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 52266,
- 52286
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 24
- },
- "end": {
- "line": 1421,
- "column": 44
- }
- }
- },
- "range": [
- 52266,
- 52287
- ],
- "loc": {
- "start": {
- "line": 1421,
- "column": 24
- },
- "end": {
- "line": 1421,
- "column": 45
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 52312,
- 52316
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 24
- },
- "end": {
- "line": 1422,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasStoredValues",
- "range": [
- 52317,
- 52332
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 29
- },
- "end": {
- "line": 1422,
- "column": 44
- }
- }
- },
- "range": [
- 52312,
- 52332
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 24
- },
- "end": {
- "line": 1422,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 52335,
- 52339
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 47
- },
- "end": {
- "line": 1422,
- "column": 51
- }
- }
- },
- "range": [
- 52312,
- 52339
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 24
- },
- "end": {
- "line": 1422,
- "column": 51
- }
- }
- },
- "range": [
- 52312,
- 52340
- ],
- "loc": {
- "start": {
- "line": 1422,
- "column": 24
- },
- "end": {
- "line": 1422,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 52161,
- 52362
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 53
- },
- "end": {
- "line": 1423,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 52128,
- 52362
- ],
- "loc": {
- "start": {
- "line": 1419,
- "column": 20
- },
- "end": {
- "line": 1423,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "selects",
- "range": [
- 52098,
- 52107
- ],
- "loc": {
- "start": {
- "line": 1418,
- "column": 20
- },
- "end": {
- "line": 1418,
- "column": 29
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "multiple select",
- "range": [
- 52383,
- 52400
- ],
- "loc": {
- "start": {
- "line": 1424,
- "column": 20
- },
- "end": {
- "line": 1424,
- "column": 37
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "!=",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "multiFltsIndex",
- "range": [
- 52424,
- 52438
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 23
- },
- "end": {
- "line": 1425,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 52439,
- 52446
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 38
- },
- "end": {
- "line": 1425,
- "column": 45
- }
- }
- },
- "range": [
- 52424,
- 52446
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 23
- },
- "end": {
- "line": 1425,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52447,
- 52448
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 46
- },
- "end": {
- "line": 1425,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 52424,
- 52449
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 23
- },
- "end": {
- "line": 1425,
- "column": 48
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 52454,
- 52455
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 53
- },
- "end": {
- "line": 1425,
- "column": 54
- }
- }
- },
- "prefix": true,
- "range": [
- 52453,
- 52455
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 52
- },
- "end": {
- "line": 1425,
- "column": 54
- }
- }
- },
- "range": [
- 52424,
- 52455
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 23
- },
- "end": {
- "line": 1425,
- "column": 54
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 52482,
- 52483
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 24
- },
- "end": {
- "line": 1426,
- "column": 25
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 52486,
- 52496
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 28
- },
- "end": {
- "line": 1426,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 52497,
- 52498
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 39
- },
- "end": {
- "line": 1426,
- "column": 40
- }
- }
- },
- "range": [
- 52486,
- 52499
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 28
- },
- "end": {
- "line": 1426,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "split",
- "range": [
- 52500,
- 52505
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 42
- },
- "end": {
- "line": 1426,
- "column": 47
- }
- }
- },
- "range": [
- 52486,
- 52505
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 28
- },
- "end": {
- "line": 1426,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 52506,
- 52509
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 48
- },
- "end": {
- "line": 1426,
- "column": 51
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 52510,
- 52514
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 52
- },
- "end": {
- "line": 1426,
- "column": 56
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 52515,
- 52525
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 57
- },
- "end": {
- "line": 1426,
- "column": 67
- }
- }
- },
- "range": [
- 52510,
- 52525
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 52
- },
- "end": {
- "line": 1426,
- "column": 67
- }
- }
- },
- "range": [
- 52506,
- 52525
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 48
- },
- "end": {
- "line": 1426,
- "column": 67
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 52526,
- 52529
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 68
- },
- "end": {
- "line": 1426,
- "column": 71
- }
- }
- },
- "range": [
- 52506,
- 52529
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 48
- },
- "end": {
- "line": 1426,
- "column": 71
- }
- }
- }
- ],
- "range": [
- 52486,
- 52530
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 28
- },
- "end": {
- "line": 1426,
- "column": 72
- }
- }
- },
- "range": [
- 52482,
- 52530
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 24
- },
- "end": {
- "line": 1426,
- "column": 72
- }
- }
- },
- "range": [
- 52482,
- 52531
- ],
- "loc": {
- "start": {
- "line": 1426,
- "column": 24
- },
- "end": {
- "line": 1426,
- "column": 73
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52564,
- 52565
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 32
- },
- "end": {
- "line": 1427,
- "column": 33
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 52566,
- 52567
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 34
- },
- "end": {
- "line": 1427,
- "column": 35
- }
- }
- },
- "range": [
- 52564,
- 52567
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 32
- },
- "end": {
- "line": 1427,
- "column": 35
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 52569,
- 52572
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 37
- },
- "end": {
- "line": 1427,
- "column": 40
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 52573,
- 52574
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 41
- },
- "end": {
- "line": 1427,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 52575,
- 52581
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 43
- },
- "end": {
- "line": 1427,
- "column": 49
- }
- }
- },
- "range": [
- 52573,
- 52581
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 41
- },
- "end": {
- "line": 1427,
- "column": 49
- }
- }
- },
- "range": [
- 52569,
- 52581
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 37
- },
- "end": {
- "line": 1427,
- "column": 49
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 52560,
- 52581
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 28
- },
- "end": {
- "line": 1427,
- "column": 49
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52583,
- 52584
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 51
- },
- "end": {
- "line": 1427,
- "column": 52
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 52585,
- 52588
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 53
- },
- "end": {
- "line": 1427,
- "column": 56
- }
- }
- },
- "range": [
- 52583,
- 52588
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 51
- },
- "end": {
- "line": 1427,
- "column": 56
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52590,
- 52591
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 58
- },
- "end": {
- "line": 1427,
- "column": 59
- }
- }
- },
- "prefix": false,
- "range": [
- 52590,
- 52593
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 58
- },
- "end": {
- "line": 1427,
- "column": 61
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 52627,
- 52628
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 31
- },
- "end": {
- "line": 1428,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52629,
- 52630
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 33
- },
- "end": {
- "line": 1428,
- "column": 34
- }
- }
- },
- "range": [
- 52627,
- 52631
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 31
- },
- "end": {
- "line": 1428,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 52634,
- 52636
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 38
- },
- "end": {
- "line": 1428,
- "column": 40
- }
- }
- },
- "range": [
- 52627,
- 52636
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 31
- },
- "end": {
- "line": 1428,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ContinueStatement",
- "label": null,
- "range": [
- 52671,
- 52680
- ],
- "loc": {
- "start": {
- "line": 1429,
- "column": 32
- },
- "end": {
- "line": 1429,
- "column": 41
- }
- }
- }
- ],
- "range": [
- 52637,
- 52710
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 41
- },
- "end": {
- "line": 1430,
- "column": 29
- }
- }
- },
- "alternate": null,
- "range": [
- 52624,
- 52710
- ],
- "loc": {
- "start": {
- "line": 1428,
- "column": 28
- },
- "end": {
- "line": 1430,
- "column": 29
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 52739,
- 52742
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 28
- },
- "end": {
- "line": 1431,
- "column": 31
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 52745,
- 52748
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 34
- },
- "end": {
- "line": 1431,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createOpt",
- "range": [
- 52749,
- 52758
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 38
- },
- "end": {
- "line": 1431,
- "column": 47
- }
- }
- },
- "range": [
- 52745,
- 52758
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 34
- },
- "end": {
- "line": 1431,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 52759,
- 52760
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 48
- },
- "end": {
- "line": 1431,
- "column": 49
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52761,
- 52762
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 50
- },
- "end": {
- "line": 1431,
- "column": 51
- }
- }
- },
- "range": [
- 52759,
- 52763
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 48
- },
- "end": {
- "line": 1431,
- "column": 52
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 52764,
- 52765
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 53
- },
- "end": {
- "line": 1431,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 52766,
- 52767
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 55
- },
- "end": {
- "line": 1431,
- "column": 56
- }
- }
- },
- "range": [
- 52764,
- 52768
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 53
- },
- "end": {
- "line": 1431,
- "column": 57
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 52769,
- 52773
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 58
- },
- "end": {
- "line": 1431,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 52745,
- 52774
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 34
- },
- "end": {
- "line": 1431,
- "column": 63
- }
- }
- },
- "range": [
- 52739,
- 52774
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 28
- },
- "end": {
- "line": 1431,
- "column": 63
- }
- }
- },
- "range": [
- 52739,
- 52775
- ],
- "loc": {
- "start": {
- "line": 1431,
- "column": 28
- },
- "end": {
- "line": 1431,
- "column": 64
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 52804,
- 52807
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 28
- },
- "end": {
- "line": 1432,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 52808,
- 52819
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 32
- },
- "end": {
- "line": 1432,
- "column": 43
- }
- }
- },
- "range": [
- 52804,
- 52819
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 28
- },
- "end": {
- "line": 1432,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "opt",
- "range": [
- 52820,
- 52823
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 44
- },
- "end": {
- "line": 1432,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 52804,
- 52824
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 28
- },
- "end": {
- "line": 1432,
- "column": 48
- }
- }
- },
- "range": [
- 52804,
- 52825
- ],
- "loc": {
- "start": {
- "line": 1432,
- "column": 28
- },
- "end": {
- "line": 1432,
- "column": 49
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 52854,
- 52858
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 28
- },
- "end": {
- "line": 1433,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasStoredValues",
- "range": [
- 52859,
- 52874
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 33
- },
- "end": {
- "line": 1433,
- "column": 48
- }
- }
- },
- "range": [
- 52854,
- 52874
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 28
- },
- "end": {
- "line": 1433,
- "column": 48
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 52877,
- 52881
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 51
- },
- "end": {
- "line": 1433,
- "column": 55
- }
- }
- },
- "range": [
- 52854,
- 52881
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 28
- },
- "end": {
- "line": 1433,
- "column": 55
- }
- }
- },
- "range": [
- 52854,
- 52882
- ],
- "loc": {
- "start": {
- "line": 1433,
- "column": 28
- },
- "end": {
- "line": 1433,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 52594,
- 52908
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 62
- },
- "end": {
- "line": 1434,
- "column": 25
- }
- }
- },
- "range": [
- 52556,
- 52908
- ],
- "loc": {
- "start": {
- "line": 1427,
- "column": 24
- },
- "end": {
- "line": 1434,
- "column": 25
- }
- }
- }
- ],
- "range": [
- 52456,
- 52930
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 55
- },
- "end": {
- "line": 1435,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 52421,
- 52930
- ],
- "loc": {
- "start": {
- "line": 1425,
- "column": 20
- },
- "end": {
- "line": 1435,
- "column": 21
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "multiple select",
- "range": [
- 52383,
- 52400
- ],
- "loc": {
- "start": {
- "line": 1424,
- "column": 20
- },
- "end": {
- "line": 1424,
- "column": 37
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": " if multiFltsIndex",
- "range": [
- 52930,
- 52950
- ],
- "loc": {
- "start": {
- "line": 1435,
- "column": 21
- },
- "end": {
- "line": 1435,
- "column": 41
- }
- }
- }
- ]
- }
- ],
- "range": [
- 51966,
- 52968
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 76
- },
- "end": {
- "line": 1436,
- "column": 17
- }
- }
- },
- "alternate": {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "fltType",
- "range": [
- 52993,
- 53000
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 24
- },
- "end": {
- "line": 1437,
- "column": 31
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53003,
- 53007
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 34
- },
- "end": {
- "line": 1437,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeCheckList",
- "range": [
- 53008,
- 53024
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 39
- },
- "end": {
- "line": 1437,
- "column": 55
- }
- }
- },
- "range": [
- 53003,
- 53024
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 34
- },
- "end": {
- "line": 1437,
- "column": 55
- }
- }
- },
- "range": [
- 52993,
- 53024
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 24
- },
- "end": {
- "line": 1437,
- "column": 55
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 53051,
- 53060
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 24
- },
- "end": {
- "line": 1438,
- "column": 33
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53063,
- 53067
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 36
- },
- "end": {
- "line": 1438,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 53068,
- 53071
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 41
- },
- "end": {
- "line": 1438,
- "column": 44
- }
- }
- },
- "range": [
- 53063,
- 53071
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 36
- },
- "end": {
- "line": 1438,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 53072,
- 53081
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 45
- },
- "end": {
- "line": 1438,
- "column": 54
- }
- }
- },
- "range": [
- 53063,
- 53081
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 36
- },
- "end": {
- "line": 1438,
- "column": 54
- }
- }
- },
- "range": [
- 53051,
- 53081
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 24
- },
- "end": {
- "line": 1438,
- "column": 54
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53047,
- 53082
- ],
- "loc": {
- "start": {
- "line": 1438,
- "column": 20
- },
- "end": {
- "line": 1438,
- "column": 55
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "divChk",
- "range": [
- 53107,
- 53113
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 24
- },
- "end": {
- "line": 1439,
- "column": 30
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 53116,
- 53125
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 33
- },
- "end": {
- "line": 1439,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListDiv",
- "range": [
- 53126,
- 53138
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 43
- },
- "end": {
- "line": 1439,
- "column": 55
- }
- }
- },
- "range": [
- 53116,
- 53138
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 33
- },
- "end": {
- "line": 1439,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 53139,
- 53140
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 56
- },
- "end": {
- "line": 1439,
- "column": 57
- }
- }
- },
- "range": [
- 53116,
- 53141
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 33
- },
- "end": {
- "line": 1439,
- "column": 58
- }
- }
- },
- "range": [
- 53107,
- 53141
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 24
- },
- "end": {
- "line": 1439,
- "column": 58
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53103,
- 53142
- ],
- "loc": {
- "start": {
- "line": 1439,
- "column": 20
- },
- "end": {
- "line": 1439,
- "column": 59
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divChk",
- "range": [
- 53163,
- 53169
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 20
- },
- "end": {
- "line": 1440,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "title",
- "range": [
- 53170,
- 53175
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 27
- },
- "end": {
- "line": 1440,
- "column": 32
- }
- }
- },
- "range": [
- 53163,
- 53175
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 20
- },
- "end": {
- "line": 1440,
- "column": 32
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divChk",
- "range": [
- 53178,
- 53184
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 35
- },
- "end": {
- "line": 1440,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "innerHTML",
- "range": [
- 53185,
- 53194
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 42
- },
- "end": {
- "line": 1440,
- "column": 51
- }
- }
- },
- "range": [
- 53178,
- 53194
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 35
- },
- "end": {
- "line": 1440,
- "column": 51
- }
- }
- },
- "range": [
- 53163,
- 53194
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 20
- },
- "end": {
- "line": 1440,
- "column": 51
- }
- }
- },
- "range": [
- 53163,
- 53195
- ],
- "loc": {
- "start": {
- "line": 1440,
- "column": 20
- },
- "end": {
- "line": 1440,
- "column": 52
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divChk",
- "range": [
- 53216,
- 53222
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 20
- },
- "end": {
- "line": 1441,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "innerHTML",
- "range": [
- 53223,
- 53232
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 27
- },
- "end": {
- "line": 1441,
- "column": 36
- }
- }
- },
- "range": [
- 53216,
- 53232
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 20
- },
- "end": {
- "line": 1441,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 53235,
- 53237
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 39
- },
- "end": {
- "line": 1441,
- "column": 41
- }
- }
- },
- "range": [
- 53216,
- 53237
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 20
- },
- "end": {
- "line": 1441,
- "column": 41
- }
- }
- },
- "range": [
- 53216,
- 53238
- ],
- "loc": {
- "start": {
- "line": 1441,
- "column": 20
- },
- "end": {
- "line": 1441,
- "column": 42
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ul",
- "range": [
- 53264,
- 53266
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 24
- },
- "end": {
- "line": 1443,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 53269,
- 53272
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 29
- },
- "end": {
- "line": 1443,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "create",
- "range": [
- 53273,
- 53279
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 33
- },
- "end": {
- "line": 1443,
- "column": 39
- }
- }
- },
- "range": [
- 53269,
- 53279
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 29
- },
- "end": {
- "line": 1443,
- "column": 39
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "ul",
- "raw": "'ul'",
- "range": [
- 53305,
- 53309
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 24
- },
- "end": {
- "line": 1444,
- "column": 28
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "id",
- "raw": "'id'",
- "range": [
- 53311,
- 53315
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 30
- },
- "end": {
- "line": 1444,
- "column": 34
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53316,
- 53320
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 35
- },
- "end": {
- "line": 1444,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 53321,
- 53327
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 40
- },
- "end": {
- "line": 1444,
- "column": 46
- }
- }
- },
- "range": [
- 53316,
- 53327
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 35
- },
- "end": {
- "line": 1444,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 53328,
- 53329
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 47
- },
- "end": {
- "line": 1444,
- "column": 48
- }
- }
- },
- "range": [
- 53316,
- 53330
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 35
- },
- "end": {
- "line": 1444,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 53310,
- 53331
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 29
- },
- "end": {
- "line": 1444,
- "column": 50
- }
- }
- },
- {
- "type": "ArrayExpression",
- "elements": [
- {
- "type": "Literal",
- "value": "colIndex",
- "raw": "'colIndex'",
- "range": [
- 53333,
- 53343
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 52
- },
- "end": {
- "line": 1444,
- "column": 62
- }
- }
- },
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 53344,
- 53345
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 63
- },
- "end": {
- "line": 1444,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 53332,
- 53346
- ],
- "loc": {
- "start": {
- "line": 1444,
- "column": 51
- },
- "end": {
- "line": 1444,
- "column": 65
- }
- }
- }
- ],
- "range": [
- 53269,
- 53347
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 29
- },
- "end": {
- "line": 1444,
- "column": 66
- }
- }
- },
- "range": [
- 53264,
- 53347
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 24
- },
- "end": {
- "line": 1444,
- "column": 66
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53260,
- 53348
- ],
- "loc": {
- "start": {
- "line": 1443,
- "column": 20
- },
- "end": {
- "line": 1444,
- "column": 67
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ul",
- "range": [
- 53369,
- 53371
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 20
- },
- "end": {
- "line": 1445,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 53372,
- 53381
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 23
- },
- "end": {
- "line": 1445,
- "column": 32
- }
- }
- },
- "range": [
- 53369,
- 53381
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 20
- },
- "end": {
- "line": 1445,
- "column": 32
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 53384,
- 53393
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 35
- },
- "end": {
- "line": 1445,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListCssClass",
- "range": [
- 53394,
- 53411
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 45
- },
- "end": {
- "line": 1445,
- "column": 62
- }
- }
- },
- "range": [
- 53384,
- 53411
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 35
- },
- "end": {
- "line": 1445,
- "column": 62
- }
- }
- },
- "range": [
- 53369,
- 53411
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 20
- },
- "end": {
- "line": 1445,
- "column": 62
- }
- }
- },
- "range": [
- 53369,
- 53412
- ],
- "loc": {
- "start": {
- "line": 1445,
- "column": 20
- },
- "end": {
- "line": 1445,
- "column": 63
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "li0",
- "range": [
- 53438,
- 53441
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 24
- },
- "end": {
- "line": 1447,
- "column": 27
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 53444,
- 53447
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 30
- },
- "end": {
- "line": 1447,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createCheckItem",
- "range": [
- 53448,
- 53463
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 34
- },
- "end": {
- "line": 1447,
- "column": 49
- }
- }
- },
- "range": [
- 53444,
- 53463
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 30
- },
- "end": {
- "line": 1447,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53489,
- 53493
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 24
- },
- "end": {
- "line": 1448,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 53494,
- 53500
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 29
- },
- "end": {
- "line": 1448,
- "column": 35
- }
- }
- },
- "range": [
- 53489,
- 53500
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 24
- },
- "end": {
- "line": 1448,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 53501,
- 53502
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 36
- },
- "end": {
- "line": 1448,
- "column": 37
- }
- }
- },
- "range": [
- 53489,
- 53503
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 24
- },
- "end": {
- "line": 1448,
- "column": 38
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_0",
- "raw": "'_0'",
- "range": [
- 53504,
- 53508
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 39
- },
- "end": {
- "line": 1448,
- "column": 43
- }
- }
- },
- "range": [
- 53489,
- 53508
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 24
- },
- "end": {
- "line": 1448,
- "column": 43
- }
- }
- },
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 53510,
- 53512
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 45
- },
- "end": {
- "line": 1448,
- "column": 47
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53514,
- 53518
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 49
- },
- "end": {
- "line": 1448,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "displayAllText",
- "range": [
- 53519,
- 53533
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 54
- },
- "end": {
- "line": 1448,
- "column": 68
- }
- }
- },
- "range": [
- 53514,
- 53533
- ],
- "loc": {
- "start": {
- "line": 1448,
- "column": 49
- },
- "end": {
- "line": 1448,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 53444,
- 53534
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 30
- },
- "end": {
- "line": 1448,
- "column": 69
- }
- }
- },
- "range": [
- 53438,
- 53534
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 24
- },
- "end": {
- "line": 1448,
- "column": 69
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53434,
- 53535
- ],
- "loc": {
- "start": {
- "line": 1447,
- "column": 20
- },
- "end": {
- "line": 1448,
- "column": 70
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li0",
- "range": [
- 53556,
- 53559
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 20
- },
- "end": {
- "line": 1449,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 53560,
- 53569
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 24
- },
- "end": {
- "line": 1449,
- "column": 33
- }
- }
- },
- "range": [
- 53556,
- 53569
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 20
- },
- "end": {
- "line": 1449,
- "column": 33
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 53572,
- 53581
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 36
- },
- "end": {
- "line": 1449,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListItemCssClass",
- "range": [
- 53582,
- 53603
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 46
- },
- "end": {
- "line": 1449,
- "column": 67
- }
- }
- },
- "range": [
- 53572,
- 53603
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 36
- },
- "end": {
- "line": 1449,
- "column": 67
- }
- }
- },
- "range": [
- 53556,
- 53603
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 20
- },
- "end": {
- "line": 1449,
- "column": 67
- }
- }
- },
- "range": [
- 53556,
- 53604
- ],
- "loc": {
- "start": {
- "line": 1449,
- "column": 20
- },
- "end": {
- "line": 1449,
- "column": 68
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ul",
- "range": [
- 53625,
- 53627
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 20
- },
- "end": {
- "line": 1450,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 53628,
- 53639
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 23
- },
- "end": {
- "line": 1450,
- "column": 34
- }
- }
- },
- "range": [
- 53625,
- 53639
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 20
- },
- "end": {
- "line": 1450,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "li0",
- "range": [
- 53640,
- 53643
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 35
- },
- "end": {
- "line": 1450,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 53625,
- 53644
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 20
- },
- "end": {
- "line": 1450,
- "column": 39
- }
- }
- },
- "range": [
- 53625,
- 53645
- ],
- "loc": {
- "start": {
- "line": 1450,
- "column": 20
- },
- "end": {
- "line": 1450,
- "column": 40
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "divChk",
- "range": [
- 53667,
- 53673
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 20
- },
- "end": {
- "line": 1452,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 53674,
- 53685
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 27
- },
- "end": {
- "line": 1452,
- "column": 38
- }
- }
- },
- "range": [
- 53667,
- 53685
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 20
- },
- "end": {
- "line": 1452,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ul",
- "range": [
- 53686,
- 53688
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 39
- },
- "end": {
- "line": 1452,
- "column": 41
- }
- }
- }
- ],
- "range": [
- 53667,
- 53689
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 20
- },
- "end": {
- "line": 1452,
- "column": 42
- }
- }
- },
- "range": [
- 53667,
- 53690
- ],
- "loc": {
- "start": {
- "line": 1452,
- "column": 20
- },
- "end": {
- "line": 1452,
- "column": 43
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 53712,
- 53713
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 20
- },
- "end": {
- "line": 1454,
+ "line": 1143,
"column": 21
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "fltsValues",
- "range": [
- 53716,
- 53726
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 24
- },
- "end": {
- "line": 1454,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 53727,
- 53728
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 35
- },
- "end": {
- "line": 1454,
- "column": 36
- }
- }
- },
- "range": [
- 53716,
- 53729
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 24
- },
- "end": {
- "line": 1454,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "split",
- "range": [
- 53730,
- 53735
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 38
- },
- "end": {
- "line": 1454,
- "column": 43
- }
- }
- },
- "range": [
- 53716,
- 53735
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 24
- },
- "end": {
- "line": 1454,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 53736,
- 53739
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 44
- },
- "end": {
- "line": 1454,
- "column": 47
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 53740,
- 53744
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 48
- },
- "end": {
- "line": 1454,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 53745,
- 53755
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 53
- },
- "end": {
- "line": 1454,
- "column": 63
- }
- }
- },
- "range": [
- 53740,
- 53755
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 48
- },
- "end": {
- "line": 1454,
- "column": 63
- }
- }
- },
- "range": [
- 53736,
- 53755
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 44
- },
- "end": {
- "line": 1454,
- "column": 63
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 53756,
- 53759
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 64
- },
- "end": {
- "line": 1454,
- "column": 67
- }
- }
- },
- "range": [
- 53736,
- 53759
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 44
- },
- "end": {
- "line": 1454,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 53716,
- 53760
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 24
},
"end": {
- "line": 1454,
- "column": 68
+ "line": 1143,
+ "column": 35
}
}
},
"range": [
- 53712,
- 53760
+ 40002,
+ 40021
],
"loc": {
"start": {
- "line": 1454,
- "column": 20
- },
- "end": {
- "line": 1454,
- "column": 68
- }
- }
- },
- "range": [
- 53712,
- 53761
- ],
- "loc": {
- "start": {
- "line": 1454,
- "column": 20
- },
- "end": {
- "line": 1454,
- "column": 69
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 53790,
- 53791
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 28
- },
- "end": {
- "line": 1455,
- "column": 29
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 53792,
- 53793
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 30
- },
- "end": {
- "line": 1455,
- "column": 31
- }
- }
- },
- "range": [
- 53790,
- 53793
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 28
- },
- "end": {
- "line": 1455,
- "column": 31
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 53795,
- 53798
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 33
- },
- "end": {
- "line": 1455,
- "column": 36
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 53799,
- 53800
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 37
- },
- "end": {
- "line": 1455,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 53801,
- 53807
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 39
- },
- "end": {
- "line": 1455,
- "column": 45
- }
- }
- },
- "range": [
- 53799,
- 53807
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 37
- },
- "end": {
- "line": 1455,
- "column": 45
- }
- }
- },
- "range": [
- 53795,
- 53807
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 33
- },
- "end": {
- "line": 1455,
- "column": 45
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53786,
- 53807
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 24
- },
- "end": {
- "line": 1455,
- "column": 45
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 53809,
- 53810
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 47
- },
- "end": {
- "line": 1455,
- "column": 48
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 53811,
- 53814
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 49
- },
- "end": {
- "line": 1455,
- "column": 52
- }
- }
- },
- "range": [
- 53809,
- 53814
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 47
- },
- "end": {
- "line": 1455,
- "column": 52
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 53816,
- 53817
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 54
- },
- "end": {
- "line": 1455,
- "column": 55
- }
- }
- },
- "prefix": false,
- "range": [
- 53816,
- 53819
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 54
- },
- "end": {
- "line": 1455,
- "column": 57
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 53849,
- 53850
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 27
- },
- "end": {
- "line": 1456,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 53851,
- 53852
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 29
- },
- "end": {
- "line": 1456,
- "column": 30
- }
- }
- },
- "range": [
- 53849,
- 53853
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 27
- },
- "end": {
- "line": 1456,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 53856,
- 53858
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 34
- },
- "end": {
- "line": 1456,
- "column": 36
- }
- }
- },
- "range": [
- 53849,
- 53858
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 27
- },
- "end": {
- "line": 1456,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ContinueStatement",
- "label": null,
- "range": [
- 53889,
- 53898
- ],
- "loc": {
- "start": {
- "line": 1457,
- "column": 28
- },
- "end": {
- "line": 1457,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 53859,
- 53924
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 37
- },
- "end": {
- "line": 1458,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 53846,
- 53924
- ],
- "loc": {
- "start": {
- "line": 1456,
- "column": 24
- },
- "end": {
- "line": 1458,
- "column": 25
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 53953,
- 53955
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 28
- },
- "end": {
- "line": 1459,
- "column": 30
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 53958,
- 53961
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 33
- },
- "end": {
- "line": 1459,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "createCheckItem",
- "range": [
- 53962,
- 53977
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 37
- },
- "end": {
- "line": 1459,
- "column": 52
- }
- }
- },
- "range": [
- 53958,
- 53977
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 33
- },
- "end": {
- "line": 1459,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54007,
- 54011
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltIds",
- "range": [
- 54012,
- 54018
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 33
- },
- "end": {
- "line": 1460,
- "column": 39
- }
- }
- },
- "range": [
- 54007,
- 54018
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "i",
- "range": [
- 54019,
- 54020
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 40
- },
- "end": {
- "line": 1460,
- "column": 41
- }
- }
- },
- "range": [
- 54007,
- 54021
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 42
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "_",
- "raw": "'_'",
- "range": [
- 54022,
- 54025
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 43
- },
- "end": {
- "line": 1460,
- "column": 46
- }
- }
- },
- "range": [
- 54007,
- 54025
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 46
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 54027,
- 54028
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 48
- },
- "end": {
- "line": 1460,
- "column": 49
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 54029,
- 54030
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 50
- },
- "end": {
- "line": 1460,
- "column": 51
- }
- }
- },
- "range": [
- 54027,
- 54030
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 48
- },
- "end": {
- "line": 1460,
- "column": 51
- }
- }
- },
- "range": [
- 54007,
- 54031
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 52
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 54033,
- 54034
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 54
- },
- "end": {
- "line": 1460,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 54035,
- 54036
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 56
- },
- "end": {
- "line": 1460,
- "column": 57
- }
- }
- },
- "range": [
- 54033,
- 54037
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 54
- },
- "end": {
- "line": 1460,
- "column": 58
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 54039,
- 54040
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 60
- },
- "end": {
- "line": 1460,
- "column": 61
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 54041,
- 54042
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 62
- },
- "end": {
- "line": 1460,
- "column": 63
- }
- }
- },
- "range": [
- 54039,
- 54043
- ],
- "loc": {
- "start": {
- "line": 1460,
- "column": 60
- },
- "end": {
- "line": 1460,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 53958,
- 54044
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 33
- },
- "end": {
- "line": 1460,
- "column": 65
- }
- }
- },
- "range": [
- 53953,
- 54044
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 28
- },
- "end": {
- "line": 1460,
- "column": 65
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 53949,
- 54045
- ],
- "loc": {
- "start": {
- "line": 1459,
- "column": 24
- },
- "end": {
- "line": 1460,
- "column": 66
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 54070,
- 54072
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 24
- },
- "end": {
- "line": 1461,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "className",
- "range": [
- 54073,
- 54082
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 27
- },
- "end": {
- "line": 1461,
- "column": 36
- }
- }
- },
- "range": [
- 54070,
- 54082
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 24
- },
- "end": {
- "line": 1461,
- "column": 36
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 54085,
- 54094
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 39
- },
- "end": {
- "line": 1461,
- "column": 48
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkListItemCssClass",
- "range": [
- 54095,
- 54116
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 49
- },
- "end": {
- "line": 1461,
- "column": 70
- }
- }
- },
- "range": [
- 54085,
- 54116
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 39
- },
- "end": {
- "line": 1461,
- "column": 70
- }
- }
- },
- "range": [
- 54070,
- 54116
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 24
- },
- "end": {
- "line": 1461,
- "column": 70
- }
- }
- },
- "range": [
- 54070,
- 54117
- ],
- "loc": {
- "start": {
- "line": 1461,
- "column": 24
- },
- "end": {
- "line": 1461,
- "column": 71
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "ul",
- "range": [
- 54142,
- 54144
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 24
- },
- "end": {
- "line": 1462,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 54145,
- 54156
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 27
- },
- "end": {
- "line": 1462,
- "column": 38
- }
- }
- },
- "range": [
- 54142,
- 54156
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 24
- },
- "end": {
- "line": 1462,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "li",
- "range": [
- 54157,
- 54159
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 39
- },
- "end": {
- "line": 1462,
- "column": 41
- }
- }
- }
- ],
- "range": [
- 54142,
- 54160
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 24
- },
- "end": {
- "line": 1462,
- "column": 42
- }
- }
- },
- "range": [
- 54142,
- 54161
- ],
- "loc": {
- "start": {
- "line": 1462,
- "column": 24
- },
- "end": {
- "line": 1462,
- "column": 43
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 54186,
- 54188
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 24
- },
- "end": {
- "line": 1463,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "check",
- "range": [
- 54189,
- 54194
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 27
- },
- "end": {
- "line": 1463,
- "column": 32
- }
- }
- },
- "range": [
- 54186,
- 54194
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 24
- },
- "end": {
- "line": 1463,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checked",
- "range": [
- 54195,
- 54202
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 33
- },
- "end": {
- "line": 1463,
- "column": 40
- }
- }
- },
- "range": [
- 54186,
- 54202
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 24
- },
- "end": {
- "line": 1463,
- "column": 40
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 54205,
- 54209
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 43
- },
- "end": {
- "line": 1463,
- "column": 47
- }
- }
- },
- "range": [
- 54186,
- 54209
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 24
- },
- "end": {
- "line": 1463,
- "column": 47
- }
- }
- },
- "range": [
- 54186,
- 54210
- ],
- "loc": {
- "start": {
- "line": 1463,
- "column": 24
- },
- "end": {
- "line": 1463,
- "column": 48
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 54235,
- 54244
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 24
- },
- "end": {
- "line": 1464,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setCheckListValues",
- "range": [
- 54245,
- 54263
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 34
- },
- "end": {
- "line": 1464,
- "column": 52
- }
- }
- },
- "range": [
- 54235,
- 54263
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 24
- },
- "end": {
- "line": 1464,
- "column": 52
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 54264,
- 54266
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 53
- },
- "end": {
- "line": 1464,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "check",
- "range": [
- 54267,
- 54272
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 56
- },
- "end": {
- "line": 1464,
- "column": 61
- }
- }
- },
- "range": [
- 54264,
- 54272
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 53
- },
- "end": {
- "line": 1464,
- "column": 61
- }
- }
- }
- ],
- "range": [
- 54235,
- 54273
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 24
- },
- "end": {
- "line": 1464,
- "column": 62
- }
- }
- },
- "range": [
- 54235,
- 54274
- ],
- "loc": {
- "start": {
- "line": 1464,
- "column": 24
- },
- "end": {
- "line": 1464,
- "column": 63
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54299,
- 54303
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 24
- },
- "end": {
- "line": 1465,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasStoredValues",
- "range": [
- 54304,
- 54319
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 29
- },
- "end": {
- "line": 1465,
- "column": 44
- }
- }
- },
- "range": [
- 54299,
- 54319
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 24
- },
- "end": {
- "line": 1465,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 54322,
- 54326
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 47
- },
- "end": {
- "line": 1465,
- "column": 51
- }
- }
- },
- "range": [
- 54299,
- 54326
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 24
- },
- "end": {
- "line": 1465,
- "column": 51
- }
- }
- },
- "range": [
- 54299,
- 54327
- ],
- "loc": {
- "start": {
- "line": 1465,
- "column": 24
- },
- "end": {
- "line": 1465,
- "column": 52
- }
- }
- }
- ],
- "range": [
- 53820,
- 54349
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 58
- },
- "end": {
- "line": 1466,
- "column": 21
- }
- }
- },
- "range": [
- 53782,
- 54349
- ],
- "loc": {
- "start": {
- "line": 1455,
- "column": 20
- },
- "end": {
- "line": 1466,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 53025,
- 54367
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 56
- },
- "end": {
- "line": 1467,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 52990,
- 54367
- ],
- "loc": {
- "start": {
- "line": 1437,
- "column": 21
- },
- "end": {
- "line": 1467,
- "column": 17
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " if multiFltsIndex",
- "range": [
- 52930,
- 52950
- ],
- "loc": {
- "start": {
- "line": 1435,
- "column": 21
- },
- "end": {
- "line": 1435,
- "column": 41
- }
- }
- }
- ]
- },
- "range": [
- 51906,
- 54367
- ],
- "loc": {
- "start": {
- "line": 1414,
- "column": 16
- },
- "end": {
- "line": 1467,
- "column": 17
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " if loadFltOnDemand, drop-down needs to contain stored",
- "range": [
- 51791,
- 51847
- ],
- "loc": {
- "start": {
- "line": 1412,
- "column": 16
- },
- "end": {
- "line": 1412,
- "column": 72
- }
- }
- },
- {
- "type": "Line",
- "value": " value(s) for filtering",
- "range": [
- 51864,
- 51889
- ],
- "loc": {
- "start": {
- "line": 1413,
- "column": 16
- },
- "end": {
- "line": 1413,
- "column": 41
- }
- }
- }
- ]
- }
- ],
- "range": [
- 51603,
- 54381
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 56
- },
- "end": {
- "line": 1468,
- "column": 13
- }
- }
- },
- "range": [
- 51559,
- 54381
- ],
- "loc": {
- "start": {
- "line": 1406,
- "column": 12
- },
- "end": {
- "line": 1468,
- "column": 13
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "end for",
- "range": [
- 54381,
- 54390
- ],
- "loc": {
- "start": {
- "line": 1468,
- "column": 13
- },
- "end": {
- "line": 1468,
- "column": 22
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54408,
- 54412
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 16
- },
- "end": {
- "line": 1470,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasStoredValues",
- "range": [
- 54413,
- 54428
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 21
- },
- "end": {
- "line": 1470,
- "column": 36
- }
- }
- },
- "range": [
- 54408,
- 54428
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 16
- },
- "end": {
- "line": 1470,
- "column": 36
- }
- }
- },
- "prefix": true,
- "range": [
- 54407,
- 54428
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 15
- },
- "end": {
- "line": 1470,
- "column": 36
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54432,
- 54436
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 40
- },
- "end": {
- "line": 1470,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 54437,
- 54443
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 45
- },
- "end": {
- "line": 1470,
- "column": 51
- }
- }
- },
- "range": [
- 54432,
- 54443
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 40
- },
- "end": {
- "line": 1470,
- "column": 51
- }
- }
- },
- "range": [
- 54407,
- 54443
- ],
- "loc": {
- "start": {
- "line": 1470,
- "column": 15
- },
- "end": {
- "line": 1470,
- "column": 51
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54462,
- 54466
- ],
- "loc": {
- "start": {
- "line": 1471,
+ "line": 1143,
"column": 16
},
"end": {
- "line": 1471,
- "column": 20
+ "line": 1143,
+ "column": 35
}
}
},
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 54467,
- 54470
- ],
- "loc": {
- "start": {
- "line": 1471,
- "column": 21
- },
- "end": {
- "line": 1471,
- "column": 24
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "idx",
+ "range": [
+ 40022,
+ 40025
+ ],
+ "loc": {
+ "start": {
+ "line": 1143,
+ "column": 36
+ },
+ "end": {
+ "line": 1143,
+ "column": 39
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "val",
+ "range": [
+ 40027,
+ 40030
+ ],
+ "loc": {
+ "start": {
+ "line": 1143,
+ "column": 41
+ },
+ "end": {
+ "line": 1143,
+ "column": 44
+ }
}
}
- },
+ ],
"range": [
- 54462,
- 54470
+ 40002,
+ 40031
],
"loc": {
"start": {
- "line": 1471,
+ "line": 1143,
"column": 16
},
"end": {
- "line": 1471,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 54471,
- 54477
- ],
- "loc": {
- "start": {
- "line": 1471,
- "column": 25
- },
- "end": {
- "line": 1471,
- "column": 31
+ "line": 1143,
+ "column": 45
}
}
},
"range": [
- 54462,
- 54477
+ 40002,
+ 40032
],
"loc": {
"start": {
- "line": 1471,
+ "line": 1143,
"column": 16
},
"end": {
- "line": 1471,
- "column": 31
+ "line": 1143,
+ "column": 46
}
}
- },
- "property": {
- "type": "Identifier",
- "name": "setPagingInfo",
- "range": [
- 54478,
- 54491
- ],
- "loc": {
- "start": {
- "line": 1471,
- "column": 32
- },
- "end": {
- "line": 1471,
- "column": 45
- }
- }
- },
- "range": [
- 54462,
- 54491
- ],
- "loc": {
- "start": {
- "line": 1471,
- "column": 16
- },
- "end": {
- "line": 1471,
- "column": 45
- }
}
- },
- "arguments": [],
+ ],
"range": [
- 54462,
- 54493
+ 39984,
+ 40046
],
"loc": {
"start": {
- "line": 1471,
- "column": 16
+ "line": 1142,
+ "column": 27
},
"end": {
- "line": 1471,
- "column": 47
+ "line": 1144,
+ "column": 13
}
}
},
+ "alternate": null,
"range": [
- 54462,
- 54494
+ 39969,
+ 40046
],
"loc": {
"start": {
- "line": 1471,
- "column": 16
+ "line": 1142,
+ "column": 12
},
"end": {
- "line": 1471,
- "column": 48
+ "line": 1144,
+ "column": 13
}
}
}
],
"range": [
- 54444,
- 54508
+ 39955,
+ 40056
],
"loc": {
"start": {
- "line": 1470,
- "column": 52
+ "line": 1141,
+ "column": 39
},
"end": {
- "line": 1472,
- "column": 13
+ "line": 1145,
+ "column": 9
}
}
},
- "alternate": null,
+ "generator": false,
+ "expression": false,
"range": [
- 54404,
- 54508
+ 39942,
+ 40056
],
"loc": {
"start": {
- "line": 1470,
- "column": 12
+ "line": 1141,
+ "column": 26
},
"end": {
- "line": 1472,
- "column": 13
+ "line": 1145,
+ "column": 9
}
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "end for",
- "range": [
- 54381,
- 54390
- ],
- "loc": {
- "start": {
- "line": 1468,
- "column": 13
- },
- "end": {
- "line": 1468,
- "column": 22
- }
- }
- }
- ]
+ }
}
],
"range": [
- 51545,
- 54518
+ 39924,
+ 40057
],
"loc": {
"start": {
- "line": 1405,
- "column": 76
+ "line": 1141,
+ "column": 8
},
"end": {
- "line": 1473,
- "column": 9
+ "line": 1145,
+ "column": 10
}
}
},
- "alternate": null,
"range": [
- 51477,
- 54518
+ 39924,
+ 40058
],
"loc": {
"start": {
- "line": 1405,
+ "line": 1141,
"column": 8
},
"end": {
- "line": 1473,
- "column": 9
+ "line": 1145,
+ "column": 11
}
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "if the number of columns is the same as before page reload",
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 40067,
+ 40071
+ ],
+ "loc": {
+ "start": {
+ "line": 1146,
+ "column": 8
+ },
+ "end": {
+ "line": 1146,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "filter",
+ "range": [
+ 40072,
+ 40078
+ ],
+ "loc": {
+ "start": {
+ "line": 1146,
+ "column": 13
+ },
+ "end": {
+ "line": 1146,
+ "column": 19
+ }
+ }
+ },
"range": [
- 51408,
- 51468
+ 40067,
+ 40078
],
"loc": {
"start": {
- "line": 1404,
+ "line": 1146,
"column": 8
},
"end": {
- "line": 1404,
- "column": 68
+ "line": 1146,
+ "column": 19
}
}
+ },
+ "arguments": [],
+ "range": [
+ 40067,
+ 40080
+ ],
+ "loc": {
+ "start": {
+ "line": 1146,
+ "column": 8
+ },
+ "end": {
+ "line": 1146,
+ "column": 21
+ }
}
+ },
+ "range": [
+ 40067,
+ 40081
],
- "trailingComments": [
- {
- "type": "Line",
- "value": "end if",
- "range": [
- 54518,
- 54526
- ],
- "loc": {
- "start": {
- "line": 1473,
- "column": 9
- },
- "end": {
- "line": 1473,
- "column": 17
- }
- }
+ "loc": {
+ "start": {
+ "line": 1146,
+ "column": 8
+ },
+ "end": {
+ "line": 1146,
+ "column": 22
}
- ]
+ }
}
],
"range": [
- 51119,
- 54532
+ 39766,
+ 40087
],
"loc": {
"start": {
- "line": 1396,
- "column": 26
+ "line": 1135,
+ "column": 17
},
"end": {
- "line": 1474,
+ "line": 1147,
"column": 5
}
}
@@ -125403,16 +95296,16 @@
"generator": false,
"expression": false,
"range": [
- 51113,
- 54532
+ 39764,
+ 40087
],
"loc": {
"start": {
- "line": 1396,
- "column": 20
+ "line": 1135,
+ "column": 15
},
"end": {
- "line": 1474,
+ "line": 1147,
"column": 5
}
}
@@ -125420,34 +95313,54 @@
"kind": "method",
"computed": false,
"range": [
- 51097,
- 54532
+ 39753,
+ 40087
],
"loc": {
"start": {
- "line": 1396,
+ "line": 1135,
"column": 4
},
"end": {
- "line": 1474,
+ "line": 1147,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Reset persisted filter values when load filters on demand feature is\n * enabled\n * @param {String} name cookie name storing filter values\n ",
+ "value": "*\n * Reset persisted filter values\n ",
"range": [
- 50927,
- 51092
+ 39700,
+ 39748
],
"loc": {
"start": {
- "line": 1391,
+ "line": 1132,
"column": 4
},
"end": {
- "line": 1395,
+ "line": 1134,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n ",
+ "range": [
+ 40093,
+ 40330
+ ],
+ "loc": {
+ "start": {
+ "line": 1149,
+ "column": 4
+ },
+ "end": {
+ "line": 1153,
"column": 7
}
}
@@ -125461,352 +95374,20 @@
"type": "Identifier",
"name": "filter",
"range": [
- 54538,
- 54544
+ 40335,
+ 40341
],
"loc": {
"start": {
- "line": 1476,
+ "line": 1154,
"column": 4
},
"end": {
- "line": 1476,
+ "line": 1154,
"column": 10
}
}
},
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54556,
- 54560
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 8
- },
- "end": {
- "line": 1477,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 54561,
- 54571
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 13
- },
- "end": {
- "line": 1477,
- "column": 23
- }
- }
- },
- "range": [
- 54556,
- 54571
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 8
- },
- "end": {
- "line": 1477,
- "column": 23
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54572,
- 54576
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 24
- },
- "end": {
- "line": 1477,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 54577,
- 54580
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 29
- },
- "end": {
- "line": 1477,
- "column": 32
- }
- }
- },
- "range": [
- 54572,
- 54580
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 24
- },
- "end": {
- "line": 1477,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 54581,
- 54585
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 33
- },
- "end": {
- "line": 1477,
- "column": 37
- }
- }
- },
- "range": [
- 54572,
- 54585
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 24
- },
- "end": {
- "line": 1477,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filter",
- "range": [
- 54586,
- 54592
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 38
- },
- "end": {
- "line": 1477,
- "column": 44
- }
- }
- },
- "range": [
- 54572,
- 54592
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 24
- },
- "end": {
- "line": 1477,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 54556,
- 54593
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 8
- },
- "end": {
- "line": 1477,
- "column": 45
- }
- }
- },
- "range": [
- 54556,
- 54594
- ],
- "loc": {
- "start": {
- "line": 1477,
- "column": 8
- },
- "end": {
- "line": 1477,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 54546,
- 54600
- ],
- "loc": {
- "start": {
- "line": 1476,
- "column": 12
- },
- "end": {
- "line": 1478,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 54544,
- 54600
- ],
- "loc": {
- "start": {
- "line": 1476,
- "column": 10
- },
- "end": {
- "line": 1478,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 54538,
- 54600
- ],
- "loc": {
- "start": {
- "line": 1476,
- "column": 4
- },
- "end": {
- "line": 1478,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "end if",
- "range": [
- 54518,
- 54526
- ],
- "loc": {
- "start": {
- "line": 1473,
- "column": 9
- },
- "end": {
- "line": 1473,
- "column": 17
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n *\n * TODO: Reduce complexity of this massive method\n ",
- "range": [
- 54606,
- 54904
- ],
- "loc": {
- "start": {
- "line": 1480,
- "column": 4
- },
- "end": {
- "line": 1486,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_filter",
- "range": [
- 54909,
- 54916
- ],
- "loc": {
- "start": {
- "line": 1487,
- "column": 4
- },
- "end": {
- "line": 1487,
- "column": 11
- }
- }
- },
"value": {
"type": "FunctionExpression",
"id": null,
@@ -125828,16 +95409,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 54932,
- 54936
+ 40357,
+ 40361
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 12
},
"end": {
- "line": 1488,
+ "line": 1155,
"column": 16
}
}
@@ -125846,225 +95427,135 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 54937,
- 54944
+ 40362,
+ 40369
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 17
},
"end": {
- "line": 1488,
+ "line": 1155,
"column": 24
}
}
},
"range": [
- 54932,
- 54944
+ 40357,
+ 40369
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 12
},
"end": {
- "line": 1488,
+ "line": 1155,
"column": 24
}
}
},
"prefix": true,
"range": [
- 54931,
- 54944
+ 40356,
+ 40369
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 11
},
"end": {
- "line": 1488,
+ "line": 1155,
"column": 24
}
}
},
"right": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54950,
- 54954
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 30
- },
- "end": {
- "line": 1488,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_hasGrid",
- "range": [
- 54955,
- 54963
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 35
- },
- "end": {
- "line": 1488,
- "column": 43
- }
- }
- },
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 54950,
- 54963
+ 40374,
+ 40378
],
"loc": {
"start": {
- "line": 1488,
- "column": 30
+ "line": 1155,
+ "column": 29
},
"end": {
- "line": 1488,
- "column": 43
+ "line": 1155,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_hasGrid",
+ "range": [
+ 40379,
+ 40387
+ ],
+ "loc": {
+ "start": {
+ "line": 1155,
+ "column": 34
+ },
+ "end": {
+ "line": 1155,
+ "column": 42
}
}
},
- "prefix": true,
"range": [
- 54949,
- 54963
+ 40374,
+ 40387
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 29
},
"end": {
- "line": 1488,
- "column": 43
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 54968,
- 54972
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 48
- },
- "end": {
- "line": 1488,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 54973,
- 54984
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 53
- },
- "end": {
- "line": 1488,
- "column": 64
- }
- }
- },
- "range": [
- 54968,
- 54984
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 48
- },
- "end": {
- "line": 1488,
- "column": 64
- }
- }
- },
- "prefix": true,
- "range": [
- 54967,
- 54984
- ],
- "loc": {
- "start": {
- "line": 1488,
- "column": 47
- },
- "end": {
- "line": 1488,
- "column": 64
+ "line": 1155,
+ "column": 42
}
}
},
+ "prefix": true,
"range": [
- 54949,
- 54984
+ 40373,
+ 40387
],
"loc": {
"start": {
- "line": 1488,
- "column": 29
+ "line": 1155,
+ "column": 28
},
"end": {
- "line": 1488,
- "column": 64
+ "line": 1155,
+ "column": 42
}
}
},
"range": [
- 54931,
- 54985
+ 40356,
+ 40387
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 11
},
"end": {
- "line": 1488,
- "column": 65
+ "line": 1155,
+ "column": 42
}
}
},
@@ -126075,48 +95566,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 55000,
- 55007
+ 40402,
+ 40409
],
"loc": {
"start": {
- "line": 1489,
+ "line": 1156,
"column": 12
},
"end": {
- "line": 1489,
+ "line": 1156,
"column": 19
}
}
}
],
"range": [
- 54986,
- 55017
+ 40388,
+ 40419
],
"loc": {
"start": {
- "line": 1488,
- "column": 66
+ "line": 1155,
+ "column": 43
},
"end": {
- "line": 1490,
+ "line": 1157,
"column": 9
}
}
},
"alternate": null,
"range": [
- 54928,
- 55017
+ 40353,
+ 40419
],
"loc": {
"start": {
- "line": 1488,
+ "line": 1155,
"column": 8
},
"end": {
- "line": 1490,
+ "line": 1157,
"column": 9
}
},
@@ -126125,16 +95616,16 @@
"type": "Line",
"value": "invoke onbefore callback",
"range": [
- 55026,
- 55052
+ 40428,
+ 40454
],
"loc": {
"start": {
- "line": 1491,
+ "line": 1158,
"column": 8
},
"end": {
- "line": 1491,
+ "line": 1158,
"column": 34
}
}
@@ -126149,16 +95640,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55064,
- 55068
+ 40466,
+ 40470
],
"loc": {
"start": {
- "line": 1492,
+ "line": 1159,
"column": 11
},
"end": {
- "line": 1492,
+ "line": 1159,
"column": 15
}
}
@@ -126167,31 +95658,31 @@
"type": "Identifier",
"name": "onBeforeFilter",
"range": [
- 55069,
- 55083
+ 40471,
+ 40485
],
"loc": {
"start": {
- "line": 1492,
+ "line": 1159,
"column": 16
},
"end": {
- "line": 1492,
+ "line": 1159,
"column": 30
}
}
},
"range": [
- 55064,
- 55083
+ 40466,
+ 40485
],
"loc": {
"start": {
- "line": 1492,
+ "line": 1159,
"column": 11
},
"end": {
- "line": 1492,
+ "line": 1159,
"column": 30
}
}
@@ -126212,16 +95703,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55098,
- 55102
+ 40500,
+ 40504
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 12
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 16
}
}
@@ -126230,31 +95721,31 @@
"type": "Identifier",
"name": "onBeforeFilter",
"range": [
- 55103,
- 55117
+ 40505,
+ 40519
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 17
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 31
}
}
},
"range": [
- 55098,
- 55117
+ 40500,
+ 40519
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 12
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 31
}
}
@@ -126263,31 +95754,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 55118,
- 55122
+ 40520,
+ 40524
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 32
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 36
}
}
},
"range": [
- 55098,
- 55122
+ 40500,
+ 40524
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 12
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 36
}
}
@@ -126298,16 +95789,16 @@
"value": null,
"raw": "null",
"range": [
- 55123,
- 55127
+ 40525,
+ 40529
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 37
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 41
}
}
@@ -126315,79 +95806,79 @@
{
"type": "ThisExpression",
"range": [
- 55129,
- 55133
+ 40531,
+ 40535
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 43
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 47
}
}
}
],
"range": [
- 55098,
- 55134
+ 40500,
+ 40536
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 12
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 48
}
}
},
"range": [
- 55098,
- 55135
+ 40500,
+ 40537
],
"loc": {
"start": {
- "line": 1493,
+ "line": 1160,
"column": 12
},
"end": {
- "line": 1493,
+ "line": 1160,
"column": 49
}
}
}
],
"range": [
- 55084,
- 55145
+ 40486,
+ 40547
],
"loc": {
"start": {
- "line": 1492,
+ "line": 1159,
"column": 31
},
"end": {
- "line": 1494,
+ "line": 1161,
"column": 9
}
}
},
"alternate": null,
"range": [
- 55061,
- 55145
+ 40463,
+ 40547
],
"loc": {
"start": {
- "line": 1492,
+ "line": 1159,
"column": 8
},
"end": {
- "line": 1494,
+ "line": 1161,
"column": 9
}
},
@@ -126396,22 +95887,183 @@
"type": "Line",
"value": "invoke onbefore callback",
"range": [
- 55026,
- 55052
+ 40428,
+ 40454
],
"loc": {
"start": {
- "line": 1491,
+ "line": 1158,
"column": 8
},
"end": {
- "line": 1491,
+ "line": 1158,
"column": 34
}
}
}
]
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 40556,
+ 40560
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 8
+ },
+ "end": {
+ "line": 1162,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 40561,
+ 40568
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 13
+ },
+ "end": {
+ "line": 1162,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 40556,
+ 40568
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 8
+ },
+ "end": {
+ "line": 1162,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 40569,
+ 40573
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 21
+ },
+ "end": {
+ "line": 1162,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 40556,
+ 40573
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 8
+ },
+ "end": {
+ "line": 1162,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-filtering",
+ "raw": "'before-filtering'",
+ "range": [
+ 40574,
+ 40592
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 26
+ },
+ "end": {
+ "line": 1162,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 40594,
+ 40598
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 46
+ },
+ "end": {
+ "line": 1162,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 40556,
+ 40599
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 8
+ },
+ "end": {
+ "line": 1162,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 40556,
+ 40600
+ ],
+ "loc": {
+ "start": {
+ "line": 1162,
+ "column": 8
+ },
+ "end": {
+ "line": 1162,
+ "column": 52
+ }
+ }
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -126421,16 +96073,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 55159,
- 55162
+ 40614,
+ 40617
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 12
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 15
}
}
@@ -126444,16 +96096,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55165,
- 55169
+ 40620,
+ 40624
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 18
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 22
}
}
@@ -126462,31 +96114,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 55170,
- 55173
+ 40625,
+ 40628
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 23
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 26
}
}
},
"range": [
- 55165,
- 55173
+ 40620,
+ 40628
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 18
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 26
}
}
@@ -126495,154 +96147,66 @@
"type": "Identifier",
"name": "rows",
"range": [
- 55174,
- 55178
+ 40629,
+ 40633
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 27
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 31
}
}
},
"range": [
- 55165,
- 55178
+ 40620,
+ 40633
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 18
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 31
}
}
},
"range": [
- 55159,
- 55178
+ 40614,
+ 40633
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 12
},
"end": {
- "line": 1496,
+ "line": 1164,
"column": 31
}
}
},
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 55192,
- 55195
- ],
- "loc": {
- "start": {
- "line": 1497,
- "column": 12
- },
- "end": {
- "line": 1497,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 55198,
- 55202
- ],
- "loc": {
- "start": {
- "line": 1497,
- "column": 18
- },
- "end": {
- "line": 1497,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 55203,
- 55206
- ],
- "loc": {
- "start": {
- "line": 1497,
- "column": 23
- },
- "end": {
- "line": 1497,
- "column": 26
- }
- }
- },
- "range": [
- 55198,
- 55206
- ],
- "loc": {
- "start": {
- "line": 1497,
- "column": 18
- },
- "end": {
- "line": 1497,
- "column": 26
- }
- }
- },
- "range": [
- 55192,
- 55206
- ],
- "loc": {
- "start": {
- "line": 1497,
- "column": 12
- },
- "end": {
- "line": 1497,
- "column": 26
- }
- }
- },
{
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
"name": "hiddenrows",
"range": [
- 55220,
- 55230
+ 40647,
+ 40657
],
"loc": {
"start": {
- "line": 1498,
+ "line": 1165,
"column": 12
},
"end": {
- "line": 1498,
+ "line": 1165,
"column": 22
}
}
@@ -126652,31 +96216,31 @@
"value": 0,
"raw": "0",
"range": [
- 55233,
- 55234
+ 40660,
+ 40661
],
"loc": {
"start": {
- "line": 1498,
+ "line": 1165,
"column": 25
},
"end": {
- "line": 1498,
+ "line": 1165,
"column": 26
}
}
},
"range": [
- 55220,
- 55234
+ 40647,
+ 40661
],
"loc": {
"start": {
- "line": 1498,
+ "line": 1165,
"column": 12
},
"end": {
- "line": 1498,
+ "line": 1165,
"column": 26
}
}
@@ -126684,16 +96248,16 @@
],
"kind": "let",
"range": [
- 55155,
- 55235
+ 40610,
+ 40662
],
"loc": {
"start": {
- "line": 1496,
+ "line": 1164,
"column": 8
},
"end": {
- "line": 1498,
+ "line": 1165,
"column": 27
}
}
@@ -126709,16 +96273,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55245,
- 55249
+ 40672,
+ 40676
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 8
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 12
}
}
@@ -126727,31 +96291,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 55250,
- 55264
+ 40677,
+ 40691
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 13
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 27
}
}
},
"range": [
- 55245,
- 55264
+ 40672,
+ 40691
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 8
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 27
}
}
@@ -126760,792 +96324,64 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 55267,
- 55269
+ 40694,
+ 40696
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 30
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 32
}
}
},
"range": [
- 55245,
- 55269
+ 40672,
+ 40696
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 8
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 32
}
}
},
"range": [
- 55245,
- 55270
+ 40672,
+ 40697
],
"loc": {
"start": {
- "line": 1500,
+ "line": 1167,
"column": 8
},
"end": {
- "line": 1500,
+ "line": 1167,
"column": 33
}
},
- "trailingComments": [
- {
- "type": "Line",
- "value": " removes keyword highlighting",
- "range": [
- 55280,
- 55311
- ],
- "loc": {
- "start": {
- "line": 1502,
- "column": 8
- },
- "end": {
- "line": 1502,
- "column": 39
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 55323,
- 55327
- ],
- "loc": {
- "start": {
- "line": 1503,
- "column": 11
- },
- "end": {
- "line": 1503,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeywords",
- "range": [
- 55328,
- 55345
- ],
- "loc": {
- "start": {
- "line": 1503,
- "column": 16
- },
- "end": {
- "line": 1503,
- "column": 33
- }
- }
- },
- "range": [
- 55323,
- 55345
- ],
- "loc": {
- "start": {
- "line": 1503,
- "column": 11
- },
- "end": {
- "line": 1503,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 55360,
- 55363
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 12
- },
- "end": {
- "line": 1504,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeyword",
- "range": [
- 55364,
- 55380
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 16
- },
- "end": {
- "line": 1504,
- "column": 32
- }
- }
- },
- "range": [
- 55360,
- 55380
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 12
- },
- "end": {
- "line": 1504,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "unhighlightAll",
- "range": [
- 55381,
- 55395
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 33
- },
- "end": {
- "line": 1504,
- "column": 47
- }
- }
- },
- "range": [
- 55360,
- 55395
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 12
- },
- "end": {
- "line": 1504,
- "column": 47
- }
- }
- },
- "arguments": [],
- "range": [
- 55360,
- 55397
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 12
- },
- "end": {
- "line": 1504,
- "column": 49
- }
- }
- },
- "range": [
- 55360,
- 55398
- ],
- "loc": {
- "start": {
- "line": 1504,
- "column": 12
- },
- "end": {
- "line": 1504,
- "column": 50
- }
- }
- }
- ],
- "range": [
- 55346,
- 55408
- ],
- "loc": {
- "start": {
- "line": 1503,
- "column": 34
- },
- "end": {
- "line": 1505,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 55320,
- 55408
- ],
- "loc": {
- "start": {
- "line": 1503,
- "column": 8
- },
- "end": {
- "line": 1505,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " removes keyword highlighting",
- "range": [
- 55280,
- 55311
- ],
- "loc": {
- "start": {
- "line": 1502,
- "column": 8
- },
- "end": {
- "line": 1502,
- "column": 39
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "removes popup filters active icons",
- "range": [
- 55417,
- 55453
- ],
- "loc": {
- "start": {
- "line": 1506,
- "column": 8
- },
- "end": {
- "line": 1506,
- "column": 44
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 55465,
- 55469
- ],
- "loc": {
- "start": {
- "line": 1507,
- "column": 11
- },
- "end": {
- "line": 1507,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 55470,
- 55482
- ],
- "loc": {
- "start": {
- "line": 1507,
- "column": 16
- },
- "end": {
- "line": 1507,
- "column": 28
- }
- }
- },
- "range": [
- 55465,
- 55482
- ],
- "loc": {
- "start": {
- "line": 1507,
- "column": 11
- },
- "end": {
- "line": 1507,
- "column": 28
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 55497,
- 55500
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 12
- },
- "end": {
- "line": 1508,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 55501,
- 55512
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 16
- },
- "end": {
- "line": 1508,
- "column": 27
- }
- }
- },
- "range": [
- 55497,
- 55512
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 12
- },
- "end": {
- "line": 1508,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "buildIcons",
- "range": [
- 55513,
- 55523
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 28
- },
- "end": {
- "line": 1508,
- "column": 38
- }
- }
- },
- "range": [
- 55497,
- 55523
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 12
- },
- "end": {
- "line": 1508,
- "column": 38
- }
- }
- },
- "arguments": [],
- "range": [
- 55497,
- 55525
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 12
- },
- "end": {
- "line": 1508,
- "column": 40
- }
- }
- },
- "range": [
- 55497,
- 55526
- ],
- "loc": {
- "start": {
- "line": 1508,
- "column": 12
- },
- "end": {
- "line": 1508,
- "column": 41
- }
- }
- }
- ],
- "range": [
- 55483,
- 55536
- ],
- "loc": {
- "start": {
- "line": 1507,
- "column": 29
- },
- "end": {
- "line": 1509,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 55462,
- 55536
- ],
- "loc": {
- "start": {
- "line": 1507,
- "column": 8
- },
- "end": {
- "line": 1509,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "removes popup filters active icons",
- "range": [
- 55417,
- 55453
- ],
- "loc": {
- "start": {
- "line": 1506,
- "column": 8
- },
- "end": {
- "line": 1506,
- "column": 44
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "removes active column header class",
- "range": [
- 55545,
- 55581
- ],
- "loc": {
- "start": {
- "line": 1510,
- "column": 8
- },
- "end": {
- "line": 1510,
- "column": 44
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 55593,
- 55597
- ],
- "loc": {
- "start": {
- "line": 1511,
- "column": 11
- },
- "end": {
- "line": 1511,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "markActiveColumns",
- "range": [
- 55598,
- 55615
- ],
- "loc": {
- "start": {
- "line": 1511,
- "column": 16
- },
- "end": {
- "line": 1511,
- "column": 33
- }
- }
- },
- "range": [
- 55593,
- 55615
- ],
- "loc": {
- "start": {
- "line": 1511,
- "column": 11
- },
- "end": {
- "line": 1511,
- "column": 33
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 55630,
- 55634
- ],
- "loc": {
- "start": {
- "line": 1512,
- "column": 12
- },
- "end": {
- "line": 1512,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "clearActiveColumns",
- "range": [
- 55635,
- 55653
- ],
- "loc": {
- "start": {
- "line": 1512,
- "column": 17
- },
- "end": {
- "line": 1512,
- "column": 35
- }
- }
- },
- "range": [
- 55630,
- 55653
- ],
- "loc": {
- "start": {
- "line": 1512,
- "column": 12
- },
- "end": {
- "line": 1512,
- "column": 35
- }
- }
- },
- "arguments": [],
- "range": [
- 55630,
- 55655
- ],
- "loc": {
- "start": {
- "line": 1512,
- "column": 12
- },
- "end": {
- "line": 1512,
- "column": 37
- }
- }
- },
- "range": [
- 55630,
- 55656
- ],
- "loc": {
- "start": {
- "line": 1512,
- "column": 12
- },
- "end": {
- "line": 1512,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 55616,
- 55666
- ],
- "loc": {
- "start": {
- "line": 1511,
- "column": 34
- },
- "end": {
- "line": 1513,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 55590,
- 55666
- ],
- "loc": {
- "start": {
- "line": 1511,
- "column": 8
- },
- "end": {
- "line": 1513,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "removes active column header class",
- "range": [
- 55545,
- 55581
- ],
- "loc": {
- "start": {
- "line": 1510,
- "column": 8
- },
- "end": {
- "line": 1510,
- "column": 44
- }
- }
- }
- ],
"trailingComments": [
{
"type": "Line",
"value": " search args re-init",
"range": [
- 55675,
- 55697
+ 40706,
+ 40728
],
"loc": {
"start": {
- "line": 1514,
+ "line": 1168,
"column": 8
},
"end": {
- "line": 1514,
+ "line": 1168,
"column": 30
}
}
@@ -127563,16 +96399,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55706,
- 55710
+ 40737,
+ 40741
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 8
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 12
}
}
@@ -127581,31 +96417,31 @@
"type": "Identifier",
"name": "searchArgs",
"range": [
- 55711,
- 55721
+ 40742,
+ 40752
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 13
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 23
}
}
},
"range": [
- 55706,
- 55721
+ 40737,
+ 40752
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 8
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 23
}
}
@@ -127618,16 +96454,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55724,
- 55728
+ 40755,
+ 40759
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 26
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 30
}
}
@@ -127636,77 +96472,77 @@
"type": "Identifier",
"name": "getFiltersValue",
"range": [
- 55729,
- 55744
+ 40760,
+ 40775
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 31
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 46
}
}
},
"range": [
- 55724,
- 55744
+ 40755,
+ 40775
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 26
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 46
}
}
},
"arguments": [],
"range": [
- 55724,
- 55746
+ 40755,
+ 40777
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 26
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 48
}
}
},
"range": [
- 55706,
- 55746
+ 40737,
+ 40777
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 8
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 48
}
}
},
"range": [
- 55706,
- 55747
+ 40737,
+ 40778
],
"loc": {
"start": {
- "line": 1515,
+ "line": 1169,
"column": 8
},
"end": {
- "line": 1515,
+ "line": 1169,
"column": 49
}
},
@@ -127715,16 +96551,16 @@
"type": "Line",
"value": " search args re-init",
"range": [
- 55675,
- 55697
+ 40706,
+ 40728
],
"loc": {
"start": {
- "line": 1514,
+ "line": 1168,
"column": 8
},
"end": {
- "line": 1514,
+ "line": 1168,
"column": 30
}
}
@@ -127740,32 +96576,32 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 55761,
- 55772
+ 40792,
+ 40803
],
"loc": {
"start": {
- "line": 1517,
+ "line": 1171,
"column": 12
},
"end": {
- "line": 1517,
+ "line": 1171,
"column": 23
}
}
},
"init": null,
"range": [
- 55761,
- 55772
+ 40792,
+ 40803
],
"loc": {
"start": {
- "line": 1517,
+ "line": 1171,
"column": 12
},
"end": {
- "line": 1517,
+ "line": 1171,
"column": 23
}
}
@@ -127776,32 +96612,32 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 55774,
- 55782
+ 40805,
+ 40813
],
"loc": {
"start": {
- "line": 1517,
+ "line": 1171,
"column": 25
},
"end": {
- "line": 1517,
+ "line": 1171,
"column": 33
}
}
},
"init": null,
"range": [
- 55774,
- 55782
+ 40805,
+ 40813
],
"loc": {
"start": {
- "line": 1517,
+ "line": 1171,
"column": 25
},
"end": {
- "line": 1517,
+ "line": 1171,
"column": 33
}
}
@@ -127809,16 +96645,16 @@
],
"kind": "var",
"range": [
- 55757,
- 55783
+ 40788,
+ 40814
],
"loc": {
"start": {
- "line": 1517,
+ "line": 1171,
"column": 8
},
"end": {
- "line": 1517,
+ "line": 1171,
"column": 34
}
}
@@ -127832,16 +96668,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 55796,
- 55801
+ 40827,
+ 40832
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 12
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 17
}
}
@@ -127852,16 +96688,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 55808,
- 55814
+ 40839,
+ 40845
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 24
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 30
}
}
@@ -127873,16 +96709,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55815,
- 55819
+ 40846,
+ 40850
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 31
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 35
}
}
@@ -127891,62 +96727,62 @@
"type": "Identifier",
"name": "leOperator",
"range": [
- 55820,
- 55830
+ 40851,
+ 40861
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 36
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 46
}
}
},
"range": [
- 55815,
- 55830
+ 40846,
+ 40861
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 31
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 46
}
}
}
],
"range": [
- 55804,
- 55831
+ 40835,
+ 40862
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 20
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 47
}
}
},
"range": [
- 55796,
- 55831
+ 40827,
+ 40862
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 12
},
"end": {
- "line": 1518,
+ "line": 1172,
"column": 47
}
}
@@ -127957,16 +96793,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 55845,
- 55850
+ 40876,
+ 40881
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 12
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 17
}
}
@@ -127977,16 +96813,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 55857,
- 55863
+ 40888,
+ 40894
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 24
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 30
}
}
@@ -127998,16 +96834,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55864,
- 55868
+ 40895,
+ 40899
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 31
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 35
}
}
@@ -128016,62 +96852,62 @@
"type": "Identifier",
"name": "geOperator",
"range": [
- 55869,
- 55879
+ 40900,
+ 40910
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 36
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 46
}
}
},
"range": [
- 55864,
- 55879
+ 40895,
+ 40910
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 31
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 46
}
}
}
],
"range": [
- 55853,
- 55880
+ 40884,
+ 40911
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 20
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 47
}
}
},
"range": [
- 55845,
- 55880
+ 40876,
+ 40911
],
"loc": {
"start": {
- "line": 1519,
+ "line": 1173,
"column": 12
},
"end": {
- "line": 1519,
+ "line": 1173,
"column": 47
}
}
@@ -128082,16 +96918,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 55894,
- 55898
+ 40925,
+ 40929
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 12
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 16
}
}
@@ -128102,16 +96938,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 55905,
- 55911
+ 40936,
+ 40942
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 23
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 29
}
}
@@ -128123,16 +96959,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55912,
- 55916
+ 40943,
+ 40947
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 30
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 34
}
}
@@ -128141,62 +96977,62 @@
"type": "Identifier",
"name": "lwOperator",
"range": [
- 55917,
- 55927
+ 40948,
+ 40958
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 35
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 45
}
}
},
"range": [
- 55912,
- 55927
+ 40943,
+ 40958
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 30
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 45
}
}
}
],
"range": [
- 55901,
- 55928
+ 40932,
+ 40959
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 19
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 46
}
}
},
"range": [
- 55894,
- 55928
+ 40925,
+ 40959
],
"loc": {
"start": {
- "line": 1520,
+ "line": 1174,
"column": 12
},
"end": {
- "line": 1520,
+ "line": 1174,
"column": 46
}
}
@@ -128207,16 +97043,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 55942,
- 55946
+ 40973,
+ 40977
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 12
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 16
}
}
@@ -128227,16 +97063,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 55953,
- 55959
+ 40984,
+ 40990
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 23
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 29
}
}
@@ -128248,16 +97084,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 55960,
- 55964
+ 40991,
+ 40995
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 30
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 34
}
}
@@ -128266,62 +97102,62 @@
"type": "Identifier",
"name": "grOperator",
"range": [
- 55965,
- 55975
+ 40996,
+ 41006
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 35
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 45
}
}
},
"range": [
- 55960,
- 55975
+ 40991,
+ 41006
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 30
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 45
}
}
}
],
"range": [
- 55949,
- 55976
+ 40980,
+ 41007
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 19
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 46
}
}
},
"range": [
- 55942,
- 55976
+ 40973,
+ 41007
],
"loc": {
"start": {
- "line": 1521,
+ "line": 1175,
"column": 12
},
"end": {
- "line": 1521,
+ "line": 1175,
"column": 46
}
}
@@ -128332,16 +97168,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 55990,
- 55994
+ 41021,
+ 41025
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 12
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 16
}
}
@@ -128352,16 +97188,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56001,
- 56007
+ 41032,
+ 41038
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 23
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 29
}
}
@@ -128373,16 +97209,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56008,
- 56012
+ 41039,
+ 41043
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 30
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 34
}
}
@@ -128391,62 +97227,62 @@
"type": "Identifier",
"name": "dfOperator",
"range": [
- 56013,
- 56023
+ 41044,
+ 41054
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 35
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 45
}
}
},
"range": [
- 56008,
- 56023
+ 41039,
+ 41054
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 30
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 45
}
}
}
],
"range": [
- 55997,
- 56024
+ 41028,
+ 41055
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 19
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 46
}
}
},
"range": [
- 55990,
- 56024
+ 41021,
+ 41055
],
"loc": {
"start": {
- "line": 1522,
+ "line": 1176,
"column": 12
},
"end": {
- "line": 1522,
+ "line": 1176,
"column": 46
}
}
@@ -128457,16 +97293,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 56038,
- 56043
+ 41069,
+ 41074
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 12
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 17
}
}
@@ -128477,16 +97313,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56050,
- 56056
+ 41081,
+ 41087
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 24
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 30
}
}
@@ -128501,16 +97337,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 56057,
- 56060
+ 41088,
+ 41091
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 31
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 34
}
}
@@ -128519,31 +97355,31 @@
"type": "Identifier",
"name": "rgxEsc",
"range": [
- 56061,
- 56067
+ 41092,
+ 41098
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 35
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 41
}
}
},
"range": [
- 56057,
- 56067
+ 41088,
+ 41098
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 31
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 41
}
}
@@ -128555,16 +97391,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56068,
- 56072
+ 41099,
+ 41103
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 42
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 46
}
}
@@ -128573,78 +97409,78 @@
"type": "Identifier",
"name": "lkOperator",
"range": [
- 56073,
- 56083
+ 41104,
+ 41114
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 47
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 57
}
}
},
"range": [
- 56068,
- 56083
+ 41099,
+ 41114
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 42
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 57
}
}
}
],
"range": [
- 56057,
- 56084
+ 41088,
+ 41115
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 31
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 58
}
}
}
],
"range": [
- 56046,
- 56085
+ 41077,
+ 41116
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 20
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 59
}
}
},
"range": [
- 56038,
- 56085
+ 41069,
+ 41116
],
"loc": {
"start": {
- "line": 1523,
+ "line": 1177,
"column": 12
},
"end": {
- "line": 1523,
+ "line": 1177,
"column": 59
}
}
@@ -128655,16 +97491,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 56099,
- 56104
+ 41130,
+ 41135
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 12
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 17
}
}
@@ -128675,16 +97511,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56111,
- 56117
+ 41142,
+ 41148
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 24
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 30
}
}
@@ -128696,16 +97532,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56118,
- 56122
+ 41149,
+ 41153
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 31
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 35
}
}
@@ -128714,62 +97550,62 @@
"type": "Identifier",
"name": "eqOperator",
"range": [
- 56123,
- 56133
+ 41154,
+ 41164
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 36
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 46
}
}
},
"range": [
- 56118,
- 56133
+ 41149,
+ 41164
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 31
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 46
}
}
}
],
"range": [
- 56107,
- 56134
+ 41138,
+ 41165
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 20
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 47
}
}
},
"range": [
- 56099,
- 56134
+ 41130,
+ 41165
],
"loc": {
"start": {
- "line": 1524,
+ "line": 1178,
"column": 12
},
"end": {
- "line": 1524,
+ "line": 1178,
"column": 47
}
}
@@ -128780,16 +97616,16 @@
"type": "Identifier",
"name": "re_st",
"range": [
- 56148,
- 56153
+ 41179,
+ 41184
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 12
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 17
}
}
@@ -128800,16 +97636,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56160,
- 56166
+ 41191,
+ 41197
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 24
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 30
}
}
@@ -128821,16 +97657,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56167,
- 56171
+ 41198,
+ 41202
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 31
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 35
}
}
@@ -128839,62 +97675,62 @@
"type": "Identifier",
"name": "stOperator",
"range": [
- 56172,
- 56182
+ 41203,
+ 41213
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 36
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 46
}
}
},
"range": [
- 56167,
- 56182
+ 41198,
+ 41213
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 31
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 46
}
}
}
],
"range": [
- 56156,
- 56183
+ 41187,
+ 41214
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 20
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 47
}
}
},
"range": [
- 56148,
- 56183
+ 41179,
+ 41214
],
"loc": {
"start": {
- "line": 1525,
+ "line": 1179,
"column": 12
},
"end": {
- "line": 1525,
+ "line": 1179,
"column": 47
}
}
@@ -128905,16 +97741,16 @@
"type": "Identifier",
"name": "re_en",
"range": [
- 56197,
- 56202
+ 41228,
+ 41233
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 12
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 17
}
}
@@ -128925,16 +97761,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56209,
- 56215
+ 41240,
+ 41246
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 24
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 30
}
}
@@ -128946,16 +97782,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56216,
- 56220
+ 41247,
+ 41251
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 31
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 35
}
}
@@ -128964,62 +97800,62 @@
"type": "Identifier",
"name": "enOperator",
"range": [
- 56221,
- 56231
+ 41252,
+ 41262
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 36
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 46
}
}
},
"range": [
- 56216,
- 56231
+ 41247,
+ 41262
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 31
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 46
}
}
}
],
"range": [
- 56205,
- 56232
+ 41236,
+ 41263
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 20
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 47
}
}
},
"range": [
- 56197,
- 56232
+ 41228,
+ 41263
],
"loc": {
"start": {
- "line": 1526,
+ "line": 1180,
"column": 12
},
"end": {
- "line": 1526,
+ "line": 1180,
"column": 47
}
}
@@ -129030,16 +97866,16 @@
"type": "Identifier",
"name": "re_em",
"range": [
- 56346,
- 56351
+ 41377,
+ 41382
],
"loc": {
"start": {
- "line": 1529,
+ "line": 1183,
"column": 12
},
"end": {
- "line": 1529,
+ "line": 1183,
"column": 17
}
}
@@ -129050,16 +97886,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56354,
- 56358
+ 41385,
+ 41389
],
"loc": {
"start": {
- "line": 1529,
+ "line": 1183,
"column": 20
},
"end": {
- "line": 1529,
+ "line": 1183,
"column": 24
}
}
@@ -129068,46 +97904,46 @@
"type": "Identifier",
"name": "emOperator",
"range": [
- 56359,
- 56369
+ 41390,
+ 41400
],
"loc": {
"start": {
- "line": 1529,
+ "line": 1183,
"column": 25
},
"end": {
- "line": 1529,
+ "line": 1183,
"column": 35
}
}
},
"range": [
- 56354,
- 56369
+ 41385,
+ 41400
],
"loc": {
"start": {
- "line": 1529,
+ "line": 1183,
"column": 20
},
"end": {
- "line": 1529,
+ "line": 1183,
"column": 35
}
}
},
"range": [
- 56346,
- 56369
+ 41377,
+ 41400
],
"loc": {
"start": {
- "line": 1529,
+ "line": 1183,
"column": 12
},
"end": {
- "line": 1529,
+ "line": 1183,
"column": 35
}
},
@@ -129116,16 +97952,16 @@
"type": "Line",
"value": " re_an = new RegExp(this.anOperator),",
"range": [
- 56246,
- 56285
+ 41277,
+ 41316
],
"loc": {
"start": {
- "line": 1527,
+ "line": 1181,
"column": 12
},
"end": {
- "line": 1527,
+ "line": 1181,
"column": 51
}
}
@@ -129134,16 +97970,16 @@
"type": "Line",
"value": " re_cr = new RegExp(this.curExp),",
"range": [
- 56298,
- 56333
+ 41329,
+ 41364
],
"loc": {
"start": {
- "line": 1528,
+ "line": 1182,
"column": 12
},
"end": {
- "line": 1528,
+ "line": 1182,
"column": 47
}
}
@@ -129156,16 +97992,16 @@
"type": "Identifier",
"name": "re_nm",
"range": [
- 56383,
- 56388
+ 41414,
+ 41419
],
"loc": {
"start": {
- "line": 1530,
+ "line": 1184,
"column": 12
},
"end": {
- "line": 1530,
+ "line": 1184,
"column": 17
}
}
@@ -129176,16 +98012,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56391,
- 56395
+ 41422,
+ 41426
],
"loc": {
"start": {
- "line": 1530,
+ "line": 1184,
"column": 20
},
"end": {
- "line": 1530,
+ "line": 1184,
"column": 24
}
}
@@ -129194,46 +98030,46 @@
"type": "Identifier",
"name": "nmOperator",
"range": [
- 56396,
- 56406
+ 41427,
+ 41437
],
"loc": {
"start": {
- "line": 1530,
+ "line": 1184,
"column": 25
},
"end": {
- "line": 1530,
+ "line": 1184,
"column": 35
}
}
},
"range": [
- 56391,
- 56406
+ 41422,
+ 41437
],
"loc": {
"start": {
- "line": 1530,
+ "line": 1184,
"column": 20
},
"end": {
- "line": 1530,
+ "line": 1184,
"column": 35
}
}
},
"range": [
- 56383,
- 56406
+ 41414,
+ 41437
],
"loc": {
"start": {
- "line": 1530,
+ "line": 1184,
"column": 12
},
"end": {
- "line": 1530,
+ "line": 1184,
"column": 35
}
}
@@ -129244,16 +98080,16 @@
"type": "Identifier",
"name": "re_re",
"range": [
- 56420,
- 56425
+ 41451,
+ 41456
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 12
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 17
}
}
@@ -129264,16 +98100,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 56432,
- 56438
+ 41463,
+ 41469
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 24
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 30
}
}
@@ -129288,16 +98124,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 56439,
- 56442
+ 41470,
+ 41473
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 31
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 34
}
}
@@ -129306,31 +98142,31 @@
"type": "Identifier",
"name": "rgxEsc",
"range": [
- 56443,
- 56449
+ 41474,
+ 41480
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 35
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 41
}
}
},
"range": [
- 56439,
- 56449
+ 41470,
+ 41480
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 31
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 41
}
}
@@ -129342,16 +98178,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56450,
- 56454
+ 41481,
+ 41485
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 42
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 46
}
}
@@ -129360,78 +98196,78 @@
"type": "Identifier",
"name": "rgxOperator",
"range": [
- 56455,
- 56466
+ 41486,
+ 41497
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 47
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 58
}
}
},
"range": [
- 56450,
- 56466
+ 41481,
+ 41497
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 42
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 58
}
}
}
],
"range": [
- 56439,
- 56467
+ 41470,
+ 41498
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 31
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 59
}
}
}
],
"range": [
- 56428,
- 56468
+ 41459,
+ 41499
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 20
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 60
}
}
},
"range": [
- 56420,
- 56468
+ 41451,
+ 41499
],
"loc": {
"start": {
- "line": 1531,
+ "line": 1185,
"column": 12
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 60
}
}
@@ -129439,16 +98275,16 @@
],
"kind": "var",
"range": [
- 55792,
- 56469
+ 40823,
+ 41500
],
"loc": {
"start": {
- "line": 1518,
+ "line": 1172,
"column": 8
},
"end": {
- "line": 1531,
+ "line": 1185,
"column": 61
}
},
@@ -129457,16 +98293,16 @@
"type": "Line",
"value": "keyword highlighting",
"range": [
- 56479,
- 56501
+ 41510,
+ 41532
],
"loc": {
"start": {
- "line": 1533,
+ "line": 1187,
"column": 8
},
"end": {
- "line": 1533,
+ "line": 1187,
"column": 30
}
}
@@ -129479,16 +98315,16 @@
"type": "Identifier",
"name": "highlight",
"range": [
- 56519,
- 56528
+ 41550,
+ 41559
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 17
},
"end": {
- "line": 1534,
+ "line": 1188,
"column": 26
}
}
@@ -129498,16 +98334,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56529,
- 56532
+ 41560,
+ 41563
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 27
},
"end": {
- "line": 1534,
+ "line": 1188,
"column": 30
}
}
@@ -129516,16 +98352,16 @@
"type": "Identifier",
"name": "ok",
"range": [
- 56534,
- 56536
+ 41565,
+ 41567
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 32
},
"end": {
- "line": 1534,
+ "line": 1188,
"column": 34
}
}
@@ -129534,16 +98370,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 56538,
- 56542
+ 41569,
+ 41573
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 36
},
"end": {
- "line": 1534,
+ "line": 1188,
"column": 40
}
}
@@ -129563,16 +98399,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 56599,
- 56603
+ 41630,
+ 41634
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 15
},
"end": {
- "line": 1536,
+ "line": 1190,
"column": 19
}
}
@@ -129581,31 +98417,31 @@
"type": "Identifier",
"name": "highlightKeywords",
"range": [
- 56604,
- 56621
+ 41635,
+ 41652
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 20
},
"end": {
- "line": 1536,
+ "line": 1190,
"column": 37
}
}
},
"range": [
- 56599,
- 56621
+ 41630,
+ 41652
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 15
},
"end": {
- "line": 1536,
+ "line": 1190,
"column": 37
}
}
@@ -129614,31 +98450,31 @@
"type": "Identifier",
"name": "ok",
"range": [
- 56625,
- 56627
+ 41656,
+ 41658
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 41
},
"end": {
- "line": 1536,
+ "line": 1190,
"column": 43
}
}
},
"range": [
- 56599,
- 56627
+ 41630,
+ 41658
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 15
},
"end": {
- "line": 1536,
+ "line": 1190,
"column": 43
}
}
@@ -129655,16 +98491,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56646,
- 56649
+ 41677,
+ 41680
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 16
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 19
}
}
@@ -129678,16 +98514,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56652,
- 56655
+ 41683,
+ 41686
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 22
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 25
}
}
@@ -129696,31 +98532,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 56656,
- 56663
+ 41687,
+ 41694
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 26
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 33
}
}
},
"range": [
- 56652,
- 56663
+ 41683,
+ 41694
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 22
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 33
}
}
@@ -129730,16 +98566,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 56664,
- 56669
+ 41695,
+ 41700
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 34
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 39
}
}
@@ -129749,62 +98585,62 @@
"value": "",
"raw": "''",
"range": [
- 56671,
- 56673
+ 41702,
+ 41704
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 41
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 43
}
}
}
],
"range": [
- 56652,
- 56674
+ 41683,
+ 41705
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 22
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 44
}
}
},
"range": [
- 56646,
- 56674
+ 41677,
+ 41705
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 16
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 44
}
}
},
"range": [
- 56646,
- 56675
+ 41677,
+ 41706
],
"loc": {
"start": {
- "line": 1537,
+ "line": 1191,
"column": 16
},
"end": {
- "line": 1537,
+ "line": 1191,
"column": 45
}
}
@@ -129818,16 +98654,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56692,
- 56695
+ 41723,
+ 41726
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 16
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 19
}
}
@@ -129841,16 +98677,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56698,
- 56701
+ 41729,
+ 41732
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 22
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 25
}
}
@@ -129859,31 +98695,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 56702,
- 56709
+ 41733,
+ 41740
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 26
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 33
}
}
},
"range": [
- 56698,
- 56709
+ 41729,
+ 41740
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 22
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 33
}
}
@@ -129893,16 +98729,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 56710,
- 56715
+ 41741,
+ 41746
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 34
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 39
}
}
@@ -129912,62 +98748,62 @@
"value": "",
"raw": "''",
"range": [
- 56717,
- 56719
+ 41748,
+ 41750
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 41
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 43
}
}
}
],
"range": [
- 56698,
- 56720
+ 41729,
+ 41751
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 22
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 44
}
}
},
"range": [
- 56692,
- 56720
+ 41723,
+ 41751
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 16
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 44
}
}
},
"range": [
- 56692,
- 56721
+ 41723,
+ 41752
],
"loc": {
"start": {
- "line": 1538,
+ "line": 1192,
"column": 16
},
"end": {
- "line": 1538,
+ "line": 1192,
"column": 45
}
}
@@ -129981,16 +98817,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56738,
- 56741
+ 41769,
+ 41772
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 16
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 19
}
}
@@ -130004,16 +98840,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56744,
- 56747
+ 41775,
+ 41778
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 22
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 25
}
}
@@ -130022,31 +98858,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 56748,
- 56755
+ 41779,
+ 41786
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 26
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 33
}
}
},
"range": [
- 56744,
- 56755
+ 41775,
+ 41786
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 22
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 33
}
}
@@ -130056,16 +98892,16 @@
"type": "Identifier",
"name": "re_st",
"range": [
- 56756,
- 56761
+ 41787,
+ 41792
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 34
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 39
}
}
@@ -130075,62 +98911,62 @@
"value": "",
"raw": "''",
"range": [
- 56763,
- 56765
+ 41794,
+ 41796
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 41
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 43
}
}
}
],
"range": [
- 56744,
- 56766
+ 41775,
+ 41797
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 22
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 44
}
}
},
"range": [
- 56738,
- 56766
+ 41769,
+ 41797
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 16
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 44
}
}
},
"range": [
- 56738,
- 56767
+ 41769,
+ 41798
],
"loc": {
"start": {
- "line": 1539,
+ "line": 1193,
"column": 16
},
"end": {
- "line": 1539,
+ "line": 1193,
"column": 45
}
}
@@ -130144,16 +98980,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56784,
- 56787
+ 41815,
+ 41818
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 16
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 19
}
}
@@ -130167,16 +99003,16 @@
"type": "Identifier",
"name": "str",
"range": [
- 56790,
- 56793
+ 41821,
+ 41824
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 22
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 25
}
}
@@ -130185,31 +99021,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 56794,
- 56801
+ 41825,
+ 41832
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 26
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 33
}
}
},
"range": [
- 56790,
- 56801
+ 41821,
+ 41832
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 22
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 33
}
}
@@ -130219,16 +99055,16 @@
"type": "Identifier",
"name": "re_en",
"range": [
- 56802,
- 56807
+ 41833,
+ 41838
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 34
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 39
}
}
@@ -130238,62 +99074,62 @@
"value": "",
"raw": "''",
"range": [
- 56809,
- 56811
+ 41840,
+ 41842
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 41
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 43
}
}
}
],
"range": [
- 56790,
- 56812
+ 41821,
+ 41843
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 22
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 44
}
}
},
"range": [
- 56784,
- 56812
+ 41815,
+ 41843
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 16
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 44
}
}
},
"range": [
- 56784,
- 56813
+ 41815,
+ 41844
],
"loc": {
"start": {
- "line": 1540,
+ "line": 1194,
"column": 16
},
"end": {
- "line": 1540,
+ "line": 1194,
"column": 45
}
}
@@ -130307,16 +99143,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 56834,
- 56835
+ 41865,
+ 41866
],
"loc": {
"start": {
- "line": 1541,
+ "line": 1195,
"column": 20
},
"end": {
- "line": 1541,
+ "line": 1195,
"column": 21
}
}
@@ -130325,31 +99161,31 @@
"type": "Identifier",
"name": "str",
"range": [
- 56838,
- 56841
+ 41869,
+ 41872
],
"loc": {
"start": {
- "line": 1541,
+ "line": 1195,
"column": 24
},
"end": {
- "line": 1541,
+ "line": 1195,
"column": 27
}
}
},
"range": [
- 56834,
- 56841
+ 41865,
+ 41872
],
"loc": {
"start": {
- "line": 1541,
+ "line": 1195,
"column": 20
},
"end": {
- "line": 1541,
+ "line": 1195,
"column": 27
}
}
@@ -130357,16 +99193,16 @@
],
"kind": "let",
"range": [
- 56830,
- 56842
+ 41861,
+ 41873
],
"loc": {
"start": {
- "line": 1541,
+ "line": 1195,
"column": 16
},
"end": {
- "line": 1541,
+ "line": 1195,
"column": 28
}
}
@@ -130394,16 +99230,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 56862,
- 56867
+ 41893,
+ 41898
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 24
}
}
@@ -130412,31 +99248,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 56868,
- 56872
+ 41899,
+ 41903
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 25
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 29
}
}
},
"range": [
- 56862,
- 56872
+ 41893,
+ 41903
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 29
}
}
@@ -130446,32 +99282,32 @@
"type": "Identifier",
"name": "str",
"range": [
- 56873,
- 56876
+ 41904,
+ 41907
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 30
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 33
}
}
}
],
"range": [
- 56862,
- 56877
+ 41893,
+ 41908
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 34
}
}
@@ -130485,16 +99321,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 56881,
- 56886
+ 41912,
+ 41917
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 38
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 43
}
}
@@ -130503,31 +99339,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 56887,
- 56891
+ 41918,
+ 41922
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 44
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 48
}
}
},
"range": [
- 56881,
- 56891
+ 41912,
+ 41922
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 38
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 48
}
}
@@ -130537,47 +99373,47 @@
"type": "Identifier",
"name": "str",
"range": [
- 56892,
- 56895
+ 41923,
+ 41926
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 49
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 52
}
}
}
],
"range": [
- 56881,
- 56896
+ 41912,
+ 41927
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 38
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 53
}
}
},
"range": [
- 56862,
- 56896
+ 41893,
+ 41927
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 53
}
}
@@ -130591,16 +99427,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 56900,
- 56904
+ 41931,
+ 41935
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 57
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 61
}
}
@@ -130609,31 +99445,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 56905,
- 56909
+ 41936,
+ 41940
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 62
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 66
}
}
},
"range": [
- 56900,
- 56909
+ 41931,
+ 41940
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 57
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 66
}
}
@@ -130643,47 +99479,47 @@
"type": "Identifier",
"name": "str",
"range": [
- 56910,
- 56913
+ 41941,
+ 41944
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 67
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 70
}
}
}
],
"range": [
- 56900,
- 56914
+ 41931,
+ 41945
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 57
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 71
}
}
},
"range": [
- 56862,
- 56914
+ 41893,
+ 41945
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1542,
+ "line": 1196,
"column": 71
}
}
@@ -130697,16 +99533,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 56938,
- 56942
+ 41969,
+ 41973
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 20
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 24
}
}
@@ -130715,31 +99551,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 56943,
- 56947
+ 41974,
+ 41978
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 25
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 29
}
}
},
"range": [
- 56938,
- 56947
+ 41969,
+ 41978
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 20
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 29
}
}
@@ -130749,47 +99585,47 @@
"type": "Identifier",
"name": "str",
"range": [
- 56948,
- 56951
+ 41979,
+ 41982
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 30
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 33
}
}
}
],
"range": [
- 56938,
- 56952
+ 41969,
+ 41983
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 20
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 34
}
}
},
"range": [
- 56862,
- 56952
+ 41893,
+ 41983
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 34
}
}
@@ -130803,16 +99639,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 56956,
- 56960
+ 41987,
+ 41991
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 38
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 42
}
}
@@ -130821,31 +99657,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 56961,
- 56965
+ 41992,
+ 41996
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 43
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 47
}
}
},
"range": [
- 56956,
- 56965
+ 41987,
+ 41996
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 38
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 47
}
}
@@ -130855,47 +99691,47 @@
"type": "Identifier",
"name": "str",
"range": [
- 56966,
- 56969
+ 41997,
+ 42000
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 48
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 51
}
}
}
],
"range": [
- 56956,
- 56970
+ 41987,
+ 42001
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 38
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 52
}
}
},
"range": [
- 56862,
- 56970
+ 41893,
+ 42001
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 19
},
"end": {
- "line": 1543,
+ "line": 1197,
"column": 52
}
}
@@ -130912,16 +99748,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 56993,
- 56994
+ 42024,
+ 42025
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 20
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 21
}
}
@@ -130935,16 +99771,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 56997,
- 57000
+ 42028,
+ 42031
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 24
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 27
}
}
@@ -130953,31 +99789,31 @@
"type": "Identifier",
"name": "getText",
"range": [
- 57001,
- 57008
+ 42032,
+ 42039
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 28
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 35
}
}
},
"range": [
- 56997,
- 57008
+ 42028,
+ 42039
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 24
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 35
}
}
@@ -130987,94 +99823,94 @@
"type": "Identifier",
"name": "cell",
"range": [
- 57009,
- 57013
+ 42040,
+ 42044
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 36
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 40
}
}
}
],
"range": [
- 56997,
- 57014
+ 42028,
+ 42045
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 24
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 41
}
}
},
"range": [
- 56993,
- 57014
+ 42024,
+ 42045
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 20
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 41
}
}
},
"range": [
- 56993,
- 57015
+ 42024,
+ 42046
],
"loc": {
"start": {
- "line": 1544,
+ "line": 1198,
"column": 20
},
"end": {
- "line": 1544,
+ "line": 1198,
"column": 42
}
}
}
],
"range": [
- 56971,
- 57033
+ 42002,
+ 42064
],
"loc": {
"start": {
- "line": 1543,
+ "line": 1197,
"column": 53
},
"end": {
- "line": 1545,
+ "line": 1199,
"column": 17
}
}
},
"alternate": null,
"range": [
- 56859,
- 57033
+ 41890,
+ 42064
],
"loc": {
"start": {
- "line": 1542,
+ "line": 1196,
"column": 16
},
"end": {
- "line": 1545,
+ "line": 1199,
"column": 17
}
}
@@ -131088,16 +99924,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 57053,
- 57054
+ 42084,
+ 42085
],
"loc": {
"start": {
- "line": 1546,
+ "line": 1200,
"column": 19
},
"end": {
- "line": 1546,
+ "line": 1200,
"column": 20
}
}
@@ -131107,31 +99943,31 @@
"value": "",
"raw": "''",
"range": [
- 57059,
- 57061
+ 42090,
+ 42092
],
"loc": {
"start": {
- "line": 1546,
+ "line": 1200,
"column": 25
},
"end": {
- "line": 1546,
+ "line": 1200,
"column": 27
}
}
},
"range": [
- 57053,
- 57061
+ 42084,
+ 42092
],
"loc": {
"start": {
- "line": 1546,
+ "line": 1200,
"column": 19
},
"end": {
- "line": 1546,
+ "line": 1200,
"column": 27
}
}
@@ -131150,105 +99986,140 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "Mod",
+ "type": "ThisExpression",
"range": [
- 57084,
- 57087
+ 42115,
+ 42119
],
"loc": {
"start": {
- "line": 1547,
+ "line": 1201,
"column": 20
},
"end": {
- "line": 1547,
- "column": 23
+ "line": 1201,
+ "column": 24
}
}
},
"property": {
"type": "Identifier",
- "name": "highlightKeyword",
+ "name": "emitter",
"range": [
- 57088,
- 57104
+ 42120,
+ 42127
],
"loc": {
"start": {
- "line": 1547,
- "column": 24
+ "line": 1201,
+ "column": 25
},
"end": {
- "line": 1547,
- "column": 40
+ "line": 1201,
+ "column": 32
}
}
},
"range": [
- 57084,
- 57104
+ 42115,
+ 42127
],
"loc": {
"start": {
- "line": 1547,
+ "line": 1201,
"column": 20
},
"end": {
- "line": 1547,
- "column": 40
+ "line": 1201,
+ "column": 32
}
}
},
"property": {
"type": "Identifier",
- "name": "highlight",
+ "name": "emit",
"range": [
- 57105,
- 57114
+ 42128,
+ 42132
],
"loc": {
"start": {
- "line": 1547,
- "column": 41
+ "line": 1201,
+ "column": 33
},
"end": {
- "line": 1547,
- "column": 50
+ "line": 1201,
+ "column": 37
}
}
},
"range": [
- 57084,
- 57114
+ 42115,
+ 42132
],
"loc": {
"start": {
- "line": 1547,
+ "line": 1201,
"column": 20
},
"end": {
- "line": 1547,
- "column": 50
+ "line": 1201,
+ "column": 37
}
}
},
"arguments": [
{
- "type": "Identifier",
- "name": "cell",
+ "type": "Literal",
+ "value": "highlight-keyword",
+ "raw": "'highlight-keyword'",
"range": [
- 57140,
- 57144
+ 42133,
+ 42152
],
"loc": {
"start": {
- "line": 1548,
- "column": 24
+ "line": 1201,
+ "column": 38
},
"end": {
- "line": 1548,
- "column": 28
+ "line": 1201,
+ "column": 57
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 42154,
+ 42158
+ ],
+ "loc": {
+ "start": {
+ "line": 1201,
+ "column": 59
+ },
+ "end": {
+ "line": 1201,
+ "column": 63
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 42160,
+ 42164
+ ],
+ "loc": {
+ "start": {
+ "line": 1201,
+ "column": 65
+ },
+ "end": {
+ "line": 1201,
+ "column": 69
}
}
},
@@ -131256,201 +100127,111 @@
"type": "Identifier",
"name": "w",
"range": [
- 57146,
- 57147
+ 42166,
+ 42167
],
"loc": {
"start": {
- "line": 1548,
- "column": 30
- },
- "end": {
- "line": 1548,
- "column": 31
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 57149,
- 57152
- ],
- "loc": {
- "start": {
- "line": 1548,
- "column": 33
- },
- "end": {
- "line": 1548,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightKeyword",
- "range": [
- 57153,
- 57169
- ],
- "loc": {
- "start": {
- "line": 1548,
- "column": 37
- },
- "end": {
- "line": 1548,
- "column": 53
- }
- }
- },
- "range": [
- 57149,
- 57169
- ],
- "loc": {
- "start": {
- "line": 1548,
- "column": 33
- },
- "end": {
- "line": 1548,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "highlightCssClass",
- "range": [
- 57170,
- 57187
- ],
- "loc": {
- "start": {
- "line": 1548,
- "column": 54
- },
- "end": {
- "line": 1548,
- "column": 71
- }
- }
- },
- "range": [
- 57149,
- 57187
- ],
- "loc": {
- "start": {
- "line": 1548,
- "column": 33
- },
- "end": {
- "line": 1548,
+ "line": 1201,
"column": 71
+ },
+ "end": {
+ "line": 1201,
+ "column": 72
}
}
}
],
"range": [
- 57084,
- 57188
+ 42115,
+ 42168
],
"loc": {
"start": {
- "line": 1547,
+ "line": 1201,
"column": 20
},
"end": {
- "line": 1548,
- "column": 72
+ "line": 1201,
+ "column": 73
}
}
},
"range": [
- 57084,
- 57189
+ 42115,
+ 42169
],
"loc": {
"start": {
- "line": 1547,
+ "line": 1201,
"column": 20
},
"end": {
- "line": 1548,
- "column": 73
+ "line": 1201,
+ "column": 74
}
}
}
],
"range": [
- 57062,
- 57207
+ 42093,
+ 42187
],
"loc": {
"start": {
- "line": 1546,
+ "line": 1200,
"column": 28
},
"end": {
- "line": 1549,
+ "line": 1202,
"column": 17
}
}
},
"alternate": null,
"range": [
- 57050,
- 57207
+ 42081,
+ 42187
],
"loc": {
"start": {
- "line": 1546,
+ "line": 1200,
"column": 16
},
"end": {
- "line": 1549,
+ "line": 1202,
"column": 17
}
}
}
],
"range": [
- 56628,
- 57221
+ 41659,
+ 42201
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 44
},
"end": {
- "line": 1550,
+ "line": 1203,
"column": 13
}
}
},
"alternate": null,
"range": [
- 56596,
- 57221
+ 41627,
+ 42201
],
"loc": {
"start": {
- "line": 1536,
+ "line": 1190,
"column": 12
},
"end": {
- "line": 1550,
+ "line": 1203,
"column": 13
}
},
@@ -131459,16 +100240,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 56557,
- 56583
+ 41588,
+ 41614
],
"loc": {
"start": {
- "line": 1535,
+ "line": 1189,
"column": 12
},
"end": {
- "line": 1535,
+ "line": 1189,
"column": 38
}
}
@@ -131477,16 +100258,16 @@
}
],
"range": [
- 56543,
- 57231
+ 41574,
+ 42211
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 41
},
"end": {
- "line": 1551,
+ "line": 1204,
"column": 9
}
}
@@ -131494,16 +100275,16 @@
"generator": false,
"expression": false,
"range": [
- 56510,
- 57231
+ 41541,
+ 42211
],
"loc": {
"start": {
- "line": 1534,
+ "line": 1188,
"column": 8
},
"end": {
- "line": 1551,
+ "line": 1204,
"column": 9
}
},
@@ -131512,16 +100293,16 @@
"type": "Line",
"value": "keyword highlighting",
"range": [
- 56479,
- 56501
+ 41510,
+ 41532
],
"loc": {
"start": {
- "line": 1533,
+ "line": 1187,
"column": 8
},
"end": {
- "line": 1533,
+ "line": 1187,
"column": 30
}
}
@@ -131532,16 +100313,16 @@
"type": "Line",
"value": "looks for search argument in current row",
"range": [
- 57241,
- 57283
+ 42221,
+ 42263
],
"loc": {
"start": {
- "line": 1553,
+ "line": 1206,
"column": 8
},
"end": {
- "line": 1553,
+ "line": 1206,
"column": 50
}
}
@@ -131554,16 +100335,16 @@
"type": "Identifier",
"name": "hasArg",
"range": [
- 57301,
- 57307
+ 42281,
+ 42287
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 17
},
"end": {
- "line": 1554,
+ "line": 1207,
"column": 23
}
}
@@ -131573,16 +100354,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57308,
- 57310
+ 42288,
+ 42290
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 24
},
"end": {
- "line": 1554,
+ "line": 1207,
"column": 26
}
}
@@ -131591,16 +100372,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 57312,
- 57320
+ 42292,
+ 42300
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 28
},
"end": {
- "line": 1554,
+ "line": 1207,
"column": 36
}
}
@@ -131609,16 +100390,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 57322,
- 57323
+ 42302,
+ 42303
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 38
},
"end": {
- "line": 1554,
+ "line": 1207,
"column": 39
}
}
@@ -131627,6 +100408,223 @@
"body": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 42357,
+ 42359
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 12
+ },
+ "end": {
+ "line": 1209,
+ "column": 14
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Str",
+ "range": [
+ 42362,
+ 42365
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 17
+ },
+ "end": {
+ "line": 1209,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "matchCase",
+ "range": [
+ 42366,
+ 42375
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 21
+ },
+ "end": {
+ "line": 1209,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 42362,
+ 42375
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 17
+ },
+ "end": {
+ "line": 1209,
+ "column": 30
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 42376,
+ 42378
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 31
+ },
+ "end": {
+ "line": 1209,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 42380,
+ 42384
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 35
+ },
+ "end": {
+ "line": 1209,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "caseSensitive",
+ "range": [
+ 42385,
+ 42398
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 40
+ },
+ "end": {
+ "line": 1209,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 42380,
+ 42398
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 35
+ },
+ "end": {
+ "line": 1209,
+ "column": 53
+ }
+ }
+ }
+ ],
+ "range": [
+ 42362,
+ 42399
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 17
+ },
+ "end": {
+ "line": 1209,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 42357,
+ 42399
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 12
+ },
+ "end": {
+ "line": 1209,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 42357,
+ 42400
+ ],
+ "loc": {
+ "start": {
+ "line": 1209,
+ "column": 12
+ },
+ "end": {
+ "line": 1209,
+ "column": 55
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "jshint validthis:true ",
+ "range": [
+ 42318,
+ 42344
+ ],
+ "loc": {
+ "start": {
+ "line": 1208,
+ "column": 12
+ },
+ "end": {
+ "line": 1208,
+ "column": 38
+ }
+ }
+ }
+ ]
+ },
{
"type": "VariableDeclaration",
"declarations": [
@@ -131636,32 +100634,32 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 57381,
- 57390
+ 42418,
+ 42427
],
"loc": {
"start": {
- "line": 1556,
+ "line": 1211,
"column": 16
},
"end": {
- "line": 1556,
+ "line": 1211,
"column": 25
}
}
},
"init": null,
"range": [
- 57381,
- 57390
+ 42418,
+ 42427
],
"loc": {
"start": {
- "line": 1556,
+ "line": 1211,
"column": 16
},
"end": {
- "line": 1556,
+ "line": 1211,
"column": 25
}
}
@@ -131672,16 +100670,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 57408,
- 57422
+ 42445,
+ 42459
],
"loc": {
"start": {
- "line": 1557,
+ "line": 1212,
"column": 16
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 30
}
}
@@ -131693,16 +100691,16 @@
"type": "Identifier",
"name": "Helpers",
"range": [
- 57425,
- 57432
+ 42462,
+ 42469
],
"loc": {
"start": {
- "line": 1557,
+ "line": 1212,
"column": 33
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 40
}
}
@@ -131711,46 +100709,46 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 57433,
- 57447
+ 42470,
+ 42484
],
"loc": {
"start": {
- "line": 1557,
+ "line": 1212,
"column": 41
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 55
}
}
},
"range": [
- 57425,
- 57447
+ 42462,
+ 42484
],
"loc": {
"start": {
- "line": 1557,
+ "line": 1212,
"column": 33
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 55
}
}
},
"range": [
- 57408,
- 57447
+ 42445,
+ 42484
],
"loc": {
"start": {
- "line": 1557,
+ "line": 1212,
"column": 16
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 55
}
}
@@ -131758,54 +100756,34 @@
],
"kind": "let",
"range": [
- 57377,
- 57448
+ 42414,
+ 42485
],
"loc": {
"start": {
- "line": 1556,
+ "line": 1211,
"column": 12
},
"end": {
- "line": 1557,
+ "line": 1212,
"column": 56
}
},
- "leadingComments": [
- {
- "type": "Block",
- "value": "jshint validthis:true ",
- "range": [
- 57338,
- 57364
- ],
- "loc": {
- "start": {
- "line": 1555,
- "column": 12
- },
- "end": {
- "line": 1555,
- "column": 38
- }
- }
- }
- ],
"trailingComments": [
{
"type": "Line",
"value": "Search arg operator tests",
"range": [
- 57462,
- 57489
+ 42499,
+ 42526
],
"loc": {
"start": {
- "line": 1559,
+ "line": 1214,
"column": 12
},
"end": {
- "line": 1559,
+ "line": 1214,
"column": 39
}
}
@@ -131821,16 +100799,16 @@
"type": "Identifier",
"name": "hasLO",
"range": [
- 57506,
- 57511
+ 42543,
+ 42548
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 16
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 21
}
}
@@ -131844,16 +100822,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 57514,
- 57518
+ 42551,
+ 42555
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 24
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 28
}
}
@@ -131862,31 +100840,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57519,
- 57523
+ 42556,
+ 42560
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 29
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 33
}
}
},
"range": [
- 57514,
- 57523
+ 42551,
+ 42560
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 24
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 33
}
}
@@ -131896,47 +100874,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57524,
- 57526
+ 42561,
+ 42563
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 34
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 36
}
}
}
],
"range": [
- 57514,
- 57527
+ 42551,
+ 42564
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 24
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 37
}
}
},
"range": [
- 57506,
- 57527
+ 42543,
+ 42564
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 16
},
"end": {
- "line": 1560,
+ "line": 1215,
"column": 37
}
}
@@ -131947,16 +100925,16 @@
"type": "Identifier",
"name": "hasLE",
"range": [
- 57545,
- 57550
+ 42582,
+ 42587
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 16
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 21
}
}
@@ -131970,16 +100948,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 57553,
- 57558
+ 42590,
+ 42595
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 24
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 29
}
}
@@ -131988,31 +100966,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57559,
- 57563
+ 42596,
+ 42600
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 30
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 34
}
}
},
"range": [
- 57553,
- 57563
+ 42590,
+ 42600
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 24
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 34
}
}
@@ -132022,47 +101000,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57564,
- 57566
+ 42601,
+ 42603
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 35
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 37
}
}
}
],
"range": [
- 57553,
- 57567
+ 42590,
+ 42604
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 24
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 38
}
}
},
"range": [
- 57545,
- 57567
+ 42582,
+ 42604
],
"loc": {
"start": {
- "line": 1561,
+ "line": 1216,
"column": 16
},
"end": {
- "line": 1561,
+ "line": 1216,
"column": 38
}
}
@@ -132073,16 +101051,16 @@
"type": "Identifier",
"name": "hasGR",
"range": [
- 57585,
- 57590
+ 42622,
+ 42627
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 16
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 21
}
}
@@ -132096,16 +101074,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 57593,
- 57597
+ 42630,
+ 42634
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 24
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 28
}
}
@@ -132114,31 +101092,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57598,
- 57602
+ 42635,
+ 42639
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 29
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 33
}
}
},
"range": [
- 57593,
- 57602
+ 42630,
+ 42639
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 24
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 33
}
}
@@ -132148,47 +101126,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57603,
- 57605
+ 42640,
+ 42642
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 34
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 36
}
}
}
],
"range": [
- 57593,
- 57606
+ 42630,
+ 42643
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 24
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 37
}
}
},
"range": [
- 57585,
- 57606
+ 42622,
+ 42643
],
"loc": {
"start": {
- "line": 1562,
+ "line": 1217,
"column": 16
},
"end": {
- "line": 1562,
+ "line": 1217,
"column": 37
}
}
@@ -132199,16 +101177,16 @@
"type": "Identifier",
"name": "hasGE",
"range": [
- 57624,
- 57629
+ 42661,
+ 42666
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 16
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 21
}
}
@@ -132222,16 +101200,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 57632,
- 57637
+ 42669,
+ 42674
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 24
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 29
}
}
@@ -132240,31 +101218,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57638,
- 57642
+ 42675,
+ 42679
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 30
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 34
}
}
},
"range": [
- 57632,
- 57642
+ 42669,
+ 42679
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 24
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 34
}
}
@@ -132274,47 +101252,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57643,
- 57645
+ 42680,
+ 42682
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 35
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 37
}
}
}
],
"range": [
- 57632,
- 57646
+ 42669,
+ 42683
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 24
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 38
}
}
},
"range": [
- 57624,
- 57646
+ 42661,
+ 42683
],
"loc": {
"start": {
- "line": 1563,
+ "line": 1218,
"column": 16
},
"end": {
- "line": 1563,
+ "line": 1218,
"column": 38
}
}
@@ -132325,16 +101303,16 @@
"type": "Identifier",
"name": "hasDF",
"range": [
- 57664,
- 57669
+ 42701,
+ 42706
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 16
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 21
}
}
@@ -132348,16 +101326,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 57672,
- 57676
+ 42709,
+ 42713
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 24
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 28
}
}
@@ -132366,31 +101344,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57677,
- 57681
+ 42714,
+ 42718
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 29
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 33
}
}
},
"range": [
- 57672,
- 57681
+ 42709,
+ 42718
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 24
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 33
}
}
@@ -132400,47 +101378,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57682,
- 57684
+ 42719,
+ 42721
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 34
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 36
}
}
}
],
"range": [
- 57672,
- 57685
+ 42709,
+ 42722
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 24
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 37
}
}
},
"range": [
- 57664,
- 57685
+ 42701,
+ 42722
],
"loc": {
"start": {
- "line": 1564,
+ "line": 1219,
"column": 16
},
"end": {
- "line": 1564,
+ "line": 1219,
"column": 37
}
}
@@ -132451,16 +101429,16 @@
"type": "Identifier",
"name": "hasEQ",
"range": [
- 57703,
- 57708
+ 42740,
+ 42745
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 16
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 21
}
}
@@ -132474,16 +101452,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 57711,
- 57716
+ 42748,
+ 42753
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 24
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 29
}
}
@@ -132492,31 +101470,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57717,
- 57721
+ 42754,
+ 42758
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 30
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 34
}
}
},
"range": [
- 57711,
- 57721
+ 42748,
+ 42758
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 24
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 34
}
}
@@ -132526,47 +101504,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57722,
- 57724
+ 42759,
+ 42761
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 35
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 37
}
}
}
],
"range": [
- 57711,
- 57725
+ 42748,
+ 42762
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 24
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 38
}
}
},
"range": [
- 57703,
- 57725
+ 42740,
+ 42762
],
"loc": {
"start": {
- "line": 1565,
+ "line": 1220,
"column": 16
},
"end": {
- "line": 1565,
+ "line": 1220,
"column": 38
}
}
@@ -132577,16 +101555,16 @@
"type": "Identifier",
"name": "hasLK",
"range": [
- 57743,
- 57748
+ 42780,
+ 42785
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 16
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 21
}
}
@@ -132600,16 +101578,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 57751,
- 57756
+ 42788,
+ 42793
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 24
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 29
}
}
@@ -132618,31 +101596,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57757,
- 57761
+ 42794,
+ 42798
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 30
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 34
}
}
},
"range": [
- 57751,
- 57761
+ 42788,
+ 42798
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 24
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 34
}
}
@@ -132652,47 +101630,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57762,
- 57764
+ 42799,
+ 42801
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 35
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 37
}
}
}
],
"range": [
- 57751,
- 57765
+ 42788,
+ 42802
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 24
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 38
}
}
},
"range": [
- 57743,
- 57765
+ 42780,
+ 42802
],
"loc": {
"start": {
- "line": 1566,
+ "line": 1221,
"column": 16
},
"end": {
- "line": 1566,
+ "line": 1221,
"column": 38
}
}
@@ -132703,16 +101681,16 @@
"type": "Identifier",
"name": "hasST",
"range": [
- 57826,
- 57831
+ 42863,
+ 42868
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 16
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 21
}
}
@@ -132726,16 +101704,16 @@
"type": "Identifier",
"name": "re_st",
"range": [
- 57834,
- 57839
+ 42871,
+ 42876
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 24
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 29
}
}
@@ -132744,31 +101722,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57840,
- 57844
+ 42877,
+ 42881
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 30
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 34
}
}
},
"range": [
- 57834,
- 57844
+ 42871,
+ 42881
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 24
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 34
}
}
@@ -132778,47 +101756,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57845,
- 57847
+ 42882,
+ 42884
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 35
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 37
}
}
}
],
"range": [
- 57834,
- 57848
+ 42871,
+ 42885
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 24
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 38
}
}
},
"range": [
- 57826,
- 57848
+ 42863,
+ 42885
],
"loc": {
"start": {
- "line": 1568,
+ "line": 1223,
"column": 16
},
"end": {
- "line": 1568,
+ "line": 1223,
"column": 38
}
},
@@ -132827,16 +101805,16 @@
"type": "Line",
"value": " hasAN = re_an.test(sA),",
"range": [
- 57783,
- 57809
+ 42820,
+ 42846
],
"loc": {
"start": {
- "line": 1567,
+ "line": 1222,
"column": 16
},
"end": {
- "line": 1567,
+ "line": 1222,
"column": 42
}
}
@@ -132849,16 +101827,16 @@
"type": "Identifier",
"name": "hasEN",
"range": [
- 57866,
- 57871
+ 42903,
+ 42908
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 16
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 21
}
}
@@ -132872,16 +101850,16 @@
"type": "Identifier",
"name": "re_en",
"range": [
- 57874,
- 57879
+ 42911,
+ 42916
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 24
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 29
}
}
@@ -132890,31 +101868,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 57880,
- 57884
+ 42917,
+ 42921
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 30
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 34
}
}
},
"range": [
- 57874,
- 57884
+ 42911,
+ 42921
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 24
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 34
}
}
@@ -132924,47 +101902,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57885,
- 57887
+ 42922,
+ 42924
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 35
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 37
}
}
}
],
"range": [
- 57874,
- 57888
+ 42911,
+ 42925
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 24
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 38
}
}
},
"range": [
- 57866,
- 57888
+ 42903,
+ 42925
],
"loc": {
"start": {
- "line": 1569,
+ "line": 1224,
"column": 16
},
"end": {
- "line": 1569,
+ "line": 1224,
"column": 38
}
}
@@ -132975,16 +101953,16 @@
"type": "Identifier",
"name": "hasEM",
"range": [
- 57906,
- 57911
+ 42943,
+ 42948
],
"loc": {
"start": {
- "line": 1570,
+ "line": 1225,
"column": 16
},
"end": {
- "line": 1570,
+ "line": 1225,
"column": 21
}
}
@@ -132996,16 +101974,16 @@
"type": "Identifier",
"name": "re_em",
"range": [
- 57915,
- 57920
+ 42952,
+ 42957
],
"loc": {
"start": {
- "line": 1570,
+ "line": 1225,
"column": 25
},
"end": {
- "line": 1570,
+ "line": 1225,
"column": 30
}
}
@@ -133014,46 +101992,46 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57925,
- 57927
+ 42962,
+ 42964
],
"loc": {
"start": {
- "line": 1570,
+ "line": 1225,
"column": 35
},
"end": {
- "line": 1570,
+ "line": 1225,
"column": 37
}
}
},
"range": [
- 57915,
- 57927
+ 42952,
+ 42964
],
"loc": {
"start": {
- "line": 1570,
+ "line": 1225,
"column": 25
},
"end": {
- "line": 1570,
+ "line": 1225,
"column": 37
}
}
},
"range": [
- 57906,
- 57928
+ 42943,
+ 42965
],
"loc": {
"start": {
- "line": 1570,
+ "line": 1225,
"column": 16
},
"end": {
- "line": 1570,
+ "line": 1225,
"column": 38
}
}
@@ -133064,16 +102042,16 @@
"type": "Identifier",
"name": "hasNM",
"range": [
- 57946,
- 57951
+ 42983,
+ 42988
],
"loc": {
"start": {
- "line": 1571,
+ "line": 1226,
"column": 16
},
"end": {
- "line": 1571,
+ "line": 1226,
"column": 21
}
}
@@ -133085,16 +102063,16 @@
"type": "Identifier",
"name": "re_nm",
"range": [
- 57955,
- 57960
+ 42992,
+ 42997
],
"loc": {
"start": {
- "line": 1571,
+ "line": 1226,
"column": 25
},
"end": {
- "line": 1571,
+ "line": 1226,
"column": 30
}
}
@@ -133103,46 +102081,46 @@
"type": "Identifier",
"name": "sA",
"range": [
- 57965,
- 57967
+ 43002,
+ 43004
],
"loc": {
"start": {
- "line": 1571,
+ "line": 1226,
"column": 35
},
"end": {
- "line": 1571,
+ "line": 1226,
"column": 37
}
}
},
"range": [
- 57955,
- 57967
+ 42992,
+ 43004
],
"loc": {
"start": {
- "line": 1571,
+ "line": 1226,
"column": 25
},
"end": {
- "line": 1571,
+ "line": 1226,
"column": 37
}
}
},
"range": [
- 57946,
- 57968
+ 42983,
+ 43005
],
"loc": {
"start": {
- "line": 1571,
+ "line": 1226,
"column": 16
},
"end": {
- "line": 1571,
+ "line": 1226,
"column": 38
}
}
@@ -133153,16 +102131,16 @@
"type": "Identifier",
"name": "hasRE",
"range": [
- 57986,
- 57991
+ 43023,
+ 43028
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 16
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 21
}
}
@@ -133176,16 +102154,16 @@
"type": "Identifier",
"name": "re_re",
"range": [
- 57994,
- 57999
+ 43031,
+ 43036
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 24
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 29
}
}
@@ -133194,31 +102172,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 58000,
- 58004
+ 43037,
+ 43041
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 30
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 34
}
}
},
"range": [
- 57994,
- 58004
+ 43031,
+ 43041
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 24
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 34
}
}
@@ -133228,47 +102206,47 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58005,
- 58007
+ 43042,
+ 43044
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 35
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 37
}
}
}
],
"range": [
- 57994,
- 58008
+ 43031,
+ 43045
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 24
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 38
}
}
},
"range": [
- 57986,
- 58008
+ 43023,
+ 43045
],
"loc": {
"start": {
- "line": 1572,
+ "line": 1227,
"column": 16
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 38
}
}
@@ -133276,16 +102254,16 @@
],
"kind": "let",
"range": [
- 57502,
- 58009
+ 42539,
+ 43046
],
"loc": {
"start": {
- "line": 1560,
+ "line": 1215,
"column": 12
},
"end": {
- "line": 1572,
+ "line": 1227,
"column": 39
}
},
@@ -133294,16 +102272,16 @@
"type": "Line",
"value": "Search arg operator tests",
"range": [
- 57462,
- 57489
+ 42499,
+ 42526
],
"loc": {
"start": {
- "line": 1559,
+ "line": 1214,
"column": 12
},
"end": {
- "line": 1559,
+ "line": 1214,
"column": 39
}
}
@@ -133314,16 +102292,16 @@
"type": "Line",
"value": "Search arg dates tests",
"range": [
- 58023,
- 58047
+ 43060,
+ 43084
],
"loc": {
"start": {
- "line": 1574,
+ "line": 1229,
"column": 12
},
"end": {
- "line": 1574,
+ "line": 1229,
"column": 36
}
}
@@ -133339,16 +102317,16 @@
"type": "Identifier",
"name": "isLDate",
"range": [
- 58064,
- 58071
+ 43101,
+ 43108
],
"loc": {
"start": {
- "line": 1575,
+ "line": 1230,
"column": 16
},
"end": {
- "line": 1575,
+ "line": 1230,
"column": 23
}
}
@@ -133360,16 +102338,16 @@
"type": "Identifier",
"name": "hasLO",
"range": [
- 58074,
- 58079
+ 43111,
+ 43116
],
"loc": {
"start": {
- "line": 1575,
+ "line": 1230,
"column": 26
},
"end": {
- "line": 1575,
+ "line": 1230,
"column": 31
}
}
@@ -133383,16 +102361,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58099,
- 58109
+ 43136,
+ 43146
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 16
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 26
}
}
@@ -133401,31 +102379,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58110,
- 58117
+ 43147,
+ 43154
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 27
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 34
}
}
},
"range": [
- 58099,
- 58117
+ 43136,
+ 43154
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 16
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 34
}
}
@@ -133440,16 +102418,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58118,
- 58120
+ 43155,
+ 43157
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 35
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 37
}
}
@@ -133458,31 +102436,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58121,
- 58128
+ 43158,
+ 43165
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 38
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 45
}
}
},
"range": [
- 58118,
- 58128
+ 43155,
+ 43165
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 35
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 45
}
}
@@ -133492,16 +102470,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 58129,
- 58133
+ 43166,
+ 43170
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 46
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 50
}
}
@@ -133511,32 +102489,32 @@
"value": "",
"raw": "''",
"range": [
- 58134,
- 58136
+ 43171,
+ 43173
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 51
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 53
}
}
}
],
"range": [
- 58118,
- 58137
+ 43155,
+ 43174
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 35
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 54
}
}
@@ -133545,62 +102523,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58139,
- 58145
+ 43176,
+ 43182
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 56
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 62
}
}
}
],
"range": [
- 58099,
- 58146
+ 43136,
+ 43183
],
"loc": {
"start": {
- "line": 1576,
+ "line": 1231,
"column": 16
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 63
}
}
},
"range": [
- 58074,
- 58146
+ 43111,
+ 43183
],
"loc": {
"start": {
- "line": 1575,
+ "line": 1230,
"column": 26
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 63
}
}
},
"range": [
- 58064,
- 58146
+ 43101,
+ 43183
],
"loc": {
"start": {
- "line": 1575,
+ "line": 1230,
"column": 16
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 63
}
}
@@ -133608,16 +102586,16 @@
],
"kind": "let",
"range": [
- 58060,
- 58147
+ 43097,
+ 43184
],
"loc": {
"start": {
- "line": 1575,
+ "line": 1230,
"column": 12
},
"end": {
- "line": 1576,
+ "line": 1231,
"column": 64
}
},
@@ -133626,16 +102604,16 @@
"type": "Line",
"value": "Search arg dates tests",
"range": [
- 58023,
- 58047
+ 43060,
+ 43084
],
"loc": {
"start": {
- "line": 1574,
+ "line": 1229,
"column": 12
},
"end": {
- "line": 1574,
+ "line": 1229,
"column": 36
}
}
@@ -133651,16 +102629,16 @@
"type": "Identifier",
"name": "isLEDate",
"range": [
- 58164,
- 58172
+ 43201,
+ 43209
],
"loc": {
"start": {
- "line": 1577,
+ "line": 1232,
"column": 16
},
"end": {
- "line": 1577,
+ "line": 1232,
"column": 24
}
}
@@ -133672,16 +102650,16 @@
"type": "Identifier",
"name": "hasLE",
"range": [
- 58175,
- 58180
+ 43212,
+ 43217
],
"loc": {
"start": {
- "line": 1577,
+ "line": 1232,
"column": 27
},
"end": {
- "line": 1577,
+ "line": 1232,
"column": 32
}
}
@@ -133695,16 +102673,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58200,
- 58210
+ 43237,
+ 43247
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 16
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 26
}
}
@@ -133713,31 +102691,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58211,
- 58218
+ 43248,
+ 43255
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 27
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 34
}
}
},
"range": [
- 58200,
- 58218
+ 43237,
+ 43255
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 16
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 34
}
}
@@ -133752,16 +102730,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58219,
- 58221
+ 43256,
+ 43258
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 35
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 37
}
}
@@ -133770,31 +102748,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58222,
- 58229
+ 43259,
+ 43266
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 38
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 45
}
}
},
"range": [
- 58219,
- 58229
+ 43256,
+ 43266
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 35
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 45
}
}
@@ -133804,16 +102782,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 58230,
- 58235
+ 43267,
+ 43272
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 46
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 51
}
}
@@ -133823,32 +102801,32 @@
"value": "",
"raw": "''",
"range": [
- 58236,
- 58238
+ 43273,
+ 43275
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 52
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 54
}
}
}
],
"range": [
- 58219,
- 58239
+ 43256,
+ 43276
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 35
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 55
}
}
@@ -133857,62 +102835,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58241,
- 58247
+ 43278,
+ 43284
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 57
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 63
}
}
}
],
"range": [
- 58200,
- 58248
+ 43237,
+ 43285
],
"loc": {
"start": {
- "line": 1578,
+ "line": 1233,
"column": 16
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 64
}
}
},
"range": [
- 58175,
- 58248
+ 43212,
+ 43285
],
"loc": {
"start": {
- "line": 1577,
+ "line": 1232,
"column": 27
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 64
}
}
},
"range": [
- 58164,
- 58248
+ 43201,
+ 43285
],
"loc": {
"start": {
- "line": 1577,
+ "line": 1232,
"column": 16
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 64
}
}
@@ -133920,16 +102898,16 @@
],
"kind": "let",
"range": [
- 58160,
- 58249
+ 43197,
+ 43286
],
"loc": {
"start": {
- "line": 1577,
+ "line": 1232,
"column": 12
},
"end": {
- "line": 1578,
+ "line": 1233,
"column": 65
}
}
@@ -133943,16 +102921,16 @@
"type": "Identifier",
"name": "isGDate",
"range": [
- 58266,
- 58273
+ 43303,
+ 43310
],
"loc": {
"start": {
- "line": 1579,
+ "line": 1234,
"column": 16
},
"end": {
- "line": 1579,
+ "line": 1234,
"column": 23
}
}
@@ -133964,16 +102942,16 @@
"type": "Identifier",
"name": "hasGR",
"range": [
- 58276,
- 58281
+ 43313,
+ 43318
],
"loc": {
"start": {
- "line": 1579,
+ "line": 1234,
"column": 26
},
"end": {
- "line": 1579,
+ "line": 1234,
"column": 31
}
}
@@ -133987,16 +102965,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58301,
- 58311
+ 43338,
+ 43348
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 16
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 26
}
}
@@ -134005,31 +102983,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58312,
- 58319
+ 43349,
+ 43356
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 27
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 34
}
}
},
"range": [
- 58301,
- 58319
+ 43338,
+ 43356
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 16
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 34
}
}
@@ -134044,16 +103022,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58320,
- 58322
+ 43357,
+ 43359
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 35
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 37
}
}
@@ -134062,31 +103040,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58323,
- 58330
+ 43360,
+ 43367
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 38
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 45
}
}
},
"range": [
- 58320,
- 58330
+ 43357,
+ 43367
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 35
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 45
}
}
@@ -134096,16 +103074,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 58331,
- 58335
+ 43368,
+ 43372
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 46
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 50
}
}
@@ -134115,32 +103093,32 @@
"value": "",
"raw": "''",
"range": [
- 58336,
- 58338
+ 43373,
+ 43375
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 51
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 53
}
}
}
],
"range": [
- 58320,
- 58339
+ 43357,
+ 43376
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 35
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 54
}
}
@@ -134149,62 +103127,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58341,
- 58347
+ 43378,
+ 43384
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 56
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 62
}
}
}
],
"range": [
- 58301,
- 58348
+ 43338,
+ 43385
],
"loc": {
"start": {
- "line": 1580,
+ "line": 1235,
"column": 16
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 63
}
}
},
"range": [
- 58276,
- 58348
+ 43313,
+ 43385
],
"loc": {
"start": {
- "line": 1579,
+ "line": 1234,
"column": 26
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 63
}
}
},
"range": [
- 58266,
- 58348
+ 43303,
+ 43385
],
"loc": {
"start": {
- "line": 1579,
+ "line": 1234,
"column": 16
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 63
}
}
@@ -134212,16 +103190,16 @@
],
"kind": "let",
"range": [
- 58262,
- 58349
+ 43299,
+ 43386
],
"loc": {
"start": {
- "line": 1579,
+ "line": 1234,
"column": 12
},
"end": {
- "line": 1580,
+ "line": 1235,
"column": 64
}
}
@@ -134235,16 +103213,16 @@
"type": "Identifier",
"name": "isGEDate",
"range": [
- 58366,
- 58374
+ 43403,
+ 43411
],
"loc": {
"start": {
- "line": 1581,
+ "line": 1236,
"column": 16
},
"end": {
- "line": 1581,
+ "line": 1236,
"column": 24
}
}
@@ -134256,16 +103234,16 @@
"type": "Identifier",
"name": "hasGE",
"range": [
- 58377,
- 58382
+ 43414,
+ 43419
],
"loc": {
"start": {
- "line": 1581,
+ "line": 1236,
"column": 27
},
"end": {
- "line": 1581,
+ "line": 1236,
"column": 32
}
}
@@ -134279,16 +103257,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58402,
- 58412
+ 43439,
+ 43449
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 16
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 26
}
}
@@ -134297,31 +103275,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58413,
- 58420
+ 43450,
+ 43457
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 27
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 34
}
}
},
"range": [
- 58402,
- 58420
+ 43439,
+ 43457
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 16
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 34
}
}
@@ -134336,16 +103314,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58421,
- 58423
+ 43458,
+ 43460
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 35
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 37
}
}
@@ -134354,31 +103332,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58424,
- 58431
+ 43461,
+ 43468
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 38
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 45
}
}
},
"range": [
- 58421,
- 58431
+ 43458,
+ 43468
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 35
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 45
}
}
@@ -134388,16 +103366,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 58432,
- 58437
+ 43469,
+ 43474
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 46
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 51
}
}
@@ -134407,32 +103385,32 @@
"value": "",
"raw": "''",
"range": [
- 58438,
- 58440
+ 43475,
+ 43477
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 52
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 54
}
}
}
],
"range": [
- 58421,
- 58441
+ 43458,
+ 43478
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 35
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 55
}
}
@@ -134441,62 +103419,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58443,
- 58449
+ 43480,
+ 43486
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 57
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 63
}
}
}
],
"range": [
- 58402,
- 58450
+ 43439,
+ 43487
],
"loc": {
"start": {
- "line": 1582,
+ "line": 1237,
"column": 16
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 64
}
}
},
"range": [
- 58377,
- 58450
+ 43414,
+ 43487
],
"loc": {
"start": {
- "line": 1581,
+ "line": 1236,
"column": 27
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 64
}
}
},
"range": [
- 58366,
- 58450
+ 43403,
+ 43487
],
"loc": {
"start": {
- "line": 1581,
+ "line": 1236,
"column": 16
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 64
}
}
@@ -134504,16 +103482,16 @@
],
"kind": "let",
"range": [
- 58362,
- 58451
+ 43399,
+ 43488
],
"loc": {
"start": {
- "line": 1581,
+ "line": 1236,
"column": 12
},
"end": {
- "line": 1582,
+ "line": 1237,
"column": 65
}
}
@@ -134527,16 +103505,16 @@
"type": "Identifier",
"name": "isDFDate",
"range": [
- 58468,
- 58476
+ 43505,
+ 43513
],
"loc": {
"start": {
- "line": 1583,
+ "line": 1238,
"column": 16
},
"end": {
- "line": 1583,
+ "line": 1238,
"column": 24
}
}
@@ -134548,16 +103526,16 @@
"type": "Identifier",
"name": "hasDF",
"range": [
- 58479,
- 58484
+ 43516,
+ 43521
],
"loc": {
"start": {
- "line": 1583,
+ "line": 1238,
"column": 27
},
"end": {
- "line": 1583,
+ "line": 1238,
"column": 32
}
}
@@ -134571,16 +103549,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58504,
- 58514
+ 43541,
+ 43551
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 16
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 26
}
}
@@ -134589,31 +103567,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58515,
- 58522
+ 43552,
+ 43559
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 27
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 34
}
}
},
"range": [
- 58504,
- 58522
+ 43541,
+ 43559
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 16
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 34
}
}
@@ -134628,16 +103606,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58523,
- 58525
+ 43560,
+ 43562
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 35
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 37
}
}
@@ -134646,31 +103624,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58526,
- 58533
+ 43563,
+ 43570
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 38
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 45
}
}
},
"range": [
- 58523,
- 58533
+ 43560,
+ 43570
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 35
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 45
}
}
@@ -134680,16 +103658,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 58534,
- 58538
+ 43571,
+ 43575
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 46
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 50
}
}
@@ -134699,32 +103677,32 @@
"value": "",
"raw": "''",
"range": [
- 58539,
- 58541
+ 43576,
+ 43578
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 51
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 53
}
}
}
],
"range": [
- 58523,
- 58542
+ 43560,
+ 43579
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 35
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 54
}
}
@@ -134733,62 +103711,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58544,
- 58550
+ 43581,
+ 43587
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 56
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 62
}
}
}
],
"range": [
- 58504,
- 58551
+ 43541,
+ 43588
],
"loc": {
"start": {
- "line": 1584,
+ "line": 1239,
"column": 16
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 63
}
}
},
"range": [
- 58479,
- 58551
+ 43516,
+ 43588
],
"loc": {
"start": {
- "line": 1583,
+ "line": 1238,
"column": 27
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 63
}
}
},
"range": [
- 58468,
- 58551
+ 43505,
+ 43588
],
"loc": {
"start": {
- "line": 1583,
+ "line": 1238,
"column": 16
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 63
}
}
@@ -134796,16 +103774,16 @@
],
"kind": "let",
"range": [
- 58464,
- 58552
+ 43501,
+ 43589
],
"loc": {
"start": {
- "line": 1583,
+ "line": 1238,
"column": 12
},
"end": {
- "line": 1584,
+ "line": 1239,
"column": 64
}
}
@@ -134819,16 +103797,16 @@
"type": "Identifier",
"name": "isEQDate",
"range": [
- 58569,
- 58577
+ 43606,
+ 43614
],
"loc": {
"start": {
- "line": 1585,
+ "line": 1240,
"column": 16
},
"end": {
- "line": 1585,
+ "line": 1240,
"column": 24
}
}
@@ -134840,16 +103818,16 @@
"type": "Identifier",
"name": "hasEQ",
"range": [
- 58580,
- 58585
+ 43617,
+ 43622
],
"loc": {
"start": {
- "line": 1585,
+ "line": 1240,
"column": 27
},
"end": {
- "line": 1585,
+ "line": 1240,
"column": 32
}
}
@@ -134863,16 +103841,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58605,
- 58615
+ 43642,
+ 43652
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 16
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 26
}
}
@@ -134881,31 +103859,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58616,
- 58623
+ 43653,
+ 43660
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 27
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 34
}
}
},
"range": [
- 58605,
- 58623
+ 43642,
+ 43660
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 16
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 34
}
}
@@ -134920,16 +103898,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58624,
- 58626
+ 43661,
+ 43663
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 35
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 37
}
}
@@ -134938,31 +103916,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58627,
- 58634
+ 43664,
+ 43671
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 38
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 45
}
}
},
"range": [
- 58624,
- 58634
+ 43661,
+ 43671
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 35
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 45
}
}
@@ -134972,16 +103950,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 58635,
- 58640
+ 43672,
+ 43677
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 46
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 51
}
}
@@ -134991,32 +103969,32 @@
"value": "",
"raw": "''",
"range": [
- 58641,
- 58643
+ 43678,
+ 43680
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 52
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 54
}
}
}
],
"range": [
- 58624,
- 58644
+ 43661,
+ 43681
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 35
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 55
}
}
@@ -135025,62 +104003,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58646,
- 58652
+ 43683,
+ 43689
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 57
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 63
}
}
}
],
"range": [
- 58605,
- 58653
+ 43642,
+ 43690
],
"loc": {
"start": {
- "line": 1586,
+ "line": 1241,
"column": 16
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 64
}
}
},
"range": [
- 58580,
- 58653
+ 43617,
+ 43690
],
"loc": {
"start": {
- "line": 1585,
+ "line": 1240,
"column": 27
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 64
}
}
},
"range": [
- 58569,
- 58653
+ 43606,
+ 43690
],
"loc": {
"start": {
- "line": 1585,
+ "line": 1240,
"column": 16
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 64
}
}
@@ -135088,16 +104066,16 @@
],
"kind": "let",
"range": [
- 58565,
- 58654
+ 43602,
+ 43691
],
"loc": {
"start": {
- "line": 1585,
+ "line": 1240,
"column": 12
},
"end": {
- "line": 1586,
+ "line": 1241,
"column": 65
}
}
@@ -135111,32 +104089,32 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 58672,
- 58676
+ 43709,
+ 43713
],
"loc": {
"start": {
- "line": 1588,
+ "line": 1243,
"column": 16
},
"end": {
- "line": 1588,
+ "line": 1243,
"column": 20
}
}
},
"init": null,
"range": [
- 58672,
- 58676
+ 43709,
+ 43713
],
"loc": {
"start": {
- "line": 1588,
+ "line": 1243,
"column": 16
},
"end": {
- "line": 1588,
+ "line": 1243,
"column": 20
}
}
@@ -135147,32 +104125,32 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 58678,
- 58682
+ 43715,
+ 43719
],
"loc": {
"start": {
- "line": 1588,
+ "line": 1243,
"column": 22
},
"end": {
- "line": 1588,
+ "line": 1243,
"column": 26
}
}
},
"init": null,
"range": [
- 58678,
- 58682
+ 43715,
+ 43719
],
"loc": {
"start": {
- "line": 1588,
+ "line": 1243,
"column": 22
},
"end": {
- "line": 1588,
+ "line": 1243,
"column": 26
}
}
@@ -135180,16 +104158,16 @@
],
"kind": "let",
"range": [
- 58668,
- 58683
+ 43705,
+ 43720
],
"loc": {
"start": {
- "line": 1588,
+ "line": 1243,
"column": 12
},
"end": {
- "line": 1588,
+ "line": 1243,
"column": 27
}
},
@@ -135198,16 +104176,16 @@
"type": "Line",
"value": "dates",
"range": [
- 58696,
- 58703
+ 43733,
+ 43740
],
"loc": {
"start": {
- "line": 1589,
+ "line": 1244,
"column": 12
},
"end": {
- "line": 1589,
+ "line": 1244,
"column": 19
}
}
@@ -135225,16 +104203,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58719,
- 58729
+ 43756,
+ 43766
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 15
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 25
}
}
@@ -135243,31 +104221,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 58730,
- 58737
+ 43767,
+ 43774
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 26
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 33
}
}
},
"range": [
- 58719,
- 58737
+ 43756,
+ 43774
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 15
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 33
}
}
@@ -135277,16 +104255,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 58738,
- 58746
+ 43775,
+ 43783
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 34
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 42
}
}
@@ -135295,32 +104273,32 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58748,
- 58754
+ 43785,
+ 43791
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 44
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 50
}
}
}
],
"range": [
- 58719,
- 58755
+ 43756,
+ 43792
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 15
},
"end": {
- "line": 1590,
+ "line": 1245,
"column": 51
}
}
@@ -135337,16 +104315,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 58774,
- 58778
+ 43811,
+ 43815
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 16
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 20
}
}
@@ -135360,16 +104338,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58781,
- 58791
+ 43818,
+ 43828
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 23
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 33
}
}
@@ -135378,31 +104356,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 58792,
- 58798
+ 43829,
+ 43835
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 34
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 40
}
}
},
"range": [
- 58781,
- 58798
+ 43818,
+ 43835
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 23
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 40
}
}
@@ -135412,16 +104390,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 58799,
- 58807
+ 43836,
+ 43844
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 41
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 49
}
}
@@ -135430,62 +104408,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58809,
- 58815
+ 43846,
+ 43852
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 51
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 57
}
}
}
],
"range": [
- 58781,
- 58816
+ 43818,
+ 43853
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 23
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 58
}
}
},
"range": [
- 58774,
- 58816
+ 43811,
+ 43853
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 16
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 58
}
}
},
"range": [
- 58774,
- 58817
+ 43811,
+ 43854
],
"loc": {
"start": {
- "line": 1591,
+ "line": 1246,
"column": 16
},
"end": {
- "line": 1591,
+ "line": 1246,
"column": 59
}
},
@@ -135494,16 +104472,16 @@
"type": "Line",
"value": " lower date",
"range": [
- 58834,
- 58847
+ 43871,
+ 43884
],
"loc": {
"start": {
- "line": 1592,
+ "line": 1247,
"column": 16
},
"end": {
- "line": 1592,
+ "line": 1247,
"column": 29
}
}
@@ -135516,16 +104494,16 @@
"type": "Identifier",
"name": "isLDate",
"range": [
- 58867,
- 58874
+ 43904,
+ 43911
],
"loc": {
"start": {
- "line": 1593,
+ "line": 1248,
"column": 19
},
"end": {
- "line": 1593,
+ "line": 1248,
"column": 26
}
}
@@ -135542,16 +104520,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 58897,
- 58901
+ 43934,
+ 43938
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 20
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 24
}
}
@@ -135565,16 +104543,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 58904,
- 58914
+ 43941,
+ 43951
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 27
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 37
}
}
@@ -135583,31 +104561,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 58915,
- 58921
+ 43952,
+ 43958
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 38
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 44
}
}
},
"range": [
- 58904,
- 58921
+ 43941,
+ 43958
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 27
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 44
}
}
@@ -135622,16 +104600,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 58922,
- 58924
+ 43959,
+ 43961
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 45
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 47
}
}
@@ -135640,31 +104618,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 58925,
- 58932
+ 43962,
+ 43969
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 48
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 55
}
}
},
"range": [
- 58922,
- 58932
+ 43959,
+ 43969
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 45
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 55
}
}
@@ -135674,16 +104652,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 58933,
- 58937
+ 43970,
+ 43974
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 56
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 60
}
}
@@ -135693,32 +104671,32 @@
"value": "",
"raw": "''",
"range": [
- 58938,
- 58940
+ 43975,
+ 43977
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 61
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 63
}
}
}
],
"range": [
- 58922,
- 58941
+ 43959,
+ 43978
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 45
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 64
}
}
@@ -135727,62 +104705,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 58943,
- 58949
+ 43980,
+ 43986
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 66
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 72
}
}
}
],
"range": [
- 58904,
- 58950
+ 43941,
+ 43987
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 27
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 73
}
}
},
"range": [
- 58897,
- 58950
+ 43934,
+ 43987
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 20
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 73
}
}
},
"range": [
- 58897,
- 58951
+ 43934,
+ 43988
],
"loc": {
"start": {
- "line": 1594,
+ "line": 1249,
"column": 20
},
"end": {
- "line": 1594,
+ "line": 1249,
"column": 74
}
}
@@ -135796,16 +104774,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 58972,
- 58981
+ 44009,
+ 44018
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 20
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 29
}
}
@@ -135817,16 +104795,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 58984,
- 58988
+ 44021,
+ 44025
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 32
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 36
}
}
@@ -135835,77 +104813,77 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 58991,
- 58995
+ 44028,
+ 44032
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 39
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 43
}
}
},
"range": [
- 58984,
- 58995
+ 44021,
+ 44032
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 32
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 43
}
}
},
"range": [
- 58972,
- 58995
+ 44009,
+ 44032
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 20
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 43
}
}
},
"range": [
- 58972,
- 58996
+ 44009,
+ 44033
],
"loc": {
"start": {
- "line": 1595,
+ "line": 1250,
"column": 20
},
"end": {
- "line": 1595,
+ "line": 1250,
"column": 44
}
}
}
],
"range": [
- 58875,
- 59014
+ 43912,
+ 44051
],
"loc": {
"start": {
- "line": 1593,
+ "line": 1248,
"column": 27
},
"end": {
- "line": 1596,
+ "line": 1251,
"column": 17
}
},
@@ -135914,16 +104892,16 @@
"type": "Line",
"value": " lower equal date",
"range": [
- 59031,
- 59050
+ 44068,
+ 44087
],
"loc": {
"start": {
- "line": 1597,
+ "line": 1252,
"column": 16
},
"end": {
- "line": 1597,
+ "line": 1252,
"column": 35
}
}
@@ -135936,16 +104914,16 @@
"type": "Identifier",
"name": "isLEDate",
"range": [
- 59075,
- 59083
+ 44112,
+ 44120
],
"loc": {
"start": {
- "line": 1598,
+ "line": 1253,
"column": 24
},
"end": {
- "line": 1598,
+ "line": 1253,
"column": 32
}
}
@@ -135962,16 +104940,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59106,
- 59110
+ 44143,
+ 44147
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 20
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 24
}
}
@@ -135985,16 +104963,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 59113,
- 59123
+ 44150,
+ 44160
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 27
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 37
}
}
@@ -136003,31 +104981,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 59124,
- 59130
+ 44161,
+ 44167
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 38
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 44
}
}
},
"range": [
- 59113,
- 59130
+ 44150,
+ 44167
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 27
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 44
}
}
@@ -136042,16 +105020,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 59131,
- 59133
+ 44168,
+ 44170
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 45
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 47
}
}
@@ -136060,31 +105038,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 59134,
- 59141
+ 44171,
+ 44178
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 48
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 55
}
}
},
"range": [
- 59131,
- 59141
+ 44168,
+ 44178
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 45
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 55
}
}
@@ -136094,16 +105072,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 59142,
- 59147
+ 44179,
+ 44184
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 56
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 61
}
}
@@ -136113,32 +105091,32 @@
"value": "",
"raw": "''",
"range": [
- 59148,
- 59150
+ 44185,
+ 44187
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 62
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 64
}
}
}
],
"range": [
- 59131,
- 59151
+ 44168,
+ 44188
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 45
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 65
}
}
@@ -136147,62 +105125,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 59153,
- 59159
+ 44190,
+ 44196
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 67
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 73
}
}
}
],
"range": [
- 59113,
- 59160
+ 44150,
+ 44197
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 27
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 74
}
}
},
"range": [
- 59106,
- 59160
+ 44143,
+ 44197
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 20
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 74
}
}
},
"range": [
- 59106,
- 59161
+ 44143,
+ 44198
],
"loc": {
"start": {
- "line": 1599,
+ "line": 1254,
"column": 20
},
"end": {
- "line": 1599,
+ "line": 1254,
"column": 75
}
}
@@ -136216,16 +105194,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 59182,
- 59191
+ 44219,
+ 44228
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 20
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 29
}
}
@@ -136237,16 +105215,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 59194,
- 59198
+ 44231,
+ 44235
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 32
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 36
}
}
@@ -136255,77 +105233,77 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59202,
- 59206
+ 44239,
+ 44243
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 40
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 44
}
}
},
"range": [
- 59194,
- 59206
+ 44231,
+ 44243
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 32
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 44
}
}
},
"range": [
- 59182,
- 59206
+ 44219,
+ 44243
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 20
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 44
}
}
},
"range": [
- 59182,
- 59207
+ 44219,
+ 44244
],
"loc": {
"start": {
- "line": 1600,
+ "line": 1255,
"column": 20
},
"end": {
- "line": 1600,
+ "line": 1255,
"column": 45
}
}
}
],
"range": [
- 59084,
- 59225
+ 44121,
+ 44262
],
"loc": {
"start": {
- "line": 1598,
+ "line": 1253,
"column": 33
},
"end": {
- "line": 1601,
+ "line": 1256,
"column": 17
}
},
@@ -136334,16 +105312,16 @@
"type": "Line",
"value": " greater equal date",
"range": [
- 59242,
- 59263
+ 44279,
+ 44300
],
"loc": {
"start": {
- "line": 1602,
+ "line": 1257,
"column": 16
},
"end": {
- "line": 1602,
+ "line": 1257,
"column": 37
}
}
@@ -136356,16 +105334,16 @@
"type": "Identifier",
"name": "isGEDate",
"range": [
- 59288,
- 59296
+ 44325,
+ 44333
],
"loc": {
"start": {
- "line": 1603,
+ "line": 1258,
"column": 24
},
"end": {
- "line": 1603,
+ "line": 1258,
"column": 32
}
}
@@ -136382,16 +105360,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59319,
- 59323
+ 44356,
+ 44360
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 20
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 24
}
}
@@ -136405,16 +105383,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 59326,
- 59336
+ 44363,
+ 44373
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 27
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 37
}
}
@@ -136423,31 +105401,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 59337,
- 59343
+ 44374,
+ 44380
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 38
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 44
}
}
},
"range": [
- 59326,
- 59343
+ 44363,
+ 44380
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 27
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 44
}
}
@@ -136462,16 +105440,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 59344,
- 59346
+ 44381,
+ 44383
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 45
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 47
}
}
@@ -136480,31 +105458,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 59347,
- 59354
+ 44384,
+ 44391
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 48
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 55
}
}
},
"range": [
- 59344,
- 59354
+ 44381,
+ 44391
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 45
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 55
}
}
@@ -136514,16 +105492,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 59355,
- 59360
+ 44392,
+ 44397
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 56
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 61
}
}
@@ -136533,32 +105511,32 @@
"value": "",
"raw": "''",
"range": [
- 59361,
- 59363
+ 44398,
+ 44400
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 62
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 64
}
}
}
],
"range": [
- 59344,
- 59364
+ 44381,
+ 44401
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 45
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 65
}
}
@@ -136567,62 +105545,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 59366,
- 59372
+ 44403,
+ 44409
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 67
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 73
}
}
}
],
"range": [
- 59326,
- 59373
+ 44363,
+ 44410
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 27
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 74
}
}
},
"range": [
- 59319,
- 59373
+ 44356,
+ 44410
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 20
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 74
}
}
},
"range": [
- 59319,
- 59374
+ 44356,
+ 44411
],
"loc": {
"start": {
- "line": 1604,
+ "line": 1259,
"column": 20
},
"end": {
- "line": 1604,
+ "line": 1259,
"column": 75
}
}
@@ -136636,16 +105614,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 59395,
- 59404
+ 44432,
+ 44441
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 20
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 29
}
}
@@ -136657,16 +105635,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 59407,
- 59411
+ 44444,
+ 44448
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 32
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 36
}
}
@@ -136675,77 +105653,77 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59415,
- 59419
+ 44452,
+ 44456
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 40
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 44
}
}
},
"range": [
- 59407,
- 59419
+ 44444,
+ 44456
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 32
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 44
}
}
},
"range": [
- 59395,
- 59419
+ 44432,
+ 44456
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 20
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 44
}
}
},
"range": [
- 59395,
- 59420
+ 44432,
+ 44457
],
"loc": {
"start": {
- "line": 1605,
+ "line": 1260,
"column": 20
},
"end": {
- "line": 1605,
+ "line": 1260,
"column": 45
}
}
}
],
"range": [
- 59297,
- 59438
+ 44334,
+ 44475
],
"loc": {
"start": {
- "line": 1603,
+ "line": 1258,
"column": 33
},
"end": {
- "line": 1606,
+ "line": 1261,
"column": 17
}
},
@@ -136754,16 +105732,16 @@
"type": "Line",
"value": " greater date",
"range": [
- 59455,
- 59470
+ 44492,
+ 44507
],
"loc": {
"start": {
- "line": 1607,
+ "line": 1262,
"column": 16
},
"end": {
- "line": 1607,
+ "line": 1262,
"column": 31
}
}
@@ -136776,16 +105754,16 @@
"type": "Identifier",
"name": "isGDate",
"range": [
- 59495,
- 59502
+ 44532,
+ 44539
],
"loc": {
"start": {
- "line": 1608,
+ "line": 1263,
"column": 24
},
"end": {
- "line": 1608,
+ "line": 1263,
"column": 31
}
}
@@ -136802,16 +105780,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59525,
- 59529
+ 44562,
+ 44566
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 20
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 24
}
}
@@ -136825,16 +105803,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 59532,
- 59542
+ 44569,
+ 44579
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 27
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 37
}
}
@@ -136843,31 +105821,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 59543,
- 59549
+ 44580,
+ 44586
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 38
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 44
}
}
},
"range": [
- 59532,
- 59549
+ 44569,
+ 44586
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 27
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 44
}
}
@@ -136882,16 +105860,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 59550,
- 59552
+ 44587,
+ 44589
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 45
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 47
}
}
@@ -136900,31 +105878,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 59553,
- 59560
+ 44590,
+ 44597
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 48
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 55
}
}
},
"range": [
- 59550,
- 59560
+ 44587,
+ 44597
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 45
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 55
}
}
@@ -136934,16 +105912,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 59561,
- 59565
+ 44598,
+ 44602
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 56
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 60
}
}
@@ -136953,32 +105931,32 @@
"value": "",
"raw": "''",
"range": [
- 59566,
- 59568
+ 44603,
+ 44605
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 61
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 63
}
}
}
],
"range": [
- 59550,
- 59569
+ 44587,
+ 44606
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 45
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 64
}
}
@@ -136987,62 +105965,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 59571,
- 59577
+ 44608,
+ 44614
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 66
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 72
}
}
}
],
"range": [
- 59532,
- 59578
+ 44569,
+ 44615
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 27
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 73
}
}
},
"range": [
- 59525,
- 59578
+ 44562,
+ 44615
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 20
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 73
}
}
},
"range": [
- 59525,
- 59579
+ 44562,
+ 44616
],
"loc": {
"start": {
- "line": 1609,
+ "line": 1264,
"column": 20
},
"end": {
- "line": 1609,
+ "line": 1264,
"column": 74
}
}
@@ -137056,16 +106034,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 59600,
- 59609
+ 44637,
+ 44646
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 20
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 29
}
}
@@ -137077,16 +106055,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 59612,
- 59616
+ 44649,
+ 44653
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 32
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 36
}
}
@@ -137095,77 +106073,77 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59619,
- 59623
+ 44656,
+ 44660
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 39
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 43
}
}
},
"range": [
- 59612,
- 59623
+ 44649,
+ 44660
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 32
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 43
}
}
},
"range": [
- 59600,
- 59623
+ 44637,
+ 44660
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 20
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 43
}
}
},
"range": [
- 59600,
- 59624
+ 44637,
+ 44661
],
"loc": {
"start": {
- "line": 1610,
+ "line": 1265,
"column": 20
},
"end": {
- "line": 1610,
+ "line": 1265,
"column": 44
}
}
}
],
"range": [
- 59503,
- 59642
+ 44540,
+ 44679
],
"loc": {
"start": {
- "line": 1608,
+ "line": 1263,
"column": 32
},
"end": {
- "line": 1611,
+ "line": 1266,
"column": 17
}
},
@@ -137174,16 +106152,16 @@
"type": "Line",
"value": " different date",
"range": [
- 59659,
- 59676
+ 44696,
+ 44713
],
"loc": {
"start": {
- "line": 1612,
+ "line": 1267,
"column": 16
},
"end": {
- "line": 1612,
+ "line": 1267,
"column": 33
}
}
@@ -137196,16 +106174,16 @@
"type": "Identifier",
"name": "isDFDate",
"range": [
- 59701,
- 59709
+ 44738,
+ 44746
],
"loc": {
"start": {
- "line": 1613,
+ "line": 1268,
"column": 24
},
"end": {
- "line": 1613,
+ "line": 1268,
"column": 32
}
}
@@ -137222,16 +106200,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59732,
- 59736
+ 44769,
+ 44773
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 20
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 24
}
}
@@ -137245,16 +106223,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 59739,
- 59749
+ 44776,
+ 44786
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 27
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 37
}
}
@@ -137263,31 +106241,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 59750,
- 59756
+ 44787,
+ 44793
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 38
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 44
}
}
},
"range": [
- 59739,
- 59756
+ 44776,
+ 44793
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 27
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 44
}
}
@@ -137302,16 +106280,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 59757,
- 59759
+ 44794,
+ 44796
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 45
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 47
}
}
@@ -137320,31 +106298,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 59760,
- 59767
+ 44797,
+ 44804
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 48
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 55
}
}
},
"range": [
- 59757,
- 59767
+ 44794,
+ 44804
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 45
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 55
}
}
@@ -137354,16 +106332,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 59768,
- 59772
+ 44805,
+ 44809
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 56
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 60
}
}
@@ -137373,32 +106351,32 @@
"value": "",
"raw": "''",
"range": [
- 59773,
- 59775
+ 44810,
+ 44812
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 61
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 63
}
}
}
],
"range": [
- 59757,
- 59776
+ 44794,
+ 44813
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 45
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 64
}
}
@@ -137407,62 +106385,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 59778,
- 59784
+ 44815,
+ 44821
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 66
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 72
}
}
}
],
"range": [
- 59739,
- 59785
+ 44776,
+ 44822
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 27
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 73
}
}
},
"range": [
- 59732,
- 59785
+ 44769,
+ 44822
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 20
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 73
}
}
},
"range": [
- 59732,
- 59786
+ 44769,
+ 44823
],
"loc": {
"start": {
- "line": 1614,
+ "line": 1269,
"column": 20
},
"end": {
- "line": 1614,
+ "line": 1269,
"column": 74
}
}
@@ -137476,16 +106454,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 59807,
- 59816
+ 44844,
+ 44853
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 20
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 29
}
}
@@ -137502,16 +106480,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 59819,
- 59823
+ 44856,
+ 44860
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 32
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 36
}
}
@@ -137520,47 +106498,47 @@
"type": "Identifier",
"name": "toString",
"range": [
- 59824,
- 59832
+ 44861,
+ 44869
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 37
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 45
}
}
},
"range": [
- 59819,
- 59832
+ 44856,
+ 44869
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 32
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 45
}
}
},
"arguments": [],
"range": [
- 59819,
- 59834
+ 44856,
+ 44871
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 32
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 47
}
}
@@ -137574,16 +106552,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59838,
- 59842
+ 44875,
+ 44879
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 51
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 55
}
}
@@ -137592,108 +106570,108 @@
"type": "Identifier",
"name": "toString",
"range": [
- 59843,
- 59851
+ 44880,
+ 44888
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 56
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 64
}
}
},
"range": [
- 59838,
- 59851
+ 44875,
+ 44888
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 51
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 64
}
}
},
"arguments": [],
"range": [
- 59838,
- 59853
+ 44875,
+ 44890
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 51
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 66
}
}
},
"range": [
- 59819,
- 59853
+ 44856,
+ 44890
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 32
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 66
}
}
},
"range": [
- 59807,
- 59853
+ 44844,
+ 44890
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 20
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 66
}
}
},
"range": [
- 59807,
- 59854
+ 44844,
+ 44891
],
"loc": {
"start": {
- "line": 1615,
+ "line": 1270,
"column": 20
},
"end": {
- "line": 1615,
+ "line": 1270,
"column": 67
}
}
}
],
"range": [
- 59710,
- 59872
+ 44747,
+ 44909
],
"loc": {
"start": {
- "line": 1613,
+ "line": 1268,
"column": 33
},
"end": {
- "line": 1616,
+ "line": 1271,
"column": 17
}
},
@@ -137702,16 +106680,16 @@
"type": "Line",
"value": " equal date",
"range": [
- 59889,
- 59902
+ 44926,
+ 44939
],
"loc": {
"start": {
- "line": 1617,
+ "line": 1272,
"column": 16
},
"end": {
- "line": 1617,
+ "line": 1272,
"column": 29
}
}
@@ -137724,16 +106702,16 @@
"type": "Identifier",
"name": "isEQDate",
"range": [
- 59927,
- 59935
+ 44964,
+ 44972
],
"loc": {
"start": {
- "line": 1618,
+ "line": 1273,
"column": 24
},
"end": {
- "line": 1618,
+ "line": 1273,
"column": 32
}
}
@@ -137750,16 +106728,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 59958,
- 59962
+ 44995,
+ 44999
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 20
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 24
}
}
@@ -137773,16 +106751,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 59965,
- 59975
+ 45002,
+ 45012
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 27
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 37
}
}
@@ -137791,31 +106769,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 59976,
- 59982
+ 45013,
+ 45019
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 38
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 44
}
}
},
"range": [
- 59965,
- 59982
+ 45002,
+ 45019
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 27
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 44
}
}
@@ -137830,16 +106808,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 59983,
- 59985
+ 45020,
+ 45022
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 45
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 47
}
}
@@ -137848,31 +106826,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 59986,
- 59993
+ 45023,
+ 45030
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 48
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 55
}
}
},
"range": [
- 59983,
- 59993
+ 45020,
+ 45030
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 45
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 55
}
}
@@ -137882,16 +106860,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 59994,
- 59999
+ 45031,
+ 45036
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 56
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 61
}
}
@@ -137901,32 +106879,32 @@
"value": "",
"raw": "''",
"range": [
- 60000,
- 60002
+ 45037,
+ 45039
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 62
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 64
}
}
}
],
"range": [
- 59983,
- 60003
+ 45020,
+ 45040
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 45
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 65
}
}
@@ -137935,62 +106913,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 60005,
- 60011
+ 45042,
+ 45048
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 67
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 73
}
}
}
],
"range": [
- 59965,
- 60012
+ 45002,
+ 45049
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 27
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 74
}
}
},
"range": [
- 59958,
- 60012
+ 44995,
+ 45049
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 20
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 74
}
}
},
"range": [
- 59958,
- 60013
+ 44995,
+ 45050
],
"loc": {
"start": {
- "line": 1619,
+ "line": 1274,
"column": 20
},
"end": {
- "line": 1619,
+ "line": 1274,
"column": 75
}
}
@@ -138004,16 +106982,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60034,
- 60043
+ 45071,
+ 45080
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 20
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 29
}
}
@@ -138030,16 +107008,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 60046,
- 60050
+ 45083,
+ 45087
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 32
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 36
}
}
@@ -138048,47 +107026,47 @@
"type": "Identifier",
"name": "toString",
"range": [
- 60051,
- 60059
+ 45088,
+ 45096
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 37
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 45
}
}
},
"range": [
- 60046,
- 60059
+ 45083,
+ 45096
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 32
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 45
}
}
},
"arguments": [],
"range": [
- 60046,
- 60061
+ 45083,
+ 45098
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 32
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 47
}
}
@@ -138102,16 +107080,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 60065,
- 60069
+ 45102,
+ 45106
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 51
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 55
}
}
@@ -138120,108 +107098,108 @@
"type": "Identifier",
"name": "toString",
"range": [
- 60070,
- 60078
+ 45107,
+ 45115
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 56
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 64
}
}
},
"range": [
- 60065,
- 60078
+ 45102,
+ 45115
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 51
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 64
}
}
},
"arguments": [],
"range": [
- 60065,
- 60080
+ 45102,
+ 45117
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 51
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 66
}
}
},
"range": [
- 60046,
- 60080
+ 45083,
+ 45117
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 32
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 66
}
}
},
"range": [
- 60034,
- 60080
+ 45071,
+ 45117
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 20
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 66
}
}
},
"range": [
- 60034,
- 60081
+ 45071,
+ 45118
],
"loc": {
"start": {
- "line": 1620,
+ "line": 1275,
"column": 20
},
"end": {
- "line": 1620,
+ "line": 1275,
"column": 67
}
}
}
],
"range": [
- 59936,
- 60099
+ 44973,
+ 45136
],
"loc": {
"start": {
- "line": 1618,
+ "line": 1273,
"column": 33
},
"end": {
- "line": 1621,
+ "line": 1276,
"column": 17
}
},
@@ -138230,16 +107208,16 @@
"type": "Line",
"value": " searched keyword with * operator doesn't have to be a date",
"range": [
- 60116,
- 60177
+ 45153,
+ 45214
],
"loc": {
"start": {
- "line": 1622,
+ "line": 1277,
"column": 16
},
"end": {
- "line": 1622,
+ "line": 1277,
"column": 77
}
}
@@ -138257,16 +107235,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 60202,
- 60207
+ 45239,
+ 45244
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 24
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 29
}
}
@@ -138275,31 +107253,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 60208,
- 60212
+ 45245,
+ 45249
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 30
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 34
}
}
},
"range": [
- 60202,
- 60212
+ 45239,
+ 45249
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 24
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 34
}
}
@@ -138309,32 +107287,32 @@
"type": "Identifier",
"name": "sA",
"range": [
- 60213,
- 60215
+ 45250,
+ 45252
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 35
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 37
}
}
}
],
"range": [
- 60202,
- 60216
+ 45239,
+ 45253
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 24
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 38
}
}
@@ -138351,16 +107329,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60251,
- 60260
+ 45288,
+ 45297
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 20
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 29
}
}
@@ -138374,16 +107352,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 60263,
- 60266
+ 45300,
+ 45303
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 32
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 35
}
}
@@ -138392,31 +107370,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 60267,
- 60275
+ 45304,
+ 45312
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 36
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 44
}
}
},
"range": [
- 60263,
- 60275
+ 45300,
+ 45312
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 32
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 44
}
}
@@ -138431,16 +107409,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 60276,
- 60278
+ 45313,
+ 45315
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 45
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 47
}
}
@@ -138449,31 +107427,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 60279,
- 60286
+ 45316,
+ 45323
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 48
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 55
}
}
},
"range": [
- 60276,
- 60286
+ 45313,
+ 45323
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 45
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 55
}
}
@@ -138483,16 +107461,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 60287,
- 60292
+ 45324,
+ 45329
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 56
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 61
}
}
@@ -138502,32 +107480,32 @@
"value": "",
"raw": "''",
"range": [
- 60293,
- 60295
+ 45330,
+ 45332
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 62
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 64
}
}
}
],
"range": [
- 60276,
- 60296
+ 45313,
+ 45333
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 45
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 65
}
}
@@ -138536,16 +107514,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 60298,
- 60306
+ 45335,
+ 45343
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 67
},
"end": {
- "line": 1624,
+ "line": 1279,
"column": 75
}
}
@@ -138555,16 +107533,16 @@
"value": false,
"raw": "false",
"range": [
- 60332,
- 60337
+ 45369,
+ 45374
],
"loc": {
"start": {
- "line": 1625,
+ "line": 1280,
"column": 24
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 29
}
}
@@ -138575,16 +107553,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 60339,
- 60343
+ 45376,
+ 45380
],
"loc": {
"start": {
- "line": 1625,
+ "line": 1280,
"column": 31
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 35
}
}
@@ -138593,77 +107571,77 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 60344,
- 60357
+ 45381,
+ 45394
],
"loc": {
"start": {
- "line": 1625,
+ "line": 1280,
"column": 36
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 49
}
}
},
"range": [
- 60339,
- 60357
+ 45376,
+ 45394
],
"loc": {
"start": {
- "line": 1625,
+ "line": 1280,
"column": 31
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 49
}
}
}
],
"range": [
- 60263,
- 60358
+ 45300,
+ 45395
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 32
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 50
}
}
},
"range": [
- 60251,
- 60358
+ 45288,
+ 45395
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 20
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 50
}
}
},
"range": [
- 60251,
- 60359
+ 45288,
+ 45396
],
"loc": {
"start": {
- "line": 1624,
+ "line": 1279,
"column": 20
},
"end": {
- "line": 1625,
+ "line": 1280,
"column": 51
}
},
@@ -138672,16 +107650,16 @@
"type": "Line",
"value": " like date",
"range": [
- 60218,
- 60230
+ 45255,
+ 45267
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 40
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 52
}
}
@@ -138690,16 +107668,16 @@
}
],
"range": [
- 60217,
- 60377
+ 45254,
+ 45414
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 39
},
"end": {
- "line": 1626,
+ "line": 1281,
"column": 17
}
}
@@ -138715,16 +107693,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 60402,
- 60412
+ 45439,
+ 45449
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 24
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 34
}
}
@@ -138733,31 +107711,31 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 60413,
- 60420
+ 45450,
+ 45457
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 35
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 42
}
}
},
"range": [
- 60402,
- 60420
+ 45439,
+ 45457
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 24
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 42
}
}
@@ -138767,16 +107745,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 60421,
- 60423
+ 45458,
+ 45460
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 43
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 45
}
}
@@ -138785,32 +107763,32 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 60424,
- 60430
+ 45461,
+ 45467
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 46
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 52
}
}
}
],
"range": [
- 60402,
- 60431
+ 45439,
+ 45468
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 24
},
"end": {
- "line": 1627,
+ "line": 1282,
"column": 53
}
}
@@ -138827,16 +107805,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 60454,
- 60458
+ 45491,
+ 45495
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 20
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 24
}
}
@@ -138850,16 +107828,16 @@
"type": "Identifier",
"name": "DateHelper",
"range": [
- 60461,
- 60471
+ 45498,
+ 45508
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 27
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 37
}
}
@@ -138868,31 +107846,31 @@
"type": "Identifier",
"name": "format",
"range": [
- 60472,
- 60478
+ 45509,
+ 45515
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 38
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 44
}
}
},
"range": [
- 60461,
- 60478
+ 45498,
+ 45515
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 27
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 44
}
}
@@ -138902,16 +107880,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 60479,
- 60481
+ 45516,
+ 45518
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 45
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 47
}
}
@@ -138920,62 +107898,62 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 60482,
- 60488
+ 45519,
+ 45525
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 48
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 54
}
}
}
],
"range": [
- 60461,
- 60489
+ 45498,
+ 45526
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 27
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 55
}
}
},
"range": [
- 60454,
- 60489
+ 45491,
+ 45526
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 20
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 55
}
}
},
"range": [
- 60454,
- 60490
+ 45491,
+ 45527
],
"loc": {
"start": {
- "line": 1628,
+ "line": 1283,
"column": 20
},
"end": {
- "line": 1628,
+ "line": 1283,
"column": 56
}
}
@@ -138989,16 +107967,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60511,
- 60520
+ 45548,
+ 45557
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 20
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 29
}
}
@@ -139015,16 +107993,16 @@
"type": "Identifier",
"name": "dte1",
"range": [
- 60523,
- 60527
+ 45560,
+ 45564
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 32
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 36
}
}
@@ -139033,47 +108011,47 @@
"type": "Identifier",
"name": "toString",
"range": [
- 60528,
- 60536
+ 45565,
+ 45573
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 37
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 45
}
}
},
"range": [
- 60523,
- 60536
+ 45560,
+ 45573
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 32
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 45
}
}
},
"arguments": [],
"range": [
- 60523,
- 60538
+ 45560,
+ 45575
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 32
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 47
}
}
@@ -139087,16 +108065,16 @@
"type": "Identifier",
"name": "dte2",
"range": [
- 60543,
- 60547
+ 45580,
+ 45584
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 52
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 56
}
}
@@ -139105,108 +108083,108 @@
"type": "Identifier",
"name": "toString",
"range": [
- 60548,
- 60556
+ 45585,
+ 45593
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 57
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 65
}
}
},
"range": [
- 60543,
- 60556
+ 45580,
+ 45593
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 52
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 65
}
}
},
"arguments": [],
"range": [
- 60543,
- 60558
+ 45580,
+ 45595
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 52
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 67
}
}
},
"range": [
- 60523,
- 60558
+ 45560,
+ 45595
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 32
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 67
}
}
},
"range": [
- 60511,
- 60558
+ 45548,
+ 45595
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 20
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 67
}
}
},
"range": [
- 60511,
- 60559
+ 45548,
+ 45596
],
"loc": {
"start": {
- "line": 1629,
+ "line": 1284,
"column": 20
},
"end": {
- "line": 1629,
+ "line": 1284,
"column": 68
}
}
}
],
"range": [
- 60432,
- 60577
+ 45469,
+ 45614
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 54
},
"end": {
- "line": 1630,
+ "line": 1285,
"column": 17
}
},
@@ -139215,16 +108193,16 @@
"type": "Line",
"value": "empty",
"range": [
- 60594,
- 60601
+ 45631,
+ 45638
],
"loc": {
"start": {
- "line": 1631,
+ "line": 1286,
"column": 16
},
"end": {
- "line": 1631,
+ "line": 1286,
"column": 23
}
}
@@ -139237,16 +108215,16 @@
"type": "Identifier",
"name": "hasEM",
"range": [
- 60626,
- 60631
+ 45663,
+ 45668
],
"loc": {
"start": {
- "line": 1632,
+ "line": 1287,
"column": 24
},
"end": {
- "line": 1632,
+ "line": 1287,
"column": 29
}
}
@@ -139263,16 +108241,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60654,
- 60663
+ 45691,
+ 45700
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 20
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 29
}
}
@@ -139286,16 +108264,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 60666,
- 60669
+ 45703,
+ 45706
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 32
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 35
}
}
@@ -139304,31 +108282,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 60670,
- 60677
+ 45707,
+ 45714
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 36
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 43
}
}
},
"range": [
- 60666,
- 60677
+ 45703,
+ 45714
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 32
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 43
}
}
@@ -139338,78 +108316,78 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 60678,
- 60686
+ 45715,
+ 45723
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 44
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 52
}
}
}
],
"range": [
- 60666,
- 60687
+ 45703,
+ 45724
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 32
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 53
}
}
},
"range": [
- 60654,
- 60687
+ 45691,
+ 45724
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 20
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 53
}
}
},
"range": [
- 60654,
- 60688
+ 45691,
+ 45725
],
"loc": {
"start": {
- "line": 1633,
+ "line": 1288,
"column": 20
},
"end": {
- "line": 1633,
+ "line": 1288,
"column": 54
}
}
}
],
"range": [
- 60632,
- 60706
+ 45669,
+ 45743
],
"loc": {
"start": {
- "line": 1632,
+ "line": 1287,
"column": 30
},
"end": {
- "line": 1634,
+ "line": 1289,
"column": 17
}
},
@@ -139418,16 +108396,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 60723,
- 60734
+ 45760,
+ 45771
],
"loc": {
"start": {
- "line": 1635,
+ "line": 1290,
"column": 16
},
"end": {
- "line": 1635,
+ "line": 1290,
"column": 27
}
}
@@ -139440,16 +108418,16 @@
"type": "Identifier",
"name": "hasNM",
"range": [
- 60759,
- 60764
+ 45796,
+ 45801
],
"loc": {
"start": {
- "line": 1636,
+ "line": 1291,
"column": 24
},
"end": {
- "line": 1636,
+ "line": 1291,
"column": 29
}
}
@@ -139466,16 +108444,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60787,
- 60796
+ 45824,
+ 45833
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 20
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 29
}
}
@@ -139492,16 +108470,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 60800,
- 60803
+ 45837,
+ 45840
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 33
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 36
}
}
@@ -139510,31 +108488,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 60804,
- 60811
+ 45841,
+ 45848
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 37
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 44
}
}
},
"range": [
- 60800,
- 60811
+ 45837,
+ 45848
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 33
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 44
}
}
@@ -139544,94 +108522,94 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 60812,
- 60820
+ 45849,
+ 45857
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 45
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 53
}
}
}
],
"range": [
- 60800,
- 60821
+ 45837,
+ 45858
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 33
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 54
}
}
},
"prefix": true,
"range": [
- 60799,
- 60821
+ 45836,
+ 45858
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 32
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 54
}
}
},
"range": [
- 60787,
- 60821
+ 45824,
+ 45858
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 20
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 54
}
}
},
"range": [
- 60787,
- 60822
+ 45824,
+ 45859
],
"loc": {
"start": {
- "line": 1637,
+ "line": 1292,
"column": 20
},
"end": {
- "line": 1637,
+ "line": 1292,
"column": 55
}
}
}
],
"range": [
- 60765,
- 60840
+ 45802,
+ 45877
],
"loc": {
"start": {
- "line": 1636,
+ "line": 1291,
"column": 30
},
"end": {
- "line": 1638,
+ "line": 1293,
"column": 17
}
}
@@ -139648,16 +108626,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 60868,
- 60877
+ 45905,
+ 45914
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 20
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 29
}
}
@@ -139671,16 +108649,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 60880,
- 60883
+ 45917,
+ 45920
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 32
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 35
}
}
@@ -139689,31 +108667,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 60884,
- 60892
+ 45921,
+ 45929
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 36
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 44
}
}
},
"range": [
- 60880,
- 60892
+ 45917,
+ 45929
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 32
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 44
}
}
@@ -139723,16 +108701,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 60893,
- 60895
+ 45930,
+ 45932
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 45
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 47
}
}
@@ -139741,16 +108719,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 60897,
- 60905
+ 45934,
+ 45942
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 49
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 57
}
}
@@ -139763,16 +108741,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 60907,
- 60911
+ 45944,
+ 45948
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 59
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 63
}
}
@@ -139781,31 +108759,31 @@
"type": "Identifier",
"name": "isExactMatch",
"range": [
- 60912,
- 60924
+ 45949,
+ 45961
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 64
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 76
}
}
},
"range": [
- 60907,
- 60924
+ 45944,
+ 45961
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 59
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 76
}
}
@@ -139815,32 +108793,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 60925,
- 60926
+ 45962,
+ 45963
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 77
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 78
}
}
}
],
"range": [
- 60907,
- 60927
+ 45944,
+ 45964
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 59
},
"end": {
- "line": 1639,
+ "line": 1294,
"column": 79
}
}
@@ -139851,16 +108829,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 60953,
- 60957
+ 45990,
+ 45994
],
"loc": {
"start": {
- "line": 1640,
+ "line": 1295,
"column": 24
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 28
}
}
@@ -139869,108 +108847,108 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 60958,
- 60971
+ 45995,
+ 46008
],
"loc": {
"start": {
- "line": 1640,
+ "line": 1295,
"column": 29
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 42
}
}
},
"range": [
- 60953,
- 60971
+ 45990,
+ 46008
],
"loc": {
"start": {
- "line": 1640,
+ "line": 1295,
"column": 24
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 42
}
}
}
],
"range": [
- 60880,
- 60972
+ 45917,
+ 46009
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 32
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 43
}
}
},
"range": [
- 60868,
- 60972
+ 45905,
+ 46009
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 20
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 43
}
}
},
"range": [
- 60868,
- 60973
+ 45905,
+ 46010
],
"loc": {
"start": {
- "line": 1639,
+ "line": 1294,
"column": 20
},
"end": {
- "line": 1640,
+ "line": 1295,
"column": 44
}
}
}
],
"range": [
- 60846,
- 60991
+ 45883,
+ 46028
],
"loc": {
"start": {
- "line": 1638,
+ "line": 1293,
"column": 23
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
}
},
"range": [
- 60756,
- 60991
+ 45793,
+ 46028
],
"loc": {
"start": {
- "line": 1636,
+ "line": 1291,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -139979,16 +108957,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 60723,
- 60734
+ 45760,
+ 45771
],
"loc": {
"start": {
- "line": 1635,
+ "line": 1290,
"column": 16
},
"end": {
- "line": 1635,
+ "line": 1290,
"column": 27
}
}
@@ -139996,16 +108974,16 @@
]
},
"range": [
- 60623,
- 60991
+ 45660,
+ 46028
],
"loc": {
"start": {
- "line": 1632,
+ "line": 1287,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140014,16 +108992,16 @@
"type": "Line",
"value": "empty",
"range": [
- 60594,
- 60601
+ 45631,
+ 45638
],
"loc": {
"start": {
- "line": 1631,
+ "line": 1286,
"column": 16
},
"end": {
- "line": 1631,
+ "line": 1286,
"column": 23
}
}
@@ -140031,31 +109009,31 @@
]
},
"range": [
- 60399,
- 60991
+ 45436,
+ 46028
],
"loc": {
"start": {
- "line": 1627,
+ "line": 1282,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
}
},
"range": [
- 60199,
- 60991
+ 45236,
+ 46028
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140064,16 +109042,16 @@
"type": "Line",
"value": " searched keyword with * operator doesn't have to be a date",
"range": [
- 60116,
- 60177
+ 45153,
+ 45214
],
"loc": {
"start": {
- "line": 1622,
+ "line": 1277,
"column": 16
},
"end": {
- "line": 1622,
+ "line": 1277,
"column": 77
}
}
@@ -140081,16 +109059,16 @@
]
},
"range": [
- 59924,
- 60991
+ 44961,
+ 46028
],
"loc": {
"start": {
- "line": 1618,
+ "line": 1273,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140099,16 +109077,16 @@
"type": "Line",
"value": " equal date",
"range": [
- 59889,
- 59902
+ 44926,
+ 44939
],
"loc": {
"start": {
- "line": 1617,
+ "line": 1272,
"column": 16
},
"end": {
- "line": 1617,
+ "line": 1272,
"column": 29
}
}
@@ -140116,16 +109094,16 @@
]
},
"range": [
- 59698,
- 60991
+ 44735,
+ 46028
],
"loc": {
"start": {
- "line": 1613,
+ "line": 1268,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140134,16 +109112,16 @@
"type": "Line",
"value": " different date",
"range": [
- 59659,
- 59676
+ 44696,
+ 44713
],
"loc": {
"start": {
- "line": 1612,
+ "line": 1267,
"column": 16
},
"end": {
- "line": 1612,
+ "line": 1267,
"column": 33
}
}
@@ -140151,16 +109129,16 @@
]
},
"range": [
- 59492,
- 60991
+ 44529,
+ 46028
],
"loc": {
"start": {
- "line": 1608,
+ "line": 1263,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140169,16 +109147,16 @@
"type": "Line",
"value": " greater date",
"range": [
- 59455,
- 59470
+ 44492,
+ 44507
],
"loc": {
"start": {
- "line": 1607,
+ "line": 1262,
"column": 16
},
"end": {
- "line": 1607,
+ "line": 1262,
"column": 31
}
}
@@ -140186,16 +109164,16 @@
]
},
"range": [
- 59285,
- 60991
+ 44322,
+ 46028
],
"loc": {
"start": {
- "line": 1603,
+ "line": 1258,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140204,16 +109182,16 @@
"type": "Line",
"value": " greater equal date",
"range": [
- 59242,
- 59263
+ 44279,
+ 44300
],
"loc": {
"start": {
- "line": 1602,
+ "line": 1257,
"column": 16
},
"end": {
- "line": 1602,
+ "line": 1257,
"column": 37
}
}
@@ -140221,16 +109199,16 @@
]
},
"range": [
- 59072,
- 60991
+ 44109,
+ 46028
],
"loc": {
"start": {
- "line": 1598,
+ "line": 1253,
"column": 21
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140239,16 +109217,16 @@
"type": "Line",
"value": " lower equal date",
"range": [
- 59031,
- 59050
+ 44068,
+ 44087
],
"loc": {
"start": {
- "line": 1597,
+ "line": 1252,
"column": 16
},
"end": {
- "line": 1597,
+ "line": 1252,
"column": 35
}
}
@@ -140256,16 +109234,16 @@
]
},
"range": [
- 58864,
- 60991
+ 43901,
+ 46028
],
"loc": {
"start": {
- "line": 1593,
+ "line": 1248,
"column": 16
},
"end": {
- "line": 1641,
+ "line": 1296,
"column": 17
}
},
@@ -140274,16 +109252,16 @@
"type": "Line",
"value": " lower date",
"range": [
- 58834,
- 58847
+ 43871,
+ 43884
],
"loc": {
"start": {
- "line": 1592,
+ "line": 1247,
"column": 16
},
"end": {
- "line": 1592,
+ "line": 1247,
"column": 29
}
}
@@ -140292,16 +109270,16 @@
}
],
"range": [
- 58756,
- 61005
+ 43793,
+ 46042
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 52
},
"end": {
- "line": 1642,
+ "line": 1297,
"column": 13
}
}
@@ -140320,16 +109298,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61096,
- 61100
+ 46133,
+ 46137
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 19
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 23
}
}
@@ -140338,31 +109316,31 @@
"type": "Identifier",
"name": "hasColNbFormat",
"range": [
- 61101,
- 61115
+ 46138,
+ 46152
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 24
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 38
}
}
},
"range": [
- 61096,
- 61115
+ 46133,
+ 46152
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 19
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 38
}
}
@@ -140376,16 +109354,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61119,
- 61123
+ 46156,
+ 46160
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 42
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 46
}
}
@@ -140394,31 +109372,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 61124,
- 61135
+ 46161,
+ 46172
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 47
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 58
}
}
},
"range": [
- 61119,
- 61135
+ 46156,
+ 46172
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 42
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 58
}
}
@@ -140427,46 +109405,46 @@
"type": "Identifier",
"name": "j",
"range": [
- 61136,
- 61137
+ 46173,
+ 46174
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 59
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 60
}
}
},
"range": [
- 61119,
- 61138
+ 46156,
+ 46175
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 42
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 61
}
}
},
"range": [
- 61096,
- 61138
+ 46133,
+ 46175
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 19
},
"end": {
- "line": 1646,
+ "line": 1301,
"column": 61
}
}
@@ -140483,16 +109461,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 61161,
- 61172
+ 46198,
+ 46209
],
"loc": {
"start": {
- "line": 1647,
+ "line": 1302,
"column": 20
},
"end": {
- "line": 1647,
+ "line": 1302,
"column": 31
}
}
@@ -140503,16 +109481,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 61175,
- 61189
+ 46212,
+ 46226
],
"loc": {
"start": {
- "line": 1647,
+ "line": 1302,
"column": 34
},
"end": {
- "line": 1647,
+ "line": 1302,
"column": 48
}
}
@@ -140522,16 +109500,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 61215,
- 61223
+ 46252,
+ 46260
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 24
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 32
}
}
@@ -140545,16 +109523,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61225,
- 61229
+ 46262,
+ 46266
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 34
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 38
}
}
@@ -140563,31 +109541,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 61230,
- 61241
+ 46267,
+ 46278
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 39
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 50
}
}
},
"range": [
- 61225,
- 61241
+ 46262,
+ 46278
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 34
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 50
}
}
@@ -140596,77 +109574,77 @@
"type": "Identifier",
"name": "j",
"range": [
- 61242,
- 61243
+ 46279,
+ 46280
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 51
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 52
}
}
},
"range": [
- 61225,
- 61244
+ 46262,
+ 46281
],
"loc": {
"start": {
- "line": 1648,
+ "line": 1303,
"column": 34
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 53
}
}
}
],
"range": [
- 61175,
- 61245
+ 46212,
+ 46282
],
"loc": {
"start": {
- "line": 1647,
+ "line": 1302,
"column": 34
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 54
}
}
},
"range": [
- 61161,
- 61245
+ 46198,
+ 46282
],
"loc": {
"start": {
- "line": 1647,
+ "line": 1302,
"column": 20
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 54
}
}
},
"range": [
- 61161,
- 61246
+ 46198,
+ 46283
],
"loc": {
"start": {
- "line": 1647,
+ "line": 1302,
"column": 20
},
"end": {
- "line": 1648,
+ "line": 1303,
"column": 55
}
}
@@ -140680,16 +109658,16 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 61267,
- 61275
+ 46304,
+ 46312
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 20
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 28
}
}
@@ -140703,16 +109681,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61278,
- 61282
+ 46315,
+ 46319
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 31
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 35
}
}
@@ -140721,31 +109699,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 61283,
- 61294
+ 46320,
+ 46331
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 36
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 47
}
}
},
"range": [
- 61278,
- 61294
+ 46315,
+ 46331
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 31
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 47
}
}
@@ -140754,77 +109732,77 @@
"type": "Identifier",
"name": "j",
"range": [
- 61295,
- 61296
+ 46332,
+ 46333
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 48
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 49
}
}
},
"range": [
- 61278,
- 61297
+ 46315,
+ 46334
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 31
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 50
}
}
},
"range": [
- 61267,
- 61297
+ 46304,
+ 46334
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 20
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 50
}
}
},
"range": [
- 61267,
- 61298
+ 46304,
+ 46335
],
"loc": {
"start": {
- "line": 1649,
+ "line": 1304,
"column": 20
},
"end": {
- "line": 1649,
+ "line": 1304,
"column": 51
}
}
}
],
"range": [
- 61139,
- 61316
+ 46176,
+ 46353
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 62
},
"end": {
- "line": 1650,
+ "line": 1305,
"column": 17
}
}
@@ -140846,16 +109824,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61347,
- 61351
+ 46384,
+ 46388
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 23
},
"end": {
- "line": 1651,
+ "line": 1306,
"column": 27
}
}
@@ -140864,31 +109842,31 @@
"type": "Identifier",
"name": "thousandsSeparator",
"range": [
- 61352,
- 61370
+ 46389,
+ 46407
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 28
},
"end": {
- "line": 1651,
+ "line": 1306,
"column": 46
}
}
},
"range": [
- 61347,
- 61370
+ 46384,
+ 46407
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 23
},
"end": {
- "line": 1651,
+ "line": 1306,
"column": 46
}
}
@@ -140898,31 +109876,31 @@
"value": ",",
"raw": "','",
"range": [
- 61375,
- 61378
+ 46412,
+ 46415
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 51
},
"end": {
- "line": 1651,
+ "line": 1306,
"column": 54
}
}
},
"range": [
- 61347,
- 61378
+ 46384,
+ 46415
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 23
},
"end": {
- "line": 1651,
+ "line": 1306,
"column": 54
}
}
@@ -140936,16 +109914,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 61406,
- 61410
+ 46443,
+ 46447
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 24
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 28
}
}
@@ -140954,31 +109932,31 @@
"type": "Identifier",
"name": "decimalSeparator",
"range": [
- 61411,
- 61427
+ 46448,
+ 46464
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 29
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 45
}
}
},
"range": [
- 61406,
- 61427
+ 46443,
+ 46464
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 24
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 45
}
}
@@ -140988,46 +109966,46 @@
"value": ".",
"raw": "'.'",
"range": [
- 61432,
- 61435
+ 46469,
+ 46472
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 50
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 53
}
}
},
"range": [
- 61406,
- 61435
+ 46443,
+ 46472
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 24
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 53
}
}
},
"range": [
- 61347,
- 61435
+ 46384,
+ 46472
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 23
},
"end": {
- "line": 1652,
+ "line": 1307,
"column": 53
}
}
@@ -141044,16 +110022,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 61462,
- 61473
+ 46499,
+ 46510
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 24
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 35
}
}
@@ -141064,16 +110042,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 61476,
- 61490
+ 46513,
+ 46527
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 38
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 52
}
}
@@ -141083,16 +110061,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 61491,
- 61499
+ 46528,
+ 46536
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 53
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 61
}
}
@@ -141102,62 +110080,62 @@
"value": "us",
"raw": "'us'",
"range": [
- 61501,
- 61505
+ 46538,
+ 46542
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 63
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 67
}
}
}
],
"range": [
- 61476,
- 61506
+ 46513,
+ 46543
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 38
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 68
}
}
},
"range": [
- 61462,
- 61506
+ 46499,
+ 46543
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 24
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 68
}
}
},
"range": [
- 61462,
- 61507
+ 46499,
+ 46544
],
"loc": {
"start": {
- "line": 1653,
+ "line": 1308,
"column": 24
},
"end": {
- "line": 1653,
+ "line": 1308,
"column": 69
}
}
@@ -141171,16 +110149,16 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 61532,
- 61540
+ 46569,
+ 46577
],
"loc": {
"start": {
- "line": 1654,
+ "line": 1309,
"column": 24
},
"end": {
- "line": 1654,
+ "line": 1309,
"column": 32
}
}
@@ -141190,62 +110168,62 @@
"value": "us",
"raw": "'us'",
"range": [
- 61543,
- 61547
+ 46580,
+ 46584
],
"loc": {
"start": {
- "line": 1654,
+ "line": 1309,
"column": 35
},
"end": {
- "line": 1654,
+ "line": 1309,
"column": 39
}
}
},
"range": [
- 61532,
- 61547
+ 46569,
+ 46584
],
"loc": {
"start": {
- "line": 1654,
+ "line": 1309,
"column": 24
},
"end": {
- "line": 1654,
+ "line": 1309,
"column": 39
}
}
},
"range": [
- 61532,
- 61548
+ 46569,
+ 46585
],
"loc": {
"start": {
- "line": 1654,
+ "line": 1309,
"column": 24
},
"end": {
- "line": 1654,
+ "line": 1309,
"column": 40
}
}
}
],
"range": [
- 61436,
- 61570
+ 46473,
+ 46607
],
"loc": {
"start": {
- "line": 1652,
+ "line": 1307,
"column": 54
},
"end": {
- "line": 1655,
+ "line": 1310,
"column": 21
}
}
@@ -141262,16 +110240,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 61602,
- 61613
+ 46639,
+ 46650
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 24
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 35
}
}
@@ -141282,16 +110260,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 61616,
- 61630
+ 46653,
+ 46667
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 38
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 52
}
}
@@ -141301,16 +110279,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 61631,
- 61639
+ 46668,
+ 46676
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 53
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 61
}
}
@@ -141320,62 +110298,62 @@
"value": "eu",
"raw": "'eu'",
"range": [
- 61641,
- 61645
+ 46678,
+ 46682
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 63
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 67
}
}
}
],
"range": [
- 61616,
- 61646
+ 46653,
+ 46683
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 38
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 68
}
}
},
"range": [
- 61602,
- 61646
+ 46639,
+ 46683
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 24
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 68
}
}
},
"range": [
- 61602,
- 61647
+ 46639,
+ 46684
],
"loc": {
"start": {
- "line": 1656,
+ "line": 1311,
"column": 24
},
"end": {
- "line": 1656,
+ "line": 1311,
"column": 69
}
}
@@ -141389,16 +110367,16 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 61672,
- 61680
+ 46709,
+ 46717
],
"loc": {
"start": {
- "line": 1657,
+ "line": 1312,
"column": 24
},
"end": {
- "line": 1657,
+ "line": 1312,
"column": 32
}
}
@@ -141408,108 +110386,108 @@
"value": "eu",
"raw": "'eu'",
"range": [
- 61683,
- 61687
+ 46720,
+ 46724
],
"loc": {
"start": {
- "line": 1657,
+ "line": 1312,
"column": 35
},
"end": {
- "line": 1657,
+ "line": 1312,
"column": 39
}
}
},
"range": [
- 61672,
- 61687
+ 46709,
+ 46724
],
"loc": {
"start": {
- "line": 1657,
+ "line": 1312,
"column": 24
},
"end": {
- "line": 1657,
+ "line": 1312,
"column": 39
}
}
},
"range": [
- 61672,
- 61688
+ 46709,
+ 46725
],
"loc": {
"start": {
- "line": 1657,
+ "line": 1312,
"column": 24
},
"end": {
- "line": 1657,
+ "line": 1312,
"column": 40
}
}
}
],
"range": [
- 61576,
- 61710
+ 46613,
+ 46747
],
"loc": {
"start": {
- "line": 1655,
+ "line": 1310,
"column": 27
},
"end": {
- "line": 1658,
+ "line": 1313,
"column": 21
}
}
},
"range": [
- 61344,
- 61710
+ 46381,
+ 46747
],
"loc": {
"start": {
- "line": 1651,
+ "line": 1306,
"column": 20
},
"end": {
- "line": 1658,
+ "line": 1313,
"column": 21
}
}
}
],
"range": [
- 61322,
- 61728
+ 46359,
+ 46765
],
"loc": {
"start": {
- "line": 1650,
+ "line": 1305,
"column": 23
},
"end": {
- "line": 1659,
+ "line": 1314,
"column": 17
}
}
},
"range": [
- 61093,
- 61728
+ 46130,
+ 46765
],
"loc": {
"start": {
- "line": 1646,
+ "line": 1301,
"column": 16
},
"end": {
- "line": 1659,
+ "line": 1314,
"column": 17
}
},
@@ -141518,16 +110496,16 @@
"type": "Line",
"value": "first numbers need to be formated",
"range": [
- 61041,
- 61076
+ 46078,
+ 46113
],
"loc": {
"start": {
- "line": 1645,
+ "line": 1300,
"column": 16
},
"end": {
- "line": 1645,
+ "line": 1300,
"column": 51
}
}
@@ -141538,16 +110516,16 @@
"type": "Line",
"value": " first checks if there is any operator (<,>,<=,>=,!,*,=,{,},",
"range": [
- 61746,
- 61808
+ 46783,
+ 46845
],
"loc": {
"start": {
- "line": 1661,
+ "line": 1316,
"column": 16
},
"end": {
- "line": 1661,
+ "line": 1316,
"column": 78
}
}
@@ -141556,16 +110534,16 @@
"type": "Line",
"value": " rgx:)",
"range": [
- 61825,
- 61833
+ 46862,
+ 46870
],
"loc": {
"start": {
- "line": 1662,
+ "line": 1317,
"column": 16
},
"end": {
- "line": 1662,
+ "line": 1317,
"column": 24
}
}
@@ -141574,16 +110552,16 @@
"type": "Line",
"value": " lower equal",
"range": [
- 61850,
- 61864
+ 46887,
+ 46901
],
"loc": {
"start": {
- "line": 1663,
+ "line": 1318,
"column": 16
},
"end": {
- "line": 1663,
+ "line": 1318,
"column": 30
}
}
@@ -141596,16 +110574,16 @@
"type": "Identifier",
"name": "hasLE",
"range": [
- 61884,
- 61889
+ 46921,
+ 46926
],
"loc": {
"start": {
- "line": 1664,
+ "line": 1319,
"column": 19
},
"end": {
- "line": 1664,
+ "line": 1319,
"column": 24
}
}
@@ -141622,16 +110600,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 61912,
- 61921
+ 46949,
+ 46958
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 20
},
"end": {
- "line": 1665,
+ "line": 1320,
"column": 29
}
}
@@ -141643,16 +110621,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 61924,
- 61935
+ 46961,
+ 46972
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 32
},
"end": {
- "line": 1665,
+ "line": 1320,
"column": 43
}
}
@@ -141663,16 +110641,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 61939,
- 61953
+ 46976,
+ 46990
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 47
},
"end": {
- "line": 1665,
+ "line": 1320,
"column": 61
}
}
@@ -141687,16 +110665,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 61979,
- 61981
+ 47016,
+ 47018
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 24
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 26
}
}
@@ -141705,31 +110683,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 61982,
- 61989
+ 47019,
+ 47026
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 27
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 34
}
}
},
"range": [
- 61979,
- 61989
+ 47016,
+ 47026
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 24
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 34
}
}
@@ -141739,16 +110717,16 @@
"type": "Identifier",
"name": "re_le",
"range": [
- 61990,
- 61995
+ 47027,
+ 47032
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 35
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 40
}
}
@@ -141758,32 +110736,32 @@
"value": "",
"raw": "''",
"range": [
- 61997,
- 61999
+ 47034,
+ 47036
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 42
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 44
}
}
}
],
"range": [
- 61979,
- 62000
+ 47016,
+ 47037
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 24
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 45
}
}
@@ -141792,93 +110770,93 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 62002,
- 62010
+ 47039,
+ 47047
],
"loc": {
"start": {
- "line": 1666,
+ "line": 1321,
"column": 47
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 55
}
}
}
],
"range": [
- 61939,
- 62011
+ 46976,
+ 47048
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 47
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 56
}
}
},
"range": [
- 61924,
- 62011
+ 46961,
+ 47048
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 32
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 56
}
}
},
"range": [
- 61912,
- 62011
+ 46949,
+ 47048
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 20
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 56
}
}
},
"range": [
- 61912,
- 62012
+ 46949,
+ 47049
],
"loc": {
"start": {
- "line": 1665,
+ "line": 1320,
"column": 20
},
"end": {
- "line": 1666,
+ "line": 1321,
"column": 57
}
}
}
],
"range": [
- 61890,
- 62030
+ 46927,
+ 47067
],
"loc": {
"start": {
- "line": 1664,
+ "line": 1319,
"column": 25
},
"end": {
- "line": 1667,
+ "line": 1322,
"column": 17
}
},
@@ -141887,16 +110865,16 @@
"type": "Line",
"value": "greater equal",
"range": [
- 62047,
- 62062
+ 47084,
+ 47099
],
"loc": {
"start": {
- "line": 1668,
+ "line": 1323,
"column": 16
},
"end": {
- "line": 1668,
+ "line": 1323,
"column": 31
}
}
@@ -141909,16 +110887,16 @@
"type": "Identifier",
"name": "hasGE",
"range": [
- 62087,
- 62092
+ 47124,
+ 47129
],
"loc": {
"start": {
- "line": 1669,
+ "line": 1324,
"column": 24
},
"end": {
- "line": 1669,
+ "line": 1324,
"column": 29
}
}
@@ -141935,16 +110913,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 62115,
- 62124
+ 47152,
+ 47161
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 20
},
"end": {
- "line": 1670,
+ "line": 1325,
"column": 29
}
}
@@ -141956,16 +110934,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 62127,
- 62138
+ 47164,
+ 47175
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 32
},
"end": {
- "line": 1670,
+ "line": 1325,
"column": 43
}
}
@@ -141976,16 +110954,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 62142,
- 62156
+ 47179,
+ 47193
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 47
},
"end": {
- "line": 1670,
+ "line": 1325,
"column": 61
}
}
@@ -142000,16 +110978,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 62182,
- 62184
+ 47219,
+ 47221
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 24
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 26
}
}
@@ -142018,31 +110996,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 62185,
- 62192
+ 47222,
+ 47229
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 27
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 34
}
}
},
"range": [
- 62182,
- 62192
+ 47219,
+ 47229
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 24
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 34
}
}
@@ -142052,16 +111030,16 @@
"type": "Identifier",
"name": "re_ge",
"range": [
- 62193,
- 62198
+ 47230,
+ 47235
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 35
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 40
}
}
@@ -142071,32 +111049,32 @@
"value": "",
"raw": "''",
"range": [
- 62200,
- 62202
+ 47237,
+ 47239
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 42
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 44
}
}
}
],
"range": [
- 62182,
- 62203
+ 47219,
+ 47240
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 24
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 45
}
}
@@ -142105,93 +111083,93 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 62205,
- 62213
+ 47242,
+ 47250
],
"loc": {
"start": {
- "line": 1671,
+ "line": 1326,
"column": 47
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 55
}
}
}
],
"range": [
- 62142,
- 62214
+ 47179,
+ 47251
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 47
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 56
}
}
},
"range": [
- 62127,
- 62214
+ 47164,
+ 47251
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 32
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 56
}
}
},
"range": [
- 62115,
- 62214
+ 47152,
+ 47251
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 20
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 56
}
}
},
"range": [
- 62115,
- 62215
+ 47152,
+ 47252
],
"loc": {
"start": {
- "line": 1670,
+ "line": 1325,
"column": 20
},
"end": {
- "line": 1671,
+ "line": 1326,
"column": 57
}
}
}
],
"range": [
- 62093,
- 62233
+ 47130,
+ 47270
],
"loc": {
"start": {
- "line": 1669,
+ "line": 1324,
"column": 30
},
"end": {
- "line": 1672,
+ "line": 1327,
"column": 17
}
},
@@ -142200,16 +111178,16 @@
"type": "Line",
"value": "lower",
"range": [
- 62250,
- 62257
+ 47287,
+ 47294
],
"loc": {
"start": {
- "line": 1673,
+ "line": 1328,
"column": 16
},
"end": {
- "line": 1673,
+ "line": 1328,
"column": 23
}
}
@@ -142222,16 +111200,16 @@
"type": "Identifier",
"name": "hasLO",
"range": [
- 62282,
- 62287
+ 47319,
+ 47324
],
"loc": {
"start": {
- "line": 1674,
+ "line": 1329,
"column": 24
},
"end": {
- "line": 1674,
+ "line": 1329,
"column": 29
}
}
@@ -142248,16 +111226,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 62310,
- 62319
+ 47347,
+ 47356
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 20
},
"end": {
- "line": 1675,
+ "line": 1330,
"column": 29
}
}
@@ -142269,16 +111247,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 62322,
- 62333
+ 47359,
+ 47370
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 32
},
"end": {
- "line": 1675,
+ "line": 1330,
"column": 43
}
}
@@ -142289,16 +111267,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 62336,
- 62350
+ 47373,
+ 47387
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 46
},
"end": {
- "line": 1675,
+ "line": 1330,
"column": 60
}
}
@@ -142313,16 +111291,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 62376,
- 62378
+ 47413,
+ 47415
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 24
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 26
}
}
@@ -142331,31 +111309,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 62379,
- 62386
+ 47416,
+ 47423
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 27
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 34
}
}
},
"range": [
- 62376,
- 62386
+ 47413,
+ 47423
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 24
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 34
}
}
@@ -142365,16 +111343,16 @@
"type": "Identifier",
"name": "re_l",
"range": [
- 62387,
- 62391
+ 47424,
+ 47428
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 35
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 39
}
}
@@ -142384,32 +111362,32 @@
"value": "",
"raw": "''",
"range": [
- 62393,
- 62395
+ 47430,
+ 47432
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 41
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 43
}
}
}
],
"range": [
- 62376,
- 62396
+ 47413,
+ 47433
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 24
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 44
}
}
@@ -142418,93 +111396,93 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 62398,
- 62406
+ 47435,
+ 47443
],
"loc": {
"start": {
- "line": 1676,
+ "line": 1331,
"column": 46
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 54
}
}
}
],
"range": [
- 62336,
- 62407
+ 47373,
+ 47444
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 46
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 55
}
}
},
"range": [
- 62322,
- 62407
+ 47359,
+ 47444
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 32
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 55
}
}
},
"range": [
- 62310,
- 62407
+ 47347,
+ 47444
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 20
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 55
}
}
},
"range": [
- 62310,
- 62408
+ 47347,
+ 47445
],
"loc": {
"start": {
- "line": 1675,
+ "line": 1330,
"column": 20
},
"end": {
- "line": 1676,
+ "line": 1331,
"column": 56
}
}
}
],
"range": [
- 62288,
- 62426
+ 47325,
+ 47463
],
"loc": {
"start": {
- "line": 1674,
+ "line": 1329,
"column": 30
},
"end": {
- "line": 1677,
+ "line": 1332,
"column": 17
}
},
@@ -142513,16 +111491,16 @@
"type": "Line",
"value": "greater",
"range": [
- 62443,
- 62452
+ 47480,
+ 47489
],
"loc": {
"start": {
- "line": 1678,
+ "line": 1333,
"column": 16
},
"end": {
- "line": 1678,
+ "line": 1333,
"column": 25
}
}
@@ -142535,16 +111513,16 @@
"type": "Identifier",
"name": "hasGR",
"range": [
- 62477,
- 62482
+ 47514,
+ 47519
],
"loc": {
"start": {
- "line": 1679,
+ "line": 1334,
"column": 24
},
"end": {
- "line": 1679,
+ "line": 1334,
"column": 29
}
}
@@ -142561,16 +111539,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 62505,
- 62514
+ 47542,
+ 47551
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 20
},
"end": {
- "line": 1680,
+ "line": 1335,
"column": 29
}
}
@@ -142582,16 +111560,16 @@
"type": "Identifier",
"name": "numCellData",
"range": [
- 62517,
- 62528
+ 47554,
+ 47565
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 32
},
"end": {
- "line": 1680,
+ "line": 1335,
"column": 43
}
}
@@ -142602,16 +111580,16 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 62531,
- 62545
+ 47568,
+ 47582
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 46
},
"end": {
- "line": 1680,
+ "line": 1335,
"column": 60
}
}
@@ -142626,16 +111604,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 62571,
- 62573
+ 47608,
+ 47610
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 24
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 26
}
}
@@ -142644,31 +111622,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 62574,
- 62581
+ 47611,
+ 47618
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 27
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 34
}
}
},
"range": [
- 62571,
- 62581
+ 47608,
+ 47618
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 24
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 34
}
}
@@ -142678,16 +111656,16 @@
"type": "Identifier",
"name": "re_g",
"range": [
- 62582,
- 62586
+ 47619,
+ 47623
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 35
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 39
}
}
@@ -142697,32 +111675,32 @@
"value": "",
"raw": "''",
"range": [
- 62588,
- 62590
+ 47625,
+ 47627
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 41
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 43
}
}
}
],
"range": [
- 62571,
- 62591
+ 47608,
+ 47628
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 24
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 44
}
}
@@ -142731,93 +111709,93 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 62593,
- 62601
+ 47630,
+ 47638
],
"loc": {
"start": {
- "line": 1681,
+ "line": 1336,
"column": 46
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 54
}
}
}
],
"range": [
- 62531,
- 62602
+ 47568,
+ 47639
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 46
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 55
}
}
},
"range": [
- 62517,
- 62602
+ 47554,
+ 47639
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 32
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 55
}
}
},
"range": [
- 62505,
- 62602
+ 47542,
+ 47639
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 20
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 55
}
}
},
"range": [
- 62505,
- 62603
+ 47542,
+ 47640
],
"loc": {
"start": {
- "line": 1680,
+ "line": 1335,
"column": 20
},
"end": {
- "line": 1681,
+ "line": 1336,
"column": 56
}
}
}
],
"range": [
- 62483,
- 62621
+ 47520,
+ 47658
],
"loc": {
"start": {
- "line": 1679,
+ "line": 1334,
"column": 30
},
"end": {
- "line": 1682,
+ "line": 1337,
"column": 17
}
},
@@ -142826,16 +111804,16 @@
"type": "Line",
"value": "different",
"range": [
- 62638,
- 62649
+ 47675,
+ 47686
],
"loc": {
"start": {
- "line": 1683,
+ "line": 1338,
"column": 16
},
"end": {
- "line": 1683,
+ "line": 1338,
"column": 27
}
}
@@ -142848,16 +111826,16 @@
"type": "Identifier",
"name": "hasDF",
"range": [
- 62674,
- 62679
+ 47711,
+ 47716
],
"loc": {
"start": {
- "line": 1684,
+ "line": 1339,
"column": 24
},
"end": {
- "line": 1684,
+ "line": 1339,
"column": 29
}
}
@@ -142874,16 +111852,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 62702,
- 62711
+ 47739,
+ 47748
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 20
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 29
}
}
@@ -142899,16 +111877,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 62714,
- 62717
+ 47751,
+ 47754
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 32
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 35
}
}
@@ -142917,31 +111895,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 62718,
- 62726
+ 47755,
+ 47763
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 36
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 44
}
}
},
"range": [
- 62714,
- 62726
+ 47751,
+ 47763
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 32
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 44
}
}
@@ -142956,16 +111934,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 62727,
- 62729
+ 47764,
+ 47766
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 45
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 47
}
}
@@ -142974,31 +111952,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 62730,
- 62737
+ 47767,
+ 47774
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 48
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 55
}
}
},
"range": [
- 62727,
- 62737
+ 47764,
+ 47774
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 45
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 55
}
}
@@ -143008,16 +111986,16 @@
"type": "Identifier",
"name": "re_d",
"range": [
- 62738,
- 62742
+ 47775,
+ 47779
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 56
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 60
}
}
@@ -143027,32 +112005,32 @@
"value": "",
"raw": "''",
"range": [
- 62744,
- 62746
+ 47781,
+ 47783
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 62
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 64
}
}
}
],
"range": [
- 62727,
- 62747
+ 47764,
+ 47784
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 45
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 65
}
}
@@ -143061,16 +112039,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 62749,
- 62757
+ 47786,
+ 47794
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 67
},
"end": {
- "line": 1685,
+ "line": 1340,
"column": 75
}
}
@@ -143080,16 +112058,16 @@
"value": false,
"raw": "false",
"range": [
- 62783,
- 62788
+ 47820,
+ 47825
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 24
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 29
}
}
@@ -143100,16 +112078,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 62790,
- 62794
+ 47827,
+ 47831
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 31
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 35
}
}
@@ -143118,47 +112096,47 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 62795,
- 62808
+ 47832,
+ 47845
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 36
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 49
}
}
},
"range": [
- 62790,
- 62808
+ 47827,
+ 47845
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 31
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 49
}
}
}
],
"range": [
- 62714,
- 62809
+ 47751,
+ 47846
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 32
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 50
}
}
@@ -143168,16 +112146,16 @@
"value": false,
"raw": "false",
"range": [
- 62812,
- 62817
+ 47849,
+ 47854
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 53
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 58
}
}
@@ -143187,77 +112165,77 @@
"value": true,
"raw": "true",
"range": [
- 62820,
- 62824
+ 47857,
+ 47861
],
"loc": {
"start": {
- "line": 1686,
+ "line": 1341,
"column": 61
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 65
}
}
},
"range": [
- 62714,
- 62824
+ 47751,
+ 47861
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 32
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 65
}
}
},
"range": [
- 62702,
- 62824
+ 47739,
+ 47861
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 20
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 65
}
}
},
"range": [
- 62702,
- 62825
+ 47739,
+ 47862
],
"loc": {
"start": {
- "line": 1685,
+ "line": 1340,
"column": 20
},
"end": {
- "line": 1686,
+ "line": 1341,
"column": 66
}
}
}
],
"range": [
- 62680,
- 62843
+ 47717,
+ 47880
],
"loc": {
"start": {
- "line": 1684,
+ "line": 1339,
"column": 30
},
"end": {
- "line": 1687,
+ "line": 1342,
"column": 17
}
},
@@ -143266,16 +112244,16 @@
"type": "Line",
"value": "like",
"range": [
- 62860,
- 62866
+ 47897,
+ 47903
],
"loc": {
"start": {
- "line": 1688,
+ "line": 1343,
"column": 16
},
"end": {
- "line": 1688,
+ "line": 1343,
"column": 22
}
}
@@ -143288,16 +112266,16 @@
"type": "Identifier",
"name": "hasLK",
"range": [
- 62891,
- 62896
+ 47928,
+ 47933
],
"loc": {
"start": {
- "line": 1689,
+ "line": 1344,
"column": 24
},
"end": {
- "line": 1689,
+ "line": 1344,
"column": 29
}
}
@@ -143314,16 +112292,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 62919,
- 62928
+ 47956,
+ 47965
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 20
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 29
}
}
@@ -143337,16 +112315,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 62931,
- 62934
+ 47968,
+ 47971
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 32
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 35
}
}
@@ -143355,31 +112333,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 62935,
- 62943
+ 47972,
+ 47980
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 36
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 44
}
}
},
"range": [
- 62931,
- 62943
+ 47968,
+ 47980
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 32
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 44
}
}
@@ -143394,16 +112372,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 62944,
- 62946
+ 47981,
+ 47983
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 45
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 47
}
}
@@ -143412,31 +112390,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 62947,
- 62954
+ 47984,
+ 47991
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 48
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 55
}
}
},
"range": [
- 62944,
- 62954
+ 47981,
+ 47991
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 45
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 55
}
}
@@ -143446,16 +112424,16 @@
"type": "Identifier",
"name": "re_lk",
"range": [
- 62955,
- 62960
+ 47992,
+ 47997
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 56
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 61
}
}
@@ -143465,32 +112443,32 @@
"value": "",
"raw": "''",
"range": [
- 62962,
- 62964
+ 47999,
+ 48001
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 63
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 65
}
}
}
],
"range": [
- 62944,
- 62965
+ 47981,
+ 48002
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 45
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 66
}
}
@@ -143499,16 +112477,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 62967,
- 62975
+ 48004,
+ 48012
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 68
},
"end": {
- "line": 1690,
+ "line": 1345,
"column": 76
}
}
@@ -143518,16 +112496,16 @@
"value": false,
"raw": "false",
"range": [
- 63001,
- 63006
+ 48038,
+ 48043
],
"loc": {
"start": {
- "line": 1691,
+ "line": 1346,
"column": 24
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 29
}
}
@@ -143538,16 +112516,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 63008,
- 63012
+ 48045,
+ 48049
],
"loc": {
"start": {
- "line": 1691,
+ "line": 1346,
"column": 31
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 35
}
}
@@ -143556,93 +112534,93 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 63013,
- 63026
+ 48050,
+ 48063
],
"loc": {
"start": {
- "line": 1691,
+ "line": 1346,
"column": 36
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 49
}
}
},
"range": [
- 63008,
- 63026
+ 48045,
+ 48063
],
"loc": {
"start": {
- "line": 1691,
+ "line": 1346,
"column": 31
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 49
}
}
}
],
"range": [
- 62931,
- 63027
+ 47968,
+ 48064
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 32
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 50
}
}
},
"range": [
- 62919,
- 63027
+ 47956,
+ 48064
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 20
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 50
}
}
},
"range": [
- 62919,
- 63028
+ 47956,
+ 48065
],
"loc": {
"start": {
- "line": 1690,
+ "line": 1345,
"column": 20
},
"end": {
- "line": 1691,
+ "line": 1346,
"column": 51
}
}
}
],
"range": [
- 62897,
- 63046
+ 47934,
+ 48083
],
"loc": {
"start": {
- "line": 1689,
+ "line": 1344,
"column": 30
},
"end": {
- "line": 1692,
+ "line": 1347,
"column": 17
}
},
@@ -143651,16 +112629,16 @@
"type": "Line",
"value": "equal",
"range": [
- 63063,
- 63070
+ 48100,
+ 48107
],
"loc": {
"start": {
- "line": 1693,
+ "line": 1348,
"column": 16
},
"end": {
- "line": 1693,
+ "line": 1348,
"column": 23
}
}
@@ -143673,16 +112651,16 @@
"type": "Identifier",
"name": "hasEQ",
"range": [
- 63095,
- 63100
+ 48132,
+ 48137
],
"loc": {
"start": {
- "line": 1694,
+ "line": 1349,
"column": 24
},
"end": {
- "line": 1694,
+ "line": 1349,
"column": 29
}
}
@@ -143699,16 +112677,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 63123,
- 63132
+ 48160,
+ 48169
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 20
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 29
}
}
@@ -143722,16 +112700,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 63135,
- 63138
+ 48172,
+ 48175
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 32
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 35
}
}
@@ -143740,31 +112718,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 63139,
- 63147
+ 48176,
+ 48184
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 36
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 44
}
}
},
"range": [
- 63135,
- 63147
+ 48172,
+ 48184
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 32
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 44
}
}
@@ -143779,16 +112757,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 63148,
- 63150
+ 48185,
+ 48187
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 45
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 47
}
}
@@ -143797,31 +112775,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 63151,
- 63158
+ 48188,
+ 48195
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 48
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 55
}
}
},
"range": [
- 63148,
- 63158
+ 48185,
+ 48195
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 45
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 55
}
}
@@ -143831,16 +112809,16 @@
"type": "Identifier",
"name": "re_eq",
"range": [
- 63159,
- 63164
+ 48196,
+ 48201
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 56
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 61
}
}
@@ -143850,32 +112828,32 @@
"value": "",
"raw": "''",
"range": [
- 63166,
- 63168
+ 48203,
+ 48205
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 63
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 65
}
}
}
],
"range": [
- 63148,
- 63169
+ 48185,
+ 48206
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 45
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 66
}
}
@@ -143884,16 +112862,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63171,
- 63179
+ 48208,
+ 48216
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 68
},
"end": {
- "line": 1695,
+ "line": 1350,
"column": 76
}
}
@@ -143903,16 +112881,16 @@
"value": true,
"raw": "true",
"range": [
- 63205,
- 63209
+ 48242,
+ 48246
],
"loc": {
"start": {
- "line": 1696,
+ "line": 1351,
"column": 24
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 28
}
}
@@ -143923,16 +112901,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 63211,
- 63215
+ 48248,
+ 48252
],
"loc": {
"start": {
- "line": 1696,
+ "line": 1351,
"column": 30
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 34
}
}
@@ -143941,93 +112919,93 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 63216,
- 63229
+ 48253,
+ 48266
],
"loc": {
"start": {
- "line": 1696,
+ "line": 1351,
"column": 35
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 48
}
}
},
"range": [
- 63211,
- 63229
+ 48248,
+ 48266
],
"loc": {
"start": {
- "line": 1696,
+ "line": 1351,
"column": 30
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 48
}
}
}
],
"range": [
- 63135,
- 63230
+ 48172,
+ 48267
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 32
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 49
}
}
},
"range": [
- 63123,
- 63230
+ 48160,
+ 48267
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 20
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 49
}
}
},
"range": [
- 63123,
- 63231
+ 48160,
+ 48268
],
"loc": {
"start": {
- "line": 1695,
+ "line": 1350,
"column": 20
},
"end": {
- "line": 1696,
+ "line": 1351,
"column": 50
}
}
}
],
"range": [
- 63101,
- 63249
+ 48138,
+ 48286
],
"loc": {
"start": {
- "line": 1694,
+ "line": 1349,
"column": 30
},
"end": {
- "line": 1697,
+ "line": 1352,
"column": 17
}
},
@@ -144036,16 +113014,16 @@
"type": "Line",
"value": "starts with",
"range": [
- 63266,
- 63279
+ 48303,
+ 48316
],
"loc": {
"start": {
- "line": 1698,
+ "line": 1353,
"column": 16
},
"end": {
- "line": 1698,
+ "line": 1353,
"column": 29
}
}
@@ -144058,16 +113036,16 @@
"type": "Identifier",
"name": "hasST",
"range": [
- 63304,
- 63309
+ 48341,
+ 48346
],
"loc": {
"start": {
- "line": 1699,
+ "line": 1354,
"column": 24
},
"end": {
- "line": 1699,
+ "line": 1354,
"column": 29
}
}
@@ -144084,16 +113062,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 63332,
- 63341
+ 48369,
+ 48378
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 20
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 29
}
}
@@ -144112,16 +113090,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63344,
- 63352
+ 48381,
+ 48389
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 32
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 40
}
}
@@ -144130,31 +113108,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 63353,
- 63360
+ 48390,
+ 48397
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 41
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 48
}
}
},
"range": [
- 63344,
- 63360
+ 48381,
+ 48397
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 32
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 48
}
}
@@ -144169,16 +113147,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 63361,
- 63363
+ 48398,
+ 48400
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 49
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 51
}
}
@@ -144187,31 +113165,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 63364,
- 63371
+ 48401,
+ 48408
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 52
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 59
}
}
},
"range": [
- 63361,
- 63371
+ 48398,
+ 48408
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 49
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 59
}
}
@@ -144221,16 +113199,16 @@
"type": "Identifier",
"name": "re_st",
"range": [
- 63372,
- 63377
+ 48409,
+ 48414
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 60
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 65
}
}
@@ -144240,48 +113218,48 @@
"value": "",
"raw": "''",
"range": [
- 63379,
- 63381
+ 48416,
+ 48418
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 67
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 69
}
}
}
],
"range": [
- 63361,
- 63382
+ 48398,
+ 48419
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 49
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 70
}
}
}
],
"range": [
- 63344,
- 63383
+ 48381,
+ 48420
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 32
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 71
}
}
@@ -144291,31 +113269,31 @@
"value": 0,
"raw": "0",
"range": [
- 63388,
- 63389
+ 48425,
+ 48426
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 76
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 77
}
}
},
"range": [
- 63344,
- 63389
+ 48381,
+ 48426
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 32
},
"end": {
- "line": 1700,
+ "line": 1355,
"column": 77
}
}
@@ -144325,16 +113303,16 @@
"value": true,
"raw": "true",
"range": [
- 63416,
- 63420
+ 48453,
+ 48457
],
"loc": {
"start": {
- "line": 1701,
+ "line": 1356,
"column": 24
},
"end": {
- "line": 1701,
+ "line": 1356,
"column": 28
}
}
@@ -144344,77 +113322,77 @@
"value": false,
"raw": "false",
"range": [
- 63423,
- 63428
+ 48460,
+ 48465
],
"loc": {
"start": {
- "line": 1701,
+ "line": 1356,
"column": 31
},
"end": {
- "line": 1701,
+ "line": 1356,
"column": 36
}
}
},
"range": [
- 63344,
- 63428
+ 48381,
+ 48465
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 32
},
"end": {
- "line": 1701,
+ "line": 1356,
"column": 36
}
}
},
"range": [
- 63332,
- 63428
+ 48369,
+ 48465
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 20
},
"end": {
- "line": 1701,
+ "line": 1356,
"column": 36
}
}
},
"range": [
- 63332,
- 63429
+ 48369,
+ 48466
],
"loc": {
"start": {
- "line": 1700,
+ "line": 1355,
"column": 20
},
"end": {
- "line": 1701,
+ "line": 1356,
"column": 37
}
}
}
],
"range": [
- 63310,
- 63447
+ 48347,
+ 48484
],
"loc": {
"start": {
- "line": 1699,
+ "line": 1354,
"column": 30
},
"end": {
- "line": 1702,
+ "line": 1357,
"column": 17
}
},
@@ -144423,16 +113401,16 @@
"type": "Line",
"value": "ends with",
"range": [
- 63464,
- 63475
+ 48501,
+ 48512
],
"loc": {
"start": {
- "line": 1703,
+ "line": 1358,
"column": 16
},
"end": {
- "line": 1703,
+ "line": 1358,
"column": 27
}
}
@@ -144445,16 +113423,16 @@
"type": "Identifier",
"name": "hasEN",
"range": [
- 63500,
- 63505
+ 48537,
+ 48542
],
"loc": {
"start": {
- "line": 1704,
+ "line": 1359,
"column": 24
},
"end": {
- "line": 1704,
+ "line": 1359,
"column": 29
}
}
@@ -144471,16 +113449,16 @@
"type": "Identifier",
"name": "searchArg",
"range": [
- 63532,
- 63541
+ 48569,
+ 48578
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 24
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 33
}
}
@@ -144494,16 +113472,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 63544,
- 63546
+ 48581,
+ 48583
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 36
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 38
}
}
@@ -144512,31 +113490,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 63547,
- 63554
+ 48584,
+ 48591
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 39
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 46
}
}
},
"range": [
- 63544,
- 63554
+ 48581,
+ 48591
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 36
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 46
}
}
@@ -144546,16 +113524,16 @@
"type": "Identifier",
"name": "re_en",
"range": [
- 63555,
- 63560
+ 48592,
+ 48597
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 47
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 52
}
}
@@ -144565,47 +113543,47 @@
"value": "",
"raw": "''",
"range": [
- 63562,
- 63564
+ 48599,
+ 48601
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 54
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 56
}
}
}
],
"range": [
- 63544,
- 63565
+ 48581,
+ 48602
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 36
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 57
}
}
},
"range": [
- 63532,
- 63565
+ 48569,
+ 48602
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 24
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 57
}
}
@@ -144613,16 +113591,16 @@
],
"kind": "let",
"range": [
- 63528,
- 63566
+ 48565,
+ 48603
],
"loc": {
"start": {
- "line": 1705,
+ "line": 1360,
"column": 20
},
"end": {
- "line": 1705,
+ "line": 1360,
"column": 58
}
}
@@ -144636,16 +113614,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 63587,
- 63596
+ 48624,
+ 48633
],
"loc": {
"start": {
- "line": 1706,
+ "line": 1361,
"column": 20
},
"end": {
- "line": 1706,
+ "line": 1361,
"column": 29
}
}
@@ -144667,16 +113645,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63623,
- 63631
+ 48660,
+ 48668
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 32
}
}
@@ -144685,31 +113663,31 @@
"type": "Identifier",
"name": "lastIndexOf",
"range": [
- 63632,
- 63643
+ 48669,
+ 48680
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 33
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 44
}
}
},
"range": [
- 63623,
- 63643
+ 48660,
+ 48680
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 44
}
}
@@ -144719,16 +113697,16 @@
"type": "Identifier",
"name": "searchArg",
"range": [
- 63644,
- 63653
+ 48681,
+ 48690
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 45
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 54
}
}
@@ -144743,16 +113721,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63655,
- 63663
+ 48692,
+ 48700
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 56
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 64
}
}
@@ -144761,31 +113739,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 63664,
- 63670
+ 48701,
+ 48707
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 65
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 71
}
}
},
"range": [
- 63655,
- 63670
+ 48692,
+ 48707
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 56
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 71
}
}
@@ -144795,47 +113773,47 @@
"value": 1,
"raw": "1",
"range": [
- 63671,
- 63672
+ 48708,
+ 48709
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 72
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 73
}
}
},
"range": [
- 63655,
- 63672
+ 48692,
+ 48709
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 56
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 73
}
}
}
],
"range": [
- 63623,
- 63673
+ 48660,
+ 48710
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1707,
+ "line": 1362,
"column": 74
}
}
@@ -144853,16 +113831,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63703,
- 63711
+ 48740,
+ 48748
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 25
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 33
}
}
@@ -144871,31 +113849,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 63712,
- 63718
+ 48749,
+ 48755
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 34
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 40
}
}
},
"range": [
- 63703,
- 63718
+ 48740,
+ 48755
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 25
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 40
}
}
@@ -144905,31 +113883,31 @@
"value": 1,
"raw": "1",
"range": [
- 63719,
- 63720
+ 48756,
+ 48757
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 41
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 42
}
}
},
"range": [
- 63703,
- 63720
+ 48740,
+ 48757
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 25
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 42
}
}
@@ -144944,16 +113922,16 @@
"type": "Identifier",
"name": "searchArg",
"range": [
- 63723,
- 63732
+ 48760,
+ 48769
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 45
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 54
}
}
@@ -144962,31 +113940,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 63733,
- 63739
+ 48770,
+ 48776
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 55
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 61
}
}
},
"range": [
- 63723,
- 63739
+ 48760,
+ 48776
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 45
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 61
}
}
@@ -144996,61 +113974,61 @@
"value": 1,
"raw": "1",
"range": [
- 63740,
- 63741
+ 48777,
+ 48778
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 62
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 63
}
}
},
"range": [
- 63723,
- 63741
+ 48760,
+ 48778
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 45
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 63
}
}
},
"range": [
- 63702,
- 63742
+ 48739,
+ 48779
],
"loc": {
"start": {
- "line": 1708,
+ "line": 1363,
"column": 24
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 64
}
}
},
"range": [
- 63623,
- 63742
+ 48660,
+ 48779
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1708,
+ "line": 1363,
"column": 64
}
}
@@ -145067,16 +114045,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63770,
- 63778
+ 48807,
+ 48815
],
"loc": {
"start": {
- "line": 1709,
+ "line": 1364,
"column": 24
},
"end": {
- "line": 1709,
+ "line": 1364,
"column": 32
}
}
@@ -145085,31 +114063,31 @@
"type": "Identifier",
"name": "lastIndexOf",
"range": [
- 63779,
- 63790
+ 48816,
+ 48827
],
"loc": {
"start": {
- "line": 1709,
+ "line": 1364,
"column": 33
},
"end": {
- "line": 1709,
+ "line": 1364,
"column": 44
}
}
},
"range": [
- 63770,
- 63790
+ 48807,
+ 48827
],
"loc": {
"start": {
- "line": 1709,
+ "line": 1364,
"column": 24
},
"end": {
- "line": 1709,
+ "line": 1364,
"column": 44
}
}
@@ -145119,16 +114097,16 @@
"type": "Identifier",
"name": "searchArg",
"range": [
- 63820,
- 63829
+ 48857,
+ 48866
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 28
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 37
}
}
@@ -145143,16 +114121,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63831,
- 63839
+ 48868,
+ 48876
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 39
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 47
}
}
@@ -145161,31 +114139,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 63840,
- 63846
+ 48877,
+ 48883
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 48
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 54
}
}
},
"range": [
- 63831,
- 63846
+ 48868,
+ 48883
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 39
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 54
}
}
@@ -145195,47 +114173,47 @@
"value": 1,
"raw": "1",
"range": [
- 63847,
- 63848
+ 48884,
+ 48885
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 55
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 56
}
}
},
"range": [
- 63831,
- 63848
+ 48868,
+ 48885
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 39
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 56
}
}
}
],
"range": [
- 63770,
- 63849
+ 48807,
+ 48886
],
"loc": {
"start": {
- "line": 1709,
+ "line": 1364,
"column": 24
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 57
}
}
@@ -145248,62 +114226,62 @@
"value": 1,
"raw": "1",
"range": [
- 63853,
- 63854
+ 48890,
+ 48891
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 61
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 62
}
}
},
"prefix": true,
"range": [
- 63852,
- 63854
+ 48889,
+ 48891
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 60
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 62
}
}
},
"range": [
- 63770,
- 63854
+ 48807,
+ 48891
],
"loc": {
"start": {
- "line": 1709,
+ "line": 1364,
"column": 24
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 62
}
}
},
"range": [
- 63623,
- 63854
+ 48660,
+ 48891
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 62
}
}
@@ -145313,16 +114291,16 @@
"value": true,
"raw": "true",
"range": [
- 63857,
- 63861
+ 48894,
+ 48898
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 65
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 69
}
}
@@ -145332,77 +114310,77 @@
"value": false,
"raw": "false",
"range": [
- 63864,
- 63869
+ 48901,
+ 48906
],
"loc": {
"start": {
- "line": 1710,
+ "line": 1365,
"column": 72
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 77
}
}
},
"range": [
- 63623,
- 63869
+ 48660,
+ 48906
],
"loc": {
"start": {
- "line": 1707,
+ "line": 1362,
"column": 24
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 77
}
}
},
"range": [
- 63587,
- 63869
+ 48624,
+ 48906
],
"loc": {
"start": {
- "line": 1706,
+ "line": 1361,
"column": 20
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 77
}
}
},
"range": [
- 63587,
- 63870
+ 48624,
+ 48907
],
"loc": {
"start": {
- "line": 1706,
+ "line": 1361,
"column": 20
},
"end": {
- "line": 1710,
+ "line": 1365,
"column": 78
}
}
}
],
"range": [
- 63506,
- 63888
+ 48543,
+ 48925
],
"loc": {
"start": {
- "line": 1704,
+ "line": 1359,
"column": 30
},
"end": {
- "line": 1711,
+ "line": 1366,
"column": 17
}
},
@@ -145411,16 +114389,16 @@
"type": "Line",
"value": "empty",
"range": [
- 63905,
- 63912
+ 48942,
+ 48949
],
"loc": {
"start": {
- "line": 1712,
+ "line": 1367,
"column": 16
},
"end": {
- "line": 1712,
+ "line": 1367,
"column": 23
}
}
@@ -145433,16 +114411,16 @@
"type": "Identifier",
"name": "hasEM",
"range": [
- 63937,
- 63942
+ 48974,
+ 48979
],
"loc": {
"start": {
- "line": 1713,
+ "line": 1368,
"column": 24
},
"end": {
- "line": 1713,
+ "line": 1368,
"column": 29
}
}
@@ -145459,16 +114437,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 63965,
- 63974
+ 49002,
+ 49011
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 20
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 29
}
}
@@ -145482,16 +114460,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 63977,
- 63980
+ 49014,
+ 49017
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 32
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 35
}
}
@@ -145500,31 +114478,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 63981,
- 63988
+ 49018,
+ 49025
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 36
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 43
}
}
},
"range": [
- 63977,
- 63988
+ 49014,
+ 49025
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 32
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 43
}
}
@@ -145534,78 +114512,78 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 63989,
- 63997
+ 49026,
+ 49034
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 44
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 52
}
}
}
],
"range": [
- 63977,
- 63998
+ 49014,
+ 49035
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 32
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 53
}
}
},
"range": [
- 63965,
- 63998
+ 49002,
+ 49035
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 20
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 53
}
}
},
"range": [
- 63965,
- 63999
+ 49002,
+ 49036
],
"loc": {
"start": {
- "line": 1714,
+ "line": 1369,
"column": 20
},
"end": {
- "line": 1714,
+ "line": 1369,
"column": 54
}
}
}
],
"range": [
- 63943,
- 64017
+ 48980,
+ 49054
],
"loc": {
"start": {
- "line": 1713,
+ "line": 1368,
"column": 30
},
"end": {
- "line": 1715,
+ "line": 1370,
"column": 17
}
},
@@ -145614,16 +114592,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 64034,
- 64045
+ 49071,
+ 49082
],
"loc": {
"start": {
- "line": 1716,
+ "line": 1371,
"column": 16
},
"end": {
- "line": 1716,
+ "line": 1371,
"column": 27
}
}
@@ -145636,16 +114614,16 @@
"type": "Identifier",
"name": "hasNM",
"range": [
- 64070,
- 64075
+ 49107,
+ 49112
],
"loc": {
"start": {
- "line": 1717,
+ "line": 1372,
"column": 24
},
"end": {
- "line": 1717,
+ "line": 1372,
"column": 29
}
}
@@ -145662,16 +114640,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 64098,
- 64107
+ 49135,
+ 49144
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 20
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 29
}
}
@@ -145688,16 +114666,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 64111,
- 64114
+ 49148,
+ 49151
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 33
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 36
}
}
@@ -145706,31 +114684,31 @@
"type": "Identifier",
"name": "isEmpty",
"range": [
- 64115,
- 64122
+ 49152,
+ 49159
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 37
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 44
}
}
},
"range": [
- 64111,
- 64122
+ 49148,
+ 49159
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 33
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 44
}
}
@@ -145740,94 +114718,94 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 64123,
- 64131
+ 49160,
+ 49168
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 45
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 53
}
}
}
],
"range": [
- 64111,
- 64132
+ 49148,
+ 49169
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 33
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 54
}
}
},
"prefix": true,
"range": [
- 64110,
- 64132
+ 49147,
+ 49169
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 32
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 54
}
}
},
"range": [
- 64098,
- 64132
+ 49135,
+ 49169
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 20
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 54
}
}
},
"range": [
- 64098,
- 64133
+ 49135,
+ 49170
],
"loc": {
"start": {
- "line": 1718,
+ "line": 1373,
"column": 20
},
"end": {
- "line": 1718,
+ "line": 1373,
"column": 55
}
}
}
],
"range": [
- 64076,
- 64151
+ 49113,
+ 49188
],
"loc": {
"start": {
- "line": 1717,
+ "line": 1372,
"column": 30
},
"end": {
- "line": 1719,
+ "line": 1374,
"column": 17
}
},
@@ -145836,16 +114814,16 @@
"type": "Line",
"value": "regexp",
"range": [
- 64168,
- 64176
+ 49205,
+ 49213
],
"loc": {
"start": {
- "line": 1720,
+ "line": 1375,
"column": 16
},
"end": {
- "line": 1720,
+ "line": 1375,
"column": 24
}
}
@@ -145858,16 +114836,16 @@
"type": "Identifier",
"name": "hasRE",
"range": [
- 64201,
- 64206
+ 49238,
+ 49243
],
"loc": {
"start": {
- "line": 1721,
+ "line": 1376,
"column": 24
},
"end": {
- "line": 1721,
+ "line": 1376,
"column": 29
}
}
@@ -145889,16 +114867,16 @@
"type": "Identifier",
"name": "srchArg",
"range": [
- 64364,
- 64371
+ 49401,
+ 49408
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 28
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 35
}
}
@@ -145912,16 +114890,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 64374,
- 64376
+ 49411,
+ 49413
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 38
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 40
}
}
@@ -145930,31 +114908,31 @@
"type": "Identifier",
"name": "replace",
"range": [
- 64377,
- 64384
+ 49414,
+ 49421
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 41
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 48
}
}
},
"range": [
- 64374,
- 64384
+ 49411,
+ 49421
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 38
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 48
}
}
@@ -145964,16 +114942,16 @@
"type": "Identifier",
"name": "re_re",
"range": [
- 64385,
- 64390
+ 49422,
+ 49427
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 49
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 54
}
}
@@ -145983,47 +114961,47 @@
"value": "",
"raw": "''",
"range": [
- 64391,
- 64393
+ 49428,
+ 49430
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 55
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 57
}
}
}
],
"range": [
- 64374,
- 64394
+ 49411,
+ 49431
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 38
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 58
}
}
},
"range": [
- 64364,
- 64394
+ 49401,
+ 49431
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 28
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 58
}
}
@@ -146031,16 +115009,16 @@
],
"kind": "let",
"range": [
- 64360,
- 64395
+ 49397,
+ 49432
],
"loc": {
"start": {
- "line": 1725,
+ "line": 1380,
"column": 24
},
"end": {
- "line": 1725,
+ "line": 1380,
"column": 59
}
},
@@ -146049,16 +115027,16 @@
"type": "Line",
"value": "in case regexp fires an exception",
"range": [
- 64229,
- 64264
+ 49266,
+ 49301
],
"loc": {
"start": {
- "line": 1722,
+ "line": 1377,
"column": 20
},
"end": {
- "line": 1722,
+ "line": 1377,
"column": 55
}
}
@@ -146067,16 +115045,16 @@
"type": "Line",
"value": "operator is removed",
"range": [
- 64314,
- 64335
+ 49351,
+ 49372
],
"loc": {
"start": {
- "line": 1724,
+ "line": 1379,
"column": 24
},
"end": {
- "line": 1724,
+ "line": 1379,
"column": 45
}
}
@@ -146092,16 +115070,16 @@
"type": "Identifier",
"name": "rgx",
"range": [
- 64424,
- 64427
+ 49461,
+ 49464
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 28
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 31
}
}
@@ -146112,16 +115090,16 @@
"type": "Identifier",
"name": "RegExp",
"range": [
- 64434,
- 64440
+ 49471,
+ 49477
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 38
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 44
}
}
@@ -146131,47 +115109,47 @@
"type": "Identifier",
"name": "srchArg",
"range": [
- 64441,
- 64448
+ 49478,
+ 49485
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 45
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 52
}
}
}
],
"range": [
- 64430,
- 64449
+ 49467,
+ 49486
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 34
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 53
}
}
},
"range": [
- 64424,
- 64449
+ 49461,
+ 49486
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 28
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 53
}
}
@@ -146179,16 +115157,16 @@
],
"kind": "let",
"range": [
- 64420,
- 64450
+ 49457,
+ 49487
],
"loc": {
"start": {
- "line": 1726,
+ "line": 1381,
"column": 24
},
"end": {
- "line": 1726,
+ "line": 1381,
"column": 54
}
}
@@ -146202,16 +115180,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 64475,
- 64484
+ 49512,
+ 49521
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 24
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 33
}
}
@@ -146225,16 +115203,16 @@
"type": "Identifier",
"name": "rgx",
"range": [
- 64487,
- 64490
+ 49524,
+ 49527
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 36
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 39
}
}
@@ -146243,31 +115221,31 @@
"type": "Identifier",
"name": "test",
"range": [
- 64491,
- 64495
+ 49528,
+ 49532
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 40
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 44
}
}
},
"range": [
- 64487,
- 64495
+ 49524,
+ 49532
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 36
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 44
}
}
@@ -146277,78 +115255,78 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 64496,
- 64504
+ 49533,
+ 49541
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 45
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 53
}
}
}
],
"range": [
- 64487,
- 64505
+ 49524,
+ 49542
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 36
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 54
}
}
},
"range": [
- 64475,
- 64505
+ 49512,
+ 49542
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 24
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 54
}
}
},
"range": [
- 64475,
- 64506
+ 49512,
+ 49543
],
"loc": {
"start": {
- "line": 1727,
+ "line": 1382,
"column": 24
},
"end": {
- "line": 1727,
+ "line": 1382,
"column": 55
}
}
}
],
"range": [
- 64288,
- 64528
+ 49325,
+ 49565
],
"loc": {
"start": {
- "line": 1723,
+ "line": 1378,
"column": 23
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 21
}
}
@@ -146359,16 +115337,16 @@
"type": "Identifier",
"name": "e",
"range": [
- 64535,
- 64536
+ 49572,
+ 49573
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 28
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 29
}
}
@@ -146385,16 +115363,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 64540,
- 64549
+ 49577,
+ 49586
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 33
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 42
}
}
@@ -146404,109 +115382,109 @@
"value": false,
"raw": "false",
"range": [
- 64552,
- 64557
+ 49589,
+ 49594
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 45
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 50
}
}
},
"range": [
- 64540,
- 64557
+ 49577,
+ 49594
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 33
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 50
}
}
},
"range": [
- 64540,
- 64558
+ 49577,
+ 49595
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 33
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 51
}
}
}
],
"range": [
- 64538,
- 64560
+ 49575,
+ 49597
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 31
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 53
}
}
},
"range": [
- 64529,
- 64560
+ 49566,
+ 49597
],
"loc": {
"start": {
- "line": 1728,
+ "line": 1383,
"column": 22
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 53
}
}
},
"finalizer": null,
"range": [
- 64285,
- 64560
+ 49322,
+ 49597
],
"loc": {
"start": {
- "line": 1723,
+ "line": 1378,
"column": 20
},
"end": {
- "line": 1728,
+ "line": 1383,
"column": 53
}
}
}
],
"range": [
- 64207,
- 64578
+ 49244,
+ 49615
],
"loc": {
"start": {
- "line": 1721,
+ "line": 1376,
"column": 30
},
"end": {
- "line": 1729,
+ "line": 1384,
"column": 17
}
}
@@ -146523,16 +115501,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 64606,
- 64615
+ 49643,
+ 49652
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 20
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 29
}
}
@@ -146546,16 +115524,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 64618,
- 64621
+ 49655,
+ 49658
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 32
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 35
}
}
@@ -146564,31 +115542,31 @@
"type": "Identifier",
"name": "contains",
"range": [
- 64622,
- 64630
+ 49659,
+ 49667
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 36
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 44
}
}
},
"range": [
- 64618,
- 64630
+ 49655,
+ 49667
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 32
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 44
}
}
@@ -146598,16 +115576,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 64631,
- 64633
+ 49668,
+ 49670
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 45
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 47
}
}
@@ -146616,16 +115594,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 64635,
- 64643
+ 49672,
+ 49680
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 49
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 57
}
}
@@ -146638,16 +115616,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 64645,
- 64649
+ 49682,
+ 49686
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 59
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 63
}
}
@@ -146656,31 +115634,31 @@
"type": "Identifier",
"name": "isExactMatch",
"range": [
- 64650,
- 64662
+ 49687,
+ 49699
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 64
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 76
}
}
},
"range": [
- 64645,
- 64662
+ 49682,
+ 49699
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 59
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 76
}
}
@@ -146690,32 +115668,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 64663,
- 64664
+ 49700,
+ 49701
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 77
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 78
}
}
}
],
"range": [
- 64645,
- 64665
+ 49682,
+ 49702
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 59
},
"end": {
- "line": 1730,
+ "line": 1385,
"column": 79
}
}
@@ -146726,16 +115704,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 64691,
- 64695
+ 49728,
+ 49732
],
"loc": {
"start": {
- "line": 1731,
+ "line": 1386,
"column": 24
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 28
}
}
@@ -146744,108 +115722,108 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 64696,
- 64709
+ 49733,
+ 49746
],
"loc": {
"start": {
- "line": 1731,
+ "line": 1386,
"column": 29
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 42
}
}
},
"range": [
- 64691,
- 64709
+ 49728,
+ 49746
],
"loc": {
"start": {
- "line": 1731,
+ "line": 1386,
"column": 24
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 42
}
}
}
],
"range": [
- 64618,
- 64710
+ 49655,
+ 49747
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 32
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 43
}
}
},
"range": [
- 64606,
- 64710
+ 49643,
+ 49747
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 20
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 43
}
}
},
"range": [
- 64606,
- 64711
+ 49643,
+ 49748
],
"loc": {
"start": {
- "line": 1730,
+ "line": 1385,
"column": 20
},
"end": {
- "line": 1731,
+ "line": 1386,
"column": 44
}
}
}
],
"range": [
- 64584,
- 64729
+ 49621,
+ 49766
],
"loc": {
"start": {
- "line": 1729,
+ "line": 1384,
"column": 23
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
}
},
"range": [
- 64198,
- 64729
+ 49235,
+ 49766
],
"loc": {
"start": {
- "line": 1721,
+ "line": 1376,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -146854,16 +115832,16 @@
"type": "Line",
"value": "regexp",
"range": [
- 64168,
- 64176
+ 49205,
+ 49213
],
"loc": {
"start": {
- "line": 1720,
+ "line": 1375,
"column": 16
},
"end": {
- "line": 1720,
+ "line": 1375,
"column": 24
}
}
@@ -146871,16 +115849,16 @@
]
},
"range": [
- 64067,
- 64729
+ 49104,
+ 49766
],
"loc": {
"start": {
- "line": 1717,
+ "line": 1372,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -146889,16 +115867,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 64034,
- 64045
+ 49071,
+ 49082
],
"loc": {
"start": {
- "line": 1716,
+ "line": 1371,
"column": 16
},
"end": {
- "line": 1716,
+ "line": 1371,
"column": 27
}
}
@@ -146906,16 +115884,16 @@
]
},
"range": [
- 63934,
- 64729
+ 48971,
+ 49766
],
"loc": {
"start": {
- "line": 1713,
+ "line": 1368,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -146924,16 +115902,16 @@
"type": "Line",
"value": "empty",
"range": [
- 63905,
- 63912
+ 48942,
+ 48949
],
"loc": {
"start": {
- "line": 1712,
+ "line": 1367,
"column": 16
},
"end": {
- "line": 1712,
+ "line": 1367,
"column": 23
}
}
@@ -146941,16 +115919,16 @@
]
},
"range": [
- 63497,
- 64729
+ 48534,
+ 49766
],
"loc": {
"start": {
- "line": 1704,
+ "line": 1359,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -146959,16 +115937,16 @@
"type": "Line",
"value": "ends with",
"range": [
- 63464,
- 63475
+ 48501,
+ 48512
],
"loc": {
"start": {
- "line": 1703,
+ "line": 1358,
"column": 16
},
"end": {
- "line": 1703,
+ "line": 1358,
"column": 27
}
}
@@ -146976,16 +115954,16 @@
]
},
"range": [
- 63301,
- 64729
+ 48338,
+ 49766
],
"loc": {
"start": {
- "line": 1699,
+ "line": 1354,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -146994,16 +115972,16 @@
"type": "Line",
"value": "starts with",
"range": [
- 63266,
- 63279
+ 48303,
+ 48316
],
"loc": {
"start": {
- "line": 1698,
+ "line": 1353,
"column": 16
},
"end": {
- "line": 1698,
+ "line": 1353,
"column": 29
}
}
@@ -147011,16 +115989,16 @@
]
},
"range": [
- 63092,
- 64729
+ 48129,
+ 49766
],
"loc": {
"start": {
- "line": 1694,
+ "line": 1349,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147029,16 +116007,16 @@
"type": "Line",
"value": "equal",
"range": [
- 63063,
- 63070
+ 48100,
+ 48107
],
"loc": {
"start": {
- "line": 1693,
+ "line": 1348,
"column": 16
},
"end": {
- "line": 1693,
+ "line": 1348,
"column": 23
}
}
@@ -147046,16 +116024,16 @@
]
},
"range": [
- 62888,
- 64729
+ 47925,
+ 49766
],
"loc": {
"start": {
- "line": 1689,
+ "line": 1344,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147064,16 +116042,16 @@
"type": "Line",
"value": "like",
"range": [
- 62860,
- 62866
+ 47897,
+ 47903
],
"loc": {
"start": {
- "line": 1688,
+ "line": 1343,
"column": 16
},
"end": {
- "line": 1688,
+ "line": 1343,
"column": 22
}
}
@@ -147081,16 +116059,16 @@
]
},
"range": [
- 62671,
- 64729
+ 47708,
+ 49766
],
"loc": {
"start": {
- "line": 1684,
+ "line": 1339,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147099,16 +116077,16 @@
"type": "Line",
"value": "different",
"range": [
- 62638,
- 62649
+ 47675,
+ 47686
],
"loc": {
"start": {
- "line": 1683,
+ "line": 1338,
"column": 16
},
"end": {
- "line": 1683,
+ "line": 1338,
"column": 27
}
}
@@ -147116,16 +116094,16 @@
]
},
"range": [
- 62474,
- 64729
+ 47511,
+ 49766
],
"loc": {
"start": {
- "line": 1679,
+ "line": 1334,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147134,16 +116112,16 @@
"type": "Line",
"value": "greater",
"range": [
- 62443,
- 62452
+ 47480,
+ 47489
],
"loc": {
"start": {
- "line": 1678,
+ "line": 1333,
"column": 16
},
"end": {
- "line": 1678,
+ "line": 1333,
"column": 25
}
}
@@ -147151,16 +116129,16 @@
]
},
"range": [
- 62279,
- 64729
+ 47316,
+ 49766
],
"loc": {
"start": {
- "line": 1674,
+ "line": 1329,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147169,16 +116147,16 @@
"type": "Line",
"value": "lower",
"range": [
- 62250,
- 62257
+ 47287,
+ 47294
],
"loc": {
"start": {
- "line": 1673,
+ "line": 1328,
"column": 16
},
"end": {
- "line": 1673,
+ "line": 1328,
"column": 23
}
}
@@ -147186,16 +116164,16 @@
]
},
"range": [
- 62084,
- 64729
+ 47121,
+ 49766
],
"loc": {
"start": {
- "line": 1669,
+ "line": 1324,
"column": 21
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147204,16 +116182,16 @@
"type": "Line",
"value": "greater equal",
"range": [
- 62047,
- 62062
+ 47084,
+ 47099
],
"loc": {
"start": {
- "line": 1668,
+ "line": 1323,
"column": 16
},
"end": {
- "line": 1668,
+ "line": 1323,
"column": 31
}
}
@@ -147221,16 +116199,16 @@
]
},
"range": [
- 61881,
- 64729
+ 46918,
+ 49766
],
"loc": {
"start": {
- "line": 1664,
+ "line": 1319,
"column": 16
},
"end": {
- "line": 1732,
+ "line": 1387,
"column": 17
}
},
@@ -147239,16 +116217,16 @@
"type": "Line",
"value": " first checks if there is any operator (<,>,<=,>=,!,*,=,{,},",
"range": [
- 61746,
- 61808
+ 46783,
+ 46845
],
"loc": {
"start": {
- "line": 1661,
+ "line": 1316,
"column": 16
},
"end": {
- "line": 1661,
+ "line": 1316,
"column": 78
}
}
@@ -147257,16 +116235,16 @@
"type": "Line",
"value": " rgx:)",
"range": [
- 61825,
- 61833
+ 46862,
+ 46870
],
"loc": {
"start": {
- "line": 1662,
+ "line": 1317,
"column": 16
},
"end": {
- "line": 1662,
+ "line": 1317,
"column": 24
}
}
@@ -147275,16 +116253,16 @@
"type": "Line",
"value": " lower equal",
"range": [
- 61850,
- 61864
+ 46887,
+ 46901
],
"loc": {
"start": {
- "line": 1663,
+ "line": 1318,
"column": 16
},
"end": {
- "line": 1663,
+ "line": 1318,
"column": 30
}
}
@@ -147293,31 +116271,31 @@
}
],
"range": [
- 61023,
- 64744
+ 46060,
+ 49781
],
"loc": {
"start": {
- "line": 1644,
+ "line": 1299,
"column": 16
},
"end": {
- "line": 1734,
+ "line": 1389,
"column": 13
}
}
},
"range": [
- 58716,
- 64744
+ 43753,
+ 49781
],
"loc": {
"start": {
- "line": 1590,
+ "line": 1245,
"column": 12
},
"end": {
- "line": 1734,
+ "line": 1389,
"column": 13
}
},
@@ -147326,16 +116304,16 @@
"type": "Line",
"value": "dates",
"range": [
- 58696,
- 58703
+ 43733,
+ 43740
],
"loc": {
"start": {
- "line": 1589,
+ "line": 1244,
"column": 12
},
"end": {
- "line": 1589,
+ "line": 1244,
"column": 19
}
}
@@ -147346,16 +116324,16 @@
"type": "Line",
"value": "else",
"range": [
- 64744,
- 64750
+ 49781,
+ 49787
],
"loc": {
"start": {
- "line": 1734,
+ "line": 1389,
"column": 13
},
"end": {
- "line": 1734,
+ "line": 1389,
"column": 19
}
}
@@ -147368,31 +116346,31 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 64770,
- 64779
+ 49807,
+ 49816
],
"loc": {
"start": {
- "line": 1735,
+ "line": 1390,
"column": 19
},
"end": {
- "line": 1735,
+ "line": 1390,
"column": 28
}
}
},
"range": [
- 64763,
- 64780
+ 49800,
+ 49817
],
"loc": {
"start": {
- "line": 1735,
+ "line": 1390,
"column": 12
},
"end": {
- "line": 1735,
+ "line": 1390,
"column": 29
}
},
@@ -147401,16 +116379,16 @@
"type": "Line",
"value": "else",
"range": [
- 64744,
- 64750
+ 49781,
+ 49787
],
"loc": {
"start": {
- "line": 1734,
+ "line": 1389,
"column": 13
},
"end": {
- "line": 1734,
+ "line": 1389,
"column": 19
}
}
@@ -147419,16 +116397,16 @@
}
],
"range": [
- 57324,
- 64790
+ 42304,
+ 49827
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 40
},
"end": {
- "line": 1736,
+ "line": 1391,
"column": 9
}
}
@@ -147436,16 +116414,16 @@
"generator": false,
"expression": false,
"range": [
- 57292,
- 64790
+ 42272,
+ 49827
],
"loc": {
"start": {
- "line": 1554,
+ "line": 1207,
"column": 8
},
"end": {
- "line": 1736,
+ "line": 1391,
"column": 9
}
},
@@ -147454,16 +116432,16 @@
"type": "Line",
"value": "looks for search argument in current row",
"range": [
- 57241,
- 57283
+ 42221,
+ 42263
],
"loc": {
"start": {
- "line": 1553,
+ "line": 1206,
"column": 8
},
"end": {
- "line": 1553,
+ "line": 1206,
"column": 50
}
}
@@ -147474,16 +116452,16 @@
"type": "Line",
"value": "fn",
"range": [
- 64790,
- 64794
+ 49827,
+ 49831
],
"loc": {
"start": {
- "line": 1736,
+ "line": 1391,
"column": 9
},
"end": {
- "line": 1736,
+ "line": 1391,
"column": 13
}
}
@@ -147501,16 +116479,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 64812,
- 64813
+ 49849,
+ 49850
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 16
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 17
}
}
@@ -147521,16 +116499,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 64814,
- 64818
+ 49851,
+ 49855
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 18
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 22
}
}
@@ -147539,46 +116517,46 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 64819,
- 64825
+ 49856,
+ 49862
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 23
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 29
}
}
},
"range": [
- 64814,
- 64825
+ 49851,
+ 49862
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 18
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 29
}
}
},
"range": [
- 64812,
- 64825
+ 49849,
+ 49862
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 16
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 29
}
}
@@ -147586,16 +116564,16 @@
],
"kind": "let",
"range": [
- 64808,
- 64825
+ 49845,
+ 49862
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 12
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 29
}
}
@@ -147607,16 +116585,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 64827,
- 64828
+ 49864,
+ 49865
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 31
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 32
}
}
@@ -147627,16 +116605,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 64829,
- 64833
+ 49866,
+ 49870
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 33
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 37
}
}
@@ -147645,46 +116623,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 64834,
- 64840
+ 49871,
+ 49877
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 38
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 44
}
}
},
"range": [
- 64829,
- 64840
+ 49866,
+ 49877
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 33
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 44
}
}
},
"range": [
- 64827,
- 64840
+ 49864,
+ 49877
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 31
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 44
}
}
@@ -147696,32 +116674,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 64842,
- 64843
+ 49879,
+ 49880
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 46
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 47
}
}
},
"prefix": false,
"range": [
- 64842,
- 64845
+ 49879,
+ 49882
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 46
},
"end": {
- "line": 1738,
+ "line": 1393,
"column": 49
}
}
@@ -147730,10 +116708,10 @@
"type": "BlockStatement",
"body": [
{
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
"left": {
"type": "MemberExpression",
"computed": false,
@@ -147747,17 +116725,17 @@
"type": "Identifier",
"name": "row",
"range": [
- 64937,
- 64940
+ 49950,
+ 49953
],
"loc": {
"start": {
- "line": 1740,
- "column": 15
+ "line": 1395,
+ "column": 12
},
"end": {
- "line": 1740,
- "column": 18
+ "line": 1395,
+ "column": 15
}
}
},
@@ -147765,32 +116743,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 64941,
- 64942
+ 49954,
+ 49955
],
"loc": {
"start": {
- "line": 1740,
- "column": 19
+ "line": 1395,
+ "column": 16
},
"end": {
- "line": 1740,
- "column": 20
+ "line": 1395,
+ "column": 17
}
}
},
"range": [
- 64937,
- 64943
+ 49950,
+ 49956
],
"loc": {
"start": {
- "line": 1740,
- "column": 15
+ "line": 1395,
+ "column": 12
},
"end": {
- "line": 1740,
- "column": 21
+ "line": 1395,
+ "column": 18
}
}
},
@@ -147798,32 +116776,32 @@
"type": "Identifier",
"name": "style",
"range": [
- 64944,
- 64949
+ 49957,
+ 49962
],
"loc": {
"start": {
- "line": 1740,
- "column": 22
+ "line": 1395,
+ "column": 19
},
"end": {
- "line": 1740,
- "column": 27
+ "line": 1395,
+ "column": 24
}
}
},
"range": [
- 64937,
- 64949
+ 49950,
+ 49962
],
"loc": {
"start": {
- "line": 1740,
- "column": 15
+ "line": 1395,
+ "column": 12
},
"end": {
- "line": 1740,
- "column": 27
+ "line": 1395,
+ "column": 24
}
}
},
@@ -147831,299 +116809,99 @@
"type": "Identifier",
"name": "display",
"range": [
- 64950,
- 64957
+ 49963,
+ 49970
],
"loc": {
"start": {
- "line": 1740,
- "column": 28
+ "line": 1395,
+ "column": 25
},
"end": {
- "line": 1740,
- "column": 35
+ "line": 1395,
+ "column": 32
}
}
},
"range": [
- 64937,
- 64957
+ 49950,
+ 49970
],
"loc": {
"start": {
- "line": 1740,
- "column": 15
+ "line": 1395,
+ "column": 12
},
"end": {
- "line": 1740,
- "column": 35
+ "line": 1395,
+ "column": 32
}
}
},
"right": {
"type": "Literal",
- "value": "none",
- "raw": "'none'",
+ "value": "",
+ "raw": "''",
"range": [
- 64962,
- 64968
+ 49973,
+ 49975
],
"loc": {
"start": {
- "line": 1740,
- "column": 40
+ "line": 1395,
+ "column": 35
},
"end": {
- "line": 1740,
- "column": 46
+ "line": 1395,
+ "column": 37
}
}
},
"range": [
- 64937,
- 64968
+ 49950,
+ 49975
],
"loc": {
"start": {
- "line": 1740,
- "column": 15
+ "line": 1395,
+ "column": 12
},
"end": {
- "line": 1740,
- "column": 46
+ "line": 1395,
+ "column": 37
}
}
},
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "row",
- "range": [
- 64987,
- 64990
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "k",
- "range": [
- 64991,
- 64992
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 20
- },
- "end": {
- "line": 1741,
- "column": 21
- }
- }
- },
- "range": [
- 64987,
- 64993
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "style",
- "range": [
- 64994,
- 64999
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 23
- },
- "end": {
- "line": 1741,
- "column": 28
- }
- }
- },
- "range": [
- 64987,
- 64999
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "display",
- "range": [
- 65000,
- 65007
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 29
- },
- "end": {
- "line": 1741,
- "column": 36
- }
- }
- },
- "range": [
- 64987,
- 65007
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 65010,
- 65012
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 39
- },
- "end": {
- "line": 1741,
- "column": 41
- }
- }
- },
- "range": [
- 64987,
- 65012
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 41
- }
- }
- },
- "range": [
- 64987,
- 65013
- ],
- "loc": {
- "start": {
- "line": 1741,
- "column": 16
- },
- "end": {
- "line": 1741,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 64969,
- 65027
- ],
- "loc": {
- "start": {
- "line": 1740,
- "column": 47
- },
- "end": {
- "line": 1742,
- "column": 13
- }
- }
- },
- "alternate": null,
"range": [
- 64934,
- 65027
+ 49950,
+ 49976
],
"loc": {
"start": {
- "line": 1740,
+ "line": 1395,
"column": 12
},
"end": {
- "line": 1742,
- "column": 13
+ "line": 1395,
+ "column": 38
}
},
"leadingComments": [
{
- "type": "Block",
- "value": "** if table already filtered some rows are not visible **",
+ "type": "Line",
+ "value": " already filtered rows display re-init",
"range": [
- 64860,
- 64921
+ 49897,
+ 49937
],
"loc": {
"start": {
- "line": 1739,
+ "line": 1394,
"column": 12
},
"end": {
- "line": 1739,
- "column": 73
+ "line": 1394,
+ "column": 52
}
}
}
@@ -148138,16 +116916,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 65045,
- 65049
+ 49994,
+ 49998
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 16
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 20
}
}
@@ -148162,16 +116940,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 65052,
- 65055
+ 50001,
+ 50004
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 23
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 26
}
}
@@ -148180,31 +116958,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 65056,
- 65057
+ 50005,
+ 50006
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 27
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 28
}
}
},
"range": [
- 65052,
- 65058
+ 50001,
+ 50007
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 23
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 29
}
}
@@ -148213,46 +116991,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 65059,
- 65064
+ 50008,
+ 50013
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 30
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 35
}
}
},
"range": [
- 65052,
- 65064
+ 50001,
+ 50013
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 23
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 35
}
}
},
"range": [
- 65045,
- 65064
+ 49994,
+ 50013
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 16
},
"end": {
- "line": 1744,
+ "line": 1397,
"column": 35
}
}
@@ -148263,16 +117041,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 65082,
- 65089
+ 50031,
+ 50038
],
"loc": {
"start": {
- "line": 1745,
+ "line": 1398,
"column": 16
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 23
}
}
@@ -148284,16 +117062,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 65092,
- 65096
+ 50041,
+ 50045
],
"loc": {
"start": {
- "line": 1745,
+ "line": 1398,
"column": 26
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 30
}
}
@@ -148302,46 +117080,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 65097,
- 65103
+ 50046,
+ 50052
],
"loc": {
"start": {
- "line": 1745,
+ "line": 1398,
"column": 31
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 37
}
}
},
"range": [
- 65092,
- 65103
+ 50041,
+ 50052
],
"loc": {
"start": {
- "line": 1745,
+ "line": 1398,
"column": 26
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 37
}
}
},
"range": [
- 65082,
- 65103
+ 50031,
+ 50052
],
"loc": {
"start": {
- "line": 1745,
+ "line": 1398,
"column": 16
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 37
}
}
@@ -148349,16 +117127,16 @@
],
"kind": "let",
"range": [
- 65041,
- 65104
+ 49990,
+ 50053
],
"loc": {
"start": {
- "line": 1744,
+ "line": 1397,
"column": 12
},
"end": {
- "line": 1745,
+ "line": 1398,
"column": 38
}
},
@@ -148367,16 +117145,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 65118,
- 65151
+ 50067,
+ 50100
],
"loc": {
"start": {
- "line": 1747,
+ "line": 1400,
"column": 12
},
"end": {
- "line": 1747,
+ "line": 1400,
"column": 45
}
}
@@ -148392,16 +117170,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 65167,
- 65174
+ 50116,
+ 50123
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 15
},
"end": {
- "line": 1748,
+ "line": 1401,
"column": 22
}
}
@@ -148412,16 +117190,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65179,
- 65183
+ 50128,
+ 50132
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 27
},
"end": {
- "line": 1748,
+ "line": 1401,
"column": 31
}
}
@@ -148430,46 +117208,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 65184,
- 65191
+ 50133,
+ 50140
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 32
},
"end": {
- "line": 1748,
+ "line": 1401,
"column": 39
}
}
},
"range": [
- 65179,
- 65191
+ 50128,
+ 50140
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 27
},
"end": {
- "line": 1748,
+ "line": 1401,
"column": 39
}
}
},
"range": [
- 65167,
- 65191
+ 50116,
+ 50140
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 15
},
"end": {
- "line": 1748,
+ "line": 1401,
"column": 39
}
}
@@ -148481,48 +117259,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 65210,
- 65219
+ 50159,
+ 50168
],
"loc": {
"start": {
- "line": 1749,
+ "line": 1402,
"column": 16
},
"end": {
- "line": 1749,
+ "line": 1402,
"column": 25
}
}
}
],
"range": [
- 65192,
- 65233
+ 50141,
+ 50182
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 40
},
"end": {
- "line": 1750,
+ "line": 1403,
"column": 13
}
}
},
"alternate": null,
"range": [
- 65164,
- 65233
+ 50113,
+ 50182
],
"loc": {
"start": {
- "line": 1748,
+ "line": 1401,
"column": 12
},
"end": {
- "line": 1750,
+ "line": 1403,
"column": 13
}
},
@@ -148531,16 +117309,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 65118,
- 65151
+ 50067,
+ 50100
],
"loc": {
"start": {
- "line": 1747,
+ "line": 1400,
"column": 12
},
"end": {
- "line": 1747,
+ "line": 1400,
"column": 45
}
}
@@ -148556,16 +117334,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 65251,
- 65260
+ 50200,
+ 50209
],
"loc": {
"start": {
- "line": 1752,
+ "line": 1405,
"column": 16
},
"end": {
- "line": 1752,
+ "line": 1405,
"column": 25
}
}
@@ -148574,31 +117352,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 65263,
- 65265
+ 50212,
+ 50214
],
"loc": {
"start": {
- "line": 1752,
+ "line": 1405,
"column": 28
},
"end": {
- "line": 1752,
+ "line": 1405,
"column": 30
}
}
},
"range": [
- 65251,
- 65265
+ 50200,
+ 50214
],
"loc": {
"start": {
- "line": 1752,
+ "line": 1405,
"column": 16
},
"end": {
- "line": 1752,
+ "line": 1405,
"column": 30
}
}
@@ -148609,16 +117387,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 65283,
- 65293
+ 50232,
+ 50242
],
"loc": {
"start": {
- "line": 1753,
+ "line": 1406,
"column": 16
},
"end": {
- "line": 1753,
+ "line": 1406,
"column": 26
}
}
@@ -148628,31 +117406,31 @@
"value": true,
"raw": "true",
"range": [
- 65296,
- 65300
+ 50245,
+ 50249
],
"loc": {
"start": {
- "line": 1753,
+ "line": 1406,
"column": 29
},
"end": {
- "line": 1753,
+ "line": 1406,
"column": 33
}
}
},
"range": [
- 65283,
- 65300
+ 50232,
+ 50249
],
"loc": {
"start": {
- "line": 1753,
+ "line": 1406,
"column": 16
},
"end": {
- "line": 1753,
+ "line": 1406,
"column": 33
}
}
@@ -148663,16 +117441,16 @@
"type": "Identifier",
"name": "singleFltRowValid",
"range": [
- 65366,
- 65383
+ 50315,
+ 50332
],
"loc": {
"start": {
- "line": 1755,
+ "line": 1408,
"column": 16
},
"end": {
- "line": 1755,
+ "line": 1408,
"column": 33
}
}
@@ -148682,31 +117460,31 @@
"value": false,
"raw": "false",
"range": [
- 65386,
- 65391
+ 50335,
+ 50340
],
"loc": {
"start": {
- "line": 1755,
+ "line": 1408,
"column": 36
},
"end": {
- "line": 1755,
+ "line": 1408,
"column": 41
}
}
},
"range": [
- 65366,
- 65391
+ 50315,
+ 50340
],
"loc": {
"start": {
- "line": 1755,
+ "line": 1408,
"column": 16
},
"end": {
- "line": 1755,
+ "line": 1408,
"column": 41
}
},
@@ -148715,16 +117493,16 @@
"type": "Line",
"value": "only for single filter search",
"range": [
- 65318,
- 65349
+ 50267,
+ 50298
],
"loc": {
"start": {
- "line": 1754,
+ "line": 1407,
"column": 16
},
"end": {
- "line": 1754,
+ "line": 1407,
"column": 47
}
}
@@ -148734,16 +117512,16 @@
],
"kind": "let",
"range": [
- 65247,
- 65392
+ 50196,
+ 50341
],
"loc": {
"start": {
- "line": 1752,
+ "line": 1405,
"column": 12
},
"end": {
- "line": 1755,
+ "line": 1408,
"column": 42
}
},
@@ -148752,16 +117530,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 65406,
- 65438
+ 50355,
+ 50387
],
"loc": {
"start": {
- "line": 1757,
+ "line": 1410,
"column": 12
},
"end": {
- "line": 1757,
+ "line": 1410,
"column": 44
}
}
@@ -148779,16 +117557,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 65459,
- 65460
+ 50408,
+ 50409
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 20
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 21
}
}
@@ -148798,31 +117576,31 @@
"value": 0,
"raw": "0",
"range": [
- 65461,
- 65462
+ 50410,
+ 50411
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 22
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 23
}
}
},
"range": [
- 65459,
- 65462
+ 50408,
+ 50411
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 20
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 23
}
}
@@ -148830,16 +117608,16 @@
],
"kind": "let",
"range": [
- 65455,
- 65462
+ 50404,
+ 50411
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 16
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 23
}
}
@@ -148851,16 +117629,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 65464,
- 65465
+ 50413,
+ 50414
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 25
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 26
}
}
@@ -148869,31 +117647,31 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 65466,
- 65473
+ 50415,
+ 50422
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 27
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 34
}
}
},
"range": [
- 65464,
- 65473
+ 50413,
+ 50422
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 25
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 34
}
}
@@ -148905,32 +117683,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 65475,
- 65476
+ 50424,
+ 50425
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 36
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 37
}
}
},
"prefix": false,
"range": [
- 65475,
- 65478
+ 50424,
+ 50427
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 36
},
"end": {
- "line": 1758,
+ "line": 1411,
"column": 39
}
}
@@ -148947,16 +117725,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 65536,
- 65538
+ 50485,
+ 50487
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 20
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 22
}
}
@@ -148970,16 +117748,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65541,
- 65545
+ 50490,
+ 50494
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 25
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 29
}
}
@@ -148988,31 +117766,31 @@
"type": "Identifier",
"name": "searchArgs",
"range": [
- 65546,
- 65556
+ 50495,
+ 50505
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 30
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 40
}
}
},
"range": [
- 65541,
- 65556
+ 50490,
+ 50505
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 25
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 40
}
}
@@ -149025,16 +117803,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65557,
- 65561
+ 50506,
+ 50510
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 41
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 45
}
}
@@ -149043,31 +117821,31 @@
"type": "Identifier",
"name": "singleSearchFlt",
"range": [
- 65562,
- 65577
+ 50511,
+ 50526
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 46
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 61
}
}
},
"range": [
- 65557,
- 65577
+ 50506,
+ 50526
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 41
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 61
}
}
@@ -149077,16 +117855,16 @@
"value": 0,
"raw": "0",
"range": [
- 65580,
- 65581
+ 50529,
+ 50530
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 64
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 65
}
}
@@ -149095,61 +117873,61 @@
"type": "Identifier",
"name": "j",
"range": [
- 65584,
- 65585
+ 50533,
+ 50534
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 68
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 69
}
}
},
"range": [
- 65557,
- 65585
+ 50506,
+ 50534
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 41
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 69
}
}
},
"range": [
- 65541,
- 65586
+ 50490,
+ 50535
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 25
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 70
}
}
},
"range": [
- 65536,
- 65586
+ 50485,
+ 50535
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 20
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 70
}
}
@@ -149157,16 +117935,16 @@
],
"kind": "let",
"range": [
- 65532,
- 65587
+ 50481,
+ 50536
],
"loc": {
"start": {
- "line": 1760,
+ "line": 1413,
"column": 16
},
"end": {
- "line": 1760,
+ "line": 1413,
"column": 71
}
},
@@ -149175,16 +117953,16 @@
"type": "Line",
"value": "searched keyword",
"range": [
- 65497,
- 65515
+ 50446,
+ 50464
],
"loc": {
"start": {
- "line": 1759,
+ "line": 1412,
"column": 16
},
"end": {
- "line": 1759,
+ "line": 1412,
"column": 34
}
}
@@ -149200,16 +117978,16 @@
"type": "Identifier",
"name": "dtType",
"range": [
- 65608,
- 65614
+ 50557,
+ 50563
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 20
},
"end": {
- "line": 1761,
+ "line": 1414,
"column": 26
}
}
@@ -149222,16 +118000,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65617,
- 65621
+ 50566,
+ 50570
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 29
},
"end": {
- "line": 1761,
+ "line": 1414,
"column": 33
}
}
@@ -149240,31 +118018,31 @@
"type": "Identifier",
"name": "hasColDateType",
"range": [
- 65622,
- 65636
+ 50571,
+ 50585
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 34
},
"end": {
- "line": 1761,
+ "line": 1414,
"column": 48
}
}
},
"range": [
- 65617,
- 65636
+ 50566,
+ 50585
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 29
},
"end": {
- "line": 1761,
+ "line": 1414,
"column": 48
}
}
@@ -149278,16 +118056,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65663,
- 65667
+ 50612,
+ 50616
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 24
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 28
}
}
@@ -149296,31 +118074,31 @@
"type": "Identifier",
"name": "colDateType",
"range": [
- 65668,
- 65679
+ 50617,
+ 50628
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 29
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 40
}
}
},
"range": [
- 65663,
- 65679
+ 50612,
+ 50628
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 24
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 40
}
}
@@ -149329,31 +118107,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 65680,
- 65681
+ 50629,
+ 50630
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 41
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 42
}
}
},
"range": [
- 65663,
- 65682
+ 50612,
+ 50631
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 24
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 43
}
}
@@ -149364,16 +118142,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65685,
- 65689
+ 50634,
+ 50638
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 46
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 50
}
}
@@ -149382,61 +118160,61 @@
"type": "Identifier",
"name": "defaultDateType",
"range": [
- 65690,
- 65705
+ 50639,
+ 50654
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 51
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 66
}
}
},
"range": [
- 65685,
- 65705
+ 50634,
+ 50654
],
"loc": {
"start": {
- "line": 1762,
+ "line": 1415,
"column": 46
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 66
}
}
},
"range": [
- 65617,
- 65705
+ 50566,
+ 50654
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 29
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 66
}
}
},
"range": [
- 65608,
- 65705
+ 50557,
+ 50654
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 20
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 66
}
}
@@ -149444,16 +118222,16 @@
],
"kind": "var",
"range": [
- 65604,
- 65706
+ 50553,
+ 50655
],
"loc": {
"start": {
- "line": 1761,
+ "line": 1414,
"column": 16
},
"end": {
- "line": 1762,
+ "line": 1415,
"column": 67
}
}
@@ -149467,16 +118245,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 65726,
- 65728
+ 50676,
+ 50678
],
"loc": {
"start": {
- "line": 1763,
+ "line": 1417,
"column": 19
},
"end": {
- "line": 1763,
+ "line": 1417,
"column": 21
}
}
@@ -149486,31 +118264,31 @@
"value": "",
"raw": "''",
"range": [
- 65733,
- 65735
+ 50683,
+ 50685
],
"loc": {
"start": {
- "line": 1763,
+ "line": 1417,
"column": 26
},
"end": {
- "line": 1763,
+ "line": 1417,
"column": 28
}
}
},
"range": [
- 65726,
- 65735
+ 50676,
+ 50685
],
"loc": {
"start": {
- "line": 1763,
+ "line": 1417,
"column": 19
},
"end": {
- "line": 1763,
+ "line": 1417,
"column": 28
}
}
@@ -149522,48 +118300,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 65758,
- 65767
+ 50708,
+ 50717
],
"loc": {
"start": {
- "line": 1764,
+ "line": 1418,
"column": 20
},
"end": {
- "line": 1764,
+ "line": 1418,
"column": 29
}
}
}
],
"range": [
- 65736,
- 65785
+ 50686,
+ 50735
],
"loc": {
"start": {
- "line": 1763,
+ "line": 1417,
"column": 29
},
"end": {
- "line": 1765,
+ "line": 1419,
"column": 17
}
}
},
"alternate": null,
"range": [
- 65723,
- 65785
+ 50673,
+ 50735
],
"loc": {
"start": {
- "line": 1763,
+ "line": 1417,
"column": 16
},
"end": {
- "line": 1765,
+ "line": 1419,
"column": 17
}
}
@@ -149577,16 +118355,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 65807,
- 65815
+ 50757,
+ 50765
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 20
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 28
}
}
@@ -149600,16 +118378,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 65818,
- 65821
+ 50768,
+ 50771
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 31
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 34
}
}
@@ -149618,31 +118396,31 @@
"type": "Identifier",
"name": "matchCase",
"range": [
- 65822,
- 65831
+ 50772,
+ 50781
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 35
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 44
}
}
},
"range": [
- 65818,
- 65831
+ 50768,
+ 50781
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 31
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 44
}
}
@@ -149656,16 +118434,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65832,
- 65836
+ 50782,
+ 50786
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 45
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 49
}
}
@@ -149674,31 +118452,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 65837,
- 65848
+ 50787,
+ 50798
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 50
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 61
}
}
},
"range": [
- 65832,
- 65848
+ 50782,
+ 50798
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 45
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 61
}
}
@@ -149711,16 +118489,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 65849,
- 65853
+ 50799,
+ 50803
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 62
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 66
}
}
@@ -149729,47 +118507,47 @@
"type": "Identifier",
"name": "j",
"range": [
- 65854,
- 65855
+ 50804,
+ 50805
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 67
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 68
}
}
},
"range": [
- 65849,
- 65856
+ 50799,
+ 50806
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 62
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 69
}
}
}
],
"range": [
- 65832,
- 65857
+ 50782,
+ 50807
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 45
},
"end": {
- "line": 1767,
+ "line": 1421,
"column": 70
}
}
@@ -149780,16 +118558,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 65879,
- 65883
+ 50829,
+ 50833
],
"loc": {
"start": {
- "line": 1768,
+ "line": 1422,
"column": 20
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 24
}
}
@@ -149798,62 +118576,62 @@
"type": "Identifier",
"name": "caseSensitive",
"range": [
- 65884,
- 65897
+ 50834,
+ 50847
],
"loc": {
"start": {
- "line": 1768,
+ "line": 1422,
"column": 25
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 38
}
}
},
"range": [
- 65879,
- 65897
+ 50829,
+ 50847
],
"loc": {
"start": {
- "line": 1768,
+ "line": 1422,
"column": 20
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 38
}
}
}
],
"range": [
- 65818,
- 65898
+ 50768,
+ 50848
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 31
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 39
}
}
},
"range": [
- 65807,
- 65898
+ 50757,
+ 50848
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 20
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 39
}
}
@@ -149861,16 +118639,16 @@
],
"kind": "let",
"range": [
- 65803,
- 65899
+ 50753,
+ 50849
],
"loc": {
"start": {
- "line": 1767,
+ "line": 1421,
"column": 16
},
"end": {
- "line": 1768,
+ "line": 1422,
"column": 40
}
},
@@ -149879,16 +118657,16 @@
"type": "Line",
"value": "multiple search parameter operator ||",
"range": [
- 65917,
- 65956
+ 50867,
+ 50906
],
"loc": {
"start": {
- "line": 1770,
+ "line": 1424,
"column": 16
},
"end": {
- "line": 1770,
+ "line": 1424,
"column": 55
}
}
@@ -149904,16 +118682,16 @@
"type": "Identifier",
"name": "sAOrSplit",
"range": [
- 65977,
- 65986
+ 50927,
+ 50936
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 20
},
"end": {
- "line": 1771,
+ "line": 1425,
"column": 29
}
}
@@ -149924,20 +118702,74 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "sA",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 50939,
+ 50941
+ ],
+ "loc": {
+ "start": {
+ "line": 1425,
+ "column": 32
+ },
+ "end": {
+ "line": 1425,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toString",
+ "range": [
+ 50942,
+ 50950
+ ],
+ "loc": {
+ "start": {
+ "line": 1425,
+ "column": 35
+ },
+ "end": {
+ "line": 1425,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 50939,
+ 50950
+ ],
+ "loc": {
+ "start": {
+ "line": 1425,
+ "column": 32
+ },
+ "end": {
+ "line": 1425,
+ "column": 43
+ }
+ }
+ },
+ "arguments": [],
"range": [
- 65989,
- 65991
+ 50939,
+ 50952
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 32
},
"end": {
- "line": 1771,
- "column": 34
+ "line": 1425,
+ "column": 45
}
}
},
@@ -149945,32 +118777,32 @@
"type": "Identifier",
"name": "split",
"range": [
- 65992,
- 65997
+ 50953,
+ 50958
],
"loc": {
"start": {
- "line": 1771,
- "column": 35
+ "line": 1425,
+ "column": 46
},
"end": {
- "line": 1771,
- "column": 40
+ "line": 1425,
+ "column": 51
}
}
},
"range": [
- 65989,
- 65997
+ 50939,
+ 50958
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 32
},
"end": {
- "line": 1771,
- "column": 40
+ "line": 1425,
+ "column": 51
}
}
},
@@ -149981,17 +118813,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 65998,
- 66002
+ 50959,
+ 50963
],
"loc": {
"start": {
- "line": 1771,
- "column": 41
+ "line": 1425,
+ "column": 52
},
"end": {
- "line": 1771,
- "column": 45
+ "line": 1425,
+ "column": 56
}
}
},
@@ -149999,63 +118831,63 @@
"type": "Identifier",
"name": "orOperator",
"range": [
- 66003,
- 66013
+ 50964,
+ 50974
],
"loc": {
"start": {
- "line": 1771,
- "column": 46
+ "line": 1425,
+ "column": 57
},
"end": {
- "line": 1771,
- "column": 56
+ "line": 1425,
+ "column": 67
}
}
},
"range": [
- 65998,
- 66013
+ 50959,
+ 50974
],
"loc": {
"start": {
- "line": 1771,
- "column": 41
+ "line": 1425,
+ "column": 52
},
"end": {
- "line": 1771,
- "column": 56
+ "line": 1425,
+ "column": 67
}
}
}
],
"range": [
- 65989,
- 66014
+ 50939,
+ 50975
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 32
},
"end": {
- "line": 1771,
- "column": 57
+ "line": 1425,
+ "column": 68
}
}
},
"range": [
- 65977,
- 66014
+ 50927,
+ 50975
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 20
},
"end": {
- "line": 1771,
- "column": 57
+ "line": 1425,
+ "column": 68
}
}
},
@@ -150065,178 +118897,123 @@
"type": "Identifier",
"name": "hasMultiOrSA",
"range": [
- 66087,
- 66099
+ 51048,
+ 51060
],
"loc": {
"start": {
- "line": 1773,
+ "line": 1427,
"column": 16
},
"end": {
- "line": 1773,
+ "line": 1427,
"column": 28
}
}
},
"init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "sAOrSplit",
- "range": [
- 66103,
- 66112
- ],
- "loc": {
- "start": {
- "line": 1773,
- "column": 32
- },
- "end": {
- "line": 1773,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 66113,
- 66119
- ],
- "loc": {
- "start": {
- "line": 1773,
- "column": 42
- },
- "end": {
- "line": 1773,
- "column": 48
- }
- }
- },
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "sAOrSplit",
"range": [
- 66103,
- 66119
+ 51063,
+ 51072
],
"loc": {
"start": {
- "line": 1773,
- "column": 32
+ "line": 1427,
+ "column": 31
},
"end": {
- "line": 1773,
- "column": 48
+ "line": 1427,
+ "column": 40
}
}
},
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
+ "property": {
+ "type": "Identifier",
+ "name": "length",
"range": [
- 66120,
- 66121
+ 51073,
+ 51079
],
"loc": {
"start": {
- "line": 1773,
- "column": 49
+ "line": 1427,
+ "column": 41
},
"end": {
- "line": 1773,
- "column": 50
+ "line": 1427,
+ "column": 47
}
}
},
"range": [
- 66103,
- 66121
+ 51063,
+ 51079
],
"loc": {
"start": {
- "line": 1773,
- "column": 32
+ "line": 1427,
+ "column": 31
},
"end": {
- "line": 1773,
+ "line": 1427,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 51082,
+ 51083
+ ],
+ "loc": {
+ "start": {
+ "line": 1427,
"column": 50
- }
- }
- },
- "consequent": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 66125,
- 66129
- ],
- "loc": {
- "start": {
- "line": 1773,
- "column": 54
},
"end": {
- "line": 1773,
- "column": 58
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 66132,
- 66137
- ],
- "loc": {
- "start": {
- "line": 1773,
- "column": 61
- },
- "end": {
- "line": 1773,
- "column": 66
+ "line": 1427,
+ "column": 51
}
}
},
"range": [
- 66102,
- 66137
+ 51063,
+ 51083
],
"loc": {
"start": {
- "line": 1773,
+ "line": 1427,
"column": 31
},
"end": {
- "line": 1773,
- "column": 66
+ "line": 1427,
+ "column": 51
}
}
},
"range": [
- 66087,
- 66137
+ 51048,
+ 51083
],
"loc": {
"start": {
- "line": 1773,
+ "line": 1427,
"column": 16
},
"end": {
- "line": 1773,
- "column": 66
+ "line": 1427,
+ "column": 51
}
},
"leadingComments": [
@@ -150244,16 +119021,16 @@
"type": "Line",
"value": "multiple search || parameter boolean",
"range": [
- 66032,
- 66070
+ 50993,
+ 51031
],
"loc": {
"start": {
- "line": 1772,
+ "line": 1426,
"column": 16
},
"end": {
- "line": 1772,
+ "line": 1426,
"column": 54
}
}
@@ -150266,16 +119043,16 @@
"type": "Identifier",
"name": "sAAndSplit",
"range": [
- 66211,
- 66221
+ 51157,
+ 51167
],
"loc": {
"start": {
- "line": 1775,
+ "line": 1429,
"column": 16
},
"end": {
- "line": 1775,
+ "line": 1429,
"column": 26
}
}
@@ -150286,20 +119063,74 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "sA",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 51170,
+ 51172
+ ],
+ "loc": {
+ "start": {
+ "line": 1429,
+ "column": 29
+ },
+ "end": {
+ "line": 1429,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toString",
+ "range": [
+ 51173,
+ 51181
+ ],
+ "loc": {
+ "start": {
+ "line": 1429,
+ "column": 32
+ },
+ "end": {
+ "line": 1429,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 51170,
+ 51181
+ ],
+ "loc": {
+ "start": {
+ "line": 1429,
+ "column": 29
+ },
+ "end": {
+ "line": 1429,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [],
"range": [
- 66224,
- 66226
+ 51170,
+ 51183
],
"loc": {
"start": {
- "line": 1775,
+ "line": 1429,
"column": 29
},
"end": {
- "line": 1775,
- "column": 31
+ "line": 1429,
+ "column": 42
}
}
},
@@ -150307,32 +119138,32 @@
"type": "Identifier",
"name": "split",
"range": [
- 66227,
- 66232
+ 51184,
+ 51189
],
"loc": {
"start": {
- "line": 1775,
- "column": 32
+ "line": 1429,
+ "column": 43
},
"end": {
- "line": 1775,
- "column": 37
+ "line": 1429,
+ "column": 48
}
}
},
"range": [
- 66224,
- 66232
+ 51170,
+ 51189
],
"loc": {
"start": {
- "line": 1775,
+ "line": 1429,
"column": 29
},
"end": {
- "line": 1775,
- "column": 37
+ "line": 1429,
+ "column": 48
}
}
},
@@ -150343,17 +119174,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 66233,
- 66237
+ 51190,
+ 51194
],
"loc": {
"start": {
- "line": 1775,
- "column": 38
+ "line": 1429,
+ "column": 49
},
"end": {
- "line": 1775,
- "column": 42
+ "line": 1429,
+ "column": 53
}
}
},
@@ -150361,63 +119192,63 @@
"type": "Identifier",
"name": "anOperator",
"range": [
- 66238,
- 66248
+ 51195,
+ 51205
],
"loc": {
"start": {
- "line": 1775,
- "column": 43
+ "line": 1429,
+ "column": 54
},
"end": {
- "line": 1775,
- "column": 53
+ "line": 1429,
+ "column": 64
}
}
},
"range": [
- 66233,
- 66248
+ 51190,
+ 51205
],
"loc": {
"start": {
- "line": 1775,
- "column": 38
+ "line": 1429,
+ "column": 49
},
"end": {
- "line": 1775,
- "column": 53
+ "line": 1429,
+ "column": 64
}
}
}
],
"range": [
- 66224,
- 66249
+ 51170,
+ 51206
],
"loc": {
"start": {
- "line": 1775,
+ "line": 1429,
"column": 29
},
"end": {
- "line": 1775,
- "column": 54
+ "line": 1429,
+ "column": 65
}
}
},
"range": [
- 66211,
- 66249
+ 51157,
+ 51206
],
"loc": {
"start": {
- "line": 1775,
+ "line": 1429,
"column": 16
},
"end": {
- "line": 1775,
- "column": 54
+ "line": 1429,
+ "column": 65
}
},
"leadingComments": [
@@ -150425,16 +119256,16 @@
"type": "Line",
"value": "multiple search parameter operator &&",
"range": [
- 66155,
- 66194
+ 51101,
+ 51140
],
"loc": {
"start": {
- "line": 1774,
+ "line": 1428,
"column": 16
},
"end": {
- "line": 1774,
+ "line": 1428,
"column": 55
}
}
@@ -150447,178 +119278,123 @@
"type": "Identifier",
"name": "hasMultiAndSA",
"range": [
- 66322,
- 66335
+ 51279,
+ 51292
],
"loc": {
"start": {
- "line": 1777,
+ "line": 1431,
"column": 16
},
"end": {
- "line": 1777,
+ "line": 1431,
"column": 29
}
}
},
"init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "sAAndSplit",
- "range": [
- 66338,
- 66348
- ],
- "loc": {
- "start": {
- "line": 1777,
- "column": 32
- },
- "end": {
- "line": 1777,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 66349,
- 66355
- ],
- "loc": {
- "start": {
- "line": 1777,
- "column": 43
- },
- "end": {
- "line": 1777,
- "column": 49
- }
- }
- },
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "sAAndSplit",
"range": [
- 66338,
- 66355
+ 51295,
+ 51305
],
"loc": {
"start": {
- "line": 1777,
+ "line": 1431,
"column": 32
},
"end": {
- "line": 1777,
+ "line": 1431,
+ "column": 42
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 51306,
+ 51312
+ ],
+ "loc": {
+ "start": {
+ "line": 1431,
+ "column": 43
+ },
+ "end": {
+ "line": 1431,
"column": 49
}
}
},
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 66356,
- 66357
- ],
- "loc": {
- "start": {
- "line": 1777,
- "column": 50
- },
- "end": {
- "line": 1777,
- "column": 51
- }
- }
- },
"range": [
- 66338,
- 66357
+ 51295,
+ 51312
],
"loc": {
"start": {
- "line": 1777,
+ "line": 1431,
"column": 32
},
"end": {
- "line": 1777,
- "column": 51
+ "line": 1431,
+ "column": 49
}
}
},
- "consequent": {
+ "right": {
"type": "Literal",
- "value": true,
- "raw": "true",
+ "value": 1,
+ "raw": "1",
"range": [
- 66360,
- 66364
+ 51315,
+ 51316
],
"loc": {
"start": {
- "line": 1777,
- "column": 54
+ "line": 1431,
+ "column": 52
},
"end": {
- "line": 1777,
- "column": 58
- }
- }
- },
- "alternate": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 66367,
- 66372
- ],
- "loc": {
- "start": {
- "line": 1777,
- "column": 61
- },
- "end": {
- "line": 1777,
- "column": 66
+ "line": 1431,
+ "column": 53
}
}
},
"range": [
- 66338,
- 66372
+ 51295,
+ 51316
],
"loc": {
"start": {
- "line": 1777,
+ "line": 1431,
"column": 32
},
"end": {
- "line": 1777,
- "column": 66
+ "line": 1431,
+ "column": 53
}
}
},
"range": [
- 66322,
- 66372
+ 51279,
+ 51316
],
"loc": {
"start": {
- "line": 1777,
+ "line": 1431,
"column": 16
},
"end": {
- "line": 1777,
- "column": 66
+ "line": 1431,
+ "column": 53
}
},
"leadingComments": [
@@ -150626,16 +119402,16 @@
"type": "Line",
"value": "multiple search && parameter boolean",
"range": [
- 66267,
- 66305
+ 51224,
+ 51262
],
"loc": {
"start": {
- "line": 1776,
+ "line": 1430,
"column": 16
},
"end": {
- "line": 1776,
+ "line": 1430,
"column": 54
}
}
@@ -150645,17 +119421,17 @@
],
"kind": "let",
"range": [
- 65973,
- 66373
+ 50923,
+ 51317
],
"loc": {
"start": {
- "line": 1771,
+ "line": 1425,
"column": 16
},
"end": {
- "line": 1777,
- "column": 67
+ "line": 1431,
+ "column": 54
}
},
"leadingComments": [
@@ -150663,16 +119439,16 @@
"type": "Line",
"value": "multiple search parameter operator ||",
"range": [
- 65917,
- 65956
+ 50867,
+ 50906
],
"loc": {
"start": {
- "line": 1770,
+ "line": 1424,
"column": 16
},
"end": {
- "line": 1770,
+ "line": 1424,
"column": 55
}
}
@@ -150681,19 +119457,19 @@
"trailingComments": [
{
"type": "Line",
- "value": "multiple sarch parameters",
+ "value": "detect operators or array query",
"range": [
- 66391,
- 66418
+ 51335,
+ 51368
],
"loc": {
"start": {
- "line": 1779,
+ "line": 1433,
"column": 16
},
"end": {
- "line": 1779,
- "column": 43
+ "line": 1433,
+ "column": 49
}
}
}
@@ -150705,20 +119481,129 @@
"type": "LogicalExpression",
"operator": "||",
"left": {
- "type": "Identifier",
- "name": "hasMultiOrSA",
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 51388,
+ 51393
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 19
+ },
+ "end": {
+ "line": 1434,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 51394,
+ 51401
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 25
+ },
+ "end": {
+ "line": 1434,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 51388,
+ 51401
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 19
+ },
+ "end": {
+ "line": 1434,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 51402,
+ 51404
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 33
+ },
+ "end": {
+ "line": 1434,
+ "column": 35
+ }
+ }
+ }
+ ],
+ "range": [
+ 51388,
+ 51405
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 19
+ },
+ "end": {
+ "line": 1434,
+ "column": 36
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "hasMultiOrSA",
+ "range": [
+ 51409,
+ 51421
+ ],
+ "loc": {
+ "start": {
+ "line": 1434,
+ "column": 40
+ },
+ "end": {
+ "line": 1434,
+ "column": 52
+ }
+ }
+ },
"range": [
- 66438,
- 66450
+ 51388,
+ 51421
],
"loc": {
"start": {
- "line": 1780,
+ "line": 1434,
"column": 19
},
"end": {
- "line": 1780,
- "column": 31
+ "line": 1434,
+ "column": 52
}
}
},
@@ -150726,32 +119611,32 @@
"type": "Identifier",
"name": "hasMultiAndSA",
"range": [
- 66454,
- 66467
+ 51425,
+ 51438
],
"loc": {
"start": {
- "line": 1780,
- "column": 35
+ "line": 1434,
+ "column": 56
},
"end": {
- "line": 1780,
- "column": 48
+ "line": 1434,
+ "column": 69
}
}
},
"range": [
- 66438,
- 66467
+ 51388,
+ 51438
],
"loc": {
"start": {
- "line": 1780,
+ "line": 1434,
"column": 19
},
"end": {
- "line": 1780,
- "column": 48
+ "line": 1434,
+ "column": 69
}
}
},
@@ -150767,213 +119652,504 @@
"type": "Identifier",
"name": "cS",
"range": [
- 66494,
- 66496
+ 51465,
+ 51467
],
"loc": {
"start": {
- "line": 1781,
+ "line": 1435,
"column": 24
},
"end": {
- "line": 1781,
+ "line": 1435,
"column": 26
}
}
},
"init": null,
"range": [
- 66494,
- 66496
+ 51465,
+ 51467
],
"loc": {
"start": {
- "line": 1781,
+ "line": 1435,
"column": 24
},
"end": {
- "line": 1781,
+ "line": 1435,
"column": 26
}
}
},
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "occur",
- "range": [
- 66522,
- 66527
- ],
- "loc": {
- "start": {
- "line": 1782,
- "column": 24
- },
- "end": {
- "line": 1782,
- "column": 29
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 66530,
- 66535
- ],
- "loc": {
- "start": {
- "line": 1782,
- "column": 32
- },
- "end": {
- "line": 1782,
- "column": 37
- }
- }
- },
- "range": [
- 66522,
- 66535
- ],
- "loc": {
- "start": {
- "line": 1782,
- "column": 24
- },
- "end": {
- "line": 1782,
- "column": 37
- }
- }
- },
{
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
"name": "s",
"range": [
- 66561,
- 66562
+ 51493,
+ 51494
],
"loc": {
"start": {
- "line": 1783,
+ "line": 1436,
"column": 24
},
"end": {
- "line": 1783,
+ "line": 1436,
"column": 25
}
}
},
- "init": {
- "type": "ConditionalExpression",
- "test": {
- "type": "Identifier",
- "name": "hasMultiOrSA",
- "range": [
- 66565,
- 66577
- ],
- "loc": {
- "start": {
- "line": 1783,
- "column": 28
- },
- "end": {
- "line": 1783,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "Identifier",
- "name": "sAOrSplit",
- "range": [
- 66580,
- 66589
- ],
- "loc": {
- "start": {
- "line": 1783,
- "column": 43
- },
- "end": {
- "line": 1783,
- "column": 52
- }
- }
- },
- "alternate": {
- "type": "Identifier",
- "name": "sAAndSplit",
- "range": [
- 66592,
- 66602
- ],
- "loc": {
- "start": {
- "line": 1783,
- "column": 55
- },
- "end": {
- "line": 1783,
- "column": 65
- }
- }
+ "init": null,
+ "range": [
+ 51493,
+ 51494
+ ],
+ "loc": {
+ "start": {
+ "line": 1436,
+ "column": 24
},
+ "end": {
+ "line": 1436,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "occur",
"range": [
- 66565,
- 66602
+ 51520,
+ 51525
],
"loc": {
"start": {
- "line": 1783,
- "column": 28
+ "line": 1437,
+ "column": 24
},
"end": {
- "line": 1783,
- "column": 65
+ "line": 1437,
+ "column": 29
+ }
+ }
+ },
+ "init": {
+ "type": "Literal",
+ "value": false,
+ "raw": "false",
+ "range": [
+ 51528,
+ 51533
+ ],
+ "loc": {
+ "start": {
+ "line": 1437,
+ "column": 32
+ },
+ "end": {
+ "line": 1437,
+ "column": 37
}
}
},
"range": [
- 66561,
- 66602
+ 51520,
+ 51533
],
"loc": {
"start": {
- "line": 1783,
+ "line": 1437,
"column": 24
},
"end": {
- "line": 1783,
- "column": 65
+ "line": 1437,
+ "column": 37
}
}
}
],
"kind": "let",
"range": [
- 66490,
- 66603
+ 51461,
+ 51534
],
"loc": {
"start": {
- "line": 1781,
+ "line": 1435,
"column": 20
},
"end": {
- "line": 1783,
- "column": 66
+ "line": 1437,
+ "column": 38
}
}
},
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 51558,
+ 51563
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 23
+ },
+ "end": {
+ "line": 1438,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 51564,
+ 51571
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 29
+ },
+ "end": {
+ "line": 1438,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 51558,
+ 51571
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 23
+ },
+ "end": {
+ "line": 1438,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 51572,
+ 51574
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 37
+ },
+ "end": {
+ "line": 1438,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 51558,
+ 51575
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 23
+ },
+ "end": {
+ "line": 1438,
+ "column": 40
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "s",
+ "range": [
+ 51602,
+ 51603
+ ],
+ "loc": {
+ "start": {
+ "line": 1439,
+ "column": 24
+ },
+ "end": {
+ "line": 1439,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 51606,
+ 51608
+ ],
+ "loc": {
+ "start": {
+ "line": 1439,
+ "column": 28
+ },
+ "end": {
+ "line": 1439,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 51602,
+ 51608
+ ],
+ "loc": {
+ "start": {
+ "line": 1439,
+ "column": 24
+ },
+ "end": {
+ "line": 1439,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 51602,
+ 51609
+ ],
+ "loc": {
+ "start": {
+ "line": 1439,
+ "column": 24
+ },
+ "end": {
+ "line": 1439,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "range": [
+ 51576,
+ 51631
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 41
+ },
+ "end": {
+ "line": 1440,
+ "column": 21
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "s",
+ "range": [
+ 51663,
+ 51664
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 24
+ },
+ "end": {
+ "line": 1441,
+ "column": 25
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "Identifier",
+ "name": "hasMultiOrSA",
+ "range": [
+ 51667,
+ 51679
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 28
+ },
+ "end": {
+ "line": 1441,
+ "column": 40
+ }
+ }
+ },
+ "consequent": {
+ "type": "Identifier",
+ "name": "sAOrSplit",
+ "range": [
+ 51682,
+ 51691
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 43
+ },
+ "end": {
+ "line": 1441,
+ "column": 52
+ }
+ }
+ },
+ "alternate": {
+ "type": "Identifier",
+ "name": "sAAndSplit",
+ "range": [
+ 51694,
+ 51704
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 55
+ },
+ "end": {
+ "line": 1441,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 51667,
+ 51704
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 28
+ },
+ "end": {
+ "line": 1441,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 51663,
+ 51704
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 24
+ },
+ "end": {
+ "line": 1441,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 51663,
+ 51705
+ ],
+ "loc": {
+ "start": {
+ "line": 1441,
+ "column": 24
+ },
+ "end": {
+ "line": 1441,
+ "column": 66
+ }
+ }
+ }
+ ],
+ "range": [
+ 51637,
+ 51727
+ ],
+ "loc": {
+ "start": {
+ "line": 1440,
+ "column": 27
+ },
+ "end": {
+ "line": 1442,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 51555,
+ 51727
+ ],
+ "loc": {
+ "start": {
+ "line": 1438,
+ "column": 20
+ },
+ "end": {
+ "line": 1442,
+ "column": 21
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " TODO: improve clarity/readability of this block",
+ "range": [
+ 51748,
+ 51798
+ ],
+ "loc": {
+ "start": {
+ "line": 1443,
+ "column": 20
+ },
+ "end": {
+ "line": 1443,
+ "column": 70
+ }
+ }
+ }
+ ]
+ },
{
"type": "ForStatement",
"init": {
@@ -150985,16 +120161,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 66632,
- 66633
+ 51827,
+ 51828
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 28
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 29
}
}
@@ -151004,31 +120180,31 @@
"value": 0,
"raw": "0",
"range": [
- 66634,
- 66635
+ 51829,
+ 51830
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 30
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 31
}
}
},
"range": [
- 66632,
- 66635
+ 51827,
+ 51830
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 28
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 31
}
}
@@ -151039,16 +120215,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 66637,
- 66640
+ 51832,
+ 51835
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 33
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 36
}
}
@@ -151060,16 +120236,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 66641,
- 66642
+ 51836,
+ 51837
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 37
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 38
}
}
@@ -151078,46 +120254,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 66643,
- 66649
+ 51838,
+ 51844
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 39
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 45
}
}
},
"range": [
- 66641,
- 66649
+ 51836,
+ 51844
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 37
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 45
}
}
},
"range": [
- 66637,
- 66649
+ 51832,
+ 51844
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 33
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 45
}
}
@@ -151125,16 +120301,16 @@
],
"kind": "let",
"range": [
- 66628,
- 66649
+ 51823,
+ 51844
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 24
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 45
}
}
@@ -151146,16 +120322,16 @@
"type": "Identifier",
"name": "w",
"range": [
- 66651,
- 66652
+ 51846,
+ 51847
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 47
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 48
}
}
@@ -151164,31 +120340,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 66653,
- 66656
+ 51848,
+ 51851
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 49
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 52
}
}
},
"range": [
- 66651,
- 66656
+ 51846,
+ 51851
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 47
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 52
}
}
@@ -151200,32 +120376,32 @@
"type": "Identifier",
"name": "w",
"range": [
- 66658,
- 66659
+ 51853,
+ 51854
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 54
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 55
}
}
},
"prefix": false,
"range": [
- 66658,
- 66661
+ 51853,
+ 51856
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 54
},
"end": {
- "line": 1784,
+ "line": 1444,
"column": 57
}
}
@@ -151242,16 +120418,16 @@
"type": "Identifier",
"name": "cS",
"range": [
- 66688,
- 66690
+ 51883,
+ 51885
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 24
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 26
}
}
@@ -151265,16 +120441,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 66693,
- 66696
+ 51888,
+ 51891
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 29
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 32
}
}
@@ -151283,31 +120459,31 @@
"type": "Identifier",
"name": "trim",
"range": [
- 66697,
- 66701
+ 51892,
+ 51896
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 33
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 37
}
}
},
"range": [
- 66693,
- 66701
+ 51888,
+ 51896
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 29
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 37
}
}
@@ -151320,16 +120496,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 66702,
- 66703
+ 51897,
+ 51898
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 38
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 39
}
}
@@ -151338,77 +120514,77 @@
"type": "Identifier",
"name": "w",
"range": [
- 66704,
- 66705
+ 51899,
+ 51900
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 40
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 41
}
}
},
"range": [
- 66702,
- 66706
+ 51897,
+ 51901
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 38
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 42
}
}
}
],
"range": [
- 66693,
- 66707
+ 51888,
+ 51902
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 29
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 43
}
}
},
"range": [
- 66688,
- 66707
+ 51883,
+ 51902
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 24
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 43
}
}
},
"range": [
- 66688,
- 66708
+ 51883,
+ 51903
],
"loc": {
"start": {
- "line": 1785,
+ "line": 1445,
"column": 24
},
"end": {
- "line": 1785,
+ "line": 1445,
"column": 44
}
}
@@ -151422,16 +120598,16 @@
"type": "Identifier",
"name": "occur",
"range": [
- 66733,
- 66738
+ 51928,
+ 51933
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 24
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 29
}
}
@@ -151445,16 +120621,16 @@
"type": "Identifier",
"name": "hasArg",
"range": [
- 66741,
- 66747
+ 51936,
+ 51942
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 32
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 38
}
}
@@ -151463,31 +120639,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 66748,
- 66752
+ 51943,
+ 51947
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 39
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 43
}
}
},
"range": [
- 66741,
- 66752
+ 51936,
+ 51947
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 32
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 43
}
}
@@ -151496,16 +120672,16 @@
{
"type": "ThisExpression",
"range": [
- 66753,
- 66757
+ 51948,
+ 51952
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 44
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 48
}
}
@@ -151514,16 +120690,16 @@
"type": "Identifier",
"name": "cS",
"range": [
- 66759,
- 66761
+ 51954,
+ 51956
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 50
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 52
}
}
@@ -151532,16 +120708,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 66763,
- 66771
+ 51958,
+ 51966
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 54
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 62
}
}
@@ -151550,62 +120726,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 66773,
- 66774
+ 51968,
+ 51969
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 64
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 65
}
}
}
],
"range": [
- 66741,
- 66775
+ 51936,
+ 51970
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 32
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 66
}
}
},
"range": [
- 66733,
- 66775
+ 51928,
+ 51970
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 24
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 66
}
}
},
"range": [
- 66733,
- 66776
+ 51928,
+ 51971
],
"loc": {
"start": {
- "line": 1786,
+ "line": 1446,
"column": 24
},
"end": {
- "line": 1786,
+ "line": 1446,
"column": 67
}
}
@@ -151621,16 +120797,16 @@
"type": "Identifier",
"name": "highlight",
"range": [
- 66801,
- 66810
+ 51996,
+ 52005
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 24
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 33
}
}
@@ -151639,31 +120815,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 66811,
- 66815
+ 52006,
+ 52010
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 34
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 38
}
}
},
"range": [
- 66801,
- 66815
+ 51996,
+ 52010
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 24
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 38
}
}
@@ -151672,16 +120848,16 @@
{
"type": "ThisExpression",
"range": [
- 66816,
- 66820
+ 52011,
+ 52015
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 39
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 43
}
}
@@ -151690,16 +120866,16 @@
"type": "Identifier",
"name": "cS",
"range": [
- 66822,
- 66824
+ 52017,
+ 52019
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 45
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 47
}
}
@@ -151708,16 +120884,16 @@
"type": "Identifier",
"name": "occur",
"range": [
- 66826,
- 66831
+ 52021,
+ 52026
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 49
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 54
}
}
@@ -151729,16 +120905,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 66833,
- 66837
+ 52028,
+ 52032
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 56
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 60
}
}
@@ -151747,62 +120923,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 66838,
- 66839
+ 52033,
+ 52034
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 61
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 62
}
}
},
"range": [
- 66833,
- 66840
+ 52028,
+ 52035
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 56
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 63
}
}
}
],
"range": [
- 66801,
- 66841
+ 51996,
+ 52036
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 24
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 64
}
}
},
"range": [
- 66801,
- 66842
+ 51996,
+ 52037
],
"loc": {
"start": {
- "line": 1787,
+ "line": 1447,
"column": 24
},
"end": {
- "line": 1787,
+ "line": 1447,
"column": 65
}
}
@@ -151811,55 +120987,146 @@
"type": "IfStatement",
"test": {
"type": "LogicalExpression",
- "operator": "&&",
+ "operator": "||",
"left": {
- "type": "Identifier",
- "name": "hasMultiOrSA",
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "Identifier",
+ "name": "hasMultiOrSA",
+ "range": [
+ 52066,
+ 52078
+ ],
+ "loc": {
+ "start": {
+ "line": 1448,
+ "column": 28
+ },
+ "end": {
+ "line": 1448,
+ "column": 40
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "occur",
+ "range": [
+ 52082,
+ 52087
+ ],
+ "loc": {
+ "start": {
+ "line": 1448,
+ "column": 44
+ },
+ "end": {
+ "line": 1448,
+ "column": 49
+ }
+ }
+ },
"range": [
- 66870,
- 66882
+ 52066,
+ 52087
],
"loc": {
"start": {
- "line": 1788,
- "column": 27
+ "line": 1448,
+ "column": 28
},
"end": {
- "line": 1788,
- "column": 39
+ "line": 1448,
+ "column": 49
}
}
},
"right": {
- "type": "Identifier",
- "name": "occur",
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "Identifier",
+ "name": "hasMultiAndSA",
+ "range": [
+ 52121,
+ 52134
+ ],
+ "loc": {
+ "start": {
+ "line": 1449,
+ "column": 29
+ },
+ "end": {
+ "line": 1449,
+ "column": 42
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "Identifier",
+ "name": "occur",
+ "range": [
+ 52139,
+ 52144
+ ],
+ "loc": {
+ "start": {
+ "line": 1449,
+ "column": 47
+ },
+ "end": {
+ "line": 1449,
+ "column": 52
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 52138,
+ 52144
+ ],
+ "loc": {
+ "start": {
+ "line": 1449,
+ "column": 46
+ },
+ "end": {
+ "line": 1449,
+ "column": 52
+ }
+ }
+ },
"range": [
- 66886,
- 66891
+ 52121,
+ 52144
],
"loc": {
"start": {
- "line": 1788,
- "column": 43
+ "line": 1449,
+ "column": 29
},
"end": {
- "line": 1788,
- "column": 48
+ "line": 1449,
+ "column": 52
}
}
},
"range": [
- 66870,
- 66891
+ 52065,
+ 52145
],
"loc": {
"start": {
- "line": 1788,
+ "line": 1448,
"column": 27
},
"end": {
- "line": 1788,
- "column": 48
+ "line": 1449,
+ "column": 53
}
}
},
@@ -151870,48 +121137,48 @@
"type": "BreakStatement",
"label": null,
"range": [
- 66922,
- 66928
+ 52176,
+ 52182
],
"loc": {
"start": {
- "line": 1789,
+ "line": 1450,
"column": 28
},
"end": {
- "line": 1789,
+ "line": 1450,
"column": 34
}
}
}
],
"range": [
- 66892,
- 66954
+ 52146,
+ 52208
],
"loc": {
"start": {
- "line": 1788,
- "column": 49
+ "line": 1449,
+ "column": 54
},
"end": {
- "line": 1790,
+ "line": 1451,
"column": 25
}
}
},
"alternate": null,
"range": [
- 66867,
- 66954
+ 52062,
+ 52208
],
"loc": {
"start": {
- "line": 1788,
+ "line": 1448,
"column": 24
},
"end": {
- "line": 1790,
+ "line": 1451,
"column": 25
}
}
@@ -151922,72 +121189,126 @@
"type": "LogicalExpression",
"operator": "&&",
"left": {
- "type": "Identifier",
- "name": "hasMultiAndSA",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 52236,
+ 52241
+ ],
+ "loc": {
+ "start": {
+ "line": 1452,
+ "column": 27
+ },
+ "end": {
+ "line": 1452,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 52242,
+ 52249
+ ],
+ "loc": {
+ "start": {
+ "line": 1452,
+ "column": 33
+ },
+ "end": {
+ "line": 1452,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 52236,
+ 52249
+ ],
+ "loc": {
+ "start": {
+ "line": 1452,
+ "column": 27
+ },
+ "end": {
+ "line": 1452,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "sA",
+ "range": [
+ 52250,
+ 52252
+ ],
+ "loc": {
+ "start": {
+ "line": 1452,
+ "column": 41
+ },
+ "end": {
+ "line": 1452,
+ "column": 43
+ }
+ }
+ }
+ ],
"range": [
- 66982,
- 66995
+ 52236,
+ 52253
],
"loc": {
"start": {
- "line": 1791,
+ "line": 1452,
"column": 27
},
"end": {
- "line": 1791,
- "column": 40
+ "line": 1452,
+ "column": 44
}
}
},
"right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "Identifier",
- "name": "occur",
- "range": [
- 67000,
- 67005
- ],
- "loc": {
- "start": {
- "line": 1791,
- "column": 45
- },
- "end": {
- "line": 1791,
- "column": 50
- }
- }
- },
- "prefix": true,
+ "type": "Identifier",
+ "name": "occur",
"range": [
- 66999,
- 67005
+ 52257,
+ 52262
],
"loc": {
"start": {
- "line": 1791,
- "column": 44
+ "line": 1452,
+ "column": 48
},
"end": {
- "line": 1791,
- "column": 50
+ "line": 1452,
+ "column": 53
}
}
},
"range": [
- 66982,
- 67005
+ 52236,
+ 52262
],
"loc": {
"start": {
- "line": 1791,
+ "line": 1452,
"column": 27
},
"end": {
- "line": 1791,
- "column": 50
+ "line": 1452,
+ "column": 53
}
}
},
@@ -151998,82 +121319,102 @@
"type": "BreakStatement",
"label": null,
"range": [
- 67036,
- 67042
+ 52293,
+ 52299
],
"loc": {
"start": {
- "line": 1792,
+ "line": 1453,
"column": 28
},
"end": {
- "line": 1792,
+ "line": 1453,
"column": 34
}
}
}
],
"range": [
- 67006,
- 67068
+ 52263,
+ 52325
],
"loc": {
"start": {
- "line": 1791,
- "column": 51
+ "line": 1452,
+ "column": 54
},
"end": {
- "line": 1793,
+ "line": 1454,
"column": 25
}
}
},
"alternate": null,
"range": [
- 66979,
- 67068
+ 52233,
+ 52325
],
"loc": {
"start": {
- "line": 1791,
+ "line": 1452,
"column": 24
},
"end": {
- "line": 1793,
+ "line": 1454,
"column": 25
}
}
}
],
"range": [
- 66662,
- 67090
+ 51857,
+ 52347
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 58
},
"end": {
- "line": 1794,
+ "line": 1455,
"column": 21
}
}
},
"range": [
- 66624,
- 67090
+ 51819,
+ 52347
],
"loc": {
"start": {
- "line": 1784,
+ "line": 1444,
"column": 20
},
"end": {
- "line": 1794,
+ "line": 1455,
"column": 21
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " TODO: improve clarity/readability of this block",
+ "range": [
+ 51748,
+ 51798
+ ],
+ "loc": {
+ "start": {
+ "line": 1443,
+ "column": 20
+ },
+ "end": {
+ "line": 1443,
+ "column": 70
+ }
+ }
+ }
+ ]
},
{
"type": "ExpressionStatement",
@@ -152087,16 +121428,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 67111,
- 67120
+ 52368,
+ 52377
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 20
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 29
}
}
@@ -152105,31 +121446,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 67121,
- 67122
+ 52378,
+ 52379
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 30
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 31
}
}
},
"range": [
- 67111,
- 67123
+ 52368,
+ 52380
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 20
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 32
}
}
@@ -152138,62 +121479,62 @@
"type": "Identifier",
"name": "occur",
"range": [
- 67126,
- 67131
+ 52383,
+ 52388
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 35
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 40
}
}
},
"range": [
- 67111,
- 67131
+ 52368,
+ 52388
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 20
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 40
}
}
},
"range": [
- 67111,
- 67132
+ 52368,
+ 52389
],
"loc": {
"start": {
- "line": 1795,
+ "line": 1456,
"column": 20
},
"end": {
- "line": 1795,
+ "line": 1456,
"column": 41
}
}
}
],
"range": [
- 66468,
- 67150
+ 51439,
+ 52408
],
"loc": {
"start": {
- "line": 1780,
- "column": 49
+ "line": 1434,
+ "column": 70
},
"end": {
- "line": 1796,
+ "line": 1458,
"column": 17
}
},
@@ -152202,16 +121543,16 @@
"type": "Line",
"value": "single search parameter",
"range": [
- 67167,
- 67192
+ 52425,
+ 52450
],
"loc": {
"start": {
- "line": 1797,
+ "line": 1459,
"column": 16
},
"end": {
- "line": 1797,
+ "line": 1459,
"column": 41
}
}
@@ -152233,16 +121574,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 67236,
- 67245
+ 52494,
+ 52503
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 20
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 29
}
}
@@ -152251,31 +121592,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 67246,
- 67247
+ 52504,
+ 52505
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 30
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 31
}
}
},
"range": [
- 67236,
- 67248
+ 52494,
+ 52506
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 20
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 32
}
}
@@ -152289,16 +121630,16 @@
"type": "Identifier",
"name": "hasArg",
"range": [
- 67251,
- 67257
+ 52509,
+ 52515
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 35
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 41
}
}
@@ -152307,31 +121648,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 67258,
- 67262
+ 52516,
+ 52520
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 42
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 46
}
}
},
"range": [
- 67251,
- 67262
+ 52509,
+ 52520
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 35
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 46
}
}
@@ -152340,16 +121681,16 @@
{
"type": "ThisExpression",
"range": [
- 67263,
- 67267
+ 52521,
+ 52525
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 47
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 51
}
}
@@ -152363,16 +121704,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 67269,
- 67272
+ 52527,
+ 52530
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 53
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 56
}
}
@@ -152381,31 +121722,31 @@
"type": "Identifier",
"name": "trim",
"range": [
- 67273,
- 67277
+ 52531,
+ 52535
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 57
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 61
}
}
},
"range": [
- 67269,
- 67277
+ 52527,
+ 52535
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 53
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 61
}
}
@@ -152415,32 +121756,32 @@
"type": "Identifier",
"name": "sA",
"range": [
- 67278,
- 67280
+ 52536,
+ 52538
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 62
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 64
}
}
}
],
"range": [
- 67269,
- 67281
+ 52527,
+ 52539
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 53
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 65
}
}
@@ -152449,16 +121790,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 67283,
- 67291
+ 52541,
+ 52549
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 67
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 75
}
}
@@ -152467,62 +121808,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 67293,
- 67294
+ 52551,
+ 52552
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 77
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 78
}
}
}
],
"range": [
- 67251,
- 67295
+ 52509,
+ 52553
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 35
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 79
}
}
},
"range": [
- 67236,
- 67295
+ 52494,
+ 52553
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 20
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 79
}
}
},
"range": [
- 67236,
- 67296
+ 52494,
+ 52554
],
"loc": {
"start": {
- "line": 1799,
+ "line": 1461,
"column": 20
},
"end": {
- "line": 1799,
+ "line": 1461,
"column": 80
}
}
@@ -152538,16 +121879,16 @@
"type": "Identifier",
"name": "highlight",
"range": [
- 67317,
- 67326
+ 52575,
+ 52584
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 20
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 29
}
}
@@ -152556,31 +121897,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 67327,
- 67331
+ 52585,
+ 52589
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 30
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 34
}
}
},
"range": [
- 67317,
- 67331
+ 52575,
+ 52589
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 20
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 34
}
}
@@ -152589,16 +121930,16 @@
{
"type": "ThisExpression",
"range": [
- 67332,
- 67336
+ 52590,
+ 52594
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 35
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 39
}
}
@@ -152607,16 +121948,16 @@
"type": "Identifier",
"name": "sA",
"range": [
- 67338,
- 67340
+ 52596,
+ 52598
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 41
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 43
}
}
@@ -152628,16 +121969,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 67342,
- 67351
+ 52600,
+ 52609
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 45
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 54
}
}
@@ -152646,31 +121987,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 67352,
- 67353
+ 52610,
+ 52611
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 55
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 56
}
}
},
"range": [
- 67342,
- 67354
+ 52600,
+ 52612
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 45
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 57
}
}
@@ -152682,16 +122023,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 67356,
- 67360
+ 52614,
+ 52618
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 59
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 63
}
}
@@ -152700,78 +122041,78 @@
"type": "Identifier",
"name": "j",
"range": [
- 67361,
- 67362
+ 52619,
+ 52620
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 64
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 65
}
}
},
"range": [
- 67356,
- 67363
+ 52614,
+ 52621
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 59
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 66
}
}
}
],
"range": [
- 67317,
- 67364
+ 52575,
+ 52622
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 20
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 67
}
}
},
"range": [
- 67317,
- 67365
+ 52575,
+ 52623
],
"loc": {
"start": {
- "line": 1800,
+ "line": 1462,
"column": 20
},
"end": {
- "line": 1800,
+ "line": 1462,
"column": 68
}
}
}
],
"range": [
- 67214,
- 67383
+ 52472,
+ 52641
],
"loc": {
"start": {
- "line": 1798,
+ "line": 1460,
"column": 21
},
"end": {
- "line": 1801,
+ "line": 1463,
"column": 17
}
},
@@ -152780,16 +122121,16 @@
"type": "Line",
"value": "single search parameter",
"range": [
- 67167,
- 67192
+ 52425,
+ 52450
],
"loc": {
"start": {
- "line": 1797,
+ "line": 1459,
"column": 16
},
"end": {
- "line": 1797,
+ "line": 1459,
"column": 41
}
}
@@ -152797,35 +122138,35 @@
]
},
"range": [
- 66435,
- 67383
+ 51385,
+ 52641
],
"loc": {
"start": {
- "line": 1780,
+ "line": 1434,
"column": 16
},
"end": {
- "line": 1801,
+ "line": 1463,
"column": 17
}
},
"leadingComments": [
{
"type": "Line",
- "value": "multiple sarch parameters",
+ "value": "detect operators or array query",
"range": [
- 66391,
- 66418
+ 51335,
+ 51368
],
"loc": {
"start": {
- "line": 1779,
+ "line": 1433,
"column": 16
},
"end": {
- "line": 1779,
- "column": 43
+ "line": 1433,
+ "column": 49
}
}
}
@@ -152835,16 +122176,16 @@
"type": "Line",
"value": "else single param",
"range": [
- 67383,
- 67402
+ 52641,
+ 52660
],
"loc": {
"start": {
- "line": 1801,
+ "line": 1463,
"column": 17
},
"end": {
- "line": 1801,
+ "line": 1463,
"column": 36
}
}
@@ -152863,16 +122204,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 67424,
- 67433
+ 52682,
+ 52691
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 20
},
"end": {
- "line": 1803,
+ "line": 1465,
"column": 29
}
}
@@ -152881,47 +122222,47 @@
"type": "Identifier",
"name": "j",
"range": [
- 67434,
- 67435
+ 52692,
+ 52693
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 30
},
"end": {
- "line": 1803,
+ "line": 1465,
"column": 31
}
}
},
"range": [
- 67424,
- 67436
+ 52682,
+ 52694
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 20
},
"end": {
- "line": 1803,
+ "line": 1465,
"column": 32
}
}
},
"prefix": true,
"range": [
- 67423,
- 67436
+ 52681,
+ 52694
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 19
},
"end": {
- "line": 1803,
+ "line": 1465,
"column": 32
}
}
@@ -152938,16 +122279,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 67459,
- 67469
+ 52717,
+ 52727
],
"loc": {
"start": {
- "line": 1804,
+ "line": 1466,
"column": 20
},
"end": {
- "line": 1804,
+ "line": 1466,
"column": 30
}
}
@@ -152957,78 +122298,78 @@
"value": false,
"raw": "false",
"range": [
- 67472,
- 67477
+ 52730,
+ 52735
],
"loc": {
"start": {
- "line": 1804,
+ "line": 1466,
"column": 33
},
"end": {
- "line": 1804,
+ "line": 1466,
"column": 38
}
}
},
"range": [
- 67459,
- 67477
+ 52717,
+ 52735
],
"loc": {
"start": {
- "line": 1804,
+ "line": 1466,
"column": 20
},
"end": {
- "line": 1804,
+ "line": 1466,
"column": 38
}
}
},
"range": [
- 67459,
- 67478
+ 52717,
+ 52736
],
"loc": {
"start": {
- "line": 1804,
+ "line": 1466,
"column": 20
},
"end": {
- "line": 1804,
+ "line": 1466,
"column": 39
}
}
}
],
"range": [
- 67437,
- 67496
+ 52695,
+ 52754
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 33
},
"end": {
- "line": 1805,
+ "line": 1467,
"column": 17
}
}
},
"alternate": null,
"range": [
- 67420,
- 67496
+ 52678,
+ 52754
],
"loc": {
"start": {
- "line": 1803,
+ "line": 1465,
"column": 16
},
"end": {
- "line": 1805,
+ "line": 1467,
"column": 17
}
},
@@ -153037,16 +122378,16 @@
"type": "Line",
"value": "else single param",
"range": [
- 67383,
- 67402
+ 52641,
+ 52660
],
"loc": {
"start": {
- "line": 1801,
+ "line": 1463,
"column": 17
},
"end": {
- "line": 1801,
+ "line": 1463,
"column": 36
}
}
@@ -153064,16 +122405,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 67516,
- 67520
+ 52774,
+ 52778
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 19
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 23
}
}
@@ -153082,31 +122423,31 @@
"type": "Identifier",
"name": "singleSearchFlt",
"range": [
- 67521,
- 67536
+ 52779,
+ 52794
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 24
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 39
}
}
},
"range": [
- 67516,
- 67536
+ 52774,
+ 52794
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 19
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 39
}
}
@@ -153118,16 +122459,16 @@
"type": "Identifier",
"name": "occurence",
"range": [
- 67540,
- 67549
+ 52798,
+ 52807
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 43
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 52
}
}
@@ -153136,46 +122477,46 @@
"type": "Identifier",
"name": "j",
"range": [
- 67550,
- 67551
+ 52808,
+ 52809
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 53
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 54
}
}
},
"range": [
- 67540,
- 67552
+ 52798,
+ 52810
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 43
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 55
}
}
},
"range": [
- 67516,
- 67552
+ 52774,
+ 52810
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 19
},
"end": {
- "line": 1806,
+ "line": 1468,
"column": 55
}
}
@@ -153192,16 +122533,16 @@
"type": "Identifier",
"name": "singleFltRowValid",
"range": [
- 67575,
- 67592
+ 52833,
+ 52850
],
"loc": {
"start": {
- "line": 1807,
+ "line": 1469,
"column": 20
},
"end": {
- "line": 1807,
+ "line": 1469,
"column": 37
}
}
@@ -153211,1349 +122552,342 @@
"value": true,
"raw": "true",
"range": [
- 67595,
- 67599
+ 52853,
+ 52857
],
"loc": {
"start": {
- "line": 1807,
+ "line": 1469,
"column": 40
},
"end": {
- "line": 1807,
+ "line": 1469,
"column": 44
}
}
},
"range": [
- 67575,
- 67599
+ 52833,
+ 52857
],
"loc": {
"start": {
- "line": 1807,
+ "line": 1469,
"column": 20
},
"end": {
- "line": 1807,
+ "line": 1469,
"column": 44
}
}
},
"range": [
- 67575,
- 67600
+ 52833,
+ 52858
],
"loc": {
"start": {
- "line": 1807,
+ "line": 1469,
"column": 20
},
"end": {
- "line": 1807,
+ "line": 1469,
"column": 45
}
}
}
],
"range": [
- 67553,
- 67618
+ 52811,
+ 52876
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 56
},
"end": {
- "line": 1808,
+ "line": 1470,
"column": 17
}
}
},
"alternate": null,
"range": [
- 67513,
- 67618
+ 52771,
+ 52876
],
"loc": {
"start": {
- "line": 1806,
+ "line": 1468,
"column": 16
},
"end": {
- "line": 1808,
+ "line": 1470,
"column": 17
}
}
},
{
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 67638,
- 67642
- ],
- "loc": {
- "start": {
- "line": 1809,
- "column": 19
- },
- "end": {
- "line": 1809,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 67643,
- 67655
- ],
- "loc": {
- "start": {
- "line": 1809,
- "column": 24
- },
- "end": {
- "line": 1809,
- "column": 36
- }
- }
- },
- "range": [
- 67638,
- 67655
- ],
- "loc": {
- "start": {
- "line": 1809,
- "column": 19
- },
- "end": {
- "line": 1809,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 67678,
- 67681
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 20
- },
- "end": {
- "line": 1810,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 67682,
- 67693
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 24
- },
- "end": {
- "line": 1810,
- "column": 35
- }
- }
- },
- "range": [
- 67678,
- 67693
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 20
- },
- "end": {
- "line": 1810,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "buildIcon",
- "range": [
- 67694,
- 67703
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 36
- },
- "end": {
- "line": 1810,
- "column": 45
- }
- }
- },
- "range": [
- 67678,
- 67703
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 20
- },
- "end": {
- "line": 1810,
- "column": 45
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 67704,
- 67705
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 46
- },
- "end": {
- "line": 1810,
- "column": 47
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 67707,
- 67711
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 49
- },
- "end": {
- "line": 1810,
- "column": 53
- }
- }
- }
- ],
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 67678,
- 67712
+ 52894,
+ 52898
],
"loc": {
"start": {
- "line": 1810,
+ "line": 1472,
+ "column": 16
+ },
+ "end": {
+ "line": 1472,
"column": 20
- },
- "end": {
- "line": 1810,
- "column": 54
}
}
},
- "range": [
- 67678,
- 67713
- ],
- "loc": {
- "start": {
- "line": 1810,
- "column": 20
- },
- "end": {
- "line": 1810,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 67656,
- 67731
- ],
- "loc": {
- "start": {
- "line": 1809,
- "column": 37
- },
- "end": {
- "line": 1811,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 67635,
- 67731
- ],
- "loc": {
- "start": {
- "line": 1809,
- "column": 16
- },
- "end": {
- "line": 1811,
- "column": 17
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 67751,
- 67755
- ],
- "loc": {
- "start": {
- "line": 1812,
- "column": 19
- },
- "end": {
- "line": 1812,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "markActiveColumns",
- "range": [
- 67756,
- 67773
- ],
- "loc": {
- "start": {
- "line": 1812,
- "column": 24
- },
- "end": {
- "line": 1812,
- "column": 41
- }
- }
- },
- "range": [
- 67751,
- 67773
- ],
- "loc": {
- "start": {
- "line": 1812,
- "column": 19
- },
- "end": {
- "line": 1812,
- "column": 41
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "k",
- "range": [
- 67799,
- 67800
- ],
- "loc": {
- "start": {
- "line": 1813,
- "column": 23
- },
- "end": {
- "line": 1813,
- "column": 24
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 67805,
- 67809
- ],
- "loc": {
- "start": {
- "line": 1813,
- "column": 29
- },
- "end": {
- "line": 1813,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refRow",
- "range": [
- 67810,
- 67816
- ],
- "loc": {
- "start": {
- "line": 1813,
- "column": 34
- },
- "end": {
- "line": 1813,
- "column": 40
- }
- }
- },
- "range": [
- 67805,
- 67816
- ],
- "loc": {
- "start": {
- "line": 1813,
- "column": 29
- },
- "end": {
- "line": 1813,
- "column": 40
- }
- }
- },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
"range": [
- 67799,
- 67816
+ 52899,
+ 52906
],
"loc": {
"start": {
- "line": 1813,
- "column": 23
- },
- "end": {
- "line": 1813,
- "column": 40
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 67846,
- 67850
- ],
- "loc": {
- "start": {
- "line": 1814,
- "column": 27
- },
- "end": {
- "line": 1814,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onBeforeActiveColumn",
- "range": [
- 67851,
- 67871
- ],
- "loc": {
- "start": {
- "line": 1814,
- "column": 32
- },
- "end": {
- "line": 1814,
- "column": 52
- }
- }
- },
- "range": [
- 67846,
- 67871
- ],
- "loc": {
- "start": {
- "line": 1814,
- "column": 27
- },
- "end": {
- "line": 1814,
- "column": 52
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 67902,
- 67906
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 28
- },
- "end": {
- "line": 1815,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onBeforeActiveColumn",
- "range": [
- 67907,
- 67927
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 33
- },
- "end": {
- "line": 1815,
- "column": 53
- }
- }
- },
- "range": [
- 67902,
- 67927
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 28
- },
- "end": {
- "line": 1815,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "call",
- "range": [
- 67928,
- 67932
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 54
- },
- "end": {
- "line": 1815,
- "column": 58
- }
- }
- },
- "range": [
- 67902,
- 67932
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 28
- },
- "end": {
- "line": 1815,
- "column": 58
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 67933,
- 67937
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 59
- },
- "end": {
- "line": 1815,
- "column": 63
- }
- }
- },
- {
- "type": "ThisExpression",
- "range": [
- 67939,
- 67943
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 65
- },
- "end": {
- "line": 1815,
- "column": 69
- }
- }
- },
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 67945,
- 67946
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 71
- },
- "end": {
- "line": 1815,
- "column": 72
- }
- }
- }
- ],
- "range": [
- 67902,
- 67947
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 28
- },
- "end": {
- "line": 1815,
- "column": 73
- }
- }
- },
- "range": [
- 67902,
- 67948
- ],
- "loc": {
- "start": {
- "line": 1815,
- "column": 28
- },
- "end": {
- "line": 1815,
- "column": 74
- }
- }
- }
- ],
- "range": [
- 67872,
- 67974
- ],
- "loc": {
- "start": {
- "line": 1814,
- "column": 53
- },
- "end": {
- "line": 1816,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 67843,
- 67974
- ],
- "loc": {
- "start": {
- "line": 1814,
- "column": 24
- },
- "end": {
- "line": 1816,
- "column": 25
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 67999,
- 68002
- ],
- "loc": {
- "start": {
- "line": 1817,
- "column": 24
- },
- "end": {
- "line": 1817,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "addClass",
- "range": [
- 68003,
- 68011
- ],
- "loc": {
- "start": {
- "line": 1817,
- "column": 28
- },
- "end": {
- "line": 1817,
- "column": 36
- }
- }
- },
- "range": [
- 67999,
- 68011
- ],
- "loc": {
- "start": {
- "line": 1817,
- "column": 24
- },
- "end": {
- "line": 1817,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68041,
- 68045
- ],
- "loc": {
- "start": {
- "line": 1818,
- "column": 28
- },
- "end": {
- "line": 1818,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getHeaderElement",
- "range": [
- 68046,
- 68062
- ],
- "loc": {
- "start": {
- "line": 1818,
- "column": 33
- },
- "end": {
- "line": 1818,
- "column": 49
- }
- }
- },
- "range": [
- 68041,
- 68062
- ],
- "loc": {
- "start": {
- "line": 1818,
- "column": 28
- },
- "end": {
- "line": 1818,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 68063,
- 68064
- ],
- "loc": {
- "start": {
- "line": 1818,
- "column": 50
- },
- "end": {
- "line": 1818,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 68041,
- 68065
- ],
- "loc": {
- "start": {
- "line": 1818,
- "column": 28
- },
- "end": {
- "line": 1818,
- "column": 52
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68095,
- 68099
- ],
- "loc": {
- "start": {
- "line": 1819,
- "column": 28
- },
- "end": {
- "line": 1819,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeColumnsCssClass",
- "range": [
- 68100,
- 68121
- ],
- "loc": {
- "start": {
- "line": 1819,
- "column": 33
- },
- "end": {
- "line": 1819,
- "column": 54
- }
- }
- },
- "range": [
- 68095,
- 68121
- ],
- "loc": {
- "start": {
- "line": 1819,
- "column": 28
- },
- "end": {
- "line": 1819,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 67999,
- 68122
- ],
- "loc": {
- "start": {
- "line": 1817,
- "column": 24
- },
- "end": {
- "line": 1819,
- "column": 55
- }
- }
- },
- "range": [
- 67999,
- 68123
- ],
- "loc": {
- "start": {
- "line": 1817,
- "column": 24
- },
- "end": {
- "line": 1819,
- "column": 56
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68151,
- 68155
- ],
- "loc": {
- "start": {
- "line": 1820,
- "column": 27
- },
- "end": {
- "line": 1820,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onAfterActiveColumn",
- "range": [
- 68156,
- 68175
- ],
- "loc": {
- "start": {
- "line": 1820,
- "column": 32
- },
- "end": {
- "line": 1820,
- "column": 51
- }
- }
- },
- "range": [
- 68151,
- 68175
- ],
- "loc": {
- "start": {
- "line": 1820,
- "column": 27
- },
- "end": {
- "line": 1820,
- "column": 51
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68206,
- 68210
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 28
- },
- "end": {
- "line": 1821,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onAfterActiveColumn",
- "range": [
- 68211,
- 68230
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 33
- },
- "end": {
- "line": 1821,
- "column": 52
- }
- }
- },
- "range": [
- 68206,
- 68230
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 28
- },
- "end": {
- "line": 1821,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "call",
- "range": [
- 68231,
- 68235
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 53
- },
- "end": {
- "line": 1821,
- "column": 57
- }
- }
- },
- "range": [
- 68206,
- 68235
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 28
- },
- "end": {
- "line": 1821,
- "column": 57
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 68236,
- 68240
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 58
- },
- "end": {
- "line": 1821,
- "column": 62
- }
- }
- },
- {
- "type": "ThisExpression",
- "range": [
- 68242,
- 68246
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 64
- },
- "end": {
- "line": 1821,
- "column": 68
- }
- }
- },
- {
- "type": "Identifier",
- "name": "j",
- "range": [
- 68248,
- 68249
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 70
- },
- "end": {
- "line": 1821,
- "column": 71
- }
- }
- }
- ],
- "range": [
- 68206,
- 68250
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 28
- },
- "end": {
- "line": 1821,
- "column": 72
- }
- }
- },
- "range": [
- 68206,
- 68251
- ],
- "loc": {
- "start": {
- "line": 1821,
- "column": 28
- },
- "end": {
- "line": 1821,
- "column": 73
- }
- }
- }
- ],
- "range": [
- 68176,
- 68277
- ],
- "loc": {
- "start": {
- "line": 1820,
- "column": 52
- },
- "end": {
- "line": 1822,
- "column": 25
- }
- }
- },
- "alternate": null,
- "range": [
- 68148,
- 68277
- ],
- "loc": {
- "start": {
- "line": 1820,
- "column": 24
- },
- "end": {
- "line": 1822,
- "column": 25
- }
- }
- }
- ],
- "range": [
- 67817,
- 68299
- ],
- "loc": {
- "start": {
- "line": 1813,
- "column": 41
- },
- "end": {
- "line": 1823,
+ "line": 1472,
"column": 21
+ },
+ "end": {
+ "line": 1472,
+ "column": 28
}
}
},
- "alternate": null,
"range": [
- 67796,
- 68299
+ 52894,
+ 52906
],
"loc": {
"start": {
- "line": 1813,
- "column": 20
+ "line": 1472,
+ "column": 16
},
"end": {
- "line": 1823,
- "column": 21
+ "line": 1472,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 52907,
+ 52911
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 29
+ },
+ "end": {
+ "line": 1472,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 52894,
+ 52911
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 16
+ },
+ "end": {
+ "line": 1472,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "cell-processed",
+ "raw": "'cell-processed'",
+ "range": [
+ 52912,
+ 52928
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 34
+ },
+ "end": {
+ "line": 1472,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 52930,
+ 52934
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 52
+ },
+ "end": {
+ "line": 1472,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 52936,
+ 52937
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 58
+ },
+ "end": {
+ "line": 1472,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "cell",
+ "range": [
+ 52939,
+ 52943
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 61
+ },
+ "end": {
+ "line": 1472,
+ "column": 65
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 52944,
+ 52945
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 66
+ },
+ "end": {
+ "line": 1472,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 52939,
+ 52946
+ ],
+ "loc": {
+ "start": {
+ "line": 1472,
+ "column": 61
+ },
+ "end": {
+ "line": 1472,
+ "column": 68
}
}
}
],
"range": [
- 67774,
- 68317
+ 52894,
+ 52947
],
"loc": {
"start": {
- "line": 1812,
- "column": 42
+ "line": 1472,
+ "column": 16
},
"end": {
- "line": 1824,
- "column": 17
+ "line": 1472,
+ "column": 69
}
}
},
- "alternate": null,
"range": [
- 67748,
- 68317
+ 52894,
+ 52948
],
"loc": {
"start": {
- "line": 1812,
+ "line": 1472,
"column": 16
},
"end": {
- "line": 1824,
- "column": 17
+ "line": 1472,
+ "column": 70
}
}
}
],
"range": [
- 65479,
- 68331
+ 50428,
+ 52962
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 40
},
"end": {
- "line": 1825,
+ "line": 1473,
"column": 13
}
}
},
"range": [
- 65451,
- 68331
+ 50400,
+ 52962
],
"loc": {
"start": {
- "line": 1758,
+ "line": 1411,
"column": 12
},
"end": {
- "line": 1825,
+ "line": 1473,
"column": 13
}
},
@@ -154562,16 +122896,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 65406,
- 65438
+ 50355,
+ 50387
],
"loc": {
"start": {
- "line": 1757,
+ "line": 1410,
"column": 12
},
"end": {
- "line": 1757,
+ "line": 1410,
"column": 44
}
}
@@ -154582,16 +122916,16 @@
"type": "Line",
"value": "for j",
"range": [
- 68331,
- 68338
+ 52962,
+ 52969
],
"loc": {
"start": {
- "line": 1825,
+ "line": 1473,
"column": 13
},
"end": {
- "line": 1825,
+ "line": 1473,
"column": 20
}
}
@@ -154609,16 +122943,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 68355,
- 68359
+ 52986,
+ 52990
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 15
},
"end": {
- "line": 1827,
+ "line": 1475,
"column": 19
}
}
@@ -154627,31 +122961,31 @@
"type": "Identifier",
"name": "singleSearchFlt",
"range": [
- 68360,
- 68375
+ 52991,
+ 53006
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 20
},
"end": {
- "line": 1827,
+ "line": 1475,
"column": 35
}
}
},
"range": [
- 68355,
- 68375
+ 52986,
+ 53006
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 15
},
"end": {
- "line": 1827,
+ "line": 1475,
"column": 35
}
}
@@ -154660,31 +122994,31 @@
"type": "Identifier",
"name": "singleFltRowValid",
"range": [
- 68379,
- 68396
+ 53010,
+ 53027
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 39
},
"end": {
- "line": 1827,
+ "line": 1475,
"column": 56
}
}
},
"range": [
- 68355,
- 68396
+ 52986,
+ 53027
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 15
},
"end": {
- "line": 1827,
+ "line": 1475,
"column": 56
}
}
@@ -154701,16 +123035,16 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 68415,
- 68425
+ 53046,
+ 53056
],
"loc": {
"start": {
- "line": 1828,
+ "line": 1476,
"column": 16
},
"end": {
- "line": 1828,
+ "line": 1476,
"column": 26
}
}
@@ -154720,78 +123054,78 @@
"value": true,
"raw": "true",
"range": [
- 68428,
- 68432
+ 53059,
+ 53063
],
"loc": {
"start": {
- "line": 1828,
+ "line": 1476,
"column": 29
},
"end": {
- "line": 1828,
+ "line": 1476,
"column": 33
}
}
},
"range": [
- 68415,
- 68432
+ 53046,
+ 53063
],
"loc": {
"start": {
- "line": 1828,
+ "line": 1476,
"column": 16
},
"end": {
- "line": 1828,
+ "line": 1476,
"column": 33
}
}
},
"range": [
- 68415,
- 68433
+ 53046,
+ 53064
],
"loc": {
"start": {
- "line": 1828,
+ "line": 1476,
"column": 16
},
"end": {
- "line": 1828,
+ "line": 1476,
"column": 34
}
}
}
],
"range": [
- 68397,
- 68447
+ 53028,
+ 53078
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 57
},
"end": {
- "line": 1829,
+ "line": 1477,
"column": 13
}
}
},
"alternate": null,
"range": [
- 68352,
- 68447
+ 52983,
+ 53078
],
"loc": {
"start": {
- "line": 1827,
+ "line": 1475,
"column": 12
},
"end": {
- "line": 1829,
+ "line": 1477,
"column": 13
}
},
@@ -154800,16 +123134,16 @@
"type": "Line",
"value": "for j",
"range": [
- 68331,
- 68338
+ 52962,
+ 52969
],
"loc": {
"start": {
- "line": 1825,
+ "line": 1473,
"column": 13
},
"end": {
- "line": 1825,
+ "line": 1473,
"column": 20
}
}
@@ -154825,32 +123159,32 @@
"type": "Identifier",
"name": "isRowValid",
"range": [
- 68465,
- 68475
+ 53096,
+ 53106
],
"loc": {
"start": {
- "line": 1831,
+ "line": 1479,
"column": 16
},
"end": {
- "line": 1831,
+ "line": 1479,
"column": 26
}
}
},
"prefix": true,
"range": [
- 68464,
- 68475
+ 53095,
+ 53106
],
"loc": {
"start": {
- "line": 1831,
+ "line": 1479,
"column": 15
},
"end": {
- "line": 1831,
+ "line": 1479,
"column": 26
}
}
@@ -154868,16 +123202,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 68494,
- 68498
+ 53125,
+ 53129
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 16
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 20
}
}
@@ -154886,31 +123220,31 @@
"type": "Identifier",
"name": "validateRow",
"range": [
- 68499,
- 68510
+ 53130,
+ 53141
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 21
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 32
}
}
},
"range": [
- 68494,
- 68510
+ 53125,
+ 53141
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 16
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 32
}
}
@@ -154920,16 +123254,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 68511,
- 68512
+ 53142,
+ 53143
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 33
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 34
}
}
@@ -154939,843 +123273,117 @@
"value": false,
"raw": "false",
"range": [
- 68514,
- 68519
+ 53145,
+ 53150
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 36
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 41
}
}
}
],
"range": [
- 68494,
- 68520
+ 53125,
+ 53151
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 16
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 42
}
}
},
"range": [
- 68494,
- 68521
+ 53125,
+ 53152
],
"loc": {
"start": {
- "line": 1832,
+ "line": 1480,
"column": 16
},
"end": {
- "line": 1832,
+ "line": 1480,
"column": 43
}
}
},
{
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "UpdateExpression",
+ "operator": "++",
+ "argument": {
"type": "Identifier",
- "name": "Mod",
+ "name": "hiddenrows",
"range": [
- 68541,
- 68544
+ 53169,
+ 53179
],
"loc": {
"start": {
- "line": 1833,
- "column": 19
- },
- "end": {
- "line": 1833,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 68545,
- 68558
- ],
- "loc": {
- "start": {
- "line": 1833,
- "column": 23
- },
- "end": {
- "line": 1833,
- "column": 36
- }
- }
- },
- "range": [
- 68541,
- 68558
- ],
- "loc": {
- "start": {
- "line": 1833,
- "column": 19
- },
- "end": {
- "line": 1833,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 68581,
- 68584
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 20
- },
- "end": {
- "line": 1834,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 68585,
- 68598
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 24
- },
- "end": {
- "line": 1834,
- "column": 37
- }
- }
- },
- "range": [
- 68581,
- 68598
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 20
- },
- "end": {
- "line": 1834,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "removeRowBg",
- "range": [
- 68599,
- 68610
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 38
- },
- "end": {
- "line": 1834,
- "column": 49
- }
- }
- },
- "range": [
- 68581,
- 68610
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 20
- },
- "end": {
- "line": 1834,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 68611,
- 68612
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 50
- },
- "end": {
- "line": 1834,
- "column": 51
- }
- }
- }
- ],
- "range": [
- 68581,
- 68613
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 20
- },
- "end": {
- "line": 1834,
- "column": 52
- }
- }
- },
- "range": [
- 68581,
- 68614
- ],
- "loc": {
- "start": {
- "line": 1834,
- "column": 20
- },
- "end": {
- "line": 1834,
- "column": 53
- }
- }
- }
- ],
- "range": [
- 68559,
- 68632
- ],
- "loc": {
- "start": {
- "line": 1833,
- "column": 37
- },
- "end": {
- "line": 1835,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 68538,
- 68632
- ],
- "loc": {
- "start": {
- "line": 1833,
- "column": 16
- },
- "end": {
- "line": 1835,
- "column": 17
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " always visible rows need to be counted as valid",
- "range": [
- 68649,
- 68699
- ],
- "loc": {
- "start": {
- "line": 1836,
+ "line": 1481,
"column": 16
},
"end": {
- "line": 1836,
- "column": 66
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68719,
- 68723
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 19
- },
- "end": {
- "line": 1837,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasVisibleRows",
- "range": [
- 68724,
- 68738
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 24
- },
- "end": {
- "line": 1837,
- "column": 38
- }
- }
- },
- "range": [
- 68719,
- 68738
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 19
- },
- "end": {
- "line": 1837,
- "column": 38
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68742,
- 68746
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 42
- },
- "end": {
- "line": 1837,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "visibleRows",
- "range": [
- 68747,
- 68758
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 47
- },
- "end": {
- "line": 1837,
- "column": 58
- }
- }
- },
- "range": [
- 68742,
- 68758
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 42
- },
- "end": {
- "line": 1837,
- "column": 58
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "indexOf",
- "range": [
- 68759,
- 68766
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 59
- },
- "end": {
- "line": 1837,
- "column": 66
- }
- }
- },
- "range": [
- 68742,
- 68766
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 42
- },
- "end": {
- "line": 1837,
- "column": 66
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 68767,
- 68768
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 67
- },
- "end": {
- "line": 1837,
- "column": 68
- }
- }
- }
- ],
- "range": [
- 68742,
- 68769
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 42
- },
- "end": {
- "line": 1837,
- "column": 69
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "-",
- "argument": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 68775,
- 68776
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 75
- },
- "end": {
- "line": 1837,
- "column": 76
- }
- }
- },
- "prefix": true,
- "range": [
- 68774,
- 68776
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 74
- },
- "end": {
- "line": 1837,
- "column": 76
- }
- }
- },
- "range": [
- 68742,
- 68776
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 42
- },
- "end": {
- "line": 1837,
- "column": 76
+ "line": 1481,
+ "column": 26
}
}
},
+ "prefix": false,
"range": [
- 68719,
- 68776
+ 53169,
+ 53181
],
"loc": {
"start": {
- "line": 1837,
- "column": 19
+ "line": 1481,
+ "column": 16
},
"end": {
- "line": 1837,
- "column": 76
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68799,
- 68803
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 20
- },
- "end": {
- "line": 1838,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 68804,
- 68818
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 25
- },
- "end": {
- "line": 1838,
- "column": 39
- }
- }
- },
- "range": [
- 68799,
- 68818
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 20
- },
- "end": {
- "line": 1838,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 68819,
- 68823
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 40
- },
- "end": {
- "line": 1838,
- "column": 44
- }
- }
- },
- "range": [
- 68799,
- 68823
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 20
- },
- "end": {
- "line": 1838,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 68824,
- 68825
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 45
- },
- "end": {
- "line": 1838,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 68799,
- 68826
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 20
- },
- "end": {
- "line": 1838,
- "column": 47
- }
- }
- },
- "range": [
- 68799,
- 68827
- ],
- "loc": {
- "start": {
- "line": 1838,
- "column": 20
- },
- "end": {
- "line": 1838,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 68777,
- 68845
- ],
- "loc": {
- "start": {
- "line": 1837,
- "column": 77
- },
- "end": {
- "line": 1839,
- "column": 17
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "hiddenrows",
- "range": [
- 68873,
- 68883
- ],
- "loc": {
- "start": {
- "line": 1840,
- "column": 20
- },
- "end": {
- "line": 1840,
- "column": 30
- }
- }
- },
- "prefix": false,
- "range": [
- 68873,
- 68885
- ],
- "loc": {
- "start": {
- "line": 1840,
- "column": 20
- },
- "end": {
- "line": 1840,
- "column": 32
- }
- }
- },
- "range": [
- 68873,
- 68886
- ],
- "loc": {
- "start": {
- "line": 1840,
- "column": 20
- },
- "end": {
- "line": 1840,
- "column": 33
- }
- }
- }
- ],
- "range": [
- 68851,
- 68904
- ],
- "loc": {
- "start": {
- "line": 1839,
- "column": 23
- },
- "end": {
- "line": 1841,
- "column": 17
+ "line": 1481,
+ "column": 28
}
}
},
"range": [
- 68716,
- 68904
+ 53169,
+ 53182
],
"loc": {
"start": {
- "line": 1837,
+ "line": 1481,
"column": 16
},
"end": {
- "line": 1841,
- "column": 17
+ "line": 1481,
+ "column": 29
}
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " always visible rows need to be counted as valid",
- "range": [
- 68649,
- 68699
- ],
- "loc": {
- "start": {
- "line": 1836,
- "column": 16
- },
- "end": {
- "line": 1836,
- "column": 66
- }
- }
- }
- ]
+ }
}
],
"range": [
- 68476,
- 68918
+ 53107,
+ 53196
],
"loc": {
"start": {
- "line": 1831,
+ "line": 1479,
"column": 27
},
"end": {
- "line": 1842,
+ "line": 1482,
"column": 13
}
}
@@ -155793,16 +123401,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 68942,
- 68946
+ 53220,
+ 53224
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 16
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 20
}
}
@@ -155811,31 +123419,31 @@
"type": "Identifier",
"name": "validateRow",
"range": [
- 68947,
- 68958
+ 53225,
+ 53236
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 21
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 32
}
}
},
"range": [
- 68942,
- 68958
+ 53220,
+ 53236
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 16
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 32
}
}
@@ -155845,16 +123453,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 68959,
- 68960
+ 53237,
+ 53238
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 33
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 34
}
}
@@ -155864,844 +123472,395 @@
"value": true,
"raw": "true",
"range": [
- 68962,
- 68966
+ 53240,
+ 53244
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 36
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 40
}
}
}
],
"range": [
- 68942,
- 68967
+ 53220,
+ 53245
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 16
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 41
}
}
},
"range": [
- 68942,
- 68968
+ 53220,
+ 53246
],
"loc": {
"start": {
- "line": 1843,
+ "line": 1483,
"column": 16
},
"end": {
- "line": 1843,
+ "line": 1483,
"column": 42
}
}
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 68985,
- 68989
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 16
- },
- "end": {
- "line": 1844,
- "column": 20
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 68990,
- 69004
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 21
- },
- "end": {
- "line": 1844,
- "column": 35
- }
- }
- },
- "range": [
- 68985,
- 69004
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 16
- },
- "end": {
- "line": 1844,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 69005,
- 69009
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 36
- },
- "end": {
- "line": 1844,
- "column": 40
- }
- }
- },
- "range": [
- 68985,
- 69009
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 16
- },
- "end": {
- "line": 1844,
- "column": 40
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 69010,
- 69011
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 41
- },
- "end": {
- "line": 1844,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 68985,
- 69012
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 16
- },
- "end": {
- "line": 1844,
- "column": 43
- }
- }
- },
- "range": [
- 68985,
- 69013
- ],
- "loc": {
- "start": {
- "line": 1844,
- "column": 16
- },
- "end": {
- "line": 1844,
- "column": 44
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69033,
- 69037
- ],
- "loc": {
- "start": {
- "line": 1845,
- "column": 19
- },
- "end": {
- "line": 1845,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 69038,
- 69051
- ],
- "loc": {
- "start": {
- "line": 1845,
- "column": 24
- },
- "end": {
- "line": 1845,
- "column": 37
- }
- }
- },
- "range": [
- 69033,
- 69051
- ],
- "loc": {
- "start": {
- "line": 1845,
- "column": 19
- },
- "end": {
- "line": 1845,
- "column": 37
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 69074,
- 69077
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 20
- },
- "end": {
- "line": 1846,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "alternateRows",
- "range": [
- 69078,
- 69091
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 24
- },
- "end": {
- "line": 1846,
- "column": 37
- }
- }
- },
- "range": [
- 69074,
- 69091
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 20
- },
- "end": {
- "line": 1846,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setRowBg",
- "range": [
- 69092,
- 69100
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 38
- },
- "end": {
- "line": 1846,
- "column": 46
- }
- }
- },
- "range": [
- 69074,
- 69100
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 20
- },
- "end": {
- "line": 1846,
- "column": 46
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 69101,
- 69102
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 47
- },
- "end": {
- "line": 1846,
- "column": 48
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69104,
- 69108
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 50
- },
- "end": {
- "line": 1846,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 69109,
- 69123
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 55
- },
- "end": {
- "line": 1846,
- "column": 69
- }
- }
- },
- "range": [
- 69104,
- 69123
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 50
- },
- "end": {
- "line": 1846,
- "column": 69
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 69124,
- 69130
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 70
- },
- "end": {
- "line": 1846,
- "column": 76
- }
- }
- },
- "range": [
- 69104,
- 69130
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 50
- },
- "end": {
- "line": 1846,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 69074,
- 69131
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 20
- },
- "end": {
- "line": 1846,
- "column": 77
- }
- }
- },
- "range": [
- 69074,
- 69132
- ],
- "loc": {
- "start": {
- "line": 1846,
- "column": 20
- },
- "end": {
- "line": 1846,
- "column": 78
- }
- }
- }
- ],
- "range": [
- 69052,
- 69150
- ],
- "loc": {
- "start": {
- "line": 1845,
- "column": 38
- },
- "end": {
- "line": 1847,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 69030,
- 69150
- ],
- "loc": {
- "start": {
- "line": 1845,
- "column": 16
- },
- "end": {
- "line": 1847,
- "column": 17
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69170,
- 69174
- ],
- "loc": {
- "start": {
- "line": 1848,
- "column": 19
- },
- "end": {
- "line": 1848,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onRowValidated",
- "range": [
- 69175,
- 69189
- ],
- "loc": {
- "start": {
- "line": 1848,
- "column": 24
- },
- "end": {
- "line": 1848,
- "column": 38
- }
- }
- },
- "range": [
- 69170,
- 69189
- ],
- "loc": {
- "start": {
- "line": 1848,
- "column": 19
- },
- "end": {
- "line": 1848,
- "column": 38
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69212,
- 69216
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 20
- },
- "end": {
- "line": 1849,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "onRowValidated",
- "range": [
- 69217,
- 69231
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 25
- },
- "end": {
- "line": 1849,
- "column": 39
- }
- }
- },
- "range": [
- 69212,
- 69231
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 20
- },
- "end": {
- "line": 1849,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "call",
- "range": [
- 69232,
- 69236
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 40
- },
- "end": {
- "line": 1849,
- "column": 44
- }
- }
- },
- "range": [
- 69212,
- 69236
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 20
- },
- "end": {
- "line": 1849,
- "column": 44
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": null,
- "raw": "null",
- "range": [
- 69237,
- 69241
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 45
- },
- "end": {
- "line": 1849,
- "column": 49
- }
- }
- },
- {
- "type": "ThisExpression",
- "range": [
- 69243,
- 69247
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 51
- },
- "end": {
- "line": 1849,
- "column": 55
- }
- }
- },
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 69249,
- 69250
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 57
- },
- "end": {
- "line": 1849,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 69212,
- 69251
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 20
- },
- "end": {
- "line": 1849,
- "column": 59
- }
- }
- },
- "range": [
- 69212,
- 69252
- ],
- "loc": {
- "start": {
- "line": 1849,
- "column": 20
- },
- "end": {
- "line": 1849,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 69190,
- 69270
- ],
- "loc": {
- "start": {
- "line": 1848,
- "column": 39
- },
- "end": {
- "line": 1850,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 69167,
- 69270
- ],
- "loc": {
- "start": {
- "line": 1848,
- "column": 16
- },
- "end": {
- "line": 1850,
- "column": 17
- }
- }
}
],
"range": [
- 68924,
- 69284
+ 53202,
+ 53260
],
"loc": {
"start": {
- "line": 1842,
+ "line": 1482,
"column": 19
},
"end": {
- "line": 1851,
+ "line": 1484,
"column": 13
}
}
},
"range": [
- 68461,
- 69284
+ 53092,
+ 53260
],
"loc": {
"start": {
- "line": 1831,
+ "line": 1479,
"column": 12
},
"end": {
- "line": 1851,
+ "line": 1484,
"column": 13
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 53274,
+ 53278
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 12
+ },
+ "end": {
+ "line": 1486,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 53279,
+ 53286
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 17
+ },
+ "end": {
+ "line": 1486,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 53274,
+ 53286
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 12
+ },
+ "end": {
+ "line": 1486,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 53287,
+ 53291
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 25
+ },
+ "end": {
+ "line": 1486,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 53274,
+ 53291
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 12
+ },
+ "end": {
+ "line": 1486,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "row-processed",
+ "raw": "'row-processed'",
+ "range": [
+ 53292,
+ 53307
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 30
+ },
+ "end": {
+ "line": 1486,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 53309,
+ 53313
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 47
+ },
+ "end": {
+ "line": 1486,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "k",
+ "range": [
+ 53315,
+ 53316
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 53
+ },
+ "end": {
+ "line": 1486,
+ "column": 54
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 53334,
+ 53338
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 16
+ },
+ "end": {
+ "line": 1487,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 53339,
+ 53353
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 21
+ },
+ "end": {
+ "line": 1487,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 53334,
+ 53353
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 16
+ },
+ "end": {
+ "line": 1487,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 53354,
+ 53360
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 36
+ },
+ "end": {
+ "line": 1487,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 53334,
+ 53360
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 16
+ },
+ "end": {
+ "line": 1487,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "isRowValid",
+ "range": [
+ 53362,
+ 53372
+ ],
+ "loc": {
+ "start": {
+ "line": 1487,
+ "column": 44
+ },
+ "end": {
+ "line": 1487,
+ "column": 54
+ }
+ }
+ }
+ ],
+ "range": [
+ 53274,
+ 53373
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 12
+ },
+ "end": {
+ "line": 1487,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 53274,
+ 53374
+ ],
+ "loc": {
+ "start": {
+ "line": 1486,
+ "column": 12
+ },
+ "end": {
+ "line": 1487,
+ "column": 56
+ }
+ }
}
],
"range": [
- 64846,
- 69294
+ 49883,
+ 53384
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 50
},
"end": {
- "line": 1852,
+ "line": 1488,
"column": 9
}
}
},
"range": [
- 64804,
- 69294
+ 49841,
+ 53384
],
"loc": {
"start": {
- "line": 1738,
+ "line": 1393,
"column": 8
},
"end": {
- "line": 1852,
+ "line": 1488,
"column": 9
}
},
@@ -156710,16 +123869,16 @@
"type": "Line",
"value": "fn",
"range": [
- 64790,
- 64794
+ 49827,
+ 49831
],
"loc": {
"start": {
- "line": 1736,
+ "line": 1391,
"column": 9
},
"end": {
- "line": 1736,
+ "line": 1391,
"column": 13
}
}
@@ -156730,16 +123889,16 @@
"type": "Line",
"value": " for k",
"range": [
- 69294,
- 69302
+ 53384,
+ 53392
],
"loc": {
"start": {
- "line": 1852,
+ "line": 1488,
"column": 9
},
"end": {
- "line": 1852,
+ "line": 1488,
"column": 17
}
}
@@ -156757,16 +123916,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 69312,
- 69316
+ 53402,
+ 53406
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 8
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 12
}
}
@@ -156775,31 +123934,31 @@
"type": "Identifier",
"name": "nbVisibleRows",
"range": [
- 69317,
- 69330
+ 53407,
+ 53420
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 13
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 26
}
}
},
"range": [
- 69312,
- 69330
+ 53402,
+ 53420
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 8
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 26
}
}
@@ -156813,16 +123972,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 69333,
- 69337
+ 53423,
+ 53427
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 29
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 33
}
}
@@ -156831,31 +123990,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 69338,
- 69352
+ 53428,
+ 53442
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 34
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 48
}
}
},
"range": [
- 69333,
- 69352
+ 53423,
+ 53442
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 29
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 48
}
}
@@ -156864,61 +124023,61 @@
"type": "Identifier",
"name": "length",
"range": [
- 69353,
- 69359
+ 53443,
+ 53449
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 49
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 55
}
}
},
"range": [
- 69333,
- 69359
+ 53423,
+ 53449
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 29
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 55
}
}
},
"range": [
- 69312,
- 69359
+ 53402,
+ 53449
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 8
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 55
}
}
},
"range": [
- 69312,
- 69360
+ 53402,
+ 53450
],
"loc": {
"start": {
- "line": 1854,
+ "line": 1490,
"column": 8
},
"end": {
- "line": 1854,
+ "line": 1490,
"column": 56
}
},
@@ -156927,16 +124086,16 @@
"type": "Line",
"value": " for k",
"range": [
- 69294,
- 69302
+ 53384,
+ 53392
],
"loc": {
"start": {
- "line": 1852,
+ "line": 1488,
"column": 9
},
"end": {
- "line": 1852,
+ "line": 1488,
"column": 17
}
}
@@ -156954,16 +124113,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 69369,
- 69373
+ 53459,
+ 53463
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 8
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 12
}
}
@@ -156972,31 +124131,31 @@
"type": "Identifier",
"name": "nbHiddenRows",
"range": [
- 69374,
- 69386
+ 53464,
+ 53476
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 13
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 25
}
}
},
"range": [
- 69369,
- 69386
+ 53459,
+ 53476
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 8
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 25
}
}
@@ -157005,1094 +124164,65 @@
"type": "Identifier",
"name": "hiddenrows",
"range": [
- 69389,
- 69399
+ 53479,
+ 53489
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 28
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 38
}
}
},
"range": [
- 69369,
- 69399
+ 53459,
+ 53489
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 8
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 38
}
}
},
"range": [
- 69369,
- 69400
+ 53459,
+ 53490
],
"loc": {
"start": {
- "line": 1855,
+ "line": 1491,
"column": 8
},
"end": {
- "line": 1855,
+ "line": 1491,
"column": 39
}
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69413,
- 69417
- ],
- "loc": {
- "start": {
- "line": 1857,
- "column": 11
- },
- "end": {
- "line": 1857,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberGridValues",
- "range": [
- 69418,
- 69436
- ],
- "loc": {
- "start": {
- "line": 1857,
- "column": 16
- },
- "end": {
- "line": 1857,
- "column": 34
- }
- }
- },
- "range": [
- 69413,
- 69436
- ],
- "loc": {
- "start": {
- "line": 1857,
- "column": 11
- },
- "end": {
- "line": 1857,
- "column": 34
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 69451,
- 69454
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 12
- },
- "end": {
- "line": 1858,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "store",
- "range": [
- 69455,
- 69460
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 16
- },
- "end": {
- "line": 1858,
- "column": 21
- }
- }
- },
- "range": [
- 69451,
- 69460
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 12
- },
- "end": {
- "line": 1858,
- "column": 21
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "saveFilterValues",
- "range": [
- 69461,
- 69477
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 22
- },
- "end": {
- "line": 1858,
- "column": 38
- }
- }
- },
- "range": [
- 69451,
- 69477
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 12
- },
- "end": {
- "line": 1858,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69478,
- 69482
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 39
- },
- "end": {
- "line": 1858,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltsValuesCookie",
- "range": [
- 69483,
- 69499
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 44
- },
- "end": {
- "line": 1858,
- "column": 60
- }
- }
- },
- "range": [
- 69478,
- 69499
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 39
- },
- "end": {
- "line": 1858,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 69451,
- 69500
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 12
- },
- "end": {
- "line": 1858,
- "column": 61
- }
- }
- },
- "range": [
- 69451,
- 69501
- ],
- "loc": {
- "start": {
- "line": 1858,
- "column": 12
- },
- "end": {
- "line": 1858,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 69437,
- 69511
- ],
- "loc": {
- "start": {
- "line": 1857,
- "column": 35
- },
- "end": {
- "line": 1859,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 69410,
- 69511
- ],
- "loc": {
- "start": {
- "line": 1857,
- "column": 8
- },
- "end": {
- "line": 1859,
- "column": 9
- }
},
"trailingComments": [
{
"type": "Line",
- "value": "applies filter props after filtering process",
+ "value": "invokes onafterfilter callback",
"range": [
- 69520,
- 69566
+ 53500,
+ 53532
],
"loc": {
"start": {
- "line": 1860,
+ "line": 1493,
"column": 8
},
"end": {
- "line": 1860,
- "column": 54
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69579,
- 69583
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 12
- },
- "end": {
- "line": 1861,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 69584,
- 69590
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 17
- },
- "end": {
- "line": 1861,
- "column": 23
- }
- }
- },
- "range": [
- 69579,
- 69590
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 12
- },
- "end": {
- "line": 1861,
- "column": 23
- }
- }
- },
- "prefix": true,
- "range": [
- 69578,
- 69590
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 11
- },
- "end": {
- "line": 1861,
- "column": 23
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69605,
- 69609
- ],
- "loc": {
- "start": {
- "line": 1862,
- "column": 12
- },
- "end": {
- "line": 1862,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "applyProps",
- "range": [
- 69610,
- 69620
- ],
- "loc": {
- "start": {
- "line": 1862,
- "column": 17
- },
- "end": {
- "line": 1862,
- "column": 27
- }
- }
- },
- "range": [
- 69605,
- 69620
- ],
- "loc": {
- "start": {
- "line": 1862,
- "column": 12
- },
- "end": {
- "line": 1862,
- "column": 27
- }
- }
- },
- "arguments": [],
- "range": [
- 69605,
- 69622
- ],
- "loc": {
- "start": {
- "line": 1862,
- "column": 12
- },
- "end": {
- "line": 1862,
- "column": 29
- }
- }
- },
- "range": [
- 69605,
- 69623
- ],
- "loc": {
- "start": {
- "line": 1862,
- "column": 12
- },
- "end": {
- "line": 1862,
- "column": 30
- }
- }
- }
- ],
- "range": [
- 69591,
- 69633
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 24
- },
- "end": {
- "line": 1863,
- "column": 9
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 69762,
- 69765
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 12
- },
- "end": {
- "line": 1866,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 69766,
- 69772
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 16
- },
- "end": {
- "line": 1866,
- "column": 22
- }
- }
- },
- "range": [
- 69762,
- 69772
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 12
- },
- "end": {
- "line": 1866,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "startPagingRow",
- "range": [
- 69773,
- 69787
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 23
- },
- "end": {
- "line": 1866,
- "column": 37
- }
- }
- },
- "range": [
- 69762,
- 69787
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 12
- },
- "end": {
- "line": 1866,
- "column": 37
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 69790,
- 69791
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 40
- },
- "end": {
- "line": 1866,
- "column": 41
- }
- }
- },
- "range": [
- 69762,
- 69791
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 12
- },
- "end": {
- "line": 1866,
- "column": 41
- }
- }
- },
- "range": [
- 69762,
- 69792
- ],
- "loc": {
- "start": {
- "line": 1866,
- "column": 12
- },
- "end": {
- "line": 1866,
- "column": 42
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " Shouldn't need to care of that here...",
- "range": [
- 69653,
- 69694
- ],
- "loc": {
- "start": {
- "line": 1864,
- "column": 12
- },
- "end": {
- "line": 1864,
- "column": 53
- }
- }
- },
- {
- "type": "Line",
- "value": " TODO: provide a method in paging module",
- "range": [
- 69707,
- 69749
- ],
- "loc": {
- "start": {
- "line": 1865,
- "column": 12
- },
- "end": {
- "line": 1865,
- "column": 54
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 69805,
- 69808
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 12
- },
- "end": {
- "line": 1867,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 69809,
- 69815
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 16
- },
- "end": {
- "line": 1867,
- "column": 22
- }
- }
- },
- "range": [
- 69805,
- 69815
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 12
- },
- "end": {
- "line": 1867,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "currentPageNb",
- "range": [
- 69816,
- 69829
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 23
- },
- "end": {
- "line": 1867,
- "column": 36
- }
- }
- },
- "range": [
- 69805,
- 69829
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 12
- },
- "end": {
- "line": 1867,
- "column": 36
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 1,
- "raw": "1",
- "range": [
- 69832,
- 69833
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 39
- },
- "end": {
- "line": 1867,
- "column": 40
- }
- }
- },
- "range": [
- 69805,
- 69833
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 12
- },
- "end": {
- "line": 1867,
- "column": 40
- }
- }
- },
- "range": [
- 69805,
- 69834
- ],
- "loc": {
- "start": {
- "line": 1867,
- "column": 12
- },
- "end": {
- "line": 1867,
- "column": 41
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 69847,
- 69850
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 12
- },
- "end": {
- "line": 1868,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "paging",
- "range": [
- 69851,
- 69857
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 16
- },
- "end": {
- "line": 1868,
- "column": 22
- }
- }
- },
- "range": [
- 69847,
- 69857
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 12
- },
- "end": {
- "line": 1868,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setPagingInfo",
- "range": [
- 69858,
- 69871
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 23
- },
- "end": {
- "line": 1868,
- "column": 36
- }
- }
- },
- "range": [
- 69847,
- 69871
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 12
- },
- "end": {
- "line": 1868,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 69872,
- 69876
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 37
- },
- "end": {
- "line": 1868,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 69877,
- 69891
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 42
- },
- "end": {
- "line": 1868,
- "column": 56
- }
- }
- },
- "range": [
- 69872,
- 69891
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 37
- },
- "end": {
- "line": 1868,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 69847,
- 69892
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 12
- },
- "end": {
- "line": 1868,
- "column": 57
- }
- }
- },
- "range": [
- 69847,
- 69893
- ],
- "loc": {
- "start": {
- "line": 1868,
- "column": 12
- },
- "end": {
- "line": 1868,
- "column": 58
- }
- }
- }
- ],
- "range": [
- 69639,
- 69903
- ],
- "loc": {
- "start": {
- "line": 1863,
- "column": 15
- },
- "end": {
- "line": 1869,
- "column": 9
- }
- }
- },
- "range": [
- 69575,
- 69903
- ],
- "loc": {
- "start": {
- "line": 1861,
- "column": 8
- },
- "end": {
- "line": 1869,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "applies filter props after filtering process",
- "range": [
- 69520,
- 69566
- ],
- "loc": {
- "start": {
- "line": 1860,
- "column": 8
- },
- "end": {
- "line": 1860,
- "column": 54
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "invokes onafter callback",
- "range": [
- 69912,
- 69938
- ],
- "loc": {
- "start": {
- "line": 1870,
- "column": 8
- },
- "end": {
- "line": 1870,
- "column": 34
+ "line": 1493,
+ "column": 40
}
}
}
@@ -158106,16 +124236,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 69950,
- 69954
+ 53544,
+ 53548
],
"loc": {
"start": {
- "line": 1871,
+ "line": 1494,
"column": 11
},
"end": {
- "line": 1871,
+ "line": 1494,
"column": 15
}
}
@@ -158124,31 +124254,31 @@
"type": "Identifier",
"name": "onAfterFilter",
"range": [
- 69955,
- 69968
+ 53549,
+ 53562
],
"loc": {
"start": {
- "line": 1871,
+ "line": 1494,
"column": 16
},
"end": {
- "line": 1871,
+ "line": 1494,
"column": 29
}
}
},
"range": [
- 69950,
- 69968
+ 53544,
+ 53562
],
"loc": {
"start": {
- "line": 1871,
+ "line": 1494,
"column": 11
},
"end": {
- "line": 1871,
+ "line": 1494,
"column": 29
}
}
@@ -158169,16 +124299,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 69983,
- 69987
+ 53577,
+ 53581
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 12
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 16
}
}
@@ -158187,31 +124317,31 @@
"type": "Identifier",
"name": "onAfterFilter",
"range": [
- 69988,
- 70001
+ 53582,
+ 53595
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 17
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 30
}
}
},
"range": [
- 69983,
- 70001
+ 53577,
+ 53595
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 12
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 30
}
}
@@ -158220,31 +124350,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 70002,
- 70006
+ 53596,
+ 53600
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 31
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 35
}
}
},
"range": [
- 69983,
- 70006
+ 53577,
+ 53600
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 12
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 35
}
}
@@ -158255,16 +124385,16 @@
"value": null,
"raw": "null",
"range": [
- 70007,
- 70011
+ 53601,
+ 53605
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 36
},
"end": {
- "line": 1872,
+ "line": 1495,
"column": 40
}
}
@@ -158272,2076 +124402,276 @@
{
"type": "ThisExpression",
"range": [
- 70012,
- 70016
+ 53607,
+ 53611
],
"loc": {
"start": {
- "line": 1872,
- "column": 41
+ "line": 1495,
+ "column": 42
},
"end": {
- "line": 1872,
- "column": 45
+ "line": 1495,
+ "column": 46
}
}
}
],
"range": [
- 69983,
- 70017
+ 53577,
+ 53612
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 12
},
"end": {
- "line": 1872,
- "column": 46
+ "line": 1495,
+ "column": 47
}
}
},
"range": [
- 69983,
- 70018
+ 53577,
+ 53613
],
"loc": {
"start": {
- "line": 1872,
+ "line": 1495,
"column": 12
},
"end": {
- "line": 1872,
- "column": 47
+ "line": 1495,
+ "column": 48
}
}
}
],
"range": [
- 69969,
- 70028
+ 53563,
+ 53623
],
"loc": {
"start": {
- "line": 1871,
+ "line": 1494,
"column": 30
},
"end": {
- "line": 1873,
+ "line": 1496,
"column": 9
}
}
},
"alternate": null,
"range": [
- 69947,
- 70028
+ 53541,
+ 53623
],
"loc": {
"start": {
- "line": 1871,
+ "line": 1494,
"column": 8
},
"end": {
- "line": 1873,
+ "line": 1496,
"column": 9
}
},
"leadingComments": [
{
"type": "Line",
- "value": "invokes onafter callback",
+ "value": "invokes onafterfilter callback",
"range": [
- 69912,
- 69938
+ 53500,
+ 53532
],
"loc": {
"start": {
- "line": 1870,
+ "line": 1493,
"column": 8
},
"end": {
- "line": 1870,
- "column": 34
- }
- }
- }
- ]
- }
- ],
- "range": [
- 54918,
- 70034
- ],
- "loc": {
- "start": {
- "line": 1487,
- "column": 13
- },
- "end": {
- "line": 1874,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 54916,
- 70034
- ],
- "loc": {
- "start": {
- "line": 1487,
- "column": 11
- },
- "end": {
- "line": 1874,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 54909,
- 70034
- ],
- "loc": {
- "start": {
- "line": 1487,
- "column": 4
- },
- "end": {
- "line": 1874,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Block",
- "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n *\n * TODO: Reduce complexity of this massive method\n ",
- "range": [
- 54606,
- 54904
- ],
- "loc": {
- "start": {
- "line": 1480,
- "column": 4
- },
- "end": {
- "line": 1486,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-apply the features/behaviour concerned by filtering/paging operation\n *\n * NOTE: this will disappear whenever custom events in place\n ",
- "range": [
- 70040,
- 70202
- ],
- "loc": {
- "start": {
- "line": 1876,
- "column": 4
- },
- "end": {
- "line": 1880,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "applyProps",
- "range": [
- 70207,
- 70217
- ],
- "loc": {
- "start": {
- "line": 1881,
- "column": 4
- },
- "end": {
- "line": 1881,
- "column": 14
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70233,
- 70236
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 12
- },
- "end": {
- "line": 1882,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70239,
- 70243
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 18
- },
- "end": {
- "line": 1882,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70244,
- 70247
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 23
- },
- "end": {
- "line": 1882,
- "column": 26
- }
- }
- },
- "range": [
- 70239,
- 70247
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 18
- },
- "end": {
- "line": 1882,
- "column": 26
- }
- }
- },
- "range": [
- 70233,
- 70247
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 12
- },
- "end": {
- "line": 1882,
- "column": 26
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 70229,
- 70248
- ],
- "loc": {
- "start": {
- "line": 1882,
- "column": 8
- },
- "end": {
- "line": 1882,
- "column": 27
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "shows rows always visible",
- "range": [
- 70258,
- 70285
- ],
- "loc": {
- "start": {
- "line": 1884,
- "column": 8
- },
- "end": {
- "line": 1884,
- "column": 35
+ "line": 1493,
+ "column": 40
}
}
}
]
},
{
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70297,
- 70301
- ],
- "loc": {
- "start": {
- "line": 1885,
- "column": 11
- },
- "end": {
- "line": 1885,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasVisibleRows",
- "range": [
- 70302,
- 70316
- ],
- "loc": {
- "start": {
- "line": 1885,
- "column": 16
- },
- "end": {
- "line": 1885,
- "column": 30
- }
- }
- },
- "range": [
- 70297,
- 70316
- ],
- "loc": {
- "start": {
- "line": 1885,
- "column": 11
- },
- "end": {
- "line": 1885,
- "column": 30
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70331,
- 70335
- ],
- "loc": {
- "start": {
- "line": 1886,
- "column": 12
- },
- "end": {
- "line": 1886,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "enforceVisibility",
- "range": [
- 70336,
- 70353
- ],
- "loc": {
- "start": {
- "line": 1886,
- "column": 17
- },
- "end": {
- "line": 1886,
- "column": 34
- }
- }
- },
- "range": [
- 70331,
- 70353
- ],
- "loc": {
- "start": {
- "line": 1886,
- "column": 12
- },
- "end": {
- "line": 1886,
- "column": 34
- }
- }
- },
- "arguments": [],
- "range": [
- 70331,
- 70355
- ],
- "loc": {
- "start": {
- "line": 1886,
- "column": 12
- },
- "end": {
- "line": 1886,
- "column": 36
- }
- }
- },
- "range": [
- 70331,
- 70356
- ],
- "loc": {
- "start": {
- "line": 1886,
- "column": 12
- },
- "end": {
- "line": 1886,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 70317,
- 70366
- ],
- "loc": {
- "start": {
- "line": 1885,
- "column": 31
- },
- "end": {
- "line": 1887,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 70294,
- 70366
- ],
- "loc": {
- "start": {
- "line": 1885,
- "column": 8
- },
- "end": {
- "line": 1887,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "shows rows always visible",
- "range": [
- 70258,
- 70285
- ],
- "loc": {
- "start": {
- "line": 1884,
- "column": 8
- },
- "end": {
- "line": 1884,
- "column": 35
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "columns operations",
- "range": [
- 70375,
- 70395
- ],
- "loc": {
- "start": {
- "line": 1888,
- "column": 8
- },
- "end": {
- "line": 1888,
- "column": 28
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
+ "type": "ExpressionStatement",
+ "expression": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "ThisExpression",
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 53633,
+ 53637
+ ],
+ "loc": {
+ "start": {
+ "line": 1498,
+ "column": 8
+ },
+ "end": {
+ "line": 1498,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 53638,
+ 53645
+ ],
+ "loc": {
+ "start": {
+ "line": 1498,
+ "column": 13
+ },
+ "end": {
+ "line": 1498,
+ "column": 20
+ }
+ }
+ },
"range": [
- 70407,
- 70411
+ 53633,
+ 53645
],
"loc": {
"start": {
- "line": 1889,
- "column": 11
+ "line": 1498,
+ "column": 8
},
"end": {
- "line": 1889,
- "column": 15
+ "line": 1498,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "hasExtension",
+ "name": "emit",
"range": [
- 70412,
- 70424
+ 53646,
+ 53650
],
"loc": {
"start": {
- "line": 1889,
- "column": 16
+ "line": 1498,
+ "column": 21
},
"end": {
- "line": 1889,
- "column": 28
+ "line": 1498,
+ "column": 25
}
}
},
"range": [
- 70407,
- 70424
+ 53633,
+ 53650
],
"loc": {
"start": {
- "line": 1889,
- "column": 11
+ "line": 1498,
+ "column": 8
},
"end": {
- "line": 1889,
- "column": 28
+ "line": 1498,
+ "column": 25
}
}
},
"arguments": [
{
"type": "Literal",
- "value": "colOps",
- "raw": "'colOps'",
+ "value": "after-filtering",
+ "raw": "'after-filtering'",
"range": [
- 70425,
- 70433
+ 53651,
+ 53668
],
"loc": {
"start": {
- "line": 1889,
- "column": 29
+ "line": 1498,
+ "column": 26
},
"end": {
- "line": 1889,
- "column": 37
+ "line": 1498,
+ "column": 43
}
}
- }
- ],
- "range": [
- 70407,
- 70434
- ],
- "loc": {
- "start": {
- "line": 1889,
- "column": 11
},
- "end": {
- "line": 1889,
- "column": 38
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
{
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70449,
- 70453
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 12
- },
- "end": {
- "line": 1890,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "extension",
- "range": [
- 70454,
- 70463
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 17
- },
- "end": {
- "line": 1890,
- "column": 26
- }
- }
- },
- "range": [
- 70449,
- 70463
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 12
- },
- "end": {
- "line": 1890,
- "column": 26
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "colOps",
- "raw": "'colOps'",
- "range": [
- 70464,
- 70472
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 27
- },
- "end": {
- "line": 1890,
- "column": 35
- }
- }
- }
- ],
- "range": [
- 70449,
- 70473
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 12
- },
- "end": {
- "line": 1890,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "calc",
- "range": [
- 70474,
- 70478
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 37
- },
- "end": {
- "line": 1890,
- "column": 41
- }
- }
- },
- "range": [
- 70449,
- 70478
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 12
- },
- "end": {
- "line": 1890,
- "column": 41
- }
- }
- },
- "arguments": [],
- "range": [
- 70449,
- 70480
- ],
- "loc": {
- "start": {
- "line": 1890,
- "column": 12
- },
- "end": {
- "line": 1890,
- "column": 43
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 70449,
- 70481
+ 53670,
+ 53674
],
"loc": {
"start": {
- "line": 1890,
- "column": 12
+ "line": 1498,
+ "column": 45
},
"end": {
- "line": 1890,
- "column": 44
+ "line": 1498,
+ "column": 49
}
}
}
],
"range": [
- 70435,
- 70491
+ 53633,
+ 53675
],
"loc": {
"start": {
- "line": 1889,
- "column": 39
+ "line": 1498,
+ "column": 8
},
"end": {
- "line": 1891,
- "column": 9
+ "line": 1498,
+ "column": 50
}
}
},
- "alternate": null,
"range": [
- 70404,
- 70491
+ 53633,
+ 53676
],
"loc": {
"start": {
- "line": 1889,
+ "line": 1498,
"column": 8
},
"end": {
- "line": 1891,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "columns operations",
- "range": [
- 70375,
- 70395
- ],
- "loc": {
- "start": {
- "line": 1888,
- "column": 8
- },
- "end": {
- "line": 1888,
- "column": 28
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "re-populates drop-down filters",
- "range": [
- 70501,
- 70533
- ],
- "loc": {
- "start": {
- "line": 1893,
- "column": 8
- },
- "end": {
- "line": 1893,
- "column": 40
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70545,
- 70549
- ],
- "loc": {
- "start": {
- "line": 1894,
- "column": 11
- },
- "end": {
- "line": 1894,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "linkedFilters",
- "range": [
- 70550,
- 70563
- ],
- "loc": {
- "start": {
- "line": 1894,
- "column": 16
- },
- "end": {
- "line": 1894,
- "column": 29
- }
- }
- },
- "range": [
- 70545,
- 70563
- ],
- "loc": {
- "start": {
- "line": 1894,
- "column": 11
- },
- "end": {
- "line": 1894,
- "column": 29
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70578,
- 70582
- ],
- "loc": {
- "start": {
- "line": 1895,
- "column": 12
- },
- "end": {
- "line": 1895,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "linkFilters",
- "range": [
- 70583,
- 70594
- ],
- "loc": {
- "start": {
- "line": 1895,
- "column": 17
- },
- "end": {
- "line": 1895,
- "column": 28
- }
- }
- },
- "range": [
- 70578,
- 70594
- ],
- "loc": {
- "start": {
- "line": 1895,
- "column": 12
- },
- "end": {
- "line": 1895,
- "column": 28
- }
- }
- },
- "arguments": [],
- "range": [
- 70578,
- 70596
- ],
- "loc": {
- "start": {
- "line": 1895,
- "column": 12
- },
- "end": {
- "line": 1895,
- "column": 30
- }
- }
- },
- "range": [
- 70578,
- 70597
- ],
- "loc": {
- "start": {
- "line": 1895,
- "column": 12
- },
- "end": {
- "line": 1895,
- "column": 31
- }
- }
- }
- ],
- "range": [
- 70564,
- 70607
- ],
- "loc": {
- "start": {
- "line": 1894,
- "column": 30
- },
- "end": {
- "line": 1896,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 70542,
- 70607
- ],
- "loc": {
- "start": {
- "line": 1894,
- "column": 8
- },
- "end": {
- "line": 1896,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "re-populates drop-down filters",
- "range": [
- 70501,
- 70533
- ],
- "loc": {
- "start": {
- "line": 1893,
- "column": 8
- },
- "end": {
- "line": 1893,
- "column": 40
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70620,
- 70624
- ],
- "loc": {
- "start": {
- "line": 1898,
- "column": 11
- },
- "end": {
- "line": 1898,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rowsCounter",
- "range": [
- 70625,
- 70636
- ],
- "loc": {
- "start": {
- "line": 1898,
- "column": 16
- },
- "end": {
- "line": 1898,
- "column": 27
- }
- }
- },
- "range": [
- 70620,
- 70636
- ],
- "loc": {
- "start": {
- "line": 1898,
- "column": 11
- },
- "end": {
- "line": 1898,
- "column": 27
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70651,
- 70654
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 12
- },
- "end": {
- "line": 1899,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rowsCounter",
- "range": [
- 70655,
- 70666
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 16
- },
- "end": {
- "line": 1899,
- "column": 27
- }
- }
- },
- "range": [
- 70651,
- 70666
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 12
- },
- "end": {
- "line": 1899,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "refresh",
- "range": [
- 70667,
- 70674
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 28
- },
- "end": {
- "line": 1899,
- "column": 35
- }
- }
- },
- "range": [
- 70651,
- 70674
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 12
- },
- "end": {
- "line": 1899,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70675,
- 70679
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 36
- },
- "end": {
- "line": 1899,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 70680,
- 70693
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 41
- },
- "end": {
- "line": 1899,
- "column": 54
- }
- }
- },
- "range": [
- 70675,
- 70693
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 36
- },
- "end": {
- "line": 1899,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 70651,
- 70694
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 12
- },
- "end": {
- "line": 1899,
- "column": 55
- }
- }
- },
- "range": [
- 70651,
- 70695
- ],
- "loc": {
- "start": {
- "line": 1899,
- "column": 12
- },
- "end": {
- "line": 1899,
- "column": 56
- }
- }
- }
- ],
- "range": [
- 70637,
- 70705
- ],
- "loc": {
- "start": {
- "line": 1898,
- "column": 28
- },
- "end": {
- "line": 1900,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 70617,
- 70705
- ],
- "loc": {
- "start": {
- "line": 1898,
- "column": 8
- },
- "end": {
- "line": 1900,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70718,
- 70722
- ],
- "loc": {
- "start": {
- "line": 1902,
- "column": 11
- },
- "end": {
- "line": 1902,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 70723,
- 70735
- ],
- "loc": {
- "start": {
- "line": 1902,
- "column": 16
- },
- "end": {
- "line": 1902,
- "column": 28
- }
- }
- },
- "range": [
- 70718,
- 70735
- ],
- "loc": {
- "start": {
- "line": 1902,
- "column": 11
- },
- "end": {
- "line": 1902,
- "column": 28
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70750,
- 70753
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 12
- },
- "end": {
- "line": 1903,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 70754,
- 70765
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 16
- },
- "end": {
- "line": 1903,
- "column": 27
- }
- }
- },
- "range": [
- 70750,
- 70765
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 12
- },
- "end": {
- "line": 1903,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "closeAll",
- "range": [
- 70766,
- 70774
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 28
- },
- "end": {
- "line": 1903,
- "column": 36
- }
- }
- },
- "range": [
- 70750,
- 70774
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 12
- },
- "end": {
- "line": 1903,
- "column": 36
- }
- }
- },
- "arguments": [],
- "range": [
- 70750,
- 70776
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 12
- },
- "end": {
- "line": 1903,
- "column": 38
- }
- }
- },
- "range": [
- 70750,
- 70777
- ],
- "loc": {
- "start": {
- "line": 1903,
- "column": 12
- },
- "end": {
- "line": 1903,
- "column": 39
- }
- }
- }
- ],
- "range": [
- 70736,
- 70787
- ],
- "loc": {
- "start": {
- "line": 1902,
- "column": 29
- },
- "end": {
- "line": 1904,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 70715,
- 70787
- ],
- "loc": {
- "start": {
- "line": 1902,
- "column": 8
- },
- "end": {
- "line": 1904,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70800,
- 70804
- ],
- "loc": {
- "start": {
- "line": 1906,
- "column": 11
- },
- "end": {
- "line": 1906,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "noResults",
- "range": [
- 70805,
- 70814
- ],
- "loc": {
- "start": {
- "line": 1906,
- "column": 16
- },
- "end": {
- "line": 1906,
- "column": 25
- }
- }
- },
- "range": [
- 70800,
- 70814
- ],
- "loc": {
- "start": {
- "line": 1906,
- "column": 11
- },
- "end": {
- "line": 1906,
- "column": 25
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": ">",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 70832,
- 70836
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 15
- },
- "end": {
- "line": 1907,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 70837,
- 70850
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 20
- },
- "end": {
- "line": 1907,
- "column": 33
- }
- }
- },
- "range": [
- 70832,
- 70850
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 15
- },
- "end": {
- "line": 1907,
- "column": 33
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 70853,
- 70854
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 36
- },
- "end": {
- "line": 1907,
- "column": 37
- }
- }
- },
- "range": [
- 70832,
- 70854
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 15
- },
- "end": {
- "line": 1907,
- "column": 37
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70873,
- 70876
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 16
- },
- "end": {
- "line": 1908,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "noResults",
- "range": [
- 70877,
- 70886
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 20
- },
- "end": {
- "line": 1908,
- "column": 29
- }
- }
- },
- "range": [
- 70873,
- 70886
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 16
- },
- "end": {
- "line": 1908,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hide",
- "range": [
- 70887,
- 70891
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 30
- },
- "end": {
- "line": 1908,
- "column": 34
- }
- }
- },
- "range": [
- 70873,
- 70891
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 16
- },
- "end": {
- "line": 1908,
- "column": 34
- }
- }
- },
- "arguments": [],
- "range": [
- 70873,
- 70893
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 16
- },
- "end": {
- "line": 1908,
- "column": 36
- }
- }
- },
- "range": [
- 70873,
- 70894
- ],
- "loc": {
- "start": {
- "line": 1908,
- "column": 16
- },
- "end": {
- "line": 1908,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 70855,
- 70908
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 38
- },
- "end": {
- "line": 1909,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 70932,
- 70935
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 16
- },
- "end": {
- "line": 1910,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "noResults",
- "range": [
- 70936,
- 70945
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 20
- },
- "end": {
- "line": 1910,
- "column": 29
- }
- }
- },
- "range": [
- 70932,
- 70945
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 16
- },
- "end": {
- "line": 1910,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "show",
- "range": [
- 70946,
- 70950
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 30
- },
- "end": {
- "line": 1910,
- "column": 34
- }
- }
- },
- "range": [
- 70932,
- 70950
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 16
- },
- "end": {
- "line": 1910,
- "column": 34
- }
- }
- },
- "arguments": [],
- "range": [
- 70932,
- 70952
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 16
- },
- "end": {
- "line": 1910,
- "column": 36
- }
- }
- },
- "range": [
- 70932,
- 70953
- ],
- "loc": {
- "start": {
- "line": 1910,
- "column": 16
- },
- "end": {
- "line": 1910,
- "column": 37
- }
- }
- }
- ],
- "range": [
- 70914,
- 70967
- ],
- "loc": {
- "start": {
- "line": 1909,
- "column": 19
- },
- "end": {
- "line": 1911,
- "column": 13
- }
- }
- },
- "range": [
- 70829,
- 70967
- ],
- "loc": {
- "start": {
- "line": 1907,
- "column": 12
- },
- "end": {
- "line": 1911,
- "column": 13
- }
- }
- }
- ],
- "range": [
- 70815,
- 70977
- ],
- "loc": {
- "start": {
- "line": 1906,
- "column": 26
- },
- "end": {
- "line": 1912,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 70797,
- 70977
- ],
- "loc": {
- "start": {
- "line": 1906,
- "column": 8
- },
- "end": {
- "line": 1912,
- "column": 9
+ "line": 1498,
+ "column": 51
}
}
}
],
"range": [
- 70219,
- 70983
+ 40343,
+ 53682
],
"loc": {
"start": {
- "line": 1881,
- "column": 16
+ "line": 1154,
+ "column": 12
},
"end": {
- "line": 1913,
+ "line": 1499,
"column": 5
}
}
@@ -160349,16 +124679,16 @@
"generator": false,
"expression": false,
"range": [
- 70217,
- 70983
+ 40341,
+ 53682
],
"loc": {
"start": {
- "line": 1881,
- "column": 14
+ "line": 1154,
+ "column": 10
},
"end": {
- "line": 1913,
+ "line": 1499,
"column": 5
}
}
@@ -160366,34 +124696,34 @@
"kind": "method",
"computed": false,
"range": [
- 70207,
- 70983
+ 40335,
+ 53682
],
"loc": {
"start": {
- "line": 1881,
+ "line": 1154,
"column": 4
},
"end": {
- "line": 1913,
+ "line": 1499,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Re-apply the features/behaviour concerned by filtering/paging operation\n *\n * NOTE: this will disappear whenever custom events in place\n ",
+ "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n ",
"range": [
- 70040,
- 70202
+ 40093,
+ 40330
],
"loc": {
"start": {
- "line": 1876,
+ "line": 1149,
"column": 4
},
"end": {
- "line": 1880,
+ "line": 1153,
"column": 7
}
}
@@ -160402,18 +124732,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Return the data of a specified colum\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
+ "value": "*\n * Return the data of a specified column\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
"range": [
- 70989,
- 71372
+ 53688,
+ 54072
],
"loc": {
"start": {
- "line": 1915,
+ "line": 1501,
"column": 4
},
"end": {
- "line": 1922,
+ "line": 1508,
"column": 7
}
}
@@ -160427,16 +124757,16 @@
"type": "Identifier",
"name": "getColValues",
"range": [
- 71377,
- 71389
+ 54077,
+ 54089
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 4
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 16
}
}
@@ -160449,16 +124779,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 71390,
- 71398
+ 54090,
+ 54098
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 17
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 25
}
}
@@ -160469,16 +124799,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 71400,
- 71414
+ 54100,
+ 54114
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 27
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 41
}
}
@@ -160488,31 +124818,31 @@
"value": false,
"raw": "false",
"range": [
- 71415,
- 71420
+ 54115,
+ 54120
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 42
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 47
}
}
},
"range": [
- 71400,
- 71420
+ 54100,
+ 54120
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 27
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 47
}
}
@@ -160523,16 +124853,16 @@
"type": "Identifier",
"name": "num",
"range": [
- 71422,
- 71425
+ 54122,
+ 54125
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 49
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 52
}
}
@@ -160542,31 +124872,31 @@
"value": false,
"raw": "false",
"range": [
- 71426,
- 71431
+ 54126,
+ 54131
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 53
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 58
}
}
},
"range": [
- 71422,
- 71431
+ 54122,
+ 54131
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 49
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 58
}
}
@@ -160577,16 +124907,16 @@
"type": "Identifier",
"name": "exclude",
"range": [
- 71433,
- 71440
+ 54133,
+ 54140
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 60
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 67
}
}
@@ -160595,31 +124925,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 71441,
- 71443
+ 54141,
+ 54143
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 68
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 70
}
}
},
"range": [
- 71433,
- 71443
+ 54133,
+ 54143
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 60
},
"end": {
- "line": 1923,
+ "line": 1509,
"column": 70
}
}
@@ -160639,16 +124969,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 71458,
- 71462
+ 54158,
+ 54162
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 12
},
"end": {
- "line": 1924,
+ "line": 1510,
"column": 16
}
}
@@ -160657,47 +124987,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 71463,
- 71470
+ 54163,
+ 54170
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 17
},
"end": {
- "line": 1924,
+ "line": 1510,
"column": 24
}
}
},
"range": [
- 71458,
- 71470
+ 54158,
+ 54170
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 12
},
"end": {
- "line": 1924,
+ "line": 1510,
"column": 24
}
}
},
"prefix": true,
"range": [
- 71457,
- 71470
+ 54157,
+ 54170
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 11
},
"end": {
- "line": 1924,
+ "line": 1510,
"column": 24
}
}
@@ -160709,48 +125039,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 71485,
- 71492
+ 54185,
+ 54192
],
"loc": {
"start": {
- "line": 1925,
+ "line": 1511,
"column": 12
},
"end": {
- "line": 1925,
+ "line": 1511,
"column": 19
}
}
}
],
"range": [
- 71471,
- 71502
+ 54171,
+ 54202
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 25
},
"end": {
- "line": 1926,
+ "line": 1512,
"column": 9
}
}
},
"alternate": null,
"range": [
- 71454,
- 71502
+ 54154,
+ 54202
],
"loc": {
"start": {
- "line": 1924,
+ "line": 1510,
"column": 8
},
"end": {
- "line": 1926,
+ "line": 1512,
"column": 9
}
}
@@ -160764,16 +125094,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 71515,
- 71518
+ 54215,
+ 54218
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 12
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 15
}
}
@@ -160787,16 +125117,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 71521,
- 71525
+ 54221,
+ 54225
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 18
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 22
}
}
@@ -160805,31 +125135,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 71526,
- 71529
+ 54226,
+ 54229
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 23
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 26
}
}
},
"range": [
- 71521,
- 71529
+ 54221,
+ 54229
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 18
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 26
}
}
@@ -160838,46 +125168,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 71530,
- 71534
+ 54230,
+ 54234
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 27
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 31
}
}
},
"range": [
- 71521,
- 71534
+ 54221,
+ 54234
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 18
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 31
}
}
},
"range": [
- 71515,
- 71534
+ 54215,
+ 54234
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 12
},
"end": {
- "line": 1927,
+ "line": 1513,
"column": 31
}
}
@@ -160888,16 +125218,16 @@
"type": "Identifier",
"name": "colValues",
"range": [
- 71548,
- 71557
+ 54248,
+ 54257
],
"loc": {
"start": {
- "line": 1928,
+ "line": 1514,
"column": 12
},
"end": {
- "line": 1928,
+ "line": 1514,
"column": 21
}
}
@@ -160906,31 +125236,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 71560,
- 71562
+ 54260,
+ 54262
],
"loc": {
"start": {
- "line": 1928,
+ "line": 1514,
"column": 24
},
"end": {
- "line": 1928,
+ "line": 1514,
"column": 26
}
}
},
"range": [
- 71548,
- 71562
+ 54248,
+ 54262
],
"loc": {
"start": {
- "line": 1928,
+ "line": 1514,
"column": 12
},
"end": {
- "line": 1928,
+ "line": 1514,
"column": 26
}
}
@@ -160938,16 +125268,16 @@
],
"kind": "let",
"range": [
- 71511,
- 71563
+ 54211,
+ 54263
],
"loc": {
"start": {
- "line": 1927,
+ "line": 1513,
"column": 8
},
"end": {
- "line": 1928,
+ "line": 1514,
"column": 27
}
}
@@ -160958,16 +125288,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 71576,
- 71590
+ 54276,
+ 54290
],
"loc": {
"start": {
- "line": 1930,
+ "line": 1516,
"column": 11
},
"end": {
- "line": 1930,
+ "line": 1516,
"column": 25
}
}
@@ -160986,16 +125316,16 @@
"type": "Identifier",
"name": "colValues",
"range": [
- 71605,
- 71614
+ 54305,
+ 54314
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 12
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 21
}
}
@@ -161004,31 +125334,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 71615,
- 71619
+ 54315,
+ 54319
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 22
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 26
}
}
},
"range": [
- 71605,
- 71619
+ 54305,
+ 54319
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 12
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 26
}
}
@@ -161045,16 +125375,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 71620,
- 71624
+ 54320,
+ 54324
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 27
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 31
}
}
@@ -161063,47 +125393,47 @@
"type": "Identifier",
"name": "getHeadersText",
"range": [
- 71625,
- 71639
+ 54325,
+ 54339
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 32
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 46
}
}
},
"range": [
- 71620,
- 71639
+ 54320,
+ 54339
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 27
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 46
}
}
},
"arguments": [],
"range": [
- 71620,
- 71641
+ 54320,
+ 54341
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 27
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 48
}
}
@@ -161112,94 +125442,94 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 71642,
- 71650
+ 54342,
+ 54350
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 49
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 57
}
}
},
"range": [
- 71620,
- 71651
+ 54320,
+ 54351
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 27
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 58
}
}
}
],
"range": [
- 71605,
- 71652
+ 54305,
+ 54352
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 12
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 59
}
}
},
"range": [
- 71605,
- 71653
+ 54305,
+ 54353
],
"loc": {
"start": {
- "line": 1931,
+ "line": 1517,
"column": 12
},
"end": {
- "line": 1931,
+ "line": 1517,
"column": 60
}
}
}
],
"range": [
- 71591,
- 71663
+ 54291,
+ 54363
],
"loc": {
"start": {
- "line": 1930,
+ "line": 1516,
"column": 26
},
"end": {
- "line": 1932,
+ "line": 1518,
"column": 9
}
}
},
"alternate": null,
"range": [
- 71573,
- 71663
+ 54273,
+ 54363
],
"loc": {
"start": {
- "line": 1930,
+ "line": 1516,
"column": 8
},
"end": {
- "line": 1932,
+ "line": 1518,
"column": 9
}
}
@@ -161215,16 +125545,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 71681,
- 71682
+ 54381,
+ 54382
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 16
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 17
}
}
@@ -161235,16 +125565,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 71683,
- 71687
+ 54383,
+ 54387
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 18
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 22
}
}
@@ -161253,46 +125583,46 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 71688,
- 71694
+ 54388,
+ 54394
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 23
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 29
}
}
},
"range": [
- 71683,
- 71694
+ 54383,
+ 54394
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 18
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 29
}
}
},
"range": [
- 71681,
- 71694
+ 54381,
+ 54394
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 16
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 29
}
}
@@ -161300,16 +125630,16 @@
],
"kind": "let",
"range": [
- 71677,
- 71694
+ 54377,
+ 54394
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 12
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 29
}
}
@@ -161321,16 +125651,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 71696,
- 71697
+ 54396,
+ 54397
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 31
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 32
}
}
@@ -161341,16 +125671,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 71698,
- 71702
+ 54398,
+ 54402
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 33
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 37
}
}
@@ -161359,46 +125689,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 71703,
- 71709
+ 54403,
+ 54409
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 38
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 44
}
}
},
"range": [
- 71698,
- 71709
+ 54398,
+ 54409
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 33
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 44
}
}
},
"range": [
- 71696,
- 71709
+ 54396,
+ 54409
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 31
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 44
}
}
@@ -161410,32 +125740,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 71711,
- 71712
+ 54411,
+ 54412
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 46
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 47
}
}
},
"prefix": false,
"range": [
- 71711,
- 71714
+ 54411,
+ 54414
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 46
},
"end": {
- "line": 1934,
+ "line": 1520,
"column": 49
}
}
@@ -161452,16 +125782,16 @@
"type": "Identifier",
"name": "isExludedRow",
"range": [
- 71733,
- 71745
+ 54433,
+ 54445
],
"loc": {
"start": {
- "line": 1935,
+ "line": 1521,
"column": 16
},
"end": {
- "line": 1935,
+ "line": 1521,
"column": 28
}
}
@@ -161471,31 +125801,31 @@
"value": false,
"raw": "false",
"range": [
- 71748,
- 71753
+ 54448,
+ 54453
],
"loc": {
"start": {
- "line": 1935,
+ "line": 1521,
"column": 31
},
"end": {
- "line": 1935,
+ "line": 1521,
"column": 36
}
}
},
"range": [
- 71733,
- 71753
+ 54433,
+ 54453
],
"loc": {
"start": {
- "line": 1935,
+ "line": 1521,
"column": 16
},
"end": {
- "line": 1935,
+ "line": 1521,
"column": 36
}
}
@@ -161503,16 +125833,16 @@
],
"kind": "let",
"range": [
- 71729,
- 71754
+ 54429,
+ 54454
],
"loc": {
"start": {
- "line": 1935,
+ "line": 1521,
"column": 12
},
"end": {
- "line": 1935,
+ "line": 1521,
"column": 37
}
},
@@ -161521,16 +125851,16 @@
"type": "Line",
"value": " checks if current row index appears in exclude array",
"range": [
- 71767,
- 71822
+ 54467,
+ 54522
],
"loc": {
"start": {
- "line": 1936,
+ "line": 1522,
"column": 12
},
"end": {
- "line": 1936,
+ "line": 1522,
"column": 67
}
}
@@ -161549,16 +125879,16 @@
"type": "Identifier",
"name": "exclude",
"range": [
- 71838,
- 71845
+ 54538,
+ 54545
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 15
},
"end": {
- "line": 1937,
+ "line": 1523,
"column": 22
}
}
@@ -161567,31 +125897,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 71846,
- 71852
+ 54546,
+ 54552
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 23
},
"end": {
- "line": 1937,
+ "line": 1523,
"column": 29
}
}
},
"range": [
- 71838,
- 71852
+ 54538,
+ 54552
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 15
},
"end": {
- "line": 1937,
+ "line": 1523,
"column": 29
}
}
@@ -161601,31 +125931,31 @@
"value": 0,
"raw": "0",
"range": [
- 71855,
- 71856
+ 54555,
+ 54556
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 32
},
"end": {
- "line": 1937,
+ "line": 1523,
"column": 33
}
}
},
"range": [
- 71838,
- 71856
+ 54538,
+ 54556
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 15
},
"end": {
- "line": 1937,
+ "line": 1523,
"column": 33
}
}
@@ -161642,16 +125972,16 @@
"type": "Identifier",
"name": "isExludedRow",
"range": [
- 71875,
- 71887
+ 54575,
+ 54587
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 16
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 28
}
}
@@ -161668,16 +125998,16 @@
"type": "Identifier",
"name": "exclude",
"range": [
- 71890,
- 71897
+ 54590,
+ 54597
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 31
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 38
}
}
@@ -161686,31 +126016,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 71898,
- 71905
+ 54598,
+ 54605
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 39
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 46
}
}
},
"range": [
- 71890,
- 71905
+ 54590,
+ 54605
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 31
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 46
}
}
@@ -161720,32 +126050,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 71906,
- 71907
+ 54606,
+ 54607
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 47
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 48
}
}
}
],
"range": [
- 71890,
- 71908
+ 54590,
+ 54608
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 31
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 49
}
}
@@ -161758,109 +126088,109 @@
"value": 1,
"raw": "1",
"range": [
- 71913,
- 71914
+ 54613,
+ 54614
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 54
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 55
}
}
},
"prefix": true,
"range": [
- 71912,
- 71914
+ 54612,
+ 54614
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 53
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 55
}
}
},
"range": [
- 71890,
- 71914
+ 54590,
+ 54614
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 31
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 55
}
}
},
"range": [
- 71875,
- 71914
+ 54575,
+ 54614
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 16
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 55
}
}
},
"range": [
- 71875,
- 71915
+ 54575,
+ 54615
],
"loc": {
"start": {
- "line": 1938,
+ "line": 1524,
"column": 16
},
"end": {
- "line": 1938,
+ "line": 1524,
"column": 56
}
}
}
],
"range": [
- 71857,
- 71929
+ 54557,
+ 54629
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 34
},
"end": {
- "line": 1939,
+ "line": 1525,
"column": 13
}
}
},
"alternate": null,
"range": [
- 71835,
- 71929
+ 54535,
+ 54629
],
"loc": {
"start": {
- "line": 1937,
+ "line": 1523,
"column": 12
},
"end": {
- "line": 1939,
+ "line": 1525,
"column": 13
}
},
@@ -161869,16 +126199,16 @@
"type": "Line",
"value": " checks if current row index appears in exclude array",
"range": [
- 71767,
- 71822
+ 54467,
+ 54522
],
"loc": {
"start": {
- "line": 1936,
+ "line": 1522,
"column": 12
},
"end": {
- "line": 1936,
+ "line": 1522,
"column": 67
}
}
@@ -161894,16 +126224,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 71946,
- 71950
+ 54646,
+ 54650
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 16
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 20
}
}
@@ -161918,16 +126248,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 71953,
- 71956
+ 54653,
+ 54656
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 23
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 26
}
}
@@ -161936,31 +126266,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 71957,
- 71958
+ 54657,
+ 54658
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 27
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 28
}
}
},
"range": [
- 71953,
- 71959
+ 54653,
+ 54659
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 23
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 29
}
}
@@ -161969,46 +126299,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 71960,
- 71965
+ 54660,
+ 54665
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 30
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 35
}
}
},
"range": [
- 71953,
- 71965
+ 54653,
+ 54665
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 23
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 35
}
}
},
"range": [
- 71946,
- 71965
+ 54646,
+ 54665
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 16
},
"end": {
- "line": 1940,
+ "line": 1526,
"column": 35
}
}
@@ -162019,16 +126349,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 71983,
- 71990
+ 54683,
+ 54690
],
"loc": {
"start": {
- "line": 1941,
+ "line": 1527,
"column": 16
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 23
}
}
@@ -162040,16 +126370,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 71993,
- 71997
+ 54693,
+ 54697
],
"loc": {
"start": {
- "line": 1941,
+ "line": 1527,
"column": 26
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 30
}
}
@@ -162058,46 +126388,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 71998,
- 72004
+ 54698,
+ 54704
],
"loc": {
"start": {
- "line": 1941,
+ "line": 1527,
"column": 31
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 37
}
}
},
"range": [
- 71993,
- 72004
+ 54693,
+ 54704
],
"loc": {
"start": {
- "line": 1941,
+ "line": 1527,
"column": 26
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 37
}
}
},
"range": [
- 71983,
- 72004
+ 54683,
+ 54704
],
"loc": {
"start": {
- "line": 1941,
+ "line": 1527,
"column": 16
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 37
}
}
@@ -162105,16 +126435,16 @@
],
"kind": "let",
"range": [
- 71942,
- 72005
+ 54642,
+ 54705
],
"loc": {
"start": {
- "line": 1940,
+ "line": 1526,
"column": 12
},
"end": {
- "line": 1941,
+ "line": 1527,
"column": 38
}
},
@@ -162123,16 +126453,16 @@
"type": "Line",
"value": " checks if row has exact cell # and is not excluded",
"range": [
- 72019,
- 72072
+ 54719,
+ 54772
],
"loc": {
"start": {
- "line": 1943,
+ "line": 1529,
"column": 12
},
"end": {
- "line": 1943,
+ "line": 1529,
"column": 65
}
}
@@ -162151,16 +126481,16 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 72088,
- 72095
+ 54788,
+ 54795
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 15
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 22
}
}
@@ -162171,16 +126501,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 72100,
- 72104
+ 54800,
+ 54804
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 27
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 31
}
}
@@ -162189,46 +126519,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 72105,
- 72112
+ 54805,
+ 54812
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 32
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 39
}
}
},
"range": [
- 72100,
- 72112
+ 54800,
+ 54812
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 27
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 39
}
}
},
"range": [
- 72088,
- 72112
+ 54788,
+ 54812
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 15
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 39
}
}
@@ -162240,47 +126570,47 @@
"type": "Identifier",
"name": "isExludedRow",
"range": [
- 72117,
- 72129
+ 54817,
+ 54829
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 44
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 56
}
}
},
"prefix": true,
"range": [
- 72116,
- 72129
+ 54816,
+ 54829
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 43
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 56
}
}
},
"range": [
- 72088,
- 72129
+ 54788,
+ 54829
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 15
},
"end": {
- "line": 1944,
+ "line": 1530,
"column": 56
}
}
@@ -162299,16 +126629,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 72205,
- 72206
+ 54905,
+ 54906
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 24
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 25
}
}
@@ -162318,31 +126648,31 @@
"value": 0,
"raw": "0",
"range": [
- 72207,
- 72208
+ 54907,
+ 54908
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 26
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 27
}
}
},
"range": [
- 72205,
- 72208
+ 54905,
+ 54908
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 24
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 27
}
}
@@ -162350,16 +126680,16 @@
],
"kind": "let",
"range": [
- 72201,
- 72208
+ 54901,
+ 54908
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 20
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 27
}
}
@@ -162371,16 +126701,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 72210,
- 72211
+ 54910,
+ 54911
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 29
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 30
}
}
@@ -162389,31 +126719,31 @@
"type": "Identifier",
"name": "nchilds",
"range": [
- 72212,
- 72219
+ 54912,
+ 54919
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 31
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 38
}
}
},
"range": [
- 72210,
- 72219
+ 54910,
+ 54919
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 29
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 38
}
}
@@ -162425,32 +126755,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 72221,
- 72222
+ 54921,
+ 54922
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 40
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 41
}
}
},
"prefix": false,
"range": [
- 72221,
- 72224
+ 54921,
+ 54924
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 40
},
"end": {
- "line": 1946,
+ "line": 1532,
"column": 43
}
}
@@ -162470,16 +126800,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 72250,
- 72251
+ 54950,
+ 54951
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 23
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 24
}
}
@@ -162488,31 +126818,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 72255,
- 72263
+ 54955,
+ 54963
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 28
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 36
}
}
},
"range": [
- 72250,
- 72263
+ 54950,
+ 54963
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 23
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 36
}
}
@@ -162533,16 +126863,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 72267,
- 72270
+ 54967,
+ 54970
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 40
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 43
}
}
@@ -162551,31 +126881,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 72271,
- 72272
+ 54971,
+ 54972
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 44
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 45
}
}
},
"range": [
- 72267,
- 72273
+ 54967,
+ 54973
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 40
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 46
}
}
@@ -162584,31 +126914,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 72274,
- 72279
+ 54974,
+ 54979
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 47
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 52
}
}
},
"range": [
- 72267,
- 72279
+ 54967,
+ 54979
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 40
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 52
}
}
@@ -162617,31 +126947,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 72280,
- 72287
+ 54980,
+ 54987
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 53
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 60
}
}
},
"range": [
- 72267,
- 72287
+ 54967,
+ 54987
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 40
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 60
}
}
@@ -162651,46 +126981,46 @@
"value": "",
"raw": "''",
"range": [
- 72292,
- 72294
+ 54992,
+ 54994
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 65
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 67
}
}
},
"range": [
- 72267,
- 72294
+ 54967,
+ 54994
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 40
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 67
}
}
},
"range": [
- 72250,
- 72294
+ 54950,
+ 54994
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 23
},
"end": {
- "line": 1947,
+ "line": 1533,
"column": 67
}
}
@@ -162702,48 +127032,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 72321,
- 72330
+ 55021,
+ 55030
],
"loc": {
"start": {
- "line": 1948,
+ "line": 1534,
"column": 24
},
"end": {
- "line": 1948,
+ "line": 1534,
"column": 33
}
}
}
],
"range": [
- 72295,
- 72352
+ 54995,
+ 55052
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 68
},
"end": {
- "line": 1949,
+ "line": 1535,
"column": 21
}
}
},
"alternate": null,
"range": [
- 72247,
- 72352
+ 54947,
+ 55052
],
"loc": {
"start": {
- "line": 1947,
+ "line": 1533,
"column": 20
},
"end": {
- "line": 1949,
+ "line": 1535,
"column": 21
}
}
@@ -162757,16 +127087,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 72377,
- 72385
+ 55077,
+ 55085
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 24
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 32
}
}
@@ -162779,16 +127109,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 72388,
- 72392
+ 55088,
+ 55092
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 35
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 39
}
}
@@ -162797,31 +127127,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 72393,
- 72404
+ 55093,
+ 55104
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 40
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 51
}
}
},
"range": [
- 72388,
- 72404
+ 55088,
+ 55104
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 35
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 51
}
}
@@ -162834,16 +127164,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 72405,
- 72409
+ 55105,
+ 55109
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 52
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 56
}
}
@@ -162852,62 +127182,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 72410,
- 72411
+ 55110,
+ 55111
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 57
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 58
}
}
},
"range": [
- 72405,
- 72412
+ 55105,
+ 55112
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 52
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 59
}
}
}
],
"range": [
- 72388,
- 72413
+ 55088,
+ 55113
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 35
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 60
}
}
},
"range": [
- 72377,
- 72413
+ 55077,
+ 55113
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 24
},
"end": {
- "line": 1950,
+ "line": 1536,
"column": 60
}
}
@@ -162918,16 +127248,16 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 72439,
- 72447
+ 55139,
+ 55147
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 24
},
"end": {
- "line": 1951,
+ "line": 1537,
"column": 32
}
}
@@ -162940,16 +127270,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 72450,
- 72454
+ 55150,
+ 55154
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 35
},
"end": {
- "line": 1951,
+ "line": 1537,
"column": 39
}
}
@@ -162958,31 +127288,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 72455,
- 72466
+ 55155,
+ 55166
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 40
},
"end": {
- "line": 1951,
+ "line": 1537,
"column": 51
}
}
},
"range": [
- 72450,
- 72466
+ 55150,
+ 55166
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 35
},
"end": {
- "line": 1951,
+ "line": 1537,
"column": 51
}
}
@@ -162996,16 +127326,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 72497,
- 72501
+ 55197,
+ 55201
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 28
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 32
}
}
@@ -163014,31 +127344,31 @@
"type": "Identifier",
"name": "colNbFormat",
"range": [
- 72502,
- 72513
+ 55202,
+ 55213
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 33
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 44
}
}
},
"range": [
- 72497,
- 72513
+ 55197,
+ 55213
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 28
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 44
}
}
@@ -163047,31 +127377,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 72514,
- 72522
+ 55214,
+ 55222
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 45
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 53
}
}
},
"range": [
- 72497,
- 72523
+ 55197,
+ 55223
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 28
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 54
}
}
@@ -163081,46 +127411,46 @@
"value": null,
"raw": "null",
"range": [
- 72526,
- 72530
+ 55226,
+ 55230
],
"loc": {
"start": {
- "line": 1952,
+ "line": 1538,
"column": 57
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 61
}
}
},
"range": [
- 72450,
- 72530
+ 55150,
+ 55230
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 35
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 61
}
}
},
"range": [
- 72439,
- 72530
+ 55139,
+ 55230
],
"loc": {
"start": {
- "line": 1951,
+ "line": 1537,
"column": 24
},
"end": {
- "line": 1952,
+ "line": 1538,
"column": 61
}
}
@@ -163131,16 +127461,16 @@
"type": "Identifier",
"name": "data",
"range": [
- 72556,
- 72560
+ 55256,
+ 55260
],
"loc": {
"start": {
- "line": 1953,
+ "line": 1539,
"column": 24
},
"end": {
- "line": 1953,
+ "line": 1539,
"column": 28
}
}
@@ -163151,16 +127481,16 @@
"type": "Identifier",
"name": "num",
"range": [
- 72563,
- 72566
+ 55263,
+ 55266
],
"loc": {
"start": {
- "line": 1953,
+ "line": 1539,
"column": 31
},
"end": {
- "line": 1953,
+ "line": 1539,
"column": 34
}
}
@@ -163174,16 +127504,16 @@
"type": "Identifier",
"name": "Helpers",
"range": [
- 72601,
- 72608
+ 55301,
+ 55308
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 32
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 39
}
}
@@ -163192,31 +127522,31 @@
"type": "Identifier",
"name": "removeNbFormat",
"range": [
- 72609,
- 72623
+ 55309,
+ 55323
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 40
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 54
}
}
},
"range": [
- 72601,
- 72623
+ 55301,
+ 55323
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 32
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 54
}
}
@@ -163226,16 +127556,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 72624,
- 72632
+ 55324,
+ 55332
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 55
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 63
}
}
@@ -163244,32 +127574,32 @@
"type": "Identifier",
"name": "nbFormat",
"range": [
- 72634,
- 72642
+ 55334,
+ 55342
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 65
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 73
}
}
}
],
"range": [
- 72601,
- 72643
+ 55301,
+ 55343
],
"loc": {
"start": {
- "line": 1954,
+ "line": 1540,
"column": 32
},
"end": {
- "line": 1954,
+ "line": 1540,
"column": 74
}
}
@@ -163278,46 +127608,46 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 72678,
- 72686
+ 55378,
+ 55386
],
"loc": {
"start": {
- "line": 1955,
+ "line": 1541,
"column": 32
},
"end": {
- "line": 1955,
+ "line": 1541,
"column": 40
}
}
},
"range": [
- 72563,
- 72686
+ 55263,
+ 55386
],
"loc": {
"start": {
- "line": 1953,
+ "line": 1539,
"column": 31
},
"end": {
- "line": 1955,
+ "line": 1541,
"column": 40
}
}
},
"range": [
- 72556,
- 72686
+ 55256,
+ 55386
],
"loc": {
"start": {
- "line": 1953,
+ "line": 1539,
"column": 24
},
"end": {
- "line": 1955,
+ "line": 1541,
"column": 40
}
}
@@ -163325,16 +127655,16 @@
],
"kind": "let",
"range": [
- 72373,
- 72687
+ 55073,
+ 55387
],
"loc": {
"start": {
- "line": 1950,
+ "line": 1536,
"column": 20
},
"end": {
- "line": 1955,
+ "line": 1541,
"column": 41
}
}
@@ -163350,16 +127680,16 @@
"type": "Identifier",
"name": "colValues",
"range": [
- 72708,
- 72717
+ 55408,
+ 55417
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 20
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 29
}
}
@@ -163368,31 +127698,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 72718,
- 72722
+ 55418,
+ 55422
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 30
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 34
}
}
},
"range": [
- 72708,
- 72722
+ 55408,
+ 55422
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 20
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 34
}
}
@@ -163402,78 +127732,78 @@
"type": "Identifier",
"name": "data",
"range": [
- 72723,
- 72727
+ 55423,
+ 55427
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 35
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 39
}
}
}
],
"range": [
- 72708,
- 72728
+ 55408,
+ 55428
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 20
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 40
}
}
},
"range": [
- 72708,
- 72729
+ 55408,
+ 55429
],
"loc": {
"start": {
- "line": 1956,
+ "line": 1542,
"column": 20
},
"end": {
- "line": 1956,
+ "line": 1542,
"column": 41
}
}
}
],
"range": [
- 72225,
- 72747
+ 54925,
+ 55447
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 44
},
"end": {
- "line": 1957,
+ "line": 1543,
"column": 17
}
}
},
"range": [
- 72197,
- 72747
+ 54897,
+ 55447
],
"loc": {
"start": {
- "line": 1946,
+ "line": 1532,
"column": 16
},
"end": {
- "line": 1957,
+ "line": 1543,
"column": 17
}
},
@@ -163482,16 +127812,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 72148,
- 72180
+ 54848,
+ 54880
],
"loc": {
"start": {
- "line": 1945,
+ "line": 1531,
"column": 16
},
"end": {
- "line": 1945,
+ "line": 1531,
"column": 48
}
}
@@ -163500,32 +127830,32 @@
}
],
"range": [
- 72130,
- 72761
+ 54830,
+ 55461
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 57
},
"end": {
- "line": 1958,
+ "line": 1544,
"column": 13
}
}
},
"alternate": null,
"range": [
- 72085,
- 72761
+ 54785,
+ 55461
],
"loc": {
"start": {
- "line": 1944,
+ "line": 1530,
"column": 12
},
"end": {
- "line": 1958,
+ "line": 1544,
"column": 13
}
},
@@ -163534,16 +127864,16 @@
"type": "Line",
"value": " checks if row has exact cell # and is not excluded",
"range": [
- 72019,
- 72072
+ 54719,
+ 54772
],
"loc": {
"start": {
- "line": 1943,
+ "line": 1529,
"column": 12
},
"end": {
- "line": 1943,
+ "line": 1529,
"column": 65
}
}
@@ -163552,31 +127882,31 @@
}
],
"range": [
- 71715,
- 72771
+ 54415,
+ 55471
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 50
},
"end": {
- "line": 1959,
+ "line": 1545,
"column": 9
}
}
},
"range": [
- 71673,
- 72771
+ 54373,
+ 55471
],
"loc": {
"start": {
- "line": 1934,
+ "line": 1520,
"column": 8
},
"end": {
- "line": 1959,
+ "line": 1545,
"column": 9
}
}
@@ -163587,47 +127917,47 @@
"type": "Identifier",
"name": "colValues",
"range": [
- 72787,
- 72796
+ 55487,
+ 55496
],
"loc": {
"start": {
- "line": 1960,
+ "line": 1546,
"column": 15
},
"end": {
- "line": 1960,
+ "line": 1546,
"column": 24
}
}
},
"range": [
- 72780,
- 72797
+ 55480,
+ 55497
],
"loc": {
"start": {
- "line": 1960,
+ "line": 1546,
"column": 8
},
"end": {
- "line": 1960,
+ "line": 1546,
"column": 25
}
}
}
],
"range": [
- 71444,
- 72803
+ 54144,
+ 55503
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 71
},
"end": {
- "line": 1961,
+ "line": 1547,
"column": 5
}
}
@@ -163635,16 +127965,16 @@
"generator": false,
"expression": false,
"range": [
- 71389,
- 72803
+ 54089,
+ 55503
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 16
},
"end": {
- "line": 1961,
+ "line": 1547,
"column": 5
}
}
@@ -163652,34 +127982,34 @@
"kind": "method",
"computed": false,
"range": [
- 71377,
- 72803
+ 54077,
+ 55503
],
"loc": {
"start": {
- "line": 1923,
+ "line": 1509,
"column": 4
},
"end": {
- "line": 1961,
+ "line": 1547,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Return the data of a specified colum\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
+ "value": "*\n * Return the data of a specified column\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
"range": [
- 70989,
- 71372
+ 53688,
+ 54072
],
"loc": {
"start": {
- "line": 1915,
+ "line": 1501,
"column": 4
},
"end": {
- "line": 1922,
+ "line": 1508,
"column": 7
}
}
@@ -163690,16 +128020,16 @@
"type": "Block",
"value": "*\n * Return the filter's value of a specified column\n * @param {Number} index Column index\n * @return {String} Filter value\n ",
"range": [
- 72809,
- 72961
+ 55509,
+ 55661
],
"loc": {
"start": {
- "line": 1963,
+ "line": 1549,
"column": 4
},
"end": {
- "line": 1967,
+ "line": 1553,
"column": 7
}
}
@@ -163713,16 +128043,16 @@
"type": "Identifier",
"name": "getFilterValue",
"range": [
- 72966,
- 72980
+ 55666,
+ 55680
],
"loc": {
"start": {
- "line": 1968,
+ "line": 1554,
"column": 4
},
"end": {
- "line": 1968,
+ "line": 1554,
"column": 18
}
}
@@ -163735,16 +128065,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 72981,
- 72986
+ 55681,
+ 55686
],
"loc": {
"start": {
- "line": 1968,
+ "line": 1554,
"column": 19
},
"end": {
- "line": 1968,
+ "line": 1554,
"column": 24
}
}
@@ -163764,16 +128094,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73001,
- 73005
+ 55701,
+ 55705
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 12
},
"end": {
- "line": 1969,
+ "line": 1555,
"column": 16
}
}
@@ -163782,47 +128112,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 73006,
- 73013
+ 55706,
+ 55713
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 17
},
"end": {
- "line": 1969,
+ "line": 1555,
"column": 24
}
}
},
"range": [
- 73001,
- 73013
+ 55701,
+ 55713
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 12
},
"end": {
- "line": 1969,
+ "line": 1555,
"column": 24
}
}
},
"prefix": true,
"range": [
- 73000,
- 73013
+ 55700,
+ 55713
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 11
},
"end": {
- "line": 1969,
+ "line": 1555,
"column": 24
}
}
@@ -163834,48 +128164,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 73028,
- 73035
+ 55728,
+ 55735
],
"loc": {
"start": {
- "line": 1970,
+ "line": 1556,
"column": 12
},
"end": {
- "line": 1970,
+ "line": 1556,
"column": 19
}
}
}
],
"range": [
- 73014,
- 73045
+ 55714,
+ 55745
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 25
},
"end": {
- "line": 1971,
+ "line": 1557,
"column": 9
}
}
},
"alternate": null,
"range": [
- 72997,
- 73045
+ 55697,
+ 55745
],
"loc": {
"start": {
- "line": 1969,
+ "line": 1555,
"column": 8
},
"end": {
- "line": 1971,
+ "line": 1557,
"column": 9
}
}
@@ -163889,33 +128219,104 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 73058,
- 73066
+ 55758,
+ 55766
],
"loc": {
"start": {
- "line": 1972,
+ "line": 1558,
"column": 12
},
"end": {
- "line": 1972,
+ "line": 1558,
"column": 20
}
}
},
- "init": null,
+ "init": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 55769,
+ 55771
+ ],
+ "loc": {
+ "start": {
+ "line": 1558,
+ "column": 23
+ },
+ "end": {
+ "line": 1558,
+ "column": 25
+ }
+ }
+ },
"range": [
- 73058,
- 73066
+ 55758,
+ 55771
],
"loc": {
"start": {
- "line": 1972,
+ "line": 1558,
"column": 12
},
"end": {
- "line": 1972,
- "column": 20
+ "line": 1558,
+ "column": 25
+ }
+ }
+ },
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 55785,
+ 55794
+ ],
+ "loc": {
+ "start": {
+ "line": 1559,
+ "column": 12
+ },
+ "end": {
+ "line": 1559,
+ "column": 21
+ }
+ }
+ },
+ "init": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 55797,
+ 55799
+ ],
+ "loc": {
+ "start": {
+ "line": 1559,
+ "column": 24
+ },
+ "end": {
+ "line": 1559,
+ "column": 26
+ }
+ }
+ },
+ "range": [
+ 55785,
+ 55799
+ ],
+ "loc": {
+ "start": {
+ "line": 1559,
+ "column": 12
+ },
+ "end": {
+ "line": 1559,
+ "column": 26
}
}
},
@@ -163925,16 +128326,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73080,
- 73083
+ 55813,
+ 55816
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 12
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 15
}
}
@@ -163947,16 +128348,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73086,
- 73090
+ 55819,
+ 55823
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 18
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 22
}
}
@@ -163965,31 +128366,31 @@
"type": "Identifier",
"name": "getFilterElement",
"range": [
- 73091,
- 73107
+ 55824,
+ 55840
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 23
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 39
}
}
},
"range": [
- 73086,
- 73107
+ 55819,
+ 55840
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 18
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 39
}
}
@@ -163999,47 +128400,47 @@
"type": "Identifier",
"name": "index",
"range": [
- 73108,
- 73113
+ 55841,
+ 55846
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 40
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 45
}
}
}
],
"range": [
- 73086,
- 73114
+ 55819,
+ 55847
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 18
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 46
}
}
},
"range": [
- 73080,
- 73114
+ 55813,
+ 55847
],
"loc": {
"start": {
- "line": 1973,
+ "line": 1560,
"column": 12
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 46
}
}
@@ -164047,16 +128448,16 @@
],
"kind": "let",
"range": [
- 73054,
- 73115
+ 55754,
+ 55848
],
"loc": {
"start": {
- "line": 1972,
+ "line": 1558,
"column": 8
},
"end": {
- "line": 1973,
+ "line": 1560,
"column": 47
}
}
@@ -164070,32 +128471,32 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73128,
- 73131
+ 55861,
+ 55864
],
"loc": {
"start": {
- "line": 1974,
+ "line": 1561,
"column": 12
},
"end": {
- "line": 1974,
+ "line": 1561,
"column": 15
}
}
},
"prefix": true,
"range": [
- 73127,
- 73131
+ 55860,
+ 55864
],
"loc": {
"start": {
- "line": 1974,
+ "line": 1561,
"column": 11
},
"end": {
- "line": 1974,
+ "line": 1561,
"column": 15
}
}
@@ -164110,63 +128511,63 @@
"value": "",
"raw": "''",
"range": [
- 73153,
- 73155
+ 55886,
+ 55888
],
"loc": {
"start": {
- "line": 1975,
+ "line": 1562,
"column": 19
},
"end": {
- "line": 1975,
+ "line": 1562,
"column": 21
}
}
},
"range": [
- 73146,
- 73156
+ 55879,
+ 55889
],
"loc": {
"start": {
- "line": 1975,
+ "line": 1562,
"column": 12
},
"end": {
- "line": 1975,
+ "line": 1562,
"column": 22
}
}
}
],
"range": [
- 73132,
- 73166
+ 55865,
+ 55899
],
"loc": {
"start": {
- "line": 1974,
+ "line": 1561,
"column": 16
},
"end": {
- "line": 1976,
+ "line": 1563,
"column": 9
}
}
},
"alternate": null,
"range": [
- 73124,
- 73166
+ 55857,
+ 55899
],
"loc": {
"start": {
- "line": 1974,
+ "line": 1561,
"column": 8
},
"end": {
- "line": 1976,
+ "line": 1563,
"column": 9
}
}
@@ -164180,16 +128581,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 73180,
- 73190
+ 55913,
+ 55923
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 12
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 22
}
}
@@ -164202,16 +128603,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73193,
- 73197
+ 55926,
+ 55930
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 25
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 29
}
}
@@ -164220,31 +128621,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 73198,
- 73211
+ 55931,
+ 55944
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 30
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 43
}
}
},
"range": [
- 73193,
- 73211
+ 55926,
+ 55944
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 25
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 43
}
}
@@ -164254,47 +128655,47 @@
"type": "Identifier",
"name": "index",
"range": [
- 73212,
- 73217
+ 55945,
+ 55950
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 44
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 49
}
}
}
],
"range": [
- 73193,
- 73218
+ 55926,
+ 55951
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 25
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 50
}
}
},
"range": [
- 73180,
- 73218
+ 55913,
+ 55951
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 12
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 50
}
}
@@ -164302,16 +128703,16 @@
],
"kind": "let",
"range": [
- 73176,
- 73219
+ 55909,
+ 55952
],
"loc": {
"start": {
- "line": 1978,
+ "line": 1565,
"column": 8
},
"end": {
- "line": 1978,
+ "line": 1565,
"column": 51
}
}
@@ -164328,16 +128729,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 73231,
- 73241
+ 55964,
+ 55974
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 11
},
"end": {
- "line": 1979,
+ "line": 1566,
"column": 21
}
}
@@ -164348,16 +128749,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73246,
- 73250
+ 55979,
+ 55983
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 26
},
"end": {
- "line": 1979,
+ "line": 1566,
"column": 30
}
}
@@ -164366,46 +128767,46 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 73251,
- 73263
+ 55984,
+ 55996
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 31
},
"end": {
- "line": 1979,
+ "line": 1566,
"column": 43
}
}
},
"range": [
- 73246,
- 73263
+ 55979,
+ 55996
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 26
},
"end": {
- "line": 1979,
+ "line": 1566,
"column": 43
}
}
},
"range": [
- 73231,
- 73263
+ 55964,
+ 55996
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 11
},
"end": {
- "line": 1979,
+ "line": 1566,
"column": 43
}
}
@@ -164417,16 +128818,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 73279,
- 73289
+ 56012,
+ 56022
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 12
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 22
}
}
@@ -164437,16 +128838,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73294,
- 73298
+ 56027,
+ 56031
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 27
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 31
}
}
@@ -164455,61 +128856,61 @@
"type": "Identifier",
"name": "fltTypeCheckList",
"range": [
- 73299,
- 73315
+ 56032,
+ 56048
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 32
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 48
}
}
},
"range": [
- 73294,
- 73315
+ 56027,
+ 56048
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 27
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 48
}
}
},
"range": [
- 73279,
- 73315
+ 56012,
+ 56048
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 12
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 48
}
}
},
"range": [
- 73231,
- 73315
+ 55964,
+ 56048
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 11
},
"end": {
- "line": 1980,
+ "line": 1567,
"column": 48
}
}
@@ -164526,16 +128927,16 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 73330,
- 73338
+ 56063,
+ 56071
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 12
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 20
}
}
@@ -164547,16 +128948,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73341,
- 73344
+ 56074,
+ 56077
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 23
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 26
}
}
@@ -164565,77 +128966,77 @@
"type": "Identifier",
"name": "value",
"range": [
- 73345,
- 73350
+ 56078,
+ 56083
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 27
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 32
}
}
},
"range": [
- 73341,
- 73350
+ 56074,
+ 56083
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 23
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 32
}
}
},
"range": [
- 73330,
- 73350
+ 56063,
+ 56083
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 12
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 32
}
}
},
"range": [
- 73330,
- 73351
+ 56063,
+ 56084
],
"loc": {
"start": {
- "line": 1981,
+ "line": 1568,
"column": 12
},
"end": {
- "line": 1981,
+ "line": 1568,
"column": 33
}
}
}
],
"range": [
- 73316,
- 73361
+ 56049,
+ 56094
],
"loc": {
"start": {
- "line": 1980,
+ "line": 1567,
"column": 49
},
"end": {
- "line": 1982,
+ "line": 1569,
"column": 9
}
},
@@ -164644,16 +129045,16 @@
"type": "Line",
"value": "mutiple select",
"range": [
- 73370,
- 73386
+ 56103,
+ 56119
],
"loc": {
"start": {
- "line": 1983,
+ "line": 1570,
"column": 8
},
"end": {
- "line": 1983,
+ "line": 1570,
"column": 24
}
}
@@ -164669,16 +129070,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 73403,
- 73413
+ 56136,
+ 56146
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 16
},
"end": {
- "line": 1984,
+ "line": 1571,
"column": 26
}
}
@@ -164689,16 +129090,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73418,
- 73422
+ 56151,
+ 56155
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 31
},
"end": {
- "line": 1984,
+ "line": 1571,
"column": 35
}
}
@@ -164707,46 +129108,46 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 73423,
- 73435
+ 56156,
+ 56168
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 36
},
"end": {
- "line": 1984,
+ "line": 1571,
"column": 48
}
}
},
"range": [
- 73418,
- 73435
+ 56151,
+ 56168
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 31
},
"end": {
- "line": 1984,
+ "line": 1571,
"column": 48
}
}
},
"range": [
- 73403,
- 73435
+ 56136,
+ 56168
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 16
},
"end": {
- "line": 1984,
+ "line": 1571,
"column": 48
}
}
@@ -164754,78 +129155,6 @@
"consequent": {
"type": "BlockStatement",
"body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltValue",
- "range": [
- 73450,
- 73458
- ],
- "loc": {
- "start": {
- "line": 1985,
- "column": 12
- },
- "end": {
- "line": 1985,
- "column": 20
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 73461,
- 73463
- ],
- "loc": {
- "start": {
- "line": 1985,
- "column": 23
- },
- "end": {
- "line": 1985,
- "column": 25
- }
- }
- },
- "range": [
- 73450,
- 73463
- ],
- "loc": {
- "start": {
- "line": 1985,
- "column": 12
- },
- "end": {
- "line": 1985,
- "column": 25
- }
- }
- },
- "range": [
- 73450,
- 73464
- ],
- "loc": {
- "start": {
- "line": 1985,
- "column": 12
- },
- "end": {
- "line": 1985,
- "column": 26
- }
- }
- },
{
"type": "ForStatement",
"init": {
@@ -164837,16 +129166,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 73485,
- 73486
+ 56259,
+ 56260
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 20
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 21
}
}
@@ -164856,31 +129185,31 @@
"value": 0,
"raw": "0",
"range": [
- 73487,
- 73488
+ 56261,
+ 56262
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 22
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 23
}
}
},
"range": [
- 73485,
- 73488
+ 56259,
+ 56262
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 20
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 23
}
}
@@ -164891,16 +129220,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 73490,
- 73493
+ 56264,
+ 56267
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 25
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 28
}
}
@@ -164915,16 +129244,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73494,
- 73497
+ 56268,
+ 56271
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 29
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 32
}
}
@@ -164933,31 +129262,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 73498,
- 73505
+ 56272,
+ 56279
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 33
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 40
}
}
},
"range": [
- 73494,
- 73505
+ 56268,
+ 56279
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 29
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 40
}
}
@@ -164966,46 +129295,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 73506,
- 73512
+ 56280,
+ 56286
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 41
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 47
}
}
},
"range": [
- 73494,
- 73512
+ 56268,
+ 56286
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 29
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 47
}
}
},
"range": [
- 73490,
- 73512
+ 56264,
+ 56286
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 25
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 47
}
}
@@ -165013,16 +129342,16 @@
],
"kind": "let",
"range": [
- 73481,
- 73512
+ 56255,
+ 56286
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 16
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 47
}
}
@@ -165034,16 +129363,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 73514,
- 73515
+ 56288,
+ 56289
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 49
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 50
}
}
@@ -165052,31 +129381,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 73516,
- 73519
+ 56290,
+ 56293
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 51
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 54
}
}
},
"range": [
- 73514,
- 73519
+ 56288,
+ 56293
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 49
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 54
}
}
@@ -165088,32 +129417,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 73521,
- 73522
+ 56295,
+ 56296
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 56
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 57
}
}
},
"prefix": false,
"range": [
- 73521,
- 73524
+ 56295,
+ 56298
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 56
},
"end": {
- "line": 1986,
+ "line": 1573,
"column": 59
}
}
@@ -165136,16 +129465,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73546,
- 73549
+ 56320,
+ 56323
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 19
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 22
}
}
@@ -165154,31 +129483,31 @@
"type": "Identifier",
"name": "options",
"range": [
- 73550,
- 73557
+ 56324,
+ 56331
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 23
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 30
}
}
},
"range": [
- 73546,
- 73557
+ 56320,
+ 56331
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 19
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 30
}
}
@@ -165187,31 +129516,31 @@
"type": "Identifier",
"name": "j",
"range": [
- 73558,
- 73559
+ 56332,
+ 56333
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 31
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 32
}
}
},
"range": [
- 73546,
- 73560
+ 56320,
+ 56334
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 19
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 33
}
}
@@ -165220,31 +129549,31 @@
"type": "Identifier",
"name": "selected",
"range": [
- 73561,
- 73569
+ 56335,
+ 56343
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 34
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 42
}
}
},
"range": [
- 73546,
- 73569
+ 56320,
+ 56343
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 19
},
"end": {
- "line": 1987,
+ "line": 1574,
"column": 42
}
}
@@ -165255,478 +129584,317 @@
{
"type": "ExpressionStatement",
"expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "fltValue",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 56366,
+ 56375
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 20
+ },
+ "end": {
+ "line": 1575,
+ "column": 29
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 56376,
+ 56380
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 30
+ },
+ "end": {
+ "line": 1575,
+ "column": 34
+ }
+ }
+ },
"range": [
- 73592,
- 73600
+ 56366,
+ 56380
],
"loc": {
"start": {
- "line": 1988,
+ "line": 1575,
"column": 20
},
"end": {
- "line": 1988,
- "column": 28
+ "line": 1575,
+ "column": 34
}
}
},
- "right": {
- "type": "CallExpression",
- "callee": {
+ "arguments": [
+ {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "fltValue",
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "flt",
+ "range": [
+ 56381,
+ 56384
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 35
+ },
+ "end": {
+ "line": 1575,
+ "column": 38
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "options",
+ "range": [
+ 56385,
+ 56392
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 39
+ },
+ "end": {
+ "line": 1575,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 56381,
+ 56392
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 35
+ },
+ "end": {
+ "line": 1575,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "j",
+ "range": [
+ 56393,
+ 56394
+ ],
+ "loc": {
+ "start": {
+ "line": 1575,
+ "column": 47
+ },
+ "end": {
+ "line": 1575,
+ "column": 48
+ }
+ }
+ },
"range": [
- 73603,
- 73611
+ 56381,
+ 56395
],
"loc": {
"start": {
- "line": 1988,
- "column": 31
+ "line": 1575,
+ "column": 35
},
"end": {
- "line": 1988,
- "column": 39
+ "line": 1575,
+ "column": 49
}
}
},
"property": {
"type": "Identifier",
- "name": "concat",
+ "name": "value",
"range": [
- 73612,
- 73618
+ 56396,
+ 56401
],
"loc": {
"start": {
- "line": 1988,
- "column": 40
+ "line": 1575,
+ "column": 50
},
"end": {
- "line": 1988,
- "column": 46
+ "line": 1575,
+ "column": 55
}
}
},
"range": [
- 73603,
- 73618
+ 56381,
+ 56401
],
"loc": {
"start": {
- "line": 1988,
- "column": 31
+ "line": 1575,
+ "column": 35
},
"end": {
- "line": 1988,
- "column": 46
+ "line": 1575,
+ "column": 55
}
}
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "flt",
- "range": [
- 73644,
- 73647
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1989,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "options",
- "range": [
- 73648,
- 73655
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 28
- },
- "end": {
- "line": 1989,
- "column": 35
- }
- }
- },
- "range": [
- 73644,
- 73655
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1989,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 73656,
- 73657
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 36
- },
- "end": {
- "line": 1989,
- "column": 37
- }
- }
- },
- "range": [
- 73644,
- 73658
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1989,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "value",
- "range": [
- 73659,
- 73664
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 39
- },
- "end": {
- "line": 1989,
- "column": 44
- }
- }
- },
- "range": [
- 73644,
- 73664
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1989,
- "column": 44
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 73665,
- 73668
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 45
- },
- "end": {
- "line": 1989,
- "column": 48
- }
- }
- },
- "range": [
- 73644,
- 73668
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1989,
- "column": 48
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 73695,
- 73699
- ],
- "loc": {
- "start": {
- "line": 1990,
- "column": 24
- },
- "end": {
- "line": 1990,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 73700,
- 73710
- ],
- "loc": {
- "start": {
- "line": 1990,
- "column": 29
- },
- "end": {
- "line": 1990,
- "column": 39
- }
- }
- },
- "range": [
- 73695,
- 73710
- ],
- "loc": {
- "start": {
- "line": 1990,
- "column": 24
- },
- "end": {
- "line": 1990,
- "column": 39
- }
- }
- },
- "range": [
- 73644,
- 73710
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1990,
- "column": 39
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 73713,
- 73716
- ],
- "loc": {
- "start": {
- "line": 1990,
- "column": 42
- },
- "end": {
- "line": 1990,
- "column": 45
- }
- }
- },
- "range": [
- 73644,
- 73716
- ],
- "loc": {
- "start": {
- "line": 1989,
- "column": 24
- },
- "end": {
- "line": 1990,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 73603,
- 73738
- ],
- "loc": {
- "start": {
- "line": 1988,
- "column": 31
- },
- "end": {
- "line": 1991,
- "column": 21
- }
}
- },
+ ],
"range": [
- 73592,
- 73738
+ 56366,
+ 56402
],
"loc": {
"start": {
- "line": 1988,
+ "line": 1575,
"column": 20
},
"end": {
- "line": 1991,
- "column": 21
+ "line": 1575,
+ "column": 56
}
}
},
"range": [
- 73592,
- 73739
+ 56366,
+ 56403
],
"loc": {
"start": {
- "line": 1988,
+ "line": 1575,
"column": 20
},
"end": {
- "line": 1991,
- "column": 22
+ "line": 1575,
+ "column": 57
}
}
}
],
"range": [
- 73570,
- 73757
+ 56344,
+ 56421
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 43
},
"end": {
- "line": 1992,
+ "line": 1576,
"column": 17
}
}
},
"alternate": null,
"range": [
- 73543,
- 73757
+ 56317,
+ 56421
],
"loc": {
"start": {
- "line": 1987,
+ "line": 1574,
"column": 16
},
"end": {
- "line": 1992,
+ "line": 1576,
"column": 17
}
}
}
],
"range": [
- 73525,
- 73771
+ 56299,
+ 56435
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 60
},
"end": {
- "line": 1993,
+ "line": 1577,
"column": 13
}
}
},
"range": [
- 73477,
- 73771
+ 56251,
+ 56435
],
"loc": {
"start": {
- "line": 1986,
+ "line": 1573,
"column": 12
},
"end": {
- "line": 1993,
+ "line": 1577,
"column": 13
}
},
- "trailingComments": [
+ "leadingComments": [
{
"type": "Line",
- "value": "removes last operator ||",
+ "value": " TODO: extract a method in dropdown module from below",
"range": [
- 73784,
- 73810
+ 56183,
+ 56238
],
"loc": {
"start": {
- "line": 1994,
+ "line": 1572,
"column": 12
},
"end": {
- "line": 1994,
- "column": 38
+ "line": 1572,
+ "column": 67
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "return empty string if collection is empty",
+ "range": [
+ 56448,
+ 56492
+ ],
+ "loc": {
+ "start": {
+ "line": 1578,
+ "column": 12
+ },
+ "end": {
+ "line": 1578,
+ "column": 56
}
}
}
@@ -165741,248 +129909,210 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 73823,
- 73831
+ 56505,
+ 56513
],
"loc": {
"start": {
- "line": 1995,
+ "line": 1579,
"column": 12
},
"end": {
- "line": 1995,
+ "line": 1579,
"column": 20
}
}
},
"right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltValue",
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 56516,
+ 56525
+ ],
+ "loc": {
+ "start": {
+ "line": 1579,
+ "column": 23
+ },
+ "end": {
+ "line": 1579,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 56526,
+ 56532
+ ],
+ "loc": {
+ "start": {
+ "line": 1579,
+ "column": 33
+ },
+ "end": {
+ "line": 1579,
+ "column": 39
+ }
+ }
+ },
"range": [
- 73834,
- 73842
+ 56516,
+ 56532
],
"loc": {
"start": {
- "line": 1995,
+ "line": 1579,
"column": 23
},
"end": {
- "line": 1995,
- "column": 31
+ "line": 1579,
+ "column": 39
}
}
},
- "property": {
- "type": "Identifier",
- "name": "substr",
- "range": [
- 73843,
- 73849
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 32
- },
- "end": {
- "line": 1995,
- "column": 38
- }
- }
- },
- "range": [
- 73834,
- 73849
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 23
- },
- "end": {
- "line": 1995,
- "column": 38
- }
- }
- },
- "arguments": [
- {
+ "right": {
"type": "Literal",
"value": 0,
"raw": "0",
"range": [
- 73850,
- 73851
+ 56535,
+ 56536
],
"loc": {
"start": {
- "line": 1995,
- "column": 39
- },
- "end": {
- "line": 1995,
- "column": 40
- }
- }
- },
- {
- "type": "BinaryExpression",
- "operator": "-",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "fltValue",
- "range": [
- 73853,
- 73861
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 42
- },
- "end": {
- "line": 1995,
- "column": 50
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 73862,
- 73868
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 51
- },
- "end": {
- "line": 1995,
- "column": 57
- }
- }
- },
- "range": [
- 73853,
- 73868
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 42
- },
- "end": {
- "line": 1995,
- "column": 57
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": 4,
- "raw": "4",
- "range": [
- 73869,
- 73870
- ],
- "loc": {
- "start": {
- "line": 1995,
- "column": 58
- },
- "end": {
- "line": 1995,
- "column": 59
- }
- }
- },
- "range": [
- 73853,
- 73870
- ],
- "loc": {
- "start": {
- "line": 1995,
+ "line": 1579,
"column": 42
},
"end": {
- "line": 1995,
- "column": 59
+ "line": 1579,
+ "column": 43
}
}
+ },
+ "range": [
+ 56516,
+ 56536
+ ],
+ "loc": {
+ "start": {
+ "line": 1579,
+ "column": 23
+ },
+ "end": {
+ "line": 1579,
+ "column": 43
+ }
}
- ],
+ },
+ "consequent": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 56539,
+ 56548
+ ],
+ "loc": {
+ "start": {
+ "line": 1579,
+ "column": 46
+ },
+ "end": {
+ "line": 1579,
+ "column": 55
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 56551,
+ 56553
+ ],
+ "loc": {
+ "start": {
+ "line": 1579,
+ "column": 58
+ },
+ "end": {
+ "line": 1579,
+ "column": 60
+ }
+ }
+ },
"range": [
- 73834,
- 73871
+ 56516,
+ 56553
],
"loc": {
"start": {
- "line": 1995,
+ "line": 1579,
"column": 23
},
"end": {
- "line": 1995,
+ "line": 1579,
"column": 60
}
}
},
"range": [
- 73823,
- 73871
+ 56505,
+ 56553
],
"loc": {
"start": {
- "line": 1995,
+ "line": 1579,
"column": 12
},
"end": {
- "line": 1995,
+ "line": 1579,
"column": 60
}
}
},
"range": [
- 73823,
- 73872
+ 56505,
+ 56554
],
"loc": {
"start": {
- "line": 1995,
+ "line": 1579,
"column": 12
},
"end": {
- "line": 1995,
+ "line": 1579,
"column": 61
}
},
"leadingComments": [
{
"type": "Line",
- "value": "removes last operator ||",
+ "value": "return empty string if collection is empty",
"range": [
- 73784,
- 73810
+ 56448,
+ 56492
],
"loc": {
"start": {
- "line": 1994,
+ "line": 1578,
"column": 12
},
"end": {
- "line": 1994,
- "column": 38
+ "line": 1578,
+ "column": 56
}
}
}
@@ -165990,16 +130120,16 @@
}
],
"range": [
- 73436,
- 73882
+ 56169,
+ 56564
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 49
},
"end": {
- "line": 1996,
+ "line": 1580,
"column": 9
}
},
@@ -166008,16 +130138,16 @@
"type": "Line",
"value": "checklist",
"range": [
- 73891,
- 73902
+ 56573,
+ 56584
],
"loc": {
"start": {
- "line": 1997,
+ "line": 1581,
"column": 8
},
"end": {
- "line": 1997,
+ "line": 1581,
"column": 19
}
}
@@ -166033,16 +130163,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 73919,
- 73929
+ 56601,
+ 56611
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 16
},
"end": {
- "line": 1998,
+ "line": 1582,
"column": 26
}
}
@@ -166053,16 +130183,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 73934,
- 73938
+ 56616,
+ 56620
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 31
},
"end": {
- "line": 1998,
+ "line": 1582,
"column": 35
}
}
@@ -166071,46 +130201,46 @@
"type": "Identifier",
"name": "fltTypeCheckList",
"range": [
- 73939,
- 73955
+ 56621,
+ 56637
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 36
},
"end": {
- "line": 1998,
+ "line": 1582,
"column": 52
}
}
},
"range": [
- 73934,
- 73955
+ 56616,
+ 56637
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 31
},
"end": {
- "line": 1998,
+ "line": 1582,
"column": 52
}
}
},
"range": [
- 73919,
- 73955
+ 56601,
+ 56637
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 16
},
"end": {
- "line": 1998,
+ "line": 1582,
"column": 52
}
}
@@ -166132,16 +130262,16 @@
"type": "Identifier",
"name": "flt",
"range": [
- 73973,
- 73976
+ 56724,
+ 56727
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 15
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 18
}
}
@@ -166150,31 +130280,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 73977,
- 73989
+ 56728,
+ 56740
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 19
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 31
}
}
},
"range": [
- 73973,
- 73989
+ 56724,
+ 56740
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 15
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 31
}
}
@@ -166185,32 +130315,32 @@
"value": "value",
"raw": "'value'",
"range": [
- 73990,
- 73997
+ 56741,
+ 56748
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 32
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 39
}
}
}
],
"range": [
- 73973,
- 73998
+ 56724,
+ 56749
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 15
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 40
}
}
@@ -166220,31 +130350,31 @@
"value": null,
"raw": "null",
"range": [
- 74003,
- 74007
+ 56754,
+ 56758
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 45
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 49
}
}
},
"range": [
- 73973,
- 74007
+ 56724,
+ 56758
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 15
},
"end": {
- "line": 1999,
+ "line": 1584,
"column": 49
}
}
@@ -166259,19 +130389,19 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "fltValue",
+ "name": "fltValues",
"range": [
- 74026,
- 74034
+ 56777,
+ 56786
],
"loc": {
"start": {
- "line": 2000,
+ "line": 1585,
"column": 16
},
"end": {
- "line": 2000,
- "column": 24
+ "line": 1585,
+ "column": 25
}
}
},
@@ -166284,17 +130414,17 @@
"type": "Identifier",
"name": "flt",
"range": [
- 74037,
- 74040
+ 56789,
+ 56792
],
"loc": {
"start": {
- "line": 2000,
- "column": 27
+ "line": 1585,
+ "column": 28
},
"end": {
- "line": 2000,
- "column": 30
+ "line": 1585,
+ "column": 31
}
}
},
@@ -166302,32 +130432,32 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 74041,
- 74053
+ 56793,
+ 56805
],
"loc": {
"start": {
- "line": 2000,
- "column": 31
+ "line": 1585,
+ "column": 32
},
"end": {
- "line": 2000,
- "column": 43
+ "line": 1585,
+ "column": 44
}
}
},
"range": [
- 74037,
- 74053
+ 56789,
+ 56805
],
"loc": {
"start": {
- "line": 2000,
- "column": 27
+ "line": 1585,
+ "column": 28
},
"end": {
- "line": 2000,
- "column": 43
+ "line": 1585,
+ "column": 44
}
}
},
@@ -166337,63 +130467,63 @@
"value": "value",
"raw": "'value'",
"range": [
- 74054,
- 74061
+ 56806,
+ 56813
],
"loc": {
"start": {
- "line": 2000,
- "column": 44
+ "line": 1585,
+ "column": 45
},
"end": {
- "line": 2000,
- "column": 51
+ "line": 1585,
+ "column": 52
}
}
}
],
"range": [
- 74037,
- 74062
+ 56789,
+ 56814
],
"loc": {
"start": {
- "line": 2000,
- "column": 27
+ "line": 1585,
+ "column": 28
},
"end": {
- "line": 2000,
- "column": 52
+ "line": 1585,
+ "column": 53
}
}
},
"range": [
- 74026,
- 74062
+ 56777,
+ 56814
],
"loc": {
"start": {
- "line": 2000,
+ "line": 1585,
"column": 16
},
"end": {
- "line": 2000,
- "column": 52
+ "line": 1585,
+ "column": 53
}
}
},
"range": [
- 74026,
- 74063
+ 56777,
+ 56815
],
"loc": {
"start": {
- "line": 2000,
+ "line": 1585,
"column": 16
},
"end": {
- "line": 2000,
- "column": 53
+ "line": 1585,
+ "column": 54
}
},
"trailingComments": [
@@ -166401,16 +130531,16 @@
"type": "Line",
"value": "removes last operator ||",
"range": [
- 74080,
- 74106
+ 56832,
+ 56858
],
"loc": {
"start": {
- "line": 2001,
+ "line": 1586,
"column": 16
},
"end": {
- "line": 2001,
+ "line": 1586,
"column": 42
}
}
@@ -166424,19 +130554,19 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "fltValue",
+ "name": "fltValues",
"range": [
- 74123,
- 74131
+ 56875,
+ 56884
],
"loc": {
"start": {
- "line": 2002,
+ "line": 1587,
"column": 16
},
"end": {
- "line": 2002,
- "column": 24
+ "line": 1587,
+ "column": 25
}
}
},
@@ -166447,19 +130577,19 @@
"computed": false,
"object": {
"type": "Identifier",
- "name": "fltValue",
+ "name": "fltValues",
"range": [
- 74134,
- 74142
+ 56887,
+ 56896
],
"loc": {
"start": {
- "line": 2002,
- "column": 27
+ "line": 1587,
+ "column": 28
},
"end": {
- "line": 2002,
- "column": 35
+ "line": 1587,
+ "column": 37
}
}
},
@@ -166467,32 +130597,32 @@
"type": "Identifier",
"name": "substr",
"range": [
- 74143,
- 74149
+ 56897,
+ 56903
],
"loc": {
"start": {
- "line": 2002,
- "column": 36
+ "line": 1587,
+ "column": 38
},
"end": {
- "line": 2002,
- "column": 42
+ "line": 1587,
+ "column": 44
}
}
},
"range": [
- 74134,
- 74149
+ 56887,
+ 56903
],
"loc": {
"start": {
- "line": 2002,
- "column": 27
+ "line": 1587,
+ "column": 28
},
"end": {
- "line": 2002,
- "column": 42
+ "line": 1587,
+ "column": 44
}
}
},
@@ -166502,17 +130632,17 @@
"value": 0,
"raw": "0",
"range": [
- 74150,
- 74151
+ 56904,
+ 56905
],
"loc": {
"start": {
- "line": 2002,
- "column": 43
+ "line": 1587,
+ "column": 45
},
"end": {
- "line": 2002,
- "column": 44
+ "line": 1587,
+ "column": 46
}
}
},
@@ -166524,19 +130654,19 @@
"computed": false,
"object": {
"type": "Identifier",
- "name": "fltValue",
+ "name": "fltValues",
"range": [
- 74153,
- 74161
+ 56907,
+ 56916
],
"loc": {
"start": {
- "line": 2002,
- "column": 46
+ "line": 1587,
+ "column": 48
},
"end": {
- "line": 2002,
- "column": 54
+ "line": 1587,
+ "column": 57
}
}
},
@@ -166544,32 +130674,32 @@
"type": "Identifier",
"name": "length",
"range": [
- 74162,
- 74168
+ 56917,
+ 56923
],
"loc": {
"start": {
- "line": 2002,
- "column": 55
+ "line": 1587,
+ "column": 58
},
"end": {
- "line": 2002,
- "column": 61
+ "line": 1587,
+ "column": 64
}
}
},
"range": [
- 74153,
- 74168
+ 56907,
+ 56923
],
"loc": {
"start": {
- "line": 2002,
- "column": 46
+ "line": 1587,
+ "column": 48
},
"end": {
- "line": 2002,
- "column": 61
+ "line": 1587,
+ "column": 64
}
}
},
@@ -166578,78 +130708,78 @@
"value": 3,
"raw": "3",
"range": [
- 74169,
- 74170
+ 56924,
+ 56925
],
"loc": {
"start": {
- "line": 2002,
- "column": 62
+ "line": 1587,
+ "column": 65
},
"end": {
- "line": 2002,
- "column": 63
+ "line": 1587,
+ "column": 66
}
}
},
"range": [
- 74153,
- 74170
+ 56907,
+ 56925
],
"loc": {
"start": {
- "line": 2002,
- "column": 46
+ "line": 1587,
+ "column": 48
},
"end": {
- "line": 2002,
- "column": 63
+ "line": 1587,
+ "column": 66
}
}
}
],
"range": [
- 74134,
- 74171
+ 56887,
+ 56926
],
"loc": {
"start": {
- "line": 2002,
- "column": 27
+ "line": 1587,
+ "column": 28
},
"end": {
- "line": 2002,
- "column": 64
+ "line": 1587,
+ "column": 67
}
}
},
"range": [
- 74123,
- 74171
+ 56875,
+ 56926
],
"loc": {
"start": {
- "line": 2002,
+ "line": 1587,
"column": 16
},
"end": {
- "line": 2002,
- "column": 64
+ "line": 1587,
+ "column": 67
}
}
},
"range": [
- 74123,
- 74172
+ 56875,
+ 56927
],
"loc": {
"start": {
- "line": 2002,
+ "line": 1587,
"column": 16
},
"end": {
- "line": 2002,
- "column": 65
+ "line": 1587,
+ "column": 68
}
},
"leadingComments": [
@@ -166657,41 +130787,42 @@
"type": "Line",
"value": "removes last operator ||",
"range": [
- 74080,
- 74106
+ 56832,
+ 56858
],
"loc": {
"start": {
- "line": 2001,
+ "line": 1586,
"column": 16
},
"end": {
- "line": 2001,
+ "line": 1586,
"column": 42
}
}
}
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "convert || separated values into array",
+ "range": [
+ 56944,
+ 56984
+ ],
+ "loc": {
+ "start": {
+ "line": 1588,
+ "column": 16
+ },
+ "end": {
+ "line": 1588,
+ "column": 56
+ }
+ }
+ }
]
- }
- ],
- "range": [
- 74008,
- 74186
- ],
- "loc": {
- "start": {
- "line": 1999,
- "column": 50
},
- "end": {
- "line": 2003,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
{
"type": "ExpressionStatement",
"expression": {
@@ -166699,130 +130830,590 @@
"operator": "=",
"left": {
"type": "Identifier",
- "name": "fltValue",
+ "name": "fltValues",
"range": [
- 74209,
- 74217
+ 57001,
+ 57010
],
"loc": {
"start": {
- "line": 2004,
+ "line": 1589,
"column": 16
},
"end": {
- "line": 2004,
- "column": 24
+ "line": 1589,
+ "column": 25
}
}
},
"right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 57013,
+ 57022
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 28
+ },
+ "end": {
+ "line": 1589,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "split",
+ "range": [
+ 57023,
+ 57028
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 38
+ },
+ "end": {
+ "line": 1589,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 57013,
+ 57028
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 28
+ },
+ "end": {
+ "line": 1589,
+ "column": 43
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 57029,
+ 57032
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 44
+ },
+ "end": {
+ "line": 1589,
+ "column": 47
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 57035,
+ 57039
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 50
+ },
+ "end": {
+ "line": 1589,
+ "column": 54
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "orOperator",
+ "range": [
+ 57040,
+ 57050
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 55
+ },
+ "end": {
+ "line": 1589,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 57035,
+ 57050
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 50
+ },
+ "end": {
+ "line": 1589,
+ "column": 65
+ }
+ }
+ },
+ "range": [
+ 57029,
+ 57050
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 44
+ },
+ "end": {
+ "line": 1589,
+ "column": 65
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 57053,
+ 57056
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 68
+ },
+ "end": {
+ "line": 1589,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 57029,
+ 57056
+ ],
+ "loc": {
+ "start": {
+ "line": 1589,
+ "column": 44
+ },
+ "end": {
+ "line": 1589,
+ "column": 71
+ }
+ }
+ }
+ ],
"range": [
- 74220,
- 74222
+ 57013,
+ 57057
],
"loc": {
"start": {
- "line": 2004,
- "column": 27
+ "line": 1589,
+ "column": 28
},
"end": {
- "line": 2004,
- "column": 29
+ "line": 1589,
+ "column": 72
}
}
},
"range": [
- 74209,
- 74222
+ 57001,
+ 57057
],
"loc": {
"start": {
- "line": 2004,
+ "line": 1589,
"column": 16
},
"end": {
- "line": 2004,
- "column": 29
+ "line": 1589,
+ "column": 72
}
}
},
"range": [
- 74209,
- 74223
+ 57001,
+ 57058
],
"loc": {
"start": {
- "line": 2004,
+ "line": 1589,
"column": 16
},
"end": {
- "line": 2004,
- "column": 30
+ "line": 1589,
+ "column": 73
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "convert || separated values into array",
+ "range": [
+ 56944,
+ 56984
+ ],
+ "loc": {
+ "start": {
+ "line": 1588,
+ "column": 16
+ },
+ "end": {
+ "line": 1588,
+ "column": 56
+ }
+ }
+ }
+ ]
}
],
"range": [
- 74191,
- 74237
+ 56759,
+ 57072
],
"loc": {
"start": {
- "line": 2003,
- "column": 18
+ "line": 1584,
+ "column": 50
},
"end": {
- "line": 2005,
+ "line": 1590,
"column": 13
}
}
},
+ "alternate": null,
"range": [
- 73970,
- 74237
+ 56721,
+ 57072
],
"loc": {
"start": {
- "line": 1999,
+ "line": 1584,
"column": 12
},
"end": {
- "line": 2005,
+ "line": 1590,
"column": 13
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " TODO: extract a method in checklist module from below",
+ "range": [
+ 56652,
+ 56708
+ ],
+ "loc": {
+ "start": {
+ "line": 1583,
+ "column": 12
+ },
+ "end": {
+ "line": 1583,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "return empty string if collection is empty",
+ "range": [
+ 57085,
+ 57129
+ ],
+ "loc": {
+ "start": {
+ "line": 1591,
+ "column": 12
+ },
+ "end": {
+ "line": 1591,
+ "column": 56
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57142,
+ 57150
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 12
+ },
+ "end": {
+ "line": 1592,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "ConditionalExpression",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": ">",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 57153,
+ 57162
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 23
+ },
+ "end": {
+ "line": 1592,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 57163,
+ 57169
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 33
+ },
+ "end": {
+ "line": 1592,
+ "column": 39
+ }
+ }
+ },
+ "range": [
+ 57153,
+ 57169
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 23
+ },
+ "end": {
+ "line": 1592,
+ "column": 39
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 57172,
+ 57173
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 42
+ },
+ "end": {
+ "line": 1592,
+ "column": 43
+ }
+ }
+ },
+ "range": [
+ 57153,
+ 57173
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 23
+ },
+ "end": {
+ "line": 1592,
+ "column": 43
+ }
+ }
+ },
+ "consequent": {
+ "type": "Identifier",
+ "name": "fltValues",
+ "range": [
+ 57176,
+ 57185
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 46
+ },
+ "end": {
+ "line": 1592,
+ "column": 55
+ }
+ }
+ },
+ "alternate": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 57188,
+ 57190
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 58
+ },
+ "end": {
+ "line": 1592,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 57153,
+ 57190
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 23
+ },
+ "end": {
+ "line": 1592,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 57142,
+ 57190
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 12
+ },
+ "end": {
+ "line": 1592,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 57142,
+ 57191
+ ],
+ "loc": {
+ "start": {
+ "line": 1592,
+ "column": 12
+ },
+ "end": {
+ "line": 1592,
+ "column": 61
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "return empty string if collection is empty",
+ "range": [
+ 57085,
+ 57129
+ ],
+ "loc": {
+ "start": {
+ "line": 1591,
+ "column": 12
+ },
+ "end": {
+ "line": 1591,
+ "column": 56
+ }
+ }
+ }
+ ]
}
],
"range": [
- 73956,
- 74247
+ 56638,
+ 57201
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 53
},
"end": {
- "line": 2006,
+ "line": 1593,
"column": 9
}
}
},
"alternate": null,
"range": [
- 73916,
- 74247
+ 56598,
+ 57201
],
"loc": {
"start": {
- "line": 1998,
+ "line": 1582,
"column": 13
},
"end": {
- "line": 2006,
+ "line": 1593,
"column": 9
}
},
@@ -166831,16 +131422,16 @@
"type": "Line",
"value": "checklist",
"range": [
- 73891,
- 73902
+ 56573,
+ 56584
],
"loc": {
"start": {
- "line": 1997,
+ "line": 1581,
"column": 8
},
"end": {
- "line": 1997,
+ "line": 1581,
"column": 19
}
}
@@ -166848,16 +131439,16 @@
]
},
"range": [
- 73400,
- 74247
+ 56133,
+ 57201
],
"loc": {
"start": {
- "line": 1984,
+ "line": 1571,
"column": 13
},
"end": {
- "line": 2006,
+ "line": 1593,
"column": 9
}
},
@@ -166866,16 +131457,16 @@
"type": "Line",
"value": "mutiple select",
"range": [
- 73370,
- 73386
+ 56103,
+ 56119
],
"loc": {
"start": {
- "line": 1983,
+ "line": 1570,
"column": 8
},
"end": {
- "line": 1983,
+ "line": 1570,
"column": 24
}
}
@@ -166883,19 +131474,478 @@
]
},
"range": [
- 73228,
- 74247
+ 55961,
+ 57201
],
"loc": {
"start": {
- "line": 1979,
+ "line": 1566,
"column": 8
},
"end": {
- "line": 2006,
+ "line": 1593,
"column": 9
}
- }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "return an empty string if collection contains a single empty string",
+ "range": [
+ 57210,
+ 57279
+ ],
+ "loc": {
+ "start": {
+ "line": 1594,
+ "column": 8
+ },
+ "end": {
+ "line": 1594,
+ "column": 77
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 57291,
+ 57296
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 11
+ },
+ "end": {
+ "line": 1595,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 57297,
+ 57304
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 17
+ },
+ "end": {
+ "line": 1595,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 57291,
+ 57304
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 11
+ },
+ "end": {
+ "line": 1595,
+ "column": 24
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57305,
+ 57313
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 25
+ },
+ "end": {
+ "line": 1595,
+ "column": 33
+ }
+ }
+ }
+ ],
+ "range": [
+ 57291,
+ 57314
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 11
+ },
+ "end": {
+ "line": 1595,
+ "column": 34
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57318,
+ 57326
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 38
+ },
+ "end": {
+ "line": 1595,
+ "column": 46
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "length",
+ "range": [
+ 57327,
+ 57333
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 47
+ },
+ "end": {
+ "line": 1595,
+ "column": 53
+ }
+ }
+ },
+ "range": [
+ 57318,
+ 57333
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 38
+ },
+ "end": {
+ "line": 1595,
+ "column": 53
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 57338,
+ 57339
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 58
+ },
+ "end": {
+ "line": 1595,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 57318,
+ 57339
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 38
+ },
+ "end": {
+ "line": 1595,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 57291,
+ 57339
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 11
+ },
+ "end": {
+ "line": 1595,
+ "column": 59
+ }
+ }
+ },
+ "right": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57355,
+ 57363
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 12
+ },
+ "end": {
+ "line": 1596,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Literal",
+ "value": 0,
+ "raw": "0",
+ "range": [
+ 57364,
+ 57365
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 21
+ },
+ "end": {
+ "line": 1596,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 57355,
+ 57366
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 12
+ },
+ "end": {
+ "line": 1596,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 57371,
+ 57373
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 28
+ },
+ "end": {
+ "line": 1596,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 57355,
+ 57373
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 12
+ },
+ "end": {
+ "line": 1596,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 57291,
+ 57373
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 11
+ },
+ "end": {
+ "line": 1596,
+ "column": 30
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57388,
+ 57396
+ ],
+ "loc": {
+ "start": {
+ "line": 1597,
+ "column": 12
+ },
+ "end": {
+ "line": 1597,
+ "column": 20
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 57399,
+ 57401
+ ],
+ "loc": {
+ "start": {
+ "line": 1597,
+ "column": 23
+ },
+ "end": {
+ "line": 1597,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 57388,
+ 57401
+ ],
+ "loc": {
+ "start": {
+ "line": 1597,
+ "column": 12
+ },
+ "end": {
+ "line": 1597,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 57388,
+ 57402
+ ],
+ "loc": {
+ "start": {
+ "line": 1597,
+ "column": 12
+ },
+ "end": {
+ "line": 1597,
+ "column": 26
+ }
+ }
+ }
+ ],
+ "range": [
+ 57374,
+ 57412
+ ],
+ "loc": {
+ "start": {
+ "line": 1596,
+ "column": 31
+ },
+ "end": {
+ "line": 1598,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 57288,
+ 57412
+ ],
+ "loc": {
+ "start": {
+ "line": 1595,
+ "column": 8
+ },
+ "end": {
+ "line": 1598,
+ "column": 9
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": "return an empty string if collection contains a single empty string",
+ "range": [
+ 57210,
+ 57279
+ ],
+ "loc": {
+ "start": {
+ "line": 1594,
+ "column": 8
+ },
+ "end": {
+ "line": 1594,
+ "column": 77
+ }
+ }
+ }
+ ]
},
{
"type": "ReturnStatement",
@@ -166903,47 +131953,47 @@
"type": "Identifier",
"name": "fltValue",
"range": [
- 74263,
- 74271
+ 57428,
+ 57436
],
"loc": {
"start": {
- "line": 2007,
+ "line": 1599,
"column": 15
},
"end": {
- "line": 2007,
+ "line": 1599,
"column": 23
}
}
},
"range": [
- 74256,
- 74272
+ 57421,
+ 57437
],
"loc": {
"start": {
- "line": 2007,
+ "line": 1599,
"column": 8
},
"end": {
- "line": 2007,
+ "line": 1599,
"column": 24
}
}
}
],
"range": [
- 72987,
- 74278
+ 55687,
+ 57443
],
"loc": {
"start": {
- "line": 1968,
+ "line": 1554,
"column": 25
},
"end": {
- "line": 2008,
+ "line": 1600,
"column": 5
}
}
@@ -166951,16 +132001,16 @@
"generator": false,
"expression": false,
"range": [
- 72980,
- 74278
+ 55680,
+ 57443
],
"loc": {
"start": {
- "line": 1968,
+ "line": 1554,
"column": 18
},
"end": {
- "line": 2008,
+ "line": 1600,
"column": 5
}
}
@@ -166968,16 +132018,16 @@
"kind": "method",
"computed": false,
"range": [
- 72966,
- 74278
+ 55666,
+ 57443
],
"loc": {
"start": {
- "line": 1968,
+ "line": 1554,
"column": 4
},
"end": {
- "line": 2008,
+ "line": 1600,
"column": 5
}
},
@@ -166986,16 +132036,16 @@
"type": "Block",
"value": "*\n * Return the filter's value of a specified column\n * @param {Number} index Column index\n * @return {String} Filter value\n ",
"range": [
- 72809,
- 72961
+ 55509,
+ 55661
],
"loc": {
"start": {
- "line": 1963,
+ "line": 1549,
"column": 4
},
"end": {
- "line": 1967,
+ "line": 1553,
"column": 7
}
}
@@ -167006,16 +132056,16 @@
"type": "Block",
"value": "*\n * Return the filters' values\n * @return {Array} List of filters' values\n ",
"range": [
- 74284,
- 74376
+ 57449,
+ 57541
],
"loc": {
"start": {
- "line": 2010,
+ "line": 1602,
"column": 4
},
"end": {
- "line": 2013,
+ "line": 1605,
"column": 7
}
}
@@ -167029,16 +132079,16 @@
"type": "Identifier",
"name": "getFiltersValue",
"range": [
- 74381,
- 74396
+ 57546,
+ 57561
],
"loc": {
"start": {
- "line": 2014,
+ "line": 1606,
"column": 4
},
"end": {
- "line": 2014,
+ "line": 1606,
"column": 19
}
}
@@ -167061,16 +132111,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 74412,
- 74416
+ 57577,
+ 57581
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 12
},
"end": {
- "line": 2015,
+ "line": 1607,
"column": 16
}
}
@@ -167079,47 +132129,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 74417,
- 74424
+ 57582,
+ 57589
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 17
},
"end": {
- "line": 2015,
+ "line": 1607,
"column": 24
}
}
},
"range": [
- 74412,
- 74424
+ 57577,
+ 57589
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 12
},
"end": {
- "line": 2015,
+ "line": 1607,
"column": 24
}
}
},
"prefix": true,
"range": [
- 74411,
- 74424
+ 57576,
+ 57589
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 11
},
"end": {
- "line": 2015,
+ "line": 1607,
"column": 24
}
}
@@ -167131,48 +132181,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 74439,
- 74446
+ 57604,
+ 57611
],
"loc": {
"start": {
- "line": 2016,
+ "line": 1608,
"column": 12
},
"end": {
- "line": 2016,
+ "line": 1608,
"column": 19
}
}
}
],
"range": [
- 74425,
- 74456
+ 57590,
+ 57621
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 25
},
"end": {
- "line": 2017,
+ "line": 1609,
"column": 9
}
}
},
"alternate": null,
"range": [
- 74408,
- 74456
+ 57573,
+ 57621
],
"loc": {
"start": {
- "line": 2015,
+ "line": 1607,
"column": 8
},
"end": {
- "line": 2017,
+ "line": 1609,
"column": 9
}
}
@@ -167186,16 +132236,16 @@
"type": "Identifier",
"name": "searchArgs",
"range": [
- 74469,
- 74479
+ 57634,
+ 57644
],
"loc": {
"start": {
- "line": 2018,
+ "line": 1610,
"column": 12
},
"end": {
- "line": 2018,
+ "line": 1610,
"column": 22
}
}
@@ -167204,31 +132254,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 74482,
- 74484
+ 57647,
+ 57649
],
"loc": {
"start": {
- "line": 2018,
+ "line": 1610,
"column": 25
},
"end": {
- "line": 2018,
+ "line": 1610,
"column": 27
}
}
},
"range": [
- 74469,
- 74484
+ 57634,
+ 57649
],
"loc": {
"start": {
- "line": 2018,
+ "line": 1610,
"column": 12
},
"end": {
- "line": 2018,
+ "line": 1610,
"column": 27
}
}
@@ -167236,16 +132286,16 @@
],
"kind": "let",
"range": [
- 74465,
- 74485
+ 57630,
+ 57650
],
"loc": {
"start": {
- "line": 2018,
+ "line": 1610,
"column": 8
},
"end": {
- "line": 2018,
+ "line": 1610,
"column": 28
}
}
@@ -167261,16 +132311,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 74502,
- 74503
+ 57667,
+ 57668
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 16
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 17
}
}
@@ -167280,31 +132330,31 @@
"value": 0,
"raw": "0",
"range": [
- 74504,
- 74505
+ 57669,
+ 57670
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 18
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 19
}
}
},
"range": [
- 74502,
- 74505
+ 57667,
+ 57670
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 16
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 19
}
}
@@ -167315,16 +132365,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 74507,
- 74510
+ 57672,
+ 57675
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 21
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 24
}
}
@@ -167338,16 +132388,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 74511,
- 74515
+ 57676,
+ 57680
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 25
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 29
}
}
@@ -167356,31 +132406,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 74516,
- 74522
+ 57681,
+ 57687
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 30
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 36
}
}
},
"range": [
- 74511,
- 74522
+ 57676,
+ 57687
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 25
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 36
}
}
@@ -167389,46 +132439,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 74523,
- 74529
+ 57688,
+ 57694
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 37
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 43
}
}
},
"range": [
- 74511,
- 74529
+ 57676,
+ 57694
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 25
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 43
}
}
},
"range": [
- 74507,
- 74529
+ 57672,
+ 57694
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 21
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 43
}
}
@@ -167436,16 +132486,16 @@
],
"kind": "let",
"range": [
- 74498,
- 74529
+ 57663,
+ 57694
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 12
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 43
}
}
@@ -167457,16 +132507,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 74531,
- 74532
+ 57696,
+ 57697
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 45
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 46
}
}
@@ -167475,31 +132525,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 74533,
- 74536
+ 57698,
+ 57701
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 47
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 50
}
}
},
"range": [
- 74531,
- 74536
+ 57696,
+ 57701
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 45
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 50
}
}
@@ -167511,32 +132561,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 74538,
- 74539
+ 57703,
+ 57704
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 52
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 53
}
}
},
"prefix": false,
"range": [
- 74538,
- 74541
+ 57703,
+ 57706
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 52
},
"end": {
- "line": 2019,
+ "line": 1611,
"column": 55
}
}
@@ -167545,411 +132595,612 @@
"type": "BlockStatement",
"body": [
{
- "type": "ExpressionStatement",
- "expression": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57725,
+ 57733
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 16
+ },
+ "end": {
+ "line": 1612,
+ "column": 24
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 57736,
+ 57740
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 27
+ },
+ "end": {
+ "line": 1612,
+ "column": 31
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getFilterValue",
+ "range": [
+ 57741,
+ 57755
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 32
+ },
+ "end": {
+ "line": 1612,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 57736,
+ 57755
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 27
+ },
+ "end": {
+ "line": 1612,
+ "column": 46
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "i",
+ "range": [
+ 57756,
+ 57757
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 47
+ },
+ "end": {
+ "line": 1612,
+ "column": 48
+ }
+ }
+ }
+ ],
+ "range": [
+ 57736,
+ 57758
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 27
+ },
+ "end": {
+ "line": 1612,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 57725,
+ 57758
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 16
+ },
+ "end": {
+ "line": 1612,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 57721,
+ 57759
+ ],
+ "loc": {
+ "start": {
+ "line": 1612,
+ "column": 12
+ },
+ "end": {
+ "line": 1612,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "Identifier",
- "name": "searchArgs",
+ "name": "Types",
"range": [
- 74556,
- 74566
+ 57775,
+ 57780
],
"loc": {
"start": {
- "line": 2020,
- "column": 12
+ "line": 1613,
+ "column": 15
},
"end": {
- "line": 2020,
- "column": 22
+ "line": 1613,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "push",
+ "name": "isArray",
"range": [
- 74567,
- 74571
+ 57781,
+ 57788
],
"loc": {
"start": {
- "line": 2020,
- "column": 23
+ "line": 1613,
+ "column": 21
},
"end": {
- "line": 2020,
- "column": 27
+ "line": 1613,
+ "column": 28
}
}
},
"range": [
- 74556,
- 74571
+ 57775,
+ 57788
],
"loc": {
"start": {
- "line": 2020,
- "column": 12
+ "line": 1613,
+ "column": 15
},
"end": {
- "line": 2020,
- "column": 27
+ "line": 1613,
+ "column": 28
}
}
},
"arguments": [
{
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 74589,
- 74592
- ],
- "loc": {
- "start": {
- "line": 2021,
- "column": 16
- },
- "end": {
- "line": 2021,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "trim",
- "range": [
- 74593,
- 74597
- ],
- "loc": {
- "start": {
- "line": 2021,
- "column": 20
- },
- "end": {
- "line": 2021,
- "column": 24
- }
- }
- },
- "range": [
- 74589,
- 74597
- ],
- "loc": {
- "start": {
- "line": 2021,
- "column": 16
- },
- "end": {
- "line": 2021,
- "column": 24
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 74619,
- 74622
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 20
- },
- "end": {
- "line": 2022,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 74623,
- 74632
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 24
- },
- "end": {
- "line": 2022,
- "column": 33
- }
- }
- },
- "range": [
- 74619,
- 74632
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 20
- },
- "end": {
- "line": 2022,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 74633,
- 74637
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 34
- },
- "end": {
- "line": 2022,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterValue",
- "range": [
- 74638,
- 74652
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 39
- },
- "end": {
- "line": 2022,
- "column": 53
- }
- }
- },
- "range": [
- 74633,
- 74652
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 34
- },
- "end": {
- "line": 2022,
- "column": 53
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "i",
- "range": [
- 74653,
- 74654
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 54
- },
- "end": {
- "line": 2022,
- "column": 55
- }
- }
- }
- ],
- "range": [
- 74633,
- 74655
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 34
- },
- "end": {
- "line": 2022,
- "column": 56
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 74657,
- 74661
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 58
- },
- "end": {
- "line": 2022,
- "column": 62
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "caseSensitive",
- "range": [
- 74662,
- 74675
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 63
- },
- "end": {
- "line": 2022,
- "column": 76
- }
- }
- },
- "range": [
- 74657,
- 74675
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 58
- },
- "end": {
- "line": 2022,
- "column": 76
- }
- }
- }
- ],
- "range": [
- 74619,
- 74676
- ],
- "loc": {
- "start": {
- "line": 2022,
- "column": 20
- },
- "end": {
- "line": 2022,
- "column": 77
- }
- }
- }
- ],
+ "type": "Identifier",
+ "name": "fltValue",
"range": [
- 74589,
- 74677
+ 57789,
+ 57797
],
"loc": {
"start": {
- "line": 2021,
- "column": 16
+ "line": 1613,
+ "column": 29
},
"end": {
- "line": 2022,
- "column": 78
+ "line": 1613,
+ "column": 37
}
}
}
],
"range": [
- 74556,
- 74691
+ 57775,
+ 57798
],
"loc": {
"start": {
- "line": 2020,
- "column": 12
+ "line": 1613,
+ "column": 15
},
"end": {
- "line": 2023,
+ "line": 1613,
+ "column": 38
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "searchArgs",
+ "range": [
+ 57817,
+ 57827
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 16
+ },
+ "end": {
+ "line": 1614,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 57828,
+ 57832
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 27
+ },
+ "end": {
+ "line": 1614,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 57817,
+ 57832
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 16
+ },
+ "end": {
+ "line": 1614,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57833,
+ 57841
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 32
+ },
+ "end": {
+ "line": 1614,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 57817,
+ 57842
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 16
+ },
+ "end": {
+ "line": 1614,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 57817,
+ 57843
+ ],
+ "loc": {
+ "start": {
+ "line": 1614,
+ "column": 16
+ },
+ "end": {
+ "line": 1614,
+ "column": 42
+ }
+ }
+ }
+ ],
+ "range": [
+ 57799,
+ 57857
+ ],
+ "loc": {
+ "start": {
+ "line": 1613,
+ "column": 39
+ },
+ "end": {
+ "line": 1615,
+ "column": 13
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "searchArgs",
+ "range": [
+ 57881,
+ 57891
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 16
+ },
+ "end": {
+ "line": 1616,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 57892,
+ 57896
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 27
+ },
+ "end": {
+ "line": 1616,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 57881,
+ 57896
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 16
+ },
+ "end": {
+ "line": 1616,
+ "column": 31
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Str",
+ "range": [
+ 57897,
+ 57900
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 32
+ },
+ "end": {
+ "line": 1616,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "trim",
+ "range": [
+ 57901,
+ 57905
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 36
+ },
+ "end": {
+ "line": 1616,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 57897,
+ 57905
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 32
+ },
+ "end": {
+ "line": 1616,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "fltValue",
+ "range": [
+ 57906,
+ 57914
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 41
+ },
+ "end": {
+ "line": 1616,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 57897,
+ 57915
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 32
+ },
+ "end": {
+ "line": 1616,
+ "column": 50
+ }
+ }
+ }
+ ],
+ "range": [
+ 57881,
+ 57916
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 16
+ },
+ "end": {
+ "line": 1616,
+ "column": 51
+ }
+ }
+ },
+ "range": [
+ 57881,
+ 57917
+ ],
+ "loc": {
+ "start": {
+ "line": 1616,
+ "column": 16
+ },
+ "end": {
+ "line": 1616,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "range": [
+ 57863,
+ 57931
+ ],
+ "loc": {
+ "start": {
+ "line": 1615,
+ "column": 19
+ },
+ "end": {
+ "line": 1617,
"column": 13
}
}
},
"range": [
- 74556,
- 74692
+ 57772,
+ 57931
],
"loc": {
"start": {
- "line": 2020,
+ "line": 1613,
"column": 12
},
"end": {
- "line": 2023,
- "column": 14
+ "line": 1617,
+ "column": 13
}
}
}
],
"range": [
- 74542,
- 74702
+ 57707,
+ 57941
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 56
},
"end": {
- "line": 2024,
+ "line": 1618,
"column": 9
}
}
},
"range": [
- 74494,
- 74702
+ 57659,
+ 57941
],
"loc": {
"start": {
- "line": 2019,
+ "line": 1611,
"column": 8
},
"end": {
- "line": 2024,
+ "line": 1618,
"column": 9
}
}
@@ -167960,47 +133211,47 @@
"type": "Identifier",
"name": "searchArgs",
"range": [
- 74718,
- 74728
+ 57957,
+ 57967
],
"loc": {
"start": {
- "line": 2025,
+ "line": 1619,
"column": 15
},
"end": {
- "line": 2025,
+ "line": 1619,
"column": 25
}
}
},
"range": [
- 74711,
- 74729
+ 57950,
+ 57968
],
"loc": {
"start": {
- "line": 2025,
+ "line": 1619,
"column": 8
},
"end": {
- "line": 2025,
+ "line": 1619,
"column": 26
}
}
}
],
"range": [
- 74398,
- 74735
+ 57563,
+ 57974
],
"loc": {
"start": {
- "line": 2014,
+ "line": 1606,
"column": 21
},
"end": {
- "line": 2026,
+ "line": 1620,
"column": 5
}
}
@@ -168008,16 +133259,16 @@
"generator": false,
"expression": false,
"range": [
- 74396,
- 74735
+ 57561,
+ 57974
],
"loc": {
"start": {
- "line": 2014,
+ "line": 1606,
"column": 19
},
"end": {
- "line": 2026,
+ "line": 1620,
"column": 5
}
}
@@ -168025,16 +133276,16 @@
"kind": "method",
"computed": false,
"range": [
- 74381,
- 74735
+ 57546,
+ 57974
],
"loc": {
"start": {
- "line": 2014,
+ "line": 1606,
"column": 4
},
"end": {
- "line": 2026,
+ "line": 1620,
"column": 5
}
},
@@ -168043,16 +133294,16 @@
"type": "Block",
"value": "*\n * Return the filters' values\n * @return {Array} List of filters' values\n ",
"range": [
- 74284,
- 74376
+ 57449,
+ 57541
],
"loc": {
"start": {
- "line": 2010,
+ "line": 1602,
"column": 4
},
"end": {
- "line": 2013,
+ "line": 1605,
"column": 7
}
}
@@ -168063,16 +133314,16 @@
"type": "Block",
"value": "*\n * Return the ID of the filter of a specified column\n * @param {Number} index Column's index\n * @return {String} ID of the filter element\n ",
"range": [
- 74741,
- 74909
+ 57980,
+ 58148
],
"loc": {
"start": {
- "line": 2028,
+ "line": 1622,
"column": 4
},
"end": {
- "line": 2032,
+ "line": 1626,
"column": 7
}
}
@@ -168086,16 +133337,16 @@
"type": "Identifier",
"name": "getFilterId",
"range": [
- 74914,
- 74925
+ 58153,
+ 58164
],
"loc": {
"start": {
- "line": 2033,
+ "line": 1627,
"column": 4
},
"end": {
- "line": 2033,
+ "line": 1627,
"column": 15
}
}
@@ -168108,16 +133359,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 74926,
- 74931
+ 58165,
+ 58170
],
"loc": {
"start": {
- "line": 2033,
+ "line": 1627,
"column": 16
},
"end": {
- "line": 2033,
+ "line": 1627,
"column": 21
}
}
@@ -168137,16 +133388,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 74946,
- 74950
+ 58185,
+ 58189
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 12
},
"end": {
- "line": 2034,
+ "line": 1628,
"column": 16
}
}
@@ -168155,47 +133406,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 74951,
- 74958
+ 58190,
+ 58197
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 17
},
"end": {
- "line": 2034,
+ "line": 1628,
"column": 24
}
}
},
"range": [
- 74946,
- 74958
+ 58185,
+ 58197
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 12
},
"end": {
- "line": 2034,
+ "line": 1628,
"column": 24
}
}
},
"prefix": true,
"range": [
- 74945,
- 74958
+ 58184,
+ 58197
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 11
},
"end": {
- "line": 2034,
+ "line": 1628,
"column": 24
}
}
@@ -168207,48 +133458,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 74973,
- 74980
+ 58212,
+ 58219
],
"loc": {
"start": {
- "line": 2035,
+ "line": 1629,
"column": 12
},
"end": {
- "line": 2035,
+ "line": 1629,
"column": 19
}
}
}
],
"range": [
- 74959,
- 74990
+ 58198,
+ 58229
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 25
},
"end": {
- "line": 2036,
+ "line": 1630,
"column": 9
}
}
},
"alternate": null,
"range": [
- 74942,
- 74990
+ 58181,
+ 58229
],
"loc": {
"start": {
- "line": 2034,
+ "line": 1628,
"column": 8
},
"end": {
- "line": 2036,
+ "line": 1630,
"column": 9
}
}
@@ -168264,16 +133515,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 75006,
- 75010
+ 58245,
+ 58249
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 15
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 19
}
}
@@ -168282,31 +133533,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 75011,
- 75017
+ 58250,
+ 58256
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 20
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 26
}
}
},
"range": [
- 75006,
- 75017
+ 58245,
+ 58256
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 15
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 26
}
}
@@ -168315,62 +133566,62 @@
"type": "Identifier",
"name": "index",
"range": [
- 75018,
- 75023
+ 58257,
+ 58262
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 27
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 32
}
}
},
"range": [
- 75006,
- 75024
+ 58245,
+ 58263
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 15
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 33
}
}
},
"range": [
- 74999,
- 75025
+ 58238,
+ 58264
],
"loc": {
"start": {
- "line": 2037,
+ "line": 1631,
"column": 8
},
"end": {
- "line": 2037,
+ "line": 1631,
"column": 34
}
}
}
],
"range": [
- 74932,
- 75031
+ 58171,
+ 58270
],
"loc": {
"start": {
- "line": 2033,
+ "line": 1627,
"column": 22
},
"end": {
- "line": 2038,
+ "line": 1632,
"column": 5
}
}
@@ -168378,16 +133629,16 @@
"generator": false,
"expression": false,
"range": [
- 74925,
- 75031
+ 58164,
+ 58270
],
"loc": {
"start": {
- "line": 2033,
+ "line": 1627,
"column": 15
},
"end": {
- "line": 2038,
+ "line": 1632,
"column": 5
}
}
@@ -168395,16 +133646,16 @@
"kind": "method",
"computed": false,
"range": [
- 74914,
- 75031
+ 58153,
+ 58270
],
"loc": {
"start": {
- "line": 2033,
+ "line": 1627,
"column": 4
},
"end": {
- "line": 2038,
+ "line": 1632,
"column": 5
}
},
@@ -168413,16 +133664,16 @@
"type": "Block",
"value": "*\n * Return the ID of the filter of a specified column\n * @param {Number} index Column's index\n * @return {String} ID of the filter element\n ",
"range": [
- 74741,
- 74909
+ 57980,
+ 58148
],
"loc": {
"start": {
- "line": 2028,
+ "line": 1622,
"column": 4
},
"end": {
- "line": 2032,
+ "line": 1626,
"column": 7
}
}
@@ -168433,16 +133684,16 @@
"type": "Block",
"value": "*\n * Return the list of ids of filters matching a specified type.\n * Note: hidden filters are also returned\n *\n * @param {String} type Filter type string ('input', 'select', 'multiple',\n * 'checklist')\n * @param {Boolean} bool If true returns columns indexes instead of IDs\n * @return {[type]} List of element IDs or column indexes\n ",
"range": [
- 75037,
- 75438
+ 58276,
+ 58677
],
"loc": {
"start": {
- "line": 2040,
+ "line": 1634,
"column": 4
},
"end": {
- "line": 2048,
+ "line": 1642,
"column": 7
}
}
@@ -168456,16 +133707,16 @@
"type": "Identifier",
"name": "getFiltersByType",
"range": [
- 75443,
- 75459
+ 58682,
+ 58698
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 4
},
"end": {
- "line": 2049,
+ "line": 1643,
"column": 20
}
}
@@ -168478,16 +133729,16 @@
"type": "Identifier",
"name": "type",
"range": [
- 75460,
- 75464
+ 58699,
+ 58703
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 21
},
"end": {
- "line": 2049,
+ "line": 1643,
"column": 25
}
}
@@ -168496,16 +133747,16 @@
"type": "Identifier",
"name": "bool",
"range": [
- 75466,
- 75470
+ 58705,
+ 58709
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 27
},
"end": {
- "line": 2049,
+ "line": 1643,
"column": 31
}
}
@@ -168525,16 +133776,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 75485,
- 75489
+ 58724,
+ 58728
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 12
},
"end": {
- "line": 2050,
+ "line": 1644,
"column": 16
}
}
@@ -168543,47 +133794,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 75490,
- 75497
+ 58729,
+ 58736
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 17
},
"end": {
- "line": 2050,
+ "line": 1644,
"column": 24
}
}
},
"range": [
- 75485,
- 75497
+ 58724,
+ 58736
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 12
},
"end": {
- "line": 2050,
+ "line": 1644,
"column": 24
}
}
},
"prefix": true,
"range": [
- 75484,
- 75497
+ 58723,
+ 58736
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 11
},
"end": {
- "line": 2050,
+ "line": 1644,
"column": 24
}
}
@@ -168595,48 +133846,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 75512,
- 75519
+ 58751,
+ 58758
],
"loc": {
"start": {
- "line": 2051,
+ "line": 1645,
"column": 12
},
"end": {
- "line": 2051,
+ "line": 1645,
"column": 19
}
}
}
],
"range": [
- 75498,
- 75529
+ 58737,
+ 58768
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 25
},
"end": {
- "line": 2052,
+ "line": 1646,
"column": 9
}
}
},
"alternate": null,
"range": [
- 75481,
- 75529
+ 58720,
+ 58768
],
"loc": {
"start": {
- "line": 2050,
+ "line": 1644,
"column": 8
},
"end": {
- "line": 2052,
+ "line": 1646,
"column": 9
}
}
@@ -168650,16 +133901,16 @@
"type": "Identifier",
"name": "arr",
"range": [
- 75542,
- 75545
+ 58781,
+ 58784
],
"loc": {
"start": {
- "line": 2053,
+ "line": 1647,
"column": 12
},
"end": {
- "line": 2053,
+ "line": 1647,
"column": 15
}
}
@@ -168668,31 +133919,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 75548,
- 75550
+ 58787,
+ 58789
],
"loc": {
"start": {
- "line": 2053,
+ "line": 1647,
"column": 18
},
"end": {
- "line": 2053,
+ "line": 1647,
"column": 20
}
}
},
"range": [
- 75542,
- 75550
+ 58781,
+ 58789
],
"loc": {
"start": {
- "line": 2053,
+ "line": 1647,
"column": 12
},
"end": {
- "line": 2053,
+ "line": 1647,
"column": 20
}
}
@@ -168700,16 +133951,16 @@
],
"kind": "let",
"range": [
- 75538,
- 75551
+ 58777,
+ 58790
],
"loc": {
"start": {
- "line": 2053,
+ "line": 1647,
"column": 8
},
"end": {
- "line": 2053,
+ "line": 1647,
"column": 21
}
}
@@ -168725,16 +133976,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 75568,
- 75569
+ 58807,
+ 58808
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 16
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 17
}
}
@@ -168744,31 +133995,31 @@
"value": 0,
"raw": "0",
"range": [
- 75570,
- 75571
+ 58809,
+ 58810
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 18
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 19
}
}
},
"range": [
- 75568,
- 75571
+ 58807,
+ 58810
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 16
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 19
}
}
@@ -168779,16 +134030,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 75573,
- 75576
+ 58812,
+ 58815
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 21
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 24
}
}
@@ -168802,16 +134053,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 75577,
- 75581
+ 58816,
+ 58820
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 25
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 29
}
}
@@ -168820,31 +134071,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 75582,
- 75588
+ 58821,
+ 58827
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 30
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 36
}
}
},
"range": [
- 75577,
- 75588
+ 58816,
+ 58827
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 25
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 36
}
}
@@ -168853,46 +134104,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 75589,
- 75595
+ 58828,
+ 58834
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 37
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 43
}
}
},
"range": [
- 75577,
- 75595
+ 58816,
+ 58834
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 25
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 43
}
}
},
"range": [
- 75573,
- 75595
+ 58812,
+ 58834
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 21
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 43
}
}
@@ -168900,16 +134151,16 @@
],
"kind": "let",
"range": [
- 75564,
- 75595
+ 58803,
+ 58834
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 12
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 43
}
}
@@ -168921,16 +134172,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 75597,
- 75598
+ 58836,
+ 58837
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 45
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 46
}
}
@@ -168939,31 +134190,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 75599,
- 75602
+ 58838,
+ 58841
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 47
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 50
}
}
},
"range": [
- 75597,
- 75602
+ 58836,
+ 58841
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 45
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 50
}
}
@@ -168975,32 +134226,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 75604,
- 75605
+ 58843,
+ 58844
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 52
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 53
}
}
},
"prefix": false,
"range": [
- 75604,
- 75607
+ 58843,
+ 58846
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 52
},
"end": {
- "line": 2054,
+ "line": 1648,
"column": 55
}
}
@@ -169017,16 +134268,16 @@
"type": "Identifier",
"name": "fltType",
"range": [
- 75626,
- 75633
+ 58865,
+ 58872
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 16
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 23
}
}
@@ -169039,16 +134290,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 75636,
- 75640
+ 58875,
+ 58879
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 26
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 30
}
}
@@ -169057,31 +134308,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 75641,
- 75654
+ 58880,
+ 58893
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 31
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 44
}
}
},
"range": [
- 75636,
- 75654
+ 58875,
+ 58893
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 26
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 44
}
}
@@ -169091,47 +134342,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 75655,
- 75656
+ 58894,
+ 58895
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 45
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 46
}
}
}
],
"range": [
- 75636,
- 75657
+ 58875,
+ 58896
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 26
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 47
}
}
},
"range": [
- 75626,
- 75657
+ 58865,
+ 58896
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 16
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 47
}
}
@@ -169139,16 +134390,16 @@
],
"kind": "let",
"range": [
- 75622,
- 75658
+ 58861,
+ 58897
],
"loc": {
"start": {
- "line": 2055,
+ "line": 1649,
"column": 12
},
"end": {
- "line": 2055,
+ "line": 1649,
"column": 48
}
}
@@ -169162,16 +134413,16 @@
"type": "Identifier",
"name": "fltType",
"range": [
- 75674,
- 75681
+ 58913,
+ 58920
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 15
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 22
}
}
@@ -169185,16 +134436,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 75686,
- 75689
+ 58925,
+ 58928
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 27
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 30
}
}
@@ -169203,31 +134454,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 75690,
- 75695
+ 58929,
+ 58934
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 31
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 36
}
}
},
"range": [
- 75686,
- 75695
+ 58925,
+ 58934
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 27
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 36
}
}
@@ -169237,47 +134488,47 @@
"type": "Identifier",
"name": "type",
"range": [
- 75696,
- 75700
+ 58935,
+ 58939
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 37
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 41
}
}
}
],
"range": [
- 75686,
- 75701
+ 58925,
+ 58940
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 27
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 42
}
}
},
"range": [
- 75674,
- 75701
+ 58913,
+ 58940
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 15
},
"end": {
- "line": 2056,
+ "line": 1650,
"column": 42
}
}
@@ -169294,16 +134545,16 @@
"type": "Identifier",
"name": "a",
"range": [
- 75724,
- 75725
+ 58963,
+ 58964
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 20
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 21
}
}
@@ -169314,16 +134565,16 @@
"type": "Identifier",
"name": "bool",
"range": [
- 75728,
- 75732
+ 58967,
+ 58971
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 24
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 28
}
}
@@ -169332,16 +134583,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 75735,
- 75736
+ 58974,
+ 58975
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 31
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 32
}
}
@@ -169355,16 +134606,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 75739,
- 75743
+ 58978,
+ 58982
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 35
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 39
}
}
@@ -169373,31 +134624,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 75744,
- 75750
+ 58983,
+ 58989
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 40
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 46
}
}
},
"range": [
- 75739,
- 75750
+ 58978,
+ 58989
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 35
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 46
}
}
@@ -169406,61 +134657,61 @@
"type": "Identifier",
"name": "i",
"range": [
- 75751,
- 75752
+ 58990,
+ 58991
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 47
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 48
}
}
},
"range": [
- 75739,
- 75753
+ 58978,
+ 58992
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 35
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 49
}
}
},
"range": [
- 75728,
- 75753
+ 58967,
+ 58992
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 24
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 49
}
}
},
"range": [
- 75724,
- 75753
+ 58963,
+ 58992
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 20
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 49
}
}
@@ -169468,16 +134719,16 @@
],
"kind": "let",
"range": [
- 75720,
- 75754
+ 58959,
+ 58993
],
"loc": {
"start": {
- "line": 2057,
+ "line": 1651,
"column": 16
},
"end": {
- "line": 2057,
+ "line": 1651,
"column": 50
}
}
@@ -169493,16 +134744,16 @@
"type": "Identifier",
"name": "arr",
"range": [
- 75771,
- 75774
+ 59010,
+ 59013
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 16
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 19
}
}
@@ -169511,31 +134762,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 75775,
- 75779
+ 59014,
+ 59018
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 20
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 24
}
}
},
"range": [
- 75771,
- 75779
+ 59010,
+ 59018
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 16
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 24
}
}
@@ -169545,110 +134796,110 @@
"type": "Identifier",
"name": "a",
"range": [
- 75780,
- 75781
+ 59019,
+ 59020
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 25
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 26
}
}
}
],
"range": [
- 75771,
- 75782
+ 59010,
+ 59021
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 16
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 27
}
}
},
"range": [
- 75771,
- 75783
+ 59010,
+ 59022
],
"loc": {
"start": {
- "line": 2058,
+ "line": 1652,
"column": 16
},
"end": {
- "line": 2058,
+ "line": 1652,
"column": 28
}
}
}
],
"range": [
- 75702,
- 75797
+ 58941,
+ 59036
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 43
},
"end": {
- "line": 2059,
+ "line": 1653,
"column": 13
}
}
},
"alternate": null,
"range": [
- 75671,
- 75797
+ 58910,
+ 59036
],
"loc": {
"start": {
- "line": 2056,
+ "line": 1650,
"column": 12
},
"end": {
- "line": 2059,
+ "line": 1653,
"column": 13
}
}
}
],
"range": [
- 75608,
- 75807
+ 58847,
+ 59046
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 56
},
"end": {
- "line": 2060,
+ "line": 1654,
"column": 9
}
}
},
"range": [
- 75560,
- 75807
+ 58799,
+ 59046
],
"loc": {
"start": {
- "line": 2054,
+ "line": 1648,
"column": 8
},
"end": {
- "line": 2060,
+ "line": 1654,
"column": 9
}
}
@@ -169659,47 +134910,47 @@
"type": "Identifier",
"name": "arr",
"range": [
- 75823,
- 75826
+ 59062,
+ 59065
],
"loc": {
"start": {
- "line": 2061,
+ "line": 1655,
"column": 15
},
"end": {
- "line": 2061,
+ "line": 1655,
"column": 18
}
}
},
"range": [
- 75816,
- 75827
+ 59055,
+ 59066
],
"loc": {
"start": {
- "line": 2061,
+ "line": 1655,
"column": 8
},
"end": {
- "line": 2061,
+ "line": 1655,
"column": 19
}
}
}
],
"range": [
- 75471,
- 75833
+ 58710,
+ 59072
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 32
},
"end": {
- "line": 2062,
+ "line": 1656,
"column": 5
}
}
@@ -169707,16 +134958,16 @@
"generator": false,
"expression": false,
"range": [
- 75459,
- 75833
+ 58698,
+ 59072
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 20
},
"end": {
- "line": 2062,
+ "line": 1656,
"column": 5
}
}
@@ -169724,16 +134975,16 @@
"kind": "method",
"computed": false,
"range": [
- 75443,
- 75833
+ 58682,
+ 59072
],
"loc": {
"start": {
- "line": 2049,
+ "line": 1643,
"column": 4
},
"end": {
- "line": 2062,
+ "line": 1656,
"column": 5
}
},
@@ -169742,16 +134993,16 @@
"type": "Block",
"value": "*\n * Return the list of ids of filters matching a specified type.\n * Note: hidden filters are also returned\n *\n * @param {String} type Filter type string ('input', 'select', 'multiple',\n * 'checklist')\n * @param {Boolean} bool If true returns columns indexes instead of IDs\n * @return {[type]} List of element IDs or column indexes\n ",
"range": [
- 75037,
- 75438
+ 58276,
+ 58677
],
"loc": {
"start": {
- "line": 2040,
+ "line": 1634,
"column": 4
},
"end": {
- "line": 2048,
+ "line": 1642,
"column": 7
}
}
@@ -169762,16 +135013,16 @@
"type": "Block",
"value": "*\n * Return the filter's DOM element for a given column\n * @param {Number} index Column's index\n * @return {DOMElement}\n ",
"range": [
- 75839,
- 75985
+ 59078,
+ 59224
],
"loc": {
"start": {
- "line": 2064,
+ "line": 1658,
"column": 4
},
"end": {
- "line": 2068,
+ "line": 1662,
"column": 7
}
}
@@ -169785,16 +135036,16 @@
"type": "Identifier",
"name": "getFilterElement",
"range": [
- 75990,
- 76006
+ 59229,
+ 59245
],
"loc": {
"start": {
- "line": 2069,
+ "line": 1663,
"column": 4
},
"end": {
- "line": 2069,
+ "line": 1663,
"column": 20
}
}
@@ -169807,16 +135058,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 76007,
- 76012
+ 59246,
+ 59251
],
"loc": {
"start": {
- "line": 2069,
+ "line": 1663,
"column": 21
},
"end": {
- "line": 2069,
+ "line": 1663,
"column": 26
}
}
@@ -169834,16 +135085,16 @@
"type": "Identifier",
"name": "fltId",
"range": [
- 76027,
- 76032
+ 59266,
+ 59271
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 12
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 17
}
}
@@ -169857,16 +135108,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 76035,
- 76039
+ 59274,
+ 59278
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 20
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 24
}
}
@@ -169875,31 +135126,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 76040,
- 76046
+ 59279,
+ 59285
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 25
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 31
}
}
},
"range": [
- 76035,
- 76046
+ 59274,
+ 59285
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 20
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 31
}
}
@@ -169908,46 +135159,46 @@
"type": "Identifier",
"name": "index",
"range": [
- 76047,
- 76052
+ 59286,
+ 59291
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 32
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 37
}
}
},
"range": [
- 76035,
- 76053
+ 59274,
+ 59292
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 20
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 38
}
}
},
"range": [
- 76027,
- 76053
+ 59266,
+ 59292
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 12
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 38
}
}
@@ -169955,16 +135206,16 @@
],
"kind": "let",
"range": [
- 76023,
- 76054
+ 59262,
+ 59293
],
"loc": {
"start": {
- "line": 2070,
+ "line": 1664,
"column": 8
},
"end": {
- "line": 2070,
+ "line": 1664,
"column": 39
}
}
@@ -169980,16 +135231,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 76070,
- 76073
+ 59309,
+ 59312
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 15
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 18
}
}
@@ -169998,31 +135249,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 76074,
- 76076
+ 59313,
+ 59315
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 19
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 21
}
}
},
"range": [
- 76070,
- 76076
+ 59309,
+ 59315
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 15
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 21
}
}
@@ -170032,63 +135283,63 @@
"type": "Identifier",
"name": "fltId",
"range": [
- 76077,
- 76082
+ 59316,
+ 59321
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 22
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 27
}
}
}
],
"range": [
- 76070,
- 76083
+ 59309,
+ 59322
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 15
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 28
}
}
},
"range": [
- 76063,
- 76084
+ 59302,
+ 59323
],
"loc": {
"start": {
- "line": 2071,
+ "line": 1665,
"column": 8
},
"end": {
- "line": 2071,
+ "line": 1665,
"column": 29
}
}
}
],
"range": [
- 76013,
- 76090
+ 59252,
+ 59329
],
"loc": {
"start": {
- "line": 2069,
+ "line": 1663,
"column": 27
},
"end": {
- "line": 2072,
+ "line": 1666,
"column": 5
}
}
@@ -170096,16 +135347,16 @@
"generator": false,
"expression": false,
"range": [
- 76006,
- 76090
+ 59245,
+ 59329
],
"loc": {
"start": {
- "line": 2069,
+ "line": 1663,
"column": 20
},
"end": {
- "line": 2072,
+ "line": 1666,
"column": 5
}
}
@@ -170113,16 +135364,16 @@
"kind": "method",
"computed": false,
"range": [
- 75990,
- 76090
+ 59229,
+ 59329
],
"loc": {
"start": {
- "line": 2069,
+ "line": 1663,
"column": 4
},
"end": {
- "line": 2072,
+ "line": 1666,
"column": 5
}
},
@@ -170131,16 +135382,16 @@
"type": "Block",
"value": "*\n * Return the filter's DOM element for a given column\n * @param {Number} index Column's index\n * @return {DOMElement}\n ",
"range": [
- 75839,
- 75985
+ 59078,
+ 59224
],
"loc": {
"start": {
- "line": 2064,
+ "line": 1658,
"column": 4
},
"end": {
- "line": 2068,
+ "line": 1662,
"column": 7
}
}
@@ -170151,16 +135402,16 @@
"type": "Block",
"value": "*\n * Return the number of cells for a given row index\n * @param {Number} rowIndex Index of the row\n * @return {Number} Number of cells\n ",
"range": [
- 76096,
- 76262
+ 59335,
+ 59501
],
"loc": {
"start": {
- "line": 2074,
+ "line": 1668,
"column": 4
},
"end": {
- "line": 2078,
+ "line": 1672,
"column": 7
}
}
@@ -170174,16 +135425,16 @@
"type": "Identifier",
"name": "getCellsNb",
"range": [
- 76267,
- 76277
+ 59506,
+ 59516
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 4
},
"end": {
- "line": 2079,
+ "line": 1673,
"column": 14
}
}
@@ -170198,16 +135449,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 76278,
- 76286
+ 59517,
+ 59525
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 15
},
"end": {
- "line": 2079,
+ "line": 1673,
"column": 23
}
}
@@ -170217,31 +135468,31 @@
"value": 0,
"raw": "0",
"range": [
- 76287,
- 76288
+ 59526,
+ 59527
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 24
},
"end": {
- "line": 2079,
+ "line": 1673,
"column": 25
}
}
},
"range": [
- 76278,
- 76288
+ 59517,
+ 59527
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 15
},
"end": {
- "line": 2079,
+ "line": 1673,
"column": 25
}
}
@@ -170259,16 +135510,16 @@
"type": "Identifier",
"name": "tr",
"range": [
- 76303,
- 76305
+ 59542,
+ 59544
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 12
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 14
}
}
@@ -170285,16 +135536,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 76308,
- 76312
+ 59547,
+ 59551
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 17
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 21
}
}
@@ -170303,31 +135554,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 76313,
- 76316
+ 59552,
+ 59555
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 22
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 25
}
}
},
"range": [
- 76308,
- 76316
+ 59547,
+ 59555
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 17
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 25
}
}
@@ -170336,31 +135587,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 76317,
- 76321
+ 59556,
+ 59560
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 26
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 30
}
}
},
"range": [
- 76308,
- 76321
+ 59547,
+ 59560
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 17
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 30
}
}
@@ -170369,46 +135620,46 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 76322,
- 76330
+ 59561,
+ 59569
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 31
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 39
}
}
},
"range": [
- 76308,
- 76331
+ 59547,
+ 59570
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 17
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 40
}
}
},
"range": [
- 76303,
- 76331
+ 59542,
+ 59570
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 12
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 40
}
}
@@ -170416,16 +135667,16 @@
],
"kind": "let",
"range": [
- 76299,
- 76332
+ 59538,
+ 59571
],
"loc": {
"start": {
- "line": 2080,
+ "line": 1674,
"column": 8
},
"end": {
- "line": 2080,
+ "line": 1674,
"column": 41
}
}
@@ -170442,16 +135693,16 @@
"type": "Identifier",
"name": "tr",
"range": [
- 76348,
- 76350
+ 59587,
+ 59589
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 15
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 17
}
}
@@ -170460,31 +135711,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 76351,
- 76356
+ 59590,
+ 59595
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 18
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 23
}
}
},
"range": [
- 76348,
- 76356
+ 59587,
+ 59595
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 15
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 23
}
}
@@ -170493,62 +135744,62 @@
"type": "Identifier",
"name": "length",
"range": [
- 76357,
- 76363
+ 59596,
+ 59602
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 24
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 30
}
}
},
"range": [
- 76348,
- 76363
+ 59587,
+ 59602
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 15
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 30
}
}
},
"range": [
- 76341,
- 76364
+ 59580,
+ 59603
],
"loc": {
"start": {
- "line": 2081,
+ "line": 1675,
"column": 8
},
"end": {
- "line": 2081,
+ "line": 1675,
"column": 31
}
}
}
],
"range": [
- 76289,
- 76370
+ 59528,
+ 59609
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 26
},
"end": {
- "line": 2082,
+ "line": 1676,
"column": 5
}
}
@@ -170556,16 +135807,16 @@
"generator": false,
"expression": false,
"range": [
- 76277,
- 76370
+ 59516,
+ 59609
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 14
},
"end": {
- "line": 2082,
+ "line": 1676,
"column": 5
}
}
@@ -170573,16 +135824,16 @@
"kind": "method",
"computed": false,
"range": [
- 76267,
- 76370
+ 59506,
+ 59609
],
"loc": {
"start": {
- "line": 2079,
+ "line": 1673,
"column": 4
},
"end": {
- "line": 2082,
+ "line": 1676,
"column": 5
}
},
@@ -170591,16 +135842,16 @@
"type": "Block",
"value": "*\n * Return the number of cells for a given row index\n * @param {Number} rowIndex Index of the row\n * @return {Number} Number of cells\n ",
"range": [
- 76096,
- 76262
+ 59335,
+ 59501
],
"loc": {
"start": {
- "line": 2074,
+ "line": 1668,
"column": 4
},
"end": {
- "line": 2078,
+ "line": 1672,
"column": 7
}
}
@@ -170611,16 +135862,16 @@
"type": "Block",
"value": "*\n * Return the number of filterable rows starting from reference row if\n * defined\n * @param {Boolean} includeHeaders Include the headers row\n * @return {Number} Number of filterable rows\n ",
"range": [
- 76376,
- 76607
+ 59615,
+ 59846
],
"loc": {
"start": {
- "line": 2084,
+ "line": 1678,
"column": 4
},
"end": {
- "line": 2089,
+ "line": 1683,
"column": 7
}
}
@@ -170634,16 +135885,16 @@
"type": "Identifier",
"name": "getRowsNb",
"range": [
- 76612,
- 76621
+ 59851,
+ 59860
],
"loc": {
"start": {
- "line": 2090,
+ "line": 1684,
"column": 4
},
"end": {
- "line": 2090,
+ "line": 1684,
"column": 13
}
}
@@ -170656,16 +135907,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 76622,
- 76636
+ 59861,
+ 59875
],
"loc": {
"start": {
- "line": 2090,
+ "line": 1684,
"column": 14
},
"end": {
- "line": 2090,
+ "line": 1684,
"column": 28
}
}
@@ -170683,16 +135934,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 76651,
- 76652
+ 59890,
+ 59891
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 12
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 13
}
}
@@ -170708,16 +135959,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 76655,
- 76660
+ 59894,
+ 59899
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 16
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 21
}
}
@@ -170726,31 +135977,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 76661,
- 76668
+ 59900,
+ 59907
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 22
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 29
}
}
},
"range": [
- 76655,
- 76668
+ 59894,
+ 59907
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 16
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 29
}
}
@@ -170762,16 +136013,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 76669,
- 76673
+ 59908,
+ 59912
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 30
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 34
}
}
@@ -170780,47 +136031,47 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 76674,
- 76680
+ 59913,
+ 59919
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 35
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 41
}
}
},
"range": [
- 76669,
- 76680
+ 59908,
+ 59919
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 30
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 41
}
}
}
],
"range": [
- 76655,
- 76681
+ 59894,
+ 59920
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 16
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 42
}
}
@@ -170830,16 +136081,16 @@
"value": 0,
"raw": "0",
"range": [
- 76684,
- 76685
+ 59923,
+ 59924
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 45
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 46
}
}
@@ -170850,16 +136101,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 76688,
- 76692
+ 59927,
+ 59931
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 49
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 53
}
}
@@ -170868,61 +136119,61 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 76693,
- 76699
+ 59932,
+ 59938
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 54
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 60
}
}
},
"range": [
- 76688,
- 76699
+ 59927,
+ 59938
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 49
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 60
}
}
},
"range": [
- 76655,
- 76699
+ 59894,
+ 59938
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 16
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 60
}
}
},
"range": [
- 76651,
- 76699
+ 59890,
+ 59938
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 12
},
"end": {
- "line": 2091,
+ "line": 1685,
"column": 60
}
}
@@ -170933,16 +136184,16 @@
"type": "Identifier",
"name": "ntrs",
"range": [
- 76713,
- 76717
+ 59952,
+ 59956
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 12
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 16
}
}
@@ -170959,16 +136210,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 76720,
- 76724
+ 59959,
+ 59963
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 19
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 23
}
}
@@ -170977,31 +136228,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 76725,
- 76728
+ 59964,
+ 59967
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 24
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 27
}
}
},
"range": [
- 76720,
- 76728
+ 59959,
+ 59967
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 19
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 27
}
}
@@ -171010,31 +136261,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 76729,
- 76733
+ 59968,
+ 59972
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 28
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 32
}
}
},
"range": [
- 76720,
- 76733
+ 59959,
+ 59972
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 19
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 32
}
}
@@ -171043,46 +136294,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 76734,
- 76740
+ 59973,
+ 59979
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 33
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 39
}
}
},
"range": [
- 76720,
- 76740
+ 59959,
+ 59979
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 19
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 39
}
}
},
"range": [
- 76713,
- 76740
+ 59952,
+ 59979
],
"loc": {
"start": {
- "line": 2092,
+ "line": 1686,
"column": 12
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 39
}
}
@@ -171090,16 +136341,16 @@
],
"kind": "let",
"range": [
- 76647,
- 76741
+ 59886,
+ 59980
],
"loc": {
"start": {
- "line": 2091,
+ "line": 1685,
"column": 8
},
"end": {
- "line": 2092,
+ "line": 1686,
"column": 40
}
}
@@ -171110,16 +136361,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 76753,
- 76767
+ 59992,
+ 60006
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 11
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 25
}
}
@@ -171136,16 +136387,16 @@
"type": "Identifier",
"name": "s",
"range": [
- 76770,
- 76771
+ 60009,
+ 60010
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 28
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 29
}
}
@@ -171155,78 +136406,78 @@
"value": 0,
"raw": "0",
"range": [
- 76774,
- 76775
+ 60013,
+ 60014
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 32
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 33
}
}
},
"range": [
- 76770,
- 76775
+ 60009,
+ 60014
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 28
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 33
}
}
},
"range": [
- 76770,
- 76776
+ 60009,
+ 60015
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 28
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 34
}
}
}
],
"range": [
- 76768,
- 76778
+ 60007,
+ 60017
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 26
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 36
}
}
},
"alternate": null,
"range": [
- 76750,
- 76778
+ 59989,
+ 60017
],
"loc": {
"start": {
- "line": 2093,
+ "line": 1687,
"column": 8
},
"end": {
- "line": 2093,
+ "line": 1687,
"column": 36
}
}
@@ -171239,16 +136490,16 @@
"type": "Identifier",
"name": "parseInt",
"range": [
- 76794,
- 76802
+ 60033,
+ 60041
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 15
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 23
}
}
@@ -171261,16 +136512,16 @@
"type": "Identifier",
"name": "ntrs",
"range": [
- 76803,
- 76807
+ 60042,
+ 60046
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 24
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 28
}
}
@@ -171279,31 +136530,31 @@
"type": "Identifier",
"name": "s",
"range": [
- 76808,
- 76809
+ 60047,
+ 60048
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 29
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 30
}
}
},
"range": [
- 76803,
- 76809
+ 60042,
+ 60048
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 24
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 30
}
}
@@ -171313,63 +136564,63 @@
"value": 10,
"raw": "10",
"range": [
- 76811,
- 76813
+ 60050,
+ 60052
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 32
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 34
}
}
}
],
"range": [
- 76794,
- 76814
+ 60033,
+ 60053
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 15
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 35
}
}
},
"range": [
- 76787,
- 76815
+ 60026,
+ 60054
],
"loc": {
"start": {
- "line": 2094,
+ "line": 1688,
"column": 8
},
"end": {
- "line": 2094,
+ "line": 1688,
"column": 36
}
}
}
],
"range": [
- 76637,
- 76821
+ 59876,
+ 60060
],
"loc": {
"start": {
- "line": 2090,
+ "line": 1684,
"column": 29
},
"end": {
- "line": 2095,
+ "line": 1689,
"column": 5
}
}
@@ -171377,16 +136628,16 @@
"generator": false,
"expression": false,
"range": [
- 76621,
- 76821
+ 59860,
+ 60060
],
"loc": {
"start": {
- "line": 2090,
+ "line": 1684,
"column": 13
},
"end": {
- "line": 2095,
+ "line": 1689,
"column": 5
}
}
@@ -171394,16 +136645,16 @@
"kind": "method",
"computed": false,
"range": [
- 76612,
- 76821
+ 59851,
+ 60060
],
"loc": {
"start": {
- "line": 2090,
+ "line": 1684,
"column": 4
},
"end": {
- "line": 2095,
+ "line": 1689,
"column": 5
}
},
@@ -171412,16 +136663,16 @@
"type": "Block",
"value": "*\n * Return the number of filterable rows starting from reference row if\n * defined\n * @param {Boolean} includeHeaders Include the headers row\n * @return {Number} Number of filterable rows\n ",
"range": [
- 76376,
- 76607
+ 59615,
+ 59846
],
"loc": {
"start": {
- "line": 2084,
+ "line": 1678,
"column": 4
},
"end": {
- "line": 2089,
+ "line": 1683,
"column": 7
}
}
@@ -171432,16 +136683,16 @@
"type": "Block",
"value": "*\n * Return the data of a given cell\n * @param {DOMElement} cell Cell's DOM object\n * @return {String}\n ",
"range": [
- 76827,
- 76952
+ 60066,
+ 60191
],
"loc": {
"start": {
- "line": 2097,
+ "line": 1691,
"column": 4
},
"end": {
- "line": 2101,
+ "line": 1695,
"column": 7
}
}
@@ -171455,16 +136706,16 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 76957,
- 76968
+ 60196,
+ 60207
],
"loc": {
"start": {
- "line": 2102,
+ "line": 1696,
"column": 4
},
"end": {
- "line": 2102,
+ "line": 1696,
"column": 15
}
}
@@ -171477,16 +136728,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 76969,
- 76973
+ 60208,
+ 60212
],
"loc": {
"start": {
- "line": 2102,
+ "line": 1696,
"column": 16
},
"end": {
- "line": 2102,
+ "line": 1696,
"column": 20
}
}
@@ -171504,16 +136755,16 @@
"type": "Identifier",
"name": "idx",
"range": [
- 76988,
- 76991
+ 60227,
+ 60230
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 12
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 15
}
}
@@ -171525,16 +136776,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 76994,
- 76998
+ 60233,
+ 60237
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 18
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 22
}
}
@@ -171543,63 +136794,63 @@
"type": "Identifier",
"name": "cellIndex",
"range": [
- 76999,
- 77008
+ 60238,
+ 60247
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 23
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 32
}
}
},
"range": [
- 76994,
- 77008
+ 60233,
+ 60247
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 18
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 32
}
}
},
"range": [
- 76988,
- 77008
+ 60227,
+ 60247
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 12
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 32
}
}
}
],
- "kind": "var",
+ "kind": "let",
"range": [
- 76984,
- 77009
+ 60223,
+ 60248
],
"loc": {
"start": {
- "line": 2103,
+ "line": 1697,
"column": 8
},
"end": {
- "line": 2103,
+ "line": 1697,
"column": 33
}
},
@@ -171608,16 +136859,16 @@
"type": "Line",
"value": "Check for customCellData callback",
"range": [
- 77018,
- 77053
+ 60257,
+ 60292
],
"loc": {
"start": {
- "line": 2104,
+ "line": 1698,
"column": 8
},
"end": {
- "line": 2104,
+ "line": 1698,
"column": 43
}
}
@@ -171635,16 +136886,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77065,
- 77069
+ 60304,
+ 60308
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 11
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 15
}
}
@@ -171653,31 +136904,31 @@
"type": "Identifier",
"name": "customCellData",
"range": [
- 77070,
- 77084
+ 60309,
+ 60323
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 16
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 30
}
}
},
"range": [
- 77065,
- 77084
+ 60304,
+ 60323
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 11
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 30
}
}
@@ -171696,16 +136947,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77088,
- 77092
+ 60327,
+ 60331
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 34
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 38
}
}
@@ -171714,31 +136965,31 @@
"type": "Identifier",
"name": "customCellDataCols",
"range": [
- 77093,
- 77111
+ 60332,
+ 60350
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 39
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 57
}
}
},
"range": [
- 77088,
- 77111
+ 60327,
+ 60350
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 34
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 57
}
}
@@ -171747,31 +136998,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 77112,
- 77119
+ 60351,
+ 60358
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 58
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 65
}
}
},
"range": [
- 77088,
- 77119
+ 60327,
+ 60358
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 34
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 65
}
}
@@ -171781,32 +137032,32 @@
"type": "Identifier",
"name": "idx",
"range": [
- 77120,
- 77123
+ 60359,
+ 60362
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 66
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 69
}
}
}
],
"range": [
- 77088,
- 77124
+ 60327,
+ 60363
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 34
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 70
}
}
@@ -171819,62 +137070,62 @@
"value": 1,
"raw": "1",
"range": [
- 77129,
- 77130
+ 60368,
+ 60369
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 75
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 76
}
}
},
"prefix": true,
"range": [
- 77128,
- 77130
+ 60367,
+ 60369
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 74
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 76
}
}
},
"range": [
- 77088,
- 77130
+ 60327,
+ 60369
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 34
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 76
}
}
},
"range": [
- 77065,
- 77130
+ 60304,
+ 60369
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 11
},
"end": {
- "line": 2105,
+ "line": 1699,
"column": 76
}
}
@@ -171895,16 +137146,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77152,
- 77156
+ 60391,
+ 60395
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 19
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 23
}
}
@@ -171913,31 +137164,31 @@
"type": "Identifier",
"name": "customCellData",
"range": [
- 77157,
- 77171
+ 60396,
+ 60410
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 24
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 38
}
}
},
"range": [
- 77152,
- 77171
+ 60391,
+ 60410
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 19
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 38
}
}
@@ -171946,31 +137197,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 77172,
- 77176
+ 60411,
+ 60415
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 39
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 43
}
}
},
"range": [
- 77152,
- 77176
+ 60391,
+ 60415
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 19
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 43
}
}
@@ -171981,16 +137232,16 @@
"value": null,
"raw": "null",
"range": [
- 77177,
- 77181
+ 60416,
+ 60420
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 44
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 48
}
}
@@ -171998,16 +137249,16 @@
{
"type": "ThisExpression",
"range": [
- 77183,
- 77187
+ 60422,
+ 60426
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 50
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 54
}
}
@@ -172016,16 +137267,16 @@
"type": "Identifier",
"name": "cell",
"range": [
- 77189,
- 77193
+ 60428,
+ 60432
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 56
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 60
}
}
@@ -172034,63 +137285,63 @@
"type": "Identifier",
"name": "idx",
"range": [
- 77195,
- 77198
+ 60434,
+ 60437
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 62
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 65
}
}
}
],
"range": [
- 77152,
- 77199
+ 60391,
+ 60438
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 19
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 66
}
}
},
"range": [
- 77145,
- 77200
+ 60384,
+ 60439
],
"loc": {
"start": {
- "line": 2106,
+ "line": 1700,
"column": 12
},
"end": {
- "line": 2106,
+ "line": 1700,
"column": 67
}
}
}
],
"range": [
- 77131,
- 77210
+ 60370,
+ 60449
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 77
},
"end": {
- "line": 2107,
+ "line": 1701,
"column": 9
}
}
@@ -172109,16 +137360,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 77237,
- 77240
+ 60476,
+ 60479
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 19
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 22
}
}
@@ -172127,31 +137378,31 @@
"type": "Identifier",
"name": "getText",
"range": [
- 77241,
- 77248
+ 60480,
+ 60487
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 23
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 30
}
}
},
"range": [
- 77237,
- 77248
+ 60476,
+ 60487
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 19
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 30
}
}
@@ -172161,78 +137412,78 @@
"type": "Identifier",
"name": "cell",
"range": [
- 77249,
- 77253
+ 60488,
+ 60492
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 31
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 35
}
}
}
],
"range": [
- 77237,
- 77254
+ 60476,
+ 60493
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 19
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 36
}
}
},
"range": [
- 77230,
- 77255
+ 60469,
+ 60494
],
"loc": {
"start": {
- "line": 2108,
+ "line": 1702,
"column": 12
},
"end": {
- "line": 2108,
+ "line": 1702,
"column": 37
}
}
}
],
"range": [
- 77216,
- 77265
+ 60455,
+ 60504
],
"loc": {
"start": {
- "line": 2107,
+ "line": 1701,
"column": 15
},
"end": {
- "line": 2109,
+ "line": 1703,
"column": 9
}
}
},
"range": [
- 77062,
- 77265
+ 60301,
+ 60504
],
"loc": {
"start": {
- "line": 2105,
+ "line": 1699,
"column": 8
},
"end": {
- "line": 2109,
+ "line": 1703,
"column": 9
}
},
@@ -172241,16 +137492,16 @@
"type": "Line",
"value": "Check for customCellData callback",
"range": [
- 77018,
- 77053
+ 60257,
+ 60292
],
"loc": {
"start": {
- "line": 2104,
+ "line": 1698,
"column": 8
},
"end": {
- "line": 2104,
+ "line": 1698,
"column": 43
}
}
@@ -172259,16 +137510,16 @@
}
],
"range": [
- 76974,
- 77271
+ 60213,
+ 60510
],
"loc": {
"start": {
- "line": 2102,
+ "line": 1696,
"column": 21
},
"end": {
- "line": 2110,
+ "line": 1704,
"column": 5
}
}
@@ -172276,16 +137527,16 @@
"generator": false,
"expression": false,
"range": [
- 76968,
- 77271
+ 60207,
+ 60510
],
"loc": {
"start": {
- "line": 2102,
+ "line": 1696,
"column": 15
},
"end": {
- "line": 2110,
+ "line": 1704,
"column": 5
}
}
@@ -172293,16 +137544,16 @@
"kind": "method",
"computed": false,
"range": [
- 76957,
- 77271
+ 60196,
+ 60510
],
"loc": {
"start": {
- "line": 2102,
+ "line": 1696,
"column": 4
},
"end": {
- "line": 2110,
+ "line": 1704,
"column": 5
}
},
@@ -172311,16 +137562,16 @@
"type": "Block",
"value": "*\n * Return the data of a given cell\n * @param {DOMElement} cell Cell's DOM object\n * @return {String}\n ",
"range": [
- 76827,
- 76952
+ 60066,
+ 60191
],
"loc": {
"start": {
- "line": 2097,
+ "line": 1691,
"column": 4
},
"end": {
- "line": 2101,
+ "line": 1695,
"column": 7
}
}
@@ -172331,16 +137582,16 @@
"type": "Block",
"value": "*\n * Return the table data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 77277,
- 77681
+ 60516,
+ 60920
],
"loc": {
"start": {
- "line": 2112,
+ "line": 1706,
"column": 4
},
"end": {
- "line": 2123,
+ "line": 1717,
"column": 7
}
}
@@ -172354,16 +137605,16 @@
"type": "Identifier",
"name": "getTableData",
"range": [
- 77686,
- 77698
+ 60925,
+ 60937
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 4
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 16
}
}
@@ -172378,16 +137629,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 77699,
- 77713
+ 60938,
+ 60952
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 17
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 31
}
}
@@ -172397,31 +137648,31 @@
"value": false,
"raw": "false",
"range": [
- 77714,
- 77719
+ 60953,
+ 60958
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 32
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 37
}
}
},
"range": [
- 77699,
- 77719
+ 60938,
+ 60958
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 17
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 37
}
}
@@ -172432,16 +137683,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 77721,
- 77738
+ 60960,
+ 60977
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 39
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 56
}
}
@@ -172451,31 +137702,31 @@
"value": false,
"raw": "false",
"range": [
- 77739,
- 77744
+ 60978,
+ 60983
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 57
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 62
}
}
},
"range": [
- 77721,
- 77744
+ 60960,
+ 60983
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 39
},
"end": {
- "line": 2124,
+ "line": 1718,
"column": 62
}
}
@@ -172493,16 +137744,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 77759,
- 77763
+ 60998,
+ 61002
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 12
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 16
}
}
@@ -172516,16 +137767,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77766,
- 77770
+ 61005,
+ 61009
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 19
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 23
}
}
@@ -172534,31 +137785,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 77771,
- 77774
+ 61010,
+ 61013
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 24
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 27
}
}
},
"range": [
- 77766,
- 77774
+ 61005,
+ 61013
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 19
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 27
}
}
@@ -172567,46 +137818,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 77775,
- 77779
+ 61014,
+ 61018
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 28
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 32
}
}
},
"range": [
- 77766,
- 77779
+ 61005,
+ 61018
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 19
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 32
}
}
},
"range": [
- 77759,
- 77779
+ 60998,
+ 61018
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 12
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 32
}
}
@@ -172614,16 +137865,16 @@
],
"kind": "let",
"range": [
- 77755,
- 77780
+ 60994,
+ 61019
],
"loc": {
"start": {
- "line": 2125,
+ "line": 1719,
"column": 8
},
"end": {
- "line": 2125,
+ "line": 1719,
"column": 33
}
}
@@ -172637,16 +137888,16 @@
"type": "Identifier",
"name": "tblData",
"range": [
- 77793,
- 77800
+ 61032,
+ 61039
],
"loc": {
"start": {
- "line": 2126,
+ "line": 1720,
"column": 12
},
"end": {
- "line": 2126,
+ "line": 1720,
"column": 19
}
}
@@ -172655,31 +137906,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 77803,
- 77805
+ 61042,
+ 61044
],
"loc": {
"start": {
- "line": 2126,
+ "line": 1720,
"column": 22
},
"end": {
- "line": 2126,
+ "line": 1720,
"column": 24
}
}
},
"range": [
- 77793,
- 77805
+ 61032,
+ 61044
],
"loc": {
"start": {
- "line": 2126,
+ "line": 1720,
"column": 12
},
"end": {
- "line": 2126,
+ "line": 1720,
"column": 24
}
}
@@ -172687,16 +137938,16 @@
],
"kind": "let",
"range": [
- 77789,
- 77806
+ 61028,
+ 61045
],
"loc": {
"start": {
- "line": 2126,
+ "line": 1720,
"column": 8
},
"end": {
- "line": 2126,
+ "line": 1720,
"column": 25
}
}
@@ -172707,16 +137958,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 77818,
- 77832
+ 61057,
+ 61071
],
"loc": {
"start": {
- "line": 2127,
+ "line": 1721,
"column": 11
},
"end": {
- "line": 2127,
+ "line": 1721,
"column": 25
}
}
@@ -172733,16 +137984,16 @@
"type": "Identifier",
"name": "headers",
"range": [
- 77851,
- 77858
+ 61090,
+ 61097
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 16
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 23
}
}
@@ -172755,16 +138006,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77861,
- 77865
+ 61100,
+ 61104
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 26
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 30
}
}
@@ -172773,31 +138024,31 @@
"type": "Identifier",
"name": "getHeadersText",
"range": [
- 77866,
- 77880
+ 61105,
+ 61119
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 31
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 45
}
}
},
"range": [
- 77861,
- 77880
+ 61100,
+ 61119
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 26
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 45
}
}
@@ -172807,47 +138058,47 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 77881,
- 77898
+ 61120,
+ 61137
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 46
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 63
}
}
}
],
"range": [
- 77861,
- 77899
+ 61100,
+ 61138
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 26
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 64
}
}
},
"range": [
- 77851,
- 77899
+ 61090,
+ 61138
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 16
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 64
}
}
@@ -172855,16 +138106,16 @@
],
"kind": "let",
"range": [
- 77847,
- 77900
+ 61086,
+ 61139
],
"loc": {
"start": {
- "line": 2128,
+ "line": 1722,
"column": 12
},
"end": {
- "line": 2128,
+ "line": 1722,
"column": 65
}
}
@@ -172880,16 +138131,16 @@
"type": "Identifier",
"name": "tblData",
"range": [
- 77913,
- 77920
+ 61152,
+ 61159
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 12
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 19
}
}
@@ -172898,31 +138149,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 77921,
- 77925
+ 61160,
+ 61164
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 20
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 24
}
}
},
"range": [
- 77913,
- 77925
+ 61152,
+ 61164
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 12
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 24
}
}
@@ -172939,16 +138190,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77927,
- 77931
+ 61166,
+ 61170
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 26
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 30
}
}
@@ -172957,47 +138208,47 @@
"type": "Identifier",
"name": "getHeadersRowIndex",
"range": [
- 77932,
- 77950
+ 61171,
+ 61189
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 31
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 49
}
}
},
"range": [
- 77927,
- 77950
+ 61166,
+ 61189
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 26
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 49
}
}
},
"arguments": [],
"range": [
- 77927,
- 77952
+ 61166,
+ 61191
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 26
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 51
}
}
@@ -173006,95 +138257,95 @@
"type": "Identifier",
"name": "headers",
"range": [
- 77954,
- 77961
+ 61193,
+ 61200
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 53
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 60
}
}
}
],
"range": [
- 77926,
- 77962
+ 61165,
+ 61201
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 25
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 61
}
}
}
],
"range": [
- 77913,
- 77963
+ 61152,
+ 61202
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 12
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 62
}
}
},
"range": [
- 77913,
- 77964
+ 61152,
+ 61203
],
"loc": {
"start": {
- "line": 2129,
+ "line": 1723,
"column": 12
},
"end": {
- "line": 2129,
+ "line": 1723,
"column": 63
}
}
}
],
"range": [
- 77833,
- 77974
+ 61072,
+ 61213
],
"loc": {
"start": {
- "line": 2127,
+ "line": 1721,
"column": 26
},
"end": {
- "line": 2130,
+ "line": 1724,
"column": 9
}
}
},
"alternate": null,
"range": [
- 77815,
- 77974
+ 61054,
+ 61213
],
"loc": {
"start": {
- "line": 2127,
+ "line": 1721,
"column": 8
},
"end": {
- "line": 2130,
+ "line": 1724,
"column": 9
}
}
@@ -173110,16 +138361,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 77991,
- 77992
+ 61230,
+ 61231
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 16
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 17
}
}
@@ -173130,16 +138381,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 77993,
- 77997
+ 61232,
+ 61236
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 18
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 22
}
}
@@ -173148,46 +138399,46 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 77998,
- 78004
+ 61237,
+ 61243
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 23
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 29
}
}
},
"range": [
- 77993,
- 78004
+ 61232,
+ 61243
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 18
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 29
}
}
},
"range": [
- 77991,
- 78004
+ 61230,
+ 61243
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 16
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 29
}
}
@@ -173195,16 +138446,16 @@
],
"kind": "let",
"range": [
- 77987,
- 78004
+ 61226,
+ 61243
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 12
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 29
}
}
@@ -173216,16 +138467,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 78006,
- 78007
+ 61245,
+ 61246
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 31
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 32
}
}
@@ -173236,16 +138487,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 78008,
- 78012
+ 61247,
+ 61251
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 33
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 37
}
}
@@ -173254,46 +138505,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 78013,
- 78019
+ 61252,
+ 61258
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 38
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 44
}
}
},
"range": [
- 78008,
- 78019
+ 61247,
+ 61258
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 33
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 44
}
}
},
"range": [
- 78006,
- 78019
+ 61245,
+ 61258
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 31
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 44
}
}
@@ -173305,32 +138556,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 78021,
- 78022
+ 61260,
+ 61261
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 46
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 47
}
}
},
"prefix": false,
"range": [
- 78021,
- 78024
+ 61260,
+ 61263
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 46
},
"end": {
- "line": 2131,
+ "line": 1725,
"column": 49
}
}
@@ -173347,16 +138598,16 @@
"type": "Identifier",
"name": "rowData",
"range": [
- 78043,
- 78050
+ 61282,
+ 61289
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 16
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 23
}
}
@@ -173368,16 +138619,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 78054,
- 78055
+ 61293,
+ 61294
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 27
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 28
}
}
@@ -173386,47 +138637,47 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 78057,
- 78059
+ 61296,
+ 61298
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 30
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 32
}
}
}
],
"range": [
- 78053,
- 78060
+ 61292,
+ 61299
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 26
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 33
}
}
},
"range": [
- 78043,
- 78060
+ 61282,
+ 61299
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 16
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 33
}
}
@@ -173434,16 +138685,16 @@
],
"kind": "let",
"range": [
- 78039,
- 78061
+ 61278,
+ 61300
],
"loc": {
"start": {
- "line": 2132,
+ "line": 1726,
"column": 12
},
"end": {
- "line": 2132,
+ "line": 1726,
"column": 34
}
}
@@ -173457,16 +138708,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 78078,
- 78083
+ 61317,
+ 61322
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 16
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 21
}
}
@@ -173481,16 +138732,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 78086,
- 78090
+ 61325,
+ 61329
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 24
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 28
}
}
@@ -173499,31 +138750,31 @@
"type": "Identifier",
"name": "k",
"range": [
- 78091,
- 78092
+ 61330,
+ 61331
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 29
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 30
}
}
},
"range": [
- 78086,
- 78093
+ 61325,
+ 61332
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 24
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 31
}
}
@@ -173532,46 +138783,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 78094,
- 78099
+ 61333,
+ 61338
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 32
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 37
}
}
},
"range": [
- 78086,
- 78099
+ 61325,
+ 61338
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 24
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 37
}
}
},
"range": [
- 78078,
- 78099
+ 61317,
+ 61338
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 16
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 37
}
}
@@ -173579,16 +138830,16 @@
],
"kind": "let",
"range": [
- 78074,
- 78100
+ 61313,
+ 61339
],
"loc": {
"start": {
- "line": 2133,
+ "line": 1727,
"column": 12
},
"end": {
- "line": 2133,
+ "line": 1727,
"column": 38
}
}
@@ -173604,16 +138855,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 78121,
- 78122
+ 61360,
+ 61361
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 20
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 21
}
}
@@ -173623,31 +138874,31 @@
"value": 0,
"raw": "0",
"range": [
- 78123,
- 78124
+ 61362,
+ 61363
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 22
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 23
}
}
},
"range": [
- 78121,
- 78124
+ 61360,
+ 61363
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 20
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 23
}
}
@@ -173658,16 +138909,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 78126,
- 78129
+ 61365,
+ 61368
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 25
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 28
}
}
@@ -173679,16 +138930,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 78130,
- 78135
+ 61369,
+ 61374
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 29
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 34
}
}
@@ -173697,46 +138948,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 78136,
- 78142
+ 61375,
+ 61381
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 35
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 41
}
}
},
"range": [
- 78130,
- 78142
+ 61369,
+ 61381
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 29
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 41
}
}
},
"range": [
- 78126,
- 78142
+ 61365,
+ 61381
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 25
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 41
}
}
@@ -173744,16 +138995,16 @@
],
"kind": "let",
"range": [
- 78117,
- 78142
+ 61356,
+ 61381
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 16
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 41
}
}
@@ -173765,16 +139016,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 78144,
- 78145
+ 61383,
+ 61384
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 43
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 44
}
}
@@ -173783,31 +139034,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 78146,
- 78149
+ 61385,
+ 61388
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 45
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 48
}
}
},
"range": [
- 78144,
- 78149
+ 61383,
+ 61388
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 43
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 48
}
}
@@ -173819,32 +139070,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 78151,
- 78152
+ 61390,
+ 61391
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 50
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 51
}
}
},
"prefix": false,
"range": [
- 78151,
- 78154
+ 61390,
+ 61393
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 50
},
"end": {
- "line": 2134,
+ "line": 1728,
"column": 53
}
}
@@ -173861,16 +139112,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 78176,
- 78193
+ 61415,
+ 61432
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 19
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 36
}
}
@@ -173883,16 +139134,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 78197,
- 78201
+ 61436,
+ 61440
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 40
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 44
}
}
@@ -173901,31 +139152,31 @@
"type": "Identifier",
"name": "hasExtension",
"range": [
- 78202,
- 78214
+ 61441,
+ 61453
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 45
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 57
}
}
},
"range": [
- 78197,
- 78214
+ 61436,
+ 61453
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 40
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 57
}
}
@@ -173936,47 +139187,47 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 78215,
- 78231
+ 61454,
+ 61470
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 58
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 74
}
}
}
],
"range": [
- 78197,
- 78232
+ 61436,
+ 61471
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 40
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 75
}
}
},
"range": [
- 78176,
- 78232
+ 61415,
+ 61471
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 19
},
"end": {
- "line": 2135,
+ "line": 1729,
"column": 75
}
}
@@ -173999,16 +139250,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 78258,
- 78262
+ 61497,
+ 61501
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 23
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 27
}
}
@@ -174017,31 +139268,31 @@
"type": "Identifier",
"name": "extension",
"range": [
- 78263,
- 78272
+ 61502,
+ 61511
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 28
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 37
}
}
},
"range": [
- 78258,
- 78272
+ 61497,
+ 61511
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 23
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 37
}
}
@@ -174052,32 +139303,32 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 78273,
- 78289
+ 61512,
+ 61528
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 38
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 54
}
}
}
],
"range": [
- 78258,
- 78290
+ 61497,
+ 61529
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 23
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 55
}
}
@@ -174086,31 +139337,31 @@
"type": "Identifier",
"name": "isColHidden",
"range": [
- 78291,
- 78302
+ 61530,
+ 61541
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 56
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 67
}
}
},
"range": [
- 78258,
- 78302
+ 61497,
+ 61541
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 23
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 67
}
}
@@ -174120,32 +139371,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 78303,
- 78304
+ 61542,
+ 61543
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 68
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 69
}
}
}
],
"range": [
- 78258,
- 78305
+ 61497,
+ 61544
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 23
},
"end": {
- "line": 2136,
+ "line": 1730,
"column": 70
}
}
@@ -174157,80 +139408,80 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 78332,
- 78341
+ 61571,
+ 61580
],
"loc": {
"start": {
- "line": 2137,
+ "line": 1731,
"column": 24
},
"end": {
- "line": 2137,
+ "line": 1731,
"column": 33
}
}
}
],
"range": [
- 78306,
- 78363
+ 61545,
+ 61602
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 71
},
"end": {
- "line": 2138,
+ "line": 1732,
"column": 21
}
}
},
"alternate": null,
"range": [
- 78255,
- 78363
+ 61494,
+ 61602
],
"loc": {
"start": {
- "line": 2136,
+ "line": 1730,
"column": 20
},
"end": {
- "line": 2138,
+ "line": 1732,
"column": 21
}
}
}
],
"range": [
- 78233,
- 78381
+ 61472,
+ 61620
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 76
},
"end": {
- "line": 2139,
+ "line": 1733,
"column": 17
}
}
},
"alternate": null,
"range": [
- 78173,
- 78381
+ 61412,
+ 61620
],
"loc": {
"start": {
- "line": 2135,
+ "line": 1729,
"column": 16
},
"end": {
- "line": 2139,
+ "line": 1733,
"column": 17
}
}
@@ -174244,16 +139495,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 78402,
- 78410
+ 61641,
+ 61649
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 20
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 28
}
}
@@ -174266,16 +139517,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 78413,
- 78417
+ 61652,
+ 61656
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 31
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 35
}
}
@@ -174284,31 +139535,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 78418,
- 78429
+ 61657,
+ 61668
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 36
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 47
}
}
},
"range": [
- 78413,
- 78429
+ 61652,
+ 61668
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 31
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 47
}
}
@@ -174321,16 +139572,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 78430,
- 78435
+ 61669,
+ 61674
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 48
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 53
}
}
@@ -174339,62 +139590,62 @@
"type": "Identifier",
"name": "j",
"range": [
- 78436,
- 78437
+ 61675,
+ 61676
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 54
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 55
}
}
},
"range": [
- 78430,
- 78438
+ 61669,
+ 61677
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 48
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 56
}
}
}
],
"range": [
- 78413,
- 78439
+ 61652,
+ 61678
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 31
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 57
}
}
},
"range": [
- 78402,
- 78439
+ 61641,
+ 61678
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 20
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 57
}
}
@@ -174402,16 +139653,16 @@
],
"kind": "let",
"range": [
- 78398,
- 78440
+ 61637,
+ 61679
],
"loc": {
"start": {
- "line": 2140,
+ "line": 1734,
"column": 16
},
"end": {
- "line": 2140,
+ "line": 1734,
"column": 58
}
}
@@ -174430,16 +139681,16 @@
"type": "Identifier",
"name": "rowData",
"range": [
- 78457,
- 78464
+ 61696,
+ 61703
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 16
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 23
}
}
@@ -174449,31 +139700,31 @@
"value": 1,
"raw": "1",
"range": [
- 78465,
- 78466
+ 61704,
+ 61705
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 24
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 25
}
}
},
"range": [
- 78457,
- 78467
+ 61696,
+ 61706
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 16
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 26
}
}
@@ -174482,31 +139733,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 78468,
- 78472
+ 61707,
+ 61711
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 27
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 31
}
}
},
"range": [
- 78457,
- 78472
+ 61696,
+ 61711
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 16
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 31
}
}
@@ -174516,78 +139767,78 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 78473,
- 78481
+ 61712,
+ 61720
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 32
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 40
}
}
}
],
"range": [
- 78457,
- 78482
+ 61696,
+ 61721
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 16
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 41
}
}
},
"range": [
- 78457,
- 78483
+ 61696,
+ 61722
],
"loc": {
"start": {
- "line": 2141,
+ "line": 1735,
"column": 16
},
"end": {
- "line": 2141,
+ "line": 1735,
"column": 42
}
}
}
],
"range": [
- 78155,
- 78497
+ 61394,
+ 61736
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 54
},
"end": {
- "line": 2142,
+ "line": 1736,
"column": 13
}
}
},
"range": [
- 78113,
- 78497
+ 61352,
+ 61736
],
"loc": {
"start": {
- "line": 2134,
+ "line": 1728,
"column": 12
},
"end": {
- "line": 2142,
+ "line": 1736,
"column": 13
}
}
@@ -174603,16 +139854,16 @@
"type": "Identifier",
"name": "tblData",
"range": [
- 78510,
- 78517
+ 61749,
+ 61756
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 12
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 19
}
}
@@ -174621,31 +139872,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 78518,
- 78522
+ 61757,
+ 61761
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 20
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 24
}
}
},
"range": [
- 78510,
- 78522
+ 61749,
+ 61761
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 12
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 24
}
}
@@ -174655,78 +139906,78 @@
"type": "Identifier",
"name": "rowData",
"range": [
- 78523,
- 78530
+ 61762,
+ 61769
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 25
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 32
}
}
}
],
"range": [
- 78510,
- 78531
+ 61749,
+ 61770
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 12
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 33
}
}
},
"range": [
- 78510,
- 78532
+ 61749,
+ 61771
],
"loc": {
"start": {
- "line": 2143,
+ "line": 1737,
"column": 12
},
"end": {
- "line": 2143,
+ "line": 1737,
"column": 34
}
}
}
],
"range": [
- 78025,
- 78542
+ 61264,
+ 61781
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 50
},
"end": {
- "line": 2144,
+ "line": 1738,
"column": 9
}
}
},
"range": [
- 77983,
- 78542
+ 61222,
+ 61781
],
"loc": {
"start": {
- "line": 2131,
+ "line": 1725,
"column": 8
},
"end": {
- "line": 2144,
+ "line": 1738,
"column": 9
}
}
@@ -174737,47 +139988,47 @@
"type": "Identifier",
"name": "tblData",
"range": [
- 78558,
- 78565
+ 61797,
+ 61804
],
"loc": {
"start": {
- "line": 2145,
+ "line": 1739,
"column": 15
},
"end": {
- "line": 2145,
+ "line": 1739,
"column": 22
}
}
},
"range": [
- 78551,
- 78566
+ 61790,
+ 61805
],
"loc": {
"start": {
- "line": 2145,
+ "line": 1739,
"column": 8
},
"end": {
- "line": 2145,
+ "line": 1739,
"column": 23
}
}
}
],
"range": [
- 77745,
- 78572
+ 60984,
+ 61811
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 63
},
"end": {
- "line": 2146,
+ "line": 1740,
"column": 5
}
}
@@ -174785,16 +140036,16 @@
"generator": false,
"expression": false,
"range": [
- 77698,
- 78572
+ 60937,
+ 61811
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 16
},
"end": {
- "line": 2146,
+ "line": 1740,
"column": 5
}
}
@@ -174802,16 +140053,16 @@
"kind": "method",
"computed": false,
"range": [
- 77686,
- 78572
+ 60925,
+ 61811
],
"loc": {
"start": {
- "line": 2124,
+ "line": 1718,
"column": 4
},
"end": {
- "line": 2146,
+ "line": 1740,
"column": 5
}
},
@@ -174820,16 +140071,16 @@
"type": "Block",
"value": "*\n * Return the table data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 77277,
- 77681
+ 60516,
+ 60920
],
"loc": {
"start": {
- "line": 2112,
+ "line": 1706,
"column": 4
},
"end": {
- "line": 2123,
+ "line": 1717,
"column": 7
}
}
@@ -174840,16 +140091,16 @@
"type": "Block",
"value": "*\n * Return the filtered data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 78578,
- 78985
+ 61817,
+ 62224
],
"loc": {
"start": {
- "line": 2148,
+ "line": 1742,
"column": 4
},
"end": {
- "line": 2159,
+ "line": 1753,
"column": 7
}
}
@@ -174863,16 +140114,16 @@
"type": "Identifier",
"name": "getFilteredData",
"range": [
- 78990,
- 79005
+ 62229,
+ 62244
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 4
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 19
}
}
@@ -174887,16 +140138,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 79006,
- 79020
+ 62245,
+ 62259
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 20
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 34
}
}
@@ -174906,31 +140157,31 @@
"value": false,
"raw": "false",
"range": [
- 79021,
- 79026
+ 62260,
+ 62265
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 35
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 40
}
}
},
"range": [
- 79006,
- 79026
+ 62245,
+ 62265
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 20
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 40
}
}
@@ -174941,16 +140192,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 79028,
- 79045
+ 62267,
+ 62284
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 42
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 59
}
}
@@ -174960,31 +140211,31 @@
"value": false,
"raw": "false",
"range": [
- 79046,
- 79051
+ 62285,
+ 62290
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 60
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 65
}
}
},
"range": [
- 79028,
- 79051
+ 62267,
+ 62290
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 42
},
"end": {
- "line": 2160,
+ "line": 1754,
"column": 65
}
}
@@ -175004,16 +140255,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79066,
- 79070
+ 62305,
+ 62309
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 12
},
"end": {
- "line": 2161,
+ "line": 1755,
"column": 16
}
}
@@ -175022,47 +140273,47 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 79071,
- 79085
+ 62310,
+ 62324
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 17
},
"end": {
- "line": 2161,
+ "line": 1755,
"column": 31
}
}
},
"range": [
- 79066,
- 79085
+ 62305,
+ 62324
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 12
},
"end": {
- "line": 2161,
+ "line": 1755,
"column": 31
}
}
},
"prefix": true,
"range": [
- 79065,
- 79085
+ 62304,
+ 62324
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 11
},
"end": {
- "line": 2161,
+ "line": 1755,
"column": 31
}
}
@@ -175076,63 +140327,63 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 79107,
- 79109
+ 62346,
+ 62348
],
"loc": {
"start": {
- "line": 2162,
+ "line": 1756,
"column": 19
},
"end": {
- "line": 2162,
+ "line": 1756,
"column": 21
}
}
},
"range": [
- 79100,
- 79110
+ 62339,
+ 62349
],
"loc": {
"start": {
- "line": 2162,
+ "line": 1756,
"column": 12
},
"end": {
- "line": 2162,
+ "line": 1756,
"column": 22
}
}
}
],
"range": [
- 79086,
- 79120
+ 62325,
+ 62359
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 32
},
"end": {
- "line": 2163,
+ "line": 1757,
"column": 9
}
}
},
"alternate": null,
"range": [
- 79062,
- 79120
+ 62301,
+ 62359
],
"loc": {
"start": {
- "line": 2161,
+ "line": 1755,
"column": 8
},
"end": {
- "line": 2163,
+ "line": 1757,
"column": 9
}
}
@@ -175146,16 +140397,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 79133,
- 79137
+ 62372,
+ 62376
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 12
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 16
}
}
@@ -175169,16 +140420,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79140,
- 79144
+ 62379,
+ 62383
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 19
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 23
}
}
@@ -175187,31 +140438,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 79145,
- 79148
+ 62384,
+ 62387
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 24
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 27
}
}
},
"range": [
- 79140,
- 79148
+ 62379,
+ 62387
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 19
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 27
}
}
@@ -175220,46 +140471,46 @@
"type": "Identifier",
"name": "rows",
"range": [
- 79149,
- 79153
+ 62388,
+ 62392
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 28
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 32
}
}
},
"range": [
- 79140,
- 79153
+ 62379,
+ 62392
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 19
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 32
}
}
},
"range": [
- 79133,
- 79153
+ 62372,
+ 62392
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 12
},
"end": {
- "line": 2164,
+ "line": 1758,
"column": 32
}
}
@@ -175270,16 +140521,16 @@
"type": "Identifier",
"name": "filteredData",
"range": [
- 79167,
- 79179
+ 62406,
+ 62418
],
"loc": {
"start": {
- "line": 2165,
+ "line": 1759,
"column": 12
},
"end": {
- "line": 2165,
+ "line": 1759,
"column": 24
}
}
@@ -175288,31 +140539,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 79182,
- 79184
+ 62421,
+ 62423
],
"loc": {
"start": {
- "line": 2165,
+ "line": 1759,
"column": 27
},
"end": {
- "line": 2165,
+ "line": 1759,
"column": 29
}
}
},
"range": [
- 79167,
- 79184
+ 62406,
+ 62423
],
"loc": {
"start": {
- "line": 2165,
+ "line": 1759,
"column": 12
},
"end": {
- "line": 2165,
+ "line": 1759,
"column": 29
}
}
@@ -175320,16 +140571,16 @@
],
"kind": "let",
"range": [
- 79129,
- 79185
+ 62368,
+ 62424
],
"loc": {
"start": {
- "line": 2164,
+ "line": 1758,
"column": 8
},
"end": {
- "line": 2165,
+ "line": 1759,
"column": 30
}
}
@@ -175340,16 +140591,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 79197,
- 79211
+ 62436,
+ 62450
],
"loc": {
"start": {
- "line": 2166,
+ "line": 1760,
"column": 11
},
"end": {
- "line": 2166,
+ "line": 1760,
"column": 25
}
}
@@ -175366,16 +140617,16 @@
"type": "Identifier",
"name": "headers",
"range": [
- 79230,
- 79237
+ 62469,
+ 62476
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 16
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 23
}
}
@@ -175388,16 +140639,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79240,
- 79244
+ 62479,
+ 62483
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 26
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 30
}
}
@@ -175406,31 +140657,31 @@
"type": "Identifier",
"name": "getHeadersText",
"range": [
- 79245,
- 79259
+ 62484,
+ 62498
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 31
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 45
}
}
},
"range": [
- 79240,
- 79259
+ 62479,
+ 62498
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 26
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 45
}
}
@@ -175440,47 +140691,47 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 79260,
- 79277
+ 62499,
+ 62516
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 46
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 63
}
}
}
],
"range": [
- 79240,
- 79278
+ 62479,
+ 62517
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 26
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 64
}
}
},
"range": [
- 79230,
- 79278
+ 62469,
+ 62517
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 16
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 64
}
}
@@ -175488,16 +140739,16 @@
],
"kind": "let",
"range": [
- 79226,
- 79279
+ 62465,
+ 62518
],
"loc": {
"start": {
- "line": 2167,
+ "line": 1761,
"column": 12
},
"end": {
- "line": 2167,
+ "line": 1761,
"column": 65
}
}
@@ -175513,16 +140764,16 @@
"type": "Identifier",
"name": "filteredData",
"range": [
- 79292,
- 79304
+ 62531,
+ 62543
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 12
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 24
}
}
@@ -175531,31 +140782,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 79305,
- 79309
+ 62544,
+ 62548
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 25
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 29
}
}
},
"range": [
- 79292,
- 79309
+ 62531,
+ 62548
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 12
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 29
}
}
@@ -175572,16 +140823,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79311,
- 79315
+ 62550,
+ 62554
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 31
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 35
}
}
@@ -175590,47 +140841,47 @@
"type": "Identifier",
"name": "getHeadersRowIndex",
"range": [
- 79316,
- 79334
+ 62555,
+ 62573
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 36
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 54
}
}
},
"range": [
- 79311,
- 79334
+ 62550,
+ 62573
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 31
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 54
}
}
},
"arguments": [],
"range": [
- 79311,
- 79336
+ 62550,
+ 62575
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 31
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 56
}
}
@@ -175639,95 +140890,95 @@
"type": "Identifier",
"name": "headers",
"range": [
- 79338,
- 79345
+ 62577,
+ 62584
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 58
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 65
}
}
}
],
"range": [
- 79310,
- 79346
+ 62549,
+ 62585
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 30
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 66
}
}
}
],
"range": [
- 79292,
- 79347
+ 62531,
+ 62586
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 12
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 67
}
}
},
"range": [
- 79292,
- 79348
+ 62531,
+ 62587
],
"loc": {
"start": {
- "line": 2168,
+ "line": 1762,
"column": 12
},
"end": {
- "line": 2168,
+ "line": 1762,
"column": 68
}
}
}
],
"range": [
- 79212,
- 79358
+ 62451,
+ 62597
],
"loc": {
"start": {
- "line": 2166,
+ "line": 1760,
"column": 26
},
"end": {
- "line": 2169,
+ "line": 1763,
"column": 9
}
}
},
"alternate": null,
"range": [
- 79194,
- 79358
+ 62433,
+ 62597
],
"loc": {
"start": {
- "line": 2166,
+ "line": 1760,
"column": 8
},
"end": {
- "line": 2169,
+ "line": 1763,
"column": 9
}
}
@@ -175741,16 +140992,16 @@
"type": "Identifier",
"name": "validRows",
"range": [
- 79372,
- 79381
+ 62611,
+ 62620
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 12
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 21
}
}
@@ -175763,16 +141014,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79384,
- 79388
+ 62623,
+ 62627
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 24
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 28
}
}
@@ -175781,31 +141032,31 @@
"type": "Identifier",
"name": "getValidRows",
"range": [
- 79389,
- 79401
+ 62628,
+ 62640
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 29
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 41
}
}
},
"range": [
- 79384,
- 79401
+ 62623,
+ 62640
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 24
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 41
}
}
@@ -175816,47 +141067,47 @@
"value": true,
"raw": "true",
"range": [
- 79402,
- 79406
+ 62641,
+ 62645
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 42
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 46
}
}
}
],
"range": [
- 79384,
- 79407
+ 62623,
+ 62646
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 24
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 47
}
}
},
"range": [
- 79372,
- 79407
+ 62611,
+ 62646
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 12
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 47
}
}
@@ -175864,16 +141115,16 @@
],
"kind": "let",
"range": [
- 79368,
- 79408
+ 62607,
+ 62647
],
"loc": {
"start": {
- "line": 2171,
+ "line": 1765,
"column": 8
},
"end": {
- "line": 2171,
+ "line": 1765,
"column": 48
}
}
@@ -175889,16 +141140,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 79425,
- 79426
+ 62664,
+ 62665
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 16
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 17
}
}
@@ -175908,31 +141159,31 @@
"value": 0,
"raw": "0",
"range": [
- 79427,
- 79428
+ 62666,
+ 62667
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 18
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 19
}
}
},
"range": [
- 79425,
- 79428
+ 62664,
+ 62667
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 16
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 19
}
}
@@ -175940,16 +141191,16 @@
],
"kind": "let",
"range": [
- 79421,
- 79428
+ 62660,
+ 62667
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 12
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 19
}
}
@@ -175961,16 +141212,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 79430,
- 79431
+ 62669,
+ 62670
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 21
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 22
}
}
@@ -175982,16 +141233,16 @@
"type": "Identifier",
"name": "validRows",
"range": [
- 79432,
- 79441
+ 62671,
+ 62680
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 23
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 32
}
}
@@ -176000,46 +141251,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 79442,
- 79448
+ 62681,
+ 62687
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 33
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 39
}
}
},
"range": [
- 79432,
- 79448
+ 62671,
+ 62687
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 23
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 39
}
}
},
"range": [
- 79430,
- 79448
+ 62669,
+ 62687
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 21
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 39
}
}
@@ -176051,32 +141302,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 79450,
- 79451
+ 62689,
+ 62690
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 41
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 42
}
}
},
"prefix": false,
"range": [
- 79450,
- 79453
+ 62689,
+ 62692
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 41
},
"end": {
- "line": 2172,
+ "line": 1766,
"column": 44
}
}
@@ -176093,16 +141344,16 @@
"type": "Identifier",
"name": "rData",
"range": [
- 79472,
- 79477
+ 62711,
+ 62716
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 16
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 21
}
}
@@ -176119,16 +141370,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79481,
- 79485
+ 62720,
+ 62724
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 25
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 29
}
}
@@ -176137,31 +141388,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 79486,
- 79500
+ 62725,
+ 62739
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 30
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 44
}
}
},
"range": [
- 79481,
- 79500
+ 62720,
+ 62739
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 25
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 44
}
}
@@ -176170,31 +141421,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 79501,
- 79502
+ 62740,
+ 62741
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 45
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 46
}
}
},
"range": [
- 79481,
- 79503
+ 62720,
+ 62742
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 25
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 47
}
}
@@ -176203,47 +141454,47 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 79505,
- 79507
+ 62744,
+ 62746
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 49
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 51
}
}
}
],
"range": [
- 79480,
- 79508
+ 62719,
+ 62747
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 24
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 52
}
}
},
"range": [
- 79472,
- 79508
+ 62711,
+ 62747
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 16
},
"end": {
- "line": 2173,
+ "line": 1767,
"column": 52
}
}
@@ -176254,16 +141505,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 79526,
- 79531
+ 62765,
+ 62770
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 16
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 21
}
}
@@ -176278,16 +141529,16 @@
"type": "Identifier",
"name": "rows",
"range": [
- 79534,
- 79538
+ 62773,
+ 62777
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 24
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 28
}
}
@@ -176301,16 +141552,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79539,
- 79543
+ 62778,
+ 62782
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 29
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 33
}
}
@@ -176319,31 +141570,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 79544,
- 79558
+ 62783,
+ 62797
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 34
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 48
}
}
},
"range": [
- 79539,
- 79558
+ 62778,
+ 62797
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 29
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 48
}
}
@@ -176352,46 +141603,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 79559,
- 79560
+ 62798,
+ 62799
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 49
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 50
}
}
},
"range": [
- 79539,
- 79561
+ 62778,
+ 62800
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 29
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 51
}
}
},
"range": [
- 79534,
- 79562
+ 62773,
+ 62801
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 24
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 52
}
}
@@ -176400,46 +141651,46 @@
"type": "Identifier",
"name": "cells",
"range": [
- 79563,
- 79568
+ 62802,
+ 62807
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 53
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 58
}
}
},
"range": [
- 79534,
- 79568
+ 62773,
+ 62807
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 24
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 58
}
}
},
"range": [
- 79526,
- 79568
+ 62765,
+ 62807
],
"loc": {
"start": {
- "line": 2174,
+ "line": 1768,
"column": 16
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 58
}
}
@@ -176447,16 +141698,16 @@
],
"kind": "let",
"range": [
- 79468,
- 79569
+ 62707,
+ 62808
],
"loc": {
"start": {
- "line": 2173,
+ "line": 1767,
"column": 12
},
"end": {
- "line": 2174,
+ "line": 1768,
"column": 59
}
}
@@ -176472,16 +141723,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 79590,
- 79591
+ 62829,
+ 62830
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 20
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 21
}
}
@@ -176491,31 +141742,31 @@
"value": 0,
"raw": "0",
"range": [
- 79592,
- 79593
+ 62831,
+ 62832
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 22
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 23
}
}
},
"range": [
- 79590,
- 79593
+ 62829,
+ 62832
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 20
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 23
}
}
@@ -176523,16 +141774,16 @@
],
"kind": "let",
"range": [
- 79586,
- 79593
+ 62825,
+ 62832
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 16
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 23
}
}
@@ -176544,16 +141795,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 79595,
- 79596
+ 62834,
+ 62835
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 25
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 26
}
}
@@ -176565,16 +141816,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 79597,
- 79602
+ 62836,
+ 62841
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 27
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 32
}
}
@@ -176583,46 +141834,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 79603,
- 79609
+ 62842,
+ 62848
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 33
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 39
}
}
},
"range": [
- 79597,
- 79609
+ 62836,
+ 62848
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 27
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 39
}
}
},
"range": [
- 79595,
- 79609
+ 62834,
+ 62848
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 25
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 39
}
}
@@ -176634,32 +141885,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 79611,
- 79612
+ 62850,
+ 62851
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 41
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 42
}
}
},
"prefix": false,
"range": [
- 79611,
- 79614
+ 62850,
+ 62853
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 41
},
"end": {
- "line": 2175,
+ "line": 1769,
"column": 44
}
}
@@ -176676,16 +141927,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 79636,
- 79653
+ 62875,
+ 62892
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 19
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 36
}
}
@@ -176698,16 +141949,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79657,
- 79661
+ 62896,
+ 62900
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 40
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 44
}
}
@@ -176716,31 +141967,31 @@
"type": "Identifier",
"name": "hasExtension",
"range": [
- 79662,
- 79674
+ 62901,
+ 62913
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 45
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 57
}
}
},
"range": [
- 79657,
- 79674
+ 62896,
+ 62913
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 40
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 57
}
}
@@ -176751,47 +142002,47 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 79675,
- 79691
+ 62914,
+ 62930
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 58
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 74
}
}
}
],
"range": [
- 79657,
- 79692
+ 62896,
+ 62931
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 40
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 75
}
}
},
"range": [
- 79636,
- 79692
+ 62875,
+ 62931
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 19
},
"end": {
- "line": 2176,
+ "line": 1770,
"column": 75
}
}
@@ -176814,16 +142065,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79718,
- 79722
+ 62957,
+ 62961
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 23
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 27
}
}
@@ -176832,31 +142083,31 @@
"type": "Identifier",
"name": "extension",
"range": [
- 79723,
- 79732
+ 62962,
+ 62971
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 28
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 37
}
}
},
"range": [
- 79718,
- 79732
+ 62957,
+ 62971
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 23
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 37
}
}
@@ -176867,32 +142118,32 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 79733,
- 79749
+ 62972,
+ 62988
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 38
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 54
}
}
}
],
"range": [
- 79718,
- 79750
+ 62957,
+ 62989
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 23
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 55
}
}
@@ -176901,31 +142152,31 @@
"type": "Identifier",
"name": "isColHidden",
"range": [
- 79751,
- 79762
+ 62990,
+ 63001
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 56
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 67
}
}
},
"range": [
- 79718,
- 79762
+ 62957,
+ 63001
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 23
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 67
}
}
@@ -176935,32 +142186,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 79763,
- 79764
+ 63002,
+ 63003
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 68
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 69
}
}
}
],
"range": [
- 79718,
- 79765
+ 62957,
+ 63004
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 23
},
"end": {
- "line": 2177,
+ "line": 1771,
"column": 70
}
}
@@ -176972,80 +142223,80 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 79792,
- 79801
+ 63031,
+ 63040
],
"loc": {
"start": {
- "line": 2178,
+ "line": 1772,
"column": 24
},
"end": {
- "line": 2178,
+ "line": 1772,
"column": 33
}
}
}
],
"range": [
- 79766,
- 79823
+ 63005,
+ 63062
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 71
},
"end": {
- "line": 2179,
+ "line": 1773,
"column": 21
}
}
},
"alternate": null,
"range": [
- 79715,
- 79823
+ 62954,
+ 63062
],
"loc": {
"start": {
- "line": 2177,
+ "line": 1771,
"column": 20
},
"end": {
- "line": 2179,
+ "line": 1773,
"column": 21
}
}
}
],
"range": [
- 79693,
- 79841
+ 62932,
+ 63080
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 76
},
"end": {
- "line": 2180,
+ "line": 1774,
"column": 17
}
}
},
"alternate": null,
"range": [
- 79633,
- 79841
+ 62872,
+ 63080
],
"loc": {
"start": {
- "line": 2176,
+ "line": 1770,
"column": 16
},
"end": {
- "line": 2180,
+ "line": 1774,
"column": 17
}
}
@@ -177059,16 +142310,16 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 79862,
- 79870
+ 63101,
+ 63109
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 20
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 28
}
}
@@ -177081,16 +142332,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 79873,
- 79877
+ 63112,
+ 63116
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 31
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 35
}
}
@@ -177099,31 +142350,31 @@
"type": "Identifier",
"name": "getCellData",
"range": [
- 79878,
- 79889
+ 63117,
+ 63128
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 36
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 47
}
}
},
"range": [
- 79873,
- 79889
+ 63112,
+ 63128
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 31
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 47
}
}
@@ -177136,16 +142387,16 @@
"type": "Identifier",
"name": "cells",
"range": [
- 79890,
- 79895
+ 63129,
+ 63134
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 48
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 53
}
}
@@ -177154,62 +142405,62 @@
"type": "Identifier",
"name": "k",
"range": [
- 79896,
- 79897
+ 63135,
+ 63136
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 54
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 55
}
}
},
"range": [
- 79890,
- 79898
+ 63129,
+ 63137
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 48
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 56
}
}
}
],
"range": [
- 79873,
- 79899
+ 63112,
+ 63138
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 31
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 57
}
}
},
"range": [
- 79862,
- 79899
+ 63101,
+ 63138
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 20
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 57
}
}
@@ -177217,16 +142468,16 @@
],
"kind": "let",
"range": [
- 79858,
- 79900
+ 63097,
+ 63139
],
"loc": {
"start": {
- "line": 2181,
+ "line": 1775,
"column": 16
},
"end": {
- "line": 2181,
+ "line": 1775,
"column": 58
}
}
@@ -177245,16 +142496,16 @@
"type": "Identifier",
"name": "rData",
"range": [
- 79917,
- 79922
+ 63156,
+ 63161
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 16
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 21
}
}
@@ -177264,31 +142515,31 @@
"value": 1,
"raw": "1",
"range": [
- 79923,
- 79924
+ 63162,
+ 63163
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 22
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 23
}
}
},
"range": [
- 79917,
- 79925
+ 63156,
+ 63164
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 16
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 24
}
}
@@ -177297,31 +142548,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 79926,
- 79930
+ 63165,
+ 63169
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 25
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 29
}
}
},
"range": [
- 79917,
- 79930
+ 63156,
+ 63169
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 16
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 29
}
}
@@ -177331,78 +142582,78 @@
"type": "Identifier",
"name": "cellData",
"range": [
- 79931,
- 79939
+ 63170,
+ 63178
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 30
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 38
}
}
}
],
"range": [
- 79917,
- 79940
+ 63156,
+ 63179
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 16
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 39
}
}
},
"range": [
- 79917,
- 79941
+ 63156,
+ 63180
],
"loc": {
"start": {
- "line": 2182,
+ "line": 1776,
"column": 16
},
"end": {
- "line": 2182,
+ "line": 1776,
"column": 40
}
}
}
],
"range": [
- 79615,
- 79955
+ 62854,
+ 63194
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 45
},
"end": {
- "line": 2183,
+ "line": 1777,
"column": 13
}
}
},
"range": [
- 79582,
- 79955
+ 62821,
+ 63194
],
"loc": {
"start": {
- "line": 2175,
+ "line": 1769,
"column": 12
},
"end": {
- "line": 2183,
+ "line": 1777,
"column": 13
}
}
@@ -177418,16 +142669,16 @@
"type": "Identifier",
"name": "filteredData",
"range": [
- 79968,
- 79980
+ 63207,
+ 63219
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 12
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 24
}
}
@@ -177436,31 +142687,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 79981,
- 79985
+ 63220,
+ 63224
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 25
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 29
}
}
},
"range": [
- 79968,
- 79985
+ 63207,
+ 63224
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 12
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 29
}
}
@@ -177470,78 +142721,78 @@
"type": "Identifier",
"name": "rData",
"range": [
- 79986,
- 79991
+ 63225,
+ 63230
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 30
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 35
}
}
}
],
"range": [
- 79968,
- 79992
+ 63207,
+ 63231
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 12
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 36
}
}
},
"range": [
- 79968,
- 79993
+ 63207,
+ 63232
],
"loc": {
"start": {
- "line": 2184,
+ "line": 1778,
"column": 12
},
"end": {
- "line": 2184,
+ "line": 1778,
"column": 37
}
}
}
],
"range": [
- 79454,
- 80003
+ 62693,
+ 63242
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 45
},
"end": {
- "line": 2185,
+ "line": 1779,
"column": 9
}
}
},
"range": [
- 79417,
- 80003
+ 62656,
+ 63242
],
"loc": {
"start": {
- "line": 2172,
+ "line": 1766,
"column": 8
},
"end": {
- "line": 2185,
+ "line": 1779,
"column": 9
}
}
@@ -177552,47 +142803,47 @@
"type": "Identifier",
"name": "filteredData",
"range": [
- 80019,
- 80031
+ 63258,
+ 63270
],
"loc": {
"start": {
- "line": 2186,
+ "line": 1780,
"column": 15
},
"end": {
- "line": 2186,
+ "line": 1780,
"column": 27
}
}
},
"range": [
- 80012,
- 80032
+ 63251,
+ 63271
],
"loc": {
"start": {
- "line": 2186,
+ "line": 1780,
"column": 8
},
"end": {
- "line": 2186,
+ "line": 1780,
"column": 28
}
}
}
],
"range": [
- 79052,
- 80038
+ 62291,
+ 63277
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 66
},
"end": {
- "line": 2187,
+ "line": 1781,
"column": 5
}
}
@@ -177600,16 +142851,16 @@
"generator": false,
"expression": false,
"range": [
- 79005,
- 80038
+ 62244,
+ 63277
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 19
},
"end": {
- "line": 2187,
+ "line": 1781,
"column": 5
}
}
@@ -177617,16 +142868,16 @@
"kind": "method",
"computed": false,
"range": [
- 78990,
- 80038
+ 62229,
+ 63277
],
"loc": {
"start": {
- "line": 2160,
+ "line": 1754,
"column": 4
},
"end": {
- "line": 2187,
+ "line": 1781,
"column": 5
}
},
@@ -177635,16 +142886,16 @@
"type": "Block",
"value": "*\n * Return the filtered data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 78578,
- 78985
+ 61817,
+ 62224
],
"loc": {
"start": {
- "line": 2148,
+ "line": 1742,
"column": 4
},
"end": {
- "line": 2159,
+ "line": 1753,
"column": 7
}
}
@@ -177655,16 +142906,16 @@
"type": "Block",
"value": "*\n * Return the filtered data for a given column index\n * @param {Number} colIndex Colmun's index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @return {Array} Flat list of values ['val0','val1','val2'...]\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 80044,
- 80375
+ 63283,
+ 63614
],
"loc": {
"start": {
- "line": 2189,
+ "line": 1783,
"column": 4
},
"end": {
- "line": 2196,
+ "line": 1790,
"column": 7
}
}
@@ -177678,16 +142929,16 @@
"type": "Identifier",
"name": "getFilteredDataCol",
"range": [
- 80380,
- 80398
+ 63619,
+ 63637
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 4
},
"end": {
- "line": 2197,
+ "line": 1791,
"column": 22
}
}
@@ -177700,16 +142951,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 80399,
- 80407
+ 63638,
+ 63646
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 23
},
"end": {
- "line": 2197,
+ "line": 1791,
"column": 31
}
}
@@ -177720,16 +142971,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 80409,
- 80423
+ 63648,
+ 63662
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 33
},
"end": {
- "line": 2197,
+ "line": 1791,
"column": 47
}
}
@@ -177739,31 +142990,31 @@
"value": false,
"raw": "false",
"range": [
- 80424,
- 80429
+ 63663,
+ 63668
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 48
},
"end": {
- "line": 2197,
+ "line": 1791,
"column": 53
}
}
},
"range": [
- 80409,
- 80429
+ 63648,
+ 63668
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 33
},
"end": {
- "line": 2197,
+ "line": 1791,
"column": 53
}
}
@@ -177783,16 +143034,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 80443,
- 80448
+ 63682,
+ 63687
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 11
},
"end": {
- "line": 2198,
+ "line": 1792,
"column": 16
}
}
@@ -177801,31 +143052,31 @@
"type": "Identifier",
"name": "isUndef",
"range": [
- 80449,
- 80456
+ 63688,
+ 63695
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 17
},
"end": {
- "line": 2198,
+ "line": 1792,
"column": 24
}
}
},
"range": [
- 80443,
- 80456
+ 63682,
+ 63695
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 11
},
"end": {
- "line": 2198,
+ "line": 1792,
"column": 24
}
}
@@ -177835,32 +143086,32 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 80457,
- 80465
+ 63696,
+ 63704
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 25
},
"end": {
- "line": 2198,
+ "line": 1792,
"column": 33
}
}
}
],
"range": [
- 80443,
- 80466
+ 63682,
+ 63705
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 11
},
"end": {
- "line": 2198,
+ "line": 1792,
"column": 34
}
}
@@ -177874,63 +143125,63 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 80488,
- 80490
+ 63727,
+ 63729
],
"loc": {
"start": {
- "line": 2199,
+ "line": 1793,
"column": 19
},
"end": {
- "line": 2199,
+ "line": 1793,
"column": 21
}
}
},
"range": [
- 80481,
- 80491
+ 63720,
+ 63730
],
"loc": {
"start": {
- "line": 2199,
+ "line": 1793,
"column": 12
},
"end": {
- "line": 2199,
+ "line": 1793,
"column": 22
}
}
}
],
"range": [
- 80467,
- 80501
+ 63706,
+ 63740
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 35
},
"end": {
- "line": 2200,
+ "line": 1794,
"column": 9
}
}
},
"alternate": null,
"range": [
- 80440,
- 80501
+ 63679,
+ 63740
],
"loc": {
"start": {
- "line": 2198,
+ "line": 1792,
"column": 8
},
"end": {
- "line": 2200,
+ "line": 1794,
"column": 9
}
}
@@ -177944,16 +143195,16 @@
"type": "Identifier",
"name": "data",
"range": [
- 80514,
- 80518
+ 63753,
+ 63757
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 12
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 16
}
}
@@ -177966,16 +143217,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 80522,
- 80526
+ 63761,
+ 63765
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 20
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 24
}
}
@@ -177984,62 +143235,62 @@
"type": "Identifier",
"name": "getFilteredData",
"range": [
- 80527,
- 80542
+ 63766,
+ 63781
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 25
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 40
}
}
},
"range": [
- 80522,
- 80542
+ 63761,
+ 63781
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 20
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 40
}
}
},
"arguments": [],
"range": [
- 80522,
- 80544
+ 63761,
+ 63783
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 20
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 42
}
}
},
"range": [
- 80514,
- 80544
+ 63753,
+ 63783
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 12
},
"end": {
- "line": 2201,
+ "line": 1795,
"column": 42
}
}
@@ -178050,16 +143301,16 @@
"type": "Identifier",
"name": "colData",
"range": [
- 80558,
- 80565
+ 63797,
+ 63804
],
"loc": {
"start": {
- "line": 2202,
+ "line": 1796,
"column": 12
},
"end": {
- "line": 2202,
+ "line": 1796,
"column": 19
}
}
@@ -178068,31 +143319,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 80568,
- 80570
+ 63807,
+ 63809
],
"loc": {
"start": {
- "line": 2202,
+ "line": 1796,
"column": 22
},
"end": {
- "line": 2202,
+ "line": 1796,
"column": 24
}
}
},
"range": [
- 80558,
- 80570
+ 63797,
+ 63809
],
"loc": {
"start": {
- "line": 2202,
+ "line": 1796,
"column": 12
},
"end": {
- "line": 2202,
+ "line": 1796,
"column": 24
}
}
@@ -178100,16 +143351,16 @@
],
"kind": "let",
"range": [
- 80510,
- 80571
+ 63749,
+ 63810
],
"loc": {
"start": {
- "line": 2201,
+ "line": 1795,
"column": 8
},
"end": {
- "line": 2202,
+ "line": 1796,
"column": 25
}
}
@@ -178120,16 +143371,16 @@
"type": "Identifier",
"name": "includeHeaders",
"range": [
- 80583,
- 80597
+ 63822,
+ 63836
],
"loc": {
"start": {
- "line": 2203,
+ "line": 1797,
"column": 11
},
"end": {
- "line": 2203,
+ "line": 1797,
"column": 25
}
}
@@ -178148,16 +143399,16 @@
"type": "Identifier",
"name": "colData",
"range": [
- 80612,
- 80619
+ 63851,
+ 63858
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 12
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 19
}
}
@@ -178166,31 +143417,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 80620,
- 80624
+ 63859,
+ 63863
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 20
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 24
}
}
},
"range": [
- 80612,
- 80624
+ 63851,
+ 63863
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 12
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 24
}
}
@@ -178207,16 +143458,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 80625,
- 80629
+ 63864,
+ 63868
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 25
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 29
}
}
@@ -178225,47 +143476,47 @@
"type": "Identifier",
"name": "getHeadersText",
"range": [
- 80630,
- 80644
+ 63869,
+ 63883
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 30
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 44
}
}
},
"range": [
- 80625,
- 80644
+ 63864,
+ 63883
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 25
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 44
}
}
},
"arguments": [],
"range": [
- 80625,
- 80646
+ 63864,
+ 63885
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 25
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 46
}
}
@@ -178274,94 +143525,94 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 80647,
- 80655
+ 63886,
+ 63894
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 47
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 55
}
}
},
"range": [
- 80625,
- 80656
+ 63864,
+ 63895
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 25
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 56
}
}
}
],
"range": [
- 80612,
- 80657
+ 63851,
+ 63896
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 12
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 57
}
}
},
"range": [
- 80612,
- 80658
+ 63851,
+ 63897
],
"loc": {
"start": {
- "line": 2204,
+ "line": 1798,
"column": 12
},
"end": {
- "line": 2204,
+ "line": 1798,
"column": 58
}
}
}
],
"range": [
- 80598,
- 80668
+ 63837,
+ 63907
],
"loc": {
"start": {
- "line": 2203,
+ "line": 1797,
"column": 26
},
"end": {
- "line": 2205,
+ "line": 1799,
"column": 9
}
}
},
"alternate": null,
"range": [
- 80580,
- 80668
+ 63819,
+ 63907
],
"loc": {
"start": {
- "line": 2203,
+ "line": 1797,
"column": 8
},
"end": {
- "line": 2205,
+ "line": 1799,
"column": 9
}
}
@@ -178377,16 +143628,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 80685,
- 80686
+ 63924,
+ 63925
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 16
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 17
}
}
@@ -178396,31 +143647,31 @@
"value": 0,
"raw": "0",
"range": [
- 80687,
- 80688
+ 63926,
+ 63927
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 18
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 19
}
}
},
"range": [
- 80685,
- 80688
+ 63924,
+ 63927
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 16
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 19
}
}
@@ -178431,16 +143682,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 80690,
- 80693
+ 63929,
+ 63932
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 21
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 24
}
}
@@ -178452,16 +143703,16 @@
"type": "Identifier",
"name": "data",
"range": [
- 80694,
- 80698
+ 63933,
+ 63937
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 25
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 29
}
}
@@ -178470,46 +143721,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 80699,
- 80705
+ 63938,
+ 63944
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 30
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 36
}
}
},
"range": [
- 80694,
- 80705
+ 63933,
+ 63944
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 25
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 36
}
}
},
"range": [
- 80690,
- 80705
+ 63929,
+ 63944
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 21
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 36
}
}
@@ -178517,16 +143768,16 @@
],
"kind": "let",
"range": [
- 80681,
- 80705
+ 63920,
+ 63944
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 12
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 36
}
}
@@ -178538,16 +143789,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 80707,
- 80708
+ 63946,
+ 63947
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 38
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 39
}
}
@@ -178556,31 +143807,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 80709,
- 80712
+ 63948,
+ 63951
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 40
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 43
}
}
},
"range": [
- 80707,
- 80712
+ 63946,
+ 63951
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 38
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 43
}
}
@@ -178592,32 +143843,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 80714,
- 80715
+ 63953,
+ 63954
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 45
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 46
}
}
},
"prefix": false,
"range": [
- 80714,
- 80717
+ 63953,
+ 63956
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 45
},
"end": {
- "line": 2206,
+ "line": 1800,
"column": 48
}
}
@@ -178634,16 +143885,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 80736,
- 80737
+ 63975,
+ 63976
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 16
},
"end": {
- "line": 2207,
+ "line": 1801,
"column": 17
}
}
@@ -178655,16 +143906,16 @@
"type": "Identifier",
"name": "data",
"range": [
- 80740,
- 80744
+ 63979,
+ 63983
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 20
},
"end": {
- "line": 2207,
+ "line": 1801,
"column": 24
}
}
@@ -178673,46 +143924,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 80745,
- 80746
+ 63984,
+ 63985
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 25
},
"end": {
- "line": 2207,
+ "line": 1801,
"column": 26
}
}
},
"range": [
- 80740,
- 80747
+ 63979,
+ 63986
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 20
},
"end": {
- "line": 2207,
+ "line": 1801,
"column": 27
}
}
},
"range": [
- 80736,
- 80747
+ 63975,
+ 63986
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 16
},
"end": {
- "line": 2207,
+ "line": 1801,
"column": 27
}
}
@@ -178723,16 +143974,16 @@
"type": "Identifier",
"name": "d",
"range": [
- 80810,
- 80811
+ 64049,
+ 64050
],
"loc": {
"start": {
- "line": 2209,
+ "line": 1803,
"column": 16
},
"end": {
- "line": 2209,
+ "line": 1803,
"column": 17
}
}
@@ -178744,16 +143995,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 80814,
- 80815
+ 64053,
+ 64054
],
"loc": {
"start": {
- "line": 2209,
+ "line": 1803,
"column": 20
},
"end": {
- "line": 2209,
+ "line": 1803,
"column": 21
}
}
@@ -178763,46 +144014,46 @@
"value": 1,
"raw": "1",
"range": [
- 80816,
- 80817
+ 64055,
+ 64056
],
"loc": {
"start": {
- "line": 2209,
+ "line": 1803,
"column": 22
},
"end": {
- "line": 2209,
+ "line": 1803,
"column": 23
}
}
},
"range": [
- 80814,
- 80818
+ 64053,
+ 64057
],
"loc": {
"start": {
- "line": 2209,
+ "line": 1803,
"column": 20
},
"end": {
- "line": 2209,
+ "line": 1803,
"column": 24
}
}
},
"range": [
- 80810,
- 80818
+ 64049,
+ 64057
],
"loc": {
"start": {
- "line": 2209,
+ "line": 1803,
"column": 16
},
"end": {
- "line": 2209,
+ "line": 1803,
"column": 24
}
},
@@ -178811,16 +144062,16 @@
"type": "Line",
"value": "cols values of current row",
"range": [
- 80765,
- 80793
+ 64004,
+ 64032
],
"loc": {
"start": {
- "line": 2208,
+ "line": 1802,
"column": 16
},
"end": {
- "line": 2208,
+ "line": 1802,
"column": 44
}
}
@@ -178833,16 +144084,16 @@
"type": "Identifier",
"name": "c",
"range": [
- 80878,
- 80879
+ 64117,
+ 64118
],
"loc": {
"start": {
- "line": 2211,
+ "line": 1805,
"column": 16
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 17
}
}
@@ -178854,16 +144105,16 @@
"type": "Identifier",
"name": "d",
"range": [
- 80882,
- 80883
+ 64121,
+ 64122
],
"loc": {
"start": {
- "line": 2211,
+ "line": 1805,
"column": 20
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 21
}
}
@@ -178872,46 +144123,46 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 80884,
- 80892
+ 64123,
+ 64131
],
"loc": {
"start": {
- "line": 2211,
+ "line": 1805,
"column": 22
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 30
}
}
},
"range": [
- 80882,
- 80893
+ 64121,
+ 64132
],
"loc": {
"start": {
- "line": 2211,
+ "line": 1805,
"column": 20
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 31
}
}
},
"range": [
- 80878,
- 80893
+ 64117,
+ 64132
],
"loc": {
"start": {
- "line": 2211,
+ "line": 1805,
"column": 16
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 31
}
},
@@ -178920,16 +144171,16 @@
"type": "Line",
"value": "data of searched column",
"range": [
- 80836,
- 80861
+ 64075,
+ 64100
],
"loc": {
"start": {
- "line": 2210,
+ "line": 1804,
"column": 16
},
"end": {
- "line": 2210,
+ "line": 1804,
"column": 41
}
}
@@ -178939,16 +144190,16 @@
],
"kind": "let",
"range": [
- 80732,
- 80894
+ 63971,
+ 64133
],
"loc": {
"start": {
- "line": 2207,
+ "line": 1801,
"column": 12
},
"end": {
- "line": 2211,
+ "line": 1805,
"column": 32
}
}
@@ -178964,16 +144215,16 @@
"type": "Identifier",
"name": "colData",
"range": [
- 80907,
- 80914
+ 64146,
+ 64153
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 12
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 19
}
}
@@ -178982,31 +144233,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 80915,
- 80919
+ 64154,
+ 64158
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 20
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 24
}
}
},
"range": [
- 80907,
- 80919
+ 64146,
+ 64158
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 12
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 24
}
}
@@ -179016,78 +144267,78 @@
"type": "Identifier",
"name": "c",
"range": [
- 80920,
- 80921
+ 64159,
+ 64160
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 25
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 26
}
}
}
],
"range": [
- 80907,
- 80922
+ 64146,
+ 64161
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 12
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 27
}
}
},
"range": [
- 80907,
- 80923
+ 64146,
+ 64162
],
"loc": {
"start": {
- "line": 2212,
+ "line": 1806,
"column": 12
},
"end": {
- "line": 2212,
+ "line": 1806,
"column": 28
}
}
}
],
"range": [
- 80718,
- 80933
+ 63957,
+ 64172
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 49
},
"end": {
- "line": 2213,
+ "line": 1807,
"column": 9
}
}
},
"range": [
- 80677,
- 80933
+ 63916,
+ 64172
],
"loc": {
"start": {
- "line": 2206,
+ "line": 1800,
"column": 8
},
"end": {
- "line": 2213,
+ "line": 1807,
"column": 9
}
}
@@ -179098,47 +144349,47 @@
"type": "Identifier",
"name": "colData",
"range": [
- 80949,
- 80956
+ 64188,
+ 64195
],
"loc": {
"start": {
- "line": 2214,
+ "line": 1808,
"column": 15
},
"end": {
- "line": 2214,
+ "line": 1808,
"column": 22
}
}
},
"range": [
- 80942,
- 80957
+ 64181,
+ 64196
],
"loc": {
"start": {
- "line": 2214,
+ "line": 1808,
"column": 8
},
"end": {
- "line": 2214,
+ "line": 1808,
"column": 23
}
}
}
],
"range": [
- 80430,
- 80963
+ 63669,
+ 64202
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 54
},
"end": {
- "line": 2215,
+ "line": 1809,
"column": 5
}
}
@@ -179146,16 +144397,16 @@
"generator": false,
"expression": false,
"range": [
- 80398,
- 80963
+ 63637,
+ 64202
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 22
},
"end": {
- "line": 2215,
+ "line": 1809,
"column": 5
}
}
@@ -179163,16 +144414,16 @@
"kind": "method",
"computed": false,
"range": [
- 80380,
- 80963
+ 63619,
+ 64202
],
"loc": {
"start": {
- "line": 2197,
+ "line": 1791,
"column": 4
},
"end": {
- "line": 2215,
+ "line": 1809,
"column": 5
}
},
@@ -179181,16 +144432,16 @@
"type": "Block",
"value": "*\n * Return the filtered data for a given column index\n * @param {Number} colIndex Colmun's index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @return {Array} Flat list of values ['val0','val1','val2'...]\n *\n * TODO: provide an API returning data in JSON format\n ",
"range": [
- 80044,
- 80375
+ 63283,
+ 63614
],
"loc": {
"start": {
- "line": 2189,
+ "line": 1783,
"column": 4
},
"end": {
- "line": 2196,
+ "line": 1790,
"column": 7
}
}
@@ -179201,16 +144452,16 @@
"type": "Block",
"value": "*\n * Get the display value of a row\n * @param {RowElement} DOM element of the row\n * @return {String} Usually 'none' or ''\n ",
"range": [
- 80969,
- 81118
+ 64208,
+ 64357
],
"loc": {
"start": {
- "line": 2217,
+ "line": 1811,
"column": 4
},
"end": {
- "line": 2221,
+ "line": 1815,
"column": 7
}
}
@@ -179224,16 +144475,16 @@
"type": "Identifier",
"name": "getRowDisplay",
"range": [
- 81123,
- 81136
+ 64362,
+ 64375
],
"loc": {
"start": {
- "line": 2222,
+ "line": 1816,
"column": 4
},
"end": {
- "line": 2222,
+ "line": 1816,
"column": 17
}
}
@@ -179246,16 +144497,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 81137,
- 81140
+ 64376,
+ 64379
],
"loc": {
"start": {
- "line": 2222,
+ "line": 1816,
"column": 18
},
"end": {
- "line": 2222,
+ "line": 1816,
"column": 21
}
}
@@ -179278,16 +144529,16 @@
"type": "Identifier",
"name": "Types",
"range": [
- 81155,
- 81160
+ 64394,
+ 64399
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 12
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 17
}
}
@@ -179296,31 +144547,31 @@
"type": "Identifier",
"name": "isObj",
"range": [
- 81161,
- 81166
+ 64400,
+ 64405
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 18
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 23
}
}
},
"range": [
- 81155,
- 81166
+ 64394,
+ 64405
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 12
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 23
}
}
@@ -179330,48 +144581,48 @@
"type": "Identifier",
"name": "row",
"range": [
- 81167,
- 81170
+ 64406,
+ 64409
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 24
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 27
}
}
}
],
"range": [
- 81155,
- 81171
+ 64394,
+ 64410
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 12
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 28
}
}
},
"prefix": true,
"range": [
- 81154,
- 81171
+ 64393,
+ 64410
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 11
},
"end": {
- "line": 2223,
+ "line": 1817,
"column": 28
}
}
@@ -179386,63 +144637,63 @@
"value": null,
"raw": "null",
"range": [
- 81193,
- 81197
+ 64432,
+ 64436
],
"loc": {
"start": {
- "line": 2224,
+ "line": 1818,
"column": 19
},
"end": {
- "line": 2224,
+ "line": 1818,
"column": 23
}
}
},
"range": [
- 81186,
- 81198
+ 64425,
+ 64437
],
"loc": {
"start": {
- "line": 2224,
+ "line": 1818,
"column": 12
},
"end": {
- "line": 2224,
+ "line": 1818,
"column": 24
}
}
}
],
"range": [
- 81172,
- 81208
+ 64411,
+ 64447
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 29
},
"end": {
- "line": 2225,
+ "line": 1819,
"column": 9
}
}
},
"alternate": null,
"range": [
- 81151,
- 81208
+ 64390,
+ 64447
],
"loc": {
"start": {
- "line": 2223,
+ "line": 1817,
"column": 8
},
"end": {
- "line": 2225,
+ "line": 1819,
"column": 9
}
}
@@ -179459,16 +144710,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 81224,
- 81227
+ 64463,
+ 64466
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 15
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 18
}
}
@@ -179477,31 +144728,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 81228,
- 81233
+ 64467,
+ 64472
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 19
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 24
}
}
},
"range": [
- 81224,
- 81233
+ 64463,
+ 64472
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 15
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 24
}
}
@@ -179510,62 +144761,62 @@
"type": "Identifier",
"name": "display",
"range": [
- 81234,
- 81241
+ 64473,
+ 64480
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 25
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 32
}
}
},
"range": [
- 81224,
- 81241
+ 64463,
+ 64480
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 15
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 32
}
}
},
"range": [
- 81217,
- 81242
+ 64456,
+ 64481
],
"loc": {
"start": {
- "line": 2226,
+ "line": 1820,
"column": 8
},
"end": {
- "line": 2226,
+ "line": 1820,
"column": 33
}
}
}
],
"range": [
- 81141,
- 81248
+ 64380,
+ 64487
],
"loc": {
"start": {
- "line": 2222,
+ "line": 1816,
"column": 22
},
"end": {
- "line": 2227,
+ "line": 1821,
"column": 5
}
}
@@ -179573,16 +144824,16 @@
"generator": false,
"expression": false,
"range": [
- 81136,
- 81248
+ 64375,
+ 64487
],
"loc": {
"start": {
- "line": 2222,
+ "line": 1816,
"column": 17
},
"end": {
- "line": 2227,
+ "line": 1821,
"column": 5
}
}
@@ -179590,16 +144841,16 @@
"kind": "method",
"computed": false,
"range": [
- 81123,
- 81248
+ 64362,
+ 64487
],
"loc": {
"start": {
- "line": 2222,
+ "line": 1816,
"column": 4
},
"end": {
- "line": 2227,
+ "line": 1821,
"column": 5
}
},
@@ -179608,16 +144859,16 @@
"type": "Block",
"value": "*\n * Get the display value of a row\n * @param {RowElement} DOM element of the row\n * @return {String} Usually 'none' or ''\n ",
"range": [
- 80969,
- 81118
+ 64208,
+ 64357
],
"loc": {
"start": {
- "line": 2217,
+ "line": 1811,
"column": 4
},
"end": {
- "line": 2221,
+ "line": 1815,
"column": 7
}
}
@@ -179628,16 +144879,16 @@
"type": "Block",
"value": "*\n * Validate/invalidate row by setting the 'validRow' attribute on the row\n * @param {Number} rowIndex Index of the row\n * @param {Boolean} isValid\n ",
"range": [
- 81254,
- 81427
+ 64493,
+ 64666
],
"loc": {
"start": {
- "line": 2229,
+ "line": 1823,
"column": 4
},
"end": {
- "line": 2233,
+ "line": 1827,
"column": 7
}
}
@@ -179651,16 +144902,16 @@
"type": "Identifier",
"name": "validateRow",
"range": [
- 81432,
- 81443
+ 64671,
+ 64682
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 4
},
"end": {
- "line": 2234,
+ "line": 1828,
"column": 15
}
}
@@ -179673,16 +144924,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 81444,
- 81452
+ 64683,
+ 64691
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 16
},
"end": {
- "line": 2234,
+ "line": 1828,
"column": 24
}
}
@@ -179691,16 +144942,16 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 81454,
- 81461
+ 64693,
+ 64700
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 26
},
"end": {
- "line": 2234,
+ "line": 1828,
"column": 33
}
}
@@ -179718,16 +144969,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 81476,
- 81479
+ 64715,
+ 64718
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 12
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 15
}
}
@@ -179744,16 +144995,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 81482,
- 81486
+ 64721,
+ 64725
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 18
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 22
}
}
@@ -179762,31 +145013,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 81487,
- 81490
+ 64726,
+ 64729
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 23
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 26
}
}
},
"range": [
- 81482,
- 81490
+ 64721,
+ 64729
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 18
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 26
}
}
@@ -179795,31 +145046,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 81491,
- 81495
+ 64730,
+ 64734
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 27
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 31
}
}
},
"range": [
- 81482,
- 81495
+ 64721,
+ 64734
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 18
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 31
}
}
@@ -179828,46 +145079,46 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 81496,
- 81504
+ 64735,
+ 64743
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 32
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 40
}
}
},
"range": [
- 81482,
- 81505
+ 64721,
+ 64744
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 18
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 41
}
}
},
"range": [
- 81476,
- 81505
+ 64715,
+ 64744
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 12
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 41
}
}
@@ -179875,16 +145126,16 @@
],
"kind": "let",
"range": [
- 81472,
- 81506
+ 64711,
+ 64745
],
"loc": {
"start": {
- "line": 2235,
+ "line": 1829,
"column": 8
},
"end": {
- "line": 2235,
+ "line": 1829,
"column": 42
}
}
@@ -179901,32 +145152,32 @@
"type": "Identifier",
"name": "row",
"range": [
- 81519,
- 81522
+ 64758,
+ 64761
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 12
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 15
}
}
},
"prefix": true,
"range": [
- 81518,
- 81522
+ 64757,
+ 64761
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 11
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 15
}
}
@@ -179941,32 +145192,32 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 81533,
- 81540
+ 64772,
+ 64779
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 26
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 33
}
}
},
"prefix": true,
"range": [
- 81526,
- 81540
+ 64765,
+ 64779
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 19
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 33
}
}
@@ -179976,46 +145227,46 @@
"value": "boolean",
"raw": "'boolean'",
"range": [
- 81545,
- 81554
+ 64784,
+ 64793
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 38
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 47
}
}
},
"range": [
- 81526,
- 81554
+ 64765,
+ 64793
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 19
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 47
}
}
},
"range": [
- 81518,
- 81554
+ 64757,
+ 64793
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 11
},
"end": {
- "line": 2236,
+ "line": 1830,
"column": 47
}
}
@@ -180027,48 +145278,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 81569,
- 81576
+ 64808,
+ 64815
],
"loc": {
"start": {
- "line": 2237,
+ "line": 1831,
"column": 12
},
"end": {
- "line": 2237,
+ "line": 1831,
"column": 19
}
}
}
],
"range": [
- 81555,
- 81586
+ 64794,
+ 64825
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 48
},
"end": {
- "line": 2238,
+ "line": 1832,
"column": 9
}
}
},
"alternate": null,
"range": [
- 81515,
- 81586
+ 64754,
+ 64825
],
"loc": {
"start": {
- "line": 2236,
+ "line": 1830,
"column": 8
},
"end": {
- "line": 2238,
+ "line": 1832,
"column": 9
}
},
@@ -180077,16 +145328,16 @@
"type": "Line",
"value": " always visible rows are valid",
"range": [
- 81596,
- 81628
+ 64835,
+ 64867
],
"loc": {
"start": {
- "line": 2240,
+ "line": 1834,
"column": 8
},
"end": {
- "line": 2240,
+ "line": 1834,
"column": 40
}
}
@@ -180104,16 +145355,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 81640,
- 81644
+ 64879,
+ 64883
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 11
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 15
}
}
@@ -180122,31 +145373,31 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 81645,
- 81659
+ 64884,
+ 64898
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 16
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 30
}
}
},
"range": [
- 81640,
- 81659
+ 64879,
+ 64898
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 11
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 30
}
}
@@ -180165,16 +145416,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 81663,
- 81667
+ 64902,
+ 64906
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 34
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 38
}
}
@@ -180183,31 +145434,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 81668,
- 81679
+ 64907,
+ 64918
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 39
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 50
}
}
},
"range": [
- 81663,
- 81679
+ 64902,
+ 64918
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 34
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 50
}
}
@@ -180216,31 +145467,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 81680,
- 81687
+ 64919,
+ 64926
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 51
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 58
}
}
},
"range": [
- 81663,
- 81687
+ 64902,
+ 64926
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 34
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 58
}
}
@@ -180250,32 +145501,32 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 81688,
- 81696
+ 64927,
+ 64935
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 59
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 67
}
}
}
],
"range": [
- 81663,
- 81697
+ 64902,
+ 64936
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 34
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 68
}
}
@@ -180288,62 +145539,62 @@
"value": 1,
"raw": "1",
"range": [
- 81703,
- 81704
+ 64942,
+ 64943
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 74
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 75
}
}
},
"prefix": true,
"range": [
- 81702,
- 81704
+ 64941,
+ 64943
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 73
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 75
}
}
},
"range": [
- 81663,
- 81704
+ 64902,
+ 64943
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 34
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 75
}
}
},
"range": [
- 81640,
- 81704
+ 64879,
+ 64943
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 11
},
"end": {
- "line": 2241,
+ "line": 1835,
"column": 75
}
}
@@ -180360,16 +145611,16 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 81719,
- 81726
+ 64958,
+ 64965
],
"loc": {
"start": {
- "line": 2242,
+ "line": 1836,
"column": 12
},
"end": {
- "line": 2242,
+ "line": 1836,
"column": 19
}
}
@@ -180379,78 +145630,78 @@
"value": true,
"raw": "true",
"range": [
- 81729,
- 81733
+ 64968,
+ 64972
],
"loc": {
"start": {
- "line": 2242,
+ "line": 1836,
"column": 22
},
"end": {
- "line": 2242,
+ "line": 1836,
"column": 26
}
}
},
"range": [
- 81719,
- 81733
+ 64958,
+ 64972
],
"loc": {
"start": {
- "line": 2242,
+ "line": 1836,
"column": 12
},
"end": {
- "line": 2242,
+ "line": 1836,
"column": 26
}
}
},
"range": [
- 81719,
- 81734
+ 64958,
+ 64973
],
"loc": {
"start": {
- "line": 2242,
+ "line": 1836,
"column": 12
},
"end": {
- "line": 2242,
+ "line": 1836,
"column": 27
}
}
}
],
"range": [
- 81705,
- 81744
+ 64944,
+ 64983
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 76
},
"end": {
- "line": 2243,
+ "line": 1837,
"column": 9
}
}
},
"alternate": null,
"range": [
- 81637,
- 81744
+ 64876,
+ 64983
],
"loc": {
"start": {
- "line": 2241,
+ "line": 1835,
"column": 8
},
"end": {
- "line": 2243,
+ "line": 1837,
"column": 9
}
},
@@ -180459,16 +145710,16 @@
"type": "Line",
"value": " always visible rows are valid",
"range": [
- 81596,
- 81628
+ 64835,
+ 64867
],
"loc": {
"start": {
- "line": 2240,
+ "line": 1834,
"column": 8
},
"end": {
- "line": 2240,
+ "line": 1834,
"column": 40
}
}
@@ -180484,16 +145735,16 @@
"type": "Identifier",
"name": "displayFlag",
"range": [
- 81758,
- 81769
+ 64997,
+ 65008
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 12
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 23
}
}
@@ -180504,16 +145755,16 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 81772,
- 81779
+ 65011,
+ 65018
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 26
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 33
}
}
@@ -180523,16 +145774,16 @@
"value": "",
"raw": "''",
"range": [
- 81782,
- 81784
+ 65021,
+ 65023
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 36
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 38
}
}
@@ -180542,46 +145793,46 @@
"value": "none",
"raw": "'none'",
"range": [
- 81787,
- 81793
+ 65026,
+ 65032
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 41
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 47
}
}
},
"range": [
- 81772,
- 81793
+ 65011,
+ 65032
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 26
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 47
}
}
},
"range": [
- 81758,
- 81793
+ 64997,
+ 65032
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 12
},
"end": {
- "line": 2245,
+ "line": 1839,
"column": 47
}
}
@@ -180592,16 +145843,16 @@
"type": "Identifier",
"name": "validFlag",
"range": [
- 81807,
- 81816
+ 65046,
+ 65055
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 12
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 21
}
}
@@ -180612,16 +145863,16 @@
"type": "Identifier",
"name": "isValid",
"range": [
- 81819,
- 81826
+ 65058,
+ 65065
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 24
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 31
}
}
@@ -180631,16 +145882,16 @@
"value": "true",
"raw": "'true'",
"range": [
- 81829,
- 81835
+ 65068,
+ 65074
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 34
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 40
}
}
@@ -180650,46 +145901,46 @@
"value": "false",
"raw": "'false'",
"range": [
- 81838,
- 81845
+ 65077,
+ 65084
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 43
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 50
}
}
},
"range": [
- 81819,
- 81845
+ 65058,
+ 65084
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 24
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 50
}
}
},
"range": [
- 81807,
- 81845
+ 65046,
+ 65084
],
"loc": {
"start": {
- "line": 2246,
+ "line": 1840,
"column": 12
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 50
}
}
@@ -180697,16 +145948,16 @@
],
"kind": "let",
"range": [
- 81754,
- 81846
+ 64993,
+ 65085
],
"loc": {
"start": {
- "line": 2245,
+ "line": 1839,
"column": 8
},
"end": {
- "line": 2246,
+ "line": 1840,
"column": 51
}
}
@@ -180726,16 +145977,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 81855,
- 81858
+ 65094,
+ 65097
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 8
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 11
}
}
@@ -180744,31 +145995,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 81859,
- 81864
+ 65098,
+ 65103
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 12
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 17
}
}
},
"range": [
- 81855,
- 81864
+ 65094,
+ 65103
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 8
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 17
}
}
@@ -180777,31 +146028,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 81865,
- 81872
+ 65104,
+ 65111
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 18
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 25
}
}
},
"range": [
- 81855,
- 81872
+ 65094,
+ 65111
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 8
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 25
}
}
@@ -180810,46 +146061,46 @@
"type": "Identifier",
"name": "displayFlag",
"range": [
- 81875,
- 81886
+ 65114,
+ 65125
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 28
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 39
}
}
},
"range": [
- 81855,
- 81886
+ 65094,
+ 65125
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 8
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 39
}
}
},
"range": [
- 81855,
- 81887
+ 65094,
+ 65126
],
"loc": {
"start": {
- "line": 2247,
+ "line": 1841,
"column": 8
},
"end": {
- "line": 2247,
+ "line": 1841,
"column": 40
}
}
@@ -180862,16 +146113,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 81900,
- 81904
+ 65139,
+ 65143
],
"loc": {
"start": {
- "line": 2249,
+ "line": 1843,
"column": 11
},
"end": {
- "line": 2249,
+ "line": 1843,
"column": 15
}
}
@@ -180880,31 +146131,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 81905,
- 81911
+ 65144,
+ 65150
],
"loc": {
"start": {
- "line": 2249,
+ "line": 1843,
"column": 16
},
"end": {
- "line": 2249,
+ "line": 1843,
"column": 22
}
}
},
"range": [
- 81900,
- 81911
+ 65139,
+ 65150
],
"loc": {
"start": {
- "line": 2249,
+ "line": 1843,
"column": 11
},
"end": {
- "line": 2249,
+ "line": 1843,
"column": 22
}
}
@@ -180923,16 +146174,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 81926,
- 81929
+ 65165,
+ 65168
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 12
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 15
}
}
@@ -180941,31 +146192,31 @@
"type": "Identifier",
"name": "setAttribute",
"range": [
- 81930,
- 81942
+ 65169,
+ 65181
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 16
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 28
}
}
},
"range": [
- 81926,
- 81942
+ 65165,
+ 65181
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 12
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 28
}
}
@@ -180976,16 +146227,16 @@
"value": "validRow",
"raw": "'validRow'",
"range": [
- 81943,
- 81953
+ 65182,
+ 65192
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 29
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 39
}
}
@@ -180994,95 +146245,960 @@
"type": "Identifier",
"name": "validFlag",
"range": [
- 81955,
- 81964
+ 65194,
+ 65203
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 41
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 50
}
}
}
],
"range": [
- 81926,
- 81965
+ 65165,
+ 65204
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 12
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 51
}
}
},
"range": [
- 81926,
- 81966
+ 65165,
+ 65205
],
"loc": {
"start": {
- "line": 2250,
+ "line": 1844,
"column": 12
},
"end": {
- "line": 2250,
+ "line": 1844,
"column": 52
}
}
}
],
"range": [
- 81912,
- 81976
+ 65151,
+ 65215
],
"loc": {
"start": {
- "line": 2249,
+ "line": 1843,
"column": 23
},
"end": {
- "line": 2251,
+ "line": 1845,
"column": 9
}
}
},
"alternate": null,
"range": [
- 81897,
- 81976
+ 65136,
+ 65215
],
"loc": {
"start": {
- "line": 2249,
+ "line": 1843,
"column": 8
},
"end": {
- "line": 2251,
+ "line": 1845,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "Identifier",
+ "name": "isValid",
+ "range": [
+ 65228,
+ 65235
+ ],
+ "loc": {
+ "start": {
+ "line": 1847,
+ "column": 11
+ },
+ "end": {
+ "line": 1847,
+ "column": 18
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 65253,
+ 65257
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 15
+ },
+ "end": {
+ "line": 1848,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 65258,
+ 65272
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 20
+ },
+ "end": {
+ "line": 1848,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 65253,
+ 65272
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 15
+ },
+ "end": {
+ "line": 1848,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "indexOf",
+ "range": [
+ 65273,
+ 65280
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 35
+ },
+ "end": {
+ "line": 1848,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 65253,
+ 65280
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 15
+ },
+ "end": {
+ "line": 1848,
+ "column": 42
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 65281,
+ 65289
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 43
+ },
+ "end": {
+ "line": 1848,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 65253,
+ 65290
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 15
+ },
+ "end": {
+ "line": 1848,
+ "column": 52
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "-",
+ "argument": {
+ "type": "Literal",
+ "value": 1,
+ "raw": "1",
+ "range": [
+ 65296,
+ 65297
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 58
+ },
+ "end": {
+ "line": 1848,
+ "column": 59
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 65295,
+ 65297
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 57
+ },
+ "end": {
+ "line": 1848,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 65253,
+ 65297
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 15
+ },
+ "end": {
+ "line": 1848,
+ "column": 59
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 65316,
+ 65320
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 16
+ },
+ "end": {
+ "line": 1849,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "validRowsIndex",
+ "range": [
+ 65321,
+ 65335
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 21
+ },
+ "end": {
+ "line": 1849,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 65316,
+ 65335
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 16
+ },
+ "end": {
+ "line": 1849,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 65336,
+ 65340
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 36
+ },
+ "end": {
+ "line": 1849,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 65316,
+ 65340
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 16
+ },
+ "end": {
+ "line": 1849,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 65341,
+ 65349
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 41
+ },
+ "end": {
+ "line": 1849,
+ "column": 49
+ }
+ }
+ }
+ ],
+ "range": [
+ 65316,
+ 65350
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 16
+ },
+ "end": {
+ "line": 1849,
+ "column": 50
+ }
+ }
+ },
+ "range": [
+ 65316,
+ 65351
+ ],
+ "loc": {
+ "start": {
+ "line": 1849,
+ "column": 16
+ },
+ "end": {
+ "line": 1849,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 65298,
+ 65365
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 60
+ },
+ "end": {
+ "line": 1850,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 65250,
+ 65365
+ ],
+ "loc": {
+ "start": {
+ "line": 1848,
+ "column": 12
+ },
+ "end": {
+ "line": 1850,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 65382,
+ 65386
+ ],
+ "loc": {
+ "start": {
+ "line": 1852,
+ "column": 15
+ },
+ "end": {
+ "line": 1852,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onRowValidated",
+ "range": [
+ 65387,
+ 65401
+ ],
+ "loc": {
+ "start": {
+ "line": 1852,
+ "column": 20
+ },
+ "end": {
+ "line": 1852,
+ "column": 34
+ }
+ }
+ },
+ "range": [
+ 65382,
+ 65401
+ ],
+ "loc": {
+ "start": {
+ "line": 1852,
+ "column": 15
+ },
+ "end": {
+ "line": 1852,
+ "column": 34
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 65420,
+ 65424
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 16
+ },
+ "end": {
+ "line": 1853,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onRowValidated",
+ "range": [
+ 65425,
+ 65439
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 21
+ },
+ "end": {
+ "line": 1853,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 65420,
+ 65439
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 16
+ },
+ "end": {
+ "line": 1853,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "call",
+ "range": [
+ 65440,
+ 65444
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 36
+ },
+ "end": {
+ "line": 1853,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 65420,
+ 65444
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 16
+ },
+ "end": {
+ "line": 1853,
+ "column": 40
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 65445,
+ 65449
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 41
+ },
+ "end": {
+ "line": 1853,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 65451,
+ 65455
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 47
+ },
+ "end": {
+ "line": 1853,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 65457,
+ 65465
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 53
+ },
+ "end": {
+ "line": 1853,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 65420,
+ 65466
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 16
+ },
+ "end": {
+ "line": 1853,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 65420,
+ 65467
+ ],
+ "loc": {
+ "start": {
+ "line": 1853,
+ "column": 16
+ },
+ "end": {
+ "line": 1853,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 65402,
+ 65481
+ ],
+ "loc": {
+ "start": {
+ "line": 1852,
+ "column": 35
+ },
+ "end": {
+ "line": 1854,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 65379,
+ 65481
+ ],
+ "loc": {
+ "start": {
+ "line": 1852,
+ "column": 12
+ },
+ "end": {
+ "line": 1854,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 65495,
+ 65499
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 12
+ },
+ "end": {
+ "line": 1856,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 65500,
+ 65507
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 17
+ },
+ "end": {
+ "line": 1856,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 65495,
+ 65507
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 12
+ },
+ "end": {
+ "line": 1856,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 65508,
+ 65512
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 25
+ },
+ "end": {
+ "line": 1856,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 65495,
+ 65512
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 12
+ },
+ "end": {
+ "line": 1856,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "row-validated",
+ "raw": "'row-validated'",
+ "range": [
+ 65513,
+ 65528
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 30
+ },
+ "end": {
+ "line": 1856,
+ "column": 45
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 65530,
+ 65534
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 47
+ },
+ "end": {
+ "line": 1856,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "rowIndex",
+ "range": [
+ 65536,
+ 65544
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 53
+ },
+ "end": {
+ "line": 1856,
+ "column": 61
+ }
+ }
+ }
+ ],
+ "range": [
+ 65495,
+ 65545
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 12
+ },
+ "end": {
+ "line": 1856,
+ "column": 62
+ }
+ }
+ },
+ "range": [
+ 65495,
+ 65546
+ ],
+ "loc": {
+ "start": {
+ "line": 1856,
+ "column": 12
+ },
+ "end": {
+ "line": 1856,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 65236,
+ 65556
+ ],
+ "loc": {
+ "start": {
+ "line": 1847,
+ "column": 19
+ },
+ "end": {
+ "line": 1857,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 65225,
+ 65556
+ ],
+ "loc": {
+ "start": {
+ "line": 1847,
+ "column": 8
+ },
+ "end": {
+ "line": 1857,
"column": 9
}
}
}
],
"range": [
- 81462,
- 81982
+ 64701,
+ 65562
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 34
},
"end": {
- "line": 2252,
+ "line": 1858,
"column": 5
}
}
@@ -181090,16 +147206,16 @@
"generator": false,
"expression": false,
"range": [
- 81443,
- 81982
+ 64682,
+ 65562
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 15
},
"end": {
- "line": 2252,
+ "line": 1858,
"column": 5
}
}
@@ -181107,16 +147223,16 @@
"kind": "method",
"computed": false,
"range": [
- 81432,
- 81982
+ 64671,
+ 65562
],
"loc": {
"start": {
- "line": 2234,
+ "line": 1828,
"column": 4
},
"end": {
- "line": 2252,
+ "line": 1858,
"column": 5
}
},
@@ -181125,16 +147241,16 @@
"type": "Block",
"value": "*\n * Validate/invalidate row by setting the 'validRow' attribute on the row\n * @param {Number} rowIndex Index of the row\n * @param {Boolean} isValid\n ",
"range": [
- 81254,
- 81427
+ 64493,
+ 64666
],
"loc": {
"start": {
- "line": 2229,
+ "line": 1823,
"column": 4
},
"end": {
- "line": 2233,
+ "line": 1827,
"column": 7
}
}
@@ -181145,16 +147261,16 @@
"type": "Block",
"value": "*\n * Validate all filterable rows\n ",
"range": [
- 81988,
- 82035
+ 65568,
+ 65615
],
"loc": {
"start": {
- "line": 2254,
+ "line": 1860,
"column": 4
},
"end": {
- "line": 2256,
+ "line": 1862,
"column": 7
}
}
@@ -181168,16 +147284,16 @@
"type": "Identifier",
"name": "validateAllRows",
"range": [
- 82040,
- 82055
+ 65620,
+ 65635
],
"loc": {
"start": {
- "line": 2257,
+ "line": 1863,
"column": 4
},
"end": {
- "line": 2257,
+ "line": 1863,
"column": 19
}
}
@@ -181200,16 +147316,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82071,
- 82075
+ 65651,
+ 65655
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 12
},
"end": {
- "line": 2258,
+ "line": 1864,
"column": 16
}
}
@@ -181218,47 +147334,47 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 82076,
- 82084
+ 65656,
+ 65664
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 17
},
"end": {
- "line": 2258,
+ "line": 1864,
"column": 25
}
}
},
"range": [
- 82071,
- 82084
+ 65651,
+ 65664
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 12
},
"end": {
- "line": 2258,
+ "line": 1864,
"column": 25
}
}
},
"prefix": true,
"range": [
- 82070,
- 82084
+ 65650,
+ 65664
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 11
},
"end": {
- "line": 2258,
+ "line": 1864,
"column": 25
}
}
@@ -181270,48 +147386,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 82099,
- 82106
+ 65679,
+ 65686
],
"loc": {
"start": {
- "line": 2259,
+ "line": 1865,
"column": 12
},
"end": {
- "line": 2259,
+ "line": 1865,
"column": 19
}
}
}
],
"range": [
- 82085,
- 82116
+ 65665,
+ 65696
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 26
},
"end": {
- "line": 2260,
+ "line": 1866,
"column": 9
}
}
},
"alternate": null,
"range": [
- 82067,
- 82116
+ 65647,
+ 65696
],
"loc": {
"start": {
- "line": 2258,
+ "line": 1864,
"column": 8
},
"end": {
- "line": 2260,
+ "line": 1866,
"column": 9
}
}
@@ -181327,16 +147443,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82125,
- 82129
+ 65705,
+ 65709
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 8
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 12
}
}
@@ -181345,31 +147461,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 82130,
- 82144
+ 65710,
+ 65724
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 13
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 27
}
}
},
"range": [
- 82125,
- 82144
+ 65705,
+ 65724
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 8
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 27
}
}
@@ -181378,46 +147494,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 82147,
- 82149
+ 65727,
+ 65729
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 30
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 32
}
}
},
"range": [
- 82125,
- 82149
+ 65705,
+ 65729
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 8
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 32
}
}
},
"range": [
- 82125,
- 82150
+ 65705,
+ 65730
],
"loc": {
"start": {
- "line": 2261,
+ "line": 1867,
"column": 8
},
"end": {
- "line": 2261,
+ "line": 1867,
"column": 33
}
}
@@ -181433,16 +147549,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 82167,
- 82168
+ 65747,
+ 65748
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 16
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 17
}
}
@@ -181453,16 +147569,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82169,
- 82173
+ 65749,
+ 65753
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 18
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 22
}
}
@@ -181471,46 +147587,46 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 82174,
- 82180
+ 65754,
+ 65760
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 23
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 29
}
}
},
"range": [
- 82169,
- 82180
+ 65749,
+ 65760
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 18
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 29
}
}
},
"range": [
- 82167,
- 82180
+ 65747,
+ 65760
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 16
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 29
}
}
@@ -181518,16 +147634,16 @@
],
"kind": "let",
"range": [
- 82163,
- 82180
+ 65743,
+ 65760
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 12
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 29
}
}
@@ -181539,16 +147655,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 82182,
- 82183
+ 65762,
+ 65763
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 31
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 32
}
}
@@ -181559,16 +147675,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82184,
- 82188
+ 65764,
+ 65768
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 33
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 37
}
}
@@ -181577,46 +147693,46 @@
"type": "Identifier",
"name": "nbFilterableRows",
"range": [
- 82189,
- 82205
+ 65769,
+ 65785
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 38
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 54
}
}
},
"range": [
- 82184,
- 82205
+ 65764,
+ 65785
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 33
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 54
}
}
},
"range": [
- 82182,
- 82205
+ 65762,
+ 65785
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 31
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 54
}
}
@@ -181628,32 +147744,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 82207,
- 82208
+ 65787,
+ 65788
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 56
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 57
}
}
},
"prefix": false,
"range": [
- 82207,
- 82210
+ 65787,
+ 65790
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 56
},
"end": {
- "line": 2262,
+ "line": 1868,
"column": 59
}
}
@@ -181671,16 +147787,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82225,
- 82229
+ 65805,
+ 65809
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 12
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 16
}
}
@@ -181689,31 +147805,31 @@
"type": "Identifier",
"name": "validateRow",
"range": [
- 82230,
- 82241
+ 65810,
+ 65821
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 17
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 28
}
}
},
"range": [
- 82225,
- 82241
+ 65805,
+ 65821
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 12
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 28
}
}
@@ -181723,16 +147839,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 82242,
- 82243
+ 65822,
+ 65823
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 29
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 30
}
}
@@ -181742,237 +147858,94 @@
"value": true,
"raw": "true",
"range": [
- 82245,
- 82249
+ 65825,
+ 65829
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 32
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 36
}
}
}
],
"range": [
- 82225,
- 82250
+ 65805,
+ 65830
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 12
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 37
}
}
},
"range": [
- 82225,
- 82251
+ 65805,
+ 65831
],
"loc": {
"start": {
- "line": 2263,
+ "line": 1869,
"column": 12
},
"end": {
- "line": 2263,
+ "line": 1869,
"column": 38
}
}
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 82264,
- 82268
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 12
- },
- "end": {
- "line": 2264,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "validRowsIndex",
- "range": [
- 82269,
- 82283
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 17
- },
- "end": {
- "line": 2264,
- "column": 31
- }
- }
- },
- "range": [
- 82264,
- 82283
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 12
- },
- "end": {
- "line": 2264,
- "column": 31
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "push",
- "range": [
- 82284,
- 82288
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 32
- },
- "end": {
- "line": 2264,
- "column": 36
- }
- }
- },
- "range": [
- 82264,
- 82288
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 12
- },
- "end": {
- "line": 2264,
- "column": 36
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "k",
- "range": [
- 82289,
- 82290
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 37
- },
- "end": {
- "line": 2264,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 82264,
- 82291
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 12
- },
- "end": {
- "line": 2264,
- "column": 39
- }
- }
- },
- "range": [
- 82264,
- 82292
- ],
- "loc": {
- "start": {
- "line": 2264,
- "column": 12
- },
- "end": {
- "line": 2264,
- "column": 40
- }
- }
}
],
"range": [
- 82211,
- 82302
+ 65791,
+ 65841
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 60
},
"end": {
- "line": 2265,
+ "line": 1870,
"column": 9
}
}
},
"range": [
- 82159,
- 82302
+ 65739,
+ 65841
],
"loc": {
"start": {
- "line": 2262,
+ "line": 1868,
"column": 8
},
"end": {
- "line": 2265,
+ "line": 1870,
"column": 9
}
}
}
],
"range": [
- 82057,
- 82308
+ 65637,
+ 65847
],
"loc": {
"start": {
- "line": 2257,
+ "line": 1863,
"column": 21
},
"end": {
- "line": 2266,
+ "line": 1871,
"column": 5
}
}
@@ -181980,16 +147953,16 @@
"generator": false,
"expression": false,
"range": [
- 82055,
- 82308
+ 65635,
+ 65847
],
"loc": {
"start": {
- "line": 2257,
+ "line": 1863,
"column": 19
},
"end": {
- "line": 2266,
+ "line": 1871,
"column": 5
}
}
@@ -181997,16 +147970,16 @@
"kind": "method",
"computed": false,
"range": [
- 82040,
- 82308
+ 65620,
+ 65847
],
"loc": {
"start": {
- "line": 2257,
+ "line": 1863,
"column": 4
},
"end": {
- "line": 2266,
+ "line": 1871,
"column": 5
}
},
@@ -182015,16 +147988,16 @@
"type": "Block",
"value": "*\n * Validate all filterable rows\n ",
"range": [
- 81988,
- 82035
+ 65568,
+ 65615
],
"loc": {
"start": {
- "line": 2254,
+ "line": 1860,
"column": 4
},
"end": {
- "line": 2256,
+ "line": 1862,
"column": 7
}
}
@@ -182033,18 +148006,18 @@
"trailingComments": [
{
"type": "Block",
- "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String} searcharg Search term\n ",
+ "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String or Array} searcharg Search term\n ",
"range": [
- 82314,
- 82460
+ 65853,
+ 66009
],
"loc": {
"start": {
- "line": 2268,
+ "line": 1873,
"column": 4
},
"end": {
- "line": 2272,
+ "line": 1877,
"column": 7
}
}
@@ -182058,16 +148031,16 @@
"type": "Identifier",
"name": "setFilterValue",
"range": [
- 82465,
- 82479
+ 66014,
+ 66028
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 4
},
"end": {
- "line": 2273,
+ "line": 1878,
"column": 18
}
}
@@ -182080,16 +148053,16 @@
"type": "Identifier",
"name": "index",
"range": [
- 82480,
- 82485
+ 66029,
+ 66034
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 19
},
"end": {
- "line": 2273,
+ "line": 1878,
"column": 24
}
}
@@ -182098,19 +148071,19 @@
"type": "AssignmentPattern",
"left": {
"type": "Identifier",
- "name": "searcharg",
+ "name": "query",
"range": [
- 82487,
- 82496
+ 66036,
+ 66041
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 26
},
"end": {
- "line": 2273,
- "column": 35
+ "line": 1878,
+ "column": 31
}
}
},
@@ -182119,32 +148092,32 @@
"value": "",
"raw": "''",
"range": [
- 82497,
- 82499
+ 66042,
+ 66044
],
"loc": {
"start": {
- "line": 2273,
- "column": 36
+ "line": 1878,
+ "column": 32
},
"end": {
- "line": 2273,
- "column": 38
+ "line": 1878,
+ "column": 34
}
}
},
"range": [
- 82487,
- 82499
+ 66036,
+ 66044
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 26
},
"end": {
- "line": 2273,
- "column": 38
+ "line": 1878,
+ "column": 34
}
}
}
@@ -182155,291 +148128,74 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 82515,
- 82519
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 13
- },
- "end": {
- "line": 2274,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltGrid",
- "range": [
- 82520,
- 82527
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 18
- },
- "end": {
- "line": 2274,
- "column": 25
- }
- }
- },
- "range": [
- 82515,
- 82527
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 13
- },
- "end": {
- "line": 2274,
- "column": 25
- }
- }
- },
- "prefix": true,
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 82514,
- 82527
+ 66059,
+ 66063
],
"loc": {
"start": {
- "line": 2274,
+ "line": 1879,
"column": 12
},
"end": {
- "line": 2274,
- "column": 25
+ "line": 1879,
+ "column": 16
}
}
},
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 82532,
- 82536
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 30
- },
- "end": {
- "line": 2274,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 82537,
- 82548
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 35
- },
- "end": {
- "line": 2274,
- "column": 46
- }
- }
- },
- "range": [
- 82532,
- 82548
- ],
- "loc": {
- "start": {
- "line": 2274,
- "column": 30
- },
- "end": {
- "line": 2274,
- "column": 46
- }
- }
- },
- "prefix": true,
+ "property": {
+ "type": "Identifier",
+ "name": "fltGrid",
"range": [
- 82531,
- 82548
+ 66064,
+ 66071
],
"loc": {
"start": {
- "line": 2274,
- "column": 29
+ "line": 1879,
+ "column": 17
},
"end": {
- "line": 2274,
- "column": 46
+ "line": 1879,
+ "column": 24
}
}
},
"range": [
- 82514,
- 82548
+ 66059,
+ 66071
],
"loc": {
"start": {
- "line": 2274,
+ "line": 1879,
"column": 12
},
"end": {
- "line": 2274,
- "column": 46
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 82566,
- 82570
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 13
- },
- "end": {
- "line": 2275,
- "column": 17
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterElement",
- "range": [
- 82571,
- 82587
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 18
- },
- "end": {
- "line": 2275,
- "column": 34
- }
- }
- },
- "range": [
- 82566,
- 82587
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 13
- },
- "end": {
- "line": 2275,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "index",
- "range": [
- 82588,
- 82593
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 35
- },
- "end": {
- "line": 2275,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 82566,
- 82594
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 13
- },
- "end": {
- "line": 2275,
- "column": 41
- }
- }
- },
- "prefix": true,
- "range": [
- 82565,
- 82594
- ],
- "loc": {
- "start": {
- "line": 2275,
- "column": 12
- },
- "end": {
- "line": 2275,
- "column": 41
+ "line": 1879,
+ "column": 24
}
}
},
+ "prefix": true,
"range": [
- 82513,
- 82594
+ 66058,
+ 66071
],
"loc": {
"start": {
- "line": 2274,
+ "line": 1879,
"column": 11
},
"end": {
- "line": 2275,
- "column": 41
+ "line": 1879,
+ "column": 24
}
}
},
@@ -182450,48 +148206,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 82609,
- 82616
+ 66086,
+ 66093
],
"loc": {
"start": {
- "line": 2276,
+ "line": 1880,
"column": 12
},
"end": {
- "line": 2276,
+ "line": 1880,
"column": 19
}
}
}
],
"range": [
- 82595,
- 82626
+ 66072,
+ 66103
],
"loc": {
"start": {
- "line": 2275,
- "column": 42
+ "line": 1879,
+ "column": 25
},
"end": {
- "line": 2277,
+ "line": 1881,
"column": 9
}
}
},
"alternate": null,
"range": [
- 82510,
- 82626
+ 66055,
+ 66103
],
"loc": {
"start": {
- "line": 2274,
+ "line": 1879,
"column": 8
},
"end": {
- "line": 2277,
+ "line": 1881,
"column": 9
}
}
@@ -182505,16 +148261,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 82639,
- 82642
+ 66116,
+ 66119
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 12
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 15
}
}
@@ -182527,16 +148283,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82645,
- 82649
+ 66122,
+ 66126
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 18
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 22
}
}
@@ -182545,31 +148301,31 @@
"type": "Identifier",
"name": "getFilterElement",
"range": [
- 82650,
- 82666
+ 66127,
+ 66143
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 23
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 39
}
}
},
"range": [
- 82645,
- 82666
+ 66122,
+ 66143
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 18
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 39
}
}
@@ -182579,47 +148335,47 @@
"type": "Identifier",
"name": "index",
"range": [
- 82667,
- 82672
+ 66144,
+ 66149
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 40
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 45
}
}
}
],
"range": [
- 82645,
- 82673
+ 66122,
+ 66150
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 18
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 46
}
}
},
"range": [
- 82639,
- 82673
+ 66116,
+ 66150
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 12
},
"end": {
- "line": 2278,
+ "line": 1882,
"column": 46
}
}
@@ -182630,16 +148386,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 82687,
- 82697
+ 66164,
+ 66174
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 12
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 22
}
}
@@ -182652,16 +148408,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82700,
- 82704
+ 66177,
+ 66181
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 25
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 29
}
}
@@ -182670,31 +148426,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 82705,
- 82718
+ 66182,
+ 66195
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 30
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 43
}
}
},
"range": [
- 82700,
- 82718
+ 66177,
+ 66195
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 25
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 43
}
}
@@ -182704,47 +148460,47 @@
"type": "Identifier",
"name": "index",
"range": [
- 82719,
- 82724
+ 66196,
+ 66201
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 44
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 49
}
}
}
],
"range": [
- 82700,
- 82725
+ 66177,
+ 66202
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 25
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 50
}
}
},
"range": [
- 82687,
- 82725
+ 66164,
+ 66202
],
"loc": {
"start": {
- "line": 2279,
+ "line": 1883,
"column": 12
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 50
}
}
@@ -182752,16 +148508,16 @@
],
"kind": "let",
"range": [
- 82635,
- 82726
+ 66112,
+ 66203
],
"loc": {
"start": {
- "line": 2278,
+ "line": 1882,
"column": 8
},
"end": {
- "line": 2279,
+ "line": 1883,
"column": 51
}
}
@@ -182778,16 +148534,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 82739,
- 82749
+ 66216,
+ 66226
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 11
},
"end": {
- "line": 2281,
+ "line": 1885,
"column": 21
}
}
@@ -182798,16 +148554,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82754,
- 82758
+ 66231,
+ 66235
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 26
},
"end": {
- "line": 2281,
+ "line": 1885,
"column": 30
}
}
@@ -182816,46 +148572,46 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 82759,
- 82771
+ 66236,
+ 66248
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 31
},
"end": {
- "line": 2281,
+ "line": 1885,
"column": 43
}
}
},
"range": [
- 82754,
- 82771
+ 66231,
+ 66248
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 26
},
"end": {
- "line": 2281,
+ "line": 1885,
"column": 43
}
}
},
"range": [
- 82739,
- 82771
+ 66216,
+ 66248
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 11
},
"end": {
- "line": 2281,
+ "line": 1885,
"column": 43
}
}
@@ -182867,16 +148623,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 82787,
- 82797
+ 66264,
+ 66274
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 12
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 22
}
}
@@ -182887,16 +148643,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82801,
- 82805
+ 66278,
+ 66282
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 26
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 30
}
}
@@ -182905,61 +148661,61 @@
"type": "Identifier",
"name": "fltTypeCheckList",
"range": [
- 82806,
- 82822
+ 66283,
+ 66299
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 31
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 47
}
}
},
"range": [
- 82801,
- 82822
+ 66278,
+ 66299
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 26
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 47
}
}
},
"range": [
- 82787,
- 82822
+ 66264,
+ 66299
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 12
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 47
}
}
},
"range": [
- 82739,
- 82822
+ 66216,
+ 66299
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 11
},
"end": {
- "line": 2282,
+ "line": 1886,
"column": 47
}
}
@@ -182967,6 +148723,471 @@
"consequent": {
"type": "BlockStatement",
"body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66317,
+ 66321
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 15
+ },
+ "end": {
+ "line": 1887,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 66322,
+ 66337
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 20
+ },
+ "end": {
+ "line": 1887,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 66317,
+ 66337
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 15
+ },
+ "end": {
+ "line": 1887,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66342,
+ 66346
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 40
+ },
+ "end": {
+ "line": 1887,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 66347,
+ 66358
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 45
+ },
+ "end": {
+ "line": 1887,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 66342,
+ 66358
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 40
+ },
+ "end": {
+ "line": 1887,
+ "column": 56
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 66341,
+ 66358
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 39
+ },
+ "end": {
+ "line": 1887,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 66317,
+ 66358
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 15
+ },
+ "end": {
+ "line": 1887,
+ "column": 56
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66377,
+ 66381
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 16
+ },
+ "end": {
+ "line": 1888,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 66382,
+ 66389
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 21
+ },
+ "end": {
+ "line": 1888,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 66377,
+ 66389
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 16
+ },
+ "end": {
+ "line": 1888,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 66390,
+ 66394
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 29
+ },
+ "end": {
+ "line": 1888,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 66377,
+ 66394
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 16
+ },
+ "end": {
+ "line": 1888,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "build-select-filter",
+ "raw": "'build-select-filter'",
+ "range": [
+ 66395,
+ 66416
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 34
+ },
+ "end": {
+ "line": 1888,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 66418,
+ 66422
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 57
+ },
+ "end": {
+ "line": 1888,
+ "column": 61
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 66424,
+ 66429
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 63
+ },
+ "end": {
+ "line": 1888,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66451,
+ 66455
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 20
+ },
+ "end": {
+ "line": 1889,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkedFilters",
+ "range": [
+ 66456,
+ 66469
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 25
+ },
+ "end": {
+ "line": 1889,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 66451,
+ 66469
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 20
+ },
+ "end": {
+ "line": 1889,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66471,
+ 66475
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 40
+ },
+ "end": {
+ "line": 1889,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 66476,
+ 66489
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 45
+ },
+ "end": {
+ "line": 1889,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 66471,
+ 66489
+ ],
+ "loc": {
+ "start": {
+ "line": 1889,
+ "column": 40
+ },
+ "end": {
+ "line": 1889,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 66377,
+ 66490
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 16
+ },
+ "end": {
+ "line": 1889,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 66377,
+ 66491
+ ],
+ "loc": {
+ "start": {
+ "line": 1888,
+ "column": 16
+ },
+ "end": {
+ "line": 1889,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 66359,
+ 66505
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 57
+ },
+ "end": {
+ "line": 1890,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 66314,
+ 66505
+ ],
+ "loc": {
+ "start": {
+ "line": 1887,
+ "column": 12
+ },
+ "end": {
+ "line": 1890,
+ "column": 13
+ }
+ }
+ },
{
"type": "ExpressionStatement",
"expression": {
@@ -182979,16 +149200,16 @@
"type": "Identifier",
"name": "slc",
"range": [
- 82837,
- 82840
+ 66518,
+ 66521
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 12
},
"end": {
- "line": 2283,
+ "line": 1891,
"column": 15
}
}
@@ -182997,95 +149218,95 @@
"type": "Identifier",
"name": "value",
"range": [
- 82841,
- 82846
+ 66522,
+ 66527
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 16
},
"end": {
- "line": 2283,
+ "line": 1891,
"column": 21
}
}
},
"range": [
- 82837,
- 82846
+ 66518,
+ 66527
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 12
},
"end": {
- "line": 2283,
+ "line": 1891,
"column": 21
}
}
},
"right": {
"type": "Identifier",
- "name": "searcharg",
+ "name": "query",
"range": [
- 82849,
- 82858
+ 66530,
+ 66535
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 24
},
"end": {
- "line": 2283,
- "column": 33
+ "line": 1891,
+ "column": 29
}
}
},
"range": [
- 82837,
- 82858
+ 66518,
+ 66535
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 12
},
"end": {
- "line": 2283,
- "column": 33
+ "line": 1891,
+ "column": 29
}
}
},
"range": [
- 82837,
- 82859
+ 66518,
+ 66536
],
"loc": {
"start": {
- "line": 2283,
+ "line": 1891,
"column": 12
},
"end": {
- "line": 2283,
- "column": 34
+ "line": 1891,
+ "column": 30
}
}
}
],
"range": [
- 82823,
- 82869
+ 66300,
+ 66546
],
"loc": {
"start": {
- "line": 2282,
+ "line": 1886,
"column": 48
},
"end": {
- "line": 2284,
+ "line": 1892,
"column": 9
}
},
@@ -183094,16 +149315,16 @@
"type": "Line",
"value": "multiple selects",
"range": [
- 82878,
- 82896
+ 66555,
+ 66573
],
"loc": {
"start": {
- "line": 2285,
+ "line": 1893,
"column": 8
},
"end": {
- "line": 2285,
+ "line": 1893,
"column": 26
}
}
@@ -183119,16 +149340,16 @@
"type": "Identifier",
"name": "fltColType",
"range": [
- 82913,
- 82923
+ 66590,
+ 66600
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 16
},
"end": {
- "line": 2286,
+ "line": 1894,
"column": 26
}
}
@@ -183139,16 +149360,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 82928,
- 82932
+ 66605,
+ 66609
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 31
},
"end": {
- "line": 2286,
+ "line": 1894,
"column": 35
}
}
@@ -183157,46 +149378,46 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 82933,
- 82945
+ 66610,
+ 66622
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 36
},
"end": {
- "line": 2286,
+ "line": 1894,
"column": 48
}
}
},
"range": [
- 82928,
- 82945
+ 66605,
+ 66622
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 31
},
"end": {
- "line": 2286,
+ "line": 1894,
"column": 48
}
}
},
"range": [
- 82913,
- 82945
+ 66590,
+ 66622
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 16
},
"end": {
- "line": 2286,
+ "line": 1894,
"column": 48
}
}
@@ -183211,2139 +149432,153 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "s",
+ "name": "values",
"range": [
- 82964,
- 82965
+ 66641,
+ 66647
],
"loc": {
"start": {
- "line": 2287,
+ "line": 1895,
"column": 16
},
"end": {
- "line": 2287,
- "column": 17
+ "line": 1895,
+ "column": 22
}
}
},
"init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "searcharg",
- "range": [
- 82968,
- 82977
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 20
- },
- "end": {
- "line": 2287,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "split",
- "range": [
- 82978,
- 82983
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 30
- },
- "end": {
- "line": 2287,
- "column": 35
- }
- }
- },
- "range": [
- 82968,
- 82983
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 20
- },
- "end": {
- "line": 2287,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "BinaryExpression",
- "operator": "+",
- "left": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 82984,
- 82987
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 36
- },
- "end": {
- "line": 2287,
- "column": 39
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 82988,
- 82992
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 40
- },
- "end": {
- "line": 2287,
- "column": 44
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "orOperator",
- "range": [
- 82993,
- 83003
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 45
- },
- "end": {
- "line": 2287,
- "column": 55
- }
- }
- },
- "range": [
- 82988,
- 83003
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 40
- },
- "end": {
- "line": 2287,
- "column": 55
- }
- }
- },
- "range": [
- 82984,
- 83003
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 36
- },
- "end": {
- "line": 2287,
- "column": 55
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": " ",
- "raw": "' '",
- "range": [
- 83004,
- 83007
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 56
- },
- "end": {
- "line": 2287,
- "column": 59
- }
- }
- },
- "range": [
- 82984,
- 83007
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 36
- },
- "end": {
- "line": 2287,
- "column": 59
- }
- }
- }
- ],
- "range": [
- 82968,
- 83008
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 20
- },
- "end": {
- "line": 2287,
- "column": 60
- }
- }
- },
- "range": [
- 82964,
- 83008
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 16
- },
- "end": {
- "line": 2287,
- "column": 60
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 82960,
- 83009
- ],
- "loc": {
- "start": {
- "line": 2287,
- "column": 12
- },
- "end": {
- "line": 2287,
- "column": 61
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " let ct = 0; //keywords counter",
- "range": [
- 83022,
- 83055
- ],
- "loc": {
- "start": {
- "line": 2288,
- "column": 12
- },
- "end": {
- "line": 2288,
- "column": 45
- }
- }
- }
- ]
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 83076,
- 83077
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 20
- },
- "end": {
- "line": 2289,
- "column": 21
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 83078,
- 83079
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 22
- },
- "end": {
- "line": 2289,
- "column": 23
- }
- }
- },
- "range": [
- 83076,
- 83079
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 20
- },
- "end": {
- "line": 2289,
- "column": 23
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 83081,
- 83084
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 25
- },
- "end": {
- "line": 2289,
- "column": 28
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 83085,
- 83088
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 29
- },
- "end": {
- "line": 2289,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "options",
- "range": [
- 83089,
- 83096
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 33
- },
- "end": {
- "line": 2289,
- "column": 40
- }
- }
- },
- "range": [
- 83085,
- 83096
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 29
- },
- "end": {
- "line": 2289,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 83097,
- 83103
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 41
- },
- "end": {
- "line": 2289,
- "column": 47
- }
- }
- },
- "range": [
- 83085,
- 83103
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 29
- },
- "end": {
- "line": 2289,
- "column": 47
- }
- }
- },
- "range": [
- 83081,
- 83103
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 25
- },
- "end": {
- "line": 2289,
- "column": 47
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 83072,
- 83103
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 16
- },
- "end": {
- "line": 2289,
- "column": 47
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 83105,
- 83106
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 49
- },
- "end": {
- "line": 2289,
- "column": 50
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 83107,
- 83110
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 51
- },
- "end": {
- "line": 2289,
- "column": 54
- }
- }
- },
- "range": [
- 83105,
- 83110
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 49
- },
- "end": {
- "line": 2289,
- "column": 54
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 83112,
- 83113
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 56
- },
- "end": {
- "line": 2289,
- "column": 57
- }
- }
- },
- "prefix": false,
- "range": [
- 83112,
- 83115
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 56
- },
- "end": {
- "line": 2289,
- "column": 59
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83138,
- 83144
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 20
- },
- "end": {
- "line": 2290,
- "column": 26
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 83147,
- 83150
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 29
- },
- "end": {
- "line": 2290,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "options",
- "range": [
- 83151,
- 83158
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 33
- },
- "end": {
- "line": 2290,
- "column": 40
- }
- }
- },
- "range": [
- 83147,
- 83158
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 29
- },
- "end": {
- "line": 2290,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "j",
- "range": [
- 83159,
- 83160
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 41
- },
- "end": {
- "line": 2290,
- "column": 42
- }
- }
- },
- "range": [
- 83147,
- 83161
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 29
- },
- "end": {
- "line": 2290,
- "column": 43
- }
- }
- },
- "range": [
- 83138,
- 83161
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 20
- },
- "end": {
- "line": 2290,
- "column": 43
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 83134,
- 83162
- ],
- "loc": {
- "start": {
- "line": 2290,
- "column": 16
- },
- "end": {
- "line": 2290,
- "column": 44
- }
- }
- },
- {
- "type": "IfStatement",
+ "type": "ConditionalExpression",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 83182,
- 83183
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 19
- },
- "end": {
- "line": 2291,
- "column": 20
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83186,
- 83188
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 23
- },
- "end": {
- "line": 2291,
- "column": 25
- }
- }
- },
- "range": [
- 83182,
- 83188
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 19
- },
- "end": {
- "line": 2291,
- "column": 25
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "s",
- "range": [
- 83192,
- 83193
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 29
- },
- "end": {
- "line": 2291,
- "column": 30
- }
- }
- },
- "property": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 83194,
- 83195
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 31
- },
- "end": {
- "line": 2291,
- "column": 32
- }
- }
- },
- "range": [
- 83192,
- 83196
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 29
- },
- "end": {
- "line": 2291,
- "column": 33
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83199,
- 83201
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 36
- },
- "end": {
- "line": 2291,
- "column": 38
- }
- }
- },
- "range": [
- 83192,
- 83201
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 29
- },
- "end": {
- "line": 2291,
- "column": 38
- }
- }
- },
- "range": [
- 83182,
- 83201
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 19
- },
- "end": {
- "line": 2291,
- "column": 38
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83224,
- 83230
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 20
- },
- "end": {
- "line": 2292,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "selected",
- "range": [
- 83231,
- 83239
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 27
- },
- "end": {
- "line": 2292,
- "column": 35
- }
- }
- },
- "range": [
- 83224,
- 83239
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 20
- },
- "end": {
- "line": 2292,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 83242,
- 83247
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 38
- },
- "end": {
- "line": 2292,
- "column": 43
- }
- }
- },
- "range": [
- 83224,
- 83247
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 20
- },
- "end": {
- "line": 2292,
- "column": 43
- }
- }
- },
- "range": [
- 83224,
- 83248
- ],
- "loc": {
- "start": {
- "line": 2292,
- "column": 20
- },
- "end": {
- "line": 2292,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 83202,
- 83266
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 39
- },
- "end": {
- "line": 2293,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 83179,
- 83266
- ],
- "loc": {
- "start": {
- "line": 2291,
- "column": 16
- },
- "end": {
- "line": 2293,
- "column": 17
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83286,
- 83292
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 19
- },
- "end": {
- "line": 2294,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "value",
- "range": [
- 83293,
- 83298
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 26
- },
- "end": {
- "line": 2294,
- "column": 31
- }
- }
- },
- "range": [
- 83286,
- 83298
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 19
- },
- "end": {
- "line": 2294,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83301,
- 83303
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 34
- },
- "end": {
- "line": 2294,
- "column": 36
- }
- }
- },
- "range": [
- 83286,
- 83303
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 19
- },
- "end": {
- "line": 2294,
- "column": 36
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83326,
- 83332
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 20
- },
- "end": {
- "line": 2295,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "selected",
- "range": [
- 83333,
- 83341
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 27
- },
- "end": {
- "line": 2295,
- "column": 35
- }
- }
- },
- "range": [
- 83326,
- 83341
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 20
- },
- "end": {
- "line": 2295,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 83344,
- 83349
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 38
- },
- "end": {
- "line": 2295,
- "column": 43
- }
- }
- },
- "range": [
- 83326,
- 83349
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 20
- },
- "end": {
- "line": 2295,
- "column": 43
- }
- }
- },
- "range": [
- 83326,
- 83350
- ],
- "loc": {
- "start": {
- "line": 2295,
- "column": 20
- },
- "end": {
- "line": 2295,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 83304,
- 83368
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 37
- },
- "end": {
- "line": 2296,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 83283,
- 83368
- ],
- "loc": {
- "start": {
- "line": 2294,
- "column": 16
- },
- "end": {
- "line": 2296,
- "column": 17
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83388,
- 83394
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 19
- },
- "end": {
- "line": 2297,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "value",
- "range": [
- 83395,
- 83400
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 26
- },
- "end": {
- "line": 2297,
- "column": 31
- }
- }
- },
- "range": [
- 83388,
- 83400
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 19
- },
- "end": {
- "line": 2297,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83403,
- 83405
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 34
- },
- "end": {
- "line": 2297,
- "column": 36
- }
- }
- },
- "range": [
- 83388,
- 83405
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 19
- },
- "end": {
- "line": 2297,
- "column": 36
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Arr",
- "range": [
- 83429,
- 83432
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 20
- },
- "end": {
- "line": 2298,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "has",
- "range": [
- 83433,
- 83436
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 24
- },
- "end": {
- "line": 2298,
- "column": 27
- }
- }
- },
- "range": [
- 83429,
- 83436
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 20
- },
- "end": {
- "line": 2298,
- "column": 27
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "s",
- "range": [
- 83437,
- 83438
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 28
- },
- "end": {
- "line": 2298,
- "column": 29
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83440,
- 83446
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 31
- },
- "end": {
- "line": 2298,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "value",
- "range": [
- 83447,
- 83452
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 38
- },
- "end": {
- "line": 2298,
- "column": 43
- }
- }
- },
- "range": [
- 83440,
- 83452
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 31
- },
- "end": {
- "line": 2298,
- "column": 43
- }
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 83454,
- 83458
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 45
- },
- "end": {
- "line": 2298,
- "column": 49
- }
- }
- }
- ],
- "range": [
- 83429,
- 83459
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 20
- },
- "end": {
- "line": 2298,
- "column": 50
- }
- }
- },
- "range": [
- 83388,
- 83459
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 19
- },
- "end": {
- "line": 2298,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "option",
- "range": [
- 83482,
- 83488
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 20
- },
- "end": {
- "line": 2299,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "selected",
- "range": [
- 83489,
- 83497
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 27
- },
- "end": {
- "line": 2299,
- "column": 35
- }
- }
- },
- "range": [
- 83482,
- 83497
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 20
- },
- "end": {
- "line": 2299,
- "column": 35
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 83500,
- 83504
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 38
- },
- "end": {
- "line": 2299,
- "column": 42
- }
- }
- },
- "range": [
- 83482,
- 83504
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 20
- },
- "end": {
- "line": 2299,
- "column": 42
- }
- }
- },
- "range": [
- 83482,
- 83505
- ],
- "loc": {
- "start": {
- "line": 2299,
- "column": 20
- },
- "end": {
- "line": 2299,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 83460,
- 83523
- ],
- "loc": {
- "start": {
- "line": 2298,
- "column": 51
- },
- "end": {
- "line": 2300,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 83385,
- 83523
- ],
- "loc": {
- "start": {
- "line": 2297,
- "column": 16
- },
- "end": {
- "line": 2300,
- "column": 17
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "if",
- "range": [
- 83523,
- 83527
- ],
- "loc": {
- "start": {
- "line": 2300,
- "column": 17
- },
- "end": {
- "line": 2300,
- "column": 21
- }
- }
- }
- ]
- }
- ],
- "range": [
- 83116,
- 83541
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 60
- },
- "end": {
- "line": 2301,
- "column": 13
- }
- }
- },
- "range": [
- 83068,
- 83541
- ],
- "loc": {
- "start": {
- "line": 2289,
- "column": 12
- },
- "end": {
- "line": 2301,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " let ct = 0; //keywords counter",
- "range": [
- 83022,
- 83055
- ],
- "loc": {
- "start": {
- "line": 2288,
- "column": 12
- },
- "end": {
- "line": 2288,
- "column": 45
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": "for j",
- "range": [
- 83541,
- 83548
- ],
- "loc": {
- "start": {
- "line": 2301,
- "column": 13
- },
- "end": {
- "line": 2301,
- "column": 20
- }
- }
- }
- ]
- }
- ],
- "range": [
- 82946,
- 83558
- ],
- "loc": {
- "start": {
- "line": 2286,
- "column": 49
- },
- "end": {
- "line": 2302,
- "column": 9
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "checklist",
- "range": [
- 83567,
- 83578
- ],
- "loc": {
- "start": {
- "line": 2303,
- "column": 8
- },
- "end": {
- "line": 2303,
- "column": 19
- }
- }
- }
- ]
- },
- "alternate": {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "fltColType",
- "range": [
- 83595,
- 83605
- ],
- "loc": {
- "start": {
- "line": 2304,
- "column": 16
- },
- "end": {
- "line": 2304,
- "column": 26
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 83610,
- 83614
- ],
- "loc": {
- "start": {
- "line": 2304,
- "column": 31
- },
- "end": {
- "line": 2304,
- "column": 35
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeCheckList",
- "range": [
- 83615,
- 83631
- ],
- "loc": {
- "start": {
- "line": 2304,
- "column": 36
- },
- "end": {
- "line": 2304,
- "column": 52
- }
- }
- },
- "range": [
- 83610,
- 83631
- ],
- "loc": {
- "start": {
- "line": 2304,
- "column": 31
- },
- "end": {
- "line": 2304,
- "column": 52
- }
- }
- },
- "range": [
- 83595,
- 83631
- ],
- "loc": {
- "start": {
- "line": 2304,
- "column": 16
- },
- "end": {
- "line": 2304,
- "column": 52
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "Identifier",
- "name": "searcharg",
- "range": [
- 83646,
- 83655
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 12
- },
- "end": {
- "line": 2305,
- "column": 21
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 83658,
- 83661
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 24
- },
- "end": {
- "line": 2305,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 83662,
- 83671
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 28
- },
- "end": {
- "line": 2305,
- "column": 37
- }
- }
- },
- "range": [
- 83658,
- 83671
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 24
- },
- "end": {
- "line": 2305,
- "column": 37
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "searcharg",
- "range": [
- 83672,
- 83681
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 38
- },
- "end": {
- "line": 2305,
- "column": 47
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 83683,
- 83687
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 49
- },
- "end": {
- "line": 2305,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "caseSensitive",
- "range": [
- 83688,
- 83701
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 54
- },
- "end": {
- "line": 2305,
- "column": 67
- }
- }
- },
- "range": [
- 83683,
- 83701
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 49
- },
- "end": {
- "line": 2305,
- "column": 67
- }
- }
- }
- ],
- "range": [
- 83658,
- 83702
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 24
- },
- "end": {
- "line": 2305,
- "column": 68
- }
- }
- },
- "range": [
- 83646,
- 83702
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 12
- },
- "end": {
- "line": 2305,
- "column": 68
- }
- }
- },
- "range": [
- 83646,
- 83703
- ],
- "loc": {
- "start": {
- "line": 2305,
- "column": 12
- },
- "end": {
- "line": 2305,
- "column": 69
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "sarg",
- "range": [
- 83720,
- 83724
- ],
- "loc": {
- "start": {
- "line": 2306,
- "column": 16
- },
- "end": {
- "line": 2306,
- "column": 20
- }
- }
- },
- "init": {
"type": "CallExpression",
"callee": {
"type": "MemberExpression",
"computed": false,
"object": {
"type": "Identifier",
- "name": "searcharg",
+ "name": "Types",
"range": [
- 83727,
- 83736
+ 66650,
+ 66655
],
"loc": {
"start": {
- "line": 2306,
- "column": 23
+ "line": 1895,
+ "column": 25
},
"end": {
- "line": 2306,
- "column": 32
+ "line": 1895,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 66656,
+ 66663
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 31
+ },
+ "end": {
+ "line": 1895,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 66650,
+ 66663
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 25
+ },
+ "end": {
+ "line": 1895,
+ "column": 38
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 66664,
+ 66669
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 39
+ },
+ "end": {
+ "line": 1895,
+ "column": 44
+ }
+ }
+ }
+ ],
+ "range": [
+ 66650,
+ 66670
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 25
+ },
+ "end": {
+ "line": 1895,
+ "column": 45
+ }
+ }
+ },
+ "consequent": {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 66673,
+ 66678
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 48
+ },
+ "end": {
+ "line": 1895,
+ "column": 53
+ }
+ }
+ },
+ "alternate": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 66697,
+ 66702
+ ],
+ "loc": {
+ "start": {
+ "line": 1896,
+ "column": 16
+ },
+ "end": {
+ "line": 1896,
+ "column": 21
}
}
},
@@ -185351,32 +149586,32 @@
"type": "Identifier",
"name": "split",
"range": [
- 83737,
- 83742
+ 66703,
+ 66708
],
"loc": {
"start": {
- "line": 2306,
- "column": 33
+ "line": 1896,
+ "column": 22
},
"end": {
- "line": 2306,
- "column": 38
+ "line": 1896,
+ "column": 27
}
}
},
"range": [
- 83727,
- 83742
+ 66697,
+ 66708
],
"loc": {
"start": {
- "line": 2306,
- "column": 23
+ "line": 1896,
+ "column": 16
},
"end": {
- "line": 2306,
- "column": 38
+ "line": 1896,
+ "column": 27
}
}
},
@@ -185392,17 +149627,17 @@
"value": " ",
"raw": "' '",
"range": [
- 83743,
- 83746
+ 66709,
+ 66712
],
"loc": {
"start": {
- "line": 2306,
- "column": 39
+ "line": 1896,
+ "column": 28
},
"end": {
- "line": 2306,
- "column": 42
+ "line": 1896,
+ "column": 31
}
}
},
@@ -185412,17 +149647,17 @@
"object": {
"type": "ThisExpression",
"range": [
- 83747,
- 83751
+ 66713,
+ 66717
],
"loc": {
"start": {
- "line": 2306,
- "column": 43
+ "line": 1896,
+ "column": 32
},
"end": {
- "line": 2306,
- "column": 47
+ "line": 1896,
+ "column": 36
}
}
},
@@ -185430,47 +149665,47 @@
"type": "Identifier",
"name": "orOperator",
"range": [
- 83752,
- 83762
+ 66718,
+ 66728
],
"loc": {
"start": {
- "line": 2306,
- "column": 48
+ "line": 1896,
+ "column": 37
},
"end": {
- "line": 2306,
- "column": 58
+ "line": 1896,
+ "column": 47
}
}
},
"range": [
- 83747,
- 83762
+ 66713,
+ 66728
],
"loc": {
"start": {
- "line": 2306,
- "column": 43
+ "line": 1896,
+ "column": 32
},
"end": {
- "line": 2306,
- "column": 58
+ "line": 1896,
+ "column": 47
}
}
},
"range": [
- 83743,
- 83762
+ 66709,
+ 66728
],
"loc": {
"start": {
- "line": 2306,
- "column": 39
+ "line": 1896,
+ "column": 28
},
"end": {
- "line": 2306,
- "column": 58
+ "line": 1896,
+ "column": 47
}
}
},
@@ -185479,83 +149714,890 @@
"value": " ",
"raw": "' '",
"range": [
- 83763,
- 83766
+ 66729,
+ 66732
],
"loc": {
"start": {
- "line": 2306,
- "column": 59
+ "line": 1896,
+ "column": 48
},
"end": {
- "line": 2306,
- "column": 62
+ "line": 1896,
+ "column": 51
}
}
},
"range": [
- 83743,
- 83766
+ 66709,
+ 66732
],
"loc": {
"start": {
- "line": 2306,
- "column": 39
+ "line": 1896,
+ "column": 28
},
"end": {
- "line": 2306,
- "column": 62
+ "line": 1896,
+ "column": 51
}
}
}
],
"range": [
- 83727,
- 83767
+ 66697,
+ 66733
],
"loc": {
"start": {
- "line": 2306,
- "column": 23
+ "line": 1896,
+ "column": 16
},
"end": {
- "line": 2306,
- "column": 63
+ "line": 1896,
+ "column": 52
}
}
},
"range": [
- 83720,
- 83767
+ 66650,
+ 66733
],
"loc": {
"start": {
- "line": 2306,
+ "line": 1895,
+ "column": 25
+ },
+ "end": {
+ "line": 1896,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 66641,
+ 66733
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 16
+ },
+ "end": {
+ "line": 1896,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 66637,
+ 66734
+ ],
+ "loc": {
+ "start": {
+ "line": 1895,
+ "column": 12
+ },
+ "end": {
+ "line": 1896,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66751,
+ 66755
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 15
+ },
+ "end": {
+ "line": 1898,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "loadFltOnDemand",
+ "range": [
+ 66756,
+ 66771
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 20
+ },
+ "end": {
+ "line": 1898,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 66751,
+ 66771
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 15
+ },
+ "end": {
+ "line": 1898,
+ "column": 35
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66776,
+ 66780
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 40
+ },
+ "end": {
+ "line": 1898,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 66781,
+ 66792
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 45
+ },
+ "end": {
+ "line": 1898,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 66776,
+ 66792
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 40
+ },
+ "end": {
+ "line": 1898,
+ "column": 56
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 66775,
+ 66792
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 39
+ },
+ "end": {
+ "line": 1898,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 66751,
+ 66792
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 15
+ },
+ "end": {
+ "line": 1898,
+ "column": 56
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66811,
+ 66815
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 16
+ },
+ "end": {
+ "line": 1899,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 66816,
+ 66823
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 21
+ },
+ "end": {
+ "line": 1899,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 66811,
+ 66823
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 16
+ },
+ "end": {
+ "line": 1899,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 66824,
+ 66828
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 29
+ },
+ "end": {
+ "line": 1899,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 66811,
+ 66828
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 16
+ },
+ "end": {
+ "line": 1899,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "build-select-filter",
+ "raw": "'build-select-filter'",
+ "range": [
+ 66829,
+ 66850
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 34
+ },
+ "end": {
+ "line": 1899,
+ "column": 55
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 66852,
+ 66856
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 57
+ },
+ "end": {
+ "line": 1899,
+ "column": 61
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 66858,
+ 66863
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 63
+ },
+ "end": {
+ "line": 1899,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66885,
+ 66889
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 20
+ },
+ "end": {
+ "line": 1900,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkedFilters",
+ "range": [
+ 66890,
+ 66903
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 25
+ },
+ "end": {
+ "line": 1900,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 66885,
+ 66903
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 20
+ },
+ "end": {
+ "line": 1900,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66905,
+ 66909
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 40
+ },
+ "end": {
+ "line": 1900,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 66910,
+ 66923
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 45
+ },
+ "end": {
+ "line": 1900,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 66905,
+ 66923
+ ],
+ "loc": {
+ "start": {
+ "line": 1900,
+ "column": 40
+ },
+ "end": {
+ "line": 1900,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 66811,
+ 66924
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
+ "column": 16
+ },
+ "end": {
+ "line": 1900,
+ "column": 59
+ }
+ }
+ },
+ "range": [
+ 66811,
+ 66925
+ ],
+ "loc": {
+ "start": {
+ "line": 1899,
"column": 16
},
"end": {
- "line": 2306,
- "column": 63
+ "line": 1900,
+ "column": 60
}
}
}
],
- "kind": "let",
"range": [
- 83716,
- 83768
+ 66793,
+ 66939
],
"loc": {
"start": {
- "line": 2306,
- "column": 12
+ "line": 1898,
+ "column": 57
},
"end": {
- "line": 2306,
- "column": 64
+ "line": 1901,
+ "column": 13
}
}
},
+ "alternate": null,
+ "range": [
+ 66748,
+ 66939
+ ],
+ "loc": {
+ "start": {
+ "line": 1898,
+ "column": 12
+ },
+ "end": {
+ "line": 1901,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 66953,
+ 66957
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 12
+ },
+ "end": {
+ "line": 1903,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 66958,
+ 66965
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 17
+ },
+ "end": {
+ "line": 1903,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 66953,
+ 66965
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 12
+ },
+ "end": {
+ "line": 1903,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 66966,
+ 66970
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 25
+ },
+ "end": {
+ "line": 1903,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 66953,
+ 66970
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 12
+ },
+ "end": {
+ "line": 1903,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "select-options",
+ "raw": "'select-options'",
+ "range": [
+ 66971,
+ 66987
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 30
+ },
+ "end": {
+ "line": 1903,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 66989,
+ 66993
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 48
+ },
+ "end": {
+ "line": 1903,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 66995,
+ 67000
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 54
+ },
+ "end": {
+ "line": 1903,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 67002,
+ 67008
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 61
+ },
+ "end": {
+ "line": 1903,
+ "column": 67
+ }
+ }
+ }
+ ],
+ "range": [
+ 66953,
+ 67009
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 12
+ },
+ "end": {
+ "line": 1903,
+ "column": 68
+ }
+ }
+ },
+ "range": [
+ 66953,
+ 67010
+ ],
+ "loc": {
+ "start": {
+ "line": 1903,
+ "column": 12
+ },
+ "end": {
+ "line": 1903,
+ "column": 69
+ }
+ }
+ }
+ ],
+ "range": [
+ 66623,
+ 67020
+ ],
+ "loc": {
+ "start": {
+ "line": 1894,
+ "column": 49
+ },
+ "end": {
+ "line": 1904,
+ "column": 9
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": "checklist",
+ "range": [
+ 67029,
+ 67040
+ ],
+ "loc": {
+ "start": {
+ "line": 1905,
+ "column": 8
+ },
+ "end": {
+ "line": 1905,
+ "column": 19
+ }
+ }
+ }
+ ]
+ },
+ "alternate": {
+ "type": "IfStatement",
+ "test": {
+ "type": "BinaryExpression",
+ "operator": "===",
+ "left": {
+ "type": "Identifier",
+ "name": "fltColType",
+ "range": [
+ 67057,
+ 67067
+ ],
+ "loc": {
+ "start": {
+ "line": 1906,
+ "column": 16
+ },
+ "end": {
+ "line": 1906,
+ "column": 26
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67072,
+ 67076
+ ],
+ "loc": {
+ "start": {
+ "line": 1906,
+ "column": 31
+ },
+ "end": {
+ "line": 1906,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "fltTypeCheckList",
+ "range": [
+ 67077,
+ 67093
+ ],
+ "loc": {
+ "start": {
+ "line": 1906,
+ "column": 36
+ },
+ "end": {
+ "line": 1906,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 67072,
+ 67093
+ ],
+ "loc": {
+ "start": {
+ "line": 1906,
+ "column": 31
+ },
+ "end": {
+ "line": 1906,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 67057,
+ 67093
+ ],
+ "loc": {
+ "start": {
+ "line": 1906,
+ "column": 16
+ },
+ "end": {
+ "line": 1906,
+ "column": 52
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
{
"type": "VariableDeclaration",
"declarations": [
@@ -185563,1500 +150605,690 @@
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
- "name": "lisNb",
+ "name": "values",
"range": [
- 83785,
- 83790
+ 67112,
+ 67118
],
"loc": {
"start": {
- "line": 2307,
+ "line": 1907,
"column": 16
},
"end": {
- "line": 2307,
- "column": 21
+ "line": 1907,
+ "column": 22
}
}
},
"init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 83793,
- 83796
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 24
- },
- "end": {
- "line": 2307,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tag",
- "range": [
- 83797,
- 83800
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 28
- },
- "end": {
- "line": 2307,
- "column": 31
- }
- }
- },
- "range": [
- 83793,
- 83800
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 24
- },
- "end": {
- "line": 2307,
- "column": 31
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 83801,
- 83804
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 32
- },
- "end": {
- "line": 2307,
- "column": 35
- }
- }
- },
- {
- "type": "Literal",
- "value": "li",
- "raw": "'li'",
- "range": [
- 83805,
- 83809
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 36
- },
- "end": {
- "line": 2307,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 83793,
- 83810
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 24
- },
- "end": {
- "line": 2307,
- "column": 41
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 83811,
- 83817
- ],
- "loc": {
- "start": {
- "line": 2307,
- "column": 42
- },
- "end": {
- "line": 2307,
- "column": 48
- }
- }
- },
+ "type": "ArrayExpression",
+ "elements": [],
"range": [
- 83793,
- 83817
+ 67121,
+ 67123
],
"loc": {
"start": {
- "line": 2307,
- "column": 24
+ "line": 1907,
+ "column": 25
},
"end": {
- "line": 2307,
- "column": 48
+ "line": 1907,
+ "column": 27
}
}
},
"range": [
- 83785,
- 83817
+ 67112,
+ 67123
],
"loc": {
"start": {
- "line": 2307,
+ "line": 1907,
"column": 16
},
"end": {
- "line": 2307,
- "column": 48
+ "line": 1907,
+ "column": 27
}
}
}
],
"kind": "let",
"range": [
- 83781,
- 83818
+ 67108,
+ 67124
],
"loc": {
"start": {
- "line": 2307,
+ "line": 1907,
"column": 12
},
"end": {
- "line": 2307,
- "column": 49
+ "line": 1907,
+ "column": 28
}
}
},
{
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
+ "type": "IfStatement",
+ "test": {
+ "type": "LogicalExpression",
+ "operator": "&&",
+ "left": {
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "Identifier",
- "name": "slc",
+ "type": "ThisExpression",
"range": [
- 83832,
- 83835
+ 67140,
+ 67144
],
"loc": {
"start": {
- "line": 2309,
- "column": 12
+ "line": 1908,
+ "column": 15
},
"end": {
- "line": 2309,
- "column": 15
+ "line": 1908,
+ "column": 19
}
}
},
"property": {
"type": "Identifier",
- "name": "setAttribute",
+ "name": "loadFltOnDemand",
"range": [
- 83836,
- 83848
+ 67145,
+ 67160
],
"loc": {
"start": {
- "line": 2309,
- "column": 16
- },
- "end": {
- "line": 2309,
- "column": 28
- }
- }
- },
- "range": [
- 83832,
- 83848
- ],
- "loc": {
- "start": {
- "line": 2309,
- "column": 12
- },
- "end": {
- "line": 2309,
- "column": 28
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "value",
- "raw": "'value'",
- "range": [
- 83849,
- 83856
- ],
- "loc": {
- "start": {
- "line": 2309,
- "column": 29
- },
- "end": {
- "line": 2309,
- "column": 36
- }
- }
- },
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83858,
- 83860
- ],
- "loc": {
- "start": {
- "line": 2309,
- "column": 38
- },
- "end": {
- "line": 2309,
- "column": 40
- }
- }
- }
- ],
- "range": [
- 83832,
- 83861
- ],
- "loc": {
- "start": {
- "line": 2309,
- "column": 12
- },
- "end": {
- "line": 2309,
- "column": 41
- }
- }
- },
- "range": [
- 83832,
- 83862
- ],
- "loc": {
- "start": {
- "line": 2309,
- "column": 12
- },
- "end": {
- "line": 2309,
- "column": 42
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 83875,
- 83878
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 12
- },
- "end": {
- "line": 2310,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setAttribute",
- "range": [
- 83879,
- 83891
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 16
- },
- "end": {
- "line": 2310,
- "column": 28
- }
- }
- },
- "range": [
- 83875,
- 83891
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 12
- },
- "end": {
- "line": 2310,
- "column": 28
- }
- }
- },
- "arguments": [
- {
- "type": "Literal",
- "value": "indexes",
- "raw": "'indexes'",
- "range": [
- 83892,
- 83901
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 29
- },
- "end": {
- "line": 2310,
- "column": 38
- }
- }
- },
- {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 83903,
- 83905
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 40
- },
- "end": {
- "line": 2310,
- "column": 42
- }
- }
- }
- ],
- "range": [
- 83875,
- 83906
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 12
- },
- "end": {
- "line": 2310,
- "column": 43
- }
- }
- },
- "range": [
- 83875,
- 83907
- ],
- "loc": {
- "start": {
- "line": 2310,
- "column": 12
- },
- "end": {
- "line": 2310,
- "column": 44
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "k",
- "range": [
- 83929,
- 83930
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 20
- },
- "end": {
- "line": 2312,
- "column": 21
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 83931,
- 83932
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 22
- },
- "end": {
- "line": 2312,
- "column": 23
- }
- }
- },
- "range": [
- 83929,
- 83932
- ],
- "loc": {
- "start": {
- "line": 2312,
+ "line": 1908,
"column": 20
},
"end": {
- "line": 2312,
- "column": 23
+ "line": 1908,
+ "column": 35
}
}
- }
- ],
- "kind": "let",
- "range": [
- 83925,
- 83932
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 16
},
- "end": {
- "line": 2312,
- "column": 23
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "k",
"range": [
- 83934,
- 83935
+ 67140,
+ 67160
],
"loc": {
"start": {
- "line": 2312,
- "column": 25
+ "line": 1908,
+ "column": 15
},
"end": {
- "line": 2312,
- "column": 26
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "lisNb",
- "range": [
- 83936,
- 83941
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 27
- },
- "end": {
- "line": 2312,
- "column": 32
- }
- }
- },
- "range": [
- 83934,
- 83941
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 25
- },
- "end": {
- "line": 2312,
- "column": 32
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "k",
- "range": [
- 83943,
- 83944
- ],
- "loc": {
- "start": {
- "line": 2312,
- "column": 34
- },
- "end": {
- "line": 2312,
+ "line": 1908,
"column": 35
}
}
},
- "prefix": false,
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67165,
+ 67169
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 40
+ },
+ "end": {
+ "line": 1908,
+ "column": 44
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "initialized",
+ "range": [
+ 67170,
+ 67181
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 45
+ },
+ "end": {
+ "line": 1908,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 67165,
+ 67181
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 40
+ },
+ "end": {
+ "line": 1908,
+ "column": 56
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 67164,
+ 67181
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 39
+ },
+ "end": {
+ "line": 1908,
+ "column": 56
+ }
+ }
+ },
"range": [
- 83943,
- 83946
+ 67140,
+ 67181
],
"loc": {
"start": {
- "line": 2312,
- "column": 34
+ "line": 1908,
+ "column": 15
},
"end": {
- "line": 2312,
- "column": 37
+ "line": 1908,
+ "column": 56
}
}
},
- "body": {
+ "consequent": {
"type": "BlockStatement",
"body": [
{
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "li",
- "range": [
- 83969,
- 83971
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 20
- },
- "end": {
- "line": 2313,
- "column": 22
- }
- }
- },
- "init": {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
"type": "MemberExpression",
- "computed": true,
+ "computed": false,
"object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 83974,
- 83977
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 25
- },
- "end": {
- "line": 2313,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tag",
- "range": [
- 83978,
- 83981
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 29
- },
- "end": {
- "line": 2313,
- "column": 32
- }
- }
- },
- "range": [
- 83974,
- 83981
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 25
- },
- "end": {
- "line": 2313,
- "column": 32
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "slc",
- "range": [
- 83982,
- 83985
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 33
- },
- "end": {
- "line": 2313,
- "column": 36
- }
- }
- },
- {
- "type": "Literal",
- "value": "li",
- "raw": "'li'",
- "range": [
- 83986,
- 83990
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 37
- },
- "end": {
- "line": 2313,
- "column": 41
- }
- }
- }
- ],
+ "type": "ThisExpression",
"range": [
- 83974,
- 83991
+ 67200,
+ 67204
],
"loc": {
"start": {
- "line": 2313,
- "column": 25
+ "line": 1909,
+ "column": 16
},
"end": {
- "line": 2313,
- "column": 42
+ "line": 1909,
+ "column": 20
}
}
},
"property": {
"type": "Identifier",
- "name": "k",
+ "name": "emitter",
"range": [
- 83992,
- 83993
+ 67205,
+ 67212
],
"loc": {
"start": {
- "line": 2313,
- "column": 43
+ "line": 1909,
+ "column": 21
},
"end": {
- "line": 2313,
- "column": 44
+ "line": 1909,
+ "column": 28
}
}
},
"range": [
- 83974,
- 83994
+ 67200,
+ 67212
],
"loc": {
"start": {
- "line": 2313,
- "column": 25
+ "line": 1909,
+ "column": 16
},
"end": {
- "line": 2313,
- "column": 45
+ "line": 1909,
+ "column": 28
}
}
},
- "range": [
- 83969,
- 83994
- ],
- "loc": {
- "start": {
- "line": 2313,
- "column": 20
- },
- "end": {
- "line": 2313,
- "column": 45
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
+ "property": {
"type": "Identifier",
- "name": "lbl",
+ "name": "emit",
"range": [
- 84016,
- 84019
+ 67213,
+ 67217
],
"loc": {
"start": {
- "line": 2314,
- "column": 20
- },
- "end": {
- "line": 2314,
- "column": 23
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 84022,
- 84025
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 26
- },
- "end": {
- "line": 2314,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tag",
- "range": [
- 84026,
- 84029
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 30
- },
- "end": {
- "line": 2314,
- "column": 33
- }
- }
- },
- "range": [
- 84022,
- 84029
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 26
- },
- "end": {
- "line": 2314,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "li",
- "range": [
- 84030,
- 84032
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 34
- },
- "end": {
- "line": 2314,
- "column": 36
- }
- }
- },
- {
- "type": "Literal",
- "value": "label",
- "raw": "'label'",
- "range": [
- 84033,
- 84040
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 37
- },
- "end": {
- "line": 2314,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 84022,
- 84041
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 26
- },
- "end": {
- "line": 2314,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 84042,
- 84043
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 46
- },
- "end": {
- "line": 2314,
- "column": 47
- }
- }
- },
- "range": [
- 84022,
- 84044
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 26
- },
- "end": {
- "line": 2314,
- "column": 48
- }
- }
- },
- "range": [
- 84016,
- 84044
- ],
- "loc": {
- "start": {
- "line": 2314,
- "column": 20
- },
- "end": {
- "line": 2314,
- "column": 48
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "chk",
- "range": [
- 84066,
- 84069
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 20
- },
- "end": {
- "line": 2315,
- "column": 23
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 84072,
- 84075
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 26
- },
- "end": {
- "line": 2315,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tag",
- "range": [
- 84076,
- 84079
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 30
- },
- "end": {
- "line": 2315,
- "column": 33
- }
- }
- },
- "range": [
- 84072,
- 84079
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 26
- },
- "end": {
- "line": 2315,
- "column": 33
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "li",
- "range": [
- 84080,
- 84082
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 34
- },
- "end": {
- "line": 2315,
- "column": 36
- }
- }
- },
- {
- "type": "Literal",
- "value": "input",
- "raw": "'input'",
- "range": [
- 84083,
- 84090
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 37
- },
- "end": {
- "line": 2315,
- "column": 44
- }
- }
- }
- ],
- "range": [
- 84072,
- 84091
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 26
- },
- "end": {
- "line": 2315,
- "column": 45
- }
- }
- },
- "property": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 84092,
- 84093
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 46
- },
- "end": {
- "line": 2315,
- "column": 47
- }
- }
- },
- "range": [
- 84072,
- 84094
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 26
- },
- "end": {
- "line": 2315,
- "column": 48
- }
- }
- },
- "range": [
- 84066,
- 84094
- ],
- "loc": {
- "start": {
- "line": 2315,
- "column": 20
- },
- "end": {
- "line": 2315,
- "column": 48
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "lblTxt",
- "range": [
- 84116,
- 84122
- ],
- "loc": {
- "start": {
- "line": 2316,
- "column": 20
- },
- "end": {
- "line": 2316,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Str",
- "range": [
- 84125,
- 84128
- ],
- "loc": {
- "start": {
- "line": 2316,
- "column": 29
- },
- "end": {
- "line": 2316,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "matchCase",
- "range": [
- 84129,
- 84138
- ],
- "loc": {
- "start": {
- "line": 2316,
- "column": 33
- },
- "end": {
- "line": 2316,
- "column": 42
- }
- }
- },
- "range": [
- 84125,
- 84138
- ],
- "loc": {
- "start": {
- "line": 2316,
- "column": 29
- },
- "end": {
- "line": 2316,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 84164,
- 84167
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 24
- },
- "end": {
- "line": 2317,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getText",
- "range": [
- 84168,
- 84175
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 28
- },
- "end": {
- "line": 2317,
- "column": 35
- }
- }
- },
- "range": [
- 84164,
- 84175
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 24
- },
- "end": {
- "line": 2317,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "lbl",
- "range": [
- 84176,
- 84179
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 36
- },
- "end": {
- "line": 2317,
- "column": 39
- }
- }
- }
- ],
- "range": [
- 84164,
- 84180
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 24
- },
- "end": {
- "line": 2317,
- "column": 40
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 84182,
- 84186
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 42
- },
- "end": {
- "line": 2317,
- "column": 46
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "caseSensitive",
- "range": [
- 84187,
- 84200
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 47
- },
- "end": {
- "line": 2317,
- "column": 60
- }
- }
- },
- "range": [
- 84182,
- 84200
- ],
- "loc": {
- "start": {
- "line": 2317,
- "column": 42
- },
- "end": {
- "line": 2317,
- "column": 60
- }
- }
- }
- ],
- "range": [
- 84125,
- 84201
- ],
- "loc": {
- "start": {
- "line": 2316,
+ "line": 1909,
"column": 29
},
"end": {
- "line": 2317,
- "column": 61
+ "line": 1909,
+ "column": 33
}
}
},
"range": [
- 84116,
- 84201
+ 67200,
+ 67217
],
"loc": {
"start": {
- "line": 2316,
- "column": 20
+ "line": 1909,
+ "column": 16
},
"end": {
- "line": 2317,
- "column": 61
+ "line": 1909,
+ "column": 33
}
}
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "build-checklist-filter",
+ "raw": "'build-checklist-filter'",
+ "range": [
+ 67218,
+ 67242
+ ],
+ "loc": {
+ "start": {
+ "line": 1909,
+ "column": 34
+ },
+ "end": {
+ "line": 1909,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 67244,
+ 67248
+ ],
+ "loc": {
+ "start": {
+ "line": 1909,
+ "column": 60
+ },
+ "end": {
+ "line": 1909,
+ "column": 64
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 67250,
+ 67255
+ ],
+ "loc": {
+ "start": {
+ "line": 1909,
+ "column": 66
+ },
+ "end": {
+ "line": 1909,
+ "column": 71
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67277,
+ 67281
+ ],
+ "loc": {
+ "start": {
+ "line": 1910,
+ "column": 20
+ },
+ "end": {
+ "line": 1910,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 67282,
+ 67295
+ ],
+ "loc": {
+ "start": {
+ "line": 1910,
+ "column": 25
+ },
+ "end": {
+ "line": 1910,
+ "column": 38
+ }
+ }
+ },
+ "range": [
+ 67277,
+ 67295
+ ],
+ "loc": {
+ "start": {
+ "line": 1910,
+ "column": 20
+ },
+ "end": {
+ "line": 1910,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 67200,
+ 67296
+ ],
+ "loc": {
+ "start": {
+ "line": 1909,
+ "column": 16
+ },
+ "end": {
+ "line": 1910,
+ "column": 39
+ }
}
- ],
- "kind": "let",
+ },
"range": [
- 83965,
- 84202
+ 67200,
+ 67297
],
"loc": {
"start": {
- "line": 2313,
+ "line": 1909,
"column": 16
},
"end": {
- "line": 2317,
- "column": 62
+ "line": 1910,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "range": [
+ 67182,
+ 67311
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 57
+ },
+ "end": {
+ "line": 1911,
+ "column": 13
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 67137,
+ 67311
+ ],
+ "loc": {
+ "start": {
+ "line": 1908,
+ "column": 12
+ },
+ "end": {
+ "line": 1911,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Types",
+ "range": [
+ 67327,
+ 67332
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 15
+ },
+ "end": {
+ "line": 1912,
+ "column": 20
}
}
},
+ "property": {
+ "type": "Identifier",
+ "name": "isArray",
+ "range": [
+ 67333,
+ 67340
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 21
+ },
+ "end": {
+ "line": 1912,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 67327,
+ 67340
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 15
+ },
+ "end": {
+ "line": 1912,
+ "column": 28
+ }
+ }
+ },
+ "arguments": [
{
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 67341,
+ 67346
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 29
+ },
+ "end": {
+ "line": 1912,
+ "column": 34
+ }
+ }
+ }
+ ],
+ "range": [
+ 67327,
+ 67347
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 15
+ },
+ "end": {
+ "line": 1912,
+ "column": 35
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
"left": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "Identifier",
- "name": "lblTxt",
- "range": [
- 84222,
- 84228
- ],
- "loc": {
- "start": {
- "line": 2318,
- "column": 19
- },
- "end": {
- "line": 2318,
- "column": 25
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 84233,
- 84235
- ],
- "loc": {
- "start": {
- "line": 2318,
- "column": 30
- },
- "end": {
- "line": 2318,
- "column": 32
- }
- }
- },
+ "type": "Identifier",
+ "name": "values",
"range": [
- 84222,
- 84235
+ 67366,
+ 67372
],
"loc": {
"start": {
- "line": 2318,
- "column": 19
+ "line": 1913,
+ "column": 16
},
"end": {
- "line": 2318,
- "column": 32
+ "line": 1913,
+ "column": 22
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 67375,
+ 67380
+ ],
+ "loc": {
+ "start": {
+ "line": 1913,
+ "column": 25
+ },
+ "end": {
+ "line": 1913,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 67366,
+ 67380
+ ],
+ "loc": {
+ "start": {
+ "line": 1913,
+ "column": 16
+ },
+ "end": {
+ "line": 1913,
+ "column": 30
+ }
+ }
+ },
+ "range": [
+ 67366,
+ 67381
+ ],
+ "loc": {
+ "start": {
+ "line": 1913,
+ "column": 16
+ },
+ "end": {
+ "line": 1913,
+ "column": 31
+ }
+ }
+ }
+ ],
+ "range": [
+ 67348,
+ 67395
+ ],
+ "loc": {
+ "start": {
+ "line": 1912,
+ "column": 36
+ },
+ "end": {
+ "line": 1914,
+ "column": 13
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 67419,
+ 67424
+ ],
+ "loc": {
+ "start": {
+ "line": 1915,
+ "column": 16
+ },
+ "end": {
+ "line": 1915,
+ "column": 21
}
}
},
@@ -187067,882 +151299,700 @@
"computed": false,
"object": {
"type": "Identifier",
- "name": "Arr",
+ "name": "Str",
"range": [
- 84239,
- 84242
+ 67427,
+ 67430
],
"loc": {
"start": {
- "line": 2318,
- "column": 36
+ "line": 1915,
+ "column": 24
},
"end": {
- "line": 2318,
- "column": 39
+ "line": 1915,
+ "column": 27
}
}
},
"property": {
"type": "Identifier",
- "name": "has",
+ "name": "matchCase",
"range": [
- 84243,
- 84246
+ 67431,
+ 67440
],
"loc": {
"start": {
- "line": 2318,
- "column": 40
+ "line": 1915,
+ "column": 28
},
"end": {
- "line": 2318,
- "column": 43
+ "line": 1915,
+ "column": 37
}
}
},
"range": [
- 84239,
- 84246
+ 67427,
+ 67440
],
"loc": {
"start": {
- "line": 2318,
- "column": 36
+ "line": 1915,
+ "column": 24
},
"end": {
- "line": 2318,
- "column": 43
+ "line": 1915,
+ "column": 37
}
}
},
"arguments": [
{
"type": "Identifier",
- "name": "sarg",
+ "name": "query",
"range": [
- 84247,
- 84251
+ 67441,
+ 67446
],
"loc": {
"start": {
- "line": 2318,
- "column": 44
+ "line": 1915,
+ "column": 38
},
"end": {
- "line": 2318,
- "column": 48
+ "line": 1915,
+ "column": 43
}
}
},
{
- "type": "Identifier",
- "name": "lblTxt",
- "range": [
- 84253,
- 84259
- ],
- "loc": {
- "start": {
- "line": 2318,
- "column": 50
- },
- "end": {
- "line": 2318,
- "column": 56
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67448,
+ 67452
+ ],
+ "loc": {
+ "start": {
+ "line": 1915,
+ "column": 45
+ },
+ "end": {
+ "line": 1915,
+ "column": 49
+ }
}
- }
- },
- {
- "type": "Literal",
- "value": true,
- "raw": "true",
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "caseSensitive",
+ "range": [
+ 67453,
+ 67466
+ ],
+ "loc": {
+ "start": {
+ "line": 1915,
+ "column": 50
+ },
+ "end": {
+ "line": 1915,
+ "column": 63
+ }
+ }
+ },
"range": [
- 84261,
- 84265
+ 67448,
+ 67466
],
"loc": {
"start": {
- "line": 2318,
- "column": 58
+ "line": 1915,
+ "column": 45
},
"end": {
- "line": 2318,
- "column": 62
+ "line": 1915,
+ "column": 63
}
}
}
],
"range": [
- 84239,
- 84266
+ 67427,
+ 67467
],
"loc": {
"start": {
- "line": 2318,
- "column": 36
+ "line": 1915,
+ "column": 24
},
"end": {
- "line": 2318,
- "column": 63
+ "line": 1915,
+ "column": 64
}
}
},
"range": [
- 84222,
- 84266
+ 67419,
+ 67467
],
"loc": {
"start": {
- "line": 2318,
- "column": 19
+ "line": 1915,
+ "column": 16
},
"end": {
- "line": 2318,
- "column": 63
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "chk",
- "range": [
- 84289,
- 84292
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 20
- },
- "end": {
- "line": 2319,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checked",
- "range": [
- 84293,
- 84300
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 24
- },
- "end": {
- "line": 2319,
- "column": 31
- }
- }
- },
- "range": [
- 84289,
- 84300
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 20
- },
- "end": {
- "line": 2319,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 84303,
- 84307
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 34
- },
- "end": {
- "line": 2319,
- "column": 38
- }
- }
- },
- "range": [
- 84289,
- 84307
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 20
- },
- "end": {
- "line": 2319,
- "column": 38
- }
- }
- },
- "range": [
- 84289,
- 84308
- ],
- "loc": {
- "start": {
- "line": 2319,
- "column": 20
- },
- "end": {
- "line": 2319,
- "column": 39
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 84329,
- 84333
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 84334,
- 84337
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 25
- },
- "end": {
- "line": 2320,
- "column": 28
- }
- }
- },
- "range": [
- 84329,
- 84337
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 84338,
- 84347
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 29
- },
- "end": {
- "line": 2320,
- "column": 38
- }
- }
- },
- "range": [
- 84329,
- 84347
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setCheckListValues",
- "range": [
- 84348,
- 84366
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 39
- },
- "end": {
- "line": 2320,
- "column": 57
- }
- }
- },
- "range": [
- 84329,
- 84366
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 57
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "chk",
- "range": [
- 84367,
- 84370
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 58
- },
- "end": {
- "line": 2320,
- "column": 61
- }
- }
- }
- ],
- "range": [
- 84329,
- 84371
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 62
- }
- }
- },
- "range": [
- 84329,
- 84372
- ],
- "loc": {
- "start": {
- "line": 2320,
- "column": 20
- },
- "end": {
- "line": 2320,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 84267,
- 84390
- ],
- "loc": {
- "start": {
- "line": 2318,
+ "line": 1915,
"column": 64
- },
- "end": {
- "line": 2321,
- "column": 17
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "chk",
- "range": [
- 84433,
- 84436
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 20
- },
- "end": {
- "line": 2323,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checked",
- "range": [
- 84437,
- 84444
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 24
- },
- "end": {
- "line": 2323,
- "column": 31
- }
- }
- },
- "range": [
- 84433,
- 84444
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 20
- },
- "end": {
- "line": 2323,
- "column": 31
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": false,
- "raw": "false",
- "range": [
- 84447,
- 84452
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 34
- },
- "end": {
- "line": 2323,
- "column": 39
- }
- }
- },
- "range": [
- 84433,
- 84452
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 20
- },
- "end": {
- "line": 2323,
- "column": 39
- }
- }
- },
- "range": [
- 84433,
- 84453
- ],
- "loc": {
- "start": {
- "line": 2323,
- "column": 20
- },
- "end": {
- "line": 2323,
- "column": 40
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 84474,
- 84478
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 84479,
- 84482
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 25
- },
- "end": {
- "line": 2324,
- "column": 28
- }
- }
- },
- "range": [
- 84474,
- 84482
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 84483,
- 84492
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 29
- },
- "end": {
- "line": 2324,
- "column": 38
- }
- }
- },
- "range": [
- 84474,
- 84492
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 38
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "setCheckListValues",
- "range": [
- 84493,
- 84511
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 39
- },
- "end": {
- "line": 2324,
- "column": 57
- }
- }
- },
- "range": [
- 84474,
- 84511
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 57
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "chk",
- "range": [
- 84512,
- 84515
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 58
- },
- "end": {
- "line": 2324,
- "column": 61
- }
- }
- }
- ],
- "range": [
- 84474,
- 84516
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 62
- }
- }
- },
- "range": [
- 84474,
- 84517
- ],
- "loc": {
- "start": {
- "line": 2324,
- "column": 20
- },
- "end": {
- "line": 2324,
- "column": 63
- }
- }
- }
- ],
- "range": [
- 84411,
- 84535
- ],
- "loc": {
- "start": {
- "line": 2322,
- "column": 20
- },
- "end": {
- "line": 2325,
- "column": 17
}
}
},
"range": [
- 84219,
- 84535
+ 67419,
+ 67468
],
"loc": {
"start": {
- "line": 2318,
+ "line": 1915,
"column": 16
},
"end": {
- "line": 2325,
- "column": 17
+ "line": 1915,
+ "column": 65
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 67485,
+ 67491
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 16
+ },
+ "end": {
+ "line": 1916,
+ "column": 22
+ }
+ }
+ },
+ "right": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "query",
+ "range": [
+ 67494,
+ 67499
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 25
+ },
+ "end": {
+ "line": 1916,
+ "column": 30
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "split",
+ "range": [
+ 67500,
+ 67505
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 31
+ },
+ "end": {
+ "line": 1916,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 67494,
+ 67505
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 25
+ },
+ "end": {
+ "line": 1916,
+ "column": 36
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 67506,
+ 67509
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 37
+ },
+ "end": {
+ "line": 1916,
+ "column": 40
+ }
+ }
+ },
+ "right": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67510,
+ 67514
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 41
+ },
+ "end": {
+ "line": 1916,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "orOperator",
+ "range": [
+ 67515,
+ 67525
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 46
+ },
+ "end": {
+ "line": 1916,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 67510,
+ 67525
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 41
+ },
+ "end": {
+ "line": 1916,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 67506,
+ 67525
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 37
+ },
+ "end": {
+ "line": 1916,
+ "column": 56
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": " ",
+ "raw": "' '",
+ "range": [
+ 67526,
+ 67529
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 57
+ },
+ "end": {
+ "line": 1916,
+ "column": 60
+ }
+ }
+ },
+ "range": [
+ 67506,
+ 67529
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 37
+ },
+ "end": {
+ "line": 1916,
+ "column": 60
+ }
+ }
+ }
+ ],
+ "range": [
+ 67494,
+ 67530
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 25
+ },
+ "end": {
+ "line": 1916,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 67485,
+ 67530
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 16
+ },
+ "end": {
+ "line": 1916,
+ "column": 61
+ }
+ }
+ },
+ "range": [
+ 67485,
+ 67531
+ ],
+ "loc": {
+ "start": {
+ "line": 1916,
+ "column": 16
+ },
+ "end": {
+ "line": 1916,
+ "column": 62
}
}
}
],
"range": [
- 83947,
- 84549
+ 67401,
+ 67545
],
"loc": {
"start": {
- "line": 2312,
- "column": 38
+ "line": 1914,
+ "column": 19
},
"end": {
- "line": 2326,
+ "line": 1917,
"column": 13
}
}
},
"range": [
- 83921,
- 84549
+ 67324,
+ 67545
],
"loc": {
"start": {
- "line": 2312,
+ "line": 1912,
"column": 12
},
"end": {
- "line": 2326,
+ "line": 1917,
"column": 13
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 67559,
+ 67563
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 12
+ },
+ "end": {
+ "line": 1919,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 67564,
+ 67571
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 17
+ },
+ "end": {
+ "line": 1919,
+ "column": 24
+ }
+ }
+ },
+ "range": [
+ 67559,
+ 67571
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 12
+ },
+ "end": {
+ "line": 1919,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 67572,
+ 67576
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 25
+ },
+ "end": {
+ "line": 1919,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 67559,
+ 67576
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 12
+ },
+ "end": {
+ "line": 1919,
+ "column": 29
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "select-checklist-options",
+ "raw": "'select-checklist-options'",
+ "range": [
+ 67577,
+ 67603
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 30
+ },
+ "end": {
+ "line": 1919,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 67605,
+ 67609
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 58
+ },
+ "end": {
+ "line": 1919,
+ "column": 62
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "index",
+ "range": [
+ 67611,
+ 67616
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 64
+ },
+ "end": {
+ "line": 1919,
+ "column": 69
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "values",
+ "range": [
+ 67618,
+ 67624
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 71
+ },
+ "end": {
+ "line": 1919,
+ "column": 77
+ }
+ }
+ }
+ ],
+ "range": [
+ 67559,
+ 67625
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 12
+ },
+ "end": {
+ "line": 1919,
+ "column": 78
+ }
+ }
+ },
+ "range": [
+ 67559,
+ 67626
+ ],
+ "loc": {
+ "start": {
+ "line": 1919,
+ "column": 12
+ },
+ "end": {
+ "line": 1919,
+ "column": 79
+ }
+ }
}
],
"range": [
- 83632,
- 84559
+ 67094,
+ 67636
],
"loc": {
"start": {
- "line": 2304,
+ "line": 1906,
"column": 53
},
"end": {
- "line": 2327,
+ "line": 1920,
"column": 9
}
}
},
"alternate": null,
"range": [
- 83592,
- 84559
+ 67054,
+ 67636
],
"loc": {
"start": {
- "line": 2304,
+ "line": 1906,
"column": 13
},
"end": {
- "line": 2327,
+ "line": 1920,
"column": 9
}
},
"leadingComments": [
- {
- "type": "Line",
- "value": "if",
- "range": [
- 83523,
- 83527
- ],
- "loc": {
- "start": {
- "line": 2300,
- "column": 17
- },
- "end": {
- "line": 2300,
- "column": 21
- }
- }
- },
- {
- "type": "Line",
- "value": "for j",
- "range": [
- 83541,
- 83548
- ],
- "loc": {
- "start": {
- "line": 2301,
- "column": 13
- },
- "end": {
- "line": 2301,
- "column": 20
- }
- }
- },
{
"type": "Line",
"value": "checklist",
"range": [
- 83567,
- 83578
+ 67029,
+ 67040
],
"loc": {
"start": {
- "line": 2303,
+ "line": 1905,
"column": 8
},
"end": {
- "line": 2303,
+ "line": 1905,
"column": 19
}
}
@@ -187950,16 +152000,16 @@
]
},
"range": [
- 82910,
- 84559
+ 66587,
+ 67636
],
"loc": {
"start": {
- "line": 2286,
+ "line": 1894,
"column": 13
},
"end": {
- "line": 2327,
+ "line": 1920,
"column": 9
}
},
@@ -187968,16 +152018,16 @@
"type": "Line",
"value": "multiple selects",
"range": [
- 82878,
- 82896
+ 66555,
+ 66573
],
"loc": {
"start": {
- "line": 2285,
+ "line": 1893,
"column": 8
},
"end": {
- "line": 2285,
+ "line": 1893,
"column": 26
}
}
@@ -187985,32 +152035,32 @@
]
},
"range": [
- 82736,
- 84559
+ 66213,
+ 67636
],
"loc": {
"start": {
- "line": 2281,
+ "line": 1885,
"column": 8
},
"end": {
- "line": 2327,
+ "line": 1920,
"column": 9
}
}
}
],
"range": [
- 82500,
- 84565
+ 66045,
+ 67642
],
"loc": {
"start": {
- "line": 2273,
- "column": 39
+ "line": 1878,
+ "column": 35
},
"end": {
- "line": 2328,
+ "line": 1921,
"column": 5
}
}
@@ -188018,16 +152068,16 @@
"generator": false,
"expression": false,
"range": [
- 82479,
- 84565
+ 66028,
+ 67642
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 18
},
"end": {
- "line": 2328,
+ "line": 1921,
"column": 5
}
}
@@ -188035,34 +152085,34 @@
"kind": "method",
"computed": false,
"range": [
- 82465,
- 84565
+ 66014,
+ 67642
],
"loc": {
"start": {
- "line": 2273,
+ "line": 1878,
"column": 4
},
"end": {
- "line": 2328,
+ "line": 1921,
"column": 5
}
},
"leadingComments": [
{
"type": "Block",
- "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String} searcharg Search term\n ",
+ "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String or Array} searcharg Search term\n ",
"range": [
- 82314,
- 82460
+ 65853,
+ 66009
],
"loc": {
"start": {
- "line": 2268,
+ "line": 1873,
"column": 4
},
"end": {
- "line": 2272,
+ "line": 1877,
"column": 7
}
}
@@ -188073,16 +152123,16 @@
"type": "Block",
"value": "*\n * Set them columns' widths as per configuration\n * @param {Number} rowIndex Optional row index to apply the widths to\n * @param {Element} tbl DOM element\n ",
"range": [
- 84571,
- 84749
+ 67648,
+ 67826
],
"loc": {
"start": {
- "line": 2330,
+ "line": 1923,
"column": 4
},
"end": {
- "line": 2334,
+ "line": 1927,
"column": 7
}
}
@@ -188096,16 +152146,16 @@
"type": "Identifier",
"name": "setColWidths",
"range": [
- 84754,
- 84766
+ 67831,
+ 67843
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 4
},
"end": {
- "line": 2335,
+ "line": 1928,
"column": 16
}
}
@@ -188118,16 +152168,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 84767,
- 84775
+ 67844,
+ 67852
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 17
},
"end": {
- "line": 2335,
+ "line": 1928,
"column": 25
}
}
@@ -188136,16 +152186,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 84777,
- 84780
+ 67854,
+ 67857
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 27
},
"end": {
- "line": 2335,
+ "line": 1928,
"column": 30
}
}
@@ -188157,164 +152207,74 @@
{
"type": "IfStatement",
"test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 84795,
- 84799
- ],
- "loc": {
- "start": {
- "line": 2336,
- "column": 12
- },
- "end": {
- "line": 2336,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltGrid",
- "range": [
- 84800,
- 84807
- ],
- "loc": {
- "start": {
- "line": 2336,
- "column": 17
- },
- "end": {
- "line": 2336,
- "column": 24
- }
- }
- },
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 84795,
- 84807
+ 67872,
+ 67876
],
"loc": {
"start": {
- "line": 2336,
+ "line": 1929,
"column": 12
},
"end": {
- "line": 2336,
- "column": 24
+ "line": 1929,
+ "column": 16
}
}
},
- "prefix": true,
- "range": [
- 84794,
- 84807
- ],
- "loc": {
- "start": {
- "line": 2336,
- "column": 11
- },
- "end": {
- "line": 2336,
- "column": 24
- }
- }
- },
- "right": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 84812,
- 84816
- ],
- "loc": {
- "start": {
- "line": 2336,
- "column": 29
- },
- "end": {
- "line": 2336,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "hasColWidths",
- "range": [
- 84817,
- 84829
- ],
- "loc": {
- "start": {
- "line": 2336,
- "column": 34
- },
- "end": {
- "line": 2336,
- "column": 46
- }
- }
- },
+ "property": {
+ "type": "Identifier",
+ "name": "hasColWidths",
"range": [
- 84812,
- 84829
+ 67877,
+ 67889
],
"loc": {
"start": {
- "line": 2336,
- "column": 29
+ "line": 1929,
+ "column": 17
},
"end": {
- "line": 2336,
- "column": 46
+ "line": 1929,
+ "column": 29
}
}
},
- "prefix": true,
"range": [
- 84811,
- 84829
+ 67872,
+ 67889
],
"loc": {
"start": {
- "line": 2336,
- "column": 28
+ "line": 1929,
+ "column": 12
},
"end": {
- "line": 2336,
- "column": 46
+ "line": 1929,
+ "column": 29
}
}
},
+ "prefix": true,
"range": [
- 84794,
- 84829
+ 67871,
+ 67889
],
"loc": {
"start": {
- "line": 2336,
+ "line": 1929,
"column": 11
},
"end": {
- "line": 2336,
- "column": 46
+ "line": 1929,
+ "column": 29
}
}
},
@@ -188325,48 +152285,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 84844,
- 84851
+ 67904,
+ 67911
],
"loc": {
"start": {
- "line": 2337,
+ "line": 1930,
"column": 12
},
"end": {
- "line": 2337,
+ "line": 1930,
"column": 19
}
}
}
],
"range": [
- 84830,
- 84861
+ 67890,
+ 67921
],
"loc": {
"start": {
- "line": 2336,
- "column": 47
+ "line": 1929,
+ "column": 30
},
"end": {
- "line": 2338,
+ "line": 1931,
"column": 9
}
}
},
"alternate": null,
"range": [
- 84791,
- 84861
+ 67868,
+ 67921
],
"loc": {
"start": {
- "line": 2336,
+ "line": 1929,
"column": 8
},
"end": {
- "line": 2338,
+ "line": 1931,
"column": 9
}
}
@@ -188380,16 +152340,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 84870,
- 84873
+ 67930,
+ 67933
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 8
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 11
}
}
@@ -188401,16 +152361,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 84876,
- 84879
+ 67936,
+ 67939
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 14
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 17
}
}
@@ -188421,16 +152381,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 84883,
- 84887
+ 67943,
+ 67947
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 21
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 25
}
}
@@ -188439,76 +152399,76 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 84888,
- 84891
+ 67948,
+ 67951
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 26
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 29
}
}
},
"range": [
- 84883,
- 84891
+ 67943,
+ 67951
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 21
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 29
}
}
},
"range": [
- 84876,
- 84891
+ 67936,
+ 67951
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 14
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 29
}
}
},
"range": [
- 84870,
- 84891
+ 67930,
+ 67951
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 8
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 29
}
}
},
"range": [
- 84870,
- 84892
+ 67930,
+ 67952
],
"loc": {
"start": {
- "line": 2339,
+ "line": 1932,
"column": 8
},
"end": {
- "line": 2339,
+ "line": 1932,
"column": 30
}
}
@@ -188522,32 +152482,32 @@
"type": "Identifier",
"name": "rIndex",
"range": [
- 84905,
- 84911
+ 67965,
+ 67971
],
"loc": {
"start": {
- "line": 2340,
+ "line": 1933,
"column": 12
},
"end": {
- "line": 2340,
+ "line": 1933,
"column": 18
}
}
},
"init": null,
"range": [
- 84905,
- 84911
+ 67965,
+ 67971
],
"loc": {
"start": {
- "line": 2340,
+ "line": 1933,
"column": 12
},
"end": {
- "line": 2340,
+ "line": 1933,
"column": 18
}
}
@@ -188555,16 +152515,16 @@
],
"kind": "let",
"range": [
- 84901,
- 84912
+ 67961,
+ 67972
],
"loc": {
"start": {
- "line": 2340,
+ "line": 1933,
"column": 8
},
"end": {
- "line": 2340,
+ "line": 1933,
"column": 19
}
}
@@ -188578,16 +152538,16 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 84924,
- 84932
+ 67984,
+ 67992
],
"loc": {
"start": {
- "line": 2341,
+ "line": 1934,
"column": 11
},
"end": {
- "line": 2341,
+ "line": 1934,
"column": 19
}
}
@@ -188596,32 +152556,32 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 84935,
- 84944
+ 67997,
+ 68006
],
"loc": {
"start": {
- "line": 2341,
- "column": 22
+ "line": 1934,
+ "column": 24
},
"end": {
- "line": 2341,
- "column": 31
+ "line": 1934,
+ "column": 33
}
}
},
"range": [
- 84924,
- 84944
+ 67984,
+ 68006
],
"loc": {
"start": {
- "line": 2341,
+ "line": 1934,
"column": 11
},
"end": {
- "line": 2341,
- "column": 31
+ "line": 1934,
+ "column": 33
}
}
},
@@ -188637,16 +152597,16 @@
"type": "Identifier",
"name": "rIndex",
"range": [
- 84959,
- 84965
+ 68021,
+ 68027
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 12
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 18
}
}
@@ -188672,16 +152632,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 84968,
- 84971
+ 68030,
+ 68033
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 24
}
}
@@ -188690,31 +152650,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 84972,
- 84976
+ 68034,
+ 68038
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 25
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 29
}
}
},
"range": [
- 84968,
- 84976
+ 68030,
+ 68038
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 29
}
}
@@ -188724,31 +152684,31 @@
"value": 0,
"raw": "0",
"range": [
- 84977,
- 84978
+ 68039,
+ 68040
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 30
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 31
}
}
},
"range": [
- 84968,
- 84979
+ 68030,
+ 68041
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 32
}
}
@@ -188757,31 +152717,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 84980,
- 84985
+ 68042,
+ 68047
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 33
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 38
}
}
},
"range": [
- 84968,
- 84985
+ 68030,
+ 68047
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 38
}
}
@@ -188790,31 +152750,31 @@
"type": "Identifier",
"name": "display",
"range": [
- 84986,
- 84993
+ 68048,
+ 68055
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 39
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 46
}
}
},
"range": [
- 84968,
- 84993
+ 68030,
+ 68055
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 46
}
}
@@ -188824,31 +152784,31 @@
"value": "none",
"raw": "'none'",
"range": [
- 84995,
- 85001
+ 68057,
+ 68063
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 48
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 54
}
}
},
"range": [
- 84968,
- 85001
+ 68030,
+ 68063
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 54
}
}
@@ -188858,16 +152818,16 @@
"value": 0,
"raw": "0",
"range": [
- 85004,
- 85005
+ 68066,
+ 68067
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 57
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 58
}
}
@@ -188877,77 +152837,77 @@
"value": 1,
"raw": "1",
"range": [
- 85008,
- 85009
+ 68070,
+ 68071
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 61
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 62
}
}
},
"range": [
- 84968,
- 85009
+ 68030,
+ 68071
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 21
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 62
}
}
},
"range": [
- 84959,
- 85009
+ 68021,
+ 68071
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 12
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 62
}
}
},
"range": [
- 84959,
- 85010
+ 68021,
+ 68072
],
"loc": {
"start": {
- "line": 2342,
+ "line": 1935,
"column": 12
},
"end": {
- "line": 2342,
+ "line": 1935,
"column": 63
}
}
}
],
"range": [
- 84945,
- 85020
+ 68007,
+ 68082
],
"loc": {
"start": {
- "line": 2341,
- "column": 32
+ "line": 1934,
+ "column": 34
},
"end": {
- "line": 2343,
+ "line": 1936,
"column": 9
}
}
@@ -188964,16 +152924,16 @@
"type": "Identifier",
"name": "rIndex",
"range": [
- 85039,
- 85045
+ 68101,
+ 68107
],
"loc": {
"start": {
- "line": 2344,
+ "line": 1937,
"column": 12
},
"end": {
- "line": 2344,
+ "line": 1937,
"column": 18
}
}
@@ -188982,77 +152942,77 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 85048,
- 85056
+ 68110,
+ 68118
],
"loc": {
"start": {
- "line": 2344,
+ "line": 1937,
"column": 21
},
"end": {
- "line": 2344,
+ "line": 1937,
"column": 29
}
}
},
"range": [
- 85039,
- 85056
+ 68101,
+ 68118
],
"loc": {
"start": {
- "line": 2344,
+ "line": 1937,
"column": 12
},
"end": {
- "line": 2344,
+ "line": 1937,
"column": 29
}
}
},
"range": [
- 85039,
- 85057
+ 68101,
+ 68119
],
"loc": {
"start": {
- "line": 2344,
+ "line": 1937,
"column": 12
},
"end": {
- "line": 2344,
+ "line": 1937,
"column": 30
}
}
}
],
"range": [
- 85025,
- 85067
+ 68087,
+ 68129
],
"loc": {
"start": {
- "line": 2343,
+ "line": 1936,
"column": 14
},
"end": {
- "line": 2345,
+ "line": 1938,
"column": 9
}
}
},
"range": [
- 84921,
- 85067
+ 67981,
+ 68129
],
"loc": {
"start": {
- "line": 2341,
+ "line": 1934,
"column": 8
},
"end": {
- "line": 2345,
+ "line": 1938,
"column": 9
}
}
@@ -189068,16 +153028,16 @@
"type": "Identifier",
"name": "setWidths",
"range": [
- 85077,
- 85086
+ 68139,
+ 68148
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 8
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 17
}
}
@@ -189086,31 +153046,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 85087,
- 85091
+ 68149,
+ 68153
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 18
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 22
}
}
},
"range": [
- 85077,
- 85091
+ 68139,
+ 68153
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 8
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 22
}
}
@@ -189119,47 +153079,47 @@
{
"type": "ThisExpression",
"range": [
- 85092,
- 85096
+ 68154,
+ 68158
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 23
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 27
}
}
}
],
"range": [
- 85077,
- 85097
+ 68139,
+ 68159
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 8
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 28
}
}
},
"range": [
- 85077,
- 85098
+ 68139,
+ 68160
],
"loc": {
"start": {
- "line": 2347,
+ "line": 1940,
"column": 8
},
"end": {
- "line": 2347,
+ "line": 1940,
"column": 29
}
}
@@ -189170,16 +153130,16 @@
"type": "Identifier",
"name": "setWidths",
"range": [
- 85117,
- 85126
+ 68179,
+ 68188
],
"loc": {
"start": {
- "line": 2349,
+ "line": 1942,
"column": 17
},
"end": {
- "line": 2349,
+ "line": 1942,
"column": 26
}
}
@@ -189197,16 +153157,16 @@
"type": "Identifier",
"name": "nbCols",
"range": [
- 85185,
- 85191
+ 68247,
+ 68253
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 16
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 22
}
}
@@ -189217,16 +153177,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 85194,
- 85198
+ 68256,
+ 68260
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 25
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 29
}
}
@@ -189235,46 +153195,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 85199,
- 85206
+ 68261,
+ 68268
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 30
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 37
}
}
},
"range": [
- 85194,
- 85206
+ 68256,
+ 68268
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 25
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 37
}
}
},
"range": [
- 85185,
- 85206
+ 68247,
+ 68268
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 16
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 37
}
}
@@ -189282,16 +153242,16 @@
],
"kind": "let",
"range": [
- 85181,
- 85207
+ 68243,
+ 68269
],
"loc": {
"start": {
- "line": 2351,
+ "line": 1944,
"column": 12
},
"end": {
- "line": 2351,
+ "line": 1944,
"column": 38
}
},
@@ -189300,16 +153260,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 85142,
- 85168
+ 68204,
+ 68230
],
"loc": {
"start": {
- "line": 2350,
+ "line": 1943,
"column": 12
},
"end": {
- "line": 2350,
+ "line": 1943,
"column": 38
}
}
@@ -189325,16 +153285,16 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 85224,
- 85233
+ 68286,
+ 68295
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 16
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 25
}
}
@@ -189345,16 +153305,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 85236,
- 85240
+ 68298,
+ 68302
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 28
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 32
}
}
@@ -189363,46 +153323,46 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 85241,
- 85250
+ 68303,
+ 68312
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 33
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 42
}
}
},
"range": [
- 85236,
- 85250
+ 68298,
+ 68312
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 28
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 42
}
}
},
"range": [
- 85224,
- 85250
+ 68286,
+ 68312
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 16
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 42
}
}
@@ -189410,16 +153370,16 @@
],
"kind": "let",
"range": [
- 85220,
- 85251
+ 68282,
+ 68313
],
"loc": {
"start": {
- "line": 2352,
+ "line": 1945,
"column": 12
},
"end": {
- "line": 2352,
+ "line": 1945,
"column": 43
}
}
@@ -189433,16 +153393,16 @@
"type": "Identifier",
"name": "colTags",
"range": [
- 85268,
- 85275
+ 68330,
+ 68337
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 16
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 23
}
}
@@ -189456,16 +153416,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 85278,
- 85281
+ 68340,
+ 68343
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 26
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 29
}
}
@@ -189474,31 +153434,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 85282,
- 85285
+ 68344,
+ 68347
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 30
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 33
}
}
},
"range": [
- 85278,
- 85285
+ 68340,
+ 68347
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 26
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 33
}
}
@@ -189508,16 +153468,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 85286,
- 85289
+ 68348,
+ 68351
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 34
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 37
}
}
@@ -189527,47 +153487,47 @@
"value": "col",
"raw": "'col'",
"range": [
- 85291,
- 85296
+ 68353,
+ 68358
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 39
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 44
}
}
}
],
"range": [
- 85278,
- 85297
+ 68340,
+ 68359
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 26
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 45
}
}
},
"range": [
- 85268,
- 85297
+ 68330,
+ 68359
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 16
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 45
}
}
@@ -189575,16 +153535,16 @@
],
"kind": "let",
"range": [
- 85264,
- 85298
+ 68326,
+ 68360
],
"loc": {
"start": {
- "line": 2353,
+ "line": 1946,
"column": 12
},
"end": {
- "line": 2353,
+ "line": 1946,
"column": 46
}
}
@@ -189598,16 +153558,16 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 85315,
- 85327
+ 68377,
+ 68389
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 16
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 28
}
}
@@ -189622,16 +153582,16 @@
"type": "Identifier",
"name": "colTags",
"range": [
- 85330,
- 85337
+ 68392,
+ 68399
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 31
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 38
}
}
@@ -189640,31 +153600,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 85338,
- 85344
+ 68400,
+ 68406
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 39
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 45
}
}
},
"range": [
- 85330,
- 85344
+ 68392,
+ 68406
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 31
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 45
}
}
@@ -189674,46 +153634,46 @@
"value": 0,
"raw": "0",
"range": [
- 85347,
- 85348
+ 68409,
+ 68410
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 48
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 49
}
}
},
"range": [
- 85330,
- 85348
+ 68392,
+ 68410
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 31
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 49
}
}
},
"range": [
- 85315,
- 85348
+ 68377,
+ 68410
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 16
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 49
}
}
@@ -189721,16 +153681,16 @@
],
"kind": "let",
"range": [
- 85311,
- 85349
+ 68373,
+ 68411
],
"loc": {
"start": {
- "line": 2354,
+ "line": 1947,
"column": 12
},
"end": {
- "line": 2354,
+ "line": 1947,
"column": 50
}
}
@@ -189744,16 +153704,16 @@
"type": "Identifier",
"name": "frag",
"range": [
- 85366,
- 85370
+ 68428,
+ 68432
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 16
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 20
}
}
@@ -189767,32 +153727,32 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 85374,
- 85386
+ 68436,
+ 68448
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 24
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 36
}
}
},
"prefix": true,
"range": [
- 85373,
- 85386
+ 68435,
+ 68448
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 23
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 36
}
}
@@ -189806,16 +153766,16 @@
"type": "Identifier",
"name": "doc",
"range": [
- 85389,
- 85392
+ 68451,
+ 68454
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 39
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 42
}
}
@@ -189824,47 +153784,47 @@
"type": "Identifier",
"name": "createDocumentFragment",
"range": [
- 85393,
- 85415
+ 68455,
+ 68477
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 43
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 65
}
}
},
"range": [
- 85389,
- 85415
+ 68451,
+ 68477
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 39
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 65
}
}
},
"arguments": [],
"range": [
- 85389,
- 85417
+ 68451,
+ 68479
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 39
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 67
}
}
@@ -189874,46 +153834,46 @@
"value": null,
"raw": "null",
"range": [
- 85420,
- 85424
+ 68482,
+ 68486
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 70
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 74
}
}
},
"range": [
- 85373,
- 85424
+ 68435,
+ 68486
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 23
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 74
}
}
},
"range": [
- 85366,
- 85424
+ 68428,
+ 68486
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 16
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 74
}
}
@@ -189921,16 +153881,16 @@
],
"kind": "let",
"range": [
- 85362,
- 85425
+ 68424,
+ 68487
],
"loc": {
"start": {
- "line": 2355,
+ "line": 1948,
"column": 12
},
"end": {
- "line": 2355,
+ "line": 1948,
"column": 75
}
}
@@ -189946,16 +153906,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 85446,
- 85447
+ 68508,
+ 68509
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 20
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 21
}
}
@@ -189965,31 +153925,31 @@
"value": 0,
"raw": "0",
"range": [
- 85448,
- 85449
+ 68510,
+ 68511
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 22
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 23
}
}
},
"range": [
- 85446,
- 85449
+ 68508,
+ 68511
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 20
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 23
}
}
@@ -189997,16 +153957,16 @@
],
"kind": "let",
"range": [
- 85442,
- 85449
+ 68504,
+ 68511
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 16
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 23
}
}
@@ -190018,16 +153978,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 85451,
- 85452
+ 68513,
+ 68514
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 25
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 26
}
}
@@ -190036,31 +153996,31 @@
"type": "Identifier",
"name": "nbCols",
"range": [
- 85453,
- 85459
+ 68515,
+ 68521
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 27
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 33
}
}
},
"range": [
- 85451,
- 85459
+ 68513,
+ 68521
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 25
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 33
}
}
@@ -190072,32 +154032,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 85461,
- 85462
+ 68523,
+ 68524
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 35
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 36
}
}
},
"prefix": false,
"range": [
- 85461,
- 85464
+ 68523,
+ 68526
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 35
},
"end": {
- "line": 2356,
+ "line": 1949,
"column": 38
}
}
@@ -190114,32 +154074,32 @@
"type": "Identifier",
"name": "col",
"range": [
- 85487,
- 85490
+ 68549,
+ 68552
],
"loc": {
"start": {
- "line": 2357,
+ "line": 1950,
"column": 20
},
"end": {
- "line": 2357,
+ "line": 1950,
"column": 23
}
}
},
"init": null,
"range": [
- 85487,
- 85490
+ 68549,
+ 68552
],
"loc": {
"start": {
- "line": 2357,
+ "line": 1950,
"column": 20
},
"end": {
- "line": 2357,
+ "line": 1950,
"column": 23
}
}
@@ -190147,16 +154107,16 @@
],
"kind": "let",
"range": [
- 85483,
- 85491
+ 68545,
+ 68553
],
"loc": {
"start": {
- "line": 2357,
+ "line": 1950,
"column": 16
},
"end": {
- "line": 2357,
+ "line": 1950,
"column": 24
}
}
@@ -190167,16 +154127,16 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 85511,
- 85523
+ 68573,
+ 68585
],
"loc": {
"start": {
- "line": 2358,
+ "line": 1951,
"column": 19
},
"end": {
- "line": 2358,
+ "line": 1951,
"column": 31
}
}
@@ -190193,16 +154153,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 85546,
- 85549
+ 68608,
+ 68611
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 20
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 23
}
}
@@ -190214,16 +154174,16 @@
"type": "Identifier",
"name": "colTags",
"range": [
- 85552,
- 85559
+ 68614,
+ 68621
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 26
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 33
}
}
@@ -190232,77 +154192,77 @@
"type": "Identifier",
"name": "k",
"range": [
- 85560,
- 85561
+ 68622,
+ 68623
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 34
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 35
}
}
},
"range": [
- 85552,
- 85562
+ 68614,
+ 68624
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 26
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 36
}
}
},
"range": [
- 85546,
- 85562
+ 68608,
+ 68624
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 20
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 36
}
}
},
"range": [
- 85546,
- 85563
+ 68608,
+ 68625
],
"loc": {
"start": {
- "line": 2359,
+ "line": 1952,
"column": 20
},
"end": {
- "line": 2359,
+ "line": 1952,
"column": 37
}
}
}
],
"range": [
- 85524,
- 85581
+ 68586,
+ 68643
],
"loc": {
"start": {
- "line": 2358,
+ "line": 1951,
"column": 32
},
"end": {
- "line": 2360,
+ "line": 1953,
"column": 17
}
}
@@ -190319,16 +154279,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 85609,
- 85612
+ 68671,
+ 68674
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 20
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 23
}
}
@@ -190342,16 +154302,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 85615,
- 85618
+ 68677,
+ 68680
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 26
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 29
}
}
@@ -190360,31 +154320,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 85619,
- 85625
+ 68681,
+ 68687
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 30
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 36
}
}
},
"range": [
- 85615,
- 85625
+ 68677,
+ 68687
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 26
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 36
}
}
@@ -190395,16 +154355,16 @@
"value": "col",
"raw": "'col'",
"range": [
- 85626,
- 85631
+ 68688,
+ 68693
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 37
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 42
}
}
@@ -190417,16 +154377,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 85634,
- 85638
+ 68696,
+ 68700
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 45
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 49
}
}
@@ -190443,16 +154403,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 85640,
- 85644
+ 68702,
+ 68706
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 51
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 55
}
}
@@ -190461,31 +154421,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 85645,
- 85647
+ 68707,
+ 68709
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 56
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 58
}
}
},
"range": [
- 85640,
- 85647
+ 68702,
+ 68709
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 51
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 58
}
}
@@ -190495,31 +154455,31 @@
"value": "_col_",
"raw": "'_col_'",
"range": [
- 85648,
- 85655
+ 68710,
+ 68717
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 59
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 66
}
}
},
"range": [
- 85640,
- 85655
+ 68702,
+ 68717
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 51
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 66
}
}
@@ -190528,93 +154488,93 @@
"type": "Identifier",
"name": "k",
"range": [
- 85656,
- 85657
+ 68718,
+ 68719
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 67
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 68
}
}
},
"range": [
- 85640,
- 85657
+ 68702,
+ 68719
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 51
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 68
}
}
}
],
"range": [
- 85633,
- 85658
+ 68695,
+ 68720
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 44
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 69
}
}
}
],
"range": [
- 85615,
- 85659
+ 68677,
+ 68721
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 26
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 70
}
}
},
"range": [
- 85609,
- 85659
+ 68671,
+ 68721
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 20
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 70
}
}
},
"range": [
- 85609,
- 85660
+ 68671,
+ 68722
],
"loc": {
"start": {
- "line": 2361,
+ "line": 1954,
"column": 20
},
"end": {
- "line": 2361,
+ "line": 1954,
"column": 71
}
}
@@ -190630,16 +154590,16 @@
"type": "Identifier",
"name": "frag",
"range": [
- 85681,
- 85685
+ 68743,
+ 68747
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 20
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 24
}
}
@@ -190648,31 +154608,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 85686,
- 85697
+ 68748,
+ 68759
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 25
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 36
}
}
},
"range": [
- 85681,
- 85697
+ 68743,
+ 68759
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 20
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 36
}
}
@@ -190682,78 +154642,78 @@
"type": "Identifier",
"name": "col",
"range": [
- 85698,
- 85701
+ 68760,
+ 68763
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 37
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 40
}
}
}
],
"range": [
- 85681,
- 85702
+ 68743,
+ 68764
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 20
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 41
}
}
},
"range": [
- 85681,
- 85703
+ 68743,
+ 68765
],
"loc": {
"start": {
- "line": 2362,
+ "line": 1955,
"column": 20
},
"end": {
- "line": 2362,
+ "line": 1955,
"column": 42
}
}
}
],
"range": [
- 85587,
- 85721
+ 68649,
+ 68783
],
"loc": {
"start": {
- "line": 2360,
+ "line": 1953,
"column": 23
},
"end": {
- "line": 2363,
+ "line": 1956,
"column": 17
}
}
},
"range": [
- 85508,
- 85721
+ 68570,
+ 68783
],
"loc": {
"start": {
- "line": 2358,
+ "line": 1951,
"column": 16
},
"end": {
- "line": 2363,
+ "line": 1956,
"column": 17
}
}
@@ -190773,16 +154733,16 @@
"type": "Identifier",
"name": "col",
"range": [
- 85738,
- 85741
+ 68800,
+ 68803
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 16
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 19
}
}
@@ -190791,31 +154751,31 @@
"type": "Identifier",
"name": "style",
"range": [
- 85742,
- 85747
+ 68804,
+ 68809
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 20
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 25
}
}
},
"range": [
- 85738,
- 85747
+ 68800,
+ 68809
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 16
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 25
}
}
@@ -190824,31 +154784,31 @@
"type": "Identifier",
"name": "width",
"range": [
- 85748,
- 85753
+ 68810,
+ 68815
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 26
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 31
}
}
},
"range": [
- 85738,
- 85753
+ 68800,
+ 68815
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 16
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 31
}
}
@@ -190860,16 +154820,16 @@
"type": "Identifier",
"name": "colWidths",
"range": [
- 85756,
- 85765
+ 68818,
+ 68827
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 34
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 43
}
}
@@ -190878,92 +154838,92 @@
"type": "Identifier",
"name": "k",
"range": [
- 85766,
- 85767
+ 68828,
+ 68829
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 44
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 45
}
}
},
"range": [
- 85756,
- 85768
+ 68818,
+ 68830
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 34
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 46
}
}
},
"range": [
- 85738,
- 85768
+ 68800,
+ 68830
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 16
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 46
}
}
},
"range": [
- 85738,
- 85769
+ 68800,
+ 68831
],
"loc": {
"start": {
- "line": 2364,
+ "line": 1957,
"column": 16
},
"end": {
- "line": 2364,
+ "line": 1957,
"column": 47
}
}
}
],
"range": [
- 85465,
- 85783
+ 68527,
+ 68845
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 39
},
"end": {
- "line": 2365,
+ "line": 1958,
"column": 13
}
}
},
"range": [
- 85438,
- 85783
+ 68500,
+ 68845
],
"loc": {
"start": {
- "line": 2356,
+ "line": 1949,
"column": 12
},
"end": {
- "line": 2365,
+ "line": 1958,
"column": 13
}
}
@@ -190977,32 +154937,32 @@
"type": "Identifier",
"name": "tblHasColTag",
"range": [
- 85800,
- 85812
+ 68862,
+ 68874
],
"loc": {
"start": {
- "line": 2366,
+ "line": 1959,
"column": 16
},
"end": {
- "line": 2366,
+ "line": 1959,
"column": 28
}
}
},
"prefix": true,
"range": [
- 85799,
- 85812
+ 68861,
+ 68874
],
"loc": {
"start": {
- "line": 2366,
+ "line": 1959,
"column": 15
},
"end": {
- "line": 2366,
+ "line": 1959,
"column": 28
}
}
@@ -191021,16 +154981,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 85831,
- 85834
+ 68893,
+ 68896
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 16
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 19
}
}
@@ -191039,31 +154999,31 @@
"type": "Identifier",
"name": "insertBefore",
"range": [
- 85835,
- 85847
+ 68897,
+ 68909
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 20
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 32
}
}
},
"range": [
- 85831,
- 85847
+ 68893,
+ 68909
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 16
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 32
}
}
@@ -191073,16 +155033,16 @@
"type": "Identifier",
"name": "frag",
"range": [
- 85848,
- 85852
+ 68910,
+ 68914
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 33
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 37
}
}
@@ -191094,16 +155054,16 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 85854,
- 85857
+ 68916,
+ 68919
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 39
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 42
}
}
@@ -191112,110 +155072,110 @@
"type": "Identifier",
"name": "firstChild",
"range": [
- 85858,
- 85868
+ 68920,
+ 68930
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 43
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 53
}
}
},
"range": [
- 85854,
- 85868
+ 68916,
+ 68930
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 39
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 53
}
}
}
],
"range": [
- 85831,
- 85869
+ 68893,
+ 68931
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 16
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 54
}
}
},
"range": [
- 85831,
- 85870
+ 68893,
+ 68932
],
"loc": {
"start": {
- "line": 2367,
+ "line": 1960,
"column": 16
},
"end": {
- "line": 2367,
+ "line": 1960,
"column": 55
}
}
}
],
"range": [
- 85813,
- 85884
+ 68875,
+ 68946
],
"loc": {
"start": {
- "line": 2366,
+ "line": 1959,
"column": 29
},
"end": {
- "line": 2368,
+ "line": 1961,
"column": 13
}
}
},
"alternate": null,
"range": [
- 85796,
- 85884
+ 68858,
+ 68946
],
"loc": {
"start": {
- "line": 2366,
+ "line": 1959,
"column": 12
},
"end": {
- "line": 2368,
+ "line": 1961,
"column": 13
}
}
}
],
"range": [
- 85128,
- 85894
+ 68190,
+ 68956
],
"loc": {
"start": {
- "line": 2349,
+ "line": 1942,
"column": 28
},
"end": {
- "line": 2369,
+ "line": 1962,
"column": 9
}
}
@@ -191223,32 +155183,32 @@
"generator": false,
"expression": false,
"range": [
- 85108,
- 85894
+ 68170,
+ 68956
],
"loc": {
"start": {
- "line": 2349,
+ "line": 1942,
"column": 8
},
"end": {
- "line": 2369,
+ "line": 1962,
"column": 9
}
}
}
],
"range": [
- 84781,
- 85900
+ 67858,
+ 68962
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 31
},
"end": {
- "line": 2370,
+ "line": 1963,
"column": 5
}
}
@@ -191256,16 +155216,16 @@
"generator": false,
"expression": false,
"range": [
- 84766,
- 85900
+ 67843,
+ 68962
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 16
},
"end": {
- "line": 2370,
+ "line": 1963,
"column": 5
}
}
@@ -191273,16 +155233,16 @@
"kind": "method",
"computed": false,
"range": [
- 84754,
- 85900
+ 67831,
+ 68962
],
"loc": {
"start": {
- "line": 2335,
+ "line": 1928,
"column": 4
},
"end": {
- "line": 2370,
+ "line": 1963,
"column": 5
}
},
@@ -191291,16 +155251,16 @@
"type": "Block",
"value": "*\n * Set them columns' widths as per configuration\n * @param {Number} rowIndex Optional row index to apply the widths to\n * @param {Element} tbl DOM element\n ",
"range": [
- 84571,
- 84749
+ 67648,
+ 67826
],
"loc": {
"start": {
- "line": 2330,
+ "line": 1923,
"column": 4
},
"end": {
- "line": 2334,
+ "line": 1927,
"column": 7
}
}
@@ -191311,16 +155271,16 @@
"type": "Block",
"value": "*\n * Makes defined rows always visible\n ",
"range": [
- 85906,
- 85958
+ 68968,
+ 69020
],
"loc": {
"start": {
- "line": 2372,
+ "line": 1965,
"column": 4
},
"end": {
- "line": 2374,
+ "line": 1967,
"column": 7
}
}
@@ -191334,16 +155294,16 @@
"type": "Identifier",
"name": "enforceVisibility",
"range": [
- 85963,
- 85980
+ 69025,
+ 69042
],
"loc": {
"start": {
- "line": 2375,
+ "line": 1968,
"column": 4
},
"end": {
- "line": 2375,
+ "line": 1968,
"column": 21
}
}
@@ -191366,16 +155326,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 85996,
- 86000
+ 69058,
+ 69062
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 12
},
"end": {
- "line": 2376,
+ "line": 1969,
"column": 16
}
}
@@ -191384,47 +155344,47 @@
"type": "Identifier",
"name": "hasVisibleRows",
"range": [
- 86001,
- 86015
+ 69063,
+ 69077
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 17
},
"end": {
- "line": 2376,
+ "line": 1969,
"column": 31
}
}
},
"range": [
- 85996,
- 86015
+ 69058,
+ 69077
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 12
},
"end": {
- "line": 2376,
+ "line": 1969,
"column": 31
}
}
},
"prefix": true,
"range": [
- 85995,
- 86015
+ 69057,
+ 69077
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 11
},
"end": {
- "line": 2376,
+ "line": 1969,
"column": 31
}
}
@@ -191436,48 +155396,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 86030,
- 86037
+ 69092,
+ 69099
],
"loc": {
"start": {
- "line": 2377,
+ "line": 1970,
"column": 12
},
"end": {
- "line": 2377,
+ "line": 1970,
"column": 19
}
}
}
],
"range": [
- 86016,
- 86047
+ 69078,
+ 69109
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 32
},
"end": {
- "line": 2378,
+ "line": 1971,
"column": 9
}
}
},
"alternate": null,
"range": [
- 85992,
- 86047
+ 69054,
+ 69109
],
"loc": {
"start": {
- "line": 2376,
+ "line": 1969,
"column": 8
},
"end": {
- "line": 2378,
+ "line": 1971,
"column": 9
}
}
@@ -191493,16 +155453,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 86064,
- 86065
+ 69126,
+ 69127
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 16
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 17
}
}
@@ -191512,31 +155472,31 @@
"value": 0,
"raw": "0",
"range": [
- 86066,
- 86067
+ 69128,
+ 69129
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 18
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 19
}
}
},
"range": [
- 86064,
- 86067
+ 69126,
+ 69129
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 16
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 19
}
}
@@ -191547,16 +155507,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 86069,
- 86072
+ 69131,
+ 69134
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 21
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 24
}
}
@@ -191570,16 +155530,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86073,
- 86077
+ 69135,
+ 69139
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 25
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 29
}
}
@@ -191588,31 +155548,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 86078,
- 86089
+ 69140,
+ 69151
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 30
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 41
}
}
},
"range": [
- 86073,
- 86089
+ 69135,
+ 69151
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 25
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 41
}
}
@@ -191621,46 +155581,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 86090,
- 86096
+ 69152,
+ 69158
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 42
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 48
}
}
},
"range": [
- 86073,
- 86096
+ 69135,
+ 69158
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 25
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 48
}
}
},
"range": [
- 86069,
- 86096
+ 69131,
+ 69158
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 21
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 48
}
}
@@ -191668,16 +155628,16 @@
],
"kind": "let",
"range": [
- 86060,
- 86096
+ 69122,
+ 69158
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 12
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 48
}
}
@@ -191689,16 +155649,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 86098,
- 86099
+ 69160,
+ 69161
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 50
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 51
}
}
@@ -191707,31 +155667,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 86100,
- 86103
+ 69162,
+ 69165
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 52
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 55
}
}
},
"range": [
- 86098,
- 86103
+ 69160,
+ 69165
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 50
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 55
}
}
@@ -191743,32 +155703,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 86105,
- 86106
+ 69167,
+ 69168
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 57
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 58
}
}
},
"prefix": false,
"range": [
- 86105,
- 86108
+ 69167,
+ 69170
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 57
},
"end": {
- "line": 2379,
+ "line": 1972,
"column": 60
}
}
@@ -191785,16 +155745,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 86127,
- 86130
+ 69189,
+ 69192
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 16
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 19
}
}
@@ -191808,16 +155768,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86133,
- 86137
+ 69195,
+ 69199
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 22
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 26
}
}
@@ -191826,31 +155786,31 @@
"type": "Identifier",
"name": "visibleRows",
"range": [
- 86138,
- 86149
+ 69200,
+ 69211
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 27
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 38
}
}
},
"range": [
- 86133,
- 86149
+ 69195,
+ 69211
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 22
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 38
}
}
@@ -191859,46 +155819,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 86150,
- 86151
+ 69212,
+ 69213
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 39
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 40
}
}
},
"range": [
- 86133,
- 86152
+ 69195,
+ 69214
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 22
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 41
}
}
},
"range": [
- 86127,
- 86152
+ 69189,
+ 69214
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 16
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 41
}
}
@@ -191906,16 +155866,16 @@
],
"kind": "let",
"range": [
- 86123,
- 86153
+ 69185,
+ 69215
],
"loc": {
"start": {
- "line": 2380,
+ "line": 1973,
"column": 12
},
"end": {
- "line": 2380,
+ "line": 1973,
"column": 42
}
},
@@ -191924,16 +155884,16 @@
"type": "Line",
"value": "row index cannot be > nrows",
"range": [
- 86166,
- 86195
+ 69228,
+ 69257
],
"loc": {
"start": {
- "line": 2381,
+ "line": 1974,
"column": 12
},
"end": {
- "line": 2381,
+ "line": 1974,
"column": 41
}
}
@@ -191949,16 +155909,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 86211,
- 86214
+ 69273,
+ 69276
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 15
},
"end": {
- "line": 2382,
+ "line": 1975,
"column": 18
}
}
@@ -191969,16 +155929,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86218,
- 86222
+ 69280,
+ 69284
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 22
},
"end": {
- "line": 2382,
+ "line": 1975,
"column": 26
}
}
@@ -191987,46 +155947,46 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 86223,
- 86229
+ 69285,
+ 69291
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 27
},
"end": {
- "line": 2382,
+ "line": 1975,
"column": 33
}
}
},
"range": [
- 86218,
- 86229
+ 69280,
+ 69291
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 22
},
"end": {
- "line": 2382,
+ "line": 1975,
"column": 33
}
}
},
"range": [
- 86211,
- 86229
+ 69273,
+ 69291
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 15
},
"end": {
- "line": 2382,
+ "line": 1975,
"column": 33
}
}
@@ -192044,16 +156004,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86248,
- 86252
+ 69310,
+ 69314
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 16
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 20
}
}
@@ -192062,31 +156022,31 @@
"type": "Identifier",
"name": "validateRow",
"range": [
- 86253,
- 86264
+ 69315,
+ 69326
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 21
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 32
}
}
},
"range": [
- 86248,
- 86264
+ 69310,
+ 69326
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 16
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 32
}
}
@@ -192096,16 +156056,16 @@
"type": "Identifier",
"name": "row",
"range": [
- 86265,
- 86268
+ 69327,
+ 69330
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 33
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 36
}
}
@@ -192115,79 +156075,79 @@
"value": true,
"raw": "true",
"range": [
- 86270,
- 86274
+ 69332,
+ 69336
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 38
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 42
}
}
}
],
"range": [
- 86248,
- 86275
+ 69310,
+ 69337
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 16
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 43
}
}
},
"range": [
- 86248,
- 86276
+ 69310,
+ 69338
],
"loc": {
"start": {
- "line": 2383,
+ "line": 1976,
"column": 16
},
"end": {
- "line": 2383,
+ "line": 1976,
"column": 44
}
}
}
],
"range": [
- 86230,
- 86290
+ 69292,
+ 69352
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 34
},
"end": {
- "line": 2384,
+ "line": 1977,
"column": 13
}
}
},
"alternate": null,
"range": [
- 86208,
- 86290
+ 69270,
+ 69352
],
"loc": {
"start": {
- "line": 2382,
+ "line": 1975,
"column": 12
},
"end": {
- "line": 2384,
+ "line": 1977,
"column": 13
}
},
@@ -192196,16 +156156,16 @@
"type": "Line",
"value": "row index cannot be > nrows",
"range": [
- 86166,
- 86195
+ 69228,
+ 69257
],
"loc": {
"start": {
- "line": 2381,
+ "line": 1974,
"column": 12
},
"end": {
- "line": 2381,
+ "line": 1974,
"column": 41
}
}
@@ -192214,47 +156174,47 @@
}
],
"range": [
- 86109,
- 86300
+ 69171,
+ 69362
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 61
},
"end": {
- "line": 2385,
+ "line": 1978,
"column": 9
}
}
},
"range": [
- 86056,
- 86300
+ 69118,
+ 69362
],
"loc": {
"start": {
- "line": 2379,
+ "line": 1972,
"column": 8
},
"end": {
- "line": 2385,
+ "line": 1978,
"column": 9
}
}
}
],
"range": [
- 85982,
- 86306
+ 69044,
+ 69368
],
"loc": {
"start": {
- "line": 2375,
+ "line": 1968,
"column": 23
},
"end": {
- "line": 2386,
+ "line": 1979,
"column": 5
}
}
@@ -192262,16 +156222,16 @@
"generator": false,
"expression": false,
"range": [
- 85980,
- 86306
+ 69042,
+ 69368
],
"loc": {
"start": {
- "line": 2375,
+ "line": 1968,
"column": 21
},
"end": {
- "line": 2386,
+ "line": 1979,
"column": 5
}
}
@@ -192279,16 +156239,16 @@
"kind": "method",
"computed": false,
"range": [
- 85963,
- 86306
+ 69025,
+ 69368
],
"loc": {
"start": {
- "line": 2375,
+ "line": 1968,
"column": 4
},
"end": {
- "line": 2386,
+ "line": 1979,
"column": 5
}
},
@@ -192297,16 +156257,36 @@
"type": "Block",
"value": "*\n * Makes defined rows always visible\n ",
"range": [
- 85906,
- 85958
+ 68968,
+ 69020
],
"loc": {
"start": {
- "line": 2372,
+ "line": 1965,
"column": 4
},
"end": {
- "line": 2374,
+ "line": 1967,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Clear all the filters' values\n ",
+ "range": [
+ 69374,
+ 69422
+ ],
+ "loc": {
+ "start": {
+ "line": 1981,
+ "column": 4
+ },
+ "end": {
+ "line": 1983,
"column": 7
}
}
@@ -192320,332 +156300,20 @@
"type": "Identifier",
"name": "clearFilters",
"range": [
- 86312,
- 86324
+ 69427,
+ 69439
],
"loc": {
"start": {
- "line": 2388,
+ "line": 1984,
"column": 4
},
"end": {
- "line": 2388,
+ "line": 1984,
"column": 16
}
}
},
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86336,
- 86340
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 8
- },
- "end": {
- "line": 2389,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "EvtManager",
- "range": [
- 86341,
- 86351
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 13
- },
- "end": {
- "line": 2389,
- "column": 23
- }
- }
- },
- "range": [
- 86336,
- 86351
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 8
- },
- "end": {
- "line": 2389,
- "column": 23
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86352,
- 86356
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 24
- },
- "end": {
- "line": 2389,
- "column": 28
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Evt",
- "range": [
- 86357,
- 86360
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 29
- },
- "end": {
- "line": 2389,
- "column": 32
- }
- }
- },
- "range": [
- 86352,
- 86360
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 24
- },
- "end": {
- "line": 2389,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "name",
- "range": [
- 86361,
- 86365
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 33
- },
- "end": {
- "line": 2389,
- "column": 37
- }
- }
- },
- "range": [
- 86352,
- 86365
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 24
- },
- "end": {
- "line": 2389,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "clear",
- "range": [
- 86366,
- 86371
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 38
- },
- "end": {
- "line": 2389,
- "column": 43
- }
- }
- },
- "range": [
- 86352,
- 86371
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 24
- },
- "end": {
- "line": 2389,
- "column": 43
- }
- }
- }
- ],
- "range": [
- 86336,
- 86372
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 8
- },
- "end": {
- "line": 2389,
- "column": 44
- }
- }
- },
- "range": [
- 86336,
- 86373
- ],
- "loc": {
- "start": {
- "line": 2389,
- "column": 8
- },
- "end": {
- "line": 2389,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 86326,
- 86379
- ],
- "loc": {
- "start": {
- "line": 2388,
- "column": 18
- },
- "end": {
- "line": 2390,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 86324,
- 86379
- ],
- "loc": {
- "start": {
- "line": 2388,
- "column": 16
- },
- "end": {
- "line": 2390,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 86312,
- 86379
- ],
- "loc": {
- "start": {
- "line": 2388,
- "column": 4
- },
- "end": {
- "line": 2390,
- "column": 5
- }
- },
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Clear all the filters' values\n ",
- "range": [
- 86385,
- 86433
- ],
- "loc": {
- "start": {
- "line": 2392,
- "column": 4
- },
- "end": {
- "line": 2394,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_clearFilters",
- "range": [
- 86438,
- 86451
- ],
- "loc": {
- "start": {
- "line": 2395,
- "column": 4
- },
- "end": {
- "line": 2395,
- "column": 17
- }
- }
- },
"value": {
"type": "FunctionExpression",
"id": null,
@@ -192664,16 +156332,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86467,
- 86471
+ 69455,
+ 69459
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 12
},
"end": {
- "line": 2396,
+ "line": 1985,
"column": 16
}
}
@@ -192682,47 +156350,47 @@
"type": "Identifier",
"name": "fltGrid",
"range": [
- 86472,
- 86479
+ 69460,
+ 69467
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 17
},
"end": {
- "line": 2396,
+ "line": 1985,
"column": 24
}
}
},
"range": [
- 86467,
- 86479
+ 69455,
+ 69467
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 12
},
"end": {
- "line": 2396,
+ "line": 1985,
"column": 24
}
}
},
"prefix": true,
"range": [
- 86466,
- 86479
+ 69454,
+ 69467
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 11
},
"end": {
- "line": 2396,
+ "line": 1985,
"column": 24
}
}
@@ -192734,52 +156402,213 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 86494,
- 86501
+ 69482,
+ 69489
],
"loc": {
"start": {
- "line": 2397,
+ "line": 1986,
"column": 12
},
"end": {
- "line": 2397,
+ "line": 1986,
"column": 19
}
}
}
],
"range": [
- 86480,
- 86511
+ 69468,
+ 69499
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 25
},
"end": {
- "line": 2398,
+ "line": 1987,
"column": 9
}
}
},
"alternate": null,
"range": [
- 86463,
- 86511
+ 69451,
+ 69499
],
"loc": {
"start": {
- "line": 2396,
+ "line": 1985,
"column": 8
},
"end": {
- "line": 2398,
+ "line": 1987,
"column": 9
}
}
},
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 69509,
+ 69513
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 8
+ },
+ "end": {
+ "line": 1989,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 69514,
+ 69521
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 13
+ },
+ "end": {
+ "line": 1989,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 69509,
+ 69521
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 8
+ },
+ "end": {
+ "line": 1989,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 69522,
+ 69526
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 21
+ },
+ "end": {
+ "line": 1989,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 69509,
+ 69526
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 8
+ },
+ "end": {
+ "line": 1989,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "before-clearing-filters",
+ "raw": "'before-clearing-filters'",
+ "range": [
+ 69527,
+ 69552
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 26
+ },
+ "end": {
+ "line": 1989,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 69554,
+ 69558
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 53
+ },
+ "end": {
+ "line": 1989,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "range": [
+ 69509,
+ 69559
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 8
+ },
+ "end": {
+ "line": 1989,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 69509,
+ 69560
+ ],
+ "loc": {
+ "start": {
+ "line": 1989,
+ "column": 8
+ },
+ "end": {
+ "line": 1989,
+ "column": 59
+ }
+ }
+ },
{
"type": "IfStatement",
"test": {
@@ -192788,16 +156617,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86523,
- 86527
+ 69573,
+ 69577
],
"loc": {
"start": {
- "line": 2399,
+ "line": 1991,
"column": 11
},
"end": {
- "line": 2399,
+ "line": 1991,
"column": 15
}
}
@@ -192806,31 +156635,31 @@
"type": "Identifier",
"name": "onBeforeReset",
"range": [
- 86528,
- 86541
+ 69578,
+ 69591
],
"loc": {
"start": {
- "line": 2399,
+ "line": 1991,
"column": 16
},
"end": {
- "line": 2399,
+ "line": 1991,
"column": 29
}
}
},
"range": [
- 86523,
- 86541
+ 69573,
+ 69591
],
"loc": {
"start": {
- "line": 2399,
+ "line": 1991,
"column": 11
},
"end": {
- "line": 2399,
+ "line": 1991,
"column": 29
}
}
@@ -192851,16 +156680,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86556,
- 86560
+ 69606,
+ 69610
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 12
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 16
}
}
@@ -192869,31 +156698,31 @@
"type": "Identifier",
"name": "onBeforeReset",
"range": [
- 86561,
- 86574
+ 69611,
+ 69624
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 17
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 30
}
}
},
"range": [
- 86556,
- 86574
+ 69606,
+ 69624
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 12
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 30
}
}
@@ -192902,31 +156731,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 86575,
- 86579
+ 69625,
+ 69629
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 31
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 35
}
}
},
"range": [
- 86556,
- 86579
+ 69606,
+ 69629
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 12
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 35
}
}
@@ -192937,16 +156766,16 @@
"value": null,
"raw": "null",
"range": [
- 86580,
- 86584
+ 69630,
+ 69634
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 36
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 40
}
}
@@ -192954,16 +156783,16 @@
{
"type": "ThisExpression",
"range": [
- 86586,
- 86590
+ 69636,
+ 69640
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 42
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 46
}
}
@@ -192976,16 +156805,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86592,
- 86596
+ 69642,
+ 69646
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 48
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 52
}
}
@@ -192994,110 +156823,110 @@
"type": "Identifier",
"name": "getFiltersValue",
"range": [
- 86597,
- 86612
+ 69647,
+ 69662
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 53
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 68
}
}
},
"range": [
- 86592,
- 86612
+ 69642,
+ 69662
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 48
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 68
}
}
},
"arguments": [],
"range": [
- 86592,
- 86614
+ 69642,
+ 69664
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 48
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 70
}
}
}
],
"range": [
- 86556,
- 86615
+ 69606,
+ 69665
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 12
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 71
}
}
},
"range": [
- 86556,
- 86616
+ 69606,
+ 69666
],
"loc": {
"start": {
- "line": 2400,
+ "line": 1992,
"column": 12
},
"end": {
- "line": 2400,
+ "line": 1992,
"column": 72
}
}
}
],
"range": [
- 86542,
- 86626
+ 69592,
+ 69676
],
"loc": {
"start": {
- "line": 2399,
+ "line": 1991,
"column": 30
},
"end": {
- "line": 2401,
+ "line": 1993,
"column": 9
}
}
},
"alternate": null,
"range": [
- 86520,
- 86626
+ 69570,
+ 69676
],
"loc": {
"start": {
- "line": 2399,
+ "line": 1991,
"column": 8
},
"end": {
- "line": 2401,
+ "line": 1993,
"column": 9
}
}
@@ -193113,16 +156942,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 86643,
- 86644
+ 69693,
+ 69694
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 16
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 17
}
}
@@ -193132,31 +156961,31 @@
"value": 0,
"raw": "0",
"range": [
- 86645,
- 86646
+ 69695,
+ 69696
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 18
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 19
}
}
},
"range": [
- 86643,
- 86646
+ 69693,
+ 69696
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 16
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 19
}
}
@@ -193167,16 +156996,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 86648,
- 86651
+ 69698,
+ 69701
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 21
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 24
}
}
@@ -193190,16 +157019,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86652,
- 86656
+ 69702,
+ 69706
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 25
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 29
}
}
@@ -193208,31 +157037,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 86657,
- 86663
+ 69707,
+ 69713
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 30
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 36
}
}
},
"range": [
- 86652,
- 86663
+ 69702,
+ 69713
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 25
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 36
}
}
@@ -193241,46 +157070,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 86664,
- 86670
+ 69714,
+ 69720
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 37
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 43
}
}
},
"range": [
- 86652,
- 86670
+ 69702,
+ 69720
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 25
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 43
}
}
},
"range": [
- 86648,
- 86670
+ 69698,
+ 69720
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 21
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 43
}
}
@@ -193288,16 +157117,16 @@
],
"kind": "let",
"range": [
- 86639,
- 86670
+ 69689,
+ 69720
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 12
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 43
}
}
@@ -193309,16 +157138,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 86672,
- 86673
+ 69722,
+ 69723
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 45
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 46
}
}
@@ -193327,31 +157156,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 86674,
- 86677
+ 69724,
+ 69727
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 47
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 50
}
}
},
"range": [
- 86672,
- 86677
+ 69722,
+ 69727
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 45
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 50
}
}
@@ -193363,32 +157192,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 86679,
- 86680
+ 69729,
+ 69730
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 52
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 53
}
}
},
"prefix": false,
"range": [
- 86679,
- 86682
+ 69729,
+ 69732
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 52
},
"end": {
- "line": 2402,
+ "line": 1994,
"column": 55
}
}
@@ -193406,16 +157235,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86697,
- 86701
+ 69747,
+ 69751
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 12
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 16
}
}
@@ -193424,31 +157253,31 @@
"type": "Identifier",
"name": "setFilterValue",
"range": [
- 86702,
- 86716
+ 69752,
+ 69766
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 17
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 31
}
}
},
"range": [
- 86697,
- 86716
+ 69747,
+ 69766
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 12
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 31
}
}
@@ -193458,16 +157287,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 86717,
- 86718
+ 69767,
+ 69768
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 32
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 33
}
}
@@ -193477,492 +157306,281 @@
"value": "",
"raw": "''",
"range": [
- 86720,
- 86722
+ 69770,
+ 69772
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 35
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 37
}
}
}
],
"range": [
- 86697,
- 86723
+ 69747,
+ 69773
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 12
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 38
}
}
},
"range": [
- 86697,
- 86724
+ 69747,
+ 69774
],
"loc": {
"start": {
- "line": 2403,
+ "line": 1995,
"column": 12
},
"end": {
- "line": 2403,
+ "line": 1995,
"column": 39
}
}
}
],
"range": [
- 86683,
- 86734
+ 69733,
+ 69784
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 56
},
"end": {
- "line": 2404,
+ "line": 1996,
"column": 9
}
}
},
"range": [
- 86635,
- 86734
+ 69685,
+ 69784
],
"loc": {
"start": {
- "line": 2402,
+ "line": 1994,
"column": 8
},
"end": {
- "line": 2404,
+ "line": 1996,
"column": 9
}
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
+ },
+ "trailingComments": [
+ {
+ "type": "Line",
+ "value": " if(this.linkedFilters){",
"range": [
- 86746,
- 86750
+ 69793,
+ 69819
],
"loc": {
"start": {
- "line": 2405,
- "column": 11
+ "line": 1997,
+ "column": 8
},
"end": {
- "line": 2405,
- "column": 15
+ "line": 1997,
+ "column": 34
}
}
},
- "property": {
- "type": "Identifier",
- "name": "linkedFilters",
+ {
+ "type": "Line",
+ "value": " this.linkFilters();",
"range": [
- 86751,
- 86764
+ 69828,
+ 69854
],
"loc": {
"start": {
- "line": 2405,
- "column": 16
+ "line": 1998,
+ "column": 8
},
"end": {
- "line": 2405,
- "column": 29
+ "line": 1998,
+ "column": 34
}
}
},
- "range": [
- 86746,
- 86764
- ],
- "loc": {
- "start": {
- "line": 2405,
- "column": 11
- },
- "end": {
- "line": 2405,
- "column": 29
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 69863,
+ 69867
+ ],
+ "loc": {
+ "start": {
+ "line": 1999,
+ "column": 8
+ },
+ "end": {
+ "line": 1999,
+ "column": 12
+ }
}
}
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86779,
- 86783
- ],
- "loc": {
- "start": {
- "line": 2406,
- "column": 12
- },
- "end": {
- "line": 2406,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "linkFilters",
- "range": [
- 86784,
- 86795
- ],
- "loc": {
- "start": {
- "line": 2406,
- "column": 17
- },
- "end": {
- "line": 2406,
- "column": 28
- }
- }
- },
- "range": [
- 86779,
- 86795
- ],
- "loc": {
- "start": {
- "line": 2406,
- "column": 12
- },
- "end": {
- "line": 2406,
- "column": 28
- }
- }
- },
- "arguments": [],
- "range": [
- 86779,
- 86797
- ],
- "loc": {
- "start": {
- "line": 2406,
- "column": 12
- },
- "end": {
- "line": 2406,
- "column": 30
- }
- }
- },
+ ]
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
"range": [
- 86779,
- 86798
+ 69877,
+ 69881
],
"loc": {
"start": {
- "line": 2406,
+ "line": 2001,
+ "column": 8
+ },
+ "end": {
+ "line": 2001,
"column": 12
- },
- "end": {
- "line": 2406,
- "column": 31
}
}
- }
- ],
- "range": [
- 86765,
- 86808
- ],
- "loc": {
- "start": {
- "line": 2405,
- "column": 30
},
- "end": {
- "line": 2407,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 86743,
- 86808
- ],
- "loc": {
- "start": {
- "line": 2405,
- "column": 8
- },
- "end": {
- "line": 2407,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86820,
- 86824
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 11
- },
- "end": {
- "line": 2408,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageLen",
- "range": [
- 86825,
- 86840
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 16
- },
- "end": {
- "line": 2408,
- "column": 31
- }
- }
- },
- "range": [
- 86820,
- 86840
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 11
- },
- "end": {
- "line": 2408,
- "column": 31
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Cookie",
- "range": [
- 86843,
- 86849
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 34
- },
- "end": {
- "line": 2408,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "remove",
- "range": [
- 86850,
- 86856
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 41
- },
- "end": {
- "line": 2408,
- "column": 47
- }
- }
- },
- "range": [
- 86843,
- 86856
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 34
- },
- "end": {
- "line": 2408,
- "column": 47
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86857,
- 86861
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 48
- },
- "end": {
- "line": 2408,
- "column": 52
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgLenCookie",
- "range": [
- 86862,
- 86873
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 53
- },
- "end": {
- "line": 2408,
- "column": 64
- }
- }
- },
- "range": [
- 86857,
- 86873
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 48
- },
- "end": {
- "line": 2408,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 86843,
- 86874
- ],
- "loc": {
- "start": {
- "line": 2408,
- "column": 34
- },
- "end": {
- "line": 2408,
- "column": 65
- }
- }
- },
+ "property": {
+ "type": "Identifier",
+ "name": "filter",
"range": [
- 86843,
- 86875
+ 69882,
+ 69888
],
"loc": {
"start": {
- "line": 2408,
- "column": 34
+ "line": 2001,
+ "column": 13
},
"end": {
- "line": 2408,
- "column": 66
+ "line": 2001,
+ "column": 19
}
}
+ },
+ "range": [
+ 69877,
+ 69888
+ ],
+ "loc": {
+ "start": {
+ "line": 2001,
+ "column": 8
+ },
+ "end": {
+ "line": 2001,
+ "column": 19
+ }
}
- ],
+ },
+ "arguments": [],
"range": [
- 86841,
- 86877
+ 69877,
+ 69890
],
"loc": {
"start": {
- "line": 2408,
- "column": 32
+ "line": 2001,
+ "column": 8
},
"end": {
- "line": 2408,
- "column": 68
+ "line": 2001,
+ "column": 21
}
}
},
- "alternate": null,
"range": [
- 86817,
- 86877
+ 69877,
+ 69891
],
"loc": {
"start": {
- "line": 2408,
+ "line": 2001,
"column": 8
},
"end": {
- "line": 2408,
- "column": 68
+ "line": 2001,
+ "column": 22
}
- }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " if(this.linkedFilters){",
+ "range": [
+ 69793,
+ 69819
+ ],
+ "loc": {
+ "start": {
+ "line": 1997,
+ "column": 8
+ },
+ "end": {
+ "line": 1997,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " this.linkFilters();",
+ "range": [
+ 69828,
+ 69854
+ ],
+ "loc": {
+ "start": {
+ "line": 1998,
+ "column": 8
+ },
+ "end": {
+ "line": 1998,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 69863,
+ 69867
+ ],
+ "loc": {
+ "start": {
+ "line": 1999,
+ "column": 8
+ },
+ "end": {
+ "line": 1999,
+ "column": 12
+ }
+ }
+ }
+ ]
},
{
"type": "IfStatement",
@@ -193972,249 +157590,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86889,
- 86893
+ 69904,
+ 69908
],
"loc": {
"start": {
- "line": 2409,
+ "line": 2003,
"column": 11
},
"end": {
- "line": 2409,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rememberPageNb",
- "range": [
- 86894,
- 86908
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 16
- },
- "end": {
- "line": 2409,
- "column": 30
- }
- }
- },
- "range": [
- 86889,
- 86908
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 11
- },
- "end": {
- "line": 2409,
- "column": 30
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Cookie",
- "range": [
- 86911,
- 86917
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 33
- },
- "end": {
- "line": 2409,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "remove",
- "range": [
- 86918,
- 86924
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 40
- },
- "end": {
- "line": 2409,
- "column": 46
- }
- }
- },
- "range": [
- 86911,
- 86924
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 33
- },
- "end": {
- "line": 2409,
- "column": 46
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86925,
- 86929
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 47
- },
- "end": {
- "line": 2409,
- "column": 51
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "pgNbCookie",
- "range": [
- 86930,
- 86940
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 52
- },
- "end": {
- "line": 2409,
- "column": 62
- }
- }
- },
- "range": [
- 86925,
- 86940
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 47
- },
- "end": {
- "line": 2409,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 86911,
- 86941
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 33
- },
- "end": {
- "line": 2409,
- "column": 63
- }
- }
- },
- "range": [
- 86911,
- 86942
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 33
- },
- "end": {
- "line": 2409,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 86909,
- 86944
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 31
- },
- "end": {
- "line": 2409,
- "column": 66
- }
- }
- },
- "alternate": null,
- "range": [
- 86886,
- 86944
- ],
- "loc": {
- "start": {
- "line": 2409,
- "column": 8
- },
- "end": {
- "line": 2409,
- "column": 66
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 86956,
- 86960
- ],
- "loc": {
- "start": {
- "line": 2410,
- "column": 11
- },
- "end": {
- "line": 2410,
+ "line": 2003,
"column": 15
}
}
@@ -194223,31 +157608,31 @@
"type": "Identifier",
"name": "onAfterReset",
"range": [
- 86961,
- 86973
+ 69909,
+ 69921
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 16
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 28
}
}
},
"range": [
- 86956,
- 86973
+ 69904,
+ 69921
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 11
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 28
}
}
@@ -194268,16 +157653,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 86976,
- 86980
+ 69924,
+ 69928
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 31
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 35
}
}
@@ -194286,31 +157671,31 @@
"type": "Identifier",
"name": "onAfterReset",
"range": [
- 86981,
- 86993
+ 69929,
+ 69941
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 36
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 48
}
}
},
"range": [
- 86976,
- 86993
+ 69924,
+ 69941
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 31
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 48
}
}
@@ -194319,31 +157704,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 86994,
- 86998
+ 69942,
+ 69946
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 49
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 53
}
}
},
"range": [
- 86976,
- 86998
+ 69924,
+ 69946
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 31
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 53
}
}
@@ -194354,16 +157739,16 @@
"value": null,
"raw": "null",
"range": [
- 86999,
- 87003
+ 69947,
+ 69951
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 54
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 58
}
}
@@ -194371,95 +157756,256 @@
{
"type": "ThisExpression",
"range": [
- 87005,
- 87009
+ 69953,
+ 69957
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 60
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 64
}
}
}
],
"range": [
- 86976,
- 87010
+ 69924,
+ 69958
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 31
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 65
}
}
},
"range": [
- 86976,
- 87011
+ 69924,
+ 69959
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 31
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 66
}
}
}
],
"range": [
- 86974,
- 87013
+ 69922,
+ 69961
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 29
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 68
}
}
},
"alternate": null,
"range": [
- 86953,
- 87013
+ 69901,
+ 69961
],
"loc": {
"start": {
- "line": 2410,
+ "line": 2003,
"column": 8
},
"end": {
- "line": 2410,
+ "line": 2003,
"column": 68
}
}
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 69970,
+ 69974
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 8
+ },
+ "end": {
+ "line": 2004,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emitter",
+ "range": [
+ 69975,
+ 69982
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 13
+ },
+ "end": {
+ "line": 2004,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 69970,
+ 69982
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 8
+ },
+ "end": {
+ "line": 2004,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "emit",
+ "range": [
+ 69983,
+ 69987
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 21
+ },
+ "end": {
+ "line": 2004,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 69970,
+ 69987
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 8
+ },
+ "end": {
+ "line": 2004,
+ "column": 25
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "after-clearing-filters",
+ "raw": "'after-clearing-filters'",
+ "range": [
+ 69988,
+ 70012
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 26
+ },
+ "end": {
+ "line": 2004,
+ "column": 50
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 70014,
+ 70018
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 52
+ },
+ "end": {
+ "line": 2004,
+ "column": 56
+ }
+ }
+ }
+ ],
+ "range": [
+ 69970,
+ 70019
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 8
+ },
+ "end": {
+ "line": 2004,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 69970,
+ 70020
+ ],
+ "loc": {
+ "start": {
+ "line": 2004,
+ "column": 8
+ },
+ "end": {
+ "line": 2004,
+ "column": 58
+ }
+ }
}
],
"range": [
- 86453,
- 87019
+ 69441,
+ 70026
],
"loc": {
"start": {
- "line": 2395,
- "column": 19
+ "line": 1984,
+ "column": 18
},
"end": {
- "line": 2411,
+ "line": 2005,
"column": 5
}
}
@@ -194467,16 +158013,16 @@
"generator": false,
"expression": false,
"range": [
- 86451,
- 87019
+ 69439,
+ 70026
],
"loc": {
"start": {
- "line": 2395,
- "column": 17
+ "line": 1984,
+ "column": 16
},
"end": {
- "line": 2411,
+ "line": 2005,
"column": 5
}
}
@@ -194484,16 +158030,16 @@
"kind": "method",
"computed": false,
"range": [
- 86438,
- 87019
+ 69427,
+ 70026
],
"loc": {
"start": {
- "line": 2395,
+ "line": 1984,
"column": 4
},
"end": {
- "line": 2411,
+ "line": 2005,
"column": 5
}
},
@@ -194502,16 +158048,16 @@
"type": "Block",
"value": "*\n * Clear all the filters' values\n ",
"range": [
- 86385,
- 86433
+ 69374,
+ 69422
],
"loc": {
"start": {
- "line": 2392,
+ "line": 1981,
"column": 4
},
"end": {
- "line": 2394,
+ "line": 1983,
"column": 7
}
}
@@ -194522,16 +158068,16 @@
"type": "Block",
"value": "*\n * Clears filtered columns visual indicator (background color)\n ",
"range": [
- 87025,
- 87103
+ 70032,
+ 70110
],
"loc": {
"start": {
- "line": 2413,
+ "line": 2007,
"column": 4
},
"end": {
- "line": 2415,
+ "line": 2009,
"column": 7
}
}
@@ -194545,16 +158091,16 @@
"type": "Identifier",
"name": "clearActiveColumns",
"range": [
- 87108,
- 87126
+ 70115,
+ 70133
],
"loc": {
"start": {
- "line": 2416,
+ "line": 2010,
"column": 4
},
"end": {
- "line": 2416,
+ "line": 2010,
"column": 22
}
}
@@ -194577,16 +158123,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 87146,
- 87147
+ 70153,
+ 70154
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 16
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 17
}
}
@@ -194596,31 +158142,31 @@
"value": 0,
"raw": "0",
"range": [
- 87148,
- 87149
+ 70155,
+ 70156
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 18
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 19
}
}
},
"range": [
- 87146,
- 87149
+ 70153,
+ 70156
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 16
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 19
}
}
@@ -194631,16 +158177,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 87151,
- 87154
+ 70158,
+ 70161
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 21
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 24
}
}
@@ -194653,16 +158199,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87155,
- 87159
+ 70162,
+ 70166
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 25
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 29
}
}
@@ -194671,31 +158217,31 @@
"type": "Identifier",
"name": "getCellsNb",
"range": [
- 87160,
- 87170
+ 70167,
+ 70177
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 30
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 40
}
}
},
"range": [
- 87155,
- 87170
+ 70162,
+ 70177
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 25
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 40
}
}
@@ -194707,16 +158253,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87171,
- 87175
+ 70178,
+ 70182
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 41
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 45
}
}
@@ -194725,62 +158271,62 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 87176,
- 87186
+ 70183,
+ 70193
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 46
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 56
}
}
},
"range": [
- 87171,
- 87186
+ 70178,
+ 70193
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 41
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 56
}
}
}
],
"range": [
- 87155,
- 87187
+ 70162,
+ 70194
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 25
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 57
}
}
},
"range": [
- 87151,
- 87187
+ 70158,
+ 70194
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 21
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 57
}
}
@@ -194788,16 +158334,16 @@
],
"kind": "let",
"range": [
- 87142,
- 87187
+ 70149,
+ 70194
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 12
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 57
}
}
@@ -194809,16 +158355,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 87189,
- 87190
+ 70196,
+ 70197
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 59
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 60
}
}
@@ -194827,31 +158373,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 87191,
- 87194
+ 70198,
+ 70201
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 61
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 64
}
}
},
"range": [
- 87189,
- 87194
+ 70196,
+ 70201
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 59
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 64
}
}
@@ -194863,32 +158409,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 87196,
- 87197
+ 70203,
+ 70204
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 66
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 67
}
}
},
"prefix": false,
"range": [
- 87196,
- 87199
+ 70203,
+ 70206
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 66
},
"end": {
- "line": 2417,
+ "line": 2011,
"column": 69
}
}
@@ -194907,16 +158453,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 87214,
- 87217
+ 70221,
+ 70224
],
"loc": {
"start": {
- "line": 2418,
+ "line": 2012,
"column": 12
},
"end": {
- "line": 2418,
+ "line": 2012,
"column": 15
}
}
@@ -194925,31 +158471,31 @@
"type": "Identifier",
"name": "removeClass",
"range": [
- 87218,
- 87229
+ 70225,
+ 70236
],
"loc": {
"start": {
- "line": 2418,
+ "line": 2012,
"column": 16
},
"end": {
- "line": 2418,
+ "line": 2012,
"column": 27
}
}
},
"range": [
- 87214,
- 87229
+ 70221,
+ 70236
],
"loc": {
"start": {
- "line": 2418,
+ "line": 2012,
"column": 12
},
"end": {
- "line": 2418,
+ "line": 2012,
"column": 27
}
}
@@ -194963,16 +158509,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87247,
- 87251
+ 70254,
+ 70258
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 16
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 20
}
}
@@ -194981,31 +158527,31 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 87252,
- 87268
+ 70259,
+ 70275
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 21
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 37
}
}
},
"range": [
- 87247,
- 87268
+ 70254,
+ 70275
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 16
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 37
}
}
@@ -195015,32 +158561,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 87269,
- 87270
+ 70276,
+ 70277
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 38
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 39
}
}
}
],
"range": [
- 87247,
- 87271
+ 70254,
+ 70278
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 16
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 40
}
}
@@ -195051,16 +158597,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87273,
- 87277
+ 70280,
+ 70284
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 42
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 46
}
}
@@ -195069,109 +158615,109 @@
"type": "Identifier",
"name": "activeColumnsCssClass",
"range": [
- 87278,
- 87299
+ 70285,
+ 70306
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 47
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 68
}
}
},
"range": [
- 87273,
- 87299
+ 70280,
+ 70306
],
"loc": {
"start": {
- "line": 2419,
+ "line": 2013,
"column": 42
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 68
}
}
}
],
"range": [
- 87214,
- 87300
+ 70221,
+ 70307
],
"loc": {
"start": {
- "line": 2418,
+ "line": 2012,
"column": 12
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 69
}
}
},
"range": [
- 87214,
- 87301
+ 70221,
+ 70308
],
"loc": {
"start": {
- "line": 2418,
+ "line": 2012,
"column": 12
},
"end": {
- "line": 2419,
+ "line": 2013,
"column": 70
}
}
}
],
"range": [
- 87200,
- 87311
+ 70207,
+ 70318
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 70
},
"end": {
- "line": 2420,
+ "line": 2014,
"column": 9
}
}
},
"range": [
- 87138,
- 87311
+ 70145,
+ 70318
],
"loc": {
"start": {
- "line": 2417,
+ "line": 2011,
"column": 8
},
"end": {
- "line": 2420,
+ "line": 2014,
"column": 9
}
}
}
],
"range": [
- 87128,
- 87317
+ 70135,
+ 70324
],
"loc": {
"start": {
- "line": 2416,
+ "line": 2010,
"column": 24
},
"end": {
- "line": 2421,
+ "line": 2015,
"column": 5
}
}
@@ -195179,16 +158725,16 @@
"generator": false,
"expression": false,
"range": [
- 87126,
- 87317
+ 70133,
+ 70324
],
"loc": {
"start": {
- "line": 2416,
+ "line": 2010,
"column": 22
},
"end": {
- "line": 2421,
+ "line": 2015,
"column": 5
}
}
@@ -195196,16 +158742,16 @@
"kind": "method",
"computed": false,
"range": [
- 87108,
- 87317
+ 70115,
+ 70324
],
"loc": {
"start": {
- "line": 2416,
+ "line": 2010,
"column": 4
},
"end": {
- "line": 2421,
+ "line": 2015,
"column": 5
}
},
@@ -195214,16 +158760,1196 @@
"type": "Block",
"value": "*\n * Clears filtered columns visual indicator (background color)\n ",
"range": [
- 87025,
- 87103
+ 70032,
+ 70110
],
"loc": {
"start": {
- "line": 2413,
+ "line": 2007,
"column": 4
},
"end": {
- "line": 2415,
+ "line": 2009,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Mark currently filtered column\n * @param {Number} colIndex Column index\n ",
+ "range": [
+ 70330,
+ 70425
+ ],
+ "loc": {
+ "start": {
+ "line": 2017,
+ "column": 4
+ },
+ "end": {
+ "line": 2020,
+ "column": 7
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "markActiveColumn",
+ "range": [
+ 70430,
+ 70446
+ ],
+ "loc": {
+ "start": {
+ "line": 2021,
+ "column": 4
+ },
+ "end": {
+ "line": 2021,
+ "column": 20
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 70447,
+ 70455
+ ],
+ "loc": {
+ "start": {
+ "line": 2021,
+ "column": 21
+ },
+ "end": {
+ "line": 2021,
+ "column": 29
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "header",
+ "range": [
+ 70470,
+ 70476
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 12
+ },
+ "end": {
+ "line": 2022,
+ "column": 18
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70479,
+ 70483
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 21
+ },
+ "end": {
+ "line": 2022,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "getHeaderElement",
+ "range": [
+ 70484,
+ 70500
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 26
+ },
+ "end": {
+ "line": 2022,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 70479,
+ 70500
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 21
+ },
+ "end": {
+ "line": 2022,
+ "column": 42
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 70501,
+ 70509
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 43
+ },
+ "end": {
+ "line": 2022,
+ "column": 51
+ }
+ }
+ }
+ ],
+ "range": [
+ 70479,
+ 70510
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 21
+ },
+ "end": {
+ "line": 2022,
+ "column": 52
+ }
+ }
+ },
+ "range": [
+ 70470,
+ 70510
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 12
+ },
+ "end": {
+ "line": 2022,
+ "column": 52
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 70466,
+ 70511
+ ],
+ "loc": {
+ "start": {
+ "line": 2022,
+ "column": 8
+ },
+ "end": {
+ "line": 2022,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 70523,
+ 70526
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 11
+ },
+ "end": {
+ "line": 2023,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasClass",
+ "range": [
+ 70527,
+ 70535
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 15
+ },
+ "end": {
+ "line": 2023,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 70523,
+ 70535
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 11
+ },
+ "end": {
+ "line": 2023,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "header",
+ "range": [
+ 70536,
+ 70542
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 24
+ },
+ "end": {
+ "line": 2023,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70544,
+ 70548
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 32
+ },
+ "end": {
+ "line": 2023,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeColumnsCssClass",
+ "range": [
+ 70549,
+ 70570
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 37
+ },
+ "end": {
+ "line": 2023,
+ "column": 58
+ }
+ }
+ },
+ "range": [
+ 70544,
+ 70570
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 32
+ },
+ "end": {
+ "line": 2023,
+ "column": 58
+ }
+ }
+ }
+ ],
+ "range": [
+ 70523,
+ 70571
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 11
+ },
+ "end": {
+ "line": 2023,
+ "column": 59
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": null,
+ "range": [
+ 70586,
+ 70593
+ ],
+ "loc": {
+ "start": {
+ "line": 2024,
+ "column": 12
+ },
+ "end": {
+ "line": 2024,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 70572,
+ 70603
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 60
+ },
+ "end": {
+ "line": 2025,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 70520,
+ 70603
+ ],
+ "loc": {
+ "start": {
+ "line": 2023,
+ "column": 8
+ },
+ "end": {
+ "line": 2025,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70615,
+ 70619
+ ],
+ "loc": {
+ "start": {
+ "line": 2026,
+ "column": 11
+ },
+ "end": {
+ "line": 2026,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onBeforeActiveColumn",
+ "range": [
+ 70620,
+ 70640
+ ],
+ "loc": {
+ "start": {
+ "line": 2026,
+ "column": 16
+ },
+ "end": {
+ "line": 2026,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 70615,
+ 70640
+ ],
+ "loc": {
+ "start": {
+ "line": 2026,
+ "column": 11
+ },
+ "end": {
+ "line": 2026,
+ "column": 36
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70655,
+ 70659
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 12
+ },
+ "end": {
+ "line": 2027,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onBeforeActiveColumn",
+ "range": [
+ 70660,
+ 70680
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 17
+ },
+ "end": {
+ "line": 2027,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 70655,
+ 70680
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 12
+ },
+ "end": {
+ "line": 2027,
+ "column": 37
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "call",
+ "range": [
+ 70681,
+ 70685
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 38
+ },
+ "end": {
+ "line": 2027,
+ "column": 42
+ }
+ }
+ },
+ "range": [
+ 70655,
+ 70685
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 12
+ },
+ "end": {
+ "line": 2027,
+ "column": 42
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 70686,
+ 70690
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 43
+ },
+ "end": {
+ "line": 2027,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 70692,
+ 70696
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 49
+ },
+ "end": {
+ "line": 2027,
+ "column": 53
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 70698,
+ 70706
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 55
+ },
+ "end": {
+ "line": 2027,
+ "column": 63
+ }
+ }
+ }
+ ],
+ "range": [
+ 70655,
+ 70707
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 12
+ },
+ "end": {
+ "line": 2027,
+ "column": 64
+ }
+ }
+ },
+ "range": [
+ 70655,
+ 70708
+ ],
+ "loc": {
+ "start": {
+ "line": 2027,
+ "column": 12
+ },
+ "end": {
+ "line": 2027,
+ "column": 65
+ }
+ }
+ }
+ ],
+ "range": [
+ 70641,
+ 70718
+ ],
+ "loc": {
+ "start": {
+ "line": 2026,
+ "column": 37
+ },
+ "end": {
+ "line": 2028,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 70612,
+ 70718
+ ],
+ "loc": {
+ "start": {
+ "line": 2026,
+ "column": 8
+ },
+ "end": {
+ "line": 2028,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Dom",
+ "range": [
+ 70727,
+ 70730
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 8
+ },
+ "end": {
+ "line": 2029,
+ "column": 11
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "addClass",
+ "range": [
+ 70731,
+ 70739
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 12
+ },
+ "end": {
+ "line": 2029,
+ "column": 20
+ }
+ }
+ },
+ "range": [
+ 70727,
+ 70739
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 8
+ },
+ "end": {
+ "line": 2029,
+ "column": 20
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "header",
+ "range": [
+ 70740,
+ 70746
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 21
+ },
+ "end": {
+ "line": 2029,
+ "column": 27
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70748,
+ 70752
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 29
+ },
+ "end": {
+ "line": 2029,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeColumnsCssClass",
+ "range": [
+ 70753,
+ 70774
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 34
+ },
+ "end": {
+ "line": 2029,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 70748,
+ 70774
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 29
+ },
+ "end": {
+ "line": 2029,
+ "column": 55
+ }
+ }
+ }
+ ],
+ "range": [
+ 70727,
+ 70775
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 8
+ },
+ "end": {
+ "line": 2029,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 70727,
+ 70776
+ ],
+ "loc": {
+ "start": {
+ "line": 2029,
+ "column": 8
+ },
+ "end": {
+ "line": 2029,
+ "column": 57
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70788,
+ 70792
+ ],
+ "loc": {
+ "start": {
+ "line": 2030,
+ "column": 11
+ },
+ "end": {
+ "line": 2030,
+ "column": 15
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onAfterActiveColumn",
+ "range": [
+ 70793,
+ 70812
+ ],
+ "loc": {
+ "start": {
+ "line": 2030,
+ "column": 16
+ },
+ "end": {
+ "line": 2030,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 70788,
+ 70812
+ ],
+ "loc": {
+ "start": {
+ "line": 2030,
+ "column": 11
+ },
+ "end": {
+ "line": 2030,
+ "column": 35
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 70827,
+ 70831
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 12
+ },
+ "end": {
+ "line": 2031,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "onAfterActiveColumn",
+ "range": [
+ 70832,
+ 70851
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 17
+ },
+ "end": {
+ "line": 2031,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 70827,
+ 70851
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 12
+ },
+ "end": {
+ "line": 2031,
+ "column": 36
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "call",
+ "range": [
+ 70852,
+ 70856
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 37
+ },
+ "end": {
+ "line": 2031,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 70827,
+ 70856
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 12
+ },
+ "end": {
+ "line": 2031,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": null,
+ "raw": "null",
+ "range": [
+ 70857,
+ 70861
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 42
+ },
+ "end": {
+ "line": 2031,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 70863,
+ 70867
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 48
+ },
+ "end": {
+ "line": 2031,
+ "column": 52
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "colIndex",
+ "range": [
+ 70869,
+ 70877
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 54
+ },
+ "end": {
+ "line": 2031,
+ "column": 62
+ }
+ }
+ }
+ ],
+ "range": [
+ 70827,
+ 70878
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 12
+ },
+ "end": {
+ "line": 2031,
+ "column": 63
+ }
+ }
+ },
+ "range": [
+ 70827,
+ 70879
+ ],
+ "loc": {
+ "start": {
+ "line": 2031,
+ "column": 12
+ },
+ "end": {
+ "line": 2031,
+ "column": 64
+ }
+ }
+ }
+ ],
+ "range": [
+ 70813,
+ 70889
+ ],
+ "loc": {
+ "start": {
+ "line": 2030,
+ "column": 36
+ },
+ "end": {
+ "line": 2032,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 70785,
+ 70889
+ ],
+ "loc": {
+ "start": {
+ "line": 2030,
+ "column": 8
+ },
+ "end": {
+ "line": 2032,
+ "column": 9
+ }
+ }
+ }
+ ],
+ "range": [
+ 70456,
+ 70895
+ ],
+ "loc": {
+ "start": {
+ "line": 2021,
+ "column": 30
+ },
+ "end": {
+ "line": 2033,
+ "column": 5
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 70446,
+ 70895
+ ],
+ "loc": {
+ "start": {
+ "line": 2021,
+ "column": 20
+ },
+ "end": {
+ "line": 2033,
+ "column": 5
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 70430,
+ 70895
+ ],
+ "loc": {
+ "start": {
+ "line": 2021,
+ "column": 4
+ },
+ "end": {
+ "line": 2033,
+ "column": 5
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Mark currently filtered column\n * @param {Number} colIndex Column index\n ",
+ "range": [
+ 70330,
+ 70425
+ ],
+ "loc": {
+ "start": {
+ "line": 2017,
+ "column": 4
+ },
+ "end": {
+ "line": 2020,
"column": 7
}
}
@@ -195234,16 +159960,16 @@
"type": "Block",
"value": "*\n * Refresh the filters subject to linking ('select', 'multiple',\n * 'checklist' type)\n ",
"range": [
- 87323,
- 87428
+ 70901,
+ 71006
],
"loc": {
"start": {
- "line": 2423,
+ "line": 2035,
"column": 4
},
"end": {
- "line": 2426,
+ "line": 2038,
"column": 7
}
}
@@ -195257,16 +159983,16 @@
"type": "Identifier",
"name": "linkFilters",
"range": [
- 87433,
- 87444
+ 71011,
+ 71022
],
"loc": {
"start": {
- "line": 2427,
+ "line": 2039,
"column": 4
},
"end": {
- "line": 2427,
+ "line": 2039,
"column": 15
}
}
@@ -195281,74 +160007,164 @@
{
"type": "IfStatement",
"test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
+ "type": "LogicalExpression",
+ "operator": "||",
+ "left": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 71038,
+ 71042
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 12
+ },
+ "end": {
+ "line": 2040,
+ "column": 16
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "linkedFilters",
+ "range": [
+ 71043,
+ 71056
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 17
+ },
+ "end": {
+ "line": 2040,
+ "column": 30
+ }
+ }
+ },
"range": [
- 87460,
- 87464
+ 71038,
+ 71056
],
"loc": {
"start": {
- "line": 2428,
+ "line": 2040,
"column": 12
},
"end": {
- "line": 2428,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "activeFilterId",
- "range": [
- 87465,
- 87479
- ],
- "loc": {
- "start": {
- "line": 2428,
- "column": 17
- },
- "end": {
- "line": 2428,
- "column": 31
+ "line": 2040,
+ "column": 30
}
}
},
+ "prefix": true,
"range": [
- 87460,
- 87479
+ 71037,
+ 71056
],
"loc": {
"start": {
- "line": 2428,
- "column": 12
+ "line": 2040,
+ "column": 11
},
"end": {
- "line": 2428,
- "column": 31
+ "line": 2040,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 71061,
+ 71065
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 35
+ },
+ "end": {
+ "line": 2040,
+ "column": 39
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "activeFilterId",
+ "range": [
+ 71066,
+ 71080
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 40
+ },
+ "end": {
+ "line": 2040,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 71061,
+ 71080
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 35
+ },
+ "end": {
+ "line": 2040,
+ "column": 54
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 71060,
+ 71080
+ ],
+ "loc": {
+ "start": {
+ "line": 2040,
+ "column": 34
+ },
+ "end": {
+ "line": 2040,
+ "column": 54
}
}
},
- "prefix": true,
"range": [
- 87459,
- 87479
+ 71037,
+ 71080
],
"loc": {
"start": {
- "line": 2428,
+ "line": 2040,
"column": 11
},
"end": {
- "line": 2428,
- "column": 31
+ "line": 2040,
+ "column": 54
}
}
},
@@ -195359,48 +160175,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 87494,
- 87501
+ 71095,
+ 71102
],
"loc": {
"start": {
- "line": 2429,
+ "line": 2041,
"column": 12
},
"end": {
- "line": 2429,
+ "line": 2041,
"column": 19
}
}
}
],
"range": [
- 87480,
- 87511
+ 71081,
+ 71112
],
"loc": {
"start": {
- "line": 2428,
- "column": 32
+ "line": 2040,
+ "column": 55
},
"end": {
- "line": 2430,
+ "line": 2042,
"column": 9
}
}
},
"alternate": null,
"range": [
- 87456,
- 87511
+ 71034,
+ 71112
],
"loc": {
"start": {
- "line": 2428,
+ "line": 2040,
"column": 8
},
"end": {
- "line": 2430,
+ "line": 2042,
"column": 9
}
}
@@ -195414,16 +160230,16 @@
"type": "Identifier",
"name": "slcA1",
"range": [
- 87524,
- 87529
+ 71125,
+ 71130
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 12
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 17
}
}
@@ -195436,16 +160252,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87532,
- 87536
+ 71133,
+ 71137
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 20
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 24
}
}
@@ -195454,31 +160270,31 @@
"type": "Identifier",
"name": "getFiltersByType",
"range": [
- 87537,
- 87553
+ 71138,
+ 71154
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 25
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 41
}
}
},
"range": [
- 87532,
- 87553
+ 71133,
+ 71154
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 20
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 41
}
}
@@ -195490,16 +160306,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87554,
- 87558
+ 71155,
+ 71159
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 42
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 46
}
}
@@ -195508,31 +160324,31 @@
"type": "Identifier",
"name": "fltTypeSlc",
"range": [
- 87559,
- 87569
+ 71160,
+ 71170
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 47
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 57
}
}
},
"range": [
- 87554,
- 87569
+ 71155,
+ 71170
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 42
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 57
}
}
@@ -195542,47 +160358,47 @@
"value": true,
"raw": "true",
"range": [
- 87571,
- 87575
+ 71172,
+ 71176
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 59
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 63
}
}
}
],
"range": [
- 87532,
- 87576
+ 71133,
+ 71177
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 20
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 64
}
}
},
"range": [
- 87524,
- 87576
+ 71125,
+ 71177
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 12
},
"end": {
- "line": 2431,
+ "line": 2043,
"column": 64
}
}
@@ -195593,16 +160409,16 @@
"type": "Identifier",
"name": "slcA2",
"range": [
- 87590,
- 87595
+ 71191,
+ 71196
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 12
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 17
}
}
@@ -195615,16 +160431,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87598,
- 87602
+ 71199,
+ 71203
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 20
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 24
}
}
@@ -195633,31 +160449,31 @@
"type": "Identifier",
"name": "getFiltersByType",
"range": [
- 87603,
- 87619
+ 71204,
+ 71220
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 25
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 41
}
}
},
"range": [
- 87598,
- 87619
+ 71199,
+ 71220
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 20
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 41
}
}
@@ -195669,16 +160485,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87620,
- 87624
+ 71221,
+ 71225
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 42
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 46
}
}
@@ -195687,31 +160503,31 @@
"type": "Identifier",
"name": "fltTypeMulti",
"range": [
- 87625,
- 87637
+ 71226,
+ 71238
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 47
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 59
}
}
},
"range": [
- 87620,
- 87637
+ 71221,
+ 71238
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 42
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 59
}
}
@@ -195721,47 +160537,47 @@
"value": true,
"raw": "true",
"range": [
- 87639,
- 87643
+ 71240,
+ 71244
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 61
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 65
}
}
}
],
"range": [
- 87598,
- 87644
+ 71199,
+ 71245
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 20
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 66
}
}
},
"range": [
- 87590,
- 87644
+ 71191,
+ 71245
],
"loc": {
"start": {
- "line": 2432,
+ "line": 2044,
"column": 12
},
"end": {
- "line": 2432,
+ "line": 2044,
"column": 66
}
}
@@ -195772,16 +160588,16 @@
"type": "Identifier",
"name": "slcA3",
"range": [
- 87658,
- 87663
+ 71259,
+ 71264
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 12
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 17
}
}
@@ -195794,16 +160610,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87666,
- 87670
+ 71267,
+ 71271
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 20
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 24
}
}
@@ -195812,31 +160628,31 @@
"type": "Identifier",
"name": "getFiltersByType",
"range": [
- 87671,
- 87687
+ 71272,
+ 71288
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 25
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 41
}
}
},
"range": [
- 87666,
- 87687
+ 71267,
+ 71288
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 20
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 41
}
}
@@ -195848,16 +160664,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87688,
- 87692
+ 71289,
+ 71293
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 42
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 46
}
}
@@ -195866,31 +160682,31 @@
"type": "Identifier",
"name": "fltTypeCheckList",
"range": [
- 87693,
- 87709
+ 71294,
+ 71310
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 47
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 63
}
}
},
"range": [
- 87688,
- 87709
+ 71289,
+ 71310
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 42
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 63
}
}
@@ -195900,47 +160716,47 @@
"value": true,
"raw": "true",
"range": [
- 87711,
- 87715
+ 71312,
+ 71316
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 65
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 69
}
}
}
],
"range": [
- 87666,
- 87716
+ 71267,
+ 71317
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 20
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 70
}
}
},
"range": [
- 87658,
- 87716
+ 71259,
+ 71317
],
"loc": {
"start": {
- "line": 2433,
+ "line": 2045,
"column": 12
},
"end": {
- "line": 2433,
+ "line": 2045,
"column": 70
}
}
@@ -195951,16 +160767,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 87730,
- 87738
+ 71331,
+ 71339
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 12
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 20
}
}
@@ -195974,16 +160790,16 @@
"type": "Identifier",
"name": "slcA1",
"range": [
- 87741,
- 87746
+ 71342,
+ 71347
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 23
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 28
}
}
@@ -195992,31 +160808,31 @@
"type": "Identifier",
"name": "concat",
"range": [
- 87747,
- 87753
+ 71348,
+ 71354
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 29
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 35
}
}
},
"range": [
- 87741,
- 87753
+ 71342,
+ 71354
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 23
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 35
}
}
@@ -196026,47 +160842,47 @@
"type": "Identifier",
"name": "slcA2",
"range": [
- 87754,
- 87759
+ 71355,
+ 71360
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 36
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 41
}
}
}
],
"range": [
- 87741,
- 87760
+ 71342,
+ 71361
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 23
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 42
}
}
},
"range": [
- 87730,
- 87760
+ 71331,
+ 71361
],
"loc": {
"start": {
- "line": 2434,
+ "line": 2046,
"column": 12
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 42
}
}
@@ -196074,16 +160890,16 @@
],
"kind": "let",
"range": [
- 87520,
- 87761
+ 71121,
+ 71362
],
"loc": {
"start": {
- "line": 2431,
+ "line": 2043,
"column": 8
},
"end": {
- "line": 2434,
+ "line": 2046,
"column": 43
}
}
@@ -196097,16 +160913,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 87770,
- 87778
+ 71371,
+ 71379
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 8
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 16
}
}
@@ -196120,16 +160936,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 87781,
- 87789
+ 71382,
+ 71390
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 19
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 27
}
}
@@ -196138,31 +160954,31 @@
"type": "Identifier",
"name": "concat",
"range": [
- 87790,
- 87796
+ 71391,
+ 71397
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 28
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 34
}
}
},
"range": [
- 87781,
- 87796
+ 71382,
+ 71397
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 19
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 34
}
}
@@ -196172,62 +160988,62 @@
"type": "Identifier",
"name": "slcA3",
"range": [
- 87797,
- 87802
+ 71398,
+ 71403
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 35
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 40
}
}
}
],
"range": [
- 87781,
- 87803
+ 71382,
+ 71404
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 19
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 41
}
}
},
"range": [
- 87770,
- 87803
+ 71371,
+ 71404
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 8
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 41
}
}
},
"range": [
- 87770,
- 87804
+ 71371,
+ 71405
],
"loc": {
"start": {
- "line": 2435,
+ "line": 2047,
"column": 8
},
"end": {
- "line": 2435,
+ "line": 2047,
"column": 42
}
}
@@ -196241,16 +161057,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 87818,
- 87827
+ 71419,
+ 71428
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 12
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 21
}
}
@@ -196269,16 +161085,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87830,
- 87834
+ 71431,
+ 71435
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 24
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 28
}
}
@@ -196287,31 +161103,31 @@
"type": "Identifier",
"name": "activeFilterId",
"range": [
- 87835,
- 87849
+ 71436,
+ 71450
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 29
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 43
}
}
},
"range": [
- 87830,
- 87849
+ 71431,
+ 71450
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 24
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 43
}
}
@@ -196320,31 +161136,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 87850,
- 87855
+ 71451,
+ 71456
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 44
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 49
}
}
},
"range": [
- 87830,
- 87855
+ 71431,
+ 71456
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 24
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 49
}
}
@@ -196355,32 +161171,32 @@
"value": "_",
"raw": "'_'",
"range": [
- 87856,
- 87859
+ 71457,
+ 71460
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 50
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 53
}
}
}
],
"range": [
- 87830,
- 87860
+ 71431,
+ 71461
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 24
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 54
}
}
@@ -196390,46 +161206,46 @@
"value": 0,
"raw": "0",
"range": [
- 87861,
- 87862
+ 71462,
+ 71463
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 55
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 56
}
}
},
"range": [
- 87830,
- 87863
+ 71431,
+ 71464
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 24
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 57
}
}
},
"range": [
- 87818,
- 87863
+ 71419,
+ 71464
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 12
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 57
}
}
@@ -196437,16 +161253,16 @@
],
"kind": "let",
"range": [
- 87814,
- 87864
+ 71415,
+ 71465
],
"loc": {
"start": {
- "line": 2437,
+ "line": 2049,
"column": 8
},
"end": {
- "line": 2437,
+ "line": 2049,
"column": 58
}
}
@@ -196460,16 +161276,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 87873,
- 87882
+ 71474,
+ 71483
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 8
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 17
}
}
@@ -196486,16 +161302,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 87885,
- 87894
+ 71486,
+ 71495
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 20
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 29
}
}
@@ -196504,31 +161320,31 @@
"type": "Identifier",
"name": "split",
"range": [
- 87895,
- 87900
+ 71496,
+ 71501
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 30
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 35
}
}
},
"range": [
- 87885,
- 87900
+ 71486,
+ 71501
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 20
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 35
}
}
@@ -196540,16 +161356,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 87901,
- 87905
+ 71502,
+ 71506
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 36
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 40
}
}
@@ -196558,47 +161374,47 @@
"type": "Identifier",
"name": "prfxFlt",
"range": [
- 87906,
- 87913
+ 71507,
+ 71514
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 41
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 48
}
}
},
"range": [
- 87901,
- 87913
+ 71502,
+ 71514
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 36
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 48
}
}
}
],
"range": [
- 87885,
- 87914
+ 71486,
+ 71515
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 20
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 49
}
}
@@ -196608,61 +161424,61 @@
"value": 1,
"raw": "1",
"range": [
- 87915,
- 87916
+ 71516,
+ 71517
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 50
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 51
}
}
},
"range": [
- 87885,
- 87917
+ 71486,
+ 71518
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 20
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 52
}
}
},
"range": [
- 87873,
- 87917
+ 71474,
+ 71518
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 8
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 52
}
}
},
"range": [
- 87873,
- 87918
+ 71474,
+ 71519
],
"loc": {
"start": {
- "line": 2438,
+ "line": 2050,
"column": 8
},
"end": {
- "line": 2438,
+ "line": 2050,
"column": 53
}
}
@@ -196676,32 +161492,32 @@
"type": "Identifier",
"name": "slcSelectedValue",
"range": [
- 87931,
- 87947
+ 71532,
+ 71548
],
"loc": {
"start": {
- "line": 2439,
+ "line": 2051,
"column": 12
},
"end": {
- "line": 2439,
+ "line": 2051,
"column": 28
}
}
},
"init": null,
"range": [
- 87931,
- 87947
+ 71532,
+ 71548
],
"loc": {
"start": {
- "line": 2439,
+ "line": 2051,
"column": 12
},
"end": {
- "line": 2439,
+ "line": 2051,
"column": 28
}
}
@@ -196709,16 +161525,16 @@
],
"kind": "let",
"range": [
- 87927,
- 87948
+ 71528,
+ 71549
],
"loc": {
"start": {
- "line": 2439,
+ "line": 2051,
"column": 8
},
"end": {
- "line": 2439,
+ "line": 2051,
"column": 29
}
}
@@ -196734,16 +161550,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 87965,
- 87966
+ 71566,
+ 71567
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 16
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 17
}
}
@@ -196753,31 +161569,31 @@
"value": 0,
"raw": "0",
"range": [
- 87967,
- 87968
+ 71568,
+ 71569
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 18
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 19
}
}
},
"range": [
- 87965,
- 87968
+ 71566,
+ 71569
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 16
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 19
}
}
@@ -196788,16 +161604,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 87970,
- 87973
+ 71571,
+ 71574
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 21
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 24
}
}
@@ -196809,16 +161625,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 87974,
- 87982
+ 71575,
+ 71583
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 25
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 33
}
}
@@ -196827,46 +161643,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 87983,
- 87989
+ 71584,
+ 71590
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 34
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 40
}
}
},
"range": [
- 87974,
- 87989
+ 71575,
+ 71590
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 25
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 40
}
}
},
"range": [
- 87970,
- 87989
+ 71571,
+ 71590
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 21
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 40
}
}
@@ -196874,16 +161690,16 @@
],
"kind": "let",
"range": [
- 87961,
- 87989
+ 71562,
+ 71590
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 12
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 40
}
}
@@ -196895,16 +161711,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 87991,
- 87992
+ 71592,
+ 71593
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 42
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 43
}
}
@@ -196913,31 +161729,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 87993,
- 87996
+ 71594,
+ 71597
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 44
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 47
}
}
},
"range": [
- 87991,
- 87996
+ 71592,
+ 71597
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 42
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 47
}
}
@@ -196949,32 +161765,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 87998,
- 87999
+ 71599,
+ 71600
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 49
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 50
}
}
},
"prefix": false,
"range": [
- 87998,
- 88001
+ 71599,
+ 71602
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 49
},
"end": {
- "line": 2440,
+ "line": 2052,
"column": 52
}
}
@@ -196991,16 +161807,16 @@
"type": "Identifier",
"name": "curSlc",
"range": [
- 88020,
- 88026
+ 71621,
+ 71627
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 16
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 22
}
}
@@ -197014,16 +161830,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 88029,
- 88032
+ 71630,
+ 71633
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 25
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 28
}
}
@@ -197032,31 +161848,31 @@
"type": "Identifier",
"name": "id",
"range": [
- 88033,
- 88035
+ 71634,
+ 71636
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 29
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 31
}
}
},
"range": [
- 88029,
- 88035
+ 71630,
+ 71636
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 25
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 31
}
}
@@ -197071,16 +161887,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88036,
- 88040
+ 71637,
+ 71641
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 32
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 36
}
}
@@ -197089,31 +161905,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 88041,
- 88047
+ 71642,
+ 71648
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 37
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 43
}
}
},
"range": [
- 88036,
- 88047
+ 71637,
+ 71648
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 32
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 43
}
}
@@ -197125,16 +161941,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88048,
- 88056
+ 71649,
+ 71657
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 44
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 52
}
}
@@ -197143,77 +161959,77 @@
"type": "Identifier",
"name": "i",
"range": [
- 88057,
- 88058
+ 71658,
+ 71659
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 53
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 54
}
}
},
"range": [
- 88048,
- 88059
+ 71649,
+ 71660
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 44
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 55
}
}
},
"range": [
- 88036,
- 88060
+ 71637,
+ 71661
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 32
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 56
}
}
}
],
"range": [
- 88029,
- 88061
+ 71630,
+ 71662
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 25
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 57
}
}
},
"range": [
- 88020,
- 88061
+ 71621,
+ 71662
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 16
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 57
}
}
@@ -197221,16 +162037,16 @@
],
"kind": "let",
"range": [
- 88016,
- 88062
+ 71617,
+ 71663
],
"loc": {
"start": {
- "line": 2441,
+ "line": 2053,
"column": 12
},
"end": {
- "line": 2441,
+ "line": 2053,
"column": 58
}
}
@@ -197244,16 +162060,16 @@
"type": "Identifier",
"name": "slcSelectedValue",
"range": [
- 88075,
- 88091
+ 71676,
+ 71692
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 12
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 28
}
}
@@ -197266,16 +162082,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88094,
- 88098
+ 71695,
+ 71699
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 31
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 35
}
}
@@ -197284,31 +162100,31 @@
"type": "Identifier",
"name": "getFilterValue",
"range": [
- 88099,
- 88113
+ 71700,
+ 71714
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 36
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 50
}
}
},
"range": [
- 88094,
- 88113
+ 71695,
+ 71714
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 31
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 50
}
}
@@ -197321,16 +162137,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88114,
- 88122
+ 71715,
+ 71723
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 51
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 59
}
}
@@ -197339,77 +162155,77 @@
"type": "Identifier",
"name": "i",
"range": [
- 88123,
- 88124
+ 71724,
+ 71725
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 60
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 61
}
}
},
"range": [
- 88114,
- 88125
+ 71715,
+ 71726
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 51
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 62
}
}
}
],
"range": [
- 88094,
- 88126
+ 71695,
+ 71727
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 31
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 63
}
}
},
"range": [
- 88075,
- 88126
+ 71676,
+ 71727
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 12
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 63
}
}
},
"range": [
- 88075,
- 88127
+ 71676,
+ 71728
],
"loc": {
"start": {
- "line": 2442,
+ "line": 2054,
"column": 12
},
"end": {
- "line": 2442,
+ "line": 2054,
"column": 64
}
},
@@ -197418,16 +162234,16 @@
"type": "Line",
"value": " Welcome to cyclomatic complexity hell :)",
"range": [
- 88141,
- 88184
+ 71742,
+ 71785
],
"loc": {
"start": {
- "line": 2444,
+ "line": 2056,
"column": 12
},
"end": {
- "line": 2444,
+ "line": 2056,
"column": 55
}
}
@@ -197436,16 +162252,16 @@
"type": "Line",
"value": " TODO: simplify/refactor if statement",
"range": [
- 88197,
- 88236
+ 71798,
+ 71837
],
"loc": {
"start": {
- "line": 2445,
+ "line": 2057,
"column": 12
},
"end": {
- "line": 2445,
+ "line": 2057,
"column": 51
}
}
@@ -197470,16 +162286,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 88252,
- 88261
+ 71853,
+ 71862
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 15
},
"end": {
- "line": 2446,
+ "line": 2058,
"column": 24
}
}
@@ -197491,16 +162307,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88264,
- 88272
+ 71865,
+ 71873
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 27
},
"end": {
- "line": 2446,
+ "line": 2058,
"column": 35
}
}
@@ -197509,46 +162325,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 88273,
- 88274
+ 71874,
+ 71875
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 36
},
"end": {
- "line": 2446,
+ "line": 2058,
"column": 37
}
}
},
"range": [
- 88264,
- 88275
+ 71865,
+ 71876
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 27
},
"end": {
- "line": 2446,
+ "line": 2058,
"column": 38
}
}
},
"range": [
- 88252,
- 88275
+ 71853,
+ 71876
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 15
},
"end": {
- "line": 2446,
+ "line": 2058,
"column": 38
}
}
@@ -197565,16 +162381,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88296,
- 88300
+ 71897,
+ 71901
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 17
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 21
}
}
@@ -197583,31 +162399,31 @@
"type": "Identifier",
"name": "paging",
"range": [
- 88301,
- 88307
+ 71902,
+ 71908
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 22
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 28
}
}
},
"range": [
- 88296,
- 88307
+ 71897,
+ 71908
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 17
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 28
}
}
@@ -197624,16 +162440,16 @@
"type": "Identifier",
"name": "slcA1",
"range": [
- 88311,
- 88316
+ 71912,
+ 71917
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 32
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 37
}
}
@@ -197642,31 +162458,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 88317,
- 88324
+ 71918,
+ 71925
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 38
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 45
}
}
},
"range": [
- 88311,
- 88324
+ 71912,
+ 71925
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 32
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 45
}
}
@@ -197679,16 +162495,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88325,
- 88333
+ 71926,
+ 71934
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 46
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 54
}
}
@@ -197697,47 +162513,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 88334,
- 88335
+ 71935,
+ 71936
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 55
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 56
}
}
},
"range": [
- 88325,
- 88336
+ 71926,
+ 71937
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 46
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 57
}
}
}
],
"range": [
- 88311,
- 88337
+ 71912,
+ 71938
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 32
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 58
}
}
@@ -197750,62 +162566,62 @@
"value": 1,
"raw": "1",
"range": [
- 88342,
- 88343
+ 71943,
+ 71944
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 63
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 64
}
}
},
"prefix": true,
"range": [
- 88341,
- 88343
+ 71942,
+ 71944
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 62
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 64
}
}
},
"range": [
- 88311,
- 88343
+ 71912,
+ 71944
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 32
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 64
}
}
},
"range": [
- 88296,
- 88343
+ 71897,
+ 71944
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 17
},
"end": {
- "line": 2447,
+ "line": 2059,
"column": 64
}
}
@@ -197817,16 +162633,16 @@
"type": "Identifier",
"name": "activeFlt",
"range": [
- 88367,
- 88376
+ 71968,
+ 71977
],
"loc": {
"start": {
- "line": 2448,
+ "line": 2060,
"column": 20
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 29
}
}
@@ -197838,16 +162654,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88381,
- 88389
+ 71982,
+ 71990
],
"loc": {
"start": {
- "line": 2448,
+ "line": 2060,
"column": 34
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 42
}
}
@@ -197856,76 +162672,76 @@
"type": "Identifier",
"name": "i",
"range": [
- 88390,
- 88391
+ 71991,
+ 71992
],
"loc": {
"start": {
- "line": 2448,
+ "line": 2060,
"column": 43
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 44
}
}
},
"range": [
- 88381,
- 88392
+ 71982,
+ 71993
],
"loc": {
"start": {
- "line": 2448,
+ "line": 2060,
"column": 34
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 45
}
}
},
"range": [
- 88367,
- 88392
+ 71968,
+ 71993
],
"loc": {
"start": {
- "line": 2448,
+ "line": 2060,
"column": 20
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 45
}
}
},
"range": [
- 88296,
- 88392
+ 71897,
+ 71993
],
"loc": {
"start": {
- "line": 2447,
+ "line": 2059,
"column": 17
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 45
}
}
},
"range": [
- 88252,
- 88394
+ 71853,
+ 71995
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 15
},
"end": {
- "line": 2448,
+ "line": 2060,
"column": 47
}
}
@@ -197942,16 +162758,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88416,
- 88420
+ 72017,
+ 72021
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 18
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 22
}
}
@@ -197960,47 +162776,47 @@
"type": "Identifier",
"name": "paging",
"range": [
- 88421,
- 88427
+ 72022,
+ 72028
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 23
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 29
}
}
},
"range": [
- 88416,
- 88427
+ 72017,
+ 72028
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 18
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 29
}
}
},
"prefix": true,
"range": [
- 88415,
- 88427
+ 72016,
+ 72028
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 17
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 29
}
}
@@ -198020,16 +162836,16 @@
"type": "Identifier",
"name": "slcA3",
"range": [
- 88432,
- 88437
+ 72033,
+ 72038
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 34
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 39
}
}
@@ -198038,31 +162854,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 88438,
- 88445
+ 72039,
+ 72046
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 40
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 47
}
}
},
"range": [
- 88432,
- 88445
+ 72033,
+ 72046
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 34
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 47
}
}
@@ -198075,16 +162891,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88446,
- 88454
+ 72047,
+ 72055
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 48
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 56
}
}
@@ -198093,47 +162909,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 88455,
- 88456
+ 72056,
+ 72057
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 57
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 58
}
}
},
"range": [
- 88446,
- 88457
+ 72047,
+ 72058
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 48
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 59
}
}
}
],
"range": [
- 88432,
- 88458
+ 72033,
+ 72059
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 34
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 60
}
}
@@ -198146,47 +162962,47 @@
"value": 1,
"raw": "1",
"range": [
- 88463,
- 88464
+ 72064,
+ 72065
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 65
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 66
}
}
},
"prefix": true,
"range": [
- 88462,
- 88464
+ 72063,
+ 72065
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 64
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 66
}
}
},
"range": [
- 88432,
- 88464
+ 72033,
+ 72065
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 34
},
"end": {
- "line": 2449,
+ "line": 2061,
"column": 66
}
}
@@ -198203,16 +163019,16 @@
"type": "Identifier",
"name": "slcA2",
"range": [
- 88488,
- 88493
+ 72089,
+ 72094
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 20
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 25
}
}
@@ -198221,31 +163037,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 88494,
- 88501
+ 72095,
+ 72102
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 26
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 33
}
}
},
"range": [
- 88488,
- 88501
+ 72089,
+ 72102
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 20
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 33
}
}
@@ -198258,16 +163074,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88502,
- 88510
+ 72103,
+ 72111
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 34
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 42
}
}
@@ -198276,47 +163092,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 88511,
- 88512
+ 72112,
+ 72113
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 43
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 44
}
}
},
"range": [
- 88502,
- 88513
+ 72103,
+ 72114
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 34
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 45
}
}
}
],
"range": [
- 88488,
- 88514
+ 72089,
+ 72115
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 20
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 46
}
}
@@ -198329,92 +163145,92 @@
"value": 1,
"raw": "1",
"range": [
- 88519,
- 88520
+ 72120,
+ 72121
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 51
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 52
}
}
},
"prefix": true,
"range": [
- 88518,
- 88520
+ 72119,
+ 72121
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 50
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 52
}
}
},
"range": [
- 88488,
- 88520
+ 72089,
+ 72121
],
"loc": {
"start": {
- "line": 2450,
+ "line": 2062,
"column": 20
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 52
}
}
},
"range": [
- 88432,
- 88520
+ 72033,
+ 72121
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 34
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 52
}
}
},
"range": [
- 88415,
- 88521
+ 72016,
+ 72122
],
"loc": {
"start": {
- "line": 2449,
+ "line": 2061,
"column": 17
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 53
}
}
},
"range": [
- 88252,
- 88522
+ 71853,
+ 72123
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 15
},
"end": {
- "line": 2450,
+ "line": 2062,
"column": 54
}
}
@@ -198426,16 +163242,16 @@
"type": "Identifier",
"name": "slcSelectedValue",
"range": [
- 88542,
- 88558
+ 72143,
+ 72159
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 16
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 32
}
}
@@ -198446,16 +163262,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88563,
- 88567
+ 72164,
+ 72168
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 37
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 41
}
}
@@ -198464,61 +163280,61 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 88568,
- 88582
+ 72169,
+ 72183
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 42
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 56
}
}
},
"range": [
- 88563,
- 88582
+ 72164,
+ 72183
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 37
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 56
}
}
},
"range": [
- 88542,
- 88582
+ 72143,
+ 72183
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 16
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 56
}
}
},
"range": [
- 88252,
- 88582
+ 71853,
+ 72183
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 15
},
"end": {
- "line": 2451,
+ "line": 2063,
"column": 56
}
}
@@ -198540,16 +163356,16 @@
"type": "Identifier",
"name": "slcA3",
"range": [
- 88606,
- 88611
+ 72207,
+ 72212
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 19
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 24
}
}
@@ -198558,31 +163374,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 88612,
- 88619
+ 72213,
+ 72220
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 25
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 32
}
}
},
"range": [
- 88606,
- 88619
+ 72207,
+ 72220
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 19
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 32
}
}
@@ -198595,16 +163411,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88620,
- 88628
+ 72221,
+ 72229
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 33
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 41
}
}
@@ -198613,47 +163429,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 88629,
- 88630
+ 72230,
+ 72231
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 42
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 43
}
}
},
"range": [
- 88620,
- 88631
+ 72221,
+ 72232
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 33
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 44
}
}
}
],
"range": [
- 88606,
- 88632
+ 72207,
+ 72233
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 19
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 45
}
}
@@ -198666,47 +163482,47 @@
"value": 1,
"raw": "1",
"range": [
- 88637,
- 88638
+ 72238,
+ 72239
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 50
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 51
}
}
},
"prefix": true,
"range": [
- 88636,
- 88638
+ 72237,
+ 72239
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 49
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 51
}
}
},
"range": [
- 88606,
- 88638
+ 72207,
+ 72239
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 19
},
"end": {
- "line": 2453,
+ "line": 2065,
"column": 51
}
}
@@ -198737,16 +163553,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88661,
- 88665
+ 72262,
+ 72266
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 24
}
}
@@ -198755,31 +163571,31 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 88666,
- 88669
+ 72267,
+ 72270
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 25
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 28
}
}
},
"range": [
- 88661,
- 88669
+ 72262,
+ 72270
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 28
}
}
@@ -198788,31 +163604,31 @@
"type": "Identifier",
"name": "checkList",
"range": [
- 88670,
- 88679
+ 72271,
+ 72280
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 29
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 38
}
}
},
"range": [
- 88661,
- 88679
+ 72262,
+ 72280
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 38
}
}
@@ -198821,31 +163637,31 @@
"type": "Identifier",
"name": "checkListDiv",
"range": [
- 88680,
- 88692
+ 72281,
+ 72293
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 39
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 51
}
}
},
"range": [
- 88661,
- 88692
+ 72262,
+ 72293
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 51
}
}
@@ -198857,16 +163673,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 88693,
- 88701
+ 72294,
+ 72302
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 52
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 60
}
}
@@ -198875,46 +163691,46 @@
"type": "Identifier",
"name": "i",
"range": [
- 88702,
- 88703
+ 72303,
+ 72304
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 61
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 62
}
}
},
"range": [
- 88693,
- 88704
+ 72294,
+ 72305
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 52
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 63
}
}
},
"range": [
- 88661,
- 88705
+ 72262,
+ 72306
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 64
}
}
@@ -198923,31 +163739,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 88706,
- 88715
+ 72307,
+ 72316
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 65
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 74
}
}
},
"range": [
- 88661,
- 88715
+ 72262,
+ 72316
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 74
}
}
@@ -198957,62 +163773,62 @@
"value": "",
"raw": "''",
"range": [
- 88718,
- 88720
+ 72319,
+ 72321
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 77
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 79
}
}
},
"range": [
- 88661,
- 88720
+ 72262,
+ 72321
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 79
}
}
},
"range": [
- 88661,
- 88721
+ 72262,
+ 72322
],
"loc": {
"start": {
- "line": 2454,
+ "line": 2066,
"column": 20
},
"end": {
- "line": 2454,
+ "line": 2066,
"column": 80
}
}
}
],
"range": [
- 88639,
- 88739
+ 72240,
+ 72340
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 52
},
"end": {
- "line": 2455,
+ "line": 2067,
"column": 17
}
}
@@ -199032,16 +163848,16 @@
"type": "Identifier",
"name": "curSlc",
"range": [
- 88767,
- 88773
+ 72368,
+ 72374
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 20
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 26
}
}
@@ -199050,31 +163866,31 @@
"type": "Identifier",
"name": "innerHTML",
"range": [
- 88774,
- 88783
+ 72375,
+ 72384
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 27
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 36
}
}
},
"range": [
- 88767,
- 88783
+ 72368,
+ 72384
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 20
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 36
}
}
@@ -199084,77 +163900,77 @@
"value": "",
"raw": "''",
"range": [
- 88786,
- 88788
+ 72387,
+ 72389
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 39
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 41
}
}
},
"range": [
- 88767,
- 88788
+ 72368,
+ 72389
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 20
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 41
}
}
},
"range": [
- 88767,
- 88789
+ 72368,
+ 72390
],
"loc": {
"start": {
- "line": 2456,
+ "line": 2068,
"column": 20
},
"end": {
- "line": 2456,
+ "line": 2068,
"column": 42
}
}
}
],
"range": [
- 88745,
- 88807
+ 72346,
+ 72408
],
"loc": {
"start": {
- "line": 2455,
+ "line": 2067,
"column": 23
},
"end": {
- "line": 2457,
+ "line": 2069,
"column": 17
}
}
},
"range": [
- 88603,
- 88807
+ 72204,
+ 72408
],
"loc": {
"start": {
- "line": 2453,
+ "line": 2065,
"column": 16
},
"end": {
- "line": 2457,
+ "line": 2069,
"column": 17
}
},
@@ -199163,16 +163979,16 @@
"type": "Line",
"value": "1st option needs to be inserted",
"range": [
- 88825,
- 88858
+ 72426,
+ 72459
],
"loc": {
"start": {
- "line": 2459,
+ "line": 2071,
"column": 16
},
"end": {
- "line": 2459,
+ "line": 2071,
"column": 49
}
}
@@ -199187,16 +164003,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88878,
- 88882
+ 72479,
+ 72483
],
"loc": {
"start": {
- "line": 2460,
+ "line": 2072,
"column": 19
},
"end": {
- "line": 2460,
+ "line": 2072,
"column": 23
}
}
@@ -199205,31 +164021,31 @@
"type": "Identifier",
"name": "loadFltOnDemand",
"range": [
- 88883,
- 88898
+ 72484,
+ 72499
],
"loc": {
"start": {
- "line": 2460,
+ "line": 2072,
"column": 24
},
"end": {
- "line": 2460,
+ "line": 2072,
"column": 39
}
}
},
"range": [
- 88878,
- 88898
+ 72479,
+ 72499
],
"loc": {
"start": {
- "line": 2460,
+ "line": 2072,
"column": 19
},
"end": {
- "line": 2460,
+ "line": 2072,
"column": 39
}
}
@@ -199246,16 +164062,16 @@
"type": "Identifier",
"name": "opt0",
"range": [
- 88926,
- 88930
+ 72527,
+ 72531
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 24
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 28
}
}
@@ -199269,16 +164085,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 88933,
- 88936
+ 72534,
+ 72537
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 31
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 34
}
}
@@ -199287,31 +164103,31 @@
"type": "Identifier",
"name": "createOpt",
"range": [
- 88937,
- 88946
+ 72538,
+ 72547
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 35
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 44
}
}
},
"range": [
- 88933,
- 88946
+ 72534,
+ 72547
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 31
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 44
}
}
@@ -199323,16 +164139,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 88947,
- 88951
+ 72548,
+ 72552
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 45
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 49
}
}
@@ -199341,31 +164157,31 @@
"type": "Identifier",
"name": "displayAllText",
"range": [
- 88952,
- 88966
+ 72553,
+ 72567
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 50
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 64
}
}
},
"range": [
- 88947,
- 88966
+ 72548,
+ 72567
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 45
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 64
}
}
@@ -199375,47 +164191,47 @@
"value": "",
"raw": "''",
"range": [
- 88968,
- 88970
+ 72569,
+ 72571
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 66
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 68
}
}
}
],
"range": [
- 88933,
- 88971
+ 72534,
+ 72572
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 31
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 69
}
}
},
"range": [
- 88926,
- 88971
+ 72527,
+ 72572
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 24
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 69
}
}
@@ -199423,16 +164239,16 @@
],
"kind": "let",
"range": [
- 88922,
- 88972
+ 72523,
+ 72573
],
"loc": {
"start": {
- "line": 2461,
+ "line": 2073,
"column": 20
},
"end": {
- "line": 2461,
+ "line": 2073,
"column": 70
}
}
@@ -199443,16 +164259,16 @@
"type": "Identifier",
"name": "curSlc",
"range": [
- 88996,
- 89002
+ 72597,
+ 72603
],
"loc": {
"start": {
- "line": 2462,
+ "line": 2074,
"column": 23
},
"end": {
- "line": 2462,
+ "line": 2074,
"column": 29
}
}
@@ -199471,16 +164287,16 @@
"type": "Identifier",
"name": "curSlc",
"range": [
- 89029,
- 89035
+ 72630,
+ 72636
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 24
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 30
}
}
@@ -199489,31 +164305,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 89036,
- 89047
+ 72637,
+ 72648
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 31
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 42
}
}
},
"range": [
- 89029,
- 89047
+ 72630,
+ 72648
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 24
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 42
}
}
@@ -199523,111 +164339,111 @@
"type": "Identifier",
"name": "opt0",
"range": [
- 89048,
- 89052
+ 72649,
+ 72653
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 43
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 47
}
}
}
],
"range": [
- 89029,
- 89053
+ 72630,
+ 72654
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 24
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 48
}
}
},
"range": [
- 89029,
- 89054
+ 72630,
+ 72655
],
"loc": {
"start": {
- "line": 2463,
+ "line": 2075,
"column": 24
},
"end": {
- "line": 2463,
+ "line": 2075,
"column": 49
}
}
}
],
"range": [
- 89003,
- 89076
+ 72604,
+ 72677
],
"loc": {
"start": {
- "line": 2462,
+ "line": 2074,
"column": 30
},
"end": {
- "line": 2464,
+ "line": 2076,
"column": 21
}
}
},
"alternate": null,
"range": [
- 88993,
- 89076
+ 72594,
+ 72677
],
"loc": {
"start": {
- "line": 2462,
+ "line": 2074,
"column": 20
},
"end": {
- "line": 2464,
+ "line": 2076,
"column": 21
}
}
}
],
"range": [
- 88900,
- 89094
+ 72501,
+ 72695
],
"loc": {
"start": {
- "line": 2460,
+ "line": 2072,
"column": 41
},
"end": {
- "line": 2465,
+ "line": 2077,
"column": 17
}
}
},
"alternate": null,
"range": [
- 88875,
- 89094
+ 72476,
+ 72695
],
"loc": {
"start": {
- "line": 2460,
+ "line": 2072,
"column": 16
},
"end": {
- "line": 2465,
+ "line": 2077,
"column": 17
}
},
@@ -199636,16 +164452,16 @@
"type": "Line",
"value": "1st option needs to be inserted",
"range": [
- 88825,
- 88858
+ 72426,
+ 72459
],
"loc": {
"start": {
- "line": 2459,
+ "line": 2071,
"column": 16
},
"end": {
- "line": 2459,
+ "line": 2071,
"column": 49
}
}
@@ -199666,16 +164482,16 @@
"type": "Identifier",
"name": "slcA3",
"range": [
- 89115,
- 89120
+ 72716,
+ 72721
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 19
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 24
}
}
@@ -199684,31 +164500,31 @@
"type": "Identifier",
"name": "indexOf",
"range": [
- 89121,
- 89128
+ 72722,
+ 72729
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 25
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 32
}
}
},
"range": [
- 89115,
- 89128
+ 72716,
+ 72729
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 19
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 32
}
}
@@ -199721,16 +164537,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 89129,
- 89137
+ 72730,
+ 72738
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 33
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 41
}
}
@@ -199739,47 +164555,47 @@
"type": "Identifier",
"name": "i",
"range": [
- 89138,
- 89139
+ 72739,
+ 72740
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 42
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 43
}
}
},
"range": [
- 89129,
- 89140
+ 72730,
+ 72741
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 33
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 44
}
}
}
],
"range": [
- 89115,
- 89141
+ 72716,
+ 72742
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 19
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 45
}
}
@@ -199792,47 +164608,47 @@
"value": 1,
"raw": "1",
"range": [
- 89146,
- 89147
+ 72747,
+ 72748
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 50
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 51
}
}
},
"prefix": true,
"range": [
- 89145,
- 89147
+ 72746,
+ 72748
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 49
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 51
}
}
},
"range": [
- 89115,
- 89147
+ 72716,
+ 72748
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 19
},
"end": {
- "line": 2467,
+ "line": 2079,
"column": 51
}
}
@@ -199851,125 +164667,125 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89170,
- 89174
- ],
- "loc": {
- "start": {
- "line": 2468,
- "column": 20
- },
- "end": {
- "line": 2468,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 89175,
- 89178
- ],
- "loc": {
- "start": {
- "line": 2468,
- "column": 25
- },
- "end": {
- "line": 2468,
- "column": 28
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 89170,
- 89178
+ 72771,
+ 72775
],
"loc": {
"start": {
- "line": 2468,
+ "line": 2080,
"column": 20
},
"end": {
- "line": 2468,
- "column": 28
+ "line": 2080,
+ "column": 24
}
}
},
"property": {
"type": "Identifier",
- "name": "checkList",
+ "name": "emitter",
"range": [
- 89179,
- 89188
+ 72776,
+ 72783
],
"loc": {
"start": {
- "line": 2468,
- "column": 29
+ "line": 2080,
+ "column": 25
},
"end": {
- "line": 2468,
- "column": 38
+ "line": 2080,
+ "column": 32
}
}
},
"range": [
- 89170,
- 89188
+ 72771,
+ 72783
],
"loc": {
"start": {
- "line": 2468,
+ "line": 2080,
"column": 20
},
"end": {
- "line": 2468,
- "column": 38
+ "line": 2080,
+ "column": 32
}
}
},
"property": {
"type": "Identifier",
- "name": "_build",
+ "name": "emit",
"range": [
- 89189,
- 89195
+ 72784,
+ 72788
],
"loc": {
"start": {
- "line": 2468,
- "column": 39
+ "line": 2080,
+ "column": 33
},
"end": {
- "line": 2468,
- "column": 45
+ "line": 2080,
+ "column": 37
}
}
},
"range": [
- 89170,
- 89195
+ 72771,
+ 72788
],
"loc": {
"start": {
- "line": 2468,
+ "line": 2080,
"column": 20
},
"end": {
- "line": 2468,
- "column": 45
+ "line": 2080,
+ "column": 37
}
}
},
"arguments": [
+ {
+ "type": "Literal",
+ "value": "build-checklist-filter",
+ "raw": "'build-checklist-filter'",
+ "range": [
+ 72789,
+ 72813
+ ],
+ "loc": {
+ "start": {
+ "line": 2080,
+ "column": 38
+ },
+ "end": {
+ "line": 2080,
+ "column": 62
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 72815,
+ 72819
+ ],
+ "loc": {
+ "start": {
+ "line": 2080,
+ "column": 64
+ },
+ "end": {
+ "line": 2080,
+ "column": 68
+ }
+ }
+ },
{
"type": "MemberExpression",
"computed": true,
@@ -199977,17 +164793,17 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 89196,
- 89204
+ 72845,
+ 72853
],
"loc": {
"start": {
- "line": 2468,
- "column": 46
+ "line": 2081,
+ "column": 24
},
"end": {
- "line": 2468,
- "column": 54
+ "line": 2081,
+ "column": 32
}
}
},
@@ -199995,78 +164811,131 @@
"type": "Identifier",
"name": "i",
"range": [
- 89205,
- 89206
+ 72854,
+ 72855
],
"loc": {
"start": {
- "line": 2468,
- "column": 55
+ "line": 2081,
+ "column": 33
},
"end": {
- "line": 2468,
- "column": 56
+ "line": 2081,
+ "column": 34
}
}
},
"range": [
- 89196,
- 89207
+ 72845,
+ 72856
],
"loc": {
"start": {
- "line": 2468,
- "column": 46
+ "line": 2081,
+ "column": 24
},
"end": {
- "line": 2468,
- "column": 57
+ "line": 2081,
+ "column": 35
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 72858,
+ 72862
+ ],
+ "loc": {
+ "start": {
+ "line": 2081,
+ "column": 37
+ },
+ "end": {
+ "line": 2081,
+ "column": 41
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 72863,
+ 72876
+ ],
+ "loc": {
+ "start": {
+ "line": 2081,
+ "column": 42
+ },
+ "end": {
+ "line": 2081,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 72858,
+ 72876
+ ],
+ "loc": {
+ "start": {
+ "line": 2081,
+ "column": 37
+ },
+ "end": {
+ "line": 2081,
+ "column": 55
}
}
}
],
"range": [
- 89170,
- 89208
+ 72771,
+ 72877
],
"loc": {
"start": {
- "line": 2468,
+ "line": 2080,
"column": 20
},
"end": {
- "line": 2468,
- "column": 58
+ "line": 2081,
+ "column": 56
}
}
},
"range": [
- 89170,
- 89209
+ 72771,
+ 72878
],
"loc": {
"start": {
- "line": 2468,
+ "line": 2080,
"column": 20
},
"end": {
- "line": 2468,
- "column": 59
+ "line": 2081,
+ "column": 57
}
}
}
],
"range": [
- 89148,
- 89227
+ 72749,
+ 72896
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 52
},
"end": {
- "line": 2469,
+ "line": 2082,
"column": 17
}
}
@@ -200085,125 +164954,125 @@
"type": "MemberExpression",
"computed": false,
"object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89255,
- 89259
- ],
- "loc": {
- "start": {
- "line": 2470,
- "column": 20
- },
- "end": {
- "line": 2470,
- "column": 24
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 89260,
- 89263
- ],
- "loc": {
- "start": {
- "line": 2470,
- "column": 25
- },
- "end": {
- "line": 2470,
- "column": 28
- }
- }
- },
+ "type": "ThisExpression",
"range": [
- 89255,
- 89263
+ 72924,
+ 72928
],
"loc": {
"start": {
- "line": 2470,
+ "line": 2083,
"column": 20
},
"end": {
- "line": 2470,
- "column": 28
+ "line": 2083,
+ "column": 24
}
}
},
"property": {
"type": "Identifier",
- "name": "dropdown",
+ "name": "emitter",
"range": [
- 89264,
- 89272
+ 72929,
+ 72936
],
"loc": {
"start": {
- "line": 2470,
- "column": 29
+ "line": 2083,
+ "column": 25
},
"end": {
- "line": 2470,
- "column": 37
+ "line": 2083,
+ "column": 32
}
}
},
"range": [
- 89255,
- 89272
+ 72924,
+ 72936
],
"loc": {
"start": {
- "line": 2470,
+ "line": 2083,
"column": 20
},
"end": {
- "line": 2470,
- "column": 37
+ "line": 2083,
+ "column": 32
}
}
},
"property": {
"type": "Identifier",
- "name": "_build",
+ "name": "emit",
"range": [
- 89273,
- 89279
+ 72937,
+ 72941
],
"loc": {
"start": {
- "line": 2470,
- "column": 38
+ "line": 2083,
+ "column": 33
},
"end": {
- "line": 2470,
- "column": 44
+ "line": 2083,
+ "column": 37
}
}
},
"range": [
- 89255,
- 89279
+ 72924,
+ 72941
],
"loc": {
"start": {
- "line": 2470,
+ "line": 2083,
"column": 20
},
"end": {
- "line": 2470,
- "column": 44
+ "line": 2083,
+ "column": 37
}
}
},
"arguments": [
+ {
+ "type": "Literal",
+ "value": "build-select-filter",
+ "raw": "'build-select-filter'",
+ "range": [
+ 72942,
+ 72963
+ ],
+ "loc": {
+ "start": {
+ "line": 2083,
+ "column": 38
+ },
+ "end": {
+ "line": 2083,
+ "column": 59
+ }
+ }
+ },
+ {
+ "type": "ThisExpression",
+ "range": [
+ 72965,
+ 72969
+ ],
+ "loc": {
+ "start": {
+ "line": 2083,
+ "column": 61
+ },
+ "end": {
+ "line": 2083,
+ "column": 65
+ }
+ }
+ },
{
"type": "MemberExpression",
"computed": true,
@@ -200211,17 +165080,17 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 89280,
- 89288
+ 72971,
+ 72979
],
"loc": {
"start": {
- "line": 2470,
- "column": 45
+ "line": 2083,
+ "column": 67
},
"end": {
- "line": 2470,
- "column": 53
+ "line": 2083,
+ "column": 75
}
}
},
@@ -200229,32 +165098,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 89289,
- 89290
+ 72980,
+ 72981
],
"loc": {
"start": {
- "line": 2470,
- "column": 54
+ "line": 2083,
+ "column": 76
},
"end": {
- "line": 2470,
- "column": 55
+ "line": 2083,
+ "column": 77
}
}
},
"range": [
- 89280,
- 89291
+ 72971,
+ 72982
],
"loc": {
"start": {
- "line": 2470,
- "column": 45
+ "line": 2083,
+ "column": 67
},
"end": {
- "line": 2470,
- "column": 56
+ "line": 2083,
+ "column": 78
}
}
},
@@ -200263,78 +165132,131 @@
"value": true,
"raw": "true",
"range": [
- 89293,
- 89297
+ 73008,
+ 73012
],
"loc": {
"start": {
- "line": 2470,
- "column": 58
+ "line": 2084,
+ "column": 24
},
"end": {
- "line": 2470,
- "column": 62
+ "line": 2084,
+ "column": 28
+ }
+ }
+ },
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 73014,
+ 73018
+ ],
+ "loc": {
+ "start": {
+ "line": 2084,
+ "column": 30
+ },
+ "end": {
+ "line": 2084,
+ "column": 34
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isExternalFlt",
+ "range": [
+ 73019,
+ 73032
+ ],
+ "loc": {
+ "start": {
+ "line": 2084,
+ "column": 35
+ },
+ "end": {
+ "line": 2084,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 73014,
+ 73032
+ ],
+ "loc": {
+ "start": {
+ "line": 2084,
+ "column": 30
+ },
+ "end": {
+ "line": 2084,
+ "column": 48
}
}
}
],
"range": [
- 89255,
- 89298
+ 72924,
+ 73033
],
"loc": {
"start": {
- "line": 2470,
+ "line": 2083,
"column": 20
},
"end": {
- "line": 2470,
- "column": 63
+ "line": 2084,
+ "column": 49
}
}
},
"range": [
- 89255,
- 89299
+ 72924,
+ 73034
],
"loc": {
"start": {
- "line": 2470,
+ "line": 2083,
"column": 20
},
"end": {
- "line": 2470,
- "column": 64
+ "line": 2084,
+ "column": 50
}
}
}
],
"range": [
- 89233,
- 89317
+ 72902,
+ 73052
],
"loc": {
"start": {
- "line": 2469,
+ "line": 2082,
"column": 23
},
"end": {
- "line": 2471,
+ "line": 2085,
"column": 17
}
}
},
"range": [
- 89112,
- 89317
+ 72713,
+ 73052
],
"loc": {
"start": {
- "line": 2467,
+ "line": 2079,
"column": 16
},
"end": {
- "line": 2471,
+ "line": 2085,
"column": 17
}
}
@@ -200349,16 +165271,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 89335,
- 89339
+ 73070,
+ 73074
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 16
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 20
}
}
@@ -200367,31 +165289,31 @@
"type": "Identifier",
"name": "setFilterValue",
"range": [
- 89340,
- 89354
+ 73075,
+ 73089
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 21
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 35
}
}
},
"range": [
- 89335,
- 89354
+ 73070,
+ 73089
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 16
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 35
}
}
@@ -200404,16 +165326,16 @@
"type": "Identifier",
"name": "slcIndex",
"range": [
- 89355,
- 89363
+ 73090,
+ 73098
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 36
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 44
}
}
@@ -200422,31 +165344,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 89364,
- 89365
+ 73099,
+ 73100
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 45
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 46
}
}
},
"range": [
- 89355,
- 89366
+ 73090,
+ 73101
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 36
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 47
}
}
@@ -200455,79 +165377,79 @@
"type": "Identifier",
"name": "slcSelectedValue",
"range": [
- 89368,
- 89384
+ 73103,
+ 73119
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 49
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 65
}
}
}
],
"range": [
- 89335,
- 89385
+ 73070,
+ 73120
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 16
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 66
}
}
},
"range": [
- 89335,
- 89386
+ 73070,
+ 73121
],
"loc": {
"start": {
- "line": 2473,
+ "line": 2087,
"column": 16
},
"end": {
- "line": 2473,
+ "line": 2087,
"column": 67
}
}
}
],
"range": [
- 88584,
- 89400
+ 72185,
+ 73135
],
"loc": {
"start": {
- "line": 2451,
+ "line": 2063,
"column": 58
},
"end": {
- "line": 2474,
+ "line": 2088,
"column": 13
}
}
},
"alternate": null,
"range": [
- 88249,
- 89400
+ 71850,
+ 73135
],
"loc": {
"start": {
- "line": 2446,
+ "line": 2058,
"column": 12
},
"end": {
- "line": 2474,
+ "line": 2088,
"column": 13
}
},
@@ -200536,16 +165458,16 @@
"type": "Line",
"value": " Welcome to cyclomatic complexity hell :)",
"range": [
- 88141,
- 88184
+ 71742,
+ 71785
],
"loc": {
"start": {
- "line": 2444,
+ "line": 2056,
"column": 12
},
"end": {
- "line": 2444,
+ "line": 2056,
"column": 55
}
}
@@ -200554,16 +165476,16 @@
"type": "Line",
"value": " TODO: simplify/refactor if statement",
"range": [
- 88197,
- 88236
+ 71798,
+ 71837
],
"loc": {
"start": {
- "line": 2445,
+ "line": 2057,
"column": 12
},
"end": {
- "line": 2445,
+ "line": 2057,
"column": 51
}
}
@@ -200572,31 +165494,31 @@
}
],
"range": [
- 88002,
- 89410
+ 71603,
+ 73145
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 53
},
"end": {
- "line": 2475,
+ "line": 2089,
"column": 9
}
}
},
"range": [
- 87957,
- 89410
+ 71558,
+ 73145
],
"loc": {
"start": {
- "line": 2440,
+ "line": 2052,
"column": 8
},
"end": {
- "line": 2475,
+ "line": 2089,
"column": 9
}
},
@@ -200605,16 +165527,16 @@
"type": "Line",
"value": " for i",
"range": [
- 89410,
- 89418
+ 73145,
+ 73153
],
"loc": {
"start": {
- "line": 2475,
+ "line": 2089,
"column": 9
},
"end": {
- "line": 2475,
+ "line": 2089,
"column": 17
}
}
@@ -200623,16 +165545,16 @@
}
],
"range": [
- 87446,
- 89424
+ 71024,
+ 73159
],
"loc": {
"start": {
- "line": 2427,
+ "line": 2039,
"column": 17
},
"end": {
- "line": 2476,
+ "line": 2090,
"column": 5
}
}
@@ -200640,16 +165562,16 @@
"generator": false,
"expression": false,
"range": [
- 87444,
- 89424
+ 71022,
+ 73159
],
"loc": {
"start": {
- "line": 2427,
+ "line": 2039,
"column": 15
},
"end": {
- "line": 2476,
+ "line": 2090,
"column": 5
}
}
@@ -200657,16 +165579,16 @@
"kind": "method",
"computed": false,
"range": [
- 87433,
- 89424
+ 71011,
+ 73159
],
"loc": {
"start": {
- "line": 2427,
+ "line": 2039,
"column": 4
},
"end": {
- "line": 2476,
+ "line": 2090,
"column": 5
}
},
@@ -200675,5095 +165597,16 @@
"type": "Block",
"value": "*\n * Refresh the filters subject to linking ('select', 'multiple',\n * 'checklist' type)\n ",
"range": [
- 87323,
- 87428
+ 70901,
+ 71006
],
"loc": {
"start": {
- "line": 2423,
+ "line": 2035,
"column": 4
},
"end": {
- "line": 2426,
- "column": 7
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Block",
- "value": "*\n * Re-generate the filters grid bar when previously removed\n ",
- "range": [
- 89430,
- 89505
- ],
- "loc": {
- "start": {
- "line": 2478,
- "column": 4
- },
- "end": {
- "line": 2480,
- "column": 7
- }
- }
- }
- ],
- "static": false
- },
- {
- "type": "MethodDefinition",
- "key": {
- "type": "Identifier",
- "name": "_resetGrid",
- "range": [
- 89510,
- 89520
- ],
- "loc": {
- "start": {
- "line": 2481,
- "column": 4
- },
- "end": {
- "line": 2481,
- "column": 14
- }
- }
- },
- "value": {
- "type": "FunctionExpression",
- "id": null,
- "params": [],
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89535,
- 89539
- ],
- "loc": {
- "start": {
- "line": 2482,
- "column": 11
- },
- "end": {
- "line": 2482,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isFirstLoad",
- "range": [
- 89540,
- 89551
- ],
- "loc": {
- "start": {
- "line": 2482,
- "column": 16
- },
- "end": {
- "line": 2482,
- "column": 27
- }
- }
- },
- "range": [
- 89535,
- 89551
- ],
- "loc": {
- "start": {
- "line": 2482,
- "column": 11
- },
- "end": {
- "line": 2482,
- "column": 27
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ReturnStatement",
- "argument": null,
- "range": [
- 89566,
- 89573
- ],
- "loc": {
- "start": {
- "line": 2483,
- "column": 12
- },
- "end": {
- "line": 2483,
- "column": 19
- }
- }
- }
- ],
- "range": [
- 89552,
- 89583
- ],
- "loc": {
- "start": {
- "line": 2482,
- "column": 28
- },
- "end": {
- "line": 2484,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 89532,
- 89583
- ],
- "loc": {
- "start": {
- "line": 2482,
- "column": 8
- },
- "end": {
- "line": 2484,
- "column": 9
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 89597,
- 89600
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 12
- },
- "end": {
- "line": 2486,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89603,
- 89607
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 18
- },
- "end": {
- "line": 2486,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 89608,
- 89611
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 23
- },
- "end": {
- "line": 2486,
- "column": 26
- }
- }
- },
- "range": [
- 89603,
- 89611
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 18
- },
- "end": {
- "line": 2486,
- "column": 26
- }
- }
- },
- "range": [
- 89597,
- 89611
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 12
- },
- "end": {
- "line": 2486,
- "column": 26
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 89593,
- 89612
- ],
- "loc": {
- "start": {
- "line": 2486,
- "column": 8
- },
- "end": {
- "line": 2486,
- "column": 27
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 89625,
- 89628
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 12
- },
- "end": {
- "line": 2487,
- "column": 15
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89631,
- 89635
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 18
- },
- "end": {
- "line": 2487,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 89636,
- 89639
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 23
- },
- "end": {
- "line": 2487,
- "column": 26
- }
- }
- },
- "range": [
- 89631,
- 89639
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 18
- },
- "end": {
- "line": 2487,
- "column": 26
- }
- }
- },
- "range": [
- 89625,
- 89639
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 12
- },
- "end": {
- "line": 2487,
- "column": 26
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 89621,
- 89640
- ],
- "loc": {
- "start": {
- "line": 2487,
- "column": 8
- },
- "end": {
- "line": 2487,
- "column": 27
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 89653,
- 89657
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 12
- },
- "end": {
- "line": 2488,
- "column": 16
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 89660,
- 89663
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 19
- },
- "end": {
- "line": 2488,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 89664,
- 89668
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 23
- },
- "end": {
- "line": 2488,
- "column": 27
- }
- }
- },
- "range": [
- 89660,
- 89668
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 19
- },
- "end": {
- "line": 2488,
- "column": 27
- }
- }
- },
- "range": [
- 89653,
- 89668
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 12
- },
- "end": {
- "line": 2488,
- "column": 27
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 89649,
- 89669
- ],
- "loc": {
- "start": {
- "line": 2488,
- "column": 8
- },
- "end": {
- "line": 2488,
- "column": 28
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 89682,
- 89697
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 12
- },
- "end": {
- "line": 2489,
- "column": 27
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89700,
- 89704
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 30
- },
- "end": {
- "line": 2489,
- "column": 34
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 89705,
- 89720
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 35
- },
- "end": {
- "line": 2489,
- "column": 50
- }
- }
- },
- "range": [
- 89700,
- 89720
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 30
- },
- "end": {
- "line": 2489,
- "column": 50
- }
- }
- },
- "range": [
- 89682,
- 89720
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 12
- },
- "end": {
- "line": 2489,
- "column": 50
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 89678,
- 89721
- ],
- "loc": {
- "start": {
- "line": 2489,
- "column": 8
- },
- "end": {
- "line": 2489,
- "column": 51
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "filtersRow",
- "range": [
- 89734,
- 89744
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 12
- },
- "end": {
- "line": 2490,
- "column": 22
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 89747,
- 89751
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 25
- },
- "end": {
- "line": 2490,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 89752,
- 89767
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 30
- },
- "end": {
- "line": 2490,
- "column": 45
- }
- }
- },
- "range": [
- 89747,
- 89768
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 25
- },
- "end": {
- "line": 2490,
- "column": 46
- }
- }
- },
- "range": [
- 89734,
- 89768
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 12
- },
- "end": {
- "line": 2490,
- "column": 46
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 89730,
- 89769
- ],
- "loc": {
- "start": {
- "line": 2490,
- "column": 8
- },
- "end": {
- "line": 2490,
- "column": 47
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": " grid was removed, grid row element is stored in fltGridEl property",
- "range": [
- 89779,
- 89848
- ],
- "loc": {
- "start": {
- "line": 2492,
- "column": 8
- },
- "end": {
- "line": 2492,
- "column": 77
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 89861,
- 89865
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 12
- },
- "end": {
- "line": 2493,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 89866,
- 89876
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 17
- },
- "end": {
- "line": 2493,
- "column": 27
- }
- }
- },
- "range": [
- 89861,
- 89876
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 12
- },
- "end": {
- "line": 2493,
- "column": 27
- }
- }
- },
- "prefix": true,
- "range": [
- 89860,
- 89876
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 11
- },
- "end": {
- "line": 2493,
- "column": 27
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 90001,
- 90004
- ],
- "loc": {
- "start": {
- "line": 2496,
- "column": 15
- },
- "end": {
- "line": 2496,
- "column": 18
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tHead",
- "range": [
- 90005,
- 90010
- ],
- "loc": {
- "start": {
- "line": 2496,
- "column": 19
- },
- "end": {
- "line": 2496,
- "column": 24
- }
- }
- },
- "range": [
- 90001,
- 90010
- ],
- "loc": {
- "start": {
- "line": 2496,
- "column": 15
- },
- "end": {
- "line": 2496,
- "column": 24
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "tempRow",
- "range": [
- 90033,
- 90040
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 20
- },
- "end": {
- "line": 2497,
- "column": 27
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 90043,
- 90046
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 30
- },
- "end": {
- "line": 2497,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tHead",
- "range": [
- 90047,
- 90052
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 34
- },
- "end": {
- "line": 2497,
- "column": 39
- }
- }
- },
- "range": [
- 90043,
- 90052
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 30
- },
- "end": {
- "line": 2497,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "insertRow",
- "range": [
- 90053,
- 90062
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 40
- },
- "end": {
- "line": 2497,
- "column": 49
- }
- }
- },
- "range": [
- 90043,
- 90062
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 30
- },
- "end": {
- "line": 2497,
- "column": 49
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90063,
- 90067
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 50
- },
- "end": {
- "line": 2497,
- "column": 54
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "filtersRowIndex",
- "range": [
- 90068,
- 90083
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 55
- },
- "end": {
- "line": 2497,
- "column": 70
- }
- }
- },
- "range": [
- 90063,
- 90083
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 50
- },
- "end": {
- "line": 2497,
- "column": 70
- }
- }
- }
- ],
- "range": [
- 90043,
- 90084
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 30
- },
- "end": {
- "line": 2497,
- "column": 71
- }
- }
- },
- "range": [
- 90033,
- 90084
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 20
- },
- "end": {
- "line": 2497,
- "column": 71
- }
- }
- }
- ],
- "kind": "var",
- "range": [
- 90029,
- 90085
- ],
- "loc": {
- "start": {
- "line": 2497,
- "column": 16
- },
- "end": {
- "line": 2497,
- "column": 72
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 90102,
- 90105
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 16
- },
- "end": {
- "line": 2498,
- "column": 19
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tHead",
- "range": [
- 90106,
- 90111
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 20
- },
- "end": {
- "line": 2498,
- "column": 25
- }
- }
- },
- "range": [
- 90102,
- 90111
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 16
- },
- "end": {
- "line": 2498,
- "column": 25
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "replaceChild",
- "range": [
- 90112,
- 90124
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 26
- },
- "end": {
- "line": 2498,
- "column": 38
- }
- }
- },
- "range": [
- 90102,
- 90124
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 16
- },
- "end": {
- "line": 2498,
- "column": 38
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90125,
- 90129
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 39
- },
- "end": {
- "line": 2498,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltGridEl",
- "range": [
- 90130,
- 90139
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 44
- },
- "end": {
- "line": 2498,
- "column": 53
- }
- }
- },
- "range": [
- 90125,
- 90139
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 39
- },
- "end": {
- "line": 2498,
- "column": 53
- }
- }
- },
- {
- "type": "Identifier",
- "name": "tempRow",
- "range": [
- 90141,
- 90148
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 55
- },
- "end": {
- "line": 2498,
- "column": 62
- }
- }
- }
- ],
- "range": [
- 90102,
- 90149
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 16
- },
- "end": {
- "line": 2498,
- "column": 63
- }
- }
- },
- "range": [
- 90102,
- 90150
- ],
- "loc": {
- "start": {
- "line": 2498,
- "column": 16
- },
- "end": {
- "line": 2498,
- "column": 64
- }
- }
- }
- ],
- "range": [
- 90011,
- 90164
- ],
- "loc": {
- "start": {
- "line": 2496,
- "column": 25
- },
- "end": {
- "line": 2499,
- "column": 13
- }
- }
- },
- "alternate": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "filtersRow",
- "range": [
- 90188,
- 90198
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 16
- },
- "end": {
- "line": 2500,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "parentNode",
- "range": [
- 90199,
- 90209
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 27
- },
- "end": {
- "line": 2500,
- "column": 37
- }
- }
- },
- "range": [
- 90188,
- 90209
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 16
- },
- "end": {
- "line": 2500,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "insertBefore",
- "range": [
- 90210,
- 90222
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 38
- },
- "end": {
- "line": 2500,
- "column": 50
- }
- }
- },
- "range": [
- 90188,
- 90222
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 16
- },
- "end": {
- "line": 2500,
- "column": 50
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90223,
- 90227
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 51
- },
- "end": {
- "line": 2500,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltGridEl",
- "range": [
- 90228,
- 90237
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 56
- },
- "end": {
- "line": 2500,
- "column": 65
- }
- }
- },
- "range": [
- 90223,
- 90237
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 51
- },
- "end": {
- "line": 2500,
- "column": 65
- }
- }
- },
- {
- "type": "Identifier",
- "name": "filtersRow",
- "range": [
- 90239,
- 90249
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 67
- },
- "end": {
- "line": 2500,
- "column": 77
- }
- }
- }
- ],
- "range": [
- 90188,
- 90250
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 16
- },
- "end": {
- "line": 2500,
- "column": 78
- }
- }
- },
- "range": [
- 90188,
- 90251
- ],
- "loc": {
- "start": {
- "line": 2500,
- "column": 16
- },
- "end": {
- "line": 2500,
- "column": 79
- }
- }
- }
- ],
- "range": [
- 90170,
- 90265
- ],
- "loc": {
- "start": {
- "line": 2499,
- "column": 19
- },
- "end": {
- "line": 2501,
- "column": 13
- }
- }
- },
- "range": [
- 89998,
- 90265
- ],
- "loc": {
- "start": {
- "line": 2496,
- "column": 12
- },
- "end": {
- "line": 2501,
- "column": 13
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " If table has a thead ensure the filters row is appended in the",
- "range": [
- 89891,
- 89956
- ],
- "loc": {
- "start": {
- "line": 2494,
- "column": 12
- },
- "end": {
- "line": 2494,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " thead element",
- "range": [
- 89969,
- 89985
- ],
- "loc": {
- "start": {
- "line": 2495,
- "column": 12
- },
- "end": {
- "line": 2495,
- "column": 28
- }
- }
- }
- ]
- }
- ],
- "range": [
- 89877,
- 90275
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 28
- },
- "end": {
- "line": 2502,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 89857,
- 90275
- ],
- "loc": {
- "start": {
- "line": 2493,
- "column": 8
- },
- "end": {
- "line": 2502,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " grid was removed, grid row element is stored in fltGridEl property",
- "range": [
- 89779,
- 89848
- ],
- "loc": {
- "start": {
- "line": 2492,
- "column": 8
- },
- "end": {
- "line": 2492,
- "column": 77
- }
- }
- }
- ],
- "trailingComments": [
- {
- "type": "Line",
- "value": " filters are appended in external placeholders elements",
- "range": [
- 90285,
- 90342
- ],
- "loc": {
- "start": {
- "line": 2504,
- "column": 8
- },
- "end": {
- "line": 2504,
- "column": 65
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90354,
- 90358
- ],
- "loc": {
- "start": {
- "line": 2505,
- "column": 11
- },
- "end": {
- "line": 2505,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "isExternalFlt",
- "range": [
- 90359,
- 90372
- ],
- "loc": {
- "start": {
- "line": 2505,
- "column": 16
- },
- "end": {
- "line": 2505,
- "column": 29
- }
- }
- },
- "range": [
- 90354,
- 90372
- ],
- "loc": {
- "start": {
- "line": 2505,
- "column": 11
- },
- "end": {
- "line": 2505,
- "column": 29
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 90391,
- 90408
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 16
- },
- "end": {
- "line": 2506,
- "column": 33
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90411,
- 90415
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 36
- },
- "end": {
- "line": 2506,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 90416,
- 90433
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 41
- },
- "end": {
- "line": 2506,
- "column": 58
- }
- }
- },
- "range": [
- 90411,
- 90433
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 36
- },
- "end": {
- "line": 2506,
- "column": 58
- }
- }
- },
- "range": [
- 90391,
- 90433
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 16
- },
- "end": {
- "line": 2506,
- "column": 58
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 90387,
- 90434
- ],
- "loc": {
- "start": {
- "line": 2506,
- "column": 12
- },
- "end": {
- "line": 2506,
- "column": 59
- }
- }
- },
- {
- "type": "ForStatement",
- "init": {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90455,
- 90457
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 20
- },
- "end": {
- "line": 2507,
- "column": 22
- }
- }
- },
- "init": {
- "type": "Literal",
- "value": 0,
- "raw": "0",
- "range": [
- 90458,
- 90459
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 23
- },
- "end": {
- "line": 2507,
- "column": 24
- }
- }
- },
- "range": [
- 90455,
- 90459
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 20
- },
- "end": {
- "line": 2507,
- "column": 24
- }
- }
- },
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 90461,
- 90464
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 26
- },
- "end": {
- "line": 2507,
- "column": 29
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 90465,
- 90482
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 30
- },
- "end": {
- "line": 2507,
- "column": 47
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 90483,
- 90489
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 48
- },
- "end": {
- "line": 2507,
- "column": 54
- }
- }
- },
- "range": [
- 90465,
- 90489
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 30
- },
- "end": {
- "line": 2507,
- "column": 54
- }
- }
- },
- "range": [
- 90461,
- 90489
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 26
- },
- "end": {
- "line": 2507,
- "column": 54
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 90451,
- 90489
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 16
- },
- "end": {
- "line": 2507,
- "column": 54
- }
- }
- },
- "test": {
- "type": "BinaryExpression",
- "operator": "<",
- "left": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90491,
- 90493
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 56
- },
- "end": {
- "line": 2507,
- "column": 58
- }
- }
- },
- "right": {
- "type": "Identifier",
- "name": "len",
- "range": [
- 90494,
- 90497
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 59
- },
- "end": {
- "line": 2507,
- "column": 62
- }
- }
- },
- "range": [
- 90491,
- 90497
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 56
- },
- "end": {
- "line": 2507,
- "column": 62
- }
- }
- },
- "update": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90499,
- 90501
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 64
- },
- "end": {
- "line": 2507,
- "column": 66
- }
- }
- },
- "prefix": false,
- "range": [
- 90499,
- 90503
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 64
- },
- "end": {
- "line": 2507,
- "column": 68
- }
- }
- },
- "body": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "extFlt",
- "range": [
- 90526,
- 90532
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 20
- },
- "end": {
- "line": 2508,
- "column": 26
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 90535,
- 90538
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 29
- },
- "end": {
- "line": 2508,
- "column": 32
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "id",
- "range": [
- 90539,
- 90541
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 33
- },
- "end": {
- "line": 2508,
- "column": 35
- }
- }
- },
- "range": [
- 90535,
- 90541
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 29
- },
- "end": {
- "line": 2508,
- "column": 35
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "Identifier",
- "name": "externalFltTgtIds",
- "range": [
- 90542,
- 90559
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 36
- },
- "end": {
- "line": 2508,
- "column": 53
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90560,
- 90562
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 54
- },
- "end": {
- "line": 2508,
- "column": 56
- }
- }
- },
- "range": [
- 90542,
- 90563
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 36
- },
- "end": {
- "line": 2508,
- "column": 57
- }
- }
- }
- ],
- "range": [
- 90535,
- 90564
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 29
- },
- "end": {
- "line": 2508,
- "column": 58
- }
- }
- },
- "range": [
- 90526,
- 90564
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 20
- },
- "end": {
- "line": 2508,
- "column": 58
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 90522,
- 90565
- ],
- "loc": {
- "start": {
- "line": 2508,
- "column": 16
- },
- "end": {
- "line": 2508,
- "column": 59
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "Identifier",
- "name": "extFlt",
- "range": [
- 90587,
- 90593
- ],
- "loc": {
- "start": {
- "line": 2510,
- "column": 20
- },
- "end": {
- "line": 2510,
- "column": 26
- }
- }
- },
- "prefix": true,
- "range": [
- 90586,
- 90593
- ],
- "loc": {
- "start": {
- "line": 2510,
- "column": 19
- },
- "end": {
- "line": 2510,
- "column": 26
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ContinueStatement",
- "label": null,
- "range": [
- 90596,
- 90605
- ],
- "loc": {
- "start": {
- "line": 2510,
- "column": 29
- },
- "end": {
- "line": 2510,
- "column": 38
- }
- }
- }
- ],
- "range": [
- 90594,
- 90607
- ],
- "loc": {
- "start": {
- "line": 2510,
- "column": 27
- },
- "end": {
- "line": 2510,
- "column": 40
- }
- }
- },
- "alternate": null,
- "range": [
- 90583,
- 90607
- ],
- "loc": {
- "start": {
- "line": 2510,
- "column": 16
- },
- "end": {
- "line": 2510,
- "column": 40
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "externalFltEl",
- "range": [
- 90629,
- 90642
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 20
- },
- "end": {
- "line": 2512,
- "column": 33
- }
- }
- },
- "init": {
- "type": "MemberExpression",
- "computed": true,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90645,
- 90649
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 36
- },
- "end": {
- "line": 2512,
- "column": 40
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "externalFltEls",
- "range": [
- 90650,
- 90664
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 41
- },
- "end": {
- "line": 2512,
- "column": 55
- }
- }
- },
- "range": [
- 90645,
- 90664
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 36
- },
- "end": {
- "line": 2512,
- "column": 55
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90665,
- 90667
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 56
- },
- "end": {
- "line": 2512,
- "column": 58
- }
- }
- },
- "range": [
- 90645,
- 90668
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 36
- },
- "end": {
- "line": 2512,
- "column": 59
- }
- }
- },
- "range": [
- 90629,
- 90668
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 20
- },
- "end": {
- "line": 2512,
- "column": 59
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 90625,
- 90669
- ],
- "loc": {
- "start": {
- "line": 2512,
- "column": 16
- },
- "end": {
- "line": 2512,
- "column": 60
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "extFlt",
- "range": [
- 90686,
- 90692
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 16
- },
- "end": {
- "line": 2513,
- "column": 22
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "appendChild",
- "range": [
- 90693,
- 90704
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 23
- },
- "end": {
- "line": 2513,
- "column": 34
- }
- }
- },
- "range": [
- 90686,
- 90704
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 16
- },
- "end": {
- "line": 2513,
- "column": 34
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "externalFltEl",
- "range": [
- 90705,
- 90718
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 35
- },
- "end": {
- "line": 2513,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 90686,
- 90719
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 16
- },
- "end": {
- "line": 2513,
- "column": 49
- }
- }
- },
- "range": [
- 90686,
- 90720
- ],
- "loc": {
- "start": {
- "line": 2513,
- "column": 16
- },
- "end": {
- "line": 2513,
- "column": 50
- }
- }
- },
- {
- "type": "VariableDeclaration",
- "declarations": [
- {
- "type": "VariableDeclarator",
- "id": {
- "type": "Identifier",
- "name": "colFltType",
- "range": [
- 90741,
- 90751
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 20
- },
- "end": {
- "line": 2514,
- "column": 30
- }
- }
- },
- "init": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90754,
- 90758
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 33
- },
- "end": {
- "line": 2514,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getFilterType",
- "range": [
- 90759,
- 90772
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 38
- },
- "end": {
- "line": 2514,
- "column": 51
- }
- }
- },
- "range": [
- 90754,
- 90772
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 33
- },
- "end": {
- "line": 2514,
- "column": 51
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 90773,
- 90775
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 52
- },
- "end": {
- "line": 2514,
- "column": 54
- }
- }
- }
- ],
- "range": [
- 90754,
- 90776
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 33
- },
- "end": {
- "line": 2514,
- "column": 55
- }
- }
- },
- "range": [
- 90741,
- 90776
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 20
- },
- "end": {
- "line": 2514,
- "column": 55
- }
- }
- }
- ],
- "kind": "let",
- "range": [
- 90737,
- 90777
- ],
- "loc": {
- "start": {
- "line": 2514,
- "column": 16
- },
- "end": {
- "line": 2514,
- "column": 56
- }
- },
- "trailingComments": [
- {
- "type": "Line",
- "value": "IE special treatment for gridLayout, appended filters are",
- "range": [
- 90794,
- 90853
- ],
- "loc": {
- "start": {
- "line": 2515,
- "column": 16
- },
- "end": {
- "line": 2515,
- "column": 75
- }
- }
- },
- {
- "type": "Line",
- "value": "empty",
- "range": [
- 90870,
- 90877
- ],
- "loc": {
- "start": {
- "line": 2516,
- "column": 16
- },
- "end": {
- "line": 2516,
- "column": 23
- }
- }
- }
- ]
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "LogicalExpression",
- "operator": "&&",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 90897,
- 90901
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 19
- },
- "end": {
- "line": 2517,
- "column": 23
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 90902,
- 90912
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 24
- },
- "end": {
- "line": 2517,
- "column": 34
- }
- }
- },
- "range": [
- 90897,
- 90912
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 19
- },
- "end": {
- "line": 2517,
- "column": 34
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "externalFltEl",
- "range": [
- 90936,
- 90949
- ],
- "loc": {
- "start": {
- "line": 2518,
- "column": 20
- },
- "end": {
- "line": 2518,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "innerHTML",
- "range": [
- 90950,
- 90959
- ],
- "loc": {
- "start": {
- "line": 2518,
- "column": 34
- },
- "end": {
- "line": 2518,
- "column": 43
- }
- }
- },
- "range": [
- 90936,
- 90959
- ],
- "loc": {
- "start": {
- "line": 2518,
- "column": 20
- },
- "end": {
- "line": 2518,
- "column": 43
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": "",
- "raw": "''",
- "range": [
- 90964,
- 90966
- ],
- "loc": {
- "start": {
- "line": 2518,
- "column": 48
- },
- "end": {
- "line": 2518,
- "column": 50
- }
- }
- },
- "range": [
- 90936,
- 90966
- ],
- "loc": {
- "start": {
- "line": 2518,
- "column": 20
- },
- "end": {
- "line": 2518,
- "column": 50
- }
- }
- },
- "range": [
- 90897,
- 90966
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 19
- },
- "end": {
- "line": 2518,
- "column": 50
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "!==",
- "left": {
- "type": "Identifier",
- "name": "colFltType",
- "range": [
- 90990,
- 91000
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 20
- },
- "end": {
- "line": 2519,
- "column": 30
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91005,
- 91009
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 35
- },
- "end": {
- "line": 2519,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeInp",
- "range": [
- 91010,
- 91020
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 40
- },
- "end": {
- "line": 2519,
- "column": 50
- }
- }
- },
- "range": [
- 91005,
- 91020
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 35
- },
- "end": {
- "line": 2519,
- "column": 50
- }
- }
- },
- "range": [
- 90990,
- 91020
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 20
- },
- "end": {
- "line": 2519,
- "column": 50
- }
- }
- },
- "range": [
- 90897,
- 91020
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 19
- },
- "end": {
- "line": 2519,
- "column": 50
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "IfStatement",
- "test": {
- "type": "LogicalExpression",
- "operator": "||",
- "left": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "colFltType",
- "range": [
- 91046,
- 91056
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 23
- },
- "end": {
- "line": 2520,
- "column": 33
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91061,
- 91065
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 38
- },
- "end": {
- "line": 2520,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeSlc",
- "range": [
- 91066,
- 91076
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 43
- },
- "end": {
- "line": 2520,
- "column": 53
- }
- }
- },
- "range": [
- 91061,
- 91076
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 38
- },
- "end": {
- "line": 2520,
- "column": 53
- }
- }
- },
- "range": [
- 91046,
- 91076
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 23
- },
- "end": {
- "line": 2520,
- "column": 53
- }
- }
- },
- "right": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "colFltType",
- "range": [
- 91104,
- 91114
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 24
- },
- "end": {
- "line": 2521,
- "column": 34
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91119,
- 91123
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 39
- },
- "end": {
- "line": 2521,
- "column": 43
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeMulti",
- "range": [
- 91124,
- 91136
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 44
- },
- "end": {
- "line": 2521,
- "column": 56
- }
- }
- },
- "range": [
- 91119,
- 91136
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 39
- },
- "end": {
- "line": 2521,
- "column": 56
- }
- }
- },
- "range": [
- 91104,
- 91136
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 24
- },
- "end": {
- "line": 2521,
- "column": 56
- }
- }
- },
- "range": [
- 91046,
- 91136
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 23
- },
- "end": {
- "line": 2521,
- "column": 56
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 91163,
- 91166
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 24
- },
- "end": {
- "line": 2522,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "dropdown",
- "range": [
- 91167,
- 91175
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 28
- },
- "end": {
- "line": 2522,
- "column": 36
- }
- }
- },
- "range": [
- 91163,
- 91175
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 24
- },
- "end": {
- "line": 2522,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "build",
- "range": [
- 91176,
- 91181
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 37
- },
- "end": {
- "line": 2522,
- "column": 42
- }
- }
- },
- "range": [
- 91163,
- 91181
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 24
- },
- "end": {
- "line": 2522,
- "column": 42
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 91182,
- 91184
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 43
- },
- "end": {
- "line": 2522,
- "column": 45
- }
- }
- }
- ],
- "range": [
- 91163,
- 91185
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 24
- },
- "end": {
- "line": 2522,
- "column": 46
- }
- }
- },
- "range": [
- 91163,
- 91186
- ],
- "loc": {
- "start": {
- "line": 2522,
- "column": 24
- },
- "end": {
- "line": 2522,
- "column": 47
- }
- }
- }
- ],
- "range": [
- 91137,
- 91208
- ],
- "loc": {
- "start": {
- "line": 2521,
- "column": 57
- },
- "end": {
- "line": 2523,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 91043,
- 91208
- ],
- "loc": {
- "start": {
- "line": 2520,
- "column": 20
- },
- "end": {
- "line": 2523,
- "column": 21
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "BinaryExpression",
- "operator": "===",
- "left": {
- "type": "Identifier",
- "name": "colFltType",
- "range": [
- 91232,
- 91242
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 23
- },
- "end": {
- "line": 2524,
- "column": 33
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91247,
- 91251
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 38
- },
- "end": {
- "line": 2524,
- "column": 42
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "fltTypeCheckList",
- "range": [
- 91252,
- 91268
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 43
- },
- "end": {
- "line": 2524,
- "column": 59
- }
- }
- },
- "range": [
- 91247,
- 91268
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 38
- },
- "end": {
- "line": 2524,
- "column": 59
- }
- }
- },
- "range": [
- 91232,
- 91268
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 23
- },
- "end": {
- "line": 2524,
- "column": 59
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 91295,
- 91298
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 24
- },
- "end": {
- "line": 2525,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "checkList",
- "range": [
- 91299,
- 91308
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 28
- },
- "end": {
- "line": 2525,
- "column": 37
- }
- }
- },
- "range": [
- 91295,
- 91308
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 24
- },
- "end": {
- "line": 2525,
- "column": 37
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "build",
- "range": [
- 91309,
- 91314
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 38
- },
- "end": {
- "line": 2525,
- "column": 43
- }
- }
- },
- "range": [
- 91295,
- 91314
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 24
- },
- "end": {
- "line": 2525,
- "column": 43
- }
- }
- },
- "arguments": [
- {
- "type": "Identifier",
- "name": "ct",
- "range": [
- 91315,
- 91317
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 44
- },
- "end": {
- "line": 2525,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 91295,
- 91318
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 24
- },
- "end": {
- "line": 2525,
- "column": 47
- }
- }
- },
- "range": [
- 91295,
- 91319
- ],
- "loc": {
- "start": {
- "line": 2525,
- "column": 24
- },
- "end": {
- "line": 2525,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 91269,
- 91341
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 60
- },
- "end": {
- "line": 2526,
- "column": 21
- }
- }
- },
- "alternate": null,
- "range": [
- 91229,
- 91341
- ],
- "loc": {
- "start": {
- "line": 2524,
- "column": 20
- },
- "end": {
- "line": 2526,
- "column": 21
- }
- }
- }
- ],
- "range": [
- 91021,
- 91359
- ],
- "loc": {
- "start": {
- "line": 2519,
- "column": 51
- },
- "end": {
- "line": 2527,
- "column": 17
- }
- }
- },
- "alternate": null,
- "range": [
- 90894,
- 91359
- ],
- "loc": {
- "start": {
- "line": 2517,
- "column": 16
- },
- "end": {
- "line": 2527,
- "column": 17
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": "IE special treatment for gridLayout, appended filters are",
- "range": [
- 90794,
- 90853
- ],
- "loc": {
- "start": {
- "line": 2515,
- "column": 16
- },
- "end": {
- "line": 2515,
- "column": 75
- }
- }
- },
- {
- "type": "Line",
- "value": "empty",
- "range": [
- 90870,
- 90877
- ],
- "loc": {
- "start": {
- "line": 2516,
- "column": 16
- },
- "end": {
- "line": 2516,
- "column": 23
- }
- }
- }
- ]
- }
- ],
- "range": [
- 90504,
- 91373
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 69
- },
- "end": {
- "line": 2528,
- "column": 13
- }
- }
- },
- "range": [
- 90447,
- 91373
- ],
- "loc": {
- "start": {
- "line": 2507,
- "column": 12
- },
- "end": {
- "line": 2528,
- "column": 13
- }
- }
- }
- ],
- "range": [
- 90373,
- 91383
- ],
- "loc": {
- "start": {
- "line": 2505,
- "column": 30
- },
- "end": {
- "line": 2529,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 90351,
- 91383
- ],
- "loc": {
- "start": {
- "line": 2505,
- "column": 8
- },
- "end": {
- "line": 2529,
- "column": 9
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " filters are appended in external placeholders elements",
- "range": [
- 90285,
- 90342
- ],
- "loc": {
- "start": {
- "line": 2504,
- "column": 8
- },
- "end": {
- "line": 2504,
- "column": 65
- }
- }
- }
- ]
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91393,
- 91397
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 8
- },
- "end": {
- "line": 2531,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 91398,
- 91414
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 13
- },
- "end": {
- "line": 2531,
- "column": 29
- }
- }
- },
- "range": [
- 91393,
- 91414
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 8
- },
- "end": {
- "line": 2531,
- "column": 29
- }
- }
- },
- "right": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91417,
- 91421
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 32
- },
- "end": {
- "line": 2531,
- "column": 36
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "getRowsNb",
- "range": [
- 91422,
- 91431
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 37
- },
- "end": {
- "line": 2531,
- "column": 46
- }
- }
- },
- "range": [
- 91417,
- 91431
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 32
- },
- "end": {
- "line": 2531,
- "column": 46
- }
- }
- },
- "arguments": [],
- "range": [
- 91417,
- 91433
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 32
- },
- "end": {
- "line": 2531,
- "column": 48
- }
- }
- },
- "range": [
- 91393,
- 91433
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 8
- },
- "end": {
- "line": 2531,
- "column": 48
- }
- }
- },
- "range": [
- 91393,
- 91434
- ],
- "loc": {
- "start": {
- "line": 2531,
- "column": 8
- },
- "end": {
- "line": 2531,
- "column": 49
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91443,
- 91447
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 8
- },
- "end": {
- "line": 2532,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbVisibleRows",
- "range": [
- 91448,
- 91461
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 13
- },
- "end": {
- "line": 2532,
- "column": 26
- }
- }
- },
- "range": [
- 91443,
- 91461
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 8
- },
- "end": {
- "line": 2532,
- "column": 26
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91464,
- 91468
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 29
- },
- "end": {
- "line": 2532,
- "column": 33
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbFilterableRows",
- "range": [
- 91469,
- 91485
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 34
- },
- "end": {
- "line": 2532,
- "column": 50
- }
- }
- },
- "range": [
- 91464,
- 91485
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 29
- },
- "end": {
- "line": 2532,
- "column": 50
- }
- }
- },
- "range": [
- 91443,
- 91485
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 8
- },
- "end": {
- "line": 2532,
- "column": 50
- }
- }
- },
- "range": [
- 91443,
- 91486
- ],
- "loc": {
- "start": {
- "line": 2532,
- "column": 8
- },
- "end": {
- "line": 2532,
- "column": 51
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91495,
- 91499
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 8
- },
- "end": {
- "line": 2533,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "nbRows",
- "range": [
- 91500,
- 91506
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 13
- },
- "end": {
- "line": 2533,
- "column": 19
- }
- }
- },
- "range": [
- 91495,
- 91506
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 8
- },
- "end": {
- "line": 2533,
- "column": 19
- }
- }
- },
- "right": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "rows",
- "range": [
- 91509,
- 91513
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 22
- },
- "end": {
- "line": 2533,
- "column": 26
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "length",
- "range": [
- 91514,
- 91520
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 27
- },
- "end": {
- "line": 2533,
- "column": 33
- }
- }
- },
- "range": [
- 91509,
- 91520
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 22
- },
- "end": {
- "line": 2533,
- "column": 33
- }
- }
- },
- "range": [
- 91495,
- 91520
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 8
- },
- "end": {
- "line": 2533,
- "column": 33
- }
- }
- },
- "range": [
- 91495,
- 91521
- ],
- "loc": {
- "start": {
- "line": 2533,
- "column": 8
- },
- "end": {
- "line": 2533,
- "column": 34
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91534,
- 91538
- ],
- "loc": {
- "start": {
- "line": 2535,
- "column": 11
- },
- "end": {
- "line": 2535,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilters",
- "range": [
- 91539,
- 91551
- ],
- "loc": {
- "start": {
- "line": 2535,
- "column": 16
- },
- "end": {
- "line": 2535,
- "column": 28
- }
- }
- },
- "range": [
- 91534,
- 91551
- ],
- "loc": {
- "start": {
- "line": 2535,
- "column": 11
- },
- "end": {
- "line": 2535,
- "column": 28
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "UpdateExpression",
- "operator": "++",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91566,
- 91570
- ],
- "loc": {
- "start": {
- "line": 2536,
- "column": 12
- },
- "end": {
- "line": 2536,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "headersRow",
- "range": [
- 91571,
- 91581
- ],
- "loc": {
- "start": {
- "line": 2536,
- "column": 17
- },
- "end": {
- "line": 2536,
- "column": 27
- }
- }
- },
- "range": [
- 91566,
- 91581
- ],
- "loc": {
- "start": {
- "line": 2536,
- "column": 12
- },
- "end": {
- "line": 2536,
- "column": 27
- }
- }
- },
- "prefix": false,
- "range": [
- 91566,
- 91583
- ],
- "loc": {
- "start": {
- "line": 2536,
- "column": 12
- },
- "end": {
- "line": 2536,
- "column": 29
- }
- }
- },
- "range": [
- 91566,
- 91584
- ],
- "loc": {
- "start": {
- "line": 2536,
- "column": 12
- },
- "end": {
- "line": 2536,
- "column": 30
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Mod",
- "range": [
- 91597,
- 91600
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 12
- },
- "end": {
- "line": 2537,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "popupFilter",
- "range": [
- 91601,
- 91612
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 16
- },
- "end": {
- "line": 2537,
- "column": 27
- }
- }
- },
- "range": [
- 91597,
- 91612
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 12
- },
- "end": {
- "line": 2537,
- "column": 27
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "reset",
- "range": [
- 91613,
- 91618
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 28
- },
- "end": {
- "line": 2537,
- "column": 33
- }
- }
- },
- "range": [
- 91597,
- 91618
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 12
- },
- "end": {
- "line": 2537,
- "column": 33
- }
- }
- },
- "arguments": [],
- "range": [
- 91597,
- 91620
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 12
- },
- "end": {
- "line": 2537,
- "column": 35
- }
- }
- },
- "range": [
- 91597,
- 91621
- ],
- "loc": {
- "start": {
- "line": 2537,
- "column": 12
- },
- "end": {
- "line": 2537,
- "column": 36
- }
- }
- }
- ],
- "range": [
- 91552,
- 91631
- ],
- "loc": {
- "start": {
- "line": 2535,
- "column": 29
- },
- "end": {
- "line": 2538,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 91531,
- 91631
- ],
- "loc": {
- "start": {
- "line": 2535,
- "column": 8
- },
- "end": {
- "line": 2538,
- "column": 9
- }
- }
- },
- {
- "type": "IfStatement",
- "test": {
- "type": "UnaryExpression",
- "operator": "!",
- "argument": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91645,
- 91649
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 12
- },
- "end": {
- "line": 2540,
- "column": 16
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "gridLayout",
- "range": [
- 91650,
- 91660
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 17
- },
- "end": {
- "line": 2540,
- "column": 27
- }
- }
- },
- "range": [
- 91645,
- 91660
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 12
- },
- "end": {
- "line": 2540,
- "column": 27
- }
- }
- },
- "prefix": true,
- "range": [
- 91644,
- 91660
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 11
- },
- "end": {
- "line": 2540,
- "column": 27
- }
- }
- },
- "consequent": {
- "type": "BlockStatement",
- "body": [
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "CallExpression",
- "callee": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "Identifier",
- "name": "Dom",
- "range": [
- 91675,
- 91678
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 12
- },
- "end": {
- "line": 2541,
- "column": 15
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "addClass",
- "range": [
- 91679,
- 91687
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 16
- },
- "end": {
- "line": 2541,
- "column": 24
- }
- }
- },
- "range": [
- 91675,
- 91687
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 12
- },
- "end": {
- "line": 2541,
- "column": 24
- }
- }
- },
- "arguments": [
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91688,
- 91692
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 25
- },
- "end": {
- "line": 2541,
- "column": 29
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "tbl",
- "range": [
- 91693,
- 91696
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 30
- },
- "end": {
- "line": 2541,
- "column": 33
- }
- }
- },
- "range": [
- 91688,
- 91696
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 25
- },
- "end": {
- "line": 2541,
- "column": 33
- }
- }
- },
- {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91698,
- 91702
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 35
- },
- "end": {
- "line": 2541,
- "column": 39
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "prfxTf",
- "range": [
- 91703,
- 91709
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 40
- },
- "end": {
- "line": 2541,
- "column": 46
- }
- }
- },
- "range": [
- 91698,
- 91709
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 35
- },
- "end": {
- "line": 2541,
- "column": 46
- }
- }
- }
- ],
- "range": [
- 91675,
- 91710
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 12
- },
- "end": {
- "line": 2541,
- "column": 47
- }
- }
- },
- "range": [
- 91675,
- 91711
- ],
- "loc": {
- "start": {
- "line": 2541,
- "column": 12
- },
- "end": {
- "line": 2541,
- "column": 48
- }
- }
- }
- ],
- "range": [
- 91661,
- 91721
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 28
- },
- "end": {
- "line": 2542,
- "column": 9
- }
- }
- },
- "alternate": null,
- "range": [
- 91641,
- 91721
- ],
- "loc": {
- "start": {
- "line": 2540,
- "column": 8
- },
- "end": {
- "line": 2542,
- "column": 9
- }
- }
- },
- {
- "type": "ExpressionStatement",
- "expression": {
- "type": "AssignmentExpression",
- "operator": "=",
- "left": {
- "type": "MemberExpression",
- "computed": false,
- "object": {
- "type": "ThisExpression",
- "range": [
- 91730,
- 91734
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 8
- },
- "end": {
- "line": 2543,
- "column": 12
- }
- }
- },
- "property": {
- "type": "Identifier",
- "name": "_hasGrid",
- "range": [
- 91735,
- 91743
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 13
- },
- "end": {
- "line": 2543,
- "column": 21
- }
- }
- },
- "range": [
- 91730,
- 91743
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 8
- },
- "end": {
- "line": 2543,
- "column": 21
- }
- }
- },
- "right": {
- "type": "Literal",
- "value": true,
- "raw": "true",
- "range": [
- 91746,
- 91750
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 24
- },
- "end": {
- "line": 2543,
- "column": 28
- }
- }
- },
- "range": [
- 91730,
- 91750
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 8
- },
- "end": {
- "line": 2543,
- "column": 28
- }
- }
- },
- "range": [
- 91730,
- 91751
- ],
- "loc": {
- "start": {
- "line": 2543,
- "column": 8
- },
- "end": {
- "line": 2543,
- "column": 29
- }
- }
- }
- ],
- "range": [
- 89522,
- 91757
- ],
- "loc": {
- "start": {
- "line": 2481,
- "column": 16
- },
- "end": {
- "line": 2544,
- "column": 5
- }
- }
- },
- "generator": false,
- "expression": false,
- "range": [
- 89520,
- 91757
- ],
- "loc": {
- "start": {
- "line": 2481,
- "column": 14
- },
- "end": {
- "line": 2544,
- "column": 5
- }
- }
- },
- "kind": "method",
- "computed": false,
- "range": [
- 89510,
- 91757
- ],
- "loc": {
- "start": {
- "line": 2481,
- "column": 4
- },
- "end": {
- "line": 2544,
- "column": 5
- }
- },
- "leadingComments": [
- {
- "type": "Line",
- "value": " for i",
- "range": [
- 89410,
- 89418
- ],
- "loc": {
- "start": {
- "line": 2475,
- "column": 9
- },
- "end": {
- "line": 2475,
- "column": 17
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Re-generate the filters grid bar when previously removed\n ",
- "range": [
- 89430,
- 89505
- ],
- "loc": {
- "start": {
- "line": 2478,
- "column": 4
- },
- "end": {
- "line": 2480,
+ "line": 2038,
"column": 7
}
}
@@ -205774,16 +165617,16 @@
"type": "Block",
"value": "*\n * Determines if passed filter column implements exact query match\n * @param {Number} colIndex [description]\n * @return {Boolean} [description]\n ",
"range": [
- 91763,
- 91941
+ 73165,
+ 73343
],
"loc": {
"start": {
- "line": 2546,
+ "line": 2092,
"column": 4
},
"end": {
- "line": 2550,
+ "line": 2096,
"column": 7
}
}
@@ -205797,16 +165640,16 @@
"type": "Identifier",
"name": "isExactMatch",
"range": [
- 91946,
- 91958
+ 73348,
+ 73360
],
"loc": {
"start": {
- "line": 2551,
+ "line": 2097,
"column": 4
},
"end": {
- "line": 2551,
+ "line": 2097,
"column": 16
}
}
@@ -205819,16 +165662,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 91959,
- 91967
+ 73361,
+ 73369
],
"loc": {
"start": {
- "line": 2551,
+ "line": 2097,
"column": 17
},
"end": {
- "line": 2551,
+ "line": 2097,
"column": 25
}
}
@@ -205846,16 +165689,16 @@
"type": "Identifier",
"name": "fltType",
"range": [
- 91982,
- 91989
+ 73384,
+ 73391
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 12
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 19
}
}
@@ -205868,16 +165711,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 91992,
- 91996
+ 73394,
+ 73398
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 22
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 26
}
}
@@ -205886,31 +165729,31 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 91997,
- 92010
+ 73399,
+ 73412
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 27
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 40
}
}
},
"range": [
- 91992,
- 92010
+ 73394,
+ 73412
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 22
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 40
}
}
@@ -205920,47 +165763,47 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 92011,
- 92019
+ 73413,
+ 73421
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 41
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 49
}
}
}
],
"range": [
- 91992,
- 92020
+ 73394,
+ 73422
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 22
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 50
}
}
},
"range": [
- 91982,
- 92020
+ 73384,
+ 73422
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 12
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 50
}
}
@@ -205968,16 +165811,16 @@
],
"kind": "let",
"range": [
- 91978,
- 92021
+ 73380,
+ 73423
],
"loc": {
"start": {
- "line": 2552,
+ "line": 2098,
"column": 8
},
"end": {
- "line": 2552,
+ "line": 2098,
"column": 51
}
}
@@ -205999,16 +165842,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 92037,
- 92041
+ 73439,
+ 73443
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 15
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 19
}
}
@@ -206017,31 +165860,31 @@
"type": "Identifier",
"name": "exactMatchByCol",
"range": [
- 92042,
- 92057
+ 73444,
+ 73459
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 20
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 35
}
}
},
"range": [
- 92037,
- 92057
+ 73439,
+ 73459
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 15
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 35
}
}
@@ -206050,31 +165893,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 92058,
- 92066
+ 73460,
+ 73468
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 36
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 44
}
}
},
"range": [
- 92037,
- 92067
+ 73439,
+ 73469
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 15
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 45
}
}
@@ -206085,16 +165928,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 92071,
- 92075
+ 73473,
+ 73477
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 49
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 53
}
}
@@ -206103,46 +165946,46 @@
"type": "Identifier",
"name": "exactMatch",
"range": [
- 92076,
- 92086
+ 73478,
+ 73488
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 54
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 64
}
}
},
"range": [
- 92071,
- 92086
+ 73473,
+ 73488
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 49
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 64
}
}
},
"range": [
- 92037,
- 92086
+ 73439,
+ 73488
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 15
},
"end": {
- "line": 2553,
+ "line": 2099,
"column": 64
}
}
@@ -206154,16 +165997,16 @@
"type": "Identifier",
"name": "fltType",
"range": [
- 92103,
- 92110
+ 73505,
+ 73512
],
"loc": {
"start": {
- "line": 2554,
+ "line": 2100,
"column": 13
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 20
}
}
@@ -206174,16 +166017,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 92115,
- 92119
+ 73517,
+ 73521
],
"loc": {
"start": {
- "line": 2554,
+ "line": 2100,
"column": 25
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 29
}
}
@@ -206192,92 +166035,92 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 92120,
- 92130
+ 73522,
+ 73532
],
"loc": {
"start": {
- "line": 2554,
+ "line": 2100,
"column": 30
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 40
}
}
},
"range": [
- 92115,
- 92130
+ 73517,
+ 73532
],
"loc": {
"start": {
- "line": 2554,
+ "line": 2100,
"column": 25
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 40
}
}
},
"range": [
- 92103,
- 92130
+ 73505,
+ 73532
],
"loc": {
"start": {
- "line": 2554,
+ "line": 2100,
"column": 13
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 40
}
}
},
"range": [
- 92037,
- 92131
+ 73439,
+ 73533
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 15
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 41
}
}
},
"range": [
- 92030,
- 92132
+ 73432,
+ 73534
],
"loc": {
"start": {
- "line": 2553,
+ "line": 2099,
"column": 8
},
"end": {
- "line": 2554,
+ "line": 2100,
"column": 42
}
}
}
],
"range": [
- 91968,
- 92138
+ 73370,
+ 73540
],
"loc": {
"start": {
- "line": 2551,
+ "line": 2097,
"column": 26
},
"end": {
- "line": 2555,
+ "line": 2101,
"column": 5
}
}
@@ -206285,16 +166128,16 @@
"generator": false,
"expression": false,
"range": [
- 91958,
- 92138
+ 73360,
+ 73540
],
"loc": {
"start": {
- "line": 2551,
+ "line": 2097,
"column": 16
},
"end": {
- "line": 2555,
+ "line": 2101,
"column": 5
}
}
@@ -206302,34 +166145,52 @@
"kind": "method",
"computed": false,
"range": [
- 91946,
- 92138
+ 73348,
+ 73540
],
"loc": {
"start": {
- "line": 2551,
+ "line": 2097,
"column": 4
},
"end": {
- "line": 2555,
+ "line": 2101,
"column": 5
}
},
"leadingComments": [
{
- "type": "Block",
- "value": "*\n * Determines if passed filter column implements exact query match\n * @param {Number} colIndex [description]\n * @return {Boolean} [description]\n ",
+ "type": "Line",
+ "value": " for i",
"range": [
- 91763,
- 91941
+ 73145,
+ 73153
],
"loc": {
"start": {
- "line": 2546,
+ "line": 2089,
+ "column": 9
+ },
+ "end": {
+ "line": 2089,
+ "column": 17
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Determines if passed filter column implements exact query match\n * @param {Number} colIndex [description]\n * @return {Boolean} [description]\n ",
+ "range": [
+ 73165,
+ 73343
+ ],
+ "loc": {
+ "start": {
+ "line": 2092,
"column": 4
},
"end": {
- "line": 2550,
+ "line": 2096,
"column": 7
}
}
@@ -206340,16 +166201,16 @@
"type": "Block",
"value": "*\n * Check if passed script or stylesheet is already imported\n * @param {String} filePath Ressource path\n * @param {String} type Possible values: 'script' or 'link'\n * @return {Boolean}\n ",
"range": [
- 92144,
- 92363
+ 73546,
+ 73765
],
"loc": {
"start": {
- "line": 2557,
+ "line": 2103,
"column": 4
},
"end": {
- "line": 2562,
+ "line": 2108,
"column": 7
}
}
@@ -206363,16 +166224,16 @@
"type": "Identifier",
"name": "isImported",
"range": [
- 92368,
- 92378
+ 73770,
+ 73780
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 4
},
"end": {
- "line": 2563,
+ "line": 2109,
"column": 14
}
}
@@ -206385,16 +166246,16 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 92379,
- 92387
+ 73781,
+ 73789
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 15
},
"end": {
- "line": 2563,
+ "line": 2109,
"column": 23
}
}
@@ -206403,16 +166264,16 @@
"type": "Identifier",
"name": "type",
"range": [
- 92389,
- 92393
+ 73791,
+ 73795
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 25
},
"end": {
- "line": 2563,
+ "line": 2109,
"column": 29
}
}
@@ -206430,16 +166291,16 @@
"type": "Identifier",
"name": "imported",
"range": [
- 92408,
- 92416
+ 73810,
+ 73818
],
"loc": {
"start": {
- "line": 2564,
+ "line": 2110,
"column": 12
},
"end": {
- "line": 2564,
+ "line": 2110,
"column": 20
}
}
@@ -206449,31 +166310,31 @@
"value": false,
"raw": "false",
"range": [
- 92419,
- 92424
+ 73821,
+ 73826
],
"loc": {
"start": {
- "line": 2564,
+ "line": 2110,
"column": 23
},
"end": {
- "line": 2564,
+ "line": 2110,
"column": 28
}
}
},
"range": [
- 92408,
- 92424
+ 73810,
+ 73826
],
"loc": {
"start": {
- "line": 2564,
+ "line": 2110,
"column": 12
},
"end": {
- "line": 2564,
+ "line": 2110,
"column": 28
}
}
@@ -206484,16 +166345,16 @@
"type": "Identifier",
"name": "importType",
"range": [
- 92438,
- 92448
+ 73840,
+ 73850
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 12
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 22
}
}
@@ -206507,32 +166368,32 @@
"type": "Identifier",
"name": "type",
"range": [
- 92452,
- 92456
+ 73854,
+ 73858
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 26
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 30
}
}
},
"prefix": true,
"range": [
- 92451,
- 92456
+ 73853,
+ 73858
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 25
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 30
}
}
@@ -206542,16 +166403,16 @@
"value": "script",
"raw": "'script'",
"range": [
- 92459,
- 92467
+ 73861,
+ 73869
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 33
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 41
}
}
@@ -206560,46 +166421,46 @@
"type": "Identifier",
"name": "type",
"range": [
- 92470,
- 92474
+ 73872,
+ 73876
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 44
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 48
}
}
},
"range": [
- 92451,
- 92474
+ 73853,
+ 73876
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 25
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 48
}
}
},
"range": [
- 92438,
- 92474
+ 73840,
+ 73876
],
"loc": {
"start": {
- "line": 2565,
+ "line": 2111,
"column": 12
},
"end": {
- "line": 2565,
+ "line": 2111,
"column": 48
}
}
@@ -206610,16 +166471,16 @@
"type": "Identifier",
"name": "attr",
"range": [
- 92488,
- 92492
+ 73890,
+ 73894
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 12
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 16
}
}
@@ -206633,16 +166494,16 @@
"type": "Identifier",
"name": "importType",
"range": [
- 92495,
- 92505
+ 73897,
+ 73907
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 19
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 29
}
}
@@ -206652,31 +166513,31 @@
"value": "script",
"raw": "'script'",
"range": [
- 92509,
- 92517
+ 73911,
+ 73919
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 33
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 41
}
}
},
"range": [
- 92495,
- 92517
+ 73897,
+ 73919
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 19
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 41
}
}
@@ -206686,16 +166547,16 @@
"value": "src",
"raw": "'src'",
"range": [
- 92520,
- 92525
+ 73922,
+ 73927
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 44
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 49
}
}
@@ -206705,46 +166566,46 @@
"value": "href",
"raw": "'href'",
"range": [
- 92528,
- 92534
+ 73930,
+ 73936
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 52
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 58
}
}
},
"range": [
- 92495,
- 92534
+ 73897,
+ 73936
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 19
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 58
}
}
},
"range": [
- 92488,
- 92534
+ 73890,
+ 73936
],
"loc": {
"start": {
- "line": 2566,
+ "line": 2112,
"column": 12
},
"end": {
- "line": 2566,
+ "line": 2112,
"column": 58
}
}
@@ -206755,16 +166616,16 @@
"type": "Identifier",
"name": "files",
"range": [
- 92548,
- 92553
+ 73950,
+ 73955
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 12
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 17
}
}
@@ -206778,16 +166639,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 92556,
- 92559
+ 73958,
+ 73961
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 20
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 23
}
}
@@ -206796,31 +166657,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 92560,
- 92563
+ 73962,
+ 73965
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 24
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 27
}
}
},
"range": [
- 92556,
- 92563
+ 73958,
+ 73965
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 20
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 27
}
}
@@ -206830,16 +166691,16 @@
"type": "Identifier",
"name": "doc",
"range": [
- 92564,
- 92567
+ 73966,
+ 73969
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 28
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 31
}
}
@@ -206848,47 +166709,47 @@
"type": "Identifier",
"name": "importType",
"range": [
- 92569,
- 92579
+ 73971,
+ 73981
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 33
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 43
}
}
}
],
"range": [
- 92556,
- 92580
+ 73958,
+ 73982
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 20
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 44
}
}
},
"range": [
- 92548,
- 92580
+ 73950,
+ 73982
],
"loc": {
"start": {
- "line": 2567,
+ "line": 2113,
"column": 12
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 44
}
}
@@ -206896,16 +166757,16 @@
],
"kind": "let",
"range": [
- 92404,
- 92581
+ 73806,
+ 73983
],
"loc": {
"start": {
- "line": 2564,
+ "line": 2110,
"column": 8
},
"end": {
- "line": 2567,
+ "line": 2113,
"column": 45
}
}
@@ -206921,16 +166782,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 92599,
- 92600
+ 74001,
+ 74002
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 17
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 18
}
}
@@ -206940,31 +166801,31 @@
"value": 0,
"raw": "0",
"range": [
- 92601,
- 92602
+ 74003,
+ 74004
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 19
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 20
}
}
},
"range": [
- 92599,
- 92602
+ 74001,
+ 74004
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 17
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 20
}
}
@@ -206975,16 +166836,16 @@
"type": "Identifier",
"name": "len",
"range": [
- 92604,
- 92607
+ 74006,
+ 74009
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 22
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 25
}
}
@@ -206996,16 +166857,16 @@
"type": "Identifier",
"name": "files",
"range": [
- 92608,
- 92613
+ 74010,
+ 74015
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 26
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 31
}
}
@@ -207014,46 +166875,46 @@
"type": "Identifier",
"name": "length",
"range": [
- 92614,
- 92620
+ 74016,
+ 74022
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 32
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 38
}
}
},
"range": [
- 92608,
- 92620
+ 74010,
+ 74022
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 26
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 38
}
}
},
"range": [
- 92604,
- 92620
+ 74006,
+ 74022
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 22
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 38
}
}
@@ -207061,16 +166922,16 @@
],
"kind": "let",
"range": [
- 92595,
- 92620
+ 73997,
+ 74022
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 13
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 38
}
}
@@ -207082,16 +166943,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 92622,
- 92623
+ 74024,
+ 74025
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 40
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 41
}
}
@@ -207100,31 +166961,31 @@
"type": "Identifier",
"name": "len",
"range": [
- 92624,
- 92627
+ 74026,
+ 74029
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 42
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 45
}
}
},
"range": [
- 92622,
- 92627
+ 74024,
+ 74029
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 40
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 45
}
}
@@ -207136,32 +166997,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 92629,
- 92630
+ 74031,
+ 74032
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 47
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 48
}
}
},
"prefix": false,
"range": [
- 92629,
- 92632
+ 74031,
+ 74034
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 47
},
"end": {
- "line": 2568,
+ "line": 2114,
"column": 50
}
}
@@ -207184,16 +167045,16 @@
"type": "Identifier",
"name": "files",
"range": [
- 92650,
- 92655
+ 74052,
+ 74057
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 15
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 20
}
}
@@ -207202,31 +167063,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 92656,
- 92657
+ 74058,
+ 74059
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 21
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 22
}
}
},
"range": [
- 92650,
- 92658
+ 74052,
+ 74060
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 15
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 23
}
}
@@ -207235,31 +167096,31 @@
"type": "Identifier",
"name": "attr",
"range": [
- 92659,
- 92663
+ 74061,
+ 74065
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 24
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 28
}
}
},
"range": [
- 92650,
- 92664
+ 74052,
+ 74066
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 15
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 29
}
}
@@ -207268,31 +167129,31 @@
"type": "Identifier",
"name": "undefined",
"range": [
- 92669,
- 92678
+ 74071,
+ 74080
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 34
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 43
}
}
},
"range": [
- 92650,
- 92678
+ 74052,
+ 74080
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 15
},
"end": {
- "line": 2569,
+ "line": 2115,
"column": 43
}
}
@@ -207304,48 +167165,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 92697,
- 92706
+ 74099,
+ 74108
],
"loc": {
"start": {
- "line": 2570,
+ "line": 2116,
"column": 16
},
"end": {
- "line": 2570,
+ "line": 2116,
"column": 25
}
}
}
],
"range": [
- 92679,
- 92720
+ 74081,
+ 74122
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 44
},
"end": {
- "line": 2571,
+ "line": 2117,
"column": 13
}
}
},
"alternate": null,
"range": [
- 92647,
- 92720
+ 74049,
+ 74122
],
"loc": {
"start": {
- "line": 2569,
+ "line": 2115,
"column": 12
},
"end": {
- "line": 2571,
+ "line": 2117,
"column": 13
}
}
@@ -207367,16 +167228,16 @@
"type": "Identifier",
"name": "files",
"range": [
- 92736,
- 92741
+ 74138,
+ 74143
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 15
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 20
}
}
@@ -207385,31 +167246,31 @@
"type": "Identifier",
"name": "i",
"range": [
- 92742,
- 92743
+ 74144,
+ 74145
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 21
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 22
}
}
},
"range": [
- 92736,
- 92744
+ 74138,
+ 74146
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 15
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 23
}
}
@@ -207418,31 +167279,31 @@
"type": "Identifier",
"name": "attr",
"range": [
- 92745,
- 92749
+ 74147,
+ 74151
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 24
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 28
}
}
},
"range": [
- 92736,
- 92750
+ 74138,
+ 74152
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 15
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 29
}
}
@@ -207451,31 +167312,31 @@
"type": "Identifier",
"name": "match",
"range": [
- 92751,
- 92756
+ 74153,
+ 74158
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 30
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 35
}
}
},
"range": [
- 92736,
- 92756
+ 74138,
+ 74158
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 15
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 35
}
}
@@ -207485,32 +167346,32 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 92757,
- 92765
+ 74159,
+ 74167
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 36
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 44
}
}
}
],
"range": [
- 92736,
- 92766
+ 74138,
+ 74168
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 15
},
"end": {
- "line": 2572,
+ "line": 2118,
"column": 45
}
}
@@ -207527,16 +167388,16 @@
"type": "Identifier",
"name": "imported",
"range": [
- 92785,
- 92793
+ 74187,
+ 74195
],
"loc": {
"start": {
- "line": 2573,
+ "line": 2119,
"column": 16
},
"end": {
- "line": 2573,
+ "line": 2119,
"column": 24
}
}
@@ -207546,46 +167407,46 @@
"value": true,
"raw": "true",
"range": [
- 92796,
- 92800
+ 74198,
+ 74202
],
"loc": {
"start": {
- "line": 2573,
+ "line": 2119,
"column": 27
},
"end": {
- "line": 2573,
+ "line": 2119,
"column": 31
}
}
},
"range": [
- 92785,
- 92800
+ 74187,
+ 74202
],
"loc": {
"start": {
- "line": 2573,
+ "line": 2119,
"column": 16
},
"end": {
- "line": 2573,
+ "line": 2119,
"column": 31
}
}
},
"range": [
- 92785,
- 92801
+ 74187,
+ 74203
],
"loc": {
"start": {
- "line": 2573,
+ "line": 2119,
"column": 16
},
"end": {
- "line": 2573,
+ "line": 2119,
"column": 32
}
}
@@ -207594,79 +167455,79 @@
"type": "BreakStatement",
"label": null,
"range": [
- 92818,
- 92824
+ 74220,
+ 74226
],
"loc": {
"start": {
- "line": 2574,
+ "line": 2120,
"column": 16
},
"end": {
- "line": 2574,
+ "line": 2120,
"column": 22
}
}
}
],
"range": [
- 92767,
- 92838
+ 74169,
+ 74240
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 46
},
"end": {
- "line": 2575,
+ "line": 2121,
"column": 13
}
}
},
"alternate": null,
"range": [
- 92733,
- 92838
+ 74135,
+ 74240
],
"loc": {
"start": {
- "line": 2572,
+ "line": 2118,
"column": 12
},
"end": {
- "line": 2575,
+ "line": 2121,
"column": 13
}
}
}
],
"range": [
- 92633,
- 92848
+ 74035,
+ 74250
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 51
},
"end": {
- "line": 2576,
+ "line": 2122,
"column": 9
}
}
},
"range": [
- 92590,
- 92848
+ 73992,
+ 74250
],
"loc": {
"start": {
- "line": 2568,
+ "line": 2114,
"column": 8
},
"end": {
- "line": 2576,
+ "line": 2122,
"column": 9
}
}
@@ -207677,47 +167538,47 @@
"type": "Identifier",
"name": "imported",
"range": [
- 92864,
- 92872
+ 74266,
+ 74274
],
"loc": {
"start": {
- "line": 2577,
+ "line": 2123,
"column": 15
},
"end": {
- "line": 2577,
+ "line": 2123,
"column": 23
}
}
},
"range": [
- 92857,
- 92873
+ 74259,
+ 74275
],
"loc": {
"start": {
- "line": 2577,
+ "line": 2123,
"column": 8
},
"end": {
- "line": 2577,
+ "line": 2123,
"column": 24
}
}
}
],
"range": [
- 92394,
- 92879
+ 73796,
+ 74281
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 30
},
"end": {
- "line": 2578,
+ "line": 2124,
"column": 5
}
}
@@ -207725,16 +167586,16 @@
"generator": false,
"expression": false,
"range": [
- 92378,
- 92879
+ 73780,
+ 74281
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 14
},
"end": {
- "line": 2578,
+ "line": 2124,
"column": 5
}
}
@@ -207742,16 +167603,16 @@
"kind": "method",
"computed": false,
"range": [
- 92368,
- 92879
+ 73770,
+ 74281
],
"loc": {
"start": {
- "line": 2563,
+ "line": 2109,
"column": 4
},
"end": {
- "line": 2578,
+ "line": 2124,
"column": 5
}
},
@@ -207760,16 +167621,16 @@
"type": "Block",
"value": "*\n * Check if passed script or stylesheet is already imported\n * @param {String} filePath Ressource path\n * @param {String} type Possible values: 'script' or 'link'\n * @return {Boolean}\n ",
"range": [
- 92144,
- 92363
+ 73546,
+ 73765
],
"loc": {
"start": {
- "line": 2557,
+ "line": 2103,
"column": 4
},
"end": {
- "line": 2562,
+ "line": 2108,
"column": 7
}
}
@@ -207780,16 +167641,16 @@
"type": "Block",
"value": "*\n * Import script or stylesheet\n * @param {String} fileId Ressource ID\n * @param {String} filePath Ressource path\n * @param {Function} callback Callback\n * @param {String} type Possible values: 'script' or 'link'\n ",
"range": [
- 92885,
- 93144
+ 74287,
+ 74546
],
"loc": {
"start": {
- "line": 2580,
+ "line": 2126,
"column": 4
},
"end": {
- "line": 2586,
+ "line": 2132,
"column": 7
}
}
@@ -207803,16 +167664,16 @@
"type": "Identifier",
"name": "import",
"range": [
- 93149,
- 93155
+ 74551,
+ 74557
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 4
},
"end": {
- "line": 2587,
+ "line": 2133,
"column": 10
}
}
@@ -207825,16 +167686,16 @@
"type": "Identifier",
"name": "fileId",
"range": [
- 93156,
- 93162
+ 74558,
+ 74564
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 11
},
"end": {
- "line": 2587,
+ "line": 2133,
"column": 17
}
}
@@ -207843,16 +167704,16 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 93164,
- 93172
+ 74566,
+ 74574
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 19
},
"end": {
- "line": 2587,
+ "line": 2133,
"column": 27
}
}
@@ -207861,16 +167722,16 @@
"type": "Identifier",
"name": "callback",
"range": [
- 93174,
- 93182
+ 74576,
+ 74584
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 29
},
"end": {
- "line": 2587,
+ "line": 2133,
"column": 37
}
}
@@ -207879,16 +167740,16 @@
"type": "Identifier",
"name": "type",
"range": [
- 93184,
- 93188
+ 74586,
+ 74590
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 39
},
"end": {
- "line": 2587,
+ "line": 2133,
"column": 43
}
}
@@ -207906,16 +167767,16 @@
"type": "Identifier",
"name": "ftype",
"range": [
- 93203,
- 93208
+ 74605,
+ 74610
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 12
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 17
}
}
@@ -207929,32 +167790,32 @@
"type": "Identifier",
"name": "type",
"range": [
- 93212,
- 93216
+ 74614,
+ 74618
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 21
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 25
}
}
},
"prefix": true,
"range": [
- 93211,
- 93216
+ 74613,
+ 74618
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 20
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 25
}
}
@@ -207964,16 +167825,16 @@
"value": "script",
"raw": "'script'",
"range": [
- 93219,
- 93227
+ 74621,
+ 74629
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 28
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 36
}
}
@@ -207982,46 +167843,46 @@
"type": "Identifier",
"name": "type",
"range": [
- 93230,
- 93234
+ 74632,
+ 74636
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 39
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 43
}
}
},
"range": [
- 93211,
- 93234
+ 74613,
+ 74636
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 20
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 43
}
}
},
"range": [
- 93203,
- 93234
+ 74605,
+ 74636
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 12
},
"end": {
- "line": 2588,
+ "line": 2134,
"column": 43
}
}
@@ -208032,16 +167893,16 @@
"type": "Identifier",
"name": "imported",
"range": [
- 93248,
- 93256
+ 74650,
+ 74658
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 12
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 20
}
}
@@ -208054,16 +167915,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 93259,
- 93263
+ 74661,
+ 74665
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 23
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 27
}
}
@@ -208072,31 +167933,31 @@
"type": "Identifier",
"name": "isImported",
"range": [
- 93264,
- 93274
+ 74666,
+ 74676
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 28
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 38
}
}
},
"range": [
- 93259,
- 93274
+ 74661,
+ 74676
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 23
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 38
}
}
@@ -208106,16 +167967,16 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 93275,
- 93283
+ 74677,
+ 74685
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 39
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 47
}
}
@@ -208124,47 +167985,47 @@
"type": "Identifier",
"name": "ftype",
"range": [
- 93285,
- 93290
+ 74687,
+ 74692
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 49
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 54
}
}
}
],
"range": [
- 93259,
- 93291
+ 74661,
+ 74693
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 23
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 55
}
}
},
"range": [
- 93248,
- 93291
+ 74650,
+ 74693
],
"loc": {
"start": {
- "line": 2589,
+ "line": 2135,
"column": 12
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 55
}
}
@@ -208172,16 +168033,16 @@
],
"kind": "let",
"range": [
- 93199,
- 93292
+ 74601,
+ 74694
],
"loc": {
"start": {
- "line": 2588,
+ "line": 2134,
"column": 8
},
"end": {
- "line": 2589,
+ "line": 2135,
"column": 56
}
}
@@ -208192,16 +168053,16 @@
"type": "Identifier",
"name": "imported",
"range": [
- 93304,
- 93312
+ 74706,
+ 74714
],
"loc": {
"start": {
- "line": 2590,
+ "line": 2136,
"column": 11
},
"end": {
- "line": 2590,
+ "line": 2136,
"column": 19
}
}
@@ -208213,48 +168074,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 93327,
- 93334
+ 74729,
+ 74736
],
"loc": {
"start": {
- "line": 2591,
+ "line": 2137,
"column": 12
},
"end": {
- "line": 2591,
+ "line": 2137,
"column": 19
}
}
}
],
"range": [
- 93313,
- 93344
+ 74715,
+ 74746
],
"loc": {
"start": {
- "line": 2590,
+ "line": 2136,
"column": 20
},
"end": {
- "line": 2592,
+ "line": 2138,
"column": 9
}
}
},
"alternate": null,
"range": [
- 93301,
- 93344
+ 74703,
+ 74746
],
"loc": {
"start": {
- "line": 2590,
+ "line": 2136,
"column": 8
},
"end": {
- "line": 2592,
+ "line": 2138,
"column": 9
}
}
@@ -208268,16 +168129,16 @@
"type": "Identifier",
"name": "o",
"range": [
- 93357,
- 93358
+ 74759,
+ 74760
],
"loc": {
"start": {
- "line": 2593,
+ "line": 2139,
"column": 12
},
"end": {
- "line": 2593,
+ "line": 2139,
"column": 13
}
}
@@ -208285,31 +168146,31 @@
"init": {
"type": "ThisExpression",
"range": [
- 93361,
- 93365
+ 74763,
+ 74767
],
"loc": {
"start": {
- "line": 2593,
+ "line": 2139,
"column": 16
},
"end": {
- "line": 2593,
+ "line": 2139,
"column": 20
}
}
},
"range": [
- 93357,
- 93365
+ 74759,
+ 74767
],
"loc": {
"start": {
- "line": 2593,
+ "line": 2139,
"column": 12
},
"end": {
- "line": 2593,
+ "line": 2139,
"column": 20
}
}
@@ -208320,16 +168181,16 @@
"type": "Identifier",
"name": "isLoaded",
"range": [
- 93379,
- 93387
+ 74781,
+ 74789
],
"loc": {
"start": {
- "line": 2594,
+ "line": 2140,
"column": 12
},
"end": {
- "line": 2594,
+ "line": 2140,
"column": 20
}
}
@@ -208339,31 +168200,31 @@
"value": false,
"raw": "false",
"range": [
- 93390,
- 93395
+ 74792,
+ 74797
],
"loc": {
"start": {
- "line": 2594,
+ "line": 2140,
"column": 23
},
"end": {
- "line": 2594,
+ "line": 2140,
"column": 28
}
}
},
"range": [
- 93379,
- 93395
+ 74781,
+ 74797
],
"loc": {
"start": {
- "line": 2594,
+ "line": 2140,
"column": 12
},
"end": {
- "line": 2594,
+ "line": 2140,
"column": 28
}
}
@@ -208374,32 +168235,32 @@
"type": "Identifier",
"name": "file",
"range": [
- 93409,
- 93413
+ 74811,
+ 74815
],
"loc": {
"start": {
- "line": 2595,
+ "line": 2141,
"column": 12
},
"end": {
- "line": 2595,
+ "line": 2141,
"column": 16
}
}
},
"init": null,
"range": [
- 93409,
- 93413
+ 74811,
+ 74815
],
"loc": {
"start": {
- "line": 2595,
+ "line": 2141,
"column": 12
},
"end": {
- "line": 2595,
+ "line": 2141,
"column": 16
}
}
@@ -208410,16 +168271,16 @@
"type": "Identifier",
"name": "head",
"range": [
- 93427,
- 93431
+ 74829,
+ 74833
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 12
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 16
}
}
@@ -208436,16 +168297,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 93434,
- 93437
+ 74836,
+ 74839
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 19
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 22
}
}
@@ -208454,31 +168315,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 93438,
- 93441
+ 74840,
+ 74843
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 23
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 26
}
}
},
"range": [
- 93434,
- 93441
+ 74836,
+ 74843
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 19
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 26
}
}
@@ -208488,16 +168349,16 @@
"type": "Identifier",
"name": "doc",
"range": [
- 93442,
- 93445
+ 74844,
+ 74847
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 27
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 30
}
}
@@ -208507,32 +168368,32 @@
"value": "head",
"raw": "'head'",
"range": [
- 93447,
- 93453
+ 74849,
+ 74855
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 32
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 38
}
}
}
],
"range": [
- 93434,
- 93454
+ 74836,
+ 74856
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 19
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 39
}
}
@@ -208542,46 +168403,46 @@
"value": 0,
"raw": "0",
"range": [
- 93455,
- 93456
+ 74857,
+ 74858
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 40
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 41
}
}
},
"range": [
- 93434,
- 93457
+ 74836,
+ 74859
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 19
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 42
}
}
},
"range": [
- 93427,
- 93457
+ 74829,
+ 74859
],
"loc": {
"start": {
- "line": 2596,
+ "line": 2142,
"column": 12
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 42
}
}
@@ -208589,16 +168450,16 @@
],
"kind": "let",
"range": [
- 93353,
- 93458
+ 74755,
+ 74860
],
"loc": {
"start": {
- "line": 2593,
+ "line": 2139,
"column": 8
},
"end": {
- "line": 2596,
+ "line": 2142,
"column": 43
}
}
@@ -208617,16 +168478,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 93471,
- 93474
+ 74873,
+ 74876
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 11
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 14
}
}
@@ -208635,31 +168496,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 93475,
- 93480
+ 74877,
+ 74882
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 15
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 20
}
}
},
"range": [
- 93471,
- 93480
+ 74873,
+ 74882
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 11
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 20
}
}
@@ -208669,32 +168530,32 @@
"type": "Identifier",
"name": "ftype",
"range": [
- 93481,
- 93486
+ 74883,
+ 74888
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 21
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 26
}
}
}
],
"range": [
- 93471,
- 93487
+ 74873,
+ 74889
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 11
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 27
}
}
@@ -208704,31 +168565,31 @@
"value": "link",
"raw": "'link'",
"range": [
- 93492,
- 93498
+ 74894,
+ 74900
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 32
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 38
}
}
},
"range": [
- 93471,
- 93498
+ 74873,
+ 74900
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 11
},
"end": {
- "line": 2598,
+ "line": 2144,
"column": 38
}
}
@@ -208745,16 +168606,16 @@
"type": "Identifier",
"name": "file",
"range": [
- 93513,
- 93517
+ 74915,
+ 74919
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 12
},
"end": {
- "line": 2599,
+ "line": 2145,
"column": 16
}
}
@@ -208768,16 +168629,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 93520,
- 93523
+ 74922,
+ 74925
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 19
},
"end": {
- "line": 2599,
+ "line": 2145,
"column": 22
}
}
@@ -208786,31 +168647,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 93524,
- 93530
+ 74926,
+ 74932
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 23
},
"end": {
- "line": 2599,
+ "line": 2145,
"column": 29
}
}
},
"range": [
- 93520,
- 93530
+ 74922,
+ 74932
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 19
},
"end": {
- "line": 2599,
+ "line": 2145,
"column": 29
}
}
@@ -208821,16 +168682,16 @@
"value": "link",
"raw": "'link'",
"range": [
- 93548,
- 93554
+ 74950,
+ 74956
],
"loc": {
"start": {
- "line": 2600,
+ "line": 2146,
"column": 16
},
"end": {
- "line": 2600,
+ "line": 2146,
"column": 22
}
}
@@ -208843,16 +168704,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 93573,
- 93577
+ 74975,
+ 74979
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 17
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 21
}
}
@@ -208861,32 +168722,32 @@
"type": "Identifier",
"name": "fileId",
"range": [
- 93579,
- 93585
+ 74981,
+ 74987
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 23
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 29
}
}
}
],
"range": [
- 93572,
- 93586
+ 74974,
+ 74988
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 16
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 30
}
}
@@ -208899,16 +168760,16 @@
"value": "type",
"raw": "'type'",
"range": [
- 93589,
- 93595
+ 74991,
+ 74997
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 33
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 39
}
}
@@ -208918,32 +168779,32 @@
"value": "text/css",
"raw": "'text/css'",
"range": [
- 93597,
- 93607
+ 74999,
+ 75009
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 41
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 51
}
}
}
],
"range": [
- 93588,
- 93608
+ 74990,
+ 75010
],
"loc": {
"start": {
- "line": 2601,
+ "line": 2147,
"column": 32
},
"end": {
- "line": 2601,
+ "line": 2147,
"column": 52
}
}
@@ -208956,16 +168817,16 @@
"value": "rel",
"raw": "'rel'",
"range": [
- 93627,
- 93632
+ 75029,
+ 75034
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 17
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 22
}
}
@@ -208975,32 +168836,32 @@
"value": "stylesheet",
"raw": "'stylesheet'",
"range": [
- 93634,
- 93646
+ 75036,
+ 75048
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 24
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 36
}
}
}
],
"range": [
- 93626,
- 93647
+ 75028,
+ 75049
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 16
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 37
}
}
@@ -209013,16 +168874,16 @@
"value": "href",
"raw": "'href'",
"range": [
- 93650,
- 93656
+ 75052,
+ 75058
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 40
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 46
}
}
@@ -209031,94 +168892,94 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 93658,
- 93666
+ 75060,
+ 75068
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 48
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 56
}
}
}
],
"range": [
- 93649,
- 93667
+ 75051,
+ 75069
],
"loc": {
"start": {
- "line": 2602,
+ "line": 2148,
"column": 39
},
"end": {
- "line": 2602,
+ "line": 2148,
"column": 57
}
}
}
],
"range": [
- 93520,
- 93681
+ 74922,
+ 75083
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 19
},
"end": {
- "line": 2603,
+ "line": 2149,
"column": 13
}
}
},
"range": [
- 93513,
- 93681
+ 74915,
+ 75083
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 12
},
"end": {
- "line": 2603,
+ "line": 2149,
"column": 13
}
}
},
"range": [
- 93513,
- 93682
+ 74915,
+ 75084
],
"loc": {
"start": {
- "line": 2599,
+ "line": 2145,
"column": 12
},
"end": {
- "line": 2603,
+ "line": 2149,
"column": 14
}
}
}
],
"range": [
- 93499,
- 93692
+ 74901,
+ 75094
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 39
},
"end": {
- "line": 2604,
+ "line": 2150,
"column": 9
}
}
@@ -209135,16 +168996,16 @@
"type": "Identifier",
"name": "file",
"range": [
- 93712,
- 93716
+ 75114,
+ 75118
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 12
},
"end": {
- "line": 2605,
+ "line": 2151,
"column": 16
}
}
@@ -209158,16 +169019,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 93719,
- 93722
+ 75121,
+ 75124
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 19
},
"end": {
- "line": 2605,
+ "line": 2151,
"column": 22
}
}
@@ -209176,31 +169037,31 @@
"type": "Identifier",
"name": "create",
"range": [
- 93723,
- 93729
+ 75125,
+ 75131
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 23
},
"end": {
- "line": 2605,
+ "line": 2151,
"column": 29
}
}
},
"range": [
- 93719,
- 93729
+ 75121,
+ 75131
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 19
},
"end": {
- "line": 2605,
+ "line": 2151,
"column": 29
}
}
@@ -209211,16 +169072,16 @@
"value": "script",
"raw": "'script'",
"range": [
- 93747,
- 93755
+ 75149,
+ 75157
],
"loc": {
"start": {
- "line": 2606,
+ "line": 2152,
"column": 16
},
"end": {
- "line": 2606,
+ "line": 2152,
"column": 24
}
}
@@ -209233,16 +169094,16 @@
"value": "id",
"raw": "'id'",
"range": [
- 93758,
- 93762
+ 75160,
+ 75164
],
"loc": {
"start": {
- "line": 2606,
+ "line": 2152,
"column": 27
},
"end": {
- "line": 2606,
+ "line": 2152,
"column": 31
}
}
@@ -209251,32 +169112,32 @@
"type": "Identifier",
"name": "fileId",
"range": [
- 93764,
- 93770
+ 75166,
+ 75172
],
"loc": {
"start": {
- "line": 2606,
+ "line": 2152,
"column": 33
},
"end": {
- "line": 2606,
+ "line": 2152,
"column": 39
}
}
}
],
"range": [
- 93757,
- 93771
+ 75159,
+ 75173
],
"loc": {
"start": {
- "line": 2606,
+ "line": 2152,
"column": 26
},
"end": {
- "line": 2606,
+ "line": 2152,
"column": 40
}
}
@@ -209289,16 +169150,16 @@
"value": "type",
"raw": "'type'",
"range": [
- 93790,
- 93796
+ 75192,
+ 75198
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 17
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 23
}
}
@@ -209308,32 +169169,32 @@
"value": "text/javascript",
"raw": "'text/javascript'",
"range": [
- 93798,
- 93815
+ 75200,
+ 75217
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 25
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 42
}
}
}
],
"range": [
- 93789,
- 93816
+ 75191,
+ 75218
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 16
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 43
}
}
@@ -209346,16 +169207,16 @@
"value": "src",
"raw": "'src'",
"range": [
- 93819,
- 93824
+ 75221,
+ 75226
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 46
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 51
}
}
@@ -209364,109 +169225,109 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 93826,
- 93834
+ 75228,
+ 75236
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 53
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 61
}
}
}
],
"range": [
- 93818,
- 93835
+ 75220,
+ 75237
],
"loc": {
"start": {
- "line": 2607,
+ "line": 2153,
"column": 45
},
"end": {
- "line": 2607,
+ "line": 2153,
"column": 62
}
}
}
],
"range": [
- 93719,
- 93849
+ 75121,
+ 75251
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 19
},
"end": {
- "line": 2608,
+ "line": 2154,
"column": 13
}
}
},
"range": [
- 93712,
- 93849
+ 75114,
+ 75251
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 12
},
"end": {
- "line": 2608,
+ "line": 2154,
"column": 13
}
}
},
"range": [
- 93712,
- 93850
+ 75114,
+ 75252
],
"loc": {
"start": {
- "line": 2605,
+ "line": 2151,
"column": 12
},
"end": {
- "line": 2608,
+ "line": 2154,
"column": 14
}
}
}
],
"range": [
- 93698,
- 93860
+ 75100,
+ 75262
],
"loc": {
"start": {
- "line": 2604,
+ "line": 2150,
"column": 15
},
"end": {
- "line": 2609,
+ "line": 2155,
"column": 9
}
}
},
"range": [
- 93468,
- 93860
+ 74870,
+ 75262
],
"loc": {
"start": {
- "line": 2598,
+ "line": 2144,
"column": 8
},
"end": {
- "line": 2609,
+ "line": 2155,
"column": 9
}
},
@@ -209475,16 +169336,16 @@
"type": "Line",
"value": "Browser <> IE onload event works only for scripts, not for stylesheets",
"range": [
- 93870,
- 93942
+ 75272,
+ 75344
],
"loc": {
"start": {
- "line": 2611,
+ "line": 2157,
"column": 8
},
"end": {
- "line": 2611,
+ "line": 2157,
"column": 80
}
}
@@ -209503,16 +169364,16 @@
"type": "Identifier",
"name": "file",
"range": [
- 93951,
- 93955
+ 75353,
+ 75357
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 8
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 12
}
}
@@ -209521,31 +169382,31 @@
"type": "Identifier",
"name": "onload",
"range": [
- 93956,
- 93962
+ 75358,
+ 75364
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 13
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 19
}
}
},
"range": [
- 93951,
- 93962
+ 75353,
+ 75364
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 8
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 19
}
}
@@ -209560,16 +169421,16 @@
"type": "Identifier",
"name": "file",
"range": [
- 93965,
- 93969
+ 75367,
+ 75371
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 22
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 26
}
}
@@ -209578,31 +169439,31 @@
"type": "Identifier",
"name": "onreadystatechange",
"range": [
- 93970,
- 93988
+ 75372,
+ 75390
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 27
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 45
}
}
},
"range": [
- 93965,
- 93988
+ 75367,
+ 75390
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 22
},
"end": {
- "line": 2612,
+ "line": 2158,
"column": 45
}
}
@@ -209626,32 +169487,32 @@
"type": "Identifier",
"name": "isLoaded",
"range": [
- 94019,
- 94027
+ 75421,
+ 75429
],
"loc": {
"start": {
- "line": 2613,
+ "line": 2159,
"column": 16
},
"end": {
- "line": 2613,
+ "line": 2159,
"column": 24
}
}
},
"prefix": true,
"range": [
- 94018,
- 94027
+ 75420,
+ 75429
],
"loc": {
"start": {
- "line": 2613,
+ "line": 2159,
"column": 15
},
"end": {
- "line": 2613,
+ "line": 2159,
"column": 24
}
}
@@ -209671,16 +169532,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 94049,
- 94053
+ 75451,
+ 75455
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 18
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 22
}
}
@@ -209689,47 +169550,47 @@
"type": "Identifier",
"name": "readyState",
"range": [
- 94054,
- 94064
+ 75456,
+ 75466
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 23
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 33
}
}
},
"range": [
- 94049,
- 94064
+ 75451,
+ 75466
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 18
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 33
}
}
},
"prefix": true,
"range": [
- 94048,
- 94064
+ 75450,
+ 75466
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 17
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 33
}
}
@@ -209743,16 +169604,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 94068,
- 94072
+ 75470,
+ 75474
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 37
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 41
}
}
@@ -209761,31 +169622,31 @@
"type": "Identifier",
"name": "readyState",
"range": [
- 94073,
- 94083
+ 75475,
+ 75485
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 42
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 52
}
}
},
"range": [
- 94068,
- 94083
+ 75470,
+ 75485
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 37
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 52
}
}
@@ -209795,46 +169656,46 @@
"value": "loaded",
"raw": "'loaded'",
"range": [
- 94088,
- 94096
+ 75490,
+ 75498
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 57
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 65
}
}
},
"range": [
- 94068,
- 94096
+ 75470,
+ 75498
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 37
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 65
}
}
},
"range": [
- 94048,
- 94096
+ 75450,
+ 75498
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 17
},
"end": {
- "line": 2614,
+ "line": 2160,
"column": 65
}
}
@@ -209848,16 +169709,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 94120,
- 94124
+ 75522,
+ 75526
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 20
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 24
}
}
@@ -209866,31 +169727,31 @@
"type": "Identifier",
"name": "readyState",
"range": [
- 94125,
- 94135
+ 75527,
+ 75537
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 25
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 35
}
}
},
"range": [
- 94120,
- 94135
+ 75522,
+ 75537
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 20
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 35
}
}
@@ -209900,61 +169761,61 @@
"value": "complete",
"raw": "'complete'",
"range": [
- 94140,
- 94150
+ 75542,
+ 75552
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 40
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 50
}
}
},
"range": [
- 94120,
- 94150
+ 75522,
+ 75552
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 20
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 50
}
}
},
"range": [
- 94048,
- 94150
+ 75450,
+ 75552
],
"loc": {
"start": {
- "line": 2614,
+ "line": 2160,
"column": 17
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 50
}
}
},
"range": [
- 94018,
- 94151
+ 75420,
+ 75553
],
"loc": {
"start": {
- "line": 2613,
+ "line": 2159,
"column": 15
},
"end": {
- "line": 2615,
+ "line": 2161,
"column": 51
}
}
@@ -209971,16 +169832,16 @@
"type": "Identifier",
"name": "isLoaded",
"range": [
- 94170,
- 94178
+ 75572,
+ 75580
],
"loc": {
"start": {
- "line": 2616,
+ "line": 2162,
"column": 16
},
"end": {
- "line": 2616,
+ "line": 2162,
"column": 24
}
}
@@ -209990,46 +169851,46 @@
"value": true,
"raw": "true",
"range": [
- 94181,
- 94185
+ 75583,
+ 75587
],
"loc": {
"start": {
- "line": 2616,
+ "line": 2162,
"column": 27
},
"end": {
- "line": 2616,
+ "line": 2162,
"column": 31
}
}
},
"range": [
- 94170,
- 94185
+ 75572,
+ 75587
],
"loc": {
"start": {
- "line": 2616,
+ "line": 2162,
"column": 16
},
"end": {
- "line": 2616,
+ "line": 2162,
"column": 31
}
}
},
"range": [
- 94170,
- 94186
+ 75572,
+ 75588
],
"loc": {
"start": {
- "line": 2616,
+ "line": 2162,
"column": 16
},
"end": {
- "line": 2616,
+ "line": 2162,
"column": 32
}
}
@@ -210046,32 +169907,32 @@
"type": "Identifier",
"name": "callback",
"range": [
- 94213,
- 94221
+ 75615,
+ 75623
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 26
},
"end": {
- "line": 2617,
+ "line": 2163,
"column": 34
}
}
},
"prefix": true,
"range": [
- 94206,
- 94221
+ 75608,
+ 75623
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 19
},
"end": {
- "line": 2617,
+ "line": 2163,
"column": 34
}
}
@@ -210081,31 +169942,31 @@
"value": "function",
"raw": "'function'",
"range": [
- 94226,
- 94236
+ 75628,
+ 75638
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 39
},
"end": {
- "line": 2617,
+ "line": 2163,
"column": 49
}
}
},
"range": [
- 94206,
- 94236
+ 75608,
+ 75638
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 19
},
"end": {
- "line": 2617,
+ "line": 2163,
"column": 49
}
}
@@ -210124,16 +169985,16 @@
"type": "Identifier",
"name": "callback",
"range": [
- 94259,
- 94267
+ 75661,
+ 75669
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 20
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 28
}
}
@@ -210142,31 +170003,31 @@
"type": "Identifier",
"name": "call",
"range": [
- 94268,
- 94272
+ 75670,
+ 75674
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 29
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 33
}
}
},
"range": [
- 94259,
- 94272
+ 75661,
+ 75674
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 20
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 33
}
}
@@ -210177,16 +170038,16 @@
"value": null,
"raw": "null",
"range": [
- 94273,
- 94277
+ 75675,
+ 75679
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 34
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 38
}
}
@@ -210195,127 +170056,127 @@
"type": "Identifier",
"name": "o",
"range": [
- 94279,
- 94280
+ 75681,
+ 75682
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 40
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 41
}
}
}
],
"range": [
- 94259,
- 94281
+ 75661,
+ 75683
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 20
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 42
}
}
},
"range": [
- 94259,
- 94282
+ 75661,
+ 75684
],
"loc": {
"start": {
- "line": 2618,
+ "line": 2164,
"column": 20
},
"end": {
- "line": 2618,
+ "line": 2164,
"column": 43
}
}
}
],
"range": [
- 94237,
- 94300
+ 75639,
+ 75702
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 50
},
"end": {
- "line": 2619,
+ "line": 2165,
"column": 17
}
}
},
"alternate": null,
"range": [
- 94203,
- 94300
+ 75605,
+ 75702
],
"loc": {
"start": {
- "line": 2617,
+ "line": 2163,
"column": 16
},
"end": {
- "line": 2619,
+ "line": 2165,
"column": 17
}
}
}
],
"range": [
- 94152,
- 94314
+ 75554,
+ 75716
],
"loc": {
"start": {
- "line": 2615,
+ "line": 2161,
"column": 52
},
"end": {
- "line": 2620,
+ "line": 2166,
"column": 13
}
}
},
"alternate": null,
"range": [
- 94015,
- 94314
+ 75417,
+ 75716
],
"loc": {
"start": {
- "line": 2613,
+ "line": 2159,
"column": 12
},
"end": {
- "line": 2620,
+ "line": 2166,
"column": 13
}
}
}
],
"range": [
- 94001,
- 94324
+ 75403,
+ 75726
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 58
},
"end": {
- "line": 2621,
+ "line": 2167,
"column": 9
}
}
@@ -210323,61 +170184,61 @@
"generator": false,
"expression": false,
"range": [
- 93991,
- 94324
+ 75393,
+ 75726
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 48
},
"end": {
- "line": 2621,
+ "line": 2167,
"column": 9
}
}
},
"range": [
- 93965,
- 94324
+ 75367,
+ 75726
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 22
},
"end": {
- "line": 2621,
+ "line": 2167,
"column": 9
}
}
},
"range": [
- 93951,
- 94324
+ 75353,
+ 75726
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 8
},
"end": {
- "line": 2621,
+ "line": 2167,
"column": 9
}
}
},
"range": [
- 93951,
- 94325
+ 75353,
+ 75727
],
"loc": {
"start": {
- "line": 2612,
+ "line": 2158,
"column": 8
},
"end": {
- "line": 2621,
+ "line": 2167,
"column": 10
}
},
@@ -210386,16 +170247,16 @@
"type": "Line",
"value": "Browser <> IE onload event works only for scripts, not for stylesheets",
"range": [
- 93870,
- 93942
+ 75272,
+ 75344
],
"loc": {
"start": {
- "line": 2611,
+ "line": 2157,
"column": 8
},
"end": {
- "line": 2611,
+ "line": 2157,
"column": 80
}
}
@@ -210414,16 +170275,16 @@
"type": "Identifier",
"name": "file",
"range": [
- 94334,
- 94338
+ 75736,
+ 75740
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 8
},
"end": {
- "line": 2622,
+ "line": 2168,
"column": 12
}
}
@@ -210432,31 +170293,31 @@
"type": "Identifier",
"name": "onerror",
"range": [
- 94339,
- 94346
+ 75741,
+ 75748
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 13
},
"end": {
- "line": 2622,
+ "line": 2168,
"column": 20
}
}
},
"range": [
- 94334,
- 94346
+ 75736,
+ 75748
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 8
},
"end": {
- "line": 2622,
+ "line": 2168,
"column": 20
}
}
@@ -210476,16 +170337,16 @@
"type": "Identifier",
"name": "Error",
"range": [
- 94383,
- 94388
+ 75785,
+ 75790
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 22
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 27
}
}
@@ -210499,16 +170360,16 @@
"value": "TF script could not load: ",
"raw": "'TF script could not load: '",
"range": [
- 94389,
- 94417
+ 75791,
+ 75819
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 28
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 56
}
}
@@ -210517,78 +170378,78 @@
"type": "Identifier",
"name": "filePath",
"range": [
- 94420,
- 94428
+ 75822,
+ 75830
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 59
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 67
}
}
},
"range": [
- 94389,
- 94428
+ 75791,
+ 75830
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 28
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 67
}
}
}
],
"range": [
- 94379,
- 94429
+ 75781,
+ 75831
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 18
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 68
}
}
},
"range": [
- 94373,
- 94430
+ 75775,
+ 75832
],
"loc": {
"start": {
- "line": 2623,
+ "line": 2169,
"column": 12
},
"end": {
- "line": 2623,
+ "line": 2169,
"column": 69
}
}
}
],
"range": [
- 94359,
- 94440
+ 75761,
+ 75842
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 33
},
"end": {
- "line": 2624,
+ "line": 2170,
"column": 9
}
}
@@ -210596,46 +170457,46 @@
"generator": false,
"expression": false,
"range": [
- 94349,
- 94440
+ 75751,
+ 75842
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 23
},
"end": {
- "line": 2624,
+ "line": 2170,
"column": 9
}
}
},
"range": [
- 94334,
- 94440
+ 75736,
+ 75842
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 8
},
"end": {
- "line": 2624,
+ "line": 2170,
"column": 9
}
}
},
"range": [
- 94334,
- 94441
+ 75736,
+ 75843
],
"loc": {
"start": {
- "line": 2622,
+ "line": 2168,
"column": 8
},
"end": {
- "line": 2624,
+ "line": 2170,
"column": 10
}
}
@@ -210651,16 +170512,16 @@
"type": "Identifier",
"name": "head",
"range": [
- 94450,
- 94454
+ 75852,
+ 75856
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 8
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 12
}
}
@@ -210669,31 +170530,31 @@
"type": "Identifier",
"name": "appendChild",
"range": [
- 94455,
- 94466
+ 75857,
+ 75868
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 13
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 24
}
}
},
"range": [
- 94450,
- 94466
+ 75852,
+ 75868
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 8
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 24
}
}
@@ -210703,63 +170564,63 @@
"type": "Identifier",
"name": "file",
"range": [
- 94467,
- 94471
+ 75869,
+ 75873
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 25
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 29
}
}
}
],
"range": [
- 94450,
- 94472
+ 75852,
+ 75874
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 8
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 30
}
}
},
"range": [
- 94450,
- 94473
+ 75852,
+ 75875
],
"loc": {
"start": {
- "line": 2625,
+ "line": 2171,
"column": 8
},
"end": {
- "line": 2625,
+ "line": 2171,
"column": 31
}
}
}
],
"range": [
- 93189,
- 94479
+ 74591,
+ 75881
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 44
},
"end": {
- "line": 2626,
+ "line": 2172,
"column": 5
}
}
@@ -210767,16 +170628,16 @@
"generator": false,
"expression": false,
"range": [
- 93155,
- 94479
+ 74557,
+ 75881
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 10
},
"end": {
- "line": 2626,
+ "line": 2172,
"column": 5
}
}
@@ -210784,16 +170645,16 @@
"kind": "method",
"computed": false,
"range": [
- 93149,
- 94479
+ 74551,
+ 75881
],
"loc": {
"start": {
- "line": 2587,
+ "line": 2133,
"column": 4
},
"end": {
- "line": 2626,
+ "line": 2172,
"column": 5
}
},
@@ -210802,16 +170663,16 @@
"type": "Block",
"value": "*\n * Import script or stylesheet\n * @param {String} fileId Ressource ID\n * @param {String} filePath Ressource path\n * @param {Function} callback Callback\n * @param {String} type Possible values: 'script' or 'link'\n ",
"range": [
- 92885,
- 93144
+ 74287,
+ 74546
],
"loc": {
"start": {
- "line": 2580,
+ "line": 2126,
"column": 4
},
"end": {
- "line": 2586,
+ "line": 2132,
"column": 7
}
}
@@ -210822,16 +170683,16 @@
"type": "Block",
"value": "*\n * Check if table has filters grid\n * @return {Boolean}\n ",
"range": [
- 94485,
- 94560
+ 75887,
+ 75962
],
"loc": {
"start": {
- "line": 2628,
+ "line": 2174,
"column": 4
},
"end": {
- "line": 2631,
+ "line": 2177,
"column": 7
}
}
@@ -210845,16 +170706,16 @@
"type": "Identifier",
"name": "hasGrid",
"range": [
- 94565,
- 94572
+ 75967,
+ 75974
],
"loc": {
"start": {
- "line": 2632,
+ "line": 2178,
"column": 4
},
"end": {
- "line": 2632,
+ "line": 2178,
"column": 11
}
}
@@ -210874,16 +170735,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 94591,
- 94595
+ 75993,
+ 75997
],
"loc": {
"start": {
- "line": 2633,
+ "line": 2179,
"column": 15
},
"end": {
- "line": 2633,
+ "line": 2179,
"column": 19
}
}
@@ -210892,62 +170753,62 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 94596,
- 94604
+ 75998,
+ 76006
],
"loc": {
"start": {
- "line": 2633,
+ "line": 2179,
"column": 20
},
"end": {
- "line": 2633,
+ "line": 2179,
"column": 28
}
}
},
"range": [
- 94591,
- 94604
+ 75993,
+ 76006
],
"loc": {
"start": {
- "line": 2633,
+ "line": 2179,
"column": 15
},
"end": {
- "line": 2633,
+ "line": 2179,
"column": 28
}
}
},
"range": [
- 94584,
- 94605
+ 75986,
+ 76007
],
"loc": {
"start": {
- "line": 2633,
+ "line": 2179,
"column": 8
},
"end": {
- "line": 2633,
+ "line": 2179,
"column": 29
}
}
}
],
"range": [
- 94574,
- 94611
+ 75976,
+ 76013
],
"loc": {
"start": {
- "line": 2632,
+ "line": 2178,
"column": 13
},
"end": {
- "line": 2634,
+ "line": 2180,
"column": 5
}
}
@@ -210955,16 +170816,16 @@
"generator": false,
"expression": false,
"range": [
- 94572,
- 94611
+ 75974,
+ 76013
],
"loc": {
"start": {
- "line": 2632,
+ "line": 2178,
"column": 11
},
"end": {
- "line": 2634,
+ "line": 2180,
"column": 5
}
}
@@ -210972,16 +170833,16 @@
"kind": "method",
"computed": false,
"range": [
- 94565,
- 94611
+ 75967,
+ 76013
],
"loc": {
"start": {
- "line": 2632,
+ "line": 2178,
"column": 4
},
"end": {
- "line": 2634,
+ "line": 2180,
"column": 5
}
},
@@ -210990,16 +170851,16 @@
"type": "Block",
"value": "*\n * Check if table has filters grid\n * @return {Boolean}\n ",
"range": [
- 94485,
- 94560
+ 75887,
+ 75962
],
"loc": {
"start": {
- "line": 2628,
+ "line": 2174,
"column": 4
},
"end": {
- "line": 2631,
+ "line": 2177,
"column": 7
}
}
@@ -211010,16 +170871,16 @@
"type": "Block",
"value": "*\n * Get list of filter IDs\n * @return {[type]} [description]\n ",
"range": [
- 94617,
- 94696
+ 76019,
+ 76098
],
"loc": {
"start": {
- "line": 2636,
+ "line": 2182,
"column": 4
},
"end": {
- "line": 2639,
+ "line": 2185,
"column": 7
}
}
@@ -211033,16 +170894,16 @@
"type": "Identifier",
"name": "getFiltersId",
"range": [
- 94701,
- 94713
+ 76103,
+ 76115
],
"loc": {
"start": {
- "line": 2640,
+ "line": 2186,
"column": 4
},
"end": {
- "line": 2640,
+ "line": 2186,
"column": 16
}
}
@@ -211065,16 +170926,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 94732,
- 94736
+ 76134,
+ 76138
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 15
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 19
}
}
@@ -211083,31 +170944,31 @@
"type": "Identifier",
"name": "fltIds",
"range": [
- 94737,
- 94743
+ 76139,
+ 76145
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 20
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 26
}
}
},
"range": [
- 94732,
- 94743
+ 76134,
+ 76145
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 15
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 26
}
}
@@ -211116,62 +170977,62 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 94747,
- 94749
+ 76149,
+ 76151
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 30
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 32
}
}
},
"range": [
- 94732,
- 94749
+ 76134,
+ 76151
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 15
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 32
}
}
},
"range": [
- 94725,
- 94750
+ 76127,
+ 76152
],
"loc": {
"start": {
- "line": 2641,
+ "line": 2187,
"column": 8
},
"end": {
- "line": 2641,
+ "line": 2187,
"column": 33
}
}
}
],
"range": [
- 94715,
- 94756
+ 76117,
+ 76158
],
"loc": {
"start": {
- "line": 2640,
+ "line": 2186,
"column": 18
},
"end": {
- "line": 2642,
+ "line": 2188,
"column": 5
}
}
@@ -211179,16 +171040,16 @@
"generator": false,
"expression": false,
"range": [
- 94713,
- 94756
+ 76115,
+ 76158
],
"loc": {
"start": {
- "line": 2640,
+ "line": 2186,
"column": 16
},
"end": {
- "line": 2642,
+ "line": 2188,
"column": 5
}
}
@@ -211196,16 +171057,16 @@
"kind": "method",
"computed": false,
"range": [
- 94701,
- 94756
+ 76103,
+ 76158
],
"loc": {
"start": {
- "line": 2640,
+ "line": 2186,
"column": 4
},
"end": {
- "line": 2642,
+ "line": 2188,
"column": 5
}
},
@@ -211214,16 +171075,16 @@
"type": "Block",
"value": "*\n * Get list of filter IDs\n * @return {[type]} [description]\n ",
"range": [
- 94617,
- 94696
+ 76019,
+ 76098
],
"loc": {
"start": {
- "line": 2636,
+ "line": 2182,
"column": 4
},
"end": {
- "line": 2639,
+ "line": 2185,
"column": 7
}
}
@@ -211234,16 +171095,16 @@
"type": "Block",
"value": "*\n * Get filtered (valid) rows indexes\n * @param {Boolean} reCalc Force calculation of filtered rows list\n * @return {Array} List of row indexes\n ",
"range": [
- 94762,
- 94938
+ 76164,
+ 76340
],
"loc": {
"start": {
- "line": 2644,
+ "line": 2190,
"column": 4
},
"end": {
- "line": 2648,
+ "line": 2194,
"column": 7
}
}
@@ -211257,16 +171118,16 @@
"type": "Identifier",
"name": "getValidRows",
"range": [
- 94943,
- 94955
+ 76345,
+ 76357
],
"loc": {
"start": {
- "line": 2649,
+ "line": 2195,
"column": 4
},
"end": {
- "line": 2649,
+ "line": 2195,
"column": 16
}
}
@@ -211279,16 +171140,16 @@
"type": "Identifier",
"name": "reCalc",
"range": [
- 94956,
- 94962
+ 76358,
+ 76364
],
"loc": {
"start": {
- "line": 2649,
+ "line": 2195,
"column": 17
},
"end": {
- "line": 2649,
+ "line": 2195,
"column": 23
}
}
@@ -211306,32 +171167,32 @@
"type": "Identifier",
"name": "reCalc",
"range": [
- 94977,
- 94983
+ 76379,
+ 76385
],
"loc": {
"start": {
- "line": 2650,
+ "line": 2196,
"column": 12
},
"end": {
- "line": 2650,
+ "line": 2196,
"column": 18
}
}
},
"prefix": true,
"range": [
- 94976,
- 94983
+ 76378,
+ 76385
],
"loc": {
"start": {
- "line": 2650,
+ "line": 2196,
"column": 11
},
"end": {
- "line": 2650,
+ "line": 2196,
"column": 18
}
}
@@ -211347,16 +171208,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95005,
- 95009
+ 76407,
+ 76411
],
"loc": {
"start": {
- "line": 2651,
+ "line": 2197,
"column": 19
},
"end": {
- "line": 2651,
+ "line": 2197,
"column": 23
}
}
@@ -211365,78 +171226,78 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 95010,
- 95024
+ 76412,
+ 76426
],
"loc": {
"start": {
- "line": 2651,
+ "line": 2197,
"column": 24
},
"end": {
- "line": 2651,
+ "line": 2197,
"column": 38
}
}
},
"range": [
- 95005,
- 95024
+ 76407,
+ 76426
],
"loc": {
"start": {
- "line": 2651,
+ "line": 2197,
"column": 19
},
"end": {
- "line": 2651,
+ "line": 2197,
"column": 38
}
}
},
"range": [
- 94998,
- 95025
+ 76400,
+ 76427
],
"loc": {
"start": {
- "line": 2651,
+ "line": 2197,
"column": 12
},
"end": {
- "line": 2651,
+ "line": 2197,
"column": 39
}
}
}
],
"range": [
- 94984,
- 95035
+ 76386,
+ 76437
],
"loc": {
"start": {
- "line": 2650,
+ "line": 2196,
"column": 19
},
"end": {
- "line": 2652,
+ "line": 2198,
"column": 9
}
}
},
"alternate": null,
"range": [
- 94973,
- 95035
+ 76375,
+ 76437
],
"loc": {
"start": {
- "line": 2650,
+ "line": 2196,
"column": 8
},
"end": {
- "line": 2652,
+ "line": 2198,
"column": 9
}
}
@@ -211452,16 +171313,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95045,
- 95049
+ 76447,
+ 76451
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 8
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 12
}
}
@@ -211470,31 +171331,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 95050,
- 95064
+ 76452,
+ 76466
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 13
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 27
}
}
},
"range": [
- 95045,
- 95064
+ 76447,
+ 76466
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 8
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 27
}
}
@@ -211503,46 +171364,46 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 95067,
- 95069
+ 76469,
+ 76471
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 30
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 32
}
}
},
"range": [
- 95045,
- 95069
+ 76447,
+ 76471
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 8
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 32
}
}
},
"range": [
- 95045,
- 95070
+ 76447,
+ 76472
],
"loc": {
"start": {
- "line": 2654,
+ "line": 2200,
"column": 8
},
"end": {
- "line": 2654,
+ "line": 2200,
"column": 33
}
}
@@ -211558,16 +171419,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 95087,
- 95088
+ 76489,
+ 76490
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 16
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 17
}
}
@@ -211578,16 +171439,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95089,
- 95093
+ 76491,
+ 76495
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 18
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 22
}
}
@@ -211596,46 +171457,46 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 95094,
- 95100
+ 76496,
+ 76502
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 23
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 29
}
}
},
"range": [
- 95089,
- 95100
+ 76491,
+ 76502
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 18
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 29
}
}
},
"range": [
- 95087,
- 95100
+ 76489,
+ 76502
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 16
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 29
}
}
@@ -211643,16 +171504,16 @@
],
"kind": "let",
"range": [
- 95083,
- 95100
+ 76485,
+ 76502
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 12
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 29
}
}
@@ -211664,16 +171525,16 @@
"type": "Identifier",
"name": "k",
"range": [
- 95102,
- 95103
+ 76504,
+ 76505
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 31
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 32
}
}
@@ -211686,16 +171547,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95104,
- 95108
+ 76506,
+ 76510
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 33
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 37
}
}
@@ -211704,31 +171565,31 @@
"type": "Identifier",
"name": "getRowsNb",
"range": [
- 95109,
- 95118
+ 76511,
+ 76520
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 38
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 47
}
}
},
"range": [
- 95104,
- 95118
+ 76506,
+ 76520
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 33
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 47
}
}
@@ -211739,47 +171600,47 @@
"value": true,
"raw": "true",
"range": [
- 95119,
- 95123
+ 76521,
+ 76525
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 48
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 52
}
}
}
],
"range": [
- 95104,
- 95124
+ 76506,
+ 76526
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 33
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 53
}
}
},
"range": [
- 95102,
- 95124
+ 76504,
+ 76526
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 31
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 53
}
}
@@ -211791,32 +171652,32 @@
"type": "Identifier",
"name": "k",
"range": [
- 95126,
- 95127
+ 76528,
+ 76529
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 55
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 56
}
}
},
"prefix": false,
"range": [
- 95126,
- 95129
+ 76528,
+ 76531
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 55
},
"end": {
- "line": 2655,
+ "line": 2201,
"column": 58
}
}
@@ -211833,16 +171694,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 95148,
- 95149
+ 76550,
+ 76551
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 16
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 17
}
}
@@ -211859,16 +171720,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95152,
- 95156
+ 76554,
+ 76558
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 20
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 24
}
}
@@ -211877,31 +171738,31 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 95157,
- 95160
+ 76559,
+ 76562
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 25
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 28
}
}
},
"range": [
- 95152,
- 95160
+ 76554,
+ 76562
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 20
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 28
}
}
@@ -211910,31 +171771,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 95161,
- 95165
+ 76563,
+ 76567
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 29
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 33
}
}
},
"range": [
- 95152,
- 95165
+ 76554,
+ 76567
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 20
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 33
}
}
@@ -211943,46 +171804,46 @@
"type": "Identifier",
"name": "k",
"range": [
- 95166,
- 95167
+ 76568,
+ 76569
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 34
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 35
}
}
},
"range": [
- 95152,
- 95168
+ 76554,
+ 76570
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 20
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 36
}
}
},
"range": [
- 95148,
- 95168
+ 76550,
+ 76570
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 16
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 36
}
}
@@ -211990,16 +171851,16 @@
],
"kind": "let",
"range": [
- 95144,
- 95169
+ 76546,
+ 76571
],
"loc": {
"start": {
- "line": 2656,
+ "line": 2202,
"column": 12
},
"end": {
- "line": 2656,
+ "line": 2202,
"column": 37
}
}
@@ -212015,16 +171876,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95186,
- 95190
+ 76588,
+ 76592
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 16
},
"end": {
- "line": 2657,
+ "line": 2203,
"column": 20
}
}
@@ -212033,47 +171894,47 @@
"type": "Identifier",
"name": "paging",
"range": [
- 95191,
- 95197
+ 76593,
+ 76599
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 21
},
"end": {
- "line": 2657,
+ "line": 2203,
"column": 27
}
}
},
"range": [
- 95186,
- 95197
+ 76588,
+ 76599
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 16
},
"end": {
- "line": 2657,
+ "line": 2203,
"column": 27
}
}
},
"prefix": true,
"range": [
- 95185,
- 95197
+ 76587,
+ 76599
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 15
},
"end": {
- "line": 2657,
+ "line": 2203,
"column": 27
}
}
@@ -212094,16 +171955,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95219,
- 95223
+ 76621,
+ 76625
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 19
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 23
}
}
@@ -212112,31 +171973,31 @@
"type": "Identifier",
"name": "getRowDisplay",
"range": [
- 95224,
- 95237
+ 76626,
+ 76639
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 24
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 37
}
}
},
"range": [
- 95219,
- 95237
+ 76621,
+ 76639
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 19
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 37
}
}
@@ -212146,32 +172007,32 @@
"type": "Identifier",
"name": "r",
"range": [
- 95238,
- 95239
+ 76640,
+ 76641
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 38
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 39
}
}
}
],
"range": [
- 95219,
- 95240
+ 76621,
+ 76642
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 19
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 40
}
}
@@ -212181,31 +172042,31 @@
"value": "none",
"raw": "'none'",
"range": [
- 95245,
- 95251
+ 76647,
+ 76653
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 45
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 51
}
}
},
"range": [
- 95219,
- 95251
+ 76621,
+ 76653
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 19
},
"end": {
- "line": 2658,
+ "line": 2204,
"column": 51
}
}
@@ -212226,16 +172087,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95274,
- 95278
+ 76676,
+ 76680
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 20
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 24
}
}
@@ -212244,31 +172105,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 95279,
- 95293
+ 76681,
+ 76695
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 25
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 39
}
}
},
"range": [
- 95274,
- 95293
+ 76676,
+ 76695
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 20
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 39
}
}
@@ -212277,31 +172138,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 95294,
- 95298
+ 76696,
+ 76700
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 40
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 44
}
}
},
"range": [
- 95274,
- 95298
+ 76676,
+ 76700
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 20
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 44
}
}
@@ -212314,16 +172175,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 95299,
- 95300
+ 76701,
+ 76702
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 45
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 46
}
}
@@ -212332,110 +172193,110 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 95301,
- 95309
+ 76703,
+ 76711
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 47
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 55
}
}
},
"range": [
- 95299,
- 95309
+ 76701,
+ 76711
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 45
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 55
}
}
}
],
"range": [
- 95274,
- 95310
+ 76676,
+ 76712
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 20
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 56
}
}
},
"range": [
- 95274,
- 95311
+ 76676,
+ 76713
],
"loc": {
"start": {
- "line": 2659,
+ "line": 2205,
"column": 20
},
"end": {
- "line": 2659,
+ "line": 2205,
"column": 57
}
}
}
],
"range": [
- 95252,
- 95329
+ 76654,
+ 76731
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 52
},
"end": {
- "line": 2660,
+ "line": 2206,
"column": 17
}
}
},
"alternate": null,
"range": [
- 95216,
- 95329
+ 76618,
+ 76731
],
"loc": {
"start": {
- "line": 2658,
+ "line": 2204,
"column": 16
},
"end": {
- "line": 2660,
+ "line": 2206,
"column": 17
}
}
}
],
"range": [
- 95198,
- 95343
+ 76600,
+ 76745
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 28
},
"end": {
- "line": 2661,
+ "line": 2207,
"column": 13
}
}
@@ -212460,16 +172321,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 95370,
- 95371
+ 76772,
+ 76773
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 19
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 20
}
}
@@ -212478,31 +172339,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 95372,
- 95384
+ 76774,
+ 76786
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 21
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 33
}
}
},
"range": [
- 95370,
- 95384
+ 76772,
+ 76786
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 19
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 33
}
}
@@ -212513,32 +172374,32 @@
"value": "validRow",
"raw": "'validRow'",
"range": [
- 95385,
- 95395
+ 76787,
+ 76797
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 34
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 44
}
}
}
],
"range": [
- 95370,
- 95396
+ 76772,
+ 76798
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 19
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 45
}
}
@@ -212548,31 +172409,31 @@
"value": "true",
"raw": "'true'",
"range": [
- 95401,
- 95407
+ 76803,
+ 76809
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 50
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 56
}
}
},
"range": [
- 95370,
- 95407
+ 76772,
+ 76809
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 19
},
"end": {
- "line": 2662,
+ "line": 2208,
"column": 56
}
}
@@ -212589,16 +172450,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 95431,
- 95432
+ 76833,
+ 76834
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 20
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 21
}
}
@@ -212607,31 +172468,31 @@
"type": "Identifier",
"name": "getAttribute",
"range": [
- 95433,
- 95445
+ 76835,
+ 76847
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 22
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 34
}
}
},
"range": [
- 95431,
- 95445
+ 76833,
+ 76847
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 20
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 34
}
}
@@ -212642,32 +172503,32 @@
"value": "validRow",
"raw": "'validRow'",
"range": [
- 95446,
- 95456
+ 76848,
+ 76858
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 35
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 45
}
}
}
],
"range": [
- 95431,
- 95457
+ 76833,
+ 76859
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 20
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 46
}
}
@@ -212677,46 +172538,46 @@
"value": null,
"raw": "null",
"range": [
- 95462,
- 95466
+ 76864,
+ 76868
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 51
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 55
}
}
},
"range": [
- 95431,
- 95466
+ 76833,
+ 76868
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 20
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 55
}
}
},
"range": [
- 95370,
- 95466
+ 76772,
+ 76868
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 19
},
"end": {
- "line": 2663,
+ "line": 2209,
"column": 55
}
}
@@ -212737,16 +172598,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95489,
- 95493
+ 76891,
+ 76895
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 20
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 24
}
}
@@ -212755,31 +172616,31 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 95494,
- 95508
+ 76896,
+ 76910
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 25
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 39
}
}
},
"range": [
- 95489,
- 95508
+ 76891,
+ 76910
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 20
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 39
}
}
@@ -212788,31 +172649,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 95509,
- 95513
+ 76911,
+ 76915
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 40
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 44
}
}
},
"range": [
- 95489,
- 95513
+ 76891,
+ 76915
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 20
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 44
}
}
@@ -212825,16 +172686,16 @@
"type": "Identifier",
"name": "r",
"range": [
- 95514,
- 95515
+ 76916,
+ 76917
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 45
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 46
}
}
@@ -212843,156 +172704,156 @@
"type": "Identifier",
"name": "rowIndex",
"range": [
- 95516,
- 95524
+ 76918,
+ 76926
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 47
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 55
}
}
},
"range": [
- 95514,
- 95524
+ 76916,
+ 76926
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 45
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 55
}
}
}
],
"range": [
- 95489,
- 95525
+ 76891,
+ 76927
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 20
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 56
}
}
},
"range": [
- 95489,
- 95526
+ 76891,
+ 76928
],
"loc": {
"start": {
- "line": 2664,
+ "line": 2210,
"column": 20
},
"end": {
- "line": 2664,
+ "line": 2210,
"column": 57
}
}
}
],
"range": [
- 95467,
- 95544
+ 76869,
+ 76946
],
"loc": {
"start": {
- "line": 2663,
+ "line": 2209,
"column": 56
},
"end": {
- "line": 2665,
+ "line": 2211,
"column": 17
}
}
},
"alternate": null,
"range": [
- 95367,
- 95544
+ 76769,
+ 76946
],
"loc": {
"start": {
- "line": 2662,
+ "line": 2208,
"column": 16
},
"end": {
- "line": 2665,
+ "line": 2211,
"column": 17
}
}
}
],
"range": [
- 95349,
- 95558
+ 76751,
+ 76960
],
"loc": {
"start": {
- "line": 2661,
+ "line": 2207,
"column": 19
},
"end": {
- "line": 2666,
+ "line": 2212,
"column": 13
}
}
},
"range": [
- 95182,
- 95558
+ 76584,
+ 76960
],
"loc": {
"start": {
- "line": 2657,
+ "line": 2203,
"column": 12
},
"end": {
- "line": 2666,
+ "line": 2212,
"column": 13
}
}
}
],
"range": [
- 95130,
- 95568
+ 76532,
+ 76970
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 59
},
"end": {
- "line": 2667,
+ "line": 2213,
"column": 9
}
}
},
"range": [
- 95079,
- 95568
+ 76481,
+ 76970
],
"loc": {
"start": {
- "line": 2655,
+ "line": 2201,
"column": 8
},
"end": {
- "line": 2667,
+ "line": 2213,
"column": 9
}
}
@@ -213005,16 +172866,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95584,
- 95588
+ 76986,
+ 76990
],
"loc": {
"start": {
- "line": 2668,
+ "line": 2214,
"column": 15
},
"end": {
- "line": 2668,
+ "line": 2214,
"column": 19
}
}
@@ -213023,62 +172884,62 @@
"type": "Identifier",
"name": "validRowsIndex",
"range": [
- 95589,
- 95603
+ 76991,
+ 77005
],
"loc": {
"start": {
- "line": 2668,
+ "line": 2214,
"column": 20
},
"end": {
- "line": 2668,
+ "line": 2214,
"column": 34
}
}
},
"range": [
- 95584,
- 95603
+ 76986,
+ 77005
],
"loc": {
"start": {
- "line": 2668,
+ "line": 2214,
"column": 15
},
"end": {
- "line": 2668,
+ "line": 2214,
"column": 34
}
}
},
"range": [
- 95577,
- 95604
+ 76979,
+ 77006
],
"loc": {
"start": {
- "line": 2668,
+ "line": 2214,
"column": 8
},
"end": {
- "line": 2668,
+ "line": 2214,
"column": 35
}
}
}
],
"range": [
- 94963,
- 95610
+ 76365,
+ 77012
],
"loc": {
"start": {
- "line": 2649,
+ "line": 2195,
"column": 24
},
"end": {
- "line": 2669,
+ "line": 2215,
"column": 5
}
}
@@ -213086,16 +172947,16 @@
"generator": false,
"expression": false,
"range": [
- 94955,
- 95610
+ 76357,
+ 77012
],
"loc": {
"start": {
- "line": 2649,
+ "line": 2195,
"column": 16
},
"end": {
- "line": 2669,
+ "line": 2215,
"column": 5
}
}
@@ -213103,16 +172964,16 @@
"kind": "method",
"computed": false,
"range": [
- 94943,
- 95610
+ 76345,
+ 77012
],
"loc": {
"start": {
- "line": 2649,
+ "line": 2195,
"column": 4
},
"end": {
- "line": 2669,
+ "line": 2215,
"column": 5
}
},
@@ -213121,16 +172982,16 @@
"type": "Block",
"value": "*\n * Get filtered (valid) rows indexes\n * @param {Boolean} reCalc Force calculation of filtered rows list\n * @return {Array} List of row indexes\n ",
"range": [
- 94762,
- 94938
+ 76164,
+ 76340
],
"loc": {
"start": {
- "line": 2644,
+ "line": 2190,
"column": 4
},
"end": {
- "line": 2648,
+ "line": 2194,
"column": 7
}
}
@@ -213141,16 +173002,16 @@
"type": "Block",
"value": "*\n * Get the index of the row containing the filters\n * @return {Number}\n ",
"range": [
- 95616,
- 95706
+ 77018,
+ 77108
],
"loc": {
"start": {
- "line": 2671,
+ "line": 2217,
"column": 4
},
"end": {
- "line": 2674,
+ "line": 2220,
"column": 7
}
}
@@ -213164,16 +173025,16 @@
"type": "Identifier",
"name": "getFiltersRowIndex",
"range": [
- 95711,
- 95729
+ 77113,
+ 77131
],
"loc": {
"start": {
- "line": 2675,
+ "line": 2221,
"column": 4
},
"end": {
- "line": 2675,
+ "line": 2221,
"column": 22
}
}
@@ -213193,16 +173054,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95748,
- 95752
+ 77150,
+ 77154
],
"loc": {
"start": {
- "line": 2676,
+ "line": 2222,
"column": 15
},
"end": {
- "line": 2676,
+ "line": 2222,
"column": 19
}
}
@@ -213211,62 +173072,62 @@
"type": "Identifier",
"name": "filtersRowIndex",
"range": [
- 95753,
- 95768
+ 77155,
+ 77170
],
"loc": {
"start": {
- "line": 2676,
+ "line": 2222,
"column": 20
},
"end": {
- "line": 2676,
+ "line": 2222,
"column": 35
}
}
},
"range": [
- 95748,
- 95768
+ 77150,
+ 77170
],
"loc": {
"start": {
- "line": 2676,
+ "line": 2222,
"column": 15
},
"end": {
- "line": 2676,
+ "line": 2222,
"column": 35
}
}
},
"range": [
- 95741,
- 95769
+ 77143,
+ 77171
],
"loc": {
"start": {
- "line": 2676,
+ "line": 2222,
"column": 8
},
"end": {
- "line": 2676,
+ "line": 2222,
"column": 36
}
}
}
],
"range": [
- 95731,
- 95775
+ 77133,
+ 77177
],
"loc": {
"start": {
- "line": 2675,
+ "line": 2221,
"column": 24
},
"end": {
- "line": 2677,
+ "line": 2223,
"column": 5
}
}
@@ -213274,16 +173135,16 @@
"generator": false,
"expression": false,
"range": [
- 95729,
- 95775
+ 77131,
+ 77177
],
"loc": {
"start": {
- "line": 2675,
+ "line": 2221,
"column": 22
},
"end": {
- "line": 2677,
+ "line": 2223,
"column": 5
}
}
@@ -213291,16 +173152,16 @@
"kind": "method",
"computed": false,
"range": [
- 95711,
- 95775
+ 77113,
+ 77177
],
"loc": {
"start": {
- "line": 2675,
+ "line": 2221,
"column": 4
},
"end": {
- "line": 2677,
+ "line": 2223,
"column": 5
}
},
@@ -213309,16 +173170,16 @@
"type": "Block",
"value": "*\n * Get the index of the row containing the filters\n * @return {Number}\n ",
"range": [
- 95616,
- 95706
+ 77018,
+ 77108
],
"loc": {
"start": {
- "line": 2671,
+ "line": 2217,
"column": 4
},
"end": {
- "line": 2674,
+ "line": 2220,
"column": 7
}
}
@@ -213329,16 +173190,16 @@
"type": "Block",
"value": "*\n * Get the index of the headers row\n * @return {Number}\n ",
"range": [
- 95781,
- 95856
+ 77183,
+ 77258
],
"loc": {
"start": {
- "line": 2679,
+ "line": 2225,
"column": 4
},
"end": {
- "line": 2682,
+ "line": 2228,
"column": 7
}
}
@@ -213352,16 +173213,16 @@
"type": "Identifier",
"name": "getHeadersRowIndex",
"range": [
- 95861,
- 95879
+ 77263,
+ 77281
],
"loc": {
"start": {
- "line": 2683,
+ "line": 2229,
"column": 4
},
"end": {
- "line": 2683,
+ "line": 2229,
"column": 22
}
}
@@ -213381,16 +173242,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 95898,
- 95902
+ 77300,
+ 77304
],
"loc": {
"start": {
- "line": 2684,
+ "line": 2230,
"column": 15
},
"end": {
- "line": 2684,
+ "line": 2230,
"column": 19
}
}
@@ -213399,62 +173260,62 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 95903,
- 95913
+ 77305,
+ 77315
],
"loc": {
"start": {
- "line": 2684,
+ "line": 2230,
"column": 20
},
"end": {
- "line": 2684,
+ "line": 2230,
"column": 30
}
}
},
"range": [
- 95898,
- 95913
+ 77300,
+ 77315
],
"loc": {
"start": {
- "line": 2684,
+ "line": 2230,
"column": 15
},
"end": {
- "line": 2684,
+ "line": 2230,
"column": 30
}
}
},
"range": [
- 95891,
- 95914
+ 77293,
+ 77316
],
"loc": {
"start": {
- "line": 2684,
+ "line": 2230,
"column": 8
},
"end": {
- "line": 2684,
+ "line": 2230,
"column": 31
}
}
}
],
"range": [
- 95881,
- 95920
+ 77283,
+ 77322
],
"loc": {
"start": {
- "line": 2683,
+ "line": 2229,
"column": 24
},
"end": {
- "line": 2685,
+ "line": 2231,
"column": 5
}
}
@@ -213462,16 +173323,16 @@
"generator": false,
"expression": false,
"range": [
- 95879,
- 95920
+ 77281,
+ 77322
],
"loc": {
"start": {
- "line": 2683,
+ "line": 2229,
"column": 22
},
"end": {
- "line": 2685,
+ "line": 2231,
"column": 5
}
}
@@ -213479,16 +173340,16 @@
"kind": "method",
"computed": false,
"range": [
- 95861,
- 95920
+ 77263,
+ 77322
],
"loc": {
"start": {
- "line": 2683,
+ "line": 2229,
"column": 4
},
"end": {
- "line": 2685,
+ "line": 2231,
"column": 5
}
},
@@ -213497,16 +173358,16 @@
"type": "Block",
"value": "*\n * Get the index of the headers row\n * @return {Number}\n ",
"range": [
- 95781,
- 95856
+ 77183,
+ 77258
],
"loc": {
"start": {
- "line": 2679,
+ "line": 2225,
"column": 4
},
"end": {
- "line": 2682,
+ "line": 2228,
"column": 7
}
}
@@ -213517,16 +173378,16 @@
"type": "Block",
"value": "*\n * Get the row index from where the filtering process start (1st filterable\n * row)\n * @return {Number}\n ",
"range": [
- 95926,
- 96053
+ 77328,
+ 77455
],
"loc": {
"start": {
- "line": 2687,
+ "line": 2233,
"column": 4
},
"end": {
- "line": 2691,
+ "line": 2237,
"column": 7
}
}
@@ -213540,16 +173401,16 @@
"type": "Identifier",
"name": "getStartRowIndex",
"range": [
- 96058,
- 96074
+ 77460,
+ 77476
],
"loc": {
"start": {
- "line": 2692,
+ "line": 2238,
"column": 4
},
"end": {
- "line": 2692,
+ "line": 2238,
"column": 20
}
}
@@ -213569,16 +173430,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96093,
- 96097
+ 77495,
+ 77499
],
"loc": {
"start": {
- "line": 2693,
+ "line": 2239,
"column": 15
},
"end": {
- "line": 2693,
+ "line": 2239,
"column": 19
}
}
@@ -213587,62 +173448,62 @@
"type": "Identifier",
"name": "refRow",
"range": [
- 96098,
- 96104
+ 77500,
+ 77506
],
"loc": {
"start": {
- "line": 2693,
+ "line": 2239,
"column": 20
},
"end": {
- "line": 2693,
+ "line": 2239,
"column": 26
}
}
},
"range": [
- 96093,
- 96104
+ 77495,
+ 77506
],
"loc": {
"start": {
- "line": 2693,
+ "line": 2239,
"column": 15
},
"end": {
- "line": 2693,
+ "line": 2239,
"column": 26
}
}
},
"range": [
- 96086,
- 96105
+ 77488,
+ 77507
],
"loc": {
"start": {
- "line": 2693,
+ "line": 2239,
"column": 8
},
"end": {
- "line": 2693,
+ "line": 2239,
"column": 27
}
}
}
],
"range": [
- 96076,
- 96111
+ 77478,
+ 77513
],
"loc": {
"start": {
- "line": 2692,
+ "line": 2238,
"column": 22
},
"end": {
- "line": 2694,
+ "line": 2240,
"column": 5
}
}
@@ -213650,16 +173511,16 @@
"generator": false,
"expression": false,
"range": [
- 96074,
- 96111
+ 77476,
+ 77513
],
"loc": {
"start": {
- "line": 2692,
+ "line": 2238,
"column": 20
},
"end": {
- "line": 2694,
+ "line": 2240,
"column": 5
}
}
@@ -213667,16 +173528,16 @@
"kind": "method",
"computed": false,
"range": [
- 96058,
- 96111
+ 77460,
+ 77513
],
"loc": {
"start": {
- "line": 2692,
+ "line": 2238,
"column": 4
},
"end": {
- "line": 2694,
+ "line": 2240,
"column": 5
}
},
@@ -213685,16 +173546,16 @@
"type": "Block",
"value": "*\n * Get the row index from where the filtering process start (1st filterable\n * row)\n * @return {Number}\n ",
"range": [
- 95926,
- 96053
+ 77328,
+ 77455
],
"loc": {
"start": {
- "line": 2687,
+ "line": 2233,
"column": 4
},
"end": {
- "line": 2691,
+ "line": 2237,
"column": 7
}
}
@@ -213705,16 +173566,16 @@
"type": "Block",
"value": "*\n * Get the index of the last row\n * @return {Number}\n ",
"range": [
- 96117,
- 96189
+ 77519,
+ 77591
],
"loc": {
"start": {
- "line": 2696,
+ "line": 2242,
"column": 4
},
"end": {
- "line": 2699,
+ "line": 2245,
"column": 7
}
}
@@ -213728,16 +173589,16 @@
"type": "Identifier",
"name": "getLastRowIndex",
"range": [
- 96194,
- 96209
+ 77596,
+ 77611
],
"loc": {
"start": {
- "line": 2700,
+ "line": 2246,
"column": 4
},
"end": {
- "line": 2700,
+ "line": 2246,
"column": 19
}
}
@@ -213760,16 +173621,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96225,
- 96229
+ 77627,
+ 77631
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 12
},
"end": {
- "line": 2701,
+ "line": 2247,
"column": 16
}
}
@@ -213778,47 +173639,47 @@
"type": "Identifier",
"name": "_hasGrid",
"range": [
- 96230,
- 96238
+ 77632,
+ 77640
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 17
},
"end": {
- "line": 2701,
+ "line": 2247,
"column": 25
}
}
},
"range": [
- 96225,
- 96238
+ 77627,
+ 77640
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 12
},
"end": {
- "line": 2701,
+ "line": 2247,
"column": 25
}
}
},
"prefix": true,
"range": [
- 96224,
- 96238
+ 77626,
+ 77640
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 11
},
"end": {
- "line": 2701,
+ "line": 2247,
"column": 25
}
}
@@ -213830,48 +173691,48 @@
"type": "ReturnStatement",
"argument": null,
"range": [
- 96253,
- 96260
+ 77655,
+ 77662
],
"loc": {
"start": {
- "line": 2702,
+ "line": 2248,
"column": 12
},
"end": {
- "line": 2702,
+ "line": 2248,
"column": 19
}
}
}
],
"range": [
- 96239,
- 96270
+ 77641,
+ 77672
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 26
},
"end": {
- "line": 2703,
+ "line": 2249,
"column": 9
}
}
},
"alternate": null,
"range": [
- 96221,
- 96270
+ 77623,
+ 77672
],
"loc": {
"start": {
- "line": 2701,
+ "line": 2247,
"column": 8
},
"end": {
- "line": 2703,
+ "line": 2249,
"column": 9
}
}
@@ -213887,16 +173748,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96287,
- 96291
+ 77689,
+ 77693
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 16
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 20
}
}
@@ -213905,31 +173766,31 @@
"type": "Identifier",
"name": "nbRows",
"range": [
- 96292,
- 96298
+ 77694,
+ 77700
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 21
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 27
}
}
},
"range": [
- 96287,
- 96298
+ 77689,
+ 77700
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 16
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 27
}
}
@@ -213939,62 +173800,62 @@
"value": 1,
"raw": "1",
"range": [
- 96299,
- 96300
+ 77701,
+ 77702
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 28
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 29
}
}
},
"range": [
- 96287,
- 96300
+ 77689,
+ 77702
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 16
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 29
}
}
},
"range": [
- 96279,
- 96302
+ 77681,
+ 77704
],
"loc": {
"start": {
- "line": 2704,
+ "line": 2250,
"column": 8
},
"end": {
- "line": 2704,
+ "line": 2250,
"column": 31
}
}
}
],
"range": [
- 96211,
- 96308
+ 77613,
+ 77710
],
"loc": {
"start": {
- "line": 2700,
+ "line": 2246,
"column": 21
},
"end": {
- "line": 2705,
+ "line": 2251,
"column": 5
}
}
@@ -214002,16 +173863,16 @@
"generator": false,
"expression": false,
"range": [
- 96209,
- 96308
+ 77611,
+ 77710
],
"loc": {
"start": {
- "line": 2700,
+ "line": 2246,
"column": 19
},
"end": {
- "line": 2705,
+ "line": 2251,
"column": 5
}
}
@@ -214019,16 +173880,16 @@
"kind": "method",
"computed": false,
"range": [
- 96194,
- 96308
+ 77596,
+ 77710
],
"loc": {
"start": {
- "line": 2700,
+ "line": 2246,
"column": 4
},
"end": {
- "line": 2705,
+ "line": 2251,
"column": 5
}
},
@@ -214037,16 +173898,16 @@
"type": "Block",
"value": "*\n * Get the index of the last row\n * @return {Number}\n ",
"range": [
- 96117,
- 96189
+ 77519,
+ 77591
],
"loc": {
"start": {
- "line": 2696,
+ "line": 2242,
"column": 4
},
"end": {
- "line": 2699,
+ "line": 2245,
"column": 7
}
}
@@ -214057,16 +173918,16 @@
"type": "Block",
"value": "*\n * Get the header DOM element for a given column index\n * @param {Number} colIndex Column index\n * @return {Object}\n ",
"range": [
- 96314,
- 96454
+ 77716,
+ 77856
],
"loc": {
"start": {
- "line": 2707,
+ "line": 2253,
"column": 4
},
"end": {
- "line": 2711,
+ "line": 2257,
"column": 7
}
}
@@ -214080,16 +173941,16 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 96459,
- 96475
+ 77861,
+ 77877
],
"loc": {
"start": {
- "line": 2712,
+ "line": 2258,
"column": 4
},
"end": {
- "line": 2712,
+ "line": 2258,
"column": 20
}
}
@@ -214102,16 +173963,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 96476,
- 96484
+ 77878,
+ 77886
],
"loc": {
"start": {
- "line": 2712,
+ "line": 2258,
"column": 21
},
"end": {
- "line": 2712,
+ "line": 2258,
"column": 29
}
}
@@ -214129,16 +173990,16 @@
"type": "Identifier",
"name": "table",
"range": [
- 96499,
- 96504
+ 77901,
+ 77906
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 12
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 17
}
}
@@ -214151,16 +174012,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96507,
- 96511
+ 77909,
+ 77913
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 20
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 24
}
}
@@ -214169,31 +174030,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 96512,
- 96522
+ 77914,
+ 77924
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 25
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 35
}
}
},
"range": [
- 96507,
- 96522
+ 77909,
+ 77924
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 20
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 35
}
}
@@ -214210,16 +174071,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96525,
- 96529
+ 77927,
+ 77931
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 38
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 42
}
}
@@ -214228,31 +174089,31 @@
"type": "Identifier",
"name": "Mod",
"range": [
- 96530,
- 96533
+ 77932,
+ 77935
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 43
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 46
}
}
},
"range": [
- 96525,
- 96533
+ 77927,
+ 77935
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 38
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 46
}
}
@@ -214261,31 +174122,31 @@
"type": "Identifier",
"name": "gridLayout",
"range": [
- 96534,
- 96544
+ 77936,
+ 77946
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 47
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 57
}
}
},
"range": [
- 96525,
- 96544
+ 77927,
+ 77946
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 38
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 57
}
}
@@ -214294,31 +174155,31 @@
"type": "Identifier",
"name": "headTbl",
"range": [
- 96545,
- 96552
+ 77947,
+ 77954
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 58
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 65
}
}
},
"range": [
- 96525,
- 96552
+ 77927,
+ 77954
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 38
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 65
}
}
@@ -214329,16 +174190,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96555,
- 96559
+ 77957,
+ 77961
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 68
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 72
}
}
@@ -214347,61 +174208,61 @@
"type": "Identifier",
"name": "tbl",
"range": [
- 96560,
- 96563
+ 77962,
+ 77965
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 73
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 76
}
}
},
"range": [
- 96555,
- 96563
+ 77957,
+ 77965
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 68
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 76
}
}
},
"range": [
- 96507,
- 96563
+ 77909,
+ 77965
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 20
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 76
}
}
},
"range": [
- 96499,
- 96563
+ 77901,
+ 77965
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 12
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 76
}
}
@@ -214409,16 +174270,16 @@
],
"kind": "let",
"range": [
- 96495,
- 96564
+ 77897,
+ 77966
],
"loc": {
"start": {
- "line": 2713,
+ "line": 2259,
"column": 8
},
"end": {
- "line": 2713,
+ "line": 2259,
"column": 77
}
}
@@ -214432,16 +174293,16 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 96577,
- 96582
+ 77979,
+ 77984
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 12
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 17
}
}
@@ -214455,16 +174316,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 96585,
- 96588
+ 77987,
+ 77990
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 20
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 23
}
}
@@ -214473,31 +174334,31 @@
"type": "Identifier",
"name": "tag",
"range": [
- 96589,
- 96592
+ 77991,
+ 77994
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 24
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 27
}
}
},
"range": [
- 96585,
- 96592
+ 77987,
+ 77994
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 20
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 27
}
}
@@ -214507,16 +174368,16 @@
"type": "Identifier",
"name": "table",
"range": [
- 96593,
- 96598
+ 77995,
+ 78000
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 28
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 33
}
}
@@ -214526,47 +174387,47 @@
"value": "thead",
"raw": "'thead'",
"range": [
- 96600,
- 96607
+ 78002,
+ 78009
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 35
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 42
}
}
}
],
"range": [
- 96585,
- 96608
+ 77987,
+ 78010
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 20
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 43
}
}
},
"range": [
- 96577,
- 96608
+ 77979,
+ 78010
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 12
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 43
}
}
@@ -214574,16 +174435,16 @@
],
"kind": "let",
"range": [
- 96573,
- 96609
+ 77975,
+ 78011
],
"loc": {
"start": {
- "line": 2714,
+ "line": 2260,
"column": 8
},
"end": {
- "line": 2714,
+ "line": 2260,
"column": 44
}
}
@@ -214597,16 +174458,16 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 96622,
- 96632
+ 78024,
+ 78034
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 12
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 22
}
}
@@ -214617,16 +174478,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96635,
- 96639
+ 78037,
+ 78041
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 25
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 29
}
}
@@ -214635,46 +174496,46 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 96640,
- 96650
+ 78042,
+ 78052
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 30
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 40
}
}
},
"range": [
- 96635,
- 96650
+ 78037,
+ 78052
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 25
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 40
}
}
},
"range": [
- 96622,
- 96650
+ 78024,
+ 78052
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 12
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 40
}
}
@@ -214682,16 +174543,16 @@
],
"kind": "let",
"range": [
- 96618,
- 96651
+ 78020,
+ 78053
],
"loc": {
"start": {
- "line": 2715,
+ "line": 2261,
"column": 8
},
"end": {
- "line": 2715,
+ "line": 2261,
"column": 41
}
}
@@ -214705,32 +174566,32 @@
"type": "Identifier",
"name": "header",
"range": [
- 96664,
- 96670
+ 78066,
+ 78072
],
"loc": {
"start": {
- "line": 2716,
+ "line": 2262,
"column": 12
},
"end": {
- "line": 2716,
+ "line": 2262,
"column": 18
}
}
},
"init": null,
"range": [
- 96664,
- 96670
+ 78066,
+ 78072
],
"loc": {
"start": {
- "line": 2716,
+ "line": 2262,
"column": 12
},
"end": {
- "line": 2716,
+ "line": 2262,
"column": 18
}
}
@@ -214738,16 +174599,16 @@
],
"kind": "let",
"range": [
- 96660,
- 96671
+ 78062,
+ 78073
],
"loc": {
"start": {
- "line": 2716,
+ "line": 2262,
"column": 8
},
"end": {
- "line": 2716,
+ "line": 2262,
"column": 19
}
}
@@ -214763,16 +174624,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 96688,
- 96689
+ 78090,
+ 78091
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 16
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 17
}
}
@@ -214782,31 +174643,31 @@
"value": 0,
"raw": "0",
"range": [
- 96690,
- 96691
+ 78092,
+ 78093
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 18
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 19
}
}
},
"range": [
- 96688,
- 96691
+ 78090,
+ 78093
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 16
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 19
}
}
@@ -214814,16 +174675,16 @@
],
"kind": "let",
"range": [
- 96684,
- 96691
+ 78086,
+ 78093
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 12
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 19
}
}
@@ -214835,16 +174696,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 96693,
- 96694
+ 78095,
+ 78096
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 21
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 22
}
}
@@ -214855,16 +174716,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 96695,
- 96699
+ 78097,
+ 78101
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 23
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 27
}
}
@@ -214873,46 +174734,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 96700,
- 96707
+ 78102,
+ 78109
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 28
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 35
}
}
},
"range": [
- 96695,
- 96707
+ 78097,
+ 78109
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 23
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 35
}
}
},
"range": [
- 96693,
- 96707
+ 78095,
+ 78109
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 21
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 35
}
}
@@ -214924,32 +174785,32 @@
"type": "Identifier",
"name": "i",
"range": [
- 96709,
- 96710
+ 78111,
+ 78112
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 37
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 38
}
}
},
"prefix": false,
"range": [
- 96709,
- 96712
+ 78111,
+ 78114
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 37
},
"end": {
- "line": 2717,
+ "line": 2263,
"column": 40
}
}
@@ -214966,16 +174827,16 @@
"type": "Identifier",
"name": "i",
"range": [
- 96730,
- 96731
+ 78132,
+ 78133
],
"loc": {
"start": {
- "line": 2718,
+ "line": 2264,
"column": 15
},
"end": {
- "line": 2718,
+ "line": 2264,
"column": 16
}
}
@@ -214984,31 +174845,31 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 96736,
- 96744
+ 78138,
+ 78146
],
"loc": {
"start": {
- "line": 2718,
+ "line": 2264,
"column": 21
},
"end": {
- "line": 2718,
+ "line": 2264,
"column": 29
}
}
},
"range": [
- 96730,
- 96744
+ 78132,
+ 78146
],
"loc": {
"start": {
- "line": 2718,
+ "line": 2264,
"column": 15
},
"end": {
- "line": 2718,
+ "line": 2264,
"column": 29
}
}
@@ -215020,48 +174881,48 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 96763,
- 96772
+ 78165,
+ 78174
],
"loc": {
"start": {
- "line": 2719,
+ "line": 2265,
"column": 16
},
"end": {
- "line": 2719,
+ "line": 2265,
"column": 25
}
}
}
],
"range": [
- 96745,
- 96786
+ 78147,
+ 78188
],
"loc": {
"start": {
- "line": 2718,
+ "line": 2264,
"column": 30
},
"end": {
- "line": 2720,
+ "line": 2266,
"column": 13
}
}
},
"alternate": null,
"range": [
- 96727,
- 96786
+ 78129,
+ 78188
],
"loc": {
"start": {
- "line": 2718,
+ "line": 2264,
"column": 12
},
"end": {
- "line": 2720,
+ "line": 2266,
"column": 13
}
}
@@ -215078,16 +174939,16 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 96802,
- 96807
+ 78204,
+ 78209
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 15
},
"end": {
- "line": 2721,
+ "line": 2267,
"column": 20
}
}
@@ -215096,31 +174957,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 96808,
- 96814
+ 78210,
+ 78216
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 21
},
"end": {
- "line": 2721,
+ "line": 2267,
"column": 27
}
}
},
"range": [
- 96802,
- 96814
+ 78204,
+ 78216
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 15
},
"end": {
- "line": 2721,
+ "line": 2267,
"column": 27
}
}
@@ -215130,31 +174991,31 @@
"value": 0,
"raw": "0",
"range": [
- 96819,
- 96820
+ 78221,
+ 78222
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 32
},
"end": {
- "line": 2721,
+ "line": 2267,
"column": 33
}
}
},
"range": [
- 96802,
- 96820
+ 78204,
+ 78222
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 15
},
"end": {
- "line": 2721,
+ "line": 2267,
"column": 33
}
}
@@ -215171,16 +175032,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 96839,
- 96845
+ 78241,
+ 78247
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 16
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 22
}
}
@@ -215201,16 +175062,16 @@
"type": "Identifier",
"name": "table",
"range": [
- 96848,
- 96853
+ 78250,
+ 78255
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 25
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 30
}
}
@@ -215219,31 +175080,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 96854,
- 96858
+ 78256,
+ 78260
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 31
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 35
}
}
},
"range": [
- 96848,
- 96858
+ 78250,
+ 78260
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 25
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 35
}
}
@@ -215252,31 +175113,31 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 96859,
- 96869
+ 78261,
+ 78271
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 36
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 46
}
}
},
"range": [
- 96848,
- 96870
+ 78250,
+ 78272
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 25
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 47
}
}
@@ -215285,31 +175146,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 96871,
- 96876
+ 78273,
+ 78278
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 48
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 53
}
}
},
"range": [
- 96848,
- 96876
+ 78250,
+ 78278
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 25
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 53
}
}
@@ -215318,93 +175179,93 @@
"type": "Identifier",
"name": "i",
"range": [
- 96877,
- 96878
+ 78279,
+ 78280
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 54
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 55
}
}
},
"range": [
- 96848,
- 96879
+ 78250,
+ 78281
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 25
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 56
}
}
},
"range": [
- 96839,
- 96879
+ 78241,
+ 78281
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 16
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 56
}
}
},
"range": [
- 96839,
- 96880
+ 78241,
+ 78282
],
"loc": {
"start": {
- "line": 2722,
+ "line": 2268,
"column": 16
},
"end": {
- "line": 2722,
+ "line": 2268,
"column": 57
}
}
}
],
"range": [
- 96821,
- 96894
+ 78223,
+ 78296
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 34
},
"end": {
- "line": 2723,
+ "line": 2269,
"column": 13
}
}
},
"alternate": null,
"range": [
- 96799,
- 96894
+ 78201,
+ 78296
],
"loc": {
"start": {
- "line": 2721,
+ "line": 2267,
"column": 12
},
"end": {
- "line": 2723,
+ "line": 2269,
"column": 13
}
}
@@ -215421,16 +175282,16 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 96910,
- 96915
+ 78312,
+ 78317
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 15
},
"end": {
- "line": 2724,
+ "line": 2270,
"column": 20
}
}
@@ -215439,31 +175300,31 @@
"type": "Identifier",
"name": "length",
"range": [
- 96916,
- 96922
+ 78318,
+ 78324
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 21
},
"end": {
- "line": 2724,
+ "line": 2270,
"column": 27
}
}
},
"range": [
- 96910,
- 96922
+ 78312,
+ 78324
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 15
},
"end": {
- "line": 2724,
+ "line": 2270,
"column": 27
}
}
@@ -215473,31 +175334,31 @@
"value": 1,
"raw": "1",
"range": [
- 96927,
- 96928
+ 78329,
+ 78330
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 32
},
"end": {
- "line": 2724,
+ "line": 2270,
"column": 33
}
}
},
"range": [
- 96910,
- 96928
+ 78312,
+ 78330
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 15
},
"end": {
- "line": 2724,
+ "line": 2270,
"column": 33
}
}
@@ -215514,16 +175375,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 96947,
- 96953
+ 78349,
+ 78355
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 16
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 22
}
}
@@ -215547,16 +175408,16 @@
"type": "Identifier",
"name": "tHead",
"range": [
- 96956,
- 96961
+ 78358,
+ 78363
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 30
}
}
@@ -215566,31 +175427,31 @@
"value": 0,
"raw": "0",
"range": [
- 96962,
- 96963
+ 78364,
+ 78365
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 31
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 32
}
}
},
"range": [
- 96956,
- 96964
+ 78358,
+ 78366
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 33
}
}
@@ -215599,31 +175460,31 @@
"type": "Identifier",
"name": "rows",
"range": [
- 96965,
- 96969
+ 78367,
+ 78371
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 34
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 38
}
}
},
"range": [
- 96956,
- 96969
+ 78358,
+ 78371
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 38
}
}
@@ -215632,31 +175493,31 @@
"type": "Identifier",
"name": "headersRow",
"range": [
- 96970,
- 96980
+ 78372,
+ 78382
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 39
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 49
}
}
},
"range": [
- 96956,
- 96981
+ 78358,
+ 78383
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 50
}
}
@@ -215665,31 +175526,31 @@
"type": "Identifier",
"name": "cells",
"range": [
- 96982,
- 96987
+ 78384,
+ 78389
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 51
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 56
}
}
},
"range": [
- 96956,
- 96987
+ 78358,
+ 78389
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 56
}
}
@@ -215698,93 +175559,93 @@
"type": "Identifier",
"name": "i",
"range": [
- 96988,
- 96989
+ 78390,
+ 78391
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 57
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 58
}
}
},
"range": [
- 96956,
- 96990
+ 78358,
+ 78392
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 25
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 59
}
}
},
"range": [
- 96947,
- 96990
+ 78349,
+ 78392
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 16
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 59
}
}
},
"range": [
- 96947,
- 96991
+ 78349,
+ 78393
],
"loc": {
"start": {
- "line": 2725,
+ "line": 2271,
"column": 16
},
"end": {
- "line": 2725,
+ "line": 2271,
"column": 60
}
}
}
],
"range": [
- 96929,
- 97005
+ 78331,
+ 78407
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 34
},
"end": {
- "line": 2726,
+ "line": 2272,
"column": 13
}
}
},
"alternate": null,
"range": [
- 96907,
- 97005
+ 78309,
+ 78407
],
"loc": {
"start": {
- "line": 2724,
+ "line": 2270,
"column": 12
},
"end": {
- "line": 2726,
+ "line": 2272,
"column": 13
}
}
@@ -215793,47 +175654,47 @@
"type": "BreakStatement",
"label": null,
"range": [
- 97018,
- 97024
+ 78420,
+ 78426
],
"loc": {
"start": {
- "line": 2727,
+ "line": 2273,
"column": 12
},
"end": {
- "line": 2727,
+ "line": 2273,
"column": 18
}
}
}
],
"range": [
- 96713,
- 97034
+ 78115,
+ 78436
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 41
},
"end": {
- "line": 2728,
+ "line": 2274,
"column": 9
}
}
},
"range": [
- 96680,
- 97034
+ 78082,
+ 78436
],
"loc": {
"start": {
- "line": 2717,
+ "line": 2263,
"column": 8
},
"end": {
- "line": 2728,
+ "line": 2274,
"column": 9
}
}
@@ -215844,47 +175705,47 @@
"type": "Identifier",
"name": "header",
"range": [
- 97050,
- 97056
+ 78452,
+ 78458
],
"loc": {
"start": {
- "line": 2729,
+ "line": 2275,
"column": 15
},
"end": {
- "line": 2729,
+ "line": 2275,
"column": 21
}
}
},
"range": [
- 97043,
- 97057
+ 78445,
+ 78459
],
"loc": {
"start": {
- "line": 2729,
+ "line": 2275,
"column": 8
},
"end": {
- "line": 2729,
+ "line": 2275,
"column": 22
}
}
}
],
"range": [
- 96485,
- 97063
+ 77887,
+ 78465
],
"loc": {
"start": {
- "line": 2712,
+ "line": 2258,
"column": 30
},
"end": {
- "line": 2730,
+ "line": 2276,
"column": 5
}
}
@@ -215892,16 +175753,16 @@
"generator": false,
"expression": false,
"range": [
- 96475,
- 97063
+ 77877,
+ 78465
],
"loc": {
"start": {
- "line": 2712,
+ "line": 2258,
"column": 20
},
"end": {
- "line": 2730,
+ "line": 2276,
"column": 5
}
}
@@ -215909,16 +175770,16 @@
"kind": "method",
"computed": false,
"range": [
- 96459,
- 97063
+ 77861,
+ 78465
],
"loc": {
"start": {
- "line": 2712,
+ "line": 2258,
"column": 4
},
"end": {
- "line": 2730,
+ "line": 2276,
"column": 5
}
},
@@ -215927,16 +175788,16 @@
"type": "Block",
"value": "*\n * Get the header DOM element for a given column index\n * @param {Number} colIndex Column index\n * @return {Object}\n ",
"range": [
- 96314,
- 96454
+ 77716,
+ 77856
],
"loc": {
"start": {
- "line": 2707,
+ "line": 2253,
"column": 4
},
"end": {
- "line": 2711,
+ "line": 2257,
"column": 7
}
}
@@ -215947,16 +175808,16 @@
"type": "Block",
"value": "*\n * Return the list of headers' text\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array} list of headers' text\n ",
"range": [
- 97069,
- 97242
+ 78471,
+ 78644
],
"loc": {
"start": {
- "line": 2732,
+ "line": 2278,
"column": 4
},
"end": {
- "line": 2736,
+ "line": 2282,
"column": 7
}
}
@@ -215970,16 +175831,16 @@
"type": "Identifier",
"name": "getHeadersText",
"range": [
- 97247,
- 97261
+ 78649,
+ 78663
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 4
},
"end": {
- "line": 2737,
+ "line": 2283,
"column": 18
}
}
@@ -215994,16 +175855,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 97262,
- 97279
+ 78664,
+ 78681
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 19
},
"end": {
- "line": 2737,
+ "line": 2283,
"column": 36
}
}
@@ -216013,31 +175874,31 @@
"value": false,
"raw": "false",
"range": [
- 97280,
- 97285
+ 78682,
+ 78687
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 37
},
"end": {
- "line": 2737,
+ "line": 2283,
"column": 42
}
}
},
"range": [
- 97262,
- 97285
+ 78664,
+ 78687
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 19
},
"end": {
- "line": 2737,
+ "line": 2283,
"column": 42
}
}
@@ -216055,16 +175916,16 @@
"type": "Identifier",
"name": "headers",
"range": [
- 97300,
- 97307
+ 78702,
+ 78709
],
"loc": {
"start": {
- "line": 2738,
+ "line": 2284,
"column": 12
},
"end": {
- "line": 2738,
+ "line": 2284,
"column": 19
}
}
@@ -216073,31 +175934,31 @@
"type": "ArrayExpression",
"elements": [],
"range": [
- 97310,
- 97312
+ 78712,
+ 78714
],
"loc": {
"start": {
- "line": 2738,
+ "line": 2284,
"column": 22
},
"end": {
- "line": 2738,
+ "line": 2284,
"column": 24
}
}
},
"range": [
- 97300,
- 97312
+ 78702,
+ 78714
],
"loc": {
"start": {
- "line": 2738,
+ "line": 2284,
"column": 12
},
"end": {
- "line": 2738,
+ "line": 2284,
"column": 24
}
}
@@ -216105,16 +175966,16 @@
],
"kind": "let",
"range": [
- 97296,
- 97313
+ 78698,
+ 78715
],
"loc": {
"start": {
- "line": 2738,
+ "line": 2284,
"column": 8
},
"end": {
- "line": 2738,
+ "line": 2284,
"column": 25
}
}
@@ -216130,16 +175991,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 97330,
- 97331
+ 78732,
+ 78733
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 16
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 17
}
}
@@ -216149,31 +176010,31 @@
"value": 0,
"raw": "0",
"range": [
- 97332,
- 97333
+ 78734,
+ 78735
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 18
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 19
}
}
},
"range": [
- 97330,
- 97333
+ 78732,
+ 78735
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 16
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 19
}
}
@@ -216181,16 +176042,16 @@
],
"kind": "let",
"range": [
- 97326,
- 97333
+ 78728,
+ 78735
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 12
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 19
}
}
@@ -216202,16 +176063,16 @@
"type": "Identifier",
"name": "j",
"range": [
- 97335,
- 97336
+ 78737,
+ 78738
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 21
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 22
}
}
@@ -216222,16 +176083,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97337,
- 97341
+ 78739,
+ 78743
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 23
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 27
}
}
@@ -216240,46 +176101,46 @@
"type": "Identifier",
"name": "nbCells",
"range": [
- 97342,
- 97349
+ 78744,
+ 78751
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 28
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 35
}
}
},
"range": [
- 97337,
- 97349
+ 78739,
+ 78751
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 23
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 35
}
}
},
"range": [
- 97335,
- 97349
+ 78737,
+ 78751
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 21
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 35
}
}
@@ -216291,32 +176152,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 97351,
- 97352
+ 78753,
+ 78754
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 37
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 38
}
}
},
"prefix": false,
"range": [
- 97351,
- 97354
+ 78753,
+ 78756
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 37
},
"end": {
- "line": 2739,
+ "line": 2285,
"column": 40
}
}
@@ -216333,16 +176194,16 @@
"type": "Identifier",
"name": "excludeHiddenCols",
"range": [
- 97372,
- 97389
+ 78774,
+ 78791
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 15
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 32
}
}
@@ -216355,16 +176216,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97393,
- 97397
+ 78795,
+ 78799
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 36
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 40
}
}
@@ -216373,31 +176234,31 @@
"type": "Identifier",
"name": "hasExtension",
"range": [
- 97398,
- 97410
+ 78800,
+ 78812
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 41
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 53
}
}
},
"range": [
- 97393,
- 97410
+ 78795,
+ 78812
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 36
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 53
}
}
@@ -216408,47 +176269,47 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 97411,
- 97427
+ 78813,
+ 78829
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 54
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 70
}
}
}
],
"range": [
- 97393,
- 97428
+ 78795,
+ 78830
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 36
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 71
}
}
},
"range": [
- 97372,
- 97428
+ 78774,
+ 78830
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 15
},
"end": {
- "line": 2740,
+ "line": 2286,
"column": 71
}
}
@@ -216471,16 +176332,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97450,
- 97454
+ 78852,
+ 78856
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 19
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 23
}
}
@@ -216489,31 +176350,31 @@
"type": "Identifier",
"name": "extension",
"range": [
- 97455,
- 97464
+ 78857,
+ 78866
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 24
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 33
}
}
},
"range": [
- 97450,
- 97464
+ 78852,
+ 78866
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 19
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 33
}
}
@@ -216524,32 +176385,32 @@
"value": "colsVisibility",
"raw": "'colsVisibility'",
"range": [
- 97465,
- 97481
+ 78867,
+ 78883
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 34
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 50
}
}
}
],
"range": [
- 97450,
- 97482
+ 78852,
+ 78884
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 19
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 51
}
}
@@ -216558,31 +176419,31 @@
"type": "Identifier",
"name": "isColHidden",
"range": [
- 97483,
- 97494
+ 78885,
+ 78896
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 52
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 63
}
}
},
"range": [
- 97450,
- 97494
+ 78852,
+ 78896
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 19
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 63
}
}
@@ -216592,32 +176453,32 @@
"type": "Identifier",
"name": "j",
"range": [
- 97495,
- 97496
+ 78897,
+ 78898
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 64
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 65
}
}
}
],
"range": [
- 97450,
- 97497
+ 78852,
+ 78899
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 19
},
"end": {
- "line": 2741,
+ "line": 2287,
"column": 66
}
}
@@ -216629,80 +176490,80 @@
"type": "ContinueStatement",
"label": null,
"range": [
- 97520,
- 97529
+ 78922,
+ 78931
],
"loc": {
"start": {
- "line": 2742,
+ "line": 2288,
"column": 20
},
"end": {
- "line": 2742,
+ "line": 2288,
"column": 29
}
}
}
],
"range": [
- 97498,
- 97547
+ 78900,
+ 78949
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 67
},
"end": {
- "line": 2743,
+ "line": 2289,
"column": 17
}
}
},
"alternate": null,
"range": [
- 97447,
- 97547
+ 78849,
+ 78949
],
"loc": {
"start": {
- "line": 2741,
+ "line": 2287,
"column": 16
},
"end": {
- "line": 2743,
+ "line": 2289,
"column": 17
}
}
}
],
"range": [
- 97429,
- 97561
+ 78831,
+ 78963
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 72
},
"end": {
- "line": 2744,
+ "line": 2290,
"column": 13
}
}
},
"alternate": null,
"range": [
- 97369,
- 97561
+ 78771,
+ 78963
],
"loc": {
"start": {
- "line": 2740,
+ "line": 2286,
"column": 12
},
"end": {
- "line": 2744,
+ "line": 2290,
"column": 13
}
}
@@ -216716,16 +176577,16 @@
"type": "Identifier",
"name": "header",
"range": [
- 97578,
- 97584
+ 78980,
+ 78986
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 16
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 22
}
}
@@ -216738,16 +176599,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97587,
- 97591
+ 78989,
+ 78993
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 25
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 29
}
}
@@ -216756,31 +176617,31 @@
"type": "Identifier",
"name": "getHeaderElement",
"range": [
- 97592,
- 97608
+ 78994,
+ 79010
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 30
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 46
}
}
},
"range": [
- 97587,
- 97608
+ 78989,
+ 79010
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 25
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 46
}
}
@@ -216790,47 +176651,47 @@
"type": "Identifier",
"name": "j",
"range": [
- 97609,
- 97610
+ 79011,
+ 79012
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 47
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 48
}
}
}
],
"range": [
- 97587,
- 97611
+ 78989,
+ 79013
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 25
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 49
}
}
},
"range": [
- 97578,
- 97611
+ 78980,
+ 79013
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 16
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 49
}
}
@@ -216838,16 +176699,16 @@
],
"kind": "let",
"range": [
- 97574,
- 97612
+ 78976,
+ 79014
],
"loc": {
"start": {
- "line": 2745,
+ "line": 2291,
"column": 12
},
"end": {
- "line": 2745,
+ "line": 2291,
"column": 50
}
}
@@ -216861,16 +176722,16 @@
"type": "Identifier",
"name": "headerText",
"range": [
- 97629,
- 97639
+ 79031,
+ 79041
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 16
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 26
}
}
@@ -216884,16 +176745,16 @@
"type": "Identifier",
"name": "Dom",
"range": [
- 97642,
- 97645
+ 79044,
+ 79047
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 29
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 32
}
}
@@ -216902,31 +176763,31 @@
"type": "Identifier",
"name": "getFirstTextNode",
"range": [
- 97646,
- 97662
+ 79048,
+ 79064
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 33
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 49
}
}
},
"range": [
- 97642,
- 97662
+ 79044,
+ 79064
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 29
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 49
}
}
@@ -216936,47 +176797,47 @@
"type": "Identifier",
"name": "header",
"range": [
- 97663,
- 97669
+ 79065,
+ 79071
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 50
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 56
}
}
}
],
"range": [
- 97642,
- 97670
+ 79044,
+ 79072
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 29
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 57
}
}
},
"range": [
- 97629,
- 97670
+ 79031,
+ 79072
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 16
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 57
}
}
@@ -216984,16 +176845,16 @@
],
"kind": "let",
"range": [
- 97625,
- 97671
+ 79027,
+ 79073
],
"loc": {
"start": {
- "line": 2746,
+ "line": 2292,
"column": 12
},
"end": {
- "line": 2746,
+ "line": 2292,
"column": 58
}
}
@@ -217009,16 +176870,16 @@
"type": "Identifier",
"name": "headers",
"range": [
- 97684,
- 97691
+ 79086,
+ 79093
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 12
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 19
}
}
@@ -217027,31 +176888,31 @@
"type": "Identifier",
"name": "push",
"range": [
- 97692,
- 97696
+ 79094,
+ 79098
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 20
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 24
}
}
},
"range": [
- 97684,
- 97696
+ 79086,
+ 79098
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 12
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 24
}
}
@@ -217061,78 +176922,78 @@
"type": "Identifier",
"name": "headerText",
"range": [
- 97697,
- 97707
+ 79099,
+ 79109
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 25
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 35
}
}
}
],
"range": [
- 97684,
- 97708
+ 79086,
+ 79110
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 12
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 36
}
}
},
"range": [
- 97684,
- 97709
+ 79086,
+ 79111
],
"loc": {
"start": {
- "line": 2747,
+ "line": 2293,
"column": 12
},
"end": {
- "line": 2747,
+ "line": 2293,
"column": 37
}
}
}
],
"range": [
- 97355,
- 97719
+ 78757,
+ 79121
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 41
},
"end": {
- "line": 2748,
+ "line": 2294,
"column": 9
}
}
},
"range": [
- 97322,
- 97719
+ 78724,
+ 79121
],
"loc": {
"start": {
- "line": 2739,
+ "line": 2285,
"column": 8
},
"end": {
- "line": 2748,
+ "line": 2294,
"column": 9
}
}
@@ -217143,47 +177004,47 @@
"type": "Identifier",
"name": "headers",
"range": [
- 97735,
- 97742
+ 79137,
+ 79144
],
"loc": {
"start": {
- "line": 2749,
+ "line": 2295,
"column": 15
},
"end": {
- "line": 2749,
+ "line": 2295,
"column": 22
}
}
},
"range": [
- 97728,
- 97743
+ 79130,
+ 79145
],
"loc": {
"start": {
- "line": 2749,
+ "line": 2295,
"column": 8
},
"end": {
- "line": 2749,
+ "line": 2295,
"column": 23
}
}
}
],
"range": [
- 97286,
- 97749
+ 78688,
+ 79151
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 43
},
"end": {
- "line": 2750,
+ "line": 2296,
"column": 5
}
}
@@ -217191,16 +177052,16 @@
"generator": false,
"expression": false,
"range": [
- 97261,
- 97749
+ 78663,
+ 79151
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 18
},
"end": {
- "line": 2750,
+ "line": 2296,
"column": 5
}
}
@@ -217208,16 +177069,16 @@
"kind": "method",
"computed": false,
"range": [
- 97247,
- 97749
+ 78649,
+ 79151
],
"loc": {
"start": {
- "line": 2737,
+ "line": 2283,
"column": 4
},
"end": {
- "line": 2750,
+ "line": 2296,
"column": 5
}
},
@@ -217226,16 +177087,16 @@
"type": "Block",
"value": "*\n * Return the list of headers' text\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array} list of headers' text\n ",
"range": [
- 97069,
- 97242
+ 78471,
+ 78644
],
"loc": {
"start": {
- "line": 2732,
+ "line": 2278,
"column": 4
},
"end": {
- "line": 2736,
+ "line": 2282,
"column": 7
}
}
@@ -217246,16 +177107,16 @@
"type": "Block",
"value": "*\n * Return the filter type for a specified column\n * @param {Number} colIndex Column's index\n * @return {String}\n ",
"range": [
- 97755,
- 97891
+ 79157,
+ 79293
],
"loc": {
"start": {
- "line": 2752,
+ "line": 2298,
"column": 4
},
"end": {
- "line": 2756,
+ "line": 2302,
"column": 7
}
}
@@ -217269,16 +177130,16 @@
"type": "Identifier",
"name": "getFilterType",
"range": [
- 97896,
- 97909
+ 79298,
+ 79311
],
"loc": {
"start": {
- "line": 2757,
+ "line": 2303,
"column": 4
},
"end": {
- "line": 2757,
+ "line": 2303,
"column": 17
}
}
@@ -217291,16 +177152,16 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 97910,
- 97918
+ 79312,
+ 79320
],
"loc": {
"start": {
- "line": 2757,
+ "line": 2303,
"column": 18
},
"end": {
- "line": 2757,
+ "line": 2303,
"column": 26
}
}
@@ -217318,16 +177179,16 @@
"type": "Identifier",
"name": "colType",
"range": [
- 97933,
- 97940
+ 79335,
+ 79342
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 12
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 19
}
}
@@ -217341,16 +177202,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97943,
- 97947
+ 79345,
+ 79349
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 22
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 26
}
}
@@ -217359,31 +177220,31 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 97948,
- 97951
+ 79350,
+ 79353
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 27
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 30
}
}
},
"range": [
- 97943,
- 97951
+ 79345,
+ 79353
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 22
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 30
}
}
@@ -217396,16 +177257,16 @@
"value": "col_",
"raw": "'col_'",
"range": [
- 97952,
- 97958
+ 79354,
+ 79360
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 31
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 37
}
}
@@ -217414,61 +177275,61 @@
"type": "Identifier",
"name": "colIndex",
"range": [
- 97959,
- 97967
+ 79361,
+ 79369
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 38
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 46
}
}
},
"range": [
- 97952,
- 97967
+ 79354,
+ 79369
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 31
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 46
}
}
},
"range": [
- 97943,
- 97968
+ 79345,
+ 79370
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 22
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 47
}
}
},
"range": [
- 97933,
- 97968
+ 79335,
+ 79370
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 12
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 47
}
}
@@ -217476,16 +177337,16 @@
],
"kind": "let",
"range": [
- 97929,
- 97969
+ 79331,
+ 79371
],
"loc": {
"start": {
- "line": 2758,
+ "line": 2304,
"column": 8
},
"end": {
- "line": 2758,
+ "line": 2304,
"column": 48
}
}
@@ -217501,32 +177362,32 @@
"type": "Identifier",
"name": "colType",
"range": [
- 97986,
- 97993
+ 79388,
+ 79395
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 16
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 23
}
}
},
"prefix": true,
"range": [
- 97985,
- 97993
+ 79387,
+ 79395
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 15
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 23
}
}
@@ -217537,16 +177398,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 97996,
- 98000
+ 79398,
+ 79402
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 26
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 30
}
}
@@ -217555,31 +177416,31 @@
"type": "Identifier",
"name": "fltTypeInp",
"range": [
- 98001,
- 98011
+ 79403,
+ 79413
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 31
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 41
}
}
},
"range": [
- 97996,
- 98011
+ 79398,
+ 79413
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 26
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 41
}
}
@@ -217593,16 +177454,16 @@
"type": "Identifier",
"name": "Str",
"range": [
- 98014,
- 98017
+ 79416,
+ 79419
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 44
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 47
}
}
@@ -217611,31 +177472,31 @@
"type": "Identifier",
"name": "lower",
"range": [
- 98018,
- 98023
+ 79420,
+ 79425
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 48
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 53
}
}
},
"range": [
- 98014,
- 98023
+ 79416,
+ 79425
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 44
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 53
}
}
@@ -217645,78 +177506,78 @@
"type": "Identifier",
"name": "colType",
"range": [
- 98024,
- 98031
+ 79426,
+ 79433
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 54
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 61
}
}
}
],
"range": [
- 98014,
- 98032
+ 79416,
+ 79434
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 44
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 62
}
}
},
"range": [
- 97985,
- 98032
+ 79387,
+ 79434
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 15
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 62
}
}
},
"range": [
- 97978,
- 98033
+ 79380,
+ 79435
],
"loc": {
"start": {
- "line": 2759,
+ "line": 2305,
"column": 8
},
"end": {
- "line": 2759,
+ "line": 2305,
"column": 63
}
}
}
],
"range": [
- 97919,
- 98039
+ 79321,
+ 79441
],
"loc": {
"start": {
- "line": 2757,
+ "line": 2303,
"column": 27
},
"end": {
- "line": 2760,
+ "line": 2306,
"column": 5
}
}
@@ -217724,16 +177585,16 @@
"generator": false,
"expression": false,
"range": [
- 97909,
- 98039
+ 79311,
+ 79441
],
"loc": {
"start": {
- "line": 2757,
+ "line": 2303,
"column": 17
},
"end": {
- "line": 2760,
+ "line": 2306,
"column": 5
}
}
@@ -217741,16 +177602,16 @@
"kind": "method",
"computed": false,
"range": [
- 97896,
- 98039
+ 79298,
+ 79441
],
"loc": {
"start": {
- "line": 2757,
+ "line": 2303,
"column": 4
},
"end": {
- "line": 2760,
+ "line": 2306,
"column": 5
}
},
@@ -217759,16 +177620,16 @@
"type": "Block",
"value": "*\n * Return the filter type for a specified column\n * @param {Number} colIndex Column's index\n * @return {String}\n ",
"range": [
- 97755,
- 97891
+ 79157,
+ 79293
],
"loc": {
"start": {
- "line": 2752,
+ "line": 2298,
"column": 4
},
"end": {
- "line": 2756,
+ "line": 2302,
"column": 7
}
}
@@ -217779,16 +177640,16 @@
"type": "Block",
"value": "*\n * Get the total number of filterable rows\n * @return {Number}\n ",
"range": [
- 98045,
- 98127
+ 79447,
+ 79529
],
"loc": {
"start": {
- "line": 2762,
+ "line": 2308,
"column": 4
},
"end": {
- "line": 2765,
+ "line": 2311,
"column": 7
}
}
@@ -217802,16 +177663,16 @@
"type": "Identifier",
"name": "getFilterableRowsNb",
"range": [
- 98132,
- 98151
+ 79534,
+ 79553
],
"loc": {
"start": {
- "line": 2766,
+ "line": 2312,
"column": 4
},
"end": {
- "line": 2766,
+ "line": 2312,
"column": 23
}
}
@@ -217833,16 +177694,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 98170,
- 98174
+ 79572,
+ 79576
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 15
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 19
}
}
@@ -217851,31 +177712,31 @@
"type": "Identifier",
"name": "getRowsNb",
"range": [
- 98175,
- 98184
+ 79577,
+ 79586
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 20
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 29
}
}
},
"range": [
- 98170,
- 98184
+ 79572,
+ 79586
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 15
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 29
}
}
@@ -217886,63 +177747,63 @@
"value": false,
"raw": "false",
"range": [
- 98185,
- 98190
+ 79587,
+ 79592
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 30
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 35
}
}
}
],
"range": [
- 98170,
- 98191
+ 79572,
+ 79593
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 15
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 36
}
}
},
"range": [
- 98163,
- 98192
+ 79565,
+ 79594
],
"loc": {
"start": {
- "line": 2767,
+ "line": 2313,
"column": 8
},
"end": {
- "line": 2767,
+ "line": 2313,
"column": 37
}
}
}
],
"range": [
- 98153,
- 98198
+ 79555,
+ 79600
],
"loc": {
"start": {
- "line": 2766,
+ "line": 2312,
"column": 25
},
"end": {
- "line": 2768,
+ "line": 2314,
"column": 5
}
}
@@ -217950,16 +177811,16 @@
"generator": false,
"expression": false,
"range": [
- 98151,
- 98198
+ 79553,
+ 79600
],
"loc": {
"start": {
- "line": 2766,
+ "line": 2312,
"column": 23
},
"end": {
- "line": 2768,
+ "line": 2314,
"column": 5
}
}
@@ -217967,16 +177828,16 @@
"kind": "method",
"computed": false,
"range": [
- 98132,
- 98198
+ 79534,
+ 79600
],
"loc": {
"start": {
- "line": 2766,
+ "line": 2312,
"column": 4
},
"end": {
- "line": 2768,
+ "line": 2314,
"column": 5
}
},
@@ -217985,16 +177846,16 @@
"type": "Block",
"value": "*\n * Get the total number of filterable rows\n * @return {Number}\n ",
"range": [
- 98045,
- 98127
+ 79447,
+ 79529
],
"loc": {
"start": {
- "line": 2762,
+ "line": 2308,
"column": 4
},
"end": {
- "line": 2765,
+ "line": 2311,
"column": 7
}
}
@@ -218005,16 +177866,16 @@
"type": "Block",
"value": "*\n * Get the configuration object (literal object)\n * @return {Object}\n ",
"range": [
- 98204,
- 98292
+ 79606,
+ 79694
],
"loc": {
"start": {
- "line": 2770,
+ "line": 2316,
"column": 4
},
"end": {
- "line": 2773,
+ "line": 2319,
"column": 7
}
}
@@ -218028,16 +177889,16 @@
"type": "Identifier",
"name": "config",
"range": [
- 98297,
- 98303
+ 79699,
+ 79705
],
"loc": {
"start": {
- "line": 2774,
+ "line": 2320,
"column": 4
},
"end": {
- "line": 2774,
+ "line": 2320,
"column": 10
}
}
@@ -218057,16 +177918,16 @@
"object": {
"type": "ThisExpression",
"range": [
- 98322,
- 98326
+ 79724,
+ 79728
],
"loc": {
"start": {
- "line": 2775,
+ "line": 2321,
"column": 15
},
"end": {
- "line": 2775,
+ "line": 2321,
"column": 19
}
}
@@ -218075,62 +177936,62 @@
"type": "Identifier",
"name": "cfg",
"range": [
- 98327,
- 98330
+ 79729,
+ 79732
],
"loc": {
"start": {
- "line": 2775,
+ "line": 2321,
"column": 20
},
"end": {
- "line": 2775,
+ "line": 2321,
"column": 23
}
}
},
"range": [
- 98322,
- 98330
+ 79724,
+ 79732
],
"loc": {
"start": {
- "line": 2775,
+ "line": 2321,
"column": 15
},
"end": {
- "line": 2775,
+ "line": 2321,
"column": 23
}
}
},
"range": [
- 98315,
- 98331
+ 79717,
+ 79733
],
"loc": {
"start": {
- "line": 2775,
+ "line": 2321,
"column": 8
},
"end": {
- "line": 2775,
+ "line": 2321,
"column": 24
}
}
}
],
"range": [
- 98305,
- 98337
+ 79707,
+ 79739
],
"loc": {
"start": {
- "line": 2774,
+ "line": 2320,
"column": 12
},
"end": {
- "line": 2776,
+ "line": 2322,
"column": 5
}
}
@@ -218138,16 +177999,16 @@
"generator": false,
"expression": false,
"range": [
- 98303,
- 98337
+ 79705,
+ 79739
],
"loc": {
"start": {
- "line": 2774,
+ "line": 2320,
"column": 10
},
"end": {
- "line": 2776,
+ "line": 2322,
"column": 5
}
}
@@ -218155,16 +178016,16 @@
"kind": "method",
"computed": false,
"range": [
- 98297,
- 98337
+ 79699,
+ 79739
],
"loc": {
"start": {
- "line": 2774,
+ "line": 2320,
"column": 4
},
"end": {
- "line": 2776,
+ "line": 2322,
"column": 5
}
},
@@ -218173,16 +178034,16 @@
"type": "Block",
"value": "*\n * Get the configuration object (literal object)\n * @return {Object}\n ",
"range": [
- 98204,
- 98292
+ 79606,
+ 79694
],
"loc": {
"start": {
- "line": 2770,
+ "line": 2316,
"column": 4
},
"end": {
- "line": 2773,
+ "line": 2319,
"column": 7
}
}
@@ -218192,31 +178053,31 @@
}
],
"range": [
- 985,
- 98339
+ 963,
+ 79741
],
"loc": {
"start": {
- "line": 29,
- "column": 24
+ "line": 28,
+ "column": 25
},
"end": {
- "line": 2777,
+ "line": 2323,
"column": 1
}
}
},
"range": [
- 968,
- 98339
+ 945,
+ 79741
],
"loc": {
"start": {
- "line": 29,
+ "line": 28,
"column": 7
},
"end": {
- "line": 2777,
+ "line": 2323,
"column": 1
}
},
@@ -218226,16 +178087,16 @@
"specifiers": [],
"source": null,
"range": [
- 961,
- 98339
+ 938,
+ 79741
],
"loc": {
"start": {
- "line": 29,
+ "line": 28,
"column": 0
},
"end": {
- "line": 2777,
+ "line": 2323,
"column": 1
}
}
@@ -218244,7 +178105,7 @@
"sourceType": "module",
"range": [
0,
- 98339
+ 79741
],
"loc": {
"start": {
@@ -218252,7 +178113,7 @@
"column": 0
},
"end": {
- "line": 2777,
+ "line": 2323,
"column": 1
}
},
@@ -218261,16 +178122,16 @@
"type": "Line",
"value": " Features",
"range": [
- 236,
- 247
+ 213,
+ 224
],
"loc": {
"start": {
- "line": 10,
+ "line": 9,
"column": 0
},
"end": {
- "line": 10,
+ "line": 9,
"column": 11
}
}
@@ -218279,16 +178140,16 @@
"type": "Block",
"value": "*\n * TableFilter object constructor\n * requires `table` or `id` arguments, `row` and `configuration` optional\n * @param {DOMElement} table Table DOM element\n * @param {String} id Table id\n * @param {Number} row index indicating the 1st row\n * @param {Object} configuration object\n ",
"range": [
- 992,
- 1305
+ 970,
+ 1283
],
"loc": {
"start": {
- "line": 31,
+ "line": 30,
"column": 4
},
"end": {
- "line": 38,
+ "line": 37,
"column": 7
}
}
@@ -218297,34 +178158,70 @@
"type": "Line",
"value": " TODO: use for-of with babel plug-in",
"range": [
- 1754,
- 1792
+ 1732,
+ 1770
],
"loc": {
"start": {
- "line": 55,
+ "line": 54,
"column": 8
},
"end": {
- "line": 55,
+ "line": 54,
"column": 46
}
}
},
+ {
+ "type": "Line",
+ "value": " for (let arg of args) {",
+ "range": [
+ 1810,
+ 1836
+ ],
+ "loc": {
+ "start": {
+ "line": 56,
+ "column": 8
+ },
+ "end": {
+ "line": 56,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 2344,
+ 2348
+ ],
+ "loc": {
+ "start": {
+ "line": 69,
+ "column": 8
+ },
+ "end": {
+ "line": 69,
+ "column": 12
+ }
+ }
+ },
{
"type": "Line",
"value": " configuration object",
"range": [
- 2542,
- 2565
+ 2568,
+ 2591
],
"loc": {
"start": {
- "line": 76,
+ "line": 77,
"column": 8
},
"end": {
- "line": 76,
+ "line": 77,
"column": 31
}
}
@@ -218333,16 +178230,16 @@
"type": "Line",
"value": "Start row et cols nb",
"range": [
- 2601,
- 2623
+ 2666,
+ 2688
],
"loc": {
"start": {
- "line": 79,
+ "line": 82,
"column": 8
},
"end": {
- "line": 79,
+ "line": 82,
"column": 30
}
}
@@ -218351,16 +178248,16 @@
"type": "Line",
"value": "default script base path",
"range": [
- 2818,
- 2844
+ 2883,
+ 2909
],
"loc": {
"start": {
- "line": 84,
+ "line": 87,
"column": 8
},
"end": {
- "line": 84,
+ "line": 87,
"column": 34
}
}
@@ -218369,16 +178266,16 @@
"type": "Block",
"value": "** filter types **",
"range": [
- 2909,
- 2931
+ 2974,
+ 2996
],
"loc": {
"start": {
- "line": 87,
+ "line": 90,
"column": 8
},
"end": {
- "line": 87,
+ "line": 90,
"column": 30
}
}
@@ -218387,16 +178284,16 @@
"type": "Block",
"value": "** filters' grid properties **",
"range": [
- 3132,
- 3166
+ 3197,
+ 3231
],
"loc": {
"start": {
- "line": 94,
+ "line": 97,
"column": 8
},
"end": {
- "line": 94,
+ "line": 97,
"column": 42
}
}
@@ -218405,16 +178302,16 @@
"type": "Line",
"value": "enables/disables filter grid",
"range": [
- 3176,
- 3206
+ 3241,
+ 3271
],
"loc": {
"start": {
- "line": 96,
+ "line": 99,
"column": 8
},
"end": {
- "line": 96,
+ "line": 99,
"column": 38
}
}
@@ -218423,16 +178320,16 @@
"type": "Line",
"value": "enables/disables grid layout (fixed headers)",
"range": [
- 3272,
- 3318
+ 3337,
+ 3383
],
"loc": {
"start": {
- "line": 99,
+ "line": 102,
"column": 8
},
"end": {
- "line": 99,
+ "line": 102,
"column": 54
}
}
@@ -218441,16 +178338,16 @@
"type": "Line",
"value": "defines tag of the cells containing filters (td/th)",
"range": [
- 3852,
- 3905
+ 3668,
+ 3721
],
"loc": {
"start": {
- "line": 116,
+ "line": 110,
"column": 8
},
"end": {
- "line": 116,
+ "line": 110,
"column": 61
}
}
@@ -218459,16 +178356,16 @@
"type": "Line",
"value": "stores filters ids",
"range": [
- 4037,
- 4057
+ 3853,
+ 3873
],
"loc": {
"start": {
- "line": 120,
+ "line": 114,
"column": 8
},
"end": {
- "line": 120,
+ "line": 114,
"column": 28
}
}
@@ -218477,16 +178374,16 @@
"type": "Line",
"value": "stores filters DOM elements",
"range": [
- 4092,
- 4121
+ 3908,
+ 3937
],
"loc": {
"start": {
- "line": 122,
+ "line": 116,
"column": 8
},
"end": {
- "line": 122,
+ "line": 116,
"column": 37
}
}
@@ -218495,16 +178392,16 @@
"type": "Line",
"value": "stores filters values",
"range": [
- 4157,
- 4180
+ 3973,
+ 3996
],
"loc": {
"start": {
- "line": 124,
+ "line": 118,
"column": 8
},
"end": {
- "line": 124,
+ "line": 118,
"column": 31
}
}
@@ -218513,16 +178410,16 @@
"type": "Line",
"value": "stores valid rows indexes (rows visible upon filtering)",
"range": [
- 4221,
- 4278
+ 4037,
+ 4094
],
"loc": {
"start": {
- "line": 126,
+ "line": 120,
"column": 8
},
"end": {
- "line": 126,
+ "line": 120,
"column": 65
}
}
@@ -218531,52 +178428,34 @@
"type": "Line",
"value": "stores filters row element",
"range": [
- 4323,
- 4351
+ 4137,
+ 4165
],
"loc": {
"start": {
- "line": 128,
+ "line": 122,
"column": 8
},
"end": {
- "line": 128,
+ "line": 122,
"column": 36
}
}
},
- {
- "type": "Line",
- "value": "is first load boolean",
- "range": [
- 4391,
- 4414
- ],
- "loc": {
- "start": {
- "line": 130,
- "column": 8
- },
- "end": {
- "line": 130,
- "column": 31
- }
- }
- },
{
"type": "Line",
"value": "container div for paging elements, reset btn etc.",
"range": [
- 4456,
- 4507
+ 4205,
+ 4256
],
"loc": {
"start": {
- "line": 132,
+ "line": 124,
"column": 8
},
"end": {
- "line": 132,
+ "line": 124,
"column": 59
}
}
@@ -218585,16 +178464,16 @@
"type": "Line",
"value": "div for rows counter",
"range": [
- 4544,
- 4566
+ 4293,
+ 4315
],
"loc": {
"start": {
- "line": 134,
+ "line": 126,
"column": 8
},
"end": {
- "line": 134,
+ "line": 126,
"column": 30
}
}
@@ -218603,16 +178482,16 @@
"type": "Line",
"value": "div for reset button and results per page select",
"range": [
- 4601,
- 4651
+ 4350,
+ 4400
],
"loc": {
"start": {
- "line": 136,
+ "line": 128,
"column": 8
},
"end": {
- "line": 136,
+ "line": 128,
"column": 58
}
}
@@ -218621,16 +178500,16 @@
"type": "Line",
"value": "div for paging elements",
"range": [
- 4686,
- 4711
+ 4435,
+ 4460
],
"loc": {
"start": {
- "line": 138,
+ "line": 130,
"column": 8
},
"end": {
- "line": 138,
+ "line": 130,
"column": 33
}
}
@@ -218639,16 +178518,16 @@
"type": "Line",
"value": "defines css class for div containing paging elements, rows counter etc",
"range": [
- 4747,
- 4819
+ 4496,
+ 4568
],
"loc": {
"start": {
- "line": 141,
+ "line": 133,
"column": 8
},
"end": {
- "line": 141,
+ "line": 133,
"column": 80
}
}
@@ -218657,16 +178536,16 @@
"type": "Line",
"value": "defines css class for left div",
"range": [
- 4888,
- 4920
+ 4637,
+ 4669
],
"loc": {
"start": {
- "line": 143,
+ "line": 135,
"column": 8
},
"end": {
- "line": 143,
+ "line": 135,
"column": 40
}
}
@@ -218675,16 +178554,16 @@
"type": "Line",
"value": "defines css class for right div",
"range": [
- 4989,
- 5022
+ 4738,
+ 4771
],
"loc": {
"start": {
- "line": 145,
+ "line": 137,
"column": 8
},
"end": {
- "line": 145,
+ "line": 137,
"column": 41
}
}
@@ -218693,16 +178572,16 @@
"type": "Line",
"value": "defines css class for mid div",
"range": [
- 5093,
- 5124
+ 4842,
+ 4873
],
"loc": {
"start": {
- "line": 147,
+ "line": 139,
"column": 8
},
"end": {
- "line": 147,
+ "line": 139,
"column": 39
}
}
@@ -218711,16 +178590,16 @@
"type": "Line",
"value": "table container div css class",
"range": [
- 5195,
- 5226
+ 4944,
+ 4975
],
"loc": {
"start": {
- "line": 149,
+ "line": 141,
"column": 8
},
"end": {
- "line": 149,
+ "line": 141,
"column": 39
}
}
@@ -218729,16 +178608,16 @@
"type": "Block",
"value": "** filters' grid appearance **",
"range": [
- 5302,
- 5336
+ 5051,
+ 5085
],
"loc": {
"start": {
- "line": 152,
+ "line": 144,
"column": 8
},
"end": {
- "line": 152,
+ "line": 144,
"column": 42
}
}
@@ -218747,16 +178626,16 @@
"type": "Line",
"value": "stylesheet file",
"range": [
- 5345,
- 5362
+ 5094,
+ 5111
],
"loc": {
"start": {
- "line": 153,
+ "line": 145,
"column": 8
},
"end": {
- "line": 153,
+ "line": 145,
"column": 25
}
}
@@ -218765,16 +178644,16 @@
"type": "Line",
"value": "defines css class for filters row",
"range": [
- 5562,
- 5597
+ 5311,
+ 5346
],
"loc": {
"start": {
- "line": 157,
+ "line": 149,
"column": 8
},
"end": {
- "line": 157,
+ "line": 149,
"column": 43
}
}
@@ -218783,16 +178662,16 @@
"type": "Line",
"value": "enables/disables icons (paging, reset button)",
"range": [
- 5672,
- 5719
+ 5421,
+ 5468
],
"loc": {
"start": {
- "line": 159,
+ "line": 151,
"column": 9
},
"end": {
- "line": 159,
+ "line": 151,
"column": 56
}
}
@@ -218801,16 +178680,16 @@
"type": "Line",
"value": "enables/disbles rows alternating bg colors",
"range": [
- 5794,
- 5838
+ 5543,
+ 5587
],
"loc": {
"start": {
- "line": 161,
+ "line": 153,
"column": 8
},
"end": {
- "line": 161,
+ "line": 153,
"column": 52
}
}
@@ -218819,16 +178698,16 @@
"type": "Line",
"value": "defines widths of columns",
"range": [
- 5903,
- 5930
+ 5652,
+ 5679
],
"loc": {
"start": {
- "line": 163,
+ "line": 155,
"column": 8
},
"end": {
- "line": 163,
+ "line": 155,
"column": 35
}
}
@@ -218837,16 +178716,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6062,
- 6093
+ 5811,
+ 5842
],
"loc": {
"start": {
- "line": 166,
+ "line": 158,
"column": 8
},
"end": {
- "line": 166,
+ "line": 158,
"column": 39
}
}
@@ -218855,16 +178734,16 @@
"type": "Line",
"value": "defines css class for multiple selects filters",
"range": [
- 6155,
- 6203
+ 5904,
+ 5952
],
"loc": {
"start": {
- "line": 168,
+ "line": 160,
"column": 8
},
"end": {
- "line": 168,
+ "line": 160,
"column": 56
}
}
@@ -218873,16 +178752,16 @@
"type": "Line",
"value": "defines css class for filters",
"range": [
- 6282,
- 6313
+ 6031,
+ 6062
],
"loc": {
"start": {
- "line": 170,
+ "line": 162,
"column": 8
},
"end": {
- "line": 170,
+ "line": 162,
"column": 39
}
}
@@ -218891,16 +178770,16 @@
"type": "Line",
"value": "defines css class for single-filter",
"range": [
- 6388,
- 6425
+ 6137,
+ 6174
],
"loc": {
"start": {
- "line": 172,
+ "line": 164,
"column": 8
},
"end": {
- "line": 172,
+ "line": 164,
"column": 45
}
}
@@ -218909,16 +178788,16 @@
"type": "Block",
"value": "** filters' grid behaviours **",
"range": [
- 6508,
- 6542
+ 6257,
+ 6291
],
"loc": {
"start": {
- "line": 175,
+ "line": 167,
"column": 8
},
"end": {
- "line": 175,
+ "line": 167,
"column": 42
}
}
@@ -218927,16 +178806,16 @@
"type": "Line",
"value": "enables/disables enter key",
"range": [
- 6551,
- 6579
+ 6300,
+ 6328
],
"loc": {
"start": {
- "line": 176,
+ "line": 168,
"column": 8
},
"end": {
- "line": 176,
+ "line": 168,
"column": 36
}
}
@@ -218945,16 +178824,16 @@
"type": "Line",
"value": "calls function before filtering starts",
"range": [
- 6648,
- 6688
+ 6397,
+ 6437
],
"loc": {
"start": {
- "line": 178,
+ "line": 170,
"column": 8
},
"end": {
- "line": 178,
+ "line": 170,
"column": 48
}
}
@@ -218963,16 +178842,16 @@
"type": "Line",
"value": "calls function after filtering",
"range": [
- 6799,
- 6831
+ 6548,
+ 6580
],
"loc": {
"start": {
- "line": 181,
+ "line": 173,
"column": 8
},
"end": {
- "line": 181,
+ "line": 173,
"column": 40
}
}
@@ -218981,16 +178860,16 @@
"type": "Line",
"value": "enables/disables case sensitivity",
"range": [
- 6939,
- 6974
+ 6688,
+ 6723
],
"loc": {
"start": {
- "line": 184,
+ "line": 176,
"column": 8
},
"end": {
- "line": 184,
+ "line": 176,
"column": 43
}
}
@@ -218999,16 +178878,16 @@
"type": "Line",
"value": "has exact match per column",
"range": [
- 7039,
- 7067
+ 6788,
+ 6816
],
"loc": {
"start": {
- "line": 186,
+ "line": 178,
"column": 8
},
"end": {
- "line": 186,
+ "line": 178,
"column": 36
}
}
@@ -219017,16 +178896,16 @@
"type": "Line",
"value": "enables/disbles exact match for search",
"range": [
- 7245,
- 7285
+ 6994,
+ 7034
],
"loc": {
"start": {
- "line": 190,
+ "line": 182,
"column": 8
},
"end": {
- "line": 190,
+ "line": 182,
"column": 48
}
}
@@ -219035,16 +178914,16 @@
"type": "Line",
"value": "refreshes drop-down lists upon validation",
"range": [
- 7344,
- 7387
+ 7093,
+ 7136
],
"loc": {
"start": {
- "line": 192,
+ "line": 184,
"column": 8
},
"end": {
- "line": 192,
+ "line": 184,
"column": 51
}
}
@@ -219053,16 +178932,16 @@
"type": "Line",
"value": "wheter excluded options are disabled",
"range": [
- 7452,
- 7490
+ 7201,
+ 7239
],
"loc": {
"start": {
- "line": 194,
+ "line": 186,
"column": 8
},
"end": {
- "line": 194,
+ "line": 186,
"column": 46
}
}
@@ -219071,16 +178950,16 @@
"type": "Line",
"value": "stores active filter element",
"range": [
- 7574,
- 7604
+ 7323,
+ 7353
],
"loc": {
"start": {
- "line": 196,
+ "line": 188,
"column": 8
},
"end": {
- "line": 196,
+ "line": 188,
"column": 38
}
}
@@ -219089,16 +178968,16 @@
"type": "Line",
"value": "id of active filter",
"range": [
- 7644,
- 7665
+ 7393,
+ 7414
],
"loc": {
"start": {
- "line": 198,
+ "line": 190,
"column": 8
},
"end": {
- "line": 198,
+ "line": 190,
"column": 29
}
}
@@ -219107,16 +178986,16 @@
"type": "Line",
"value": "enables always visible rows",
"range": [
- 7710,
- 7739
+ 7459,
+ 7488
],
"loc": {
"start": {
- "line": 200,
+ "line": 192,
"column": 8
},
"end": {
- "line": 200,
+ "line": 192,
"column": 37
}
}
@@ -219125,16 +179004,16 @@
"type": "Line",
"value": "array containing always visible rows",
"range": [
- 7810,
- 7848
+ 7559,
+ 7597
],
"loc": {
"start": {
- "line": 202,
+ "line": 194,
"column": 8
},
"end": {
- "line": 202,
+ "line": 194,
"column": 46
}
}
@@ -219143,16 +179022,16 @@
"type": "Line",
"value": "enables/disables external filters generation",
"range": [
- 7934,
- 7980
+ 7683,
+ 7729
],
"loc": {
"start": {
- "line": 204,
+ "line": 196,
"column": 8
},
"end": {
- "line": 204,
+ "line": 196,
"column": 54
}
}
@@ -219161,16 +179040,16 @@
"type": "Line",
"value": "array containing ids of external elements containing filters",
"range": [
- 8048,
- 8110
+ 7797,
+ 7859
],
"loc": {
"start": {
- "line": 206,
+ "line": 198,
"column": 8
},
"end": {
- "line": 206,
+ "line": 198,
"column": 70
}
}
@@ -219179,16 +179058,16 @@
"type": "Line",
"value": "stores filters elements if isExternalFlt is true",
"range": [
- 8185,
- 8235
+ 7932,
+ 7982
],
"loc": {
"start": {
- "line": 208,
+ "line": 200,
"column": 8
},
"end": {
- "line": 208,
+ "line": 200,
"column": 58
}
}
@@ -219197,16 +179076,16 @@
"type": "Line",
"value": "delays any filtering process if loader true",
"range": [
- 8278,
- 8323
+ 8025,
+ 8070
],
"loc": {
"start": {
- "line": 210,
+ "line": 202,
"column": 8
},
"end": {
- "line": 210,
+ "line": 202,
"column": 53
}
}
@@ -219215,16 +179094,16 @@
"type": "Line",
"value": "calls function when filters grid loaded",
"range": [
- 8413,
- 8454
+ 8160,
+ 8201
],
"loc": {
"start": {
- "line": 212,
+ "line": 204,
"column": 8
},
"end": {
- "line": 212,
+ "line": 204,
"column": 49
}
}
@@ -219233,16 +179112,16 @@
"type": "Line",
"value": "enables/disables single filter search",
"range": [
- 8568,
- 8607
+ 8315,
+ 8354
],
"loc": {
"start": {
- "line": 215,
+ "line": 207,
"column": 8
},
"end": {
- "line": 215,
+ "line": 207,
"column": 47
}
}
@@ -219251,16 +179130,16 @@
"type": "Line",
"value": "calls function after row is validated",
"range": [
- 8673,
- 8712
+ 8420,
+ 8459
],
"loc": {
"start": {
- "line": 217,
+ "line": 209,
"column": 8
},
"end": {
- "line": 217,
+ "line": 209,
"column": 47
}
}
@@ -219269,16 +179148,16 @@
"type": "Line",
"value": "array defining columns for customCellData event",
"range": [
- 8823,
- 8872
+ 8570,
+ 8619
],
"loc": {
"start": {
- "line": 220,
+ "line": 212,
"column": 8
},
"end": {
- "line": 220,
+ "line": 212,
"column": 57
}
}
@@ -219287,16 +179166,16 @@
"type": "Line",
"value": "calls custom function for retrieving cell data",
"range": [
- 8983,
- 9031
+ 8730,
+ 8778
],
"loc": {
"start": {
- "line": 223,
+ "line": 215,
"column": 8
},
"end": {
- "line": 223,
+ "line": 215,
"column": 56
}
}
@@ -219305,16 +179184,16 @@
"type": "Line",
"value": "input watermark text array",
"range": [
- 9142,
- 9170
+ 8889,
+ 8917
],
"loc": {
"start": {
- "line": 226,
+ "line": 218,
"column": 8
},
"end": {
- "line": 226,
+ "line": 218,
"column": 36
}
}
@@ -219323,16 +179202,16 @@
"type": "Line",
"value": "id of toolbar container element",
"range": [
- 9286,
- 9319
+ 9033,
+ 9066
],
"loc": {
"start": {
- "line": 229,
+ "line": 221,
"column": 8
},
"end": {
- "line": 229,
+ "line": 221,
"column": 41
}
}
@@ -219341,16 +179220,16 @@
"type": "Line",
"value": "enables/disables help div",
"range": [
- 9385,
- 9412
+ 9132,
+ 9159
],
"loc": {
"start": {
- "line": 231,
+ "line": 223,
"column": 8
},
"end": {
- "line": 231,
+ "line": 223,
"column": 35
}
}
@@ -219359,16 +179238,16 @@
"type": "Line",
"value": "popup filters",
"range": [
- 9532,
- 9547
+ 9279,
+ 9294
],
"loc": {
"start": {
- "line": 234,
+ "line": 226,
"column": 8
},
"end": {
- "line": 234,
+ "line": 226,
"column": 23
}
}
@@ -219377,16 +179256,16 @@
"type": "Line",
"value": "active columns color",
"range": [
- 9610,
- 9632
+ 9357,
+ 9379
],
"loc": {
"start": {
- "line": 236,
+ "line": 228,
"column": 8
},
"end": {
- "line": 236,
+ "line": 228,
"column": 30
}
}
@@ -219395,16 +179274,16 @@
"type": "Line",
"value": "defines css class for active column header",
"range": [
- 9706,
- 9750
+ 9453,
+ 9497
],
"loc": {
"start": {
- "line": 238,
+ "line": 230,
"column": 8
},
"end": {
- "line": 238,
+ "line": 230,
"column": 52
}
}
@@ -219413,16 +179292,16 @@
"type": "Line",
"value": "calls function before active column header is marked",
"range": [
- 9854,
- 9908
+ 9601,
+ 9655
],
"loc": {
"start": {
- "line": 241,
+ "line": 233,
"column": 8
},
"end": {
- "line": 241,
+ "line": 233,
"column": 62
}
}
@@ -219431,16 +179310,16 @@
"type": "Line",
"value": "calls function after active column header is marked",
"range": [
- 10039,
- 10092
+ 9786,
+ 9839
],
"loc": {
"start": {
- "line": 244,
+ "line": 236,
"column": 8
},
"end": {
- "line": 244,
+ "line": 236,
"column": 61
}
}
@@ -219449,16 +179328,16 @@
"type": "Block",
"value": "** select filter's customisation and behaviours **",
"range": [
- 10221,
- 10275
+ 9968,
+ 10022
],
"loc": {
"start": {
- "line": 248,
+ "line": 240,
"column": 8
},
"end": {
- "line": 248,
+ "line": 240,
"column": 62
}
}
@@ -219467,16 +179346,16 @@
"type": "Line",
"value": "defines 1st option text",
"range": [
- 10284,
- 10309
+ 10031,
+ 10056
],
"loc": {
"start": {
- "line": 249,
+ "line": 241,
"column": 8
},
"end": {
- "line": 249,
+ "line": 241,
"column": 33
}
}
@@ -219485,16 +179364,16 @@
"type": "Line",
"value": "enables/disables empty option in combo-box filters",
"range": [
- 10379,
- 10431
+ 10126,
+ 10178
],
"loc": {
"start": {
- "line": 251,
+ "line": 243,
"column": 8
},
"end": {
- "line": 251,
+ "line": 243,
"column": 60
}
}
@@ -219503,16 +179382,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10505,
- 10532
+ 10252,
+ 10279
],
"loc": {
"start": {
- "line": 253,
+ "line": 245,
"column": 8
},
"end": {
- "line": 253,
+ "line": 245,
"column": 35
}
}
@@ -219521,16 +179400,16 @@
"type": "Line",
"value": "enables/disables non empty option in combo-box filters",
"range": [
- 10593,
- 10649
+ 10340,
+ 10396
],
"loc": {
"start": {
- "line": 255,
+ "line": 247,
"column": 8
},
"end": {
- "line": 255,
+ "line": 247,
"column": 64
}
}
@@ -219539,16 +179418,16 @@
"type": "Line",
"value": "defines empty option text",
"range": [
- 10730,
- 10757
+ 10477,
+ 10504
],
"loc": {
"start": {
- "line": 257,
+ "line": 249,
"column": 8
},
"end": {
- "line": 257,
+ "line": 249,
"column": 35
}
}
@@ -219557,16 +179436,16 @@
"type": "Line",
"value": "enables/disables onChange event on combo-box",
"range": [
- 10829,
- 10875
+ 10576,
+ 10622
],
"loc": {
"start": {
- "line": 259,
+ "line": 251,
"column": 8
},
"end": {
- "line": 259,
+ "line": 251,
"column": 54
}
}
@@ -219575,16 +179454,16 @@
"type": "Line",
"value": "enables/disables select options sorting",
"range": [
- 10947,
- 10988
+ 10694,
+ 10735
],
"loc": {
"start": {
- "line": 261,
+ "line": 253,
"column": 8
},
"end": {
- "line": 261,
+ "line": 253,
"column": 49
}
}
@@ -219593,16 +179472,16 @@
"type": "Line",
"value": "enables/disables ascending numeric options sorting",
"range": [
- 11058,
- 11110
+ 10805,
+ 10857
],
"loc": {
"start": {
- "line": 263,
+ "line": 255,
"column": 8
},
"end": {
- "line": 263,
+ "line": 255,
"column": 60
}
}
@@ -219611,16 +179490,16 @@
"type": "Line",
"value": "enables/disables descending numeric options sorting",
"range": [
- 11241,
- 11294
+ 10988,
+ 11041
],
"loc": {
"start": {
- "line": 266,
+ "line": 258,
"column": 8
},
"end": {
- "line": 266,
+ "line": 258,
"column": 61
}
}
@@ -219629,16 +179508,16 @@
"type": "Line",
"value": "Select filters are populated on demand",
"range": [
- 11430,
- 11470
+ 11177,
+ 11217
],
"loc": {
"start": {
- "line": 269,
+ "line": 261,
"column": 8
},
"end": {
- "line": 269,
+ "line": 261,
"column": 48
}
}
@@ -219647,16 +179526,16 @@
"type": "Block",
"value": "** Filter operators **",
"range": [
- 11656,
- 11682
+ 11403,
+ 11429
],
"loc": {
"start": {
- "line": 274,
+ "line": 266,
"column": 8
},
"end": {
- "line": 274,
+ "line": 266,
"column": 34
}
}
@@ -219665,16 +179544,16 @@
"type": "Block",
"value": "** rows counter **",
"range": [
- 12546,
- 12568
+ 12293,
+ 12315
],
"loc": {
"start": {
- "line": 292,
+ "line": 284,
"column": 8
},
"end": {
- "line": 292,
+ "line": 284,
"column": 30
}
}
@@ -219683,16 +179562,16 @@
"type": "Line",
"value": "show/hides rows counter",
"range": [
- 12577,
- 12602
+ 12324,
+ 12349
],
"loc": {
"start": {
- "line": 293,
+ "line": 285,
"column": 8
},
"end": {
- "line": 293,
+ "line": 285,
"column": 33
}
}
@@ -219701,16 +179580,16 @@
"type": "Block",
"value": "** status bar **",
"range": [
- 12664,
- 12684
+ 12411,
+ 12431
],
"loc": {
"start": {
- "line": 296,
+ "line": 288,
"column": 8
},
"end": {
- "line": 296,
+ "line": 288,
"column": 28
}
}
@@ -219719,16 +179598,16 @@
"type": "Line",
"value": "show/hides status bar",
"range": [
- 12693,
- 12716
+ 12440,
+ 12463
],
"loc": {
"start": {
- "line": 297,
+ "line": 289,
"column": 8
},
"end": {
- "line": 297,
+ "line": 289,
"column": 31
}
}
@@ -219737,16 +179616,16 @@
"type": "Block",
"value": "** loader **",
"range": [
- 12774,
- 12790
+ 12521,
+ 12537
],
"loc": {
"start": {
- "line": 300,
+ "line": 292,
"column": 8
},
"end": {
- "line": 300,
+ "line": 292,
"column": 24
}
}
@@ -219755,16 +179634,16 @@
"type": "Line",
"value": "enables/disables loader/spinner indicator",
"range": [
- 12799,
- 12842
+ 12546,
+ 12589
],
"loc": {
"start": {
- "line": 301,
+ "line": 293,
"column": 8
},
"end": {
- "line": 301,
+ "line": 293,
"column": 51
}
}
@@ -219773,16 +179652,16 @@
"type": "Block",
"value": "** validation - reset buttons/links **",
"range": [
- 12893,
- 12935
+ 12640,
+ 12682
],
"loc": {
"start": {
- "line": 304,
+ "line": 296,
"column": 8
},
"end": {
- "line": 304,
+ "line": 296,
"column": 50
}
}
@@ -219791,16 +179670,16 @@
"type": "Line",
"value": "show/hides filter's validation button",
"range": [
- 12944,
- 12983
+ 12691,
+ 12730
],
"loc": {
"start": {
- "line": 305,
+ "line": 297,
"column": 8
},
"end": {
- "line": 305,
+ "line": 297,
"column": 47
}
}
@@ -219809,16 +179688,16 @@
"type": "Line",
"value": "defines validation button text",
"range": [
- 13034,
- 13066
+ 12781,
+ 12813
],
"loc": {
"start": {
- "line": 307,
+ "line": 299,
"column": 8
},
"end": {
- "line": 307,
+ "line": 299,
"column": 40
}
}
@@ -219827,16 +179706,16 @@
"type": "Line",
"value": "defines css class for validation button",
"range": [
- 13145,
- 13186
+ 12892,
+ 12933
],
"loc": {
"start": {
- "line": 309,
+ "line": 301,
"column": 8
},
"end": {
- "line": 309,
+ "line": 301,
"column": 49
}
}
@@ -219845,16 +179724,16 @@
"type": "Line",
"value": "show/hides reset link",
"range": [
- 13301,
- 13324
+ 13048,
+ 13071
],
"loc": {
"start": {
- "line": 312,
+ "line": 304,
"column": 8
},
"end": {
- "line": 312,
+ "line": 304,
"column": 31
}
}
@@ -219863,16 +179742,16 @@
"type": "Line",
"value": "defines css class for reset button",
"range": [
- 13379,
- 13415
+ 13126,
+ 13162
],
"loc": {
"start": {
- "line": 314,
+ "line": 306,
"column": 8
},
"end": {
- "line": 314,
+ "line": 306,
"column": 44
}
}
@@ -219881,16 +179760,16 @@
"type": "Line",
"value": "callback function before filters are cleared",
"range": [
- 13490,
- 13536
+ 13237,
+ 13283
],
"loc": {
"start": {
- "line": 316,
+ "line": 308,
"column": 8
},
"end": {
- "line": 316,
+ "line": 308,
"column": 54
}
}
@@ -219899,16 +179778,16 @@
"type": "Line",
"value": "callback function after filters are cleared",
"range": [
- 13644,
- 13689
+ 13391,
+ 13436
],
"loc": {
"start": {
- "line": 319,
+ "line": 311,
"column": 8
},
"end": {
- "line": 319,
+ "line": 311,
"column": 53
}
}
@@ -219917,16 +179796,16 @@
"type": "Block",
"value": "** paging **",
"range": [
- 13795,
- 13811
+ 13542,
+ 13558
],
"loc": {
"start": {
- "line": 323,
+ "line": 315,
"column": 8
},
"end": {
- "line": 323,
+ "line": 315,
"column": 24
}
}
@@ -219935,16 +179814,16 @@
"type": "Line",
"value": "enables/disables table paging",
"range": [
- 13820,
- 13851
+ 13567,
+ 13598
],
"loc": {
"start": {
- "line": 324,
+ "line": 316,
"column": 8
},
"end": {
- "line": 324,
+ "line": 316,
"column": 39
}
}
@@ -219953,16 +179832,16 @@
"type": "Line",
"value": "nb visible rows",
"range": [
- 13925,
- 13942
+ 13672,
+ 13689
],
"loc": {
"start": {
- "line": 326,
+ "line": 318,
"column": 32
},
"end": {
- "line": 326,
+ "line": 318,
"column": 49
}
}
@@ -219971,16 +179850,16 @@
"type": "Line",
"value": "nb hidden rows",
"range": [
- 13974,
- 13990
+ 13721,
+ 13737
],
"loc": {
"start": {
- "line": 327,
+ "line": 319,
"column": 31
},
"end": {
- "line": 327,
+ "line": 319,
"column": 47
}
}
@@ -219989,16 +179868,16 @@
"type": "Block",
"value": "** autofilter on typing **",
"range": [
- 14000,
- 14030
+ 13747,
+ 13777
],
"loc": {
"start": {
- "line": 329,
+ "line": 321,
"column": 8
},
"end": {
- "line": 329,
+ "line": 321,
"column": 38
}
}
@@ -220007,16 +179886,16 @@
"type": "Line",
"value": "enables/disables auto filtering, table is filtered when user stops",
"range": [
- 14039,
- 14107
+ 13786,
+ 13854
],
"loc": {
"start": {
- "line": 330,
+ "line": 322,
"column": 8
},
"end": {
- "line": 330,
+ "line": 322,
"column": 76
}
}
@@ -220025,16 +179904,16 @@
"type": "Line",
"value": "typing",
"range": [
- 14116,
- 14124
+ 13863,
+ 13871
],
"loc": {
"start": {
- "line": 331,
+ "line": 323,
"column": 8
},
"end": {
- "line": 331,
+ "line": 323,
"column": 16
}
}
@@ -220043,16 +179922,16 @@
"type": "Line",
"value": "onkeyup delay timer (msecs)",
"range": [
- 14183,
- 14212
+ 13930,
+ 13959
],
"loc": {
"start": {
- "line": 333,
+ "line": 325,
"column": 8
},
"end": {
- "line": 333,
+ "line": 325,
"column": 37
}
}
@@ -220061,16 +179940,16 @@
"type": "Line",
"value": "typing indicator",
"range": [
- 14321,
- 14339
+ 14068,
+ 14086
],
"loc": {
"start": {
- "line": 336,
+ "line": 328,
"column": 8
},
"end": {
- "line": 336,
+ "line": 328,
"column": 26
}
}
@@ -220079,16 +179958,16 @@
"type": "Block",
"value": "** keyword highlighting **",
"range": [
- 14420,
- 14450
+ 14167,
+ 14197
],
"loc": {
"start": {
- "line": 340,
+ "line": 332,
"column": 8
},
"end": {
- "line": 340,
+ "line": 332,
"column": 38
}
}
@@ -220097,16 +179976,16 @@
"type": "Line",
"value": "enables/disables keyword highlighting",
"range": [
- 14459,
- 14498
+ 14206,
+ 14245
],
"loc": {
"start": {
- "line": 341,
+ "line": 333,
"column": 8
},
"end": {
- "line": 341,
+ "line": 333,
"column": 47
}
}
@@ -220115,16 +179994,16 @@
"type": "Block",
"value": "** No results feature **",
"range": [
- 14572,
- 14600
+ 14319,
+ 14347
],
"loc": {
"start": {
- "line": 344,
+ "line": 336,
"column": 8
},
"end": {
- "line": 344,
+ "line": 336,
"column": 36
}
}
@@ -220133,16 +180012,16 @@
"type": "Block",
"value": "** data types **",
"range": [
- 14715,
- 14735
+ 14462,
+ 14482
],
"loc": {
"start": {
- "line": 348,
+ "line": 340,
"column": 8
},
"end": {
- "line": 348,
+ "line": 340,
"column": 28
}
}
@@ -220151,16 +180030,16 @@
"type": "Line",
"value": "defines default date type (european DMY)",
"range": [
- 14744,
- 14786
+ 14491,
+ 14533
],
"loc": {
"start": {
- "line": 349,
+ "line": 341,
"column": 8
},
"end": {
- "line": 349,
+ "line": 341,
"column": 50
}
}
@@ -220169,16 +180048,16 @@
"type": "Line",
"value": "defines default thousands separator",
"range": [
- 14856,
- 14893
+ 14603,
+ 14640
],
"loc": {
"start": {
- "line": 351,
+ "line": 343,
"column": 8
},
"end": {
- "line": 351,
+ "line": 343,
"column": 45
}
}
@@ -220187,16 +180066,16 @@
"type": "Line",
"value": "US = ',' EU = '.'",
"range": [
- 14902,
- 14921
+ 14649,
+ 14668
],
"loc": {
"start": {
- "line": 352,
+ "line": 344,
"column": 8
},
"end": {
- "line": 352,
+ "line": 344,
"column": 27
}
}
@@ -220205,16 +180084,16 @@
"type": "Line",
"value": "defines default decimal separator",
"range": [
- 14994,
- 15029
+ 14741,
+ 14776
],
"loc": {
"start": {
- "line": 354,
+ "line": 346,
"column": 8
},
"end": {
- "line": 354,
+ "line": 346,
"column": 43
}
}
@@ -220223,16 +180102,16 @@
"type": "Line",
"value": "US & javascript = '.' EU = ','",
"range": [
- 15038,
- 15070
+ 14785,
+ 14817
],
"loc": {
"start": {
- "line": 355,
+ "line": 347,
"column": 8
},
"end": {
- "line": 355,
+ "line": 347,
"column": 40
}
}
@@ -220241,16 +180120,16 @@
"type": "Line",
"value": "enables number format per column",
"range": [
- 15139,
- 15173
+ 14886,
+ 14920
],
"loc": {
"start": {
- "line": 357,
+ "line": 349,
"column": 8
},
"end": {
- "line": 357,
+ "line": 349,
"column": 42
}
}
@@ -220259,16 +180138,16 @@
"type": "Line",
"value": "array containing columns nb formats",
"range": [
- 15248,
- 15285
+ 14995,
+ 15032
],
"loc": {
"start": {
- "line": 359,
+ "line": 351,
"column": 8
},
"end": {
- "line": 359,
+ "line": 351,
"column": 45
}
}
@@ -220277,16 +180156,16 @@
"type": "Line",
"value": "enables date type per column",
"range": [
- 15371,
- 15401
+ 15118,
+ 15148
],
"loc": {
"start": {
- "line": 361,
+ "line": 353,
"column": 8
},
"end": {
- "line": 361,
+ "line": 353,
"column": 38
}
}
@@ -220295,268 +180174,34 @@
"type": "Line",
"value": "array containing columns date type",
"range": [
- 15472,
- 15508
+ 15219,
+ 15255
],
"loc": {
"start": {
- "line": 363,
+ "line": 355,
"column": 8
},
"end": {
- "line": 363,
+ "line": 355,
"column": 44
}
}
},
- {
- "type": "Block",
- "value": "** status messages **",
- "range": [
- 15591,
- 15616
- ],
- "loc": {
- "start": {
- "line": 366,
- "column": 8
- },
- "end": {
- "line": 366,
- "column": 33
- }
- }
- },
- {
- "type": "Line",
- "value": "filtering",
- "range": [
- 15625,
- 15636
- ],
- "loc": {
- "start": {
- "line": 367,
- "column": 8
- },
- "end": {
- "line": 367,
- "column": 19
- }
- }
- },
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15707,
- 15730
- ],
- "loc": {
- "start": {
- "line": 369,
- "column": 8
- },
- "end": {
- "line": 369,
- "column": 31
- }
- }
- },
- {
- "type": "Line",
- "value": "populating drop-downs",
- "range": [
- 15808,
- 15831
- ],
- "loc": {
- "start": {
- "line": 371,
- "column": 8
- },
- "end": {
- "line": 371,
- "column": 31
- }
- }
- },
- {
- "type": "Line",
- "value": "changing paging page",
- "range": [
- 15938,
- 15960
- ],
- "loc": {
- "start": {
- "line": 374,
- "column": 8
- },
- "end": {
- "line": 374,
- "column": 30
- }
- }
- },
- {
- "type": "Line",
- "value": "clearing filters",
- "range": [
- 16048,
- 16066
- ],
- "loc": {
- "start": {
- "line": 376,
- "column": 8
- },
- "end": {
- "line": 376,
- "column": 26
- }
- }
- },
- {
- "type": "Line",
- "value": "changing nb results/page",
- "range": [
- 16137,
- 16163
- ],
- "loc": {
- "start": {
- "line": 378,
- "column": 8
- },
- "end": {
- "line": 378,
- "column": 34
- }
- }
- },
- {
- "type": "Line",
- "value": "re-setting grid values",
- "range": [
- 16272,
- 16296
- ],
- "loc": {
- "start": {
- "line": 381,
- "column": 8
- },
- "end": {
- "line": 381,
- "column": 32
- }
- }
- },
- {
- "type": "Line",
- "value": "re-setting page",
- "range": [
- 16406,
- 16423
- ],
- "loc": {
- "start": {
- "line": 384,
- "column": 8
- },
- "end": {
- "line": 384,
- "column": 25
- }
- }
- },
- {
- "type": "Line",
- "value": "re-setting page length",
- "range": [
- 16502,
- 16526
- ],
- "loc": {
- "start": {
- "line": 386,
- "column": 8
- },
- "end": {
- "line": 386,
- "column": 32
- }
- }
- },
- {
- "type": "Line",
- "value": "table sorting",
- "range": [
- 16637,
- 16652
- ],
- "loc": {
- "start": {
- "line": 389,
- "column": 8
- },
- "end": {
- "line": 389,
- "column": 23
- }
- }
- },
- {
- "type": "Line",
- "value": "extensions loading",
- "range": [
- 16717,
- 16737
- ],
- "loc": {
- "start": {
- "line": 391,
- "column": 8
- },
- "end": {
- "line": 391,
- "column": 28
- }
- }
- },
- {
- "type": "Line",
- "value": "themes loading",
- "range": [
- 16841,
- 16857
- ],
- "loc": {
- "start": {
- "line": 394,
- "column": 8
- },
- "end": {
- "line": 394,
- "column": 24
- }
- }
- },
{
"type": "Block",
"value": "** ids prefixes **",
"range": [
- 16940,
- 16962
+ 15338,
+ 15360
],
"loc": {
"start": {
- "line": 397,
+ "line": 358,
"column": 8
},
"end": {
- "line": 397,
+ "line": 358,
"column": 30
}
}
@@ -220565,16 +180210,16 @@
"type": "Line",
"value": "css class name added to table",
"range": [
- 16971,
- 17002
+ 15369,
+ 15400
],
"loc": {
"start": {
- "line": 398,
+ "line": 359,
"column": 8
},
"end": {
- "line": 398,
+ "line": 359,
"column": 39
}
}
@@ -220583,16 +180228,16 @@
"type": "Line",
"value": "filters (inputs - selects)",
"range": [
- 17039,
- 17067
+ 15437,
+ 15465
],
"loc": {
"start": {
- "line": 400,
+ "line": 361,
"column": 8
},
"end": {
- "line": 400,
+ "line": 361,
"column": 36
}
}
@@ -220601,16 +180246,16 @@
"type": "Line",
"value": "validation button",
"range": [
- 17106,
- 17125
+ 15504,
+ 15523
],
"loc": {
"start": {
- "line": 402,
+ "line": 363,
"column": 8
},
"end": {
- "line": 402,
+ "line": 363,
"column": 27
}
}
@@ -220619,16 +180264,16 @@
"type": "Line",
"value": "container div for paging elements, rows counter etc.",
"range": [
- 17170,
- 17224
+ 15568,
+ 15622
],
"loc": {
"start": {
- "line": 404,
+ "line": 365,
"column": 8
},
"end": {
- "line": 404,
+ "line": 365,
"column": 62
}
}
@@ -220637,16 +180282,16 @@
"type": "Line",
"value": "left div",
"range": [
- 17267,
- 17277
+ 15665,
+ 15675
],
"loc": {
"start": {
- "line": 406,
+ "line": 367,
"column": 8
},
"end": {
- "line": 406,
+ "line": 367,
"column": 18
}
}
@@ -220655,16 +180300,16 @@
"type": "Line",
"value": "right div",
"range": [
- 17319,
- 17330
+ 15717,
+ 15728
],
"loc": {
"start": {
- "line": 408,
+ "line": 369,
"column": 8
},
"end": {
- "line": 408,
+ "line": 369,
"column": 19
}
}
@@ -220673,16 +180318,16 @@
"type": "Line",
"value": "middle div",
"range": [
- 17372,
- 17384
+ 15770,
+ 15782
],
"loc": {
"start": {
- "line": 410,
+ "line": 371,
"column": 8
},
"end": {
- "line": 410,
+ "line": 371,
"column": 20
}
}
@@ -220691,16 +180336,16 @@
"type": "Line",
"value": "filter values cookie",
"range": [
- 17426,
- 17448
+ 15824,
+ 15846
],
"loc": {
"start": {
- "line": 412,
+ "line": 373,
"column": 8
},
"end": {
- "line": 412,
+ "line": 373,
"column": 30
}
}
@@ -220709,16 +180354,16 @@
"type": "Line",
"value": "page nb cookie",
"range": [
- 17505,
- 17521
+ 15903,
+ 15919
],
"loc": {
"start": {
- "line": 414,
+ "line": 375,
"column": 8
},
"end": {
- "line": 414,
+ "line": 375,
"column": 24
}
}
@@ -220727,16 +180372,16 @@
"type": "Line",
"value": "page length cookie",
"range": [
- 17574,
- 17594
+ 15972,
+ 15992
],
"loc": {
"start": {
- "line": 416,
+ "line": 377,
"column": 8
},
"end": {
- "line": 416,
+ "line": 377,
"column": 28
}
}
@@ -220745,16 +180390,16 @@
"type": "Block",
"value": "** cookies **",
"range": [
- 17650,
- 17667
+ 16048,
+ 16065
],
"loc": {
"start": {
- "line": 419,
+ "line": 380,
"column": 8
},
"end": {
- "line": 419,
+ "line": 380,
"column": 25
}
}
@@ -220763,16 +180408,16 @@
"type": "Line",
"value": "remembers filters values on page load",
"range": [
- 17714,
- 17753
+ 16074,
+ 16113
],
"loc": {
"start": {
- "line": 421,
+ "line": 381,
"column": 8
},
"end": {
- "line": 421,
+ "line": 381,
"column": 47
}
}
@@ -220781,16 +180426,16 @@
"type": "Line",
"value": "cookie storing filter values",
"range": [
- 17829,
- 17859
+ 16189,
+ 16219
],
"loc": {
"start": {
- "line": 423,
+ "line": 383,
"column": 8
},
"end": {
- "line": 423,
+ "line": 383,
"column": 38
}
}
@@ -220799,16 +180444,16 @@
"type": "Line",
"value": "remembers page nb on page load",
"range": [
- 17937,
- 17969
+ 16297,
+ 16329
],
"loc": {
"start": {
- "line": 425,
+ "line": 385,
"column": 8
},
"end": {
- "line": 425,
+ "line": 385,
"column": 40
}
}
@@ -220817,16 +180462,16 @@
"type": "Line",
"value": "cookie storing page nb",
"range": [
- 18047,
- 18071
+ 16407,
+ 16431
],
"loc": {
"start": {
- "line": 427,
+ "line": 387,
"column": 8
},
"end": {
- "line": 427,
+ "line": 387,
"column": 32
}
}
@@ -220835,16 +180480,16 @@
"type": "Line",
"value": "remembers page length on page load",
"range": [
- 18139,
- 18175
+ 16499,
+ 16535
],
"loc": {
"start": {
- "line": 429,
+ "line": 389,
"column": 8
},
"end": {
- "line": 429,
+ "line": 389,
"column": 44
}
}
@@ -220853,16 +180498,16 @@
"type": "Line",
"value": "cookie storing page length",
"range": [
- 18254,
- 18282
+ 16614,
+ 16642
],
"loc": {
"start": {
- "line": 431,
+ "line": 391,
"column": 8
},
"end": {
- "line": 431,
+ "line": 391,
"column": 36
}
}
@@ -220871,16 +180516,16 @@
"type": "Block",
"value": "** extensions **",
"range": [
- 18353,
- 18373
+ 16713,
+ 16733
],
"loc": {
"start": {
- "line": 434,
+ "line": 394,
"column": 8
},
"end": {
- "line": 434,
+ "line": 394,
"column": 28
}
}
@@ -220889,16 +180534,16 @@
"type": "Line",
"value": "imports external script",
"range": [
- 18382,
- 18407
+ 16742,
+ 16767
],
"loc": {
"start": {
- "line": 435,
+ "line": 395,
"column": 8
},
"end": {
- "line": 435,
+ "line": 395,
"column": 33
}
}
@@ -220907,16 +180552,16 @@
"type": "Block",
"value": "** themes **",
"range": [
- 18518,
- 18534
+ 16878,
+ 16894
],
"loc": {
"start": {
- "line": 439,
+ "line": 399,
"column": 8
},
"end": {
- "line": 439,
+ "line": 399,
"column": 24
}
}
@@ -220925,16 +180570,16 @@
"type": "Line",
"value": "imports themes",
"range": [
- 18610,
- 18626
+ 16970,
+ 16986
],
"loc": {
"start": {
- "line": 441,
+ "line": 401,
"column": 8
},
"end": {
- "line": 441,
+ "line": 401,
"column": 24
}
}
@@ -220943,16 +180588,16 @@
"type": "Line",
"value": "themes path",
"range": [
- 18752,
- 18765
+ 17112,
+ 17125
],
"loc": {
"start": {
- "line": 444,
+ "line": 404,
"column": 8
},
"end": {
- "line": 444,
+ "line": 404,
"column": 21
}
}
@@ -220961,16 +180606,16 @@
"type": "Line",
"value": " Features registry",
"range": [
- 18846,
- 18866
+ 17206,
+ 17226
],
"loc": {
"start": {
- "line": 447,
+ "line": 407,
"column": 8
},
"end": {
- "line": 447,
+ "line": 407,
"column": 28
}
}
@@ -220979,16 +180624,16 @@
"type": "Line",
"value": " Extensions registry",
"range": [
- 18899,
- 18921
+ 17259,
+ 17281
],
"loc": {
"start": {
- "line": 450,
+ "line": 410,
"column": 8
},
"end": {
- "line": 450,
+ "line": 410,
"column": 30
}
}
@@ -220997,16 +180642,16 @@
"type": "Block",
"value": "** TF events **",
"range": [
- 18962,
- 18981
+ 17322,
+ 17341
],
"loc": {
"start": {
- "line": 453,
+ "line": 413,
"column": 8
},
"end": {
- "line": 453,
+ "line": 413,
"column": 27
}
}
@@ -221015,16 +180660,16 @@
"type": "Line",
"value": " Detect key",
"range": [
- 19519,
- 19540
+ 17375,
+ 17396
],
"loc": {
"start": {
- "line": 469,
+ "line": 415,
"column": 12
},
"end": {
- "line": 469,
+ "line": 415,
"column": 33
}
}
@@ -221033,16 +180678,16 @@
"type": "Line",
"value": " if auto-filter on, detect user is typing and filter columns",
"range": [
- 20158,
- 20220
+ 17961,
+ 18023
],
"loc": {
"start": {
- "line": 486,
+ "line": 431,
"column": 12
},
"end": {
- "line": 486,
+ "line": 431,
"column": 74
}
}
@@ -221051,16 +180696,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 20521,
- 20547
+ 18277,
+ 18303
],
"loc": {
"start": {
- "line": 496,
+ "line": 440,
"column": 20
},
"end": {
- "line": 496,
+ "line": 440,
"column": 46
}
}
@@ -221069,16 +180714,16 @@
"type": "Line",
"value": " if auto-filter on, detect user is typing",
"range": [
- 21310,
- 21353
+ 19066,
+ 19109
],
"loc": {
"start": {
- "line": 515,
+ "line": 459,
"column": 12
},
"end": {
- "line": 515,
+ "line": 459,
"column": 55
}
}
@@ -221087,196 +180732,52 @@
"type": "Line",
"value": " if auto-filter on, clear interval on filter blur",
"range": [
- 21498,
- 21549
+ 19254,
+ 19305
],
"loc": {
"start": {
- "line": 520,
+ "line": 464,
"column": 12
},
"end": {
- "line": 520,
+ "line": 464,
"column": 63
}
}
},
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 21758,
- 21820
- ],
- "loc": {
- "start": {
- "line": 526,
- "column": 16
- },
- "end": {
- "line": 526,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 21837,
- 21881
- ],
- "loc": {
- "start": {
- "line": 527,
- "column": 16
- },
- "end": {
- "line": 527,
- "column": 60
- }
- }
- },
{
"type": "Line",
"value": " set focused text-box filter as active",
"range": [
- 22350,
- 22390
+ 19581,
+ 19621
],
"loc": {
"start": {
- "line": 539,
+ "line": 472,
"column": 12
},
"end": {
- "line": 539,
+ "line": 472,
"column": 52
}
}
},
- {
- "type": "Line",
- "value": " TODO: hack to prevent ezEditTable enter key event hijaking.",
- "range": [
- 22782,
- 22844
- ],
- "loc": {
- "start": {
- "line": 549,
- "column": 16
- },
- "end": {
- "line": 549,
- "column": 78
- }
- }
- },
- {
- "type": "Line",
- "value": " Needs to be fixed in the vendor's library",
- "range": [
- 22861,
- 22905
- ],
- "loc": {
- "start": {
- "line": 550,
- "column": 16
- },
- "end": {
- "line": 550,
- "column": 60
- }
- }
- },
- {
- "type": "Line",
- "value": " set focused drop-down filter as active",
- "range": [
- 23380,
- 23421
- ],
- "loc": {
- "start": {
- "line": 562,
- "column": 12
- },
- "end": {
- "line": 562,
- "column": 53
- }
- }
- },
- {
- "type": "Line",
- "value": " select is populated when element has focus",
- "range": [
- 23680,
- 23725
- ],
- "loc": {
- "start": {
- "line": 568,
- "column": 16
- },
- "end": {
- "line": 568,
- "column": 61
- }
- }
- },
- {
- "type": "Line",
- "value": " filter columns on drop-down filter change",
- "range": [
- 24087,
- 24131
- ],
- "loc": {
- "start": {
- "line": 578,
- "column": 12
- },
- "end": {
- "line": 578,
- "column": 56
- }
- }
- },
- {
- "type": "Line",
- "value": " fill checklist filter on click if required",
- "range": [
- 24393,
- 24438
- ],
- "loc": {
- "start": {
- "line": 585,
- "column": 12
- },
- "end": {
- "line": 585,
- "column": 57
- }
- }
- },
{
"type": "Block",
- "value": "*\n * Initialise filtering grid bar behaviours and layout\n *\n * TODO: decompose in smaller methods\n ",
+ "value": "*\n * Initialise features and layout\n ",
"range": [
- 24941,
- 25060
+ 19910,
+ 19959
],
"loc": {
"start": {
- "line": 599,
+ "line": 482,
"column": 4
},
"end": {
- "line": 603,
+ "line": 484,
"column": 7
}
}
@@ -221285,16 +180786,16 @@
"type": "Line",
"value": "loads stylesheet if not imported",
"range": [
- 25603,
- 25637
+ 20146,
+ 20180
],
"loc": {
"start": {
- "line": 624,
+ "line": 494,
"column": 8
},
"end": {
- "line": 624,
+ "line": 494,
"column": 42
}
}
@@ -221303,53 +180804,71 @@
"type": "Line",
"value": "loads theme",
"range": [
- 25718,
- 25731
+ 20261,
+ 20274
],
"loc": {
"start": {
- "line": 627,
+ "line": 497,
"column": 8
},
"end": {
- "line": 627,
+ "line": 497,
"column": 21
}
}
},
+ {
+ "type": "Line",
+ "value": " Instantiate help feature and initialise only if set true",
+ "range": [
+ 20333,
+ 20392
+ ],
+ "loc": {
+ "start": {
+ "line": 500,
+ "column": 8
+ },
+ "end": {
+ "line": 500,
+ "column": 67
+ }
+ }
+ },
{
"type": "Line",
"value": "filters grid is not generated",
"range": [
- 26515,
- 26546
+ 21428,
+ 21459
],
"loc": {
"start": {
- "line": 658,
+ "line": 542,
"column": 8
},
"end": {
- "line": 658,
+ "line": 542,
"column": 39
}
}
},
{
"type": "Line",
- "value": " this loop adds filters",
+ "value": " Generate filters",
"range": [
- 28054,
- 28079
+ 21762,
+ 21781
],
"loc": {
"start": {
- "line": 698,
- "column": 39
+ "line": 552,
+ "column": 12
},
"end": {
- "line": 698,
- "column": 64
+ "line": 552,
+ "column": 31
}
}
},
@@ -221357,17 +180876,17 @@
"type": "Line",
"value": "only 1 input for single search",
"range": [
- 28883,
- 28915
+ 22347,
+ 22379
],
"loc": {
"start": {
- "line": 719,
- "column": 20
+ "line": 568,
+ "column": 16
},
"end": {
- "line": 719,
- "column": 52
+ "line": 568,
+ "column": 48
}
}
},
@@ -221375,71 +180894,17 @@
"type": "Line",
"value": "drop-down filters",
"range": [
- 29111,
- 29130
+ 22555,
+ 22574
],
"loc": {
"start": {
- "line": 725,
- "column": 20
+ "line": 574,
+ "column": 16
},
"end": {
- "line": 725,
- "column": 39
- }
- }
- },
- {
- "type": "Line",
- "value": "filter is appended in desired external element",
- "range": [
- 29986,
- 30034
- ],
- "loc": {
- "start": {
- "line": 744,
- "column": 24
- },
- "end": {
- "line": 744,
- "column": 72
- }
- }
- },
- {
- "type": "Line",
- "value": "1st option is created here since dropdown.build isn't",
- "range": [
- 30850,
- 30905
- ],
- "loc": {
- "start": {
- "line": 764,
- "column": 24
- },
- "end": {
- "line": 764,
- "column": 79
- }
- }
- },
- {
- "type": "Line",
- "value": "invoked",
- "range": [
- 30930,
- 30939
- ],
- "loc": {
- "start": {
- "line": 765,
- "column": 24
- },
- "end": {
- "line": 765,
- "column": 33
+ "line": 574,
+ "column": 35
}
}
},
@@ -221447,71 +180912,17 @@
"type": "Line",
"value": " checklist",
"range": [
- 31188,
- 31200
+ 22870,
+ 22882
],
"loc": {
"start": {
- "line": 771,
- "column": 20
+ "line": 581,
+ "column": 16
},
"end": {
- "line": 771,
- "column": 32
- }
- }
- },
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 31703,
- 31742
- ],
- "loc": {
- "start": {
- "line": 782,
- "column": 24
- },
- "end": {
- "line": 782,
- "column": 63
- }
- }
- },
- {
- "type": "Line",
- "value": "show/hide input",
- "range": [
- 32703,
- 32720
- ],
- "loc": {
- "start": {
- "line": 805,
- "column": 24
- },
- "end": {
- "line": 805,
- "column": 41
- }
- }
- },
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 33491,
- 33530
- ],
- "loc": {
- "start": {
- "line": 820,
- "column": 24
- },
- "end": {
- "line": 820,
- "column": 63
+ "line": 581,
+ "column": 28
}
}
},
@@ -221519,89 +180930,17 @@
"type": "Line",
"value": " this adds submit button",
"range": [
- 34688,
- 34714
+ 23258,
+ 23284
],
"loc": {
"start": {
- "line": 845,
- "column": 20
+ "line": 591,
+ "column": 16
},
"end": {
- "line": 845,
- "column": 46
- }
- }
- },
- {
- "type": "Line",
- "value": "filter is appended in desired element",
- "range": [
- 35055,
- 35094
- ],
- "loc": {
- "start": {
- "line": 852,
- "column": 24
- },
- "end": {
- "line": 852,
- "column": 63
- }
- }
- },
- {
- "type": "Line",
- "value": "if",
- "range": [
- 35415,
- 35419
- ],
- "loc": {
- "start": {
- "line": 860,
- "column": 21
- },
- "end": {
- "line": 860,
- "column": 25
- }
- }
- },
- {
- "type": "Line",
- "value": " for i",
- "range": [
- 35438,
- 35446
- ],
- "loc": {
- "start": {
- "line": 862,
- "column": 17
- },
- "end": {
- "line": 862,
- "column": 25
- }
- }
- },
- {
- "type": "Line",
- "value": "if isFirstLoad",
- "range": [
- 35517,
- 35533
- ],
- "loc": {
- "start": {
- "line": 866,
- "column": 13
- },
- "end": {
- "line": 866,
- "column": 29
+ "line": 591,
+ "column": 42
}
}
},
@@ -221609,16 +180948,16 @@
"type": "Line",
"value": "if this.fltGrid",
"range": [
- 35544,
- 35561
+ 23497,
+ 23514
],
"loc": {
"start": {
- "line": 868,
+ "line": 599,
"column": 9
},
"end": {
- "line": 868,
+ "line": 599,
"column": 26
}
}
@@ -221627,16 +180966,16 @@
"type": "Block",
"value": " Features ",
"range": [
- 35571,
- 35585
+ 23524,
+ 23538
],
"loc": {
"start": {
- "line": 870,
+ "line": 601,
"column": 8
},
"end": {
- "line": 870,
+ "line": 601,
"column": 22
}
}
@@ -221645,16 +180984,16 @@
"type": "Line",
"value": "TF css class is added to table",
"range": [
- 37010,
- 37042
+ 24874,
+ 24906
],
"loc": {
"start": {
- "line": 921,
+ "line": 648,
"column": 8
},
"end": {
- "line": 921,
+ "line": 648,
"column": 40
}
}
@@ -221663,53 +181002,143 @@
"type": "Block",
"value": " Loads extensions ",
"range": [
- 37214,
- 37236
+ 25005,
+ 25027
],
"loc": {
"start": {
- "line": 930,
+ "line": 653,
"column": 8
},
"end": {
- "line": 930,
+ "line": 653,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " Subscribe to events",
+ "range": [
+ 25114,
+ 25136
+ ],
+ "loc": {
+ "start": {
+ "line": 658,
+ "column": 8
+ },
+ "end": {
+ "line": 658,
"column": 30
}
}
},
{
"type": "Block",
- "value": "*\n * Manages state messages\n * @param {String} evt Event name\n * @param {Object} cfg Config object\n ",
+ "value": "*\n * Insert filters row at initialization\n ",
"range": [
- 37421,
- 37541
+ 25703,
+ 25758
],
"loc": {
"start": {
- "line": 940,
+ "line": 677,
"column": 4
},
"end": {
- "line": 944,
+ "line": 679,
"column": 7
}
}
},
{
"type": "Block",
- "value": "jshint validthis:true ",
+ "value": "*\n * Initialize filtersless table\n ",
"range": [
- 37854,
- 37880
+ 26450,
+ 26497
],
"loc": {
"start": {
- "line": 954,
- "column": 12
+ "line": 707,
+ "column": 4
},
"end": {
- "line": 954,
- "column": 38
+ "line": 709,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Build input filter type\n * @param {Number} colIndex Column index\n * @param {String} cssClass Css class applied to filter\n * @param {DOMElement} container Container DOM element\n ",
+ "range": [
+ 26807,
+ 27026
+ ],
+ "loc": {
+ "start": {
+ "line": 720,
+ "column": 4
+ },
+ "end": {
+ "line": 725,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 27810,
+ 27848
+ ],
+ "loc": {
+ "start": {
+ "line": 744,
+ "column": 8
+ },
+ "end": {
+ "line": 744,
+ "column": 46
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Build submit button\n * @param {Number} colIndex Column index\n * @param {DOMElement} container Container DOM element\n ",
+ "range": [
+ 28349,
+ 28498
+ ],
+ "loc": {
+ "start": {
+ "line": 760,
+ "column": 4
+ },
+ "end": {
+ "line": 764,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "filter is appended in custom element",
+ "range": [
+ 28865,
+ 28903
+ ],
+ "loc": {
+ "start": {
+ "line": 773,
+ "column": 8
+ },
+ "end": {
+ "line": 773,
+ "column": 46
}
}
},
@@ -221717,16 +181146,16 @@
"type": "Block",
"value": "*\n * Return a feature instance for a given name\n * @param {String} name Name of the feature\n * @return {Object}\n ",
"range": [
- 40027,
- 40161
+ 29120,
+ 29254
],
"loc": {
"start": {
- "line": 1020,
+ "line": 783,
"column": 4
},
"end": {
- "line": 1024,
+ "line": 787,
"column": 7
}
}
@@ -221735,53 +181164,71 @@
"type": "Block",
"value": "*\n * Initialise all the extensions defined in the configuration object\n ",
"range": [
- 40223,
- 40307
+ 29316,
+ 29400
],
"loc": {
"start": {
- "line": 1029,
+ "line": 792,
"column": 4
},
"end": {
- "line": 1031,
+ "line": 794,
"column": 7
}
}
},
+ {
+ "type": "Line",
+ "value": " Set config's publicPath dynamically for Webpack...",
+ "range": [
+ 29467,
+ 29520
+ ],
+ "loc": {
+ "start": {
+ "line": 797,
+ "column": 8
+ },
+ "end": {
+ "line": 797,
+ "column": 61
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Load an extension module\n * @param {Object} ext Extension config object\n ",
"range": [
- 40570,
- 40665
+ 29897,
+ 29992
],
"loc": {
"start": {
- "line": 1043,
+ "line": 810,
"column": 4
},
"end": {
- "line": 1046,
+ "line": 813,
"column": 7
}
}
},
{
"type": "Line",
- "value": " Trick to set config's publicPath dynamically for Webpack...",
+ "value": " Require pattern for Webpack",
"range": [
- 41049,
- 41111
+ 30376,
+ 30406
],
"loc": {
"start": {
- "line": 1063,
+ "line": 830,
"column": 8
},
"end": {
- "line": 1063,
- "column": 70
+ "line": 830,
+ "column": 38
}
}
},
@@ -221789,16 +181236,16 @@
"type": "Block",
"value": "*\n * Get an extension instance\n * @param {String} name Name of the extension\n * @return {Object} Extension instance\n ",
"range": [
- 41351,
- 41494
+ 30596,
+ 30739
],
"loc": {
"start": {
- "line": 1073,
+ "line": 838,
"column": 4
},
"end": {
- "line": 1077,
+ "line": 842,
"column": 7
}
}
@@ -221807,16 +181254,16 @@
"type": "Block",
"value": "*\n * Check passed extension name exists\n * @param {String} name Name of the extension\n * @return {Boolean}\n ",
"range": [
- 41566,
- 41696
+ 30811,
+ 30941
],
"loc": {
"start": {
- "line": 1082,
+ "line": 847,
"column": 4
},
"end": {
- "line": 1086,
+ "line": 851,
"column": 7
}
}
@@ -221825,16 +181272,16 @@
"type": "Block",
"value": "*\n * Destroy all the extensions defined in the configuration object\n ",
"range": [
- 41787,
- 41868
+ 31032,
+ 31113
],
"loc": {
"start": {
- "line": 1091,
+ "line": 856,
"column": 4
},
"end": {
- "line": 1093,
+ "line": 858,
"column": 7
}
}
@@ -221843,16 +181290,16 @@
"type": "Block",
"value": "*\n * Load themes defined in the configuration object\n ",
"range": [
- 42301,
- 42367
+ 31470,
+ 31536
],
"loc": {
"start": {
- "line": 1111,
+ "line": 872,
"column": 4
},
"end": {
- "line": 1113,
+ "line": 874,
"column": 7
}
}
@@ -221861,16 +181308,16 @@
"type": "Line",
"value": "Default theme config",
"range": [
- 42429,
- 42451
+ 31656,
+ 31678
],
"loc": {
"start": {
- "line": 1116,
+ "line": 879,
"column": 8
},
"end": {
- "line": 1116,
+ "line": 879,
"column": 30
}
}
@@ -221879,16 +181326,16 @@
"type": "Line",
"value": "Some elements need to be overriden for default theme",
"range": [
- 43267,
- 43321
+ 32494,
+ 32548
],
"loc": {
"start": {
- "line": 1140,
+ "line": 903,
"column": 8
},
"end": {
- "line": 1140,
+ "line": 903,
"column": 62
}
}
@@ -221897,16 +181344,16 @@
"type": "Line",
"value": "Reset button",
"range": [
- 43330,
- 43344
+ 32557,
+ 32571
],
"loc": {
"start": {
- "line": 1141,
+ "line": 904,
"column": 8
},
"end": {
- "line": 1141,
+ "line": 904,
"column": 22
}
}
@@ -221915,16 +181362,16 @@
"type": "Line",
"value": "Paging buttons",
"range": [
- 43522,
- 43538
+ 32749,
+ 32765
],
"loc": {
"start": {
- "line": 1146,
+ "line": 909,
"column": 8
},
"end": {
- "line": 1146,
+ "line": 909,
"column": 24
}
}
@@ -221933,16 +181380,16 @@
"type": "Line",
"value": "Loader",
"range": [
- 44123,
- 44131
+ 33350,
+ 33358
],
"loc": {
"start": {
- "line": 1156,
+ "line": 919,
"column": 8
},
"end": {
- "line": 1156,
+ "line": 919,
"column": 16
}
}
@@ -221951,16 +181398,16 @@
"type": "Block",
"value": "*\n * Return stylesheet DOM element for a given theme name\n * @return {DOMElement} stylesheet element\n ",
"range": [
- 44266,
- 44384
+ 33551,
+ 33669
],
"loc": {
"start": {
- "line": 1162,
+ "line": 927,
"column": 4
},
"end": {
- "line": 1165,
+ "line": 930,
"column": 7
}
}
@@ -221969,71 +181416,35 @@
"type": "Block",
"value": "*\n * Destroy filter grid\n ",
"range": [
- 44474,
- 44512
+ 33759,
+ 33797
],
"loc": {
"start": {
- "line": 1170,
+ "line": 935,
"column": 4
},
"end": {
- "line": 1172,
+ "line": 937,
"column": 7
}
}
},
{
"type": "Line",
- "value": " validate row",
+ "value": " broadcast destroy event",
"range": [
- 45179,
- 45194
+ 34707,
+ 34733
],
"loc": {
"start": {
- "line": 1199,
- "column": 12
+ "line": 969,
+ "column": 8
},
"end": {
- "line": 1199,
- "column": 27
- }
- }
- },
- {
- "type": "Line",
- "value": "removes alternating colors",
- "range": [
- 45247,
- 45275
- ],
- "loc": {
- "start": {
- "line": 1202,
- "column": 12
- },
- "end": {
- "line": 1202,
- "column": 40
- }
- }
- },
- {
- "type": "Line",
- "value": "for j",
- "range": [
- 45386,
- 45393
- ],
- "loc": {
- "start": {
- "line": 1207,
- "column": 9
- },
- "end": {
- "line": 1207,
- "column": 16
+ "line": 969,
+ "column": 34
}
}
},
@@ -222041,34 +181452,70 @@
"type": "Line",
"value": " Destroy modules",
"range": [
- 45571,
- 45589
+ 34782,
+ 34800
],
"loc": {
"start": {
- "line": 1214,
+ "line": 972,
"column": 8
},
"end": {
- "line": 1214,
+ "line": 972,
"column": 26
}
}
},
+ {
+ "type": "Line",
+ "value": " TODO: subcribe modules to destroy event instead",
+ "range": [
+ 34809,
+ 34859
+ ],
+ "loc": {
+ "start": {
+ "line": 973,
+ "column": 8
+ },
+ "end": {
+ "line": 973,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " unsubscribe to events",
+ "range": [
+ 35070,
+ 35094
+ ],
+ "loc": {
+ "start": {
+ "line": 981,
+ "column": 8
+ },
+ "end": {
+ "line": 981,
+ "column": 32
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Generate container element for paging, reset button, rows counter etc.\n ",
"range": [
- 46006,
- 46095
+ 35575,
+ 35664
],
"loc": {
"start": {
- "line": 1230,
+ "line": 998,
"column": 4
},
"end": {
- "line": 1232,
+ "line": 1000,
"column": 7
}
}
@@ -222077,16 +181524,16 @@
"type": "Block",
"value": "** container div **",
"range": [
- 46178,
- 46201
+ 35747,
+ 35770
],
"loc": {
"start": {
- "line": 1238,
+ "line": 1006,
"column": 8
},
"end": {
- "line": 1238,
+ "line": 1006,
"column": 31
}
}
@@ -222095,16 +181542,16 @@
"type": "Line",
"value": "custom container",
"range": [
- 46332,
- 46350
+ 35901,
+ 35919
],
"loc": {
"start": {
- "line": 1242,
+ "line": 1010,
"column": 8
},
"end": {
- "line": 1242,
+ "line": 1010,
"column": 26
}
}
@@ -222113,16 +181560,16 @@
"type": "Line",
"value": "grid-layout",
"range": [
- 46459,
- 46472
+ 36028,
+ 36041
],
"loc": {
"start": {
- "line": 1246,
+ "line": 1014,
"column": 8
},
"end": {
- "line": 1246,
+ "line": 1014,
"column": 21
}
}
@@ -222131,16 +181578,16 @@
"type": "Line",
"value": "default location: just above the table",
"range": [
- 46693,
- 46733
+ 36262,
+ 36302
],
"loc": {
"start": {
- "line": 1252,
+ "line": 1020,
"column": 8
},
"end": {
- "line": 1252,
+ "line": 1020,
"column": 48
}
}
@@ -222149,16 +181596,16 @@
"type": "Block",
"value": "** left div containing rows # displayer **",
"range": [
- 46968,
- 47014
+ 36537,
+ 36583
],
"loc": {
"start": {
- "line": 1260,
+ "line": 1028,
"column": 8
},
"end": {
- "line": 1260,
+ "line": 1028,
"column": 54
}
}
@@ -222167,16 +181614,16 @@
"type": "Block",
"value": "** right div containing reset button\n + nb results per page select **",
"range": [
- 47222,
- 47316
+ 36791,
+ 36885
],
"loc": {
"start": {
- "line": 1266,
+ "line": 1034,
"column": 8
},
"end": {
- "line": 1267,
+ "line": 1035,
"column": 52
}
}
@@ -222185,53 +181632,35 @@
"type": "Block",
"value": "** mid div containing paging elements **",
"range": [
- 47524,
- 47568
+ 37093,
+ 37137
],
"loc": {
"start": {
- "line": 1273,
+ "line": 1041,
"column": 8
},
"end": {
- "line": 1273,
+ "line": 1041,
"column": 52
}
}
},
{
"type": "Line",
- "value": " Enable help instructions by default if topbar is generated and not",
+ "value": " emit help initialisation only if undefined",
"range": [
- 47776,
- 47845
+ 37345,
+ 37390
],
"loc": {
"start": {
- "line": 1279,
+ "line": 1047,
"column": 8
},
"end": {
- "line": 1279,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " explicitely set to false",
- "range": [
- 47854,
- 47881
- ],
- "loc": {
- "start": {
- "line": 1280,
- "column": 8
- },
- "end": {
- "line": 1280,
- "column": 35
+ "line": 1047,
+ "column": 53
}
}
},
@@ -222239,16 +181668,16 @@
"type": "Block",
"value": "*\n * Remove toolbar container element\n ",
"range": [
- 48099,
- 48150
+ 37500,
+ 37551
],
"loc": {
"start": {
- "line": 1290,
+ "line": 1053,
"column": 4
},
"end": {
- "line": 1292,
+ "line": 1055,
"column": 7
}
}
@@ -222257,16 +181686,16 @@
"type": "Block",
"value": "*\n * Remove all the external column filters\n ",
"range": [
- 48528,
- 48585
+ 37890,
+ 37947
],
"loc": {
"start": {
- "line": 1309,
+ "line": 1070,
"column": 4
},
"end": {
- "line": 1311,
+ "line": 1072,
"column": 7
}
}
@@ -222275,16 +181704,16 @@
"type": "Block",
"value": "*\n * Check if given column implements a filter with custom options\n * @param {Number} colIndex Column's index\n * @return {Boolean}\n ",
"range": [
- 49019,
- 49173
+ 38354,
+ 38508
],
"loc": {
"start": {
- "line": 1327,
+ "line": 1088,
"column": 4
},
"end": {
- "line": 1331,
+ "line": 1092,
"column": 7
}
}
@@ -222293,16 +181722,16 @@
"type": "Block",
"value": "*\n * Returns an array [[value0, value1 ...],[text0, text1 ...]] with the\n * custom options values and texts\n * @param {Number} colIndex Column's index\n * @return {Array}\n ",
"range": [
- 49318,
- 49514
+ 38653,
+ 38849
],
"loc": {
"start": {
- "line": 1337,
+ "line": 1098,
"column": 4
},
"end": {
- "line": 1342,
+ "line": 1103,
"column": 7
}
}
@@ -222311,214 +181740,34 @@
"type": "Block",
"value": "*\n * Reset persisted filter values\n ",
"range": [
- 50443,
- 50491
+ 39700,
+ 39748
],
"loc": {
"start": {
- "line": 1375,
+ "line": 1132,
"column": 4
},
"end": {
- "line": 1377,
+ "line": 1134,
"column": 7
}
}
},
- {
- "type": "Line",
- "value": "only loadFltOnDemand",
- "range": [
- 50520,
- 50542
- ],
- "loc": {
- "start": {
- "line": 1379,
- "column": 8
- },
- "end": {
- "line": 1379,
- "column": 30
- }
- }
- },
{
"type": "Block",
- "value": "*\n * Reset persisted filter values when load filters on demand feature is\n * enabled\n * @param {String} name cookie name storing filter values\n ",
+ "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n ",
"range": [
- 50927,
- 51092
+ 40093,
+ 40330
],
"loc": {
"start": {
- "line": 1391,
+ "line": 1149,
"column": 4
},
"end": {
- "line": 1395,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": "if the number of columns is the same as before page reload",
- "range": [
- 51408,
- 51468
- ],
- "loc": {
- "start": {
- "line": 1404,
- "column": 8
- },
- "end": {
- "line": 1404,
- "column": 68
- }
- }
- },
- {
- "type": "Line",
- "value": " if loadFltOnDemand, drop-down needs to contain stored",
- "range": [
- 51791,
- 51847
- ],
- "loc": {
- "start": {
- "line": 1412,
- "column": 16
- },
- "end": {
- "line": 1412,
- "column": 72
- }
- }
- },
- {
- "type": "Line",
- "value": " value(s) for filtering",
- "range": [
- 51864,
- 51889
- ],
- "loc": {
- "start": {
- "line": 1413,
- "column": 16
- },
- "end": {
- "line": 1413,
- "column": 41
- }
- }
- },
- {
- "type": "Line",
- "value": "selects",
- "range": [
- 52098,
- 52107
- ],
- "loc": {
- "start": {
- "line": 1418,
- "column": 20
- },
- "end": {
- "line": 1418,
- "column": 29
- }
- }
- },
- {
- "type": "Line",
- "value": "multiple select",
- "range": [
- 52383,
- 52400
- ],
- "loc": {
- "start": {
- "line": 1424,
- "column": 20
- },
- "end": {
- "line": 1424,
- "column": 37
- }
- }
- },
- {
- "type": "Line",
- "value": " if multiFltsIndex",
- "range": [
- 52930,
- 52950
- ],
- "loc": {
- "start": {
- "line": 1435,
- "column": 21
- },
- "end": {
- "line": 1435,
- "column": 41
- }
- }
- },
- {
- "type": "Line",
- "value": "end for",
- "range": [
- 54381,
- 54390
- ],
- "loc": {
- "start": {
- "line": 1468,
- "column": 13
- },
- "end": {
- "line": 1468,
- "column": 22
- }
- }
- },
- {
- "type": "Line",
- "value": "end if",
- "range": [
- 54518,
- 54526
- ],
- "loc": {
- "start": {
- "line": 1473,
- "column": 9
- },
- "end": {
- "line": 1473,
- "column": 17
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n *\n * TODO: Reduce complexity of this massive method\n ",
- "range": [
- 54606,
- 54904
- ],
- "loc": {
- "start": {
- "line": 1480,
- "column": 4
- },
- "end": {
- "line": 1486,
+ "line": 1153,
"column": 7
}
}
@@ -222527,88 +181776,34 @@
"type": "Line",
"value": "invoke onbefore callback",
"range": [
- 55026,
- 55052
+ 40428,
+ 40454
],
"loc": {
"start": {
- "line": 1491,
+ "line": 1158,
"column": 8
},
"end": {
- "line": 1491,
+ "line": 1158,
"column": 34
}
}
},
- {
- "type": "Line",
- "value": " removes keyword highlighting",
- "range": [
- 55280,
- 55311
- ],
- "loc": {
- "start": {
- "line": 1502,
- "column": 8
- },
- "end": {
- "line": 1502,
- "column": 39
- }
- }
- },
- {
- "type": "Line",
- "value": "removes popup filters active icons",
- "range": [
- 55417,
- 55453
- ],
- "loc": {
- "start": {
- "line": 1506,
- "column": 8
- },
- "end": {
- "line": 1506,
- "column": 44
- }
- }
- },
- {
- "type": "Line",
- "value": "removes active column header class",
- "range": [
- 55545,
- 55581
- ],
- "loc": {
- "start": {
- "line": 1510,
- "column": 8
- },
- "end": {
- "line": 1510,
- "column": 44
- }
- }
- },
{
"type": "Line",
"value": " search args re-init",
"range": [
- 55675,
- 55697
+ 40706,
+ 40728
],
"loc": {
"start": {
- "line": 1514,
+ "line": 1168,
"column": 8
},
"end": {
- "line": 1514,
+ "line": 1168,
"column": 30
}
}
@@ -222617,16 +181812,16 @@
"type": "Line",
"value": " re_an = new RegExp(this.anOperator),",
"range": [
- 56246,
- 56285
+ 41277,
+ 41316
],
"loc": {
"start": {
- "line": 1527,
+ "line": 1181,
"column": 12
},
"end": {
- "line": 1527,
+ "line": 1181,
"column": 51
}
}
@@ -222635,16 +181830,16 @@
"type": "Line",
"value": " re_cr = new RegExp(this.curExp),",
"range": [
- 56298,
- 56333
+ 41329,
+ 41364
],
"loc": {
"start": {
- "line": 1528,
+ "line": 1182,
"column": 12
},
"end": {
- "line": 1528,
+ "line": 1182,
"column": 47
}
}
@@ -222653,16 +181848,16 @@
"type": "Line",
"value": "keyword highlighting",
"range": [
- 56479,
- 56501
+ 41510,
+ 41532
],
"loc": {
"start": {
- "line": 1533,
+ "line": 1187,
"column": 8
},
"end": {
- "line": 1533,
+ "line": 1187,
"column": 30
}
}
@@ -222671,16 +181866,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 56557,
- 56583
+ 41588,
+ 41614
],
"loc": {
"start": {
- "line": 1535,
+ "line": 1189,
"column": 12
},
"end": {
- "line": 1535,
+ "line": 1189,
"column": 38
}
}
@@ -222689,16 +181884,16 @@
"type": "Line",
"value": "looks for search argument in current row",
"range": [
- 57241,
- 57283
+ 42221,
+ 42263
],
"loc": {
"start": {
- "line": 1553,
+ "line": 1206,
"column": 8
},
"end": {
- "line": 1553,
+ "line": 1206,
"column": 50
}
}
@@ -222707,16 +181902,16 @@
"type": "Block",
"value": "jshint validthis:true ",
"range": [
- 57338,
- 57364
+ 42318,
+ 42344
],
"loc": {
"start": {
- "line": 1555,
+ "line": 1208,
"column": 12
},
"end": {
- "line": 1555,
+ "line": 1208,
"column": 38
}
}
@@ -222725,16 +181920,16 @@
"type": "Line",
"value": "Search arg operator tests",
"range": [
- 57462,
- 57489
+ 42499,
+ 42526
],
"loc": {
"start": {
- "line": 1559,
+ "line": 1214,
"column": 12
},
"end": {
- "line": 1559,
+ "line": 1214,
"column": 39
}
}
@@ -222743,16 +181938,16 @@
"type": "Line",
"value": " hasAN = re_an.test(sA),",
"range": [
- 57783,
- 57809
+ 42820,
+ 42846
],
"loc": {
"start": {
- "line": 1567,
+ "line": 1222,
"column": 16
},
"end": {
- "line": 1567,
+ "line": 1222,
"column": 42
}
}
@@ -222761,16 +181956,16 @@
"type": "Line",
"value": "Search arg dates tests",
"range": [
- 58023,
- 58047
+ 43060,
+ 43084
],
"loc": {
"start": {
- "line": 1574,
+ "line": 1229,
"column": 12
},
"end": {
- "line": 1574,
+ "line": 1229,
"column": 36
}
}
@@ -222779,16 +181974,16 @@
"type": "Line",
"value": "dates",
"range": [
- 58696,
- 58703
+ 43733,
+ 43740
],
"loc": {
"start": {
- "line": 1589,
+ "line": 1244,
"column": 12
},
"end": {
- "line": 1589,
+ "line": 1244,
"column": 19
}
}
@@ -222797,16 +181992,16 @@
"type": "Line",
"value": " lower date",
"range": [
- 58834,
- 58847
+ 43871,
+ 43884
],
"loc": {
"start": {
- "line": 1592,
+ "line": 1247,
"column": 16
},
"end": {
- "line": 1592,
+ "line": 1247,
"column": 29
}
}
@@ -222815,16 +182010,16 @@
"type": "Line",
"value": " lower equal date",
"range": [
- 59031,
- 59050
+ 44068,
+ 44087
],
"loc": {
"start": {
- "line": 1597,
+ "line": 1252,
"column": 16
},
"end": {
- "line": 1597,
+ "line": 1252,
"column": 35
}
}
@@ -222833,16 +182028,16 @@
"type": "Line",
"value": " greater equal date",
"range": [
- 59242,
- 59263
+ 44279,
+ 44300
],
"loc": {
"start": {
- "line": 1602,
+ "line": 1257,
"column": 16
},
"end": {
- "line": 1602,
+ "line": 1257,
"column": 37
}
}
@@ -222851,16 +182046,16 @@
"type": "Line",
"value": " greater date",
"range": [
- 59455,
- 59470
+ 44492,
+ 44507
],
"loc": {
"start": {
- "line": 1607,
+ "line": 1262,
"column": 16
},
"end": {
- "line": 1607,
+ "line": 1262,
"column": 31
}
}
@@ -222869,16 +182064,16 @@
"type": "Line",
"value": " different date",
"range": [
- 59659,
- 59676
+ 44696,
+ 44713
],
"loc": {
"start": {
- "line": 1612,
+ "line": 1267,
"column": 16
},
"end": {
- "line": 1612,
+ "line": 1267,
"column": 33
}
}
@@ -222887,16 +182082,16 @@
"type": "Line",
"value": " equal date",
"range": [
- 59889,
- 59902
+ 44926,
+ 44939
],
"loc": {
"start": {
- "line": 1617,
+ "line": 1272,
"column": 16
},
"end": {
- "line": 1617,
+ "line": 1272,
"column": 29
}
}
@@ -222905,16 +182100,16 @@
"type": "Line",
"value": " searched keyword with * operator doesn't have to be a date",
"range": [
- 60116,
- 60177
+ 45153,
+ 45214
],
"loc": {
"start": {
- "line": 1622,
+ "line": 1277,
"column": 16
},
"end": {
- "line": 1622,
+ "line": 1277,
"column": 77
}
}
@@ -222923,16 +182118,16 @@
"type": "Line",
"value": " like date",
"range": [
- 60218,
- 60230
+ 45255,
+ 45267
],
"loc": {
"start": {
- "line": 1623,
+ "line": 1278,
"column": 40
},
"end": {
- "line": 1623,
+ "line": 1278,
"column": 52
}
}
@@ -222941,16 +182136,16 @@
"type": "Line",
"value": "empty",
"range": [
- 60594,
- 60601
+ 45631,
+ 45638
],
"loc": {
"start": {
- "line": 1631,
+ "line": 1286,
"column": 16
},
"end": {
- "line": 1631,
+ "line": 1286,
"column": 23
}
}
@@ -222959,16 +182154,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 60723,
- 60734
+ 45760,
+ 45771
],
"loc": {
"start": {
- "line": 1635,
+ "line": 1290,
"column": 16
},
"end": {
- "line": 1635,
+ "line": 1290,
"column": 27
}
}
@@ -222977,16 +182172,16 @@
"type": "Line",
"value": "first numbers need to be formated",
"range": [
- 61041,
- 61076
+ 46078,
+ 46113
],
"loc": {
"start": {
- "line": 1645,
+ "line": 1300,
"column": 16
},
"end": {
- "line": 1645,
+ "line": 1300,
"column": 51
}
}
@@ -222995,16 +182190,16 @@
"type": "Line",
"value": " first checks if there is any operator (<,>,<=,>=,!,*,=,{,},",
"range": [
- 61746,
- 61808
+ 46783,
+ 46845
],
"loc": {
"start": {
- "line": 1661,
+ "line": 1316,
"column": 16
},
"end": {
- "line": 1661,
+ "line": 1316,
"column": 78
}
}
@@ -223013,16 +182208,16 @@
"type": "Line",
"value": " rgx:)",
"range": [
- 61825,
- 61833
+ 46862,
+ 46870
],
"loc": {
"start": {
- "line": 1662,
+ "line": 1317,
"column": 16
},
"end": {
- "line": 1662,
+ "line": 1317,
"column": 24
}
}
@@ -223031,16 +182226,16 @@
"type": "Line",
"value": " lower equal",
"range": [
- 61850,
- 61864
+ 46887,
+ 46901
],
"loc": {
"start": {
- "line": 1663,
+ "line": 1318,
"column": 16
},
"end": {
- "line": 1663,
+ "line": 1318,
"column": 30
}
}
@@ -223049,16 +182244,16 @@
"type": "Line",
"value": "greater equal",
"range": [
- 62047,
- 62062
+ 47084,
+ 47099
],
"loc": {
"start": {
- "line": 1668,
+ "line": 1323,
"column": 16
},
"end": {
- "line": 1668,
+ "line": 1323,
"column": 31
}
}
@@ -223067,16 +182262,16 @@
"type": "Line",
"value": "lower",
"range": [
- 62250,
- 62257
+ 47287,
+ 47294
],
"loc": {
"start": {
- "line": 1673,
+ "line": 1328,
"column": 16
},
"end": {
- "line": 1673,
+ "line": 1328,
"column": 23
}
}
@@ -223085,16 +182280,16 @@
"type": "Line",
"value": "greater",
"range": [
- 62443,
- 62452
+ 47480,
+ 47489
],
"loc": {
"start": {
- "line": 1678,
+ "line": 1333,
"column": 16
},
"end": {
- "line": 1678,
+ "line": 1333,
"column": 25
}
}
@@ -223103,16 +182298,16 @@
"type": "Line",
"value": "different",
"range": [
- 62638,
- 62649
+ 47675,
+ 47686
],
"loc": {
"start": {
- "line": 1683,
+ "line": 1338,
"column": 16
},
"end": {
- "line": 1683,
+ "line": 1338,
"column": 27
}
}
@@ -223121,16 +182316,16 @@
"type": "Line",
"value": "like",
"range": [
- 62860,
- 62866
+ 47897,
+ 47903
],
"loc": {
"start": {
- "line": 1688,
+ "line": 1343,
"column": 16
},
"end": {
- "line": 1688,
+ "line": 1343,
"column": 22
}
}
@@ -223139,16 +182334,16 @@
"type": "Line",
"value": "equal",
"range": [
- 63063,
- 63070
+ 48100,
+ 48107
],
"loc": {
"start": {
- "line": 1693,
+ "line": 1348,
"column": 16
},
"end": {
- "line": 1693,
+ "line": 1348,
"column": 23
}
}
@@ -223157,16 +182352,16 @@
"type": "Line",
"value": "starts with",
"range": [
- 63266,
- 63279
+ 48303,
+ 48316
],
"loc": {
"start": {
- "line": 1698,
+ "line": 1353,
"column": 16
},
"end": {
- "line": 1698,
+ "line": 1353,
"column": 29
}
}
@@ -223175,16 +182370,16 @@
"type": "Line",
"value": "ends with",
"range": [
- 63464,
- 63475
+ 48501,
+ 48512
],
"loc": {
"start": {
- "line": 1703,
+ "line": 1358,
"column": 16
},
"end": {
- "line": 1703,
+ "line": 1358,
"column": 27
}
}
@@ -223193,16 +182388,16 @@
"type": "Line",
"value": "empty",
"range": [
- 63905,
- 63912
+ 48942,
+ 48949
],
"loc": {
"start": {
- "line": 1712,
+ "line": 1367,
"column": 16
},
"end": {
- "line": 1712,
+ "line": 1367,
"column": 23
}
}
@@ -223211,16 +182406,16 @@
"type": "Line",
"value": "non-empty",
"range": [
- 64034,
- 64045
+ 49071,
+ 49082
],
"loc": {
"start": {
- "line": 1716,
+ "line": 1371,
"column": 16
},
"end": {
- "line": 1716,
+ "line": 1371,
"column": 27
}
}
@@ -223229,16 +182424,16 @@
"type": "Line",
"value": "regexp",
"range": [
- 64168,
- 64176
+ 49205,
+ 49213
],
"loc": {
"start": {
- "line": 1720,
+ "line": 1375,
"column": 16
},
"end": {
- "line": 1720,
+ "line": 1375,
"column": 24
}
}
@@ -223247,16 +182442,16 @@
"type": "Line",
"value": "in case regexp fires an exception",
"range": [
- 64229,
- 64264
+ 49266,
+ 49301
],
"loc": {
"start": {
- "line": 1722,
+ "line": 1377,
"column": 20
},
"end": {
- "line": 1722,
+ "line": 1377,
"column": 55
}
}
@@ -223265,16 +182460,16 @@
"type": "Line",
"value": "operator is removed",
"range": [
- 64314,
- 64335
+ 49351,
+ 49372
],
"loc": {
"start": {
- "line": 1724,
+ "line": 1379,
"column": 24
},
"end": {
- "line": 1724,
+ "line": 1379,
"column": 45
}
}
@@ -223283,16 +182478,16 @@
"type": "Line",
"value": "else",
"range": [
- 64744,
- 64750
+ 49781,
+ 49787
],
"loc": {
"start": {
- "line": 1734,
+ "line": 1389,
"column": 13
},
"end": {
- "line": 1734,
+ "line": 1389,
"column": 19
}
}
@@ -223301,35 +182496,35 @@
"type": "Line",
"value": "fn",
"range": [
- 64790,
- 64794
+ 49827,
+ 49831
],
"loc": {
"start": {
- "line": 1736,
+ "line": 1391,
"column": 9
},
"end": {
- "line": 1736,
+ "line": 1391,
"column": 13
}
}
},
{
- "type": "Block",
- "value": "** if table already filtered some rows are not visible **",
+ "type": "Line",
+ "value": " already filtered rows display re-init",
"range": [
- 64860,
- 64921
+ 49897,
+ 49937
],
"loc": {
"start": {
- "line": 1739,
+ "line": 1394,
"column": 12
},
"end": {
- "line": 1739,
- "column": 73
+ "line": 1394,
+ "column": 52
}
}
},
@@ -223337,16 +182532,16 @@
"type": "Line",
"value": " checks if row has exact cell #",
"range": [
- 65118,
- 65151
+ 50067,
+ 50100
],
"loc": {
"start": {
- "line": 1747,
+ "line": 1400,
"column": 12
},
"end": {
- "line": 1747,
+ "line": 1400,
"column": 45
}
}
@@ -223355,16 +182550,16 @@
"type": "Line",
"value": "only for single filter search",
"range": [
- 65318,
- 65349
+ 50267,
+ 50298
],
"loc": {
"start": {
- "line": 1754,
+ "line": 1407,
"column": 16
},
"end": {
- "line": 1754,
+ "line": 1407,
"column": 47
}
}
@@ -223373,16 +182568,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 65406,
- 65438
+ 50355,
+ 50387
],
"loc": {
"start": {
- "line": 1757,
+ "line": 1410,
"column": 12
},
"end": {
- "line": 1757,
+ "line": 1410,
"column": 44
}
}
@@ -223391,16 +182586,16 @@
"type": "Line",
"value": "searched keyword",
"range": [
- 65497,
- 65515
+ 50446,
+ 50464
],
"loc": {
"start": {
- "line": 1759,
+ "line": 1412,
"column": 16
},
"end": {
- "line": 1759,
+ "line": 1412,
"column": 34
}
}
@@ -223409,16 +182604,16 @@
"type": "Line",
"value": "multiple search parameter operator ||",
"range": [
- 65917,
- 65956
+ 50867,
+ 50906
],
"loc": {
"start": {
- "line": 1770,
+ "line": 1424,
"column": 16
},
"end": {
- "line": 1770,
+ "line": 1424,
"column": 55
}
}
@@ -223427,16 +182622,16 @@
"type": "Line",
"value": "multiple search || parameter boolean",
"range": [
- 66032,
- 66070
+ 50993,
+ 51031
],
"loc": {
"start": {
- "line": 1772,
+ "line": 1426,
"column": 16
},
"end": {
- "line": 1772,
+ "line": 1426,
"column": 54
}
}
@@ -223445,16 +182640,16 @@
"type": "Line",
"value": "multiple search parameter operator &&",
"range": [
- 66155,
- 66194
+ 51101,
+ 51140
],
"loc": {
"start": {
- "line": 1774,
+ "line": 1428,
"column": 16
},
"end": {
- "line": 1774,
+ "line": 1428,
"column": 55
}
}
@@ -223463,35 +182658,53 @@
"type": "Line",
"value": "multiple search && parameter boolean",
"range": [
- 66267,
- 66305
+ 51224,
+ 51262
],
"loc": {
"start": {
- "line": 1776,
+ "line": 1430,
"column": 16
},
"end": {
- "line": 1776,
+ "line": 1430,
"column": 54
}
}
},
{
"type": "Line",
- "value": "multiple sarch parameters",
+ "value": "detect operators or array query",
"range": [
- 66391,
- 66418
+ 51335,
+ 51368
],
"loc": {
"start": {
- "line": 1779,
+ "line": 1433,
"column": 16
},
"end": {
- "line": 1779,
- "column": 43
+ "line": 1433,
+ "column": 49
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " TODO: improve clarity/readability of this block",
+ "range": [
+ 51748,
+ 51798
+ ],
+ "loc": {
+ "start": {
+ "line": 1443,
+ "column": 20
+ },
+ "end": {
+ "line": 1443,
+ "column": 70
}
}
},
@@ -223499,16 +182712,16 @@
"type": "Line",
"value": "single search parameter",
"range": [
- 67167,
- 67192
+ 52425,
+ 52450
],
"loc": {
"start": {
- "line": 1797,
+ "line": 1459,
"column": 16
},
"end": {
- "line": 1797,
+ "line": 1459,
"column": 41
}
}
@@ -223517,16 +182730,16 @@
"type": "Line",
"value": "else single param",
"range": [
- 67383,
- 67402
+ 52641,
+ 52660
],
"loc": {
"start": {
- "line": 1801,
+ "line": 1463,
"column": 17
},
"end": {
- "line": 1801,
+ "line": 1463,
"column": 36
}
}
@@ -223535,214 +182748,70 @@
"type": "Line",
"value": "for j",
"range": [
- 68331,
- 68338
+ 52962,
+ 52969
],
"loc": {
"start": {
- "line": 1825,
+ "line": 1473,
"column": 13
},
"end": {
- "line": 1825,
+ "line": 1473,
"column": 20
}
}
},
- {
- "type": "Line",
- "value": " always visible rows need to be counted as valid",
- "range": [
- 68649,
- 68699
- ],
- "loc": {
- "start": {
- "line": 1836,
- "column": 16
- },
- "end": {
- "line": 1836,
- "column": 66
- }
- }
- },
{
"type": "Line",
"value": " for k",
"range": [
- 69294,
- 69302
+ 53384,
+ 53392
],
"loc": {
"start": {
- "line": 1852,
+ "line": 1488,
"column": 9
},
"end": {
- "line": 1852,
+ "line": 1488,
"column": 17
}
}
},
{
"type": "Line",
- "value": "applies filter props after filtering process",
+ "value": "invokes onafterfilter callback",
"range": [
- 69520,
- 69566
+ 53500,
+ 53532
],
"loc": {
"start": {
- "line": 1860,
+ "line": 1493,
"column": 8
},
"end": {
- "line": 1860,
- "column": 54
- }
- }
- },
- {
- "type": "Line",
- "value": " Shouldn't need to care of that here...",
- "range": [
- 69653,
- 69694
- ],
- "loc": {
- "start": {
- "line": 1864,
- "column": 12
- },
- "end": {
- "line": 1864,
- "column": 53
- }
- }
- },
- {
- "type": "Line",
- "value": " TODO: provide a method in paging module",
- "range": [
- 69707,
- 69749
- ],
- "loc": {
- "start": {
- "line": 1865,
- "column": 12
- },
- "end": {
- "line": 1865,
- "column": 54
- }
- }
- },
- {
- "type": "Line",
- "value": "invokes onafter callback",
- "range": [
- 69912,
- 69938
- ],
- "loc": {
- "start": {
- "line": 1870,
- "column": 8
- },
- "end": {
- "line": 1870,
- "column": 34
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Re-apply the features/behaviour concerned by filtering/paging operation\n *\n * NOTE: this will disappear whenever custom events in place\n ",
- "range": [
- 70040,
- 70202
- ],
- "loc": {
- "start": {
- "line": 1876,
- "column": 4
- },
- "end": {
- "line": 1880,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": "shows rows always visible",
- "range": [
- 70258,
- 70285
- ],
- "loc": {
- "start": {
- "line": 1884,
- "column": 8
- },
- "end": {
- "line": 1884,
- "column": 35
- }
- }
- },
- {
- "type": "Line",
- "value": "columns operations",
- "range": [
- 70375,
- 70395
- ],
- "loc": {
- "start": {
- "line": 1888,
- "column": 8
- },
- "end": {
- "line": 1888,
- "column": 28
- }
- }
- },
- {
- "type": "Line",
- "value": "re-populates drop-down filters",
- "range": [
- 70501,
- 70533
- ],
- "loc": {
- "start": {
- "line": 1893,
- "column": 8
- },
- "end": {
- "line": 1893,
+ "line": 1493,
"column": 40
}
}
},
{
"type": "Block",
- "value": "*\n * Return the data of a specified colum\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
+ "value": "*\n * Return the data of a specified column\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n ",
"range": [
- 70989,
- 71372
+ 53688,
+ 54072
],
"loc": {
"start": {
- "line": 1915,
+ "line": 1501,
"column": 4
},
"end": {
- "line": 1922,
+ "line": 1508,
"column": 7
}
}
@@ -223751,16 +182820,16 @@
"type": "Line",
"value": " checks if current row index appears in exclude array",
"range": [
- 71767,
- 71822
+ 54467,
+ 54522
],
"loc": {
"start": {
- "line": 1936,
+ "line": 1522,
"column": 12
},
"end": {
- "line": 1936,
+ "line": 1522,
"column": 67
}
}
@@ -223769,16 +182838,16 @@
"type": "Line",
"value": " checks if row has exact cell # and is not excluded",
"range": [
- 72019,
- 72072
+ 54719,
+ 54772
],
"loc": {
"start": {
- "line": 1943,
+ "line": 1529,
"column": 12
},
"end": {
- "line": 1943,
+ "line": 1529,
"column": 65
}
}
@@ -223787,16 +182856,16 @@
"type": "Line",
"value": " this loop retrieves cell data",
"range": [
- 72148,
- 72180
+ 54848,
+ 54880
],
"loc": {
"start": {
- "line": 1945,
+ "line": 1531,
"column": 16
},
"end": {
- "line": 1945,
+ "line": 1531,
"column": 48
}
}
@@ -223805,12 +182874,588 @@
"type": "Block",
"value": "*\n * Return the filter's value of a specified column\n * @param {Number} index Column index\n * @return {String} Filter value\n ",
"range": [
- 72809,
- 72961
+ 55509,
+ 55661
],
"loc": {
"start": {
- "line": 1963,
+ "line": 1549,
+ "column": 4
+ },
+ "end": {
+ "line": 1553,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "mutiple select",
+ "range": [
+ 56103,
+ 56119
+ ],
+ "loc": {
+ "start": {
+ "line": 1570,
+ "column": 8
+ },
+ "end": {
+ "line": 1570,
+ "column": 24
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " TODO: extract a method in dropdown module from below",
+ "range": [
+ 56183,
+ 56238
+ ],
+ "loc": {
+ "start": {
+ "line": 1572,
+ "column": 12
+ },
+ "end": {
+ "line": 1572,
+ "column": 67
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "return empty string if collection is empty",
+ "range": [
+ 56448,
+ 56492
+ ],
+ "loc": {
+ "start": {
+ "line": 1578,
+ "column": 12
+ },
+ "end": {
+ "line": 1578,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "checklist",
+ "range": [
+ 56573,
+ 56584
+ ],
+ "loc": {
+ "start": {
+ "line": 1581,
+ "column": 8
+ },
+ "end": {
+ "line": 1581,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " TODO: extract a method in checklist module from below",
+ "range": [
+ 56652,
+ 56708
+ ],
+ "loc": {
+ "start": {
+ "line": 1583,
+ "column": 12
+ },
+ "end": {
+ "line": 1583,
+ "column": 68
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "removes last operator ||",
+ "range": [
+ 56832,
+ 56858
+ ],
+ "loc": {
+ "start": {
+ "line": 1586,
+ "column": 16
+ },
+ "end": {
+ "line": 1586,
+ "column": 42
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "convert || separated values into array",
+ "range": [
+ 56944,
+ 56984
+ ],
+ "loc": {
+ "start": {
+ "line": 1588,
+ "column": 16
+ },
+ "end": {
+ "line": 1588,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "return empty string if collection is empty",
+ "range": [
+ 57085,
+ 57129
+ ],
+ "loc": {
+ "start": {
+ "line": 1591,
+ "column": 12
+ },
+ "end": {
+ "line": 1591,
+ "column": 56
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "return an empty string if collection contains a single empty string",
+ "range": [
+ 57210,
+ 57279
+ ],
+ "loc": {
+ "start": {
+ "line": 1594,
+ "column": 8
+ },
+ "end": {
+ "line": 1594,
+ "column": 77
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the filters' values\n * @return {Array} List of filters' values\n ",
+ "range": [
+ 57449,
+ 57541
+ ],
+ "loc": {
+ "start": {
+ "line": 1602,
+ "column": 4
+ },
+ "end": {
+ "line": 1605,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the ID of the filter of a specified column\n * @param {Number} index Column's index\n * @return {String} ID of the filter element\n ",
+ "range": [
+ 57980,
+ 58148
+ ],
+ "loc": {
+ "start": {
+ "line": 1622,
+ "column": 4
+ },
+ "end": {
+ "line": 1626,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the list of ids of filters matching a specified type.\n * Note: hidden filters are also returned\n *\n * @param {String} type Filter type string ('input', 'select', 'multiple',\n * 'checklist')\n * @param {Boolean} bool If true returns columns indexes instead of IDs\n * @return {[type]} List of element IDs or column indexes\n ",
+ "range": [
+ 58276,
+ 58677
+ ],
+ "loc": {
+ "start": {
+ "line": 1634,
+ "column": 4
+ },
+ "end": {
+ "line": 1642,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the filter's DOM element for a given column\n * @param {Number} index Column's index\n * @return {DOMElement}\n ",
+ "range": [
+ 59078,
+ 59224
+ ],
+ "loc": {
+ "start": {
+ "line": 1658,
+ "column": 4
+ },
+ "end": {
+ "line": 1662,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the number of cells for a given row index\n * @param {Number} rowIndex Index of the row\n * @return {Number} Number of cells\n ",
+ "range": [
+ 59335,
+ 59501
+ ],
+ "loc": {
+ "start": {
+ "line": 1668,
+ "column": 4
+ },
+ "end": {
+ "line": 1672,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the number of filterable rows starting from reference row if\n * defined\n * @param {Boolean} includeHeaders Include the headers row\n * @return {Number} Number of filterable rows\n ",
+ "range": [
+ 59615,
+ 59846
+ ],
+ "loc": {
+ "start": {
+ "line": 1678,
+ "column": 4
+ },
+ "end": {
+ "line": 1683,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the data of a given cell\n * @param {DOMElement} cell Cell's DOM object\n * @return {String}\n ",
+ "range": [
+ 60066,
+ 60191
+ ],
+ "loc": {
+ "start": {
+ "line": 1691,
+ "column": 4
+ },
+ "end": {
+ "line": 1695,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "Check for customCellData callback",
+ "range": [
+ 60257,
+ 60292
+ ],
+ "loc": {
+ "start": {
+ "line": 1698,
+ "column": 8
+ },
+ "end": {
+ "line": 1698,
+ "column": 43
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the table data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
+ "range": [
+ 60516,
+ 60920
+ ],
+ "loc": {
+ "start": {
+ "line": 1706,
+ "column": 4
+ },
+ "end": {
+ "line": 1717,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the filtered data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
+ "range": [
+ 61817,
+ 62224
+ ],
+ "loc": {
+ "start": {
+ "line": 1742,
+ "column": 4
+ },
+ "end": {
+ "line": 1753,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Return the filtered data for a given column index\n * @param {Number} colIndex Colmun's index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @return {Array} Flat list of values ['val0','val1','val2'...]\n *\n * TODO: provide an API returning data in JSON format\n ",
+ "range": [
+ 63283,
+ 63614
+ ],
+ "loc": {
+ "start": {
+ "line": 1783,
+ "column": 4
+ },
+ "end": {
+ "line": 1790,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "cols values of current row",
+ "range": [
+ 64004,
+ 64032
+ ],
+ "loc": {
+ "start": {
+ "line": 1802,
+ "column": 16
+ },
+ "end": {
+ "line": 1802,
+ "column": 44
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "data of searched column",
+ "range": [
+ 64075,
+ 64100
+ ],
+ "loc": {
+ "start": {
+ "line": 1804,
+ "column": 16
+ },
+ "end": {
+ "line": 1804,
+ "column": 41
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Get the display value of a row\n * @param {RowElement} DOM element of the row\n * @return {String} Usually 'none' or ''\n ",
+ "range": [
+ 64208,
+ 64357
+ ],
+ "loc": {
+ "start": {
+ "line": 1811,
+ "column": 4
+ },
+ "end": {
+ "line": 1815,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Validate/invalidate row by setting the 'validRow' attribute on the row\n * @param {Number} rowIndex Index of the row\n * @param {Boolean} isValid\n ",
+ "range": [
+ 64493,
+ 64666
+ ],
+ "loc": {
+ "start": {
+ "line": 1823,
+ "column": 4
+ },
+ "end": {
+ "line": 1827,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " always visible rows are valid",
+ "range": [
+ 64835,
+ 64867
+ ],
+ "loc": {
+ "start": {
+ "line": 1834,
+ "column": 8
+ },
+ "end": {
+ "line": 1834,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Validate all filterable rows\n ",
+ "range": [
+ 65568,
+ 65615
+ ],
+ "loc": {
+ "start": {
+ "line": 1860,
+ "column": 4
+ },
+ "end": {
+ "line": 1862,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String or Array} searcharg Search term\n ",
+ "range": [
+ 65853,
+ 66009
+ ],
+ "loc": {
+ "start": {
+ "line": 1873,
+ "column": 4
+ },
+ "end": {
+ "line": 1877,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "multiple selects",
+ "range": [
+ 66555,
+ 66573
+ ],
+ "loc": {
+ "start": {
+ "line": 1893,
+ "column": 8
+ },
+ "end": {
+ "line": 1893,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": "checklist",
+ "range": [
+ 67029,
+ 67040
+ ],
+ "loc": {
+ "start": {
+ "line": 1905,
+ "column": 8
+ },
+ "end": {
+ "line": 1905,
+ "column": 19
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Set them columns' widths as per configuration\n * @param {Number} rowIndex Optional row index to apply the widths to\n * @param {Element} tbl DOM element\n ",
+ "range": [
+ 67648,
+ 67826
+ ],
+ "loc": {
+ "start": {
+ "line": 1923,
+ "column": 4
+ },
+ "end": {
+ "line": 1927,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "jshint validthis:true ",
+ "range": [
+ 68204,
+ 68230
+ ],
+ "loc": {
+ "start": {
+ "line": 1943,
+ "column": 12
+ },
+ "end": {
+ "line": 1943,
+ "column": 38
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Makes defined rows always visible\n ",
+ "range": [
+ 68968,
+ 69020
+ ],
+ "loc": {
+ "start": {
+ "line": 1965,
"column": 4
},
"end": {
@@ -223819,560 +183464,20 @@
}
}
},
- {
- "type": "Line",
- "value": "mutiple select",
- "range": [
- 73370,
- 73386
- ],
- "loc": {
- "start": {
- "line": 1983,
- "column": 8
- },
- "end": {
- "line": 1983,
- "column": 24
- }
- }
- },
- {
- "type": "Line",
- "value": "removes last operator ||",
- "range": [
- 73784,
- 73810
- ],
- "loc": {
- "start": {
- "line": 1994,
- "column": 12
- },
- "end": {
- "line": 1994,
- "column": 38
- }
- }
- },
- {
- "type": "Line",
- "value": "checklist",
- "range": [
- 73891,
- 73902
- ],
- "loc": {
- "start": {
- "line": 1997,
- "column": 8
- },
- "end": {
- "line": 1997,
- "column": 19
- }
- }
- },
- {
- "type": "Line",
- "value": "removes last operator ||",
- "range": [
- 74080,
- 74106
- ],
- "loc": {
- "start": {
- "line": 2001,
- "column": 16
- },
- "end": {
- "line": 2001,
- "column": 42
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the filters' values\n * @return {Array} List of filters' values\n ",
- "range": [
- 74284,
- 74376
- ],
- "loc": {
- "start": {
- "line": 2010,
- "column": 4
- },
- "end": {
- "line": 2013,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the ID of the filter of a specified column\n * @param {Number} index Column's index\n * @return {String} ID of the filter element\n ",
- "range": [
- 74741,
- 74909
- ],
- "loc": {
- "start": {
- "line": 2028,
- "column": 4
- },
- "end": {
- "line": 2032,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the list of ids of filters matching a specified type.\n * Note: hidden filters are also returned\n *\n * @param {String} type Filter type string ('input', 'select', 'multiple',\n * 'checklist')\n * @param {Boolean} bool If true returns columns indexes instead of IDs\n * @return {[type]} List of element IDs or column indexes\n ",
- "range": [
- 75037,
- 75438
- ],
- "loc": {
- "start": {
- "line": 2040,
- "column": 4
- },
- "end": {
- "line": 2048,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the filter's DOM element for a given column\n * @param {Number} index Column's index\n * @return {DOMElement}\n ",
- "range": [
- 75839,
- 75985
- ],
- "loc": {
- "start": {
- "line": 2064,
- "column": 4
- },
- "end": {
- "line": 2068,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the number of cells for a given row index\n * @param {Number} rowIndex Index of the row\n * @return {Number} Number of cells\n ",
- "range": [
- 76096,
- 76262
- ],
- "loc": {
- "start": {
- "line": 2074,
- "column": 4
- },
- "end": {
- "line": 2078,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the number of filterable rows starting from reference row if\n * defined\n * @param {Boolean} includeHeaders Include the headers row\n * @return {Number} Number of filterable rows\n ",
- "range": [
- 76376,
- 76607
- ],
- "loc": {
- "start": {
- "line": 2084,
- "column": 4
- },
- "end": {
- "line": 2089,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the data of a given cell\n * @param {DOMElement} cell Cell's DOM object\n * @return {String}\n ",
- "range": [
- 76827,
- 76952
- ],
- "loc": {
- "start": {
- "line": 2097,
- "column": 4
- },
- "end": {
- "line": 2101,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": "Check for customCellData callback",
- "range": [
- 77018,
- 77053
- ],
- "loc": {
- "start": {
- "line": 2104,
- "column": 8
- },
- "end": {
- "line": 2104,
- "column": 43
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the table data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
- "range": [
- 77277,
- 77681
- ],
- "loc": {
- "start": {
- "line": 2112,
- "column": 4
- },
- "end": {
- "line": 2123,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the filtered data with following format:\n * [\n * [rowIndex, [value0, value1...]],\n * [rowIndex, [value0, value1...]]\n * ]\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array}\n *\n * TODO: provide an API returning data in JSON format\n ",
- "range": [
- 78578,
- 78985
- ],
- "loc": {
- "start": {
- "line": 2148,
- "column": 4
- },
- "end": {
- "line": 2159,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Return the filtered data for a given column index\n * @param {Number} colIndex Colmun's index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @return {Array} Flat list of values ['val0','val1','val2'...]\n *\n * TODO: provide an API returning data in JSON format\n ",
- "range": [
- 80044,
- 80375
- ],
- "loc": {
- "start": {
- "line": 2189,
- "column": 4
- },
- "end": {
- "line": 2196,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": "cols values of current row",
- "range": [
- 80765,
- 80793
- ],
- "loc": {
- "start": {
- "line": 2208,
- "column": 16
- },
- "end": {
- "line": 2208,
- "column": 44
- }
- }
- },
- {
- "type": "Line",
- "value": "data of searched column",
- "range": [
- 80836,
- 80861
- ],
- "loc": {
- "start": {
- "line": 2210,
- "column": 16
- },
- "end": {
- "line": 2210,
- "column": 41
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Get the display value of a row\n * @param {RowElement} DOM element of the row\n * @return {String} Usually 'none' or ''\n ",
- "range": [
- 80969,
- 81118
- ],
- "loc": {
- "start": {
- "line": 2217,
- "column": 4
- },
- "end": {
- "line": 2221,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Validate/invalidate row by setting the 'validRow' attribute on the row\n * @param {Number} rowIndex Index of the row\n * @param {Boolean} isValid\n ",
- "range": [
- 81254,
- 81427
- ],
- "loc": {
- "start": {
- "line": 2229,
- "column": 4
- },
- "end": {
- "line": 2233,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": " always visible rows are valid",
- "range": [
- 81596,
- 81628
- ],
- "loc": {
- "start": {
- "line": 2240,
- "column": 8
- },
- "end": {
- "line": 2240,
- "column": 40
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Validate all filterable rows\n ",
- "range": [
- 81988,
- 82035
- ],
- "loc": {
- "start": {
- "line": 2254,
- "column": 4
- },
- "end": {
- "line": 2256,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Set search value to a given filter\n * @param {Number} index Column's index\n * @param {String} searcharg Search term\n ",
- "range": [
- 82314,
- 82460
- ],
- "loc": {
- "start": {
- "line": 2268,
- "column": 4
- },
- "end": {
- "line": 2272,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": "multiple selects",
- "range": [
- 82878,
- 82896
- ],
- "loc": {
- "start": {
- "line": 2285,
- "column": 8
- },
- "end": {
- "line": 2285,
- "column": 26
- }
- }
- },
- {
- "type": "Line",
- "value": " let ct = 0; //keywords counter",
- "range": [
- 83022,
- 83055
- ],
- "loc": {
- "start": {
- "line": 2288,
- "column": 12
- },
- "end": {
- "line": 2288,
- "column": 45
- }
- }
- },
- {
- "type": "Line",
- "value": "if",
- "range": [
- 83523,
- 83527
- ],
- "loc": {
- "start": {
- "line": 2300,
- "column": 17
- },
- "end": {
- "line": 2300,
- "column": 21
- }
- }
- },
- {
- "type": "Line",
- "value": "for j",
- "range": [
- 83541,
- 83548
- ],
- "loc": {
- "start": {
- "line": 2301,
- "column": 13
- },
- "end": {
- "line": 2301,
- "column": 20
- }
- }
- },
- {
- "type": "Line",
- "value": "checklist",
- "range": [
- 83567,
- 83578
- ],
- "loc": {
- "start": {
- "line": 2303,
- "column": 8
- },
- "end": {
- "line": 2303,
- "column": 19
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Set them columns' widths as per configuration\n * @param {Number} rowIndex Optional row index to apply the widths to\n * @param {Element} tbl DOM element\n ",
- "range": [
- 84571,
- 84749
- ],
- "loc": {
- "start": {
- "line": 2330,
- "column": 4
- },
- "end": {
- "line": 2334,
- "column": 7
- }
- }
- },
- {
- "type": "Block",
- "value": "jshint validthis:true ",
- "range": [
- 85142,
- 85168
- ],
- "loc": {
- "start": {
- "line": 2350,
- "column": 12
- },
- "end": {
- "line": 2350,
- "column": 38
- }
- }
- },
- {
- "type": "Block",
- "value": "*\n * Makes defined rows always visible\n ",
- "range": [
- 85906,
- 85958
- ],
- "loc": {
- "start": {
- "line": 2372,
- "column": 4
- },
- "end": {
- "line": 2374,
- "column": 7
- }
- }
- },
{
"type": "Line",
"value": "row index cannot be > nrows",
"range": [
- 86166,
- 86195
+ 69228,
+ 69257
],
"loc": {
"start": {
- "line": 2381,
+ "line": 1974,
"column": 12
},
"end": {
- "line": 2381,
+ "line": 1974,
"column": 41
}
}
@@ -224381,34 +183486,106 @@
"type": "Block",
"value": "*\n * Clear all the filters' values\n ",
"range": [
- 86385,
- 86433
+ 69374,
+ 69422
],
"loc": {
"start": {
- "line": 2392,
+ "line": 1981,
"column": 4
},
"end": {
- "line": 2394,
+ "line": 1983,
"column": 7
}
}
},
+ {
+ "type": "Line",
+ "value": " if(this.linkedFilters){",
+ "range": [
+ 69793,
+ 69819
+ ],
+ "loc": {
+ "start": {
+ "line": 1997,
+ "column": 8
+ },
+ "end": {
+ "line": 1997,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " this.linkFilters();",
+ "range": [
+ 69828,
+ 69854
+ ],
+ "loc": {
+ "start": {
+ "line": 1998,
+ "column": 8
+ },
+ "end": {
+ "line": 1998,
+ "column": 34
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " }",
+ "range": [
+ 69863,
+ 69867
+ ],
+ "loc": {
+ "start": {
+ "line": 1999,
+ "column": 8
+ },
+ "end": {
+ "line": 1999,
+ "column": 12
+ }
+ }
+ },
{
"type": "Block",
"value": "*\n * Clears filtered columns visual indicator (background color)\n ",
"range": [
- 87025,
- 87103
+ 70032,
+ 70110
],
"loc": {
"start": {
- "line": 2413,
+ "line": 2007,
"column": 4
},
"end": {
- "line": 2415,
+ "line": 2009,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Mark currently filtered column\n * @param {Number} colIndex Column index\n ",
+ "range": [
+ 70330,
+ 70425
+ ],
+ "loc": {
+ "start": {
+ "line": 2017,
+ "column": 4
+ },
+ "end": {
+ "line": 2020,
"column": 7
}
}
@@ -224417,16 +183594,16 @@
"type": "Block",
"value": "*\n * Refresh the filters subject to linking ('select', 'multiple',\n * 'checklist' type)\n ",
"range": [
- 87323,
- 87428
+ 70901,
+ 71006
],
"loc": {
"start": {
- "line": 2423,
+ "line": 2035,
"column": 4
},
"end": {
- "line": 2426,
+ "line": 2038,
"column": 7
}
}
@@ -224435,16 +183612,16 @@
"type": "Line",
"value": " Welcome to cyclomatic complexity hell :)",
"range": [
- 88141,
- 88184
+ 71742,
+ 71785
],
"loc": {
"start": {
- "line": 2444,
+ "line": 2056,
"column": 12
},
"end": {
- "line": 2444,
+ "line": 2056,
"column": 55
}
}
@@ -224453,16 +183630,16 @@
"type": "Line",
"value": " TODO: simplify/refactor if statement",
"range": [
- 88197,
- 88236
+ 71798,
+ 71837
],
"loc": {
"start": {
- "line": 2445,
+ "line": 2057,
"column": 12
},
"end": {
- "line": 2445,
+ "line": 2057,
"column": 51
}
}
@@ -224471,16 +183648,16 @@
"type": "Line",
"value": "1st option needs to be inserted",
"range": [
- 88825,
- 88858
+ 72426,
+ 72459
],
"loc": {
"start": {
- "line": 2459,
+ "line": 2071,
"column": 16
},
"end": {
- "line": 2459,
+ "line": 2071,
"column": 49
}
}
@@ -224489,160 +183666,34 @@
"type": "Line",
"value": " for i",
"range": [
- 89410,
- 89418
+ 73145,
+ 73153
],
"loc": {
"start": {
- "line": 2475,
+ "line": 2089,
"column": 9
},
"end": {
- "line": 2475,
+ "line": 2089,
"column": 17
}
}
},
- {
- "type": "Block",
- "value": "*\n * Re-generate the filters grid bar when previously removed\n ",
- "range": [
- 89430,
- 89505
- ],
- "loc": {
- "start": {
- "line": 2478,
- "column": 4
- },
- "end": {
- "line": 2480,
- "column": 7
- }
- }
- },
- {
- "type": "Line",
- "value": " grid was removed, grid row element is stored in fltGridEl property",
- "range": [
- 89779,
- 89848
- ],
- "loc": {
- "start": {
- "line": 2492,
- "column": 8
- },
- "end": {
- "line": 2492,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " If table has a thead ensure the filters row is appended in the",
- "range": [
- 89891,
- 89956
- ],
- "loc": {
- "start": {
- "line": 2494,
- "column": 12
- },
- "end": {
- "line": 2494,
- "column": 77
- }
- }
- },
- {
- "type": "Line",
- "value": " thead element",
- "range": [
- 89969,
- 89985
- ],
- "loc": {
- "start": {
- "line": 2495,
- "column": 12
- },
- "end": {
- "line": 2495,
- "column": 28
- }
- }
- },
- {
- "type": "Line",
- "value": " filters are appended in external placeholders elements",
- "range": [
- 90285,
- 90342
- ],
- "loc": {
- "start": {
- "line": 2504,
- "column": 8
- },
- "end": {
- "line": 2504,
- "column": 65
- }
- }
- },
- {
- "type": "Line",
- "value": "IE special treatment for gridLayout, appended filters are",
- "range": [
- 90794,
- 90853
- ],
- "loc": {
- "start": {
- "line": 2515,
- "column": 16
- },
- "end": {
- "line": 2515,
- "column": 75
- }
- }
- },
- {
- "type": "Line",
- "value": "empty",
- "range": [
- 90870,
- 90877
- ],
- "loc": {
- "start": {
- "line": 2516,
- "column": 16
- },
- "end": {
- "line": 2516,
- "column": 23
- }
- }
- },
{
"type": "Block",
"value": "*\n * Determines if passed filter column implements exact query match\n * @param {Number} colIndex [description]\n * @return {Boolean} [description]\n ",
"range": [
- 91763,
- 91941
+ 73165,
+ 73343
],
"loc": {
"start": {
- "line": 2546,
+ "line": 2092,
"column": 4
},
"end": {
- "line": 2550,
+ "line": 2096,
"column": 7
}
}
@@ -224651,16 +183702,16 @@
"type": "Block",
"value": "*\n * Check if passed script or stylesheet is already imported\n * @param {String} filePath Ressource path\n * @param {String} type Possible values: 'script' or 'link'\n * @return {Boolean}\n ",
"range": [
- 92144,
- 92363
+ 73546,
+ 73765
],
"loc": {
"start": {
- "line": 2557,
+ "line": 2103,
"column": 4
},
"end": {
- "line": 2562,
+ "line": 2108,
"column": 7
}
}
@@ -224669,16 +183720,16 @@
"type": "Block",
"value": "*\n * Import script or stylesheet\n * @param {String} fileId Ressource ID\n * @param {String} filePath Ressource path\n * @param {Function} callback Callback\n * @param {String} type Possible values: 'script' or 'link'\n ",
"range": [
- 92885,
- 93144
+ 74287,
+ 74546
],
"loc": {
"start": {
- "line": 2580,
+ "line": 2126,
"column": 4
},
"end": {
- "line": 2586,
+ "line": 2132,
"column": 7
}
}
@@ -224687,16 +183738,16 @@
"type": "Line",
"value": "Browser <> IE onload event works only for scripts, not for stylesheets",
"range": [
- 93870,
- 93942
+ 75272,
+ 75344
],
"loc": {
"start": {
- "line": 2611,
+ "line": 2157,
"column": 8
},
"end": {
- "line": 2611,
+ "line": 2157,
"column": 80
}
}
@@ -224705,16 +183756,16 @@
"type": "Block",
"value": "*\n * Check if table has filters grid\n * @return {Boolean}\n ",
"range": [
- 94485,
- 94560
+ 75887,
+ 75962
],
"loc": {
"start": {
- "line": 2628,
+ "line": 2174,
"column": 4
},
"end": {
- "line": 2631,
+ "line": 2177,
"column": 7
}
}
@@ -224723,16 +183774,16 @@
"type": "Block",
"value": "*\n * Get list of filter IDs\n * @return {[type]} [description]\n ",
"range": [
- 94617,
- 94696
+ 76019,
+ 76098
],
"loc": {
"start": {
- "line": 2636,
+ "line": 2182,
"column": 4
},
"end": {
- "line": 2639,
+ "line": 2185,
"column": 7
}
}
@@ -224741,16 +183792,16 @@
"type": "Block",
"value": "*\n * Get filtered (valid) rows indexes\n * @param {Boolean} reCalc Force calculation of filtered rows list\n * @return {Array} List of row indexes\n ",
"range": [
- 94762,
- 94938
+ 76164,
+ 76340
],
"loc": {
"start": {
- "line": 2644,
+ "line": 2190,
"column": 4
},
"end": {
- "line": 2648,
+ "line": 2194,
"column": 7
}
}
@@ -224759,16 +183810,16 @@
"type": "Block",
"value": "*\n * Get the index of the row containing the filters\n * @return {Number}\n ",
"range": [
- 95616,
- 95706
+ 77018,
+ 77108
],
"loc": {
"start": {
- "line": 2671,
+ "line": 2217,
"column": 4
},
"end": {
- "line": 2674,
+ "line": 2220,
"column": 7
}
}
@@ -224777,16 +183828,16 @@
"type": "Block",
"value": "*\n * Get the index of the headers row\n * @return {Number}\n ",
"range": [
- 95781,
- 95856
+ 77183,
+ 77258
],
"loc": {
"start": {
- "line": 2679,
+ "line": 2225,
"column": 4
},
"end": {
- "line": 2682,
+ "line": 2228,
"column": 7
}
}
@@ -224795,16 +183846,16 @@
"type": "Block",
"value": "*\n * Get the row index from where the filtering process start (1st filterable\n * row)\n * @return {Number}\n ",
"range": [
- 95926,
- 96053
+ 77328,
+ 77455
],
"loc": {
"start": {
- "line": 2687,
+ "line": 2233,
"column": 4
},
"end": {
- "line": 2691,
+ "line": 2237,
"column": 7
}
}
@@ -224813,16 +183864,16 @@
"type": "Block",
"value": "*\n * Get the index of the last row\n * @return {Number}\n ",
"range": [
- 96117,
- 96189
+ 77519,
+ 77591
],
"loc": {
"start": {
- "line": 2696,
+ "line": 2242,
"column": 4
},
"end": {
- "line": 2699,
+ "line": 2245,
"column": 7
}
}
@@ -224831,16 +183882,16 @@
"type": "Block",
"value": "*\n * Get the header DOM element for a given column index\n * @param {Number} colIndex Column index\n * @return {Object}\n ",
"range": [
- 96314,
- 96454
+ 77716,
+ 77856
],
"loc": {
"start": {
- "line": 2707,
+ "line": 2253,
"column": 4
},
"end": {
- "line": 2711,
+ "line": 2257,
"column": 7
}
}
@@ -224849,16 +183900,16 @@
"type": "Block",
"value": "*\n * Return the list of headers' text\n * @param {Boolean} excludeHiddenCols Optional: exclude hidden columns\n * @return {Array} list of headers' text\n ",
"range": [
- 97069,
- 97242
+ 78471,
+ 78644
],
"loc": {
"start": {
- "line": 2732,
+ "line": 2278,
"column": 4
},
"end": {
- "line": 2736,
+ "line": 2282,
"column": 7
}
}
@@ -224867,16 +183918,16 @@
"type": "Block",
"value": "*\n * Return the filter type for a specified column\n * @param {Number} colIndex Column's index\n * @return {String}\n ",
"range": [
- 97755,
- 97891
+ 79157,
+ 79293
],
"loc": {
"start": {
- "line": 2752,
+ "line": 2298,
"column": 4
},
"end": {
- "line": 2756,
+ "line": 2302,
"column": 7
}
}
@@ -224885,16 +183936,16 @@
"type": "Block",
"value": "*\n * Get the total number of filterable rows\n * @return {Number}\n ",
"range": [
- 98045,
- 98127
+ 79447,
+ 79529
],
"loc": {
"start": {
- "line": 2762,
+ "line": 2308,
"column": 4
},
"end": {
- "line": 2765,
+ "line": 2311,
"column": 7
}
}
@@ -224903,16 +183954,16 @@
"type": "Block",
"value": "*\n * Get the configuration object (literal object)\n * @return {Object}\n ",
"range": [
- 98204,
- 98292
+ 79606,
+ 79694
],
"loc": {
"start": {
- "line": 2770,
+ "line": 2316,
"column": 4
},
"end": {
- "line": 2773,
+ "line": 2319,
"column": 7
}
}
diff --git a/docs/class/src/emitter.js~Emitter.html b/docs/class/src/emitter.js~Emitter.html
new file mode 100644
index 00000000..f5ec9e07
--- /dev/null
+++ b/docs/class/src/emitter.js~Emitter.html
@@ -0,0 +1,559 @@
+
+
+
+
+
+ Emitter | tablefilter v0.1.9 API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Emitter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Constructor Summary
+ Public Constructor
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Member Summary
+ Public Members
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Method Summary
+ Public Methods
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Unsubscribe to an event
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Constructors
+
+
+
+ public
+
+
+
+
+ constructor
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Members
+
+
+
+ public
+
+
+
+
+ events : Object
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Methods
+
+
+
+ public
+
+
+
+
+ emit (evt: String )
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ evt
+ String
+
+ Event name followed by any other argument passed to
+the invoked function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ off (evts: Array , fn: Function )
+
+
+
+ source
+
+
+
+
+
+
+
Unsubscribe to an event
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ evts
+ Array
+
+ Collection of event names
+
+
+
+ fn
+ Function
+
+ Function invoked when event is emitted
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ on (evts: Array , fn: Function )
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ evts
+ Array
+
+ Collection of event names
+
+
+
+ fn
+ Function
+
+ Function invoked when event is emitted
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html b/docs/class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html
index be08e022..c9d4441d 100644
--- a/docs/class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html
+++ b/docs/class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html
@@ -3,7 +3,7 @@
- AdapterEzEditTable | tablefilter v0.0.23 API Document
+ AdapterEzEditTable | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -199,6 +200,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -476,6 +502,32 @@
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
@@ -630,6 +682,46 @@ grid features (selection and edition):
+
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -965,7 +1057,7 @@ grid features (selection and edition):
- source
+ source
@@ -1006,7 +1098,7 @@ grid features (selection and edition):
- source
+ source
@@ -1058,7 +1150,7 @@ grid features (selection and edition):
- source
+ source
@@ -1087,6 +1179,47 @@ grid features (selection and edition):
+
+
+
+ public
+
+
+
+
+ toggle ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/class/src/extensions/colOps/colOps.js~ColOps.html b/docs/class/src/extensions/colOps/colOps.js~ColOps.html
index 16e671e1..46a71021 100644
--- a/docs/class/src/extensions/colOps/colOps.js~ColOps.html
+++ b/docs/class/src/extensions/colOps/colOps.js~ColOps.html
@@ -3,7 +3,7 @@
- ColOps | tablefilter v0.0.23 API Document
+ ColOps | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -571,7 +572,7 @@
- source
+ source
@@ -628,7 +629,7 @@ Configuration options are stored in 'opts' property
- source
+ source
diff --git a/docs/class/src/extensions/colsVisibility/colsVisibility.js~ColsVisibility.html b/docs/class/src/extensions/colsVisibility/colsVisibility.js~ColsVisibility.html
index 822c9d7d..5ac29f77 100644
--- a/docs/class/src/extensions/colsVisibility/colsVisibility.js~ColsVisibility.html
+++ b/docs/class/src/extensions/colsVisibility/colsVisibility.js~ColsVisibility.html
@@ -3,7 +3,7 @@
- ColsVisibility | tablefilter v0.0.23 API Document
+ ColsVisibility | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/class/src/extensions/filtersVisibility/filtersVisibility.js~FiltersVisibility.html b/docs/class/src/extensions/filtersVisibility/filtersVisibility.js~FiltersVisibility.html
index 26fcb262..0bf67164 100644
--- a/docs/class/src/extensions/filtersVisibility/filtersVisibility.js~FiltersVisibility.html
+++ b/docs/class/src/extensions/filtersVisibility/filtersVisibility.js~FiltersVisibility.html
@@ -3,7 +3,7 @@
- FiltersVisibility | tablefilter v0.0.23 API Document
+ FiltersVisibility | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html b/docs/class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html
index 36bedd18..8e344be4 100644
--- a/docs/class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html
+++ b/docs/class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html
@@ -3,7 +3,7 @@
- AdapterSortableTable | tablefilter v0.0.23 API Document
+ AdapterSortableTable | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -224,6 +225,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -967,6 +993,46 @@
+
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1499,7 +1565,7 @@
- source
+ source
@@ -1622,7 +1688,7 @@
- source
+ source
@@ -1662,7 +1728,7 @@
- source
+ source
@@ -1703,7 +1769,7 @@
- source
+ source
@@ -1743,7 +1809,7 @@
- source
+ source
@@ -1783,7 +1849,7 @@
- source
+ source
@@ -1823,7 +1889,7 @@
- source
+ source
diff --git a/docs/class/src/modules/alternateRows.js~AlternateRows.html b/docs/class/src/modules/alternateRows.js~AlternateRows.html
index b256e125..17479808 100644
--- a/docs/class/src/modules/alternateRows.js~AlternateRows.html
+++ b/docs/class/src/modules/alternateRows.js~AlternateRows.html
@@ -3,7 +3,7 @@
-
AlternateRows | tablefilter v0.0.23 API Document
+
AlternateRows | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -283,6 +284,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Set/remove row background based on row validation
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -451,7 +503,7 @@
- source
+ source
@@ -534,7 +586,7 @@
- source
+ source
@@ -604,6 +656,111 @@
+
+
+
+ public
+
+
+
+
+ processAll ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ processRow (rowIdx: Number , isValid: Boolean )
+
+
+
+ source
+
+
+
+
+
+
+
Set/remove row background based on row validation
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ rowIdx
+ Number
+
+ Row index
+
+
+
+ isValid
+ Boolean
+
+ Valid row flag
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -616,7 +773,7 @@
- source
+ source
@@ -674,7 +831,7 @@
- source
+ source
diff --git a/docs/class/src/modules/checkList.js~CheckList.html b/docs/class/src/modules/checkList.js~CheckList.html
index e8824490..cad9a371 100644
--- a/docs/class/src/modules/checkList.js~CheckList.html
+++ b/docs/class/src/modules/checkList.js~CheckList.html
@@ -3,7 +3,7 @@
-
CheckList | tablefilter v0.0.23 API Document
+
CheckList | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,13 +68,13 @@
@@ -83,7 +84,7 @@
-
+
Extends: src/modules/feature~Feature → CheckList
@@ -374,6 +375,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -466,31 +492,6 @@
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -569,7 +570,58 @@
-
Build checklist UI asynchronously
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Initialize checklist filter
@@ -609,6 +661,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -634,6 +711,32 @@
+
+
+
+
+
+
+
+
Select filter options programmatically
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -675,7 +778,7 @@
- source
+ source
@@ -736,7 +839,7 @@
- source
+ source
@@ -776,7 +879,7 @@
- source
+ source
@@ -816,7 +919,7 @@
- source
+ source
@@ -856,7 +959,7 @@
- source
+ source
@@ -896,7 +999,7 @@
- source
+ source
@@ -936,7 +1039,7 @@
- source
+ source
@@ -976,7 +1079,7 @@
- source
+ source
@@ -1016,7 +1119,7 @@
- source
+ source
@@ -1056,7 +1159,47 @@
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- public
-
-
-
-
- tf : *
-
-
-
- source
+ source
@@ -1299,7 +1402,7 @@
- source
+ source
@@ -1364,7 +1467,7 @@
- source
+ source
@@ -1439,14 +1542,14 @@
- source
+ source
-
Build checklist UI asynchronously
+
@@ -1499,6 +1602,118 @@
+
+
+
+ public
+
+
+
+
+ destroy ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ init (colIndex: Number , isExternal: Boolean , container: DOMElement )
+
+
+
+ source
+
+
+
+
+
+
+
Initialize checklist filter
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ colIndex
+ Number
+
+ Column index
+
+
+
+ isExternal
+ Boolean
+
+ External filter flag
+
+
+
+ container
+ DOMElement
+
+ Dom element containing the filter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1557,17 +1772,17 @@
-
+
public
- optionClick (evt: * )
+ onCheckListClick (evt: * )
- source
+ source
@@ -1611,6 +1826,127 @@
+
+
+
+ public
+
+
+
+
+ optionClick (evt: * )
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ evt
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ selectOptions (colIndex: Number , values: Array )
+
+
+
+ source
+
+
+
+
+
+
+
Select filter options programmatically
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ colIndex
+ Number
+
+ Column index
+
+
+
+ values
+ Array
+
+ Array of option values to select
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1623,7 +1959,7 @@
- source
+ source
diff --git a/docs/class/src/modules/clearButton.js~ClearButton.html b/docs/class/src/modules/clearButton.js~ClearButton.html
index f0411b0b..54858d03 100644
--- a/docs/class/src/modules/clearButton.js~ClearButton.html
+++ b/docs/class/src/modules/clearButton.js~ClearButton.html
@@ -3,7 +3,7 @@
-
ClearButton | tablefilter v0.0.23 API Document
+
ClearButton | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/class/src/modules/dropdown.js~Dropdown.html b/docs/class/src/modules/dropdown.js~Dropdown.html
index 02426983..8fe32d5d 100644
--- a/docs/class/src/modules/dropdown.js~Dropdown.html
+++ b/docs/class/src/modules/dropdown.js~Dropdown.html
@@ -3,7 +3,7 @@
-
Dropdown | tablefilter v0.0.23 API Document
+
Dropdown | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,13 +68,13 @@
@@ -83,7 +84,7 @@
-
+
Extends: src/modules/feature~Feature → Dropdown
@@ -199,6 +200,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -366,31 +392,6 @@
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -437,7 +438,7 @@
@@ -469,7 +470,134 @@
-
Build drop-down filter UI asynchronously
+
Build drop-down filter UI
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Initialize drop-down filter
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Select filter options programmatically
@@ -499,7 +627,7 @@
- source
+ source
@@ -560,7 +688,7 @@
- source
+ source
@@ -600,7 +728,47 @@
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ initialized : boolean
+
+
+
+ source
@@ -640,7 +808,7 @@
- source
+ source
@@ -680,7 +848,7 @@
- source
+ source
@@ -720,7 +888,7 @@
- source
+ source
@@ -760,7 +928,7 @@
- source
+ source
@@ -800,7 +968,7 @@
- source
+ source
@@ -840,7 +1008,7 @@
- source
+ source
@@ -880,47 +1048,7 @@
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- tf : *
-
-
-
- source
+ source
@@ -963,7 +1091,7 @@
- source
+ source
@@ -1027,11 +1155,11 @@
-
addOptions (colIndex: Number , slc: Object , isLinked: Boolean , excludedOpts: Array , fltsValues: Array , fltArr: Array )
+
addOptions (colIndex: Number , slc: Object , isLinked: Boolean , excludedOpts: Array )
- source
+ source
@@ -1079,20 +1207,6 @@
Array of excluded options
-
- fltsValues
- Array
-
- Collection of persisted filter values
-
-
-
- fltArr
- Array
-
- Collection of persisted filter values
-
-
@@ -1124,14 +1238,14 @@
- source
+ source
- Build drop-down filter UI asynchronously
+
Build drop-down filter UI
@@ -1191,6 +1305,279 @@
+
+
+
+ public
+
+
+
+
+ destroy ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ init (colIndex: Number , isExternal: Boolean , container: DOMElement )
+
+
+
+ source
+
+
+
+
+
+
+
Initialize drop-down filter
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ colIndex
+ Number
+
+ Column index
+
+
+
+ isExternal
+ Boolean
+
+ External filter flag
+
+
+
+ container
+ DOMElement
+
+ Dom element containing the filter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ onSlcChange ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ onSlcFocus (e: * )
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ e
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ selectOptions (colIndex: Number , values: Array )
+
+
+
+ source
+
+
+
+
+
+
+
Select filter options programmatically
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ colIndex
+ Number
+
+ Column index
+
+
+
+ values
+ Array
+
+ Array of option values to select
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/class/src/modules/feature.js~Feature.html b/docs/class/src/modules/feature.js~Feature.html
index 57143403..6153da84 100644
--- a/docs/class/src/modules/feature.js~Feature.html
+++ b/docs/class/src/modules/feature.js~Feature.html
@@ -3,7 +3,7 @@
- Feature | tablefilter v0.0.23 API Document
+ Feature | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -173,6 +174,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -538,6 +564,46 @@
+
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -630,7 +696,7 @@
- source
+ source
@@ -713,7 +779,7 @@
- source
+ source
@@ -753,7 +819,7 @@
- source
+ source
@@ -793,7 +859,7 @@
- source
+ source
@@ -833,7 +899,7 @@
- source
+ source
@@ -873,7 +939,7 @@
- source
+ source
@@ -923,7 +989,7 @@
- source
+ source
diff --git a/docs/class/src/modules/gridLayout.js~GridLayout.html b/docs/class/src/modules/gridLayout.js~GridLayout.html
index b2ce5312..a14d3f6f 100644
--- a/docs/class/src/modules/gridLayout.js~GridLayout.html
+++ b/docs/class/src/modules/gridLayout.js~GridLayout.html
@@ -3,7 +3,7 @@
-
GridLayout | tablefilter v0.0.23 API Document
+
GridLayout | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -1324,7 +1325,7 @@
- source
+ source
@@ -1364,7 +1365,7 @@
- source
+ source
@@ -1404,7 +1405,7 @@
- source
+ source
@@ -1724,7 +1725,7 @@
- source
+ source
@@ -1764,7 +1765,7 @@
- source
+ source
@@ -1804,7 +1805,7 @@
- source
+ source
@@ -1847,7 +1848,7 @@
- source
+ source
@@ -1888,7 +1889,7 @@
- source
+ source
diff --git a/docs/class/src/modules/help.js~Help.html b/docs/class/src/modules/help.js~Help.html
index 889411b3..78879019 100644
--- a/docs/class/src/modules/help.js~Help.html
+++ b/docs/class/src/modules/help.js~Help.html
@@ -3,7 +3,7 @@
-
Help | tablefilter v0.0.23 API Document
+
Help | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -979,7 +980,7 @@
- source
+ source
@@ -1222,7 +1223,7 @@
- source
+ source
@@ -1263,7 +1264,7 @@
- source
+ source
@@ -1303,7 +1304,7 @@
- source
+ source
diff --git a/docs/class/src/modules/highlightKeywords.js~HighlightKeyword.html b/docs/class/src/modules/highlightKeywords.js~HighlightKeyword.html
index 58a4ad21..076aaf7e 100644
--- a/docs/class/src/modules/highlightKeywords.js~HighlightKeyword.html
+++ b/docs/class/src/modules/highlightKeywords.js~HighlightKeyword.html
@@ -3,7 +3,7 @@
-
HighlightKeyword | tablefilter v0.0.23 API Document
+
HighlightKeyword | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,13 +68,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -231,6 +257,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -257,6 +308,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -324,7 +400,7 @@
- source
+ source
@@ -374,6 +450,46 @@
Public Members
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Methods
+
+
+ public
+
+
+
+
+ destroy ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
public
@@ -508,7 +664,7 @@
- source
+ source
@@ -567,6 +723,46 @@
+
+
+
+ public
+
+
+
+
+ init ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -579,7 +775,7 @@
- source
+ source
@@ -643,7 +839,7 @@
- source
+ source
diff --git a/docs/class/src/modules/loader.js~Loader.html b/docs/class/src/modules/loader.js~Loader.html
index 9924768d..53d1f935 100644
--- a/docs/class/src/modules/loader.js~Loader.html
+++ b/docs/class/src/modules/loader.js~Loader.html
@@ -3,7 +3,7 @@
-
Loader | tablefilter v0.0.23 API Document
+
Loader | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -557,7 +558,7 @@
- source
+ source
@@ -960,7 +961,7 @@
- source
+ source
@@ -1040,7 +1041,7 @@
- source
+ source
diff --git a/docs/class/src/modules/noResults.js~NoResults.html b/docs/class/src/modules/noResults.js~NoResults.html
index eefc193e..b2ef8371 100644
--- a/docs/class/src/modules/noResults.js~NoResults.html
+++ b/docs/class/src/modules/noResults.js~NoResults.html
@@ -3,7 +3,7 @@
-
NoResults | tablefilter v0.0.23 API Document
+
NoResults | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -573,6 +574,31 @@
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -857,7 +883,7 @@
- source
+ source
@@ -1140,7 +1166,7 @@
- source
+ source
@@ -1180,7 +1206,7 @@
- source
+ source
@@ -1260,7 +1286,7 @@
- source
+ source
@@ -1300,7 +1326,47 @@
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ toggle ()
+
+
+
+ source
diff --git a/docs/class/src/modules/paging.js~Paging.html b/docs/class/src/modules/paging.js~Paging.html
index 3a8ca660..58c020da 100644
--- a/docs/class/src/modules/paging.js~Paging.html
+++ b/docs/class/src/modules/paging.js~Paging.html
@@ -3,7 +3,7 @@
-
Paging | tablefilter v0.0.23 API Document
+
Paging | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -1317,7 +1318,7 @@
-
Change the page asynchronously according to passed index
+
Change the page according to passed index
@@ -1343,8 +1344,8 @@
-
Change rows asynchronously according to page results
-
+
Change rows according to page results drop-down
+
@@ -1519,13 +1520,13 @@
-
Re-set asynchronously page nb at page re-load
+
Re-set page nb at page re-load
@@ -1545,13 +1546,65 @@
-
Re-set asynchronously page length at page re-load
+
Re-set page length value at page re-load
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Reset paging info from scratch after a filtering process
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Re-set persisted pagination info
@@ -2240,7 +2293,7 @@
- source
+ source
@@ -3563,14 +3616,14 @@
- source
+ source
- Change the page asynchronously according to passed index
+
Change the page according to passed index
@@ -3621,14 +3674,15 @@
- source
+ source
-
Change rows asynchronously according to page results
+
Change rows according to page results drop-down
+TODO: accept a parameter setting the results per page length
@@ -3662,7 +3716,7 @@
- source
+ source
@@ -3703,7 +3757,7 @@
- source
+ source
@@ -3755,7 +3809,7 @@
- source
+ source
@@ -3854,7 +3908,7 @@
- source
+ source
@@ -3895,7 +3949,7 @@
- source
+ source
@@ -3949,23 +4003,39 @@
-
resetPage ()
+
resetPage (name: * )
- source
+ source
-
Re-set asynchronously page nb at page re-load
+
Re-set page nb at page re-load
-
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ name
+ *
+
+
+
+
+
+
@@ -3990,18 +4060,116 @@
-
resetPageLength ()
+
resetPageLength (name: * )
- source
+ source
-
Re-set asynchronously page length at page re-load
+
Re-set page length value at page re-load
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ name
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ resetPagingInfo ()
+
+
+
+ source
+
+
+
+
+
+
+
Reset paging info from scratch after a filtering process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ resetValues ()
+
+
+
+ source
+
+
+
+
+
+
+
Re-set persisted pagination info
@@ -4035,7 +4203,7 @@
- source
+ source
@@ -4094,7 +4262,7 @@
- source
+ source
@@ -4153,7 +4321,7 @@ Refresh paging select according to number of pages
- source
+ source
diff --git a/docs/class/src/modules/popupFilter.js~PopupFilter.html b/docs/class/src/modules/popupFilter.js~PopupFilter.html
index fe9dc579..d64d656a 100644
--- a/docs/class/src/modules/popupFilter.js~PopupFilter.html
+++ b/docs/class/src/modules/popupFilter.js~PopupFilter.html
@@ -3,7 +3,7 @@
-
PopupFilter | tablefilter v0.0.23 API Document
+
PopupFilter | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -619,7 +620,7 @@
-
Build specified icon
+
Apply specified icon state
@@ -891,7 +892,7 @@
- source
+ source
@@ -1171,7 +1172,7 @@
- source
+ source
@@ -1534,7 +1535,7 @@
- source
+ source
@@ -1599,7 +1600,7 @@
- source
+ source
@@ -1640,14 +1641,14 @@
- source
+ source
-
Build specified icon
+
Apply specified icon state
@@ -1705,7 +1706,7 @@
- source
+ source
@@ -1746,7 +1747,7 @@
- source
+ source
@@ -1804,7 +1805,7 @@
- source
+ source
@@ -1942,7 +1943,7 @@
- source
+ source
@@ -1983,7 +1984,7 @@
- source
+ source
diff --git a/docs/class/src/modules/rowsCounter.js~RowsCounter.html b/docs/class/src/modules/rowsCounter.js~RowsCounter.html
index 89fb9ee2..975894da 100644
--- a/docs/class/src/modules/rowsCounter.js~RowsCounter.html
+++ b/docs/class/src/modules/rowsCounter.js~RowsCounter.html
@@ -3,7 +3,7 @@
-
RowsCounter | tablefilter v0.0.23 API Document
+
RowsCounter | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -672,7 +673,7 @@
- source
+ source
@@ -1155,7 +1156,7 @@
- source
+ source
@@ -1235,7 +1236,7 @@
- source
+ source
diff --git a/docs/class/src/modules/statusBar.js~StatusBar.html b/docs/class/src/modules/statusBar.js~StatusBar.html
index b3464a44..ca723295 100644
--- a/docs/class/src/modules/statusBar.js~StatusBar.html
+++ b/docs/class/src/modules/statusBar.js~StatusBar.html
@@ -3,7 +3,7 @@
-
StatusBar | tablefilter v0.0.23 API Document
+
StatusBar | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -174,6 +175,281 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -632,7 +908,447 @@
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgChangePage : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgChangeResults : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgClear : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgFilter : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgLoadExtensions : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgLoadThemes : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgPopulate : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgPopulateCheckList : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgResetPage : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgResetPageLength : *
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ msgSort : *
+
+
+
+ source
@@ -752,7 +1468,7 @@
- source
+ source
@@ -792,7 +1508,7 @@
- source
+ source
@@ -832,7 +1548,7 @@
- source
+ source
@@ -1155,7 +1871,7 @@
- source
+ source
@@ -1195,7 +1911,7 @@
- source
+ source
@@ -1235,7 +1951,7 @@
- source
+ source
diff --git a/docs/class/src/modules/store.js~Store.html b/docs/class/src/modules/store.js~Store.html
index a5bcb2c4..9a582b5d 100644
--- a/docs/class/src/modules/store.js~Store.html
+++ b/docs/class/src/modules/store.js~Store.html
@@ -3,7 +3,7 @@
-
Store | tablefilter v0.0.23 API Document
+
Store | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,13 +68,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -206,6 +232,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -284,6 +361,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -377,7 +479,7 @@
- source
+ source
@@ -439,7 +541,47 @@
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
@@ -479,7 +621,7 @@
- source
+ source
@@ -511,6 +653,87 @@
Public Methods
+
+
+ public
+
+
+
+
+ clearCookies ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ destroy ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ init ()
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -726,7 +989,7 @@
- source
+ source
@@ -784,7 +1047,7 @@
- source
+ source
@@ -842,7 +1105,7 @@
- source
+ source
diff --git a/docs/class/src/tablefilter.js~TableFilter.html b/docs/class/src/tablefilter.js~TableFilter.html
index de228dec..d048af86 100644
--- a/docs/class/src/tablefilter.js~TableFilter.html
+++ b/docs/class/src/tablefilter.js~TableFilter.html
@@ -3,7 +3,7 @@
-
TableFilter | tablefilter v0.0.23 API Document
+
TableFilter | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+
Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,13 +68,13 @@
@@ -1129,6 +1130,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
@@ -2109,32 +2135,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
@@ -2341,7 +2341,7 @@
@@ -2366,7 +2366,7 @@
@@ -2812,307 +2812,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
@@ -4002,7 +3701,8 @@
@@ -4702,58 +4402,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
-
-
-
-
-
-
-
Re-apply the features/behaviour concerned by filtering/paging operation
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
@@ -4791,7 +4439,8 @@
-
+
Clear all the filters' values
+
@@ -4972,7 +4621,8 @@
-
+
Filter the table by retrieving the data from each cell in every single
+
@@ -5049,7 +4699,7 @@
-
Return the data of a specified colum
+
Return the data of a specified column
@@ -5724,7 +5374,7 @@
-
Initialise filtering grid bar behaviours and layout
+
Initialise features and layout
@@ -5906,7 +5556,34 @@
+
Load themes defined in the configuration object
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
Mark currently filtered column
+
@@ -5983,7 +5660,8 @@
-
+
Reset persisted filter values
+
@@ -6028,7 +5706,7 @@
@@ -6141,7 +5819,7 @@
- source
+ source
@@ -6224,7 +5902,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6265,7 +5943,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6305,7 +5983,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6345,7 +6023,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6385,7 +6063,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6425,7 +6103,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6465,7 +6143,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6505,7 +6183,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6545,7 +6223,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6586,7 +6264,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6626,7 +6304,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6666,7 +6344,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6706,7 +6384,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6746,7 +6424,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6786,7 +6464,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6826,7 +6504,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6866,7 +6544,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6906,7 +6584,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6946,7 +6624,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -6986,7 +6664,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7026,7 +6704,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7066,7 +6744,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7106,7 +6784,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7146,7 +6824,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7186,7 +6864,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7226,7 +6904,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7266,7 +6944,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7306,7 +6984,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7346,7 +7024,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7386,7 +7064,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7426,7 +7104,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7466,7 +7144,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7506,7 +7184,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7546,7 +7224,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7587,7 +7265,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7627,7 +7305,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7667,7 +7345,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7708,7 +7386,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7749,7 +7427,47 @@ requires
table or
id arguments,
row and <
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ emitter : *
+
+
+
+ source
@@ -7789,7 +7507,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7829,7 +7547,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7869,7 +7587,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7910,7 +7628,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7950,7 +7668,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -7990,7 +7708,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8030,7 +7748,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8071,7 +7789,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8111,7 +7829,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8151,7 +7869,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8191,7 +7909,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8231,7 +7949,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8272,7 +7990,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8312,7 +8030,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8352,7 +8070,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8392,7 +8110,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8432,7 +8150,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8472,7 +8190,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8512,7 +8230,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8553,7 +8271,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8593,7 +8311,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8633,7 +8351,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8673,7 +8391,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8713,7 +8431,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8753,7 +8471,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8794,7 +8512,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8834,7 +8552,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8874,7 +8592,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8914,7 +8632,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8954,7 +8672,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -8994,7 +8712,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9034,7 +8752,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9074,7 +8792,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9114,7 +8832,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9154,7 +8872,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9194,7 +8912,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9234,7 +8952,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9274,7 +8992,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9314,7 +9032,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9342,47 +9060,6 @@ requires
table or
id arguments,
row and <
-
-
-
- public
-
-
-
-
- hasStoredValues : boolean
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -9395,7 +9072,7 @@ requires table or id arguments, row and <
- source
+ source
@@ -9435,7 +9112,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9475,7 +9152,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9515,7 +9192,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9555,7 +9232,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9596,7 +9273,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9636,7 +9313,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9676,7 +9353,47 @@ requires
table or
id arguments,
row and <
- source
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ initialized : boolean
+
+
+
+ source
@@ -9716,47 +9433,7 @@ requires
table or
id arguments,
row and <
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- isFirstLoad : boolean
-
-
-
- source
+ source
@@ -9796,7 +9473,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9836,7 +9513,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9876,7 +9553,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9916,7 +9593,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9956,7 +9633,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -9996,7 +9673,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10036,7 +9713,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10076,7 +9753,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10116,7 +9793,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10156,7 +9833,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10196,7 +9873,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10237,7 +9914,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10277,7 +9954,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10317,7 +9994,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10357,7 +10034,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10397,7 +10074,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10437,488 +10114,7 @@ requires
table or
id arguments,
row and <
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgChangePage : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgChangeResults : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgClear : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgFilter : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgLoadExtensions : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgLoadThemes : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgPopulate : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgPopulateCheckList : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgResetPage : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgResetPageLength : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgResetValues : *
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- msgSort : *
-
-
-
- source
+ source
@@ -10958,7 +10154,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -10998,7 +10194,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11038,7 +10234,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11078,7 +10274,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11118,7 +10314,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11158,7 +10354,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11198,7 +10394,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11239,7 +10435,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11279,7 +10475,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11319,7 +10515,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11359,7 +10555,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11399,7 +10595,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11439,7 +10635,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11479,7 +10675,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11519,7 +10715,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11559,7 +10755,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11599,7 +10795,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11639,7 +10835,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11679,7 +10875,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11720,7 +10916,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11760,7 +10956,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11800,7 +10996,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11840,7 +11036,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11880,7 +11076,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11920,7 +11116,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -11960,7 +11156,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12000,7 +11196,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12040,7 +11236,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12080,7 +11276,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12120,7 +11316,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12160,7 +11356,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12201,7 +11397,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12241,7 +11437,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12281,7 +11477,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12321,7 +11517,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12361,14 +11557,15 @@ requires
table or
id arguments,
row and <
- source
+ source
-
+
@@ -12401,7 +11598,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12441,7 +11638,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12481,7 +11678,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12522,7 +11719,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12563,7 +11760,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12603,7 +11800,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12643,7 +11840,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12683,7 +11880,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12723,7 +11920,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12763,7 +11960,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12803,7 +12000,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12843,7 +12040,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12883,7 +12080,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12923,7 +12120,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -12964,7 +12161,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13005,7 +12202,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13045,7 +12242,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13085,7 +12282,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13125,7 +12322,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13165,7 +12362,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13205,7 +12402,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13245,7 +12442,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13285,7 +12482,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13325,7 +12522,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13365,7 +12562,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13405,7 +12602,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13445,7 +12642,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13477,113 +12674,6 @@ requires
table or
id arguments,
row and <
Public Methods
-
-
- public
-
-
-
-
- EvtManager (evt: String , cfg: Object )
-
-
-
- source
-
-
-
-
-
-
-
-
-
-
-
-
Params:
-
-
- Name Type Attribute Description
-
-
-
-
- evt
- String
-
- Event name
-
-
-
- cfg
- Object
-
- Config object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public
-
-
-
-
- applyProps ()
-
-
-
- source
-
-
-
-
-
-
-
Re-apply the features/behaviour concerned by filtering/paging operation
-
NOTE: this will disappear whenever custom events in place
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
public
@@ -13595,7 +12685,7 @@ requires table or id arguments, row and <
- source
+ source
@@ -13636,14 +12726,15 @@ requires
table or
id arguments,
row and <
- source
+ source
-
+
Clear all the filters' values
+
@@ -13676,7 +12767,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13727,7 +12818,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13768,7 +12859,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13809,7 +12900,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13850,7 +12941,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13919,7 +13010,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -13987,14 +13078,17 @@ requires
table or
id arguments,
row and <
- source
+ source
-
+
Filter the table by retrieving the data from each cell in every single
+row and comparing it to the search term for current column. A row is
+hidden when all the search terms are not found in inspected row.
+
@@ -14027,7 +13121,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -14095,7 +13189,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -14164,14 +13258,14 @@ requires
table or
id arguments,
row and <
- source
+ source
-
Return the data of a specified colum
+
Return the data of a specified column
@@ -14254,7 +13348,7 @@ requires
table or
id arguments,
row and <
- source
+ source
@@ -14323,7 +13417,7 @@ custom options values and texts
- source
+ source
@@ -14391,7 +13485,7 @@ custom options values and texts
- source
+ source
@@ -14460,7 +13554,7 @@ custom options values and texts
- source
+ source
@@ -14528,7 +13622,7 @@ custom options values and texts
- source
+ source
@@ -14597,7 +13691,7 @@ custom options values and texts
- source
+ source
@@ -14648,7 +13742,7 @@ custom options values and texts
- source
+ source
@@ -14728,7 +13822,7 @@ custom options values and texts
- source
+ source
@@ -14805,7 +13899,7 @@ custom options values and texts
- source
+ source
@@ -14883,7 +13977,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -14935,7 +14029,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -14986,7 +14080,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15038,7 +14132,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15106,7 +14200,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15157,7 +14251,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15226,7 +14320,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15277,7 +14371,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15346,7 +14440,7 @@ Note: hidden filters are also returned
- source
+ source
@@ -15416,7 +14510,7 @@ defined
- source
+ source
@@ -15468,7 +14562,7 @@ row)
- source
+ source
@@ -15537,7 +14631,7 @@ row)
- source
+ source
@@ -15617,7 +14711,7 @@ row)
- source
+ source
@@ -15686,7 +14780,7 @@ row)
- source
+ source
@@ -15754,7 +14848,7 @@ row)
- source
+ source
@@ -15805,7 +14899,7 @@ row)
- source
+ source
@@ -15884,15 +14978,14 @@ row)
- source
+ source
-
Initialise filtering grid bar behaviours and layout
-
TODO: decompose in smaller methods
+
Initialise features and layout
@@ -15926,7 +15019,7 @@ row)
- source
+ source
@@ -15967,7 +15060,7 @@ row)
- source
+ source
@@ -16035,7 +15128,7 @@ row)
- source
+ source
@@ -16104,7 +15197,7 @@ row)
- source
+ source
@@ -16179,7 +15272,7 @@ row)
- source
+ source
@@ -16221,7 +15314,7 @@ row)
- source
+ source
@@ -16279,14 +15372,15 @@ row)
- source
+ source
-
+
Load themes defined in the configuration object
+
@@ -16307,6 +15401,64 @@ row)
+
+
+
+ public
+
+
+
+
+ markActiveColumn (colIndex: Number )
+
+
+
+ source
+
+
+
+
+
+
+
Mark currently filtered column
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ colIndex
+ Number
+
+ Column index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -16319,7 +15471,7 @@ row)
- source
+ source
@@ -16360,7 +15512,7 @@ row)
- source
+ source
@@ -16401,14 +15553,15 @@ row)
- source
+ source
-
+
Reset persisted filter values
+
@@ -16441,7 +15594,7 @@ row)
- source
+ source
@@ -16502,11 +15655,11 @@ row)
-
setFilterValue (index: Number , searcharg: String )
+
setFilterValue (index: Number , searcharg: String or Array )
- source
+ source
@@ -16535,7 +15688,7 @@ row)
searcharg
- String
+ String or Array
Search term
@@ -16571,7 +15724,7 @@ row)
- source
+ source
@@ -16612,7 +15765,7 @@ row)
- source
+ source
@@ -16653,7 +15806,7 @@ row)
- source
+ source
diff --git a/docs/coverage.json b/docs/coverage.json
index c72a4a1d..e25a38a3 100644
--- a/docs/coverage.json
+++ b/docs/coverage.json
@@ -1,23 +1,23 @@
{
- "coverage": "23.55%",
- "expectCount": 675,
- "actualCount": 159,
+ "coverage": "24.85%",
+ "expectCount": 704,
+ "actualCount": 175,
"files": {
"src/extensions/advancedGrid/adapterEzEditTable.js": {
- "expectCount": 15,
- "actualCount": 4
+ "expectCount": 17,
+ "actualCount": 5
},
"src/extensions/sort/adapterSortabletable.js": {
- "expectCount": 27,
+ "expectCount": 28,
"actualCount": 3
},
"src/modules/alternateRows.js": {
- "expectCount": 9,
- "actualCount": 5
+ "expectCount": 11,
+ "actualCount": 6
},
"src/modules/checkList.js": {
- "expectCount": 22,
- "actualCount": 5
+ "expectCount": 26,
+ "actualCount": 7
},
"src/modules/clearButton.js": {
"expectCount": 12,
@@ -32,15 +32,19 @@
"actualCount": 10
},
"src/modules/dropdown.js": {
- "expectCount": 15,
- "actualCount": 4
+ "expectCount": 20,
+ "actualCount": 6
+ },
+ "src/emitter.js": {
+ "expectCount": 6,
+ "actualCount": 5
},
"src/tablefilter.js": {
- "expectCount": 238,
- "actualCount": 73
+ "expectCount": 225,
+ "actualCount": 75
},
"src/modules/feature.js": {
- "expectCount": 13,
+ "expectCount": 14,
"actualCount": 0
},
"src/extensions/filtersVisibility/filtersVisibility.js": {
@@ -56,7 +60,7 @@
"actualCount": 3
},
"src/modules/highlightKeywords.js": {
- "expectCount": 8,
+ "expectCount": 11,
"actualCount": 4
},
"src/modules/loader.js": {
@@ -64,12 +68,12 @@
"actualCount": 1
},
"src/modules/noResults.js": {
- "expectCount": 19,
+ "expectCount": 20,
"actualCount": 1
},
"src/modules/paging.js": {
- "expectCount": 61,
- "actualCount": 14
+ "expectCount": 63,
+ "actualCount": 16
},
"src/modules/popupFilter.js": {
"expectCount": 28,
@@ -80,12 +84,12 @@
"actualCount": 1
},
"src/modules/statusBar.js": {
- "expectCount": 18,
+ "expectCount": 29,
"actualCount": 1
},
"src/modules/store.js": {
- "expectCount": 10,
- "actualCount": 7
+ "expectCount": 14,
+ "actualCount": 8
}
}
}
\ No newline at end of file
diff --git a/docs/dump.json b/docs/dump.json
index 931828f9..870dfbeb 100644
--- a/docs/dump.json
+++ b/docs/dump.json
@@ -127,6 +127,158 @@
},
"generator": false
},
+ {
+ "kind": "file",
+ "static": true,
+ "variation": null,
+ "name": "src/emitter.js",
+ "memberof": null,
+ "longname": "src/emitter.js",
+ "access": null,
+ "description": null,
+ "lineNumber": 4,
+ "content": "/**\n * Event emitter class\n */\nexport class Emitter {\n constructor() {\n /**\n * Events object\n * @type {Object}\n */\n this.events = {};\n }\n\n /**\n * Subscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n */\n on(evts, fn) {\n evts.forEach((evt)=> {\n this.events[evt] = this.events[evt] || [];\n this.events[evt].push(fn);\n });\n }\n\n /**\n * Unsubscribe to an event\n * @param {Array} evts Collection of event names\n * @param {Function} fn Function invoked when event is emitted\n */\n off(evts, fn) {\n evts.forEach((evt)=> {\n if(evt in this.events) {\n this.events[evt].splice(this.events[evt].indexOf(fn), 1);\n }\n });\n }\n\n /**\n * Emit an event\n * @param {String} evt Event name followed by any other argument passed to\n * the invoked function\n */\n emit(evt /*, args...*/) {\n if(evt in this.events) {\n for(let i = 0; i < this.events[evt].length; i++) {\n this.events[evt][i].apply(this, [].slice.call(arguments, 1));\n }\n }\n }\n}\n"
+ },
+ {
+ "kind": "class",
+ "static": true,
+ "variation": null,
+ "name": "Emitter",
+ "memberof": "src/emitter.js",
+ "longname": "src/emitter.js~Emitter",
+ "access": null,
+ "export": true,
+ "importPath": "tablefilter/src/emitter.js",
+ "importStyle": "{Emitter}",
+ "description": "Event emitter class",
+ "lineNumber": 4,
+ "interface": false
+ },
+ {
+ "kind": "constructor",
+ "static": false,
+ "variation": null,
+ "name": "constructor",
+ "memberof": "src/emitter.js~Emitter",
+ "longname": "src/emitter.js~Emitter#constructor",
+ "access": null,
+ "description": null,
+ "lineNumber": 5,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "events",
+ "memberof": "src/emitter.js~Emitter",
+ "longname": "src/emitter.js~Emitter#events",
+ "access": null,
+ "description": "Events object",
+ "lineNumber": 10,
+ "type": {
+ "nullable": null,
+ "types": [
+ "Object"
+ ],
+ "spread": false,
+ "description": null
+ }
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "on",
+ "memberof": "src/emitter.js~Emitter",
+ "longname": "src/emitter.js~Emitter#on",
+ "access": null,
+ "description": "Subscribe to an event",
+ "lineNumber": 18,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Array"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "evts",
+ "description": "Collection of event names"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Function"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "fn",
+ "description": "Function invoked when event is emitted"
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "off",
+ "memberof": "src/emitter.js~Emitter",
+ "longname": "src/emitter.js~Emitter#off",
+ "access": null,
+ "description": "Unsubscribe to an event",
+ "lineNumber": 30,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Array"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "evts",
+ "description": "Collection of event names"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Function"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "fn",
+ "description": "Function invoked when event is emitted"
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "emit",
+ "memberof": "src/emitter.js~Emitter",
+ "longname": "src/emitter.js~Emitter#emit",
+ "access": null,
+ "description": "Emit an event",
+ "lineNumber": 43,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "String"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "evt",
+ "description": "Event name followed by any other argument passed to\nthe invoked function"
+ }
+ ],
+ "generator": false
+ },
{
"kind": "file",
"static": true,
@@ -149,7 +301,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Dom from '../../dom';\n\nexport default class AdapterEzEditTable {\n /**\n * Adapter module for ezEditTable, an external library providing advanced\n * grid features (selection and edition):\n * http://codecanyon.net/item/ezedittable-enhance-html-tables/2425123?ref=koalyptus\n *\n * @param {Object} tf TableFilter instance\n */\n constructor(tf, cfg){\n // ezEditTable config\n this.initialized = false;\n this.desc = cfg.description || 'ezEditTable adapter';\n this.filename = cfg.filename || 'ezEditTable.js';\n this.vendorPath = cfg.vendor_path;\n this.loadStylesheet = Boolean(cfg.load_stylesheet);\n this.stylesheet = cfg.stylesheet || this.vendorPath + 'ezEditTable.css';\n this.stylesheetName = cfg.stylesheet_name || 'ezEditTableCss';\n this.err = 'Failed to instantiate EditTable object.\\n\"ezEditTable\" ' +\n 'dependency not found.';\n // Enable the ezEditTable's scroll into view behaviour if grid layout on\n cfg.scroll_into_view = cfg.scroll_into_view===false ?\n false : tf.gridLayout;\n\n this._ezEditTable = null;\n this.cfg = cfg;\n this.tf = tf;\n }\n\n /**\n * Conditionally load ezEditTable library and set advanced grid\n * @return {[type]} [description]\n */\n init(){\n var tf = this.tf;\n if(window.EditTable){\n this._setAdvancedGrid();\n } else {\n var path = this.vendorPath + this.filename;\n tf.import(this.filename, path, ()=> { this._setAdvancedGrid(); });\n }\n if(this.loadStylesheet && !tf.isImported(this.stylesheet, 'link')){\n tf.import(this.stylesheetName, this.stylesheet, null, 'link');\n }\n }\n\n /**\n * Instantiate ezEditTable component for advanced grid features\n */\n _setAdvancedGrid(){\n var tf = this.tf;\n\n //start row for EditTable constructor needs to be calculated\n var startRow,\n cfg = this.cfg,\n thead = Dom.tag(tf.tbl, 'thead');\n\n //if thead exists and startRow not specified, startRow is calculated\n //automatically by EditTable\n if(thead.length > 0 && !cfg.startRow){\n startRow = undefined;\n }\n //otherwise startRow config property if any or TableFilter refRow\n else{\n startRow = cfg.startRow || tf.refRow;\n }\n\n cfg.base_path = cfg.base_path || tf.basePath + 'ezEditTable/';\n var editable = cfg.editable;\n var selectable = cfg.selection;\n\n if(selectable){\n cfg.default_selection = cfg.default_selection || 'row';\n }\n //CSS Styles\n cfg.active_cell_css = cfg.active_cell_css || 'ezETSelectedCell';\n\n var _lastValidRowIndex = 0;\n var _lastRowIndex = 0;\n\n if(selectable){\n //Row navigation needs to be calculated according to TableFilter's\n //validRowsIndex array\n var onAfterSelection = function(et, selectedElm, e){\n var slc = et.Selection;\n //Next valid filtered row needs to be selected\n var doSelect = function(nextRowIndex){\n if(et.defaultSelection === 'row'){\n slc.SelectRowByIndex(nextRowIndex);\n } else {\n et.ClearSelections();\n var cellIndex = selectedElm.cellIndex,\n row = tf.tbl.rows[nextRowIndex];\n if(et.defaultSelection === 'both'){\n slc.SelectRowByIndex(nextRowIndex);\n }\n if(row){\n slc.SelectCell(row.cells[cellIndex]);\n }\n }\n //Table is filtered\n if(tf.validRowsIndex.length !== tf.getRowsNb()){\n var r = tf.tbl.rows[nextRowIndex];\n if(r){\n r.scrollIntoView(false);\n }\n if(cell){\n if(cell.cellIndex === (tf.getCellsNb()-1) &&\n tf.gridLayout){\n tf.tblCont.scrollLeft = 100000000;\n }\n else if(cell.cellIndex===0 && tf.gridLayout){\n tf.tblCont.scrollLeft = 0;\n } else {\n cell.scrollIntoView(false);\n }\n }\n }\n };\n\n //table is not filtered\n if(!tf.validRowsIndex){\n return;\n }\n var validIndexes = tf.validRowsIndex,\n validIdxLen = validIndexes.length,\n row = et.defaultSelection !== 'row' ?\n selectedElm.parentNode : selectedElm,\n //cell for default_selection = 'both' or 'cell'\n cell = selectedElm.nodeName==='TD' ? selectedElm : null,\n keyCode = e !== undefined ? et.Event.GetKey(e) : 0,\n isRowValid = validIndexes.indexOf(row.rowIndex) !== -1,\n nextRowIndex,\n paging = tf.feature('paging'),\n //pgup/pgdown keys\n d = (keyCode === 34 || keyCode === 33 ?\n (paging && paging.pagingLength || et.nbRowsPerPage) :1);\n\n //If next row is not valid, next valid filtered row needs to be\n //calculated\n if(!isRowValid){\n //Selection direction up/down\n if(row.rowIndex>_lastRowIndex){\n //last row\n if(row.rowIndex >= validIndexes[validIdxLen-1]){\n nextRowIndex = validIndexes[validIdxLen-1];\n } else {\n var calcRowIndex = (_lastValidRowIndex + d);\n if(calcRowIndex > (validIdxLen-1)){\n nextRowIndex = validIndexes[validIdxLen-1];\n } else {\n nextRowIndex = validIndexes[calcRowIndex];\n }\n }\n } else{\n //first row\n if(row.rowIndex <= validIndexes[0]){\n nextRowIndex = validIndexes[0];\n } else {\n var v = validIndexes[_lastValidRowIndex - d];\n nextRowIndex = v ? v : validIndexes[0];\n }\n }\n _lastRowIndex = row.rowIndex;\n doSelect(nextRowIndex);\n } else {\n //If filtered row is valid, special calculation for\n //pgup/pgdown keys\n if(keyCode!==34 && keyCode!==33){\n _lastValidRowIndex = validIndexes.indexOf(row.rowIndex);\n _lastRowIndex = row.rowIndex;\n } else {\n if(keyCode === 34){ //pgdown\n //last row\n if((_lastValidRowIndex + d) <= (validIdxLen-1)){\n nextRowIndex = validIndexes[\n _lastValidRowIndex + d];\n } else {\n nextRowIndex = [validIdxLen-1];\n }\n } else { //pgup\n //first row\n if((_lastValidRowIndex - d) <= validIndexes[0]){\n nextRowIndex = validIndexes[0];\n } else {\n nextRowIndex = validIndexes[\n _lastValidRowIndex - d];\n }\n }\n _lastRowIndex = nextRowIndex;\n _lastValidRowIndex = validIndexes.indexOf(nextRowIndex);\n doSelect(nextRowIndex);\n }\n }\n };\n\n //Page navigation has to be enforced whenever selected row is out of\n //the current page range\n var onBeforeSelection = function(et, selectedElm){\n var row = et.defaultSelection !== 'row' ?\n selectedElm.parentNode : selectedElm;\n if(tf.paging){\n if(tf.feature('paging').nbPages > 1){\n var paging = tf.feature('paging');\n //page length is re-assigned in case it has changed\n et.nbRowsPerPage = paging.pagingLength;\n var validIndexes = tf.validRowsIndex,\n validIdxLen = validIndexes.length,\n pagingEndRow = parseInt(paging.startPagingRow, 10) +\n parseInt(paging.pagingLength, 10);\n var rowIndex = row.rowIndex;\n\n if((rowIndex === validIndexes[validIdxLen-1]) &&\n paging.currentPageNb!==paging.nbPages){\n paging.setPage('last');\n }\n else if((rowIndex == validIndexes[0]) &&\n paging.currentPageNb!==1){\n paging.setPage('first');\n }\n else if(rowIndex > validIndexes[pagingEndRow-1] &&\n rowIndex < validIndexes[validIdxLen-1]){\n paging.setPage('next');\n }\n else if(\n rowIndex < validIndexes[paging.startPagingRow] &&\n rowIndex > validIndexes[0]){\n paging.setPage('previous');\n }\n }\n }\n };\n\n //Selected row needs to be visible when paging is activated\n if(tf.paging){\n tf.feature('paging').onAfterChangePage = function(paging){\n var advGrid = paging.tf.extension('advancedGrid');\n var et = advGrid._ezEditTable;\n var slc = et.Selection;\n var row = slc.GetActiveRow();\n if(row){\n row.scrollIntoView(false);\n }\n var cell = slc.GetActiveCell();\n if(cell){\n cell.scrollIntoView(false);\n }\n };\n }\n\n //Rows navigation when rows are filtered is performed with the\n //EditTable row selection callback events\n if(cfg.default_selection==='row'){\n var fnB = cfg.on_before_selected_row;\n cfg.on_before_selected_row = function(){\n onBeforeSelection(arguments[0], arguments[1], arguments[2]);\n if(fnB){\n fnB.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n var fnA = cfg.on_after_selected_row;\n cfg.on_after_selected_row = function(){\n onAfterSelection(arguments[0], arguments[1], arguments[2]);\n if(fnA){\n fnA.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n } else {\n var fnD = cfg.on_before_selected_cell;\n cfg.on_before_selected_cell = function(){\n onBeforeSelection(arguments[0], arguments[1], arguments[2]);\n if(fnD){\n fnD.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n var fnC = cfg.on_after_selected_cell;\n cfg.on_after_selected_cell = function(){\n onAfterSelection(arguments[0], arguments[1], arguments[2]);\n if(fnC){\n fnC.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n }\n }\n if(editable){\n //Added or removed rows, TF rows number needs to be re-calculated\n var fnE = cfg.on_added_dom_row;\n cfg.on_added_dom_row = function(){\n tf.nbFilterableRows++;\n if(!tf.paging){\n tf.feature('rowsCounter').refresh();\n } else {\n tf.nbRows++;\n tf.nbVisibleRows++;\n tf.nbFilterableRows++;\n tf.paging=false;\n tf.feature('paging').destroy();\n tf.feature('paging').reset();\n }\n if(tf.alternateRows){\n tf.feature('alternateRows').init();\n }\n if(fnE){\n fnE.call(null, arguments[0], arguments[1], arguments[2]);\n }\n };\n if(cfg.actions && cfg.actions['delete']){\n var fnF = cfg.actions['delete'].on_after_submit;\n cfg.actions['delete'].on_after_submit = function(){\n tf.nbFilterableRows--;\n if(!tf.paging){\n tf.feature('rowsCounter').refresh();\n } else {\n tf.nbRows--;\n tf.nbVisibleRows--;\n tf.nbFilterableRows--;\n tf.paging=false;\n tf.feature('paging').destroy();\n tf.feature('paging').reset(false);\n }\n if(tf.alternateRows){\n tf.feature('alternateRows').init();\n }\n if(fnF){\n fnF.call(null, arguments[0], arguments[1]);\n }\n };\n }\n }\n\n try{\n this._ezEditTable = new EditTable(tf.id, cfg, startRow);\n this._ezEditTable.Init();\n } catch(e) { throw new Error(this.err); }\n\n this.initialized = true;\n }\n\n /**\n * Reset advanced grid when previously removed\n */\n reset(){\n var ezEditTable = this._ezEditTable;\n if(ezEditTable){\n if(this.cfg.selection){\n ezEditTable.Selection.Set();\n }\n if(this.cfg.editable){\n ezEditTable.Editable.Set();\n }\n }\n }\n\n /**\n * Remove advanced grid\n */\n destroy(){\n var ezEditTable = this._ezEditTable;\n if(ezEditTable){\n if(this.cfg.selection){\n ezEditTable.Selection.ClearSelections();\n ezEditTable.Selection.Remove();\n }\n if(this.cfg.editable){\n ezEditTable.Editable.Remove();\n }\n }\n this.initialized = false;\n }\n}\n"
+ "content": "import Dom from '../../dom';\n\nexport default class AdapterEzEditTable {\n /**\n * Adapter module for ezEditTable, an external library providing advanced\n * grid features (selection and edition):\n * http://codecanyon.net/item/ezedittable-enhance-html-tables/2425123?ref=koalyptus\n *\n * @param {Object} tf TableFilter instance\n */\n constructor(tf, cfg){\n // ezEditTable config\n this.initialized = false;\n this.desc = cfg.description || 'ezEditTable adapter';\n this.filename = cfg.filename || 'ezEditTable.js';\n this.vendorPath = cfg.vendor_path;\n this.loadStylesheet = Boolean(cfg.load_stylesheet);\n this.stylesheet = cfg.stylesheet || this.vendorPath + 'ezEditTable.css';\n this.stylesheetName = cfg.stylesheet_name || 'ezEditTableCss';\n this.err = 'Failed to instantiate EditTable object.\\n\"ezEditTable\" ' +\n 'dependency not found.';\n // Enable the ezEditTable's scroll into view behaviour if grid layout on\n cfg.scroll_into_view = cfg.scroll_into_view===false ?\n false : tf.gridLayout;\n\n this._ezEditTable = null;\n this.cfg = cfg;\n this.tf = tf;\n this.emitter = tf.emitter;\n }\n\n /**\n * Conditionally load ezEditTable library and set advanced grid\n * @return {[type]} [description]\n */\n init(){\n var tf = this.tf;\n if(window.EditTable){\n this._setAdvancedGrid();\n } else {\n var path = this.vendorPath + this.filename;\n tf.import(this.filename, path, ()=> { this._setAdvancedGrid(); });\n }\n if(this.loadStylesheet && !tf.isImported(this.stylesheet, 'link')){\n tf.import(this.stylesheetName, this.stylesheet, null, 'link');\n }\n\n // TODO: hack to prevent ezEditTable enter key event hijaking.\n // Needs to be fixed in the vendor's library\n this.emitter.on(['filter-focus', 'filter-blur'],\n ()=> this._toggleForInputFilter());\n }\n\n /**\n * Instantiate ezEditTable component for advanced grid features\n */\n _setAdvancedGrid(){\n var tf = this.tf;\n\n //start row for EditTable constructor needs to be calculated\n var startRow,\n cfg = this.cfg,\n thead = Dom.tag(tf.tbl, 'thead');\n\n //if thead exists and startRow not specified, startRow is calculated\n //automatically by EditTable\n if(thead.length > 0 && !cfg.startRow){\n startRow = undefined;\n }\n //otherwise startRow config property if any or TableFilter refRow\n else{\n startRow = cfg.startRow || tf.refRow;\n }\n\n cfg.base_path = cfg.base_path || tf.basePath + 'ezEditTable/';\n var editable = cfg.editable;\n var selectable = cfg.selection;\n\n if(selectable){\n cfg.default_selection = cfg.default_selection || 'row';\n }\n //CSS Styles\n cfg.active_cell_css = cfg.active_cell_css || 'ezETSelectedCell';\n\n var _lastValidRowIndex = 0;\n var _lastRowIndex = 0;\n\n if(selectable){\n //Row navigation needs to be calculated according to TableFilter's\n //validRowsIndex array\n var onAfterSelection = function(et, selectedElm, e){\n var slc = et.Selection;\n //Next valid filtered row needs to be selected\n var doSelect = function(nextRowIndex){\n if(et.defaultSelection === 'row'){\n slc.SelectRowByIndex(nextRowIndex);\n } else {\n et.ClearSelections();\n var cellIndex = selectedElm.cellIndex,\n row = tf.tbl.rows[nextRowIndex];\n if(et.defaultSelection === 'both'){\n slc.SelectRowByIndex(nextRowIndex);\n }\n if(row){\n slc.SelectCell(row.cells[cellIndex]);\n }\n }\n //Table is filtered\n if(tf.validRowsIndex.length !== tf.getRowsNb()){\n var r = tf.tbl.rows[nextRowIndex];\n if(r){\n r.scrollIntoView(false);\n }\n if(cell){\n if(cell.cellIndex === (tf.getCellsNb()-1) &&\n tf.gridLayout){\n tf.tblCont.scrollLeft = 100000000;\n }\n else if(cell.cellIndex===0 && tf.gridLayout){\n tf.tblCont.scrollLeft = 0;\n } else {\n cell.scrollIntoView(false);\n }\n }\n }\n };\n\n //table is not filtered\n if(!tf.validRowsIndex){\n return;\n }\n var validIndexes = tf.validRowsIndex,\n validIdxLen = validIndexes.length,\n row = et.defaultSelection !== 'row' ?\n selectedElm.parentNode : selectedElm,\n //cell for default_selection = 'both' or 'cell'\n cell = selectedElm.nodeName==='TD' ? selectedElm : null,\n keyCode = e !== undefined ? et.Event.GetKey(e) : 0,\n isRowValid = validIndexes.indexOf(row.rowIndex) !== -1,\n nextRowIndex,\n paging = tf.feature('paging'),\n //pgup/pgdown keys\n d = (keyCode === 34 || keyCode === 33 ?\n (paging && paging.pagingLength || et.nbRowsPerPage) :1);\n\n //If next row is not valid, next valid filtered row needs to be\n //calculated\n if(!isRowValid){\n //Selection direction up/down\n if(row.rowIndex>_lastRowIndex){\n //last row\n if(row.rowIndex >= validIndexes[validIdxLen-1]){\n nextRowIndex = validIndexes[validIdxLen-1];\n } else {\n var calcRowIndex = (_lastValidRowIndex + d);\n if(calcRowIndex > (validIdxLen-1)){\n nextRowIndex = validIndexes[validIdxLen-1];\n } else {\n nextRowIndex = validIndexes[calcRowIndex];\n }\n }\n } else{\n //first row\n if(row.rowIndex <= validIndexes[0]){\n nextRowIndex = validIndexes[0];\n } else {\n var v = validIndexes[_lastValidRowIndex - d];\n nextRowIndex = v ? v : validIndexes[0];\n }\n }\n _lastRowIndex = row.rowIndex;\n doSelect(nextRowIndex);\n } else {\n //If filtered row is valid, special calculation for\n //pgup/pgdown keys\n if(keyCode!==34 && keyCode!==33){\n _lastValidRowIndex = validIndexes.indexOf(row.rowIndex);\n _lastRowIndex = row.rowIndex;\n } else {\n if(keyCode === 34){ //pgdown\n //last row\n if((_lastValidRowIndex + d) <= (validIdxLen-1)){\n nextRowIndex = validIndexes[\n _lastValidRowIndex + d];\n } else {\n nextRowIndex = [validIdxLen-1];\n }\n } else { //pgup\n //first row\n if((_lastValidRowIndex - d) <= validIndexes[0]){\n nextRowIndex = validIndexes[0];\n } else {\n nextRowIndex = validIndexes[\n _lastValidRowIndex - d];\n }\n }\n _lastRowIndex = nextRowIndex;\n _lastValidRowIndex = validIndexes.indexOf(nextRowIndex);\n doSelect(nextRowIndex);\n }\n }\n };\n\n //Page navigation has to be enforced whenever selected row is out of\n //the current page range\n var onBeforeSelection = function(et, selectedElm){\n var row = et.defaultSelection !== 'row' ?\n selectedElm.parentNode : selectedElm;\n if(tf.paging){\n if(tf.feature('paging').nbPages > 1){\n var paging = tf.feature('paging');\n //page length is re-assigned in case it has changed\n et.nbRowsPerPage = paging.pagingLength;\n var validIndexes = tf.validRowsIndex,\n validIdxLen = validIndexes.length,\n pagingEndRow = parseInt(paging.startPagingRow, 10) +\n parseInt(paging.pagingLength, 10);\n var rowIndex = row.rowIndex;\n\n if((rowIndex === validIndexes[validIdxLen-1]) &&\n paging.currentPageNb!==paging.nbPages){\n paging.setPage('last');\n }\n else if((rowIndex == validIndexes[0]) &&\n paging.currentPageNb!==1){\n paging.setPage('first');\n }\n else if(rowIndex > validIndexes[pagingEndRow-1] &&\n rowIndex < validIndexes[validIdxLen-1]){\n paging.setPage('next');\n }\n else if(\n rowIndex < validIndexes[paging.startPagingRow] &&\n rowIndex > validIndexes[0]){\n paging.setPage('previous');\n }\n }\n }\n };\n\n //Selected row needs to be visible when paging is activated\n if(tf.paging){\n tf.feature('paging').onAfterChangePage = function(paging){\n var advGrid = paging.tf.extension('advancedGrid');\n var et = advGrid._ezEditTable;\n var slc = et.Selection;\n var row = slc.GetActiveRow();\n if(row){\n row.scrollIntoView(false);\n }\n var cell = slc.GetActiveCell();\n if(cell){\n cell.scrollIntoView(false);\n }\n };\n }\n\n //Rows navigation when rows are filtered is performed with the\n //EditTable row selection callback events\n if(cfg.default_selection==='row'){\n var fnB = cfg.on_before_selected_row;\n cfg.on_before_selected_row = function(){\n onBeforeSelection(arguments[0], arguments[1], arguments[2]);\n if(fnB){\n fnB.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n var fnA = cfg.on_after_selected_row;\n cfg.on_after_selected_row = function(){\n onAfterSelection(arguments[0], arguments[1], arguments[2]);\n if(fnA){\n fnA.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n } else {\n var fnD = cfg.on_before_selected_cell;\n cfg.on_before_selected_cell = function(){\n onBeforeSelection(arguments[0], arguments[1], arguments[2]);\n if(fnD){\n fnD.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n var fnC = cfg.on_after_selected_cell;\n cfg.on_after_selected_cell = function(){\n onAfterSelection(arguments[0], arguments[1], arguments[2]);\n if(fnC){\n fnC.call(\n null, arguments[0], arguments[1], arguments[2]);\n }\n };\n }\n }\n if(editable){\n //Added or removed rows, TF rows number needs to be re-calculated\n var fnE = cfg.on_added_dom_row;\n cfg.on_added_dom_row = function(){\n tf.nbFilterableRows++;\n if(!tf.paging){\n tf.emitter.emit('rows-changed', tf, this);\n //tf.feature('rowsCounter').refresh();\n } else {\n tf.nbRows++;\n tf.nbVisibleRows++;\n tf.nbFilterableRows++;\n tf.paging=false;\n tf.feature('paging').destroy();\n tf.feature('paging').reset();\n }\n if(tf.alternateRows){\n tf.feature('alternateRows').init();\n }\n if(fnE){\n fnE.call(null, arguments[0], arguments[1], arguments[2]);\n }\n };\n if(cfg.actions && cfg.actions['delete']){\n var fnF = cfg.actions['delete'].on_after_submit;\n cfg.actions['delete'].on_after_submit = function(){\n tf.nbFilterableRows--;\n if(!tf.paging){\n // tf.feature('rowsCounter').refresh();\n tf.emitter.emit('rows-changed', tf, this);\n } else {\n tf.nbRows--;\n tf.nbVisibleRows--;\n tf.nbFilterableRows--;\n tf.paging=false;\n tf.feature('paging').destroy();\n tf.feature('paging').reset(false);\n }\n if(tf.alternateRows){\n tf.feature('alternateRows').init();\n }\n if(fnF){\n fnF.call(null, arguments[0], arguments[1]);\n }\n };\n }\n }\n\n try{\n this._ezEditTable = new EditTable(tf.id, cfg, startRow);\n this._ezEditTable.Init();\n } catch(e) { throw new Error(this.err); }\n\n this.initialized = true;\n }\n\n /**\n * Reset advanced grid when previously removed\n */\n reset(){\n var ezEditTable = this._ezEditTable;\n if(ezEditTable){\n if(this.cfg.selection){\n ezEditTable.Selection.Set();\n }\n if(this.cfg.editable){\n ezEditTable.Editable.Set();\n }\n }\n }\n\n /**\n * Toggle behaviour\n */\n toggle(){\n var ezEditTable = this._ezEditTable;\n if(ezEditTable.editable){\n ezEditTable.Editable.Remove();\n } else {\n ezEditTable.Editable.Set();\n }\n if(ezEditTable.selection){\n ezEditTable.Selection.Remove();\n } else {\n ezEditTable.Selection.Set();\n }\n }\n\n _toggleForInputFilter(){\n var tf = this.tf;\n if(!tf.activeFlt){\n return;\n }\n var colIndex = tf.activeFlt.getAttribute('ct');\n var filterType = tf.getFilterType(colIndex);\n if(filterType === tf.fltTypeInp){\n this.toggle();\n }\n }\n\n /**\n * Remove advanced grid\n */\n destroy(){\n var ezEditTable = this._ezEditTable;\n if(ezEditTable){\n if(this.cfg.selection){\n ezEditTable.Selection.ClearSelections();\n ezEditTable.Selection.Remove();\n }\n if(this.cfg.editable){\n ezEditTable.Editable.Remove();\n }\n }\n\n this.emitter.off(['filter-focus', 'filter-blur'],\n ()=> this._toggleForInputFilter());\n this.initialized = false;\n }\n}\n"
},
{
"kind": "class",
@@ -378,6 +530,23 @@
]
}
},
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "emitter",
+ "memberof": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable",
+ "longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#emitter",
+ "access": null,
+ "description": null,
+ "lineNumber": 29,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
{
"kind": "method",
"static": false,
@@ -387,7 +556,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#init",
"access": null,
"description": "Conditionally load ezEditTable library and set advanced grid",
- "lineNumber": 35,
+ "lineNumber": 36,
"params": [],
"return": {
"nullable": null,
@@ -408,7 +577,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#_setAdvancedGrid",
"access": null,
"description": "Instantiate ezEditTable component for advanced grid features",
- "lineNumber": 51,
+ "lineNumber": 57,
"params": [],
"generator": false
},
@@ -421,7 +590,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#_ezEditTable",
"access": null,
"description": null,
- "lineNumber": 337,
+ "lineNumber": 345,
"undocument": true,
"type": {
"types": [
@@ -438,7 +607,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#initialized",
"access": null,
"description": null,
- "lineNumber": 341,
+ "lineNumber": 349,
"undocument": true,
"type": {
"types": [
@@ -455,7 +624,34 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#reset",
"access": null,
"description": "Reset advanced grid when previously removed",
- "lineNumber": 347,
+ "lineNumber": 355,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "toggle",
+ "memberof": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable",
+ "longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#toggle",
+ "access": null,
+ "description": "Toggle behaviour",
+ "lineNumber": 370,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "_toggleForInputFilter",
+ "memberof": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable",
+ "longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#_toggleForInputFilter",
+ "access": null,
+ "description": null,
+ "lineNumber": 384,
+ "undocument": true,
"params": [],
"generator": false
},
@@ -468,7 +664,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#destroy",
"access": null,
"description": "Remove advanced grid",
- "lineNumber": 362,
+ "lineNumber": 399,
"params": [],
"generator": false
},
@@ -481,7 +677,7 @@
"longname": "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#initialized",
"access": null,
"description": null,
- "lineNumber": 373,
+ "lineNumber": 413,
"undocument": true,
"type": {
"types": [
@@ -511,7 +707,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Dom from '../../dom';\nimport Str from '../../string';\nimport Types from '../../types';\n\nexport default class ColOps{\n\n /**\n * Column calculations\n * @param {Object} tf TableFilter instance\n */\n constructor(tf, opts) {\n\n //calls function before col operation\n this.onBeforeOperation = Types.isFn(opts.on_before_operation) ?\n opts.on_before_operation : null;\n //calls function after col operation\n this.onAfterOperation = Types.isFn(opts.on_after_operation) ?\n opts.on_after_operation : null;\n\n this.opts = opts;\n this.tf = tf;\n }\n\n init(){\n this.calc();\n }\n\n /**\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n */\n calc() {\n var tf = this.tf;\n if(!tf.isFirstLoad && !tf.hasGrid()){\n return;\n }\n\n if(this.onBeforeOperation){\n this.onBeforeOperation.call(null, tf);\n }\n\n var opts = this.opts,\n labelId = opts.id,\n colIndex = opts.col,\n operation = opts.operation,\n outputType = opts.write_method,\n totRowIndex = opts.tot_row_index,\n excludeRow = opts.exclude_row,\n decimalPrecision = Types.isUndef(opts.decimal_precision) ?\n 2 : opts.decimal_precision;\n\n //nuovella: determine unique list of columns to operate on\n var ucolIndex = [],\n ucolMax = 0;\n ucolIndex[ucolMax] = colIndex[0];\n\n for(var ii=1; ii maxValue ?\n parseFloat( cvalue ): maxValue;\n }\n }\n }\n }//for j\n if(meanFlag===1){\n meanValue = sumValue/nbvalues;\n }\n if(medFlag===1){\n var aux = 0;\n if(nbvalues%2 === 1){\n aux = Math.floor(nbvalues/2);\n medValue = theList[aux];\n } else{\n medValue =\n (theList[nbvalues/2] + theList[((nbvalues/2)-1)])/2;\n }\n }\n var posa;\n if(q1Flag===1){\n posa=0.0;\n posa = Math.floor(nbvalues/4);\n if(4*posa == nbvalues){\n q1Value = (theList[posa-1] + theList[posa])/2;\n } else {\n q1Value = theList[posa];\n }\n }\n if (q3Flag===1){\n posa=0.0;\n var posb=0.0;\n posa = Math.floor(nbvalues/4);\n if (4*posa === nbvalues){\n posb = 3*posa;\n q3Value = (theList[posb] + theList[posb-1])/2;\n } else {\n q3Value = theList[nbvalues-posa-1];\n }\n }\n\n for(var i=0; i<=mThisCol; i++){\n switch( opsThisCol[i] ){\n case 'mean':\n result=meanValue;\n break;\n case 'sum':\n result=sumValue;\n break;\n case 'min':\n result=minValue;\n break;\n case 'max':\n result=maxValue;\n break;\n case 'median':\n result=medValue;\n break;\n case 'q1':\n result=q1Value;\n break;\n case 'q3':\n result=q3Value;\n break;\n }\n\n var precision = !isNaN(decThisCol[i]) ? decThisCol[i] : 2;\n\n //if outputType is defined\n if(oTypeThisCol && result){\n result = result.toFixed( precision );\n\n if(Dom.id(labThisCol[i])){\n switch( Str.lower(oTypeThisCol) ){\n case 'innerhtml':\n if (isNaN(result) || !isFinite(result) ||\n nbvalues===0){\n Dom.id(labThisCol[i]).innerHTML = '.';\n } else{\n Dom.id(labThisCol[i]).innerHTML= result;\n }\n break;\n case 'setvalue':\n Dom.id( labThisCol[i] ).value = result;\n break;\n case 'createtextnode':\n var oldnode = Dom.id(labThisCol[i])\n .firstChild;\n var txtnode = Dom.text(result);\n Dom.id(labThisCol[i])\n .replaceChild(txtnode, oldnode);\n break;\n }//switch\n }\n } else {\n try{\n if(isNaN(result) || !isFinite(result) ||\n nbvalues===0){\n Dom.id(labThisCol[i]).innerHTML = '.';\n } else {\n Dom.id(labThisCol[i]).innerHTML =\n result.toFixed(precision);\n }\n } catch(e) {}//catch\n }//else\n }//for i\n\n // row(s) with result are always visible\n var totRow = totRowIndex && totRowIndex[ucol] ?\n rows[totRowIndex[ucol]] : null;\n if(totRow){\n totRow.style.display = '';\n }\n }//for ucol\n }//if typeof\n\n if(this.onAfterOperation){\n this.onAfterOperation.call(null, tf);\n }\n }\n\n destroy(){}\n\n}\n"
+ "content": "import Dom from '../../dom';\nimport Str from '../../string';\nimport Types from '../../types';\n\nexport default class ColOps{\n\n /**\n * Column calculations\n * @param {Object} tf TableFilter instance\n */\n constructor(tf, opts) {\n\n //calls function before col operation\n this.onBeforeOperation = Types.isFn(opts.on_before_operation) ?\n opts.on_before_operation : null;\n //calls function after col operation\n this.onAfterOperation = Types.isFn(opts.on_after_operation) ?\n opts.on_after_operation : null;\n\n this.opts = opts;\n this.tf = tf;\n }\n\n init(){\n // subscribe to events\n this.tf.emitter.on(['after-filtering'], ()=> this.calc());\n\n this.calc();\n }\n\n /**\n * Calculates columns' values\n * Configuration options are stored in 'opts' property\n * - 'id' contains ids of elements showing result (array)\n * - 'col' contains the columns' indexes (array)\n * - 'operation' contains operation type (array, values: 'sum', 'mean',\n * 'min', 'max', 'median', 'q1', 'q3')\n * - 'write_method' array defines which method to use for displaying the\n * result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n * - 'tot_row_index' defines in which row results are displayed\n * (integers array)\n *\n * - changes made by Nuovella:\n * (1) optimized the routine (now it will only process each column once),\n * (2) added calculations for the median, lower and upper quartile.\n */\n calc() {\n var tf = this.tf;\n if(!tf.hasGrid()){\n return;\n }\n\n if(this.onBeforeOperation){\n this.onBeforeOperation.call(null, tf);\n }\n\n var opts = this.opts,\n labelId = opts.id,\n colIndex = opts.col,\n operation = opts.operation,\n outputType = opts.write_method,\n totRowIndex = opts.tot_row_index,\n excludeRow = opts.exclude_row,\n decimalPrecision = Types.isUndef(opts.decimal_precision) ?\n 2 : opts.decimal_precision;\n\n //nuovella: determine unique list of columns to operate on\n var ucolIndex = [],\n ucolMax = 0;\n ucolIndex[ucolMax] = colIndex[0];\n\n for(var ii=1; ii maxValue ?\n parseFloat( cvalue ): maxValue;\n }\n }\n }\n }//for j\n if(meanFlag===1){\n meanValue = sumValue/nbvalues;\n }\n if(medFlag===1){\n var aux = 0;\n if(nbvalues%2 === 1){\n aux = Math.floor(nbvalues/2);\n medValue = theList[aux];\n } else{\n medValue =\n (theList[nbvalues/2] + theList[((nbvalues/2)-1)])/2;\n }\n }\n var posa;\n if(q1Flag===1){\n posa=0.0;\n posa = Math.floor(nbvalues/4);\n if(4*posa == nbvalues){\n q1Value = (theList[posa-1] + theList[posa])/2;\n } else {\n q1Value = theList[posa];\n }\n }\n if (q3Flag===1){\n posa=0.0;\n var posb=0.0;\n posa = Math.floor(nbvalues/4);\n if (4*posa === nbvalues){\n posb = 3*posa;\n q3Value = (theList[posb] + theList[posb-1])/2;\n } else {\n q3Value = theList[nbvalues-posa-1];\n }\n }\n\n for(var i=0; i<=mThisCol; i++){\n switch( opsThisCol[i] ){\n case 'mean':\n result=meanValue;\n break;\n case 'sum':\n result=sumValue;\n break;\n case 'min':\n result=minValue;\n break;\n case 'max':\n result=maxValue;\n break;\n case 'median':\n result=medValue;\n break;\n case 'q1':\n result=q1Value;\n break;\n case 'q3':\n result=q3Value;\n break;\n }\n\n var precision = !isNaN(decThisCol[i]) ? decThisCol[i] : 2;\n\n //if outputType is defined\n if(oTypeThisCol && result){\n result = result.toFixed( precision );\n\n if(Dom.id(labThisCol[i])){\n switch( Str.lower(oTypeThisCol) ){\n case 'innerhtml':\n if (isNaN(result) || !isFinite(result) ||\n nbvalues===0){\n Dom.id(labThisCol[i]).innerHTML = '.';\n } else{\n Dom.id(labThisCol[i]).innerHTML= result;\n }\n break;\n case 'setvalue':\n Dom.id( labThisCol[i] ).value = result;\n break;\n case 'createtextnode':\n var oldnode = Dom.id(labThisCol[i])\n .firstChild;\n var txtnode = Dom.text(result);\n Dom.id(labThisCol[i])\n .replaceChild(txtnode, oldnode);\n break;\n }//switch\n }\n } else {\n try{\n if(isNaN(result) || !isFinite(result) ||\n nbvalues===0){\n Dom.id(labThisCol[i]).innerHTML = '.';\n } else {\n Dom.id(labThisCol[i]).innerHTML =\n result.toFixed(precision);\n }\n } catch(e) {}//catch\n }//else\n }//for i\n\n // row(s) with result are always visible\n var totRow = totRowIndex && totRowIndex[ucol] ?\n rows[totRowIndex[ucol]] : null;\n if(totRow){\n totRow.style.display = '';\n }\n }//for ucol\n }//if typeof\n\n if(this.onAfterOperation){\n this.onAfterOperation.call(null, tf);\n }\n }\n\n destroy(){\n // unsubscribe to events\n this.tf.emitter.off(['after-filtering'], ()=> this.calc());\n }\n\n}\n"
},
{
"kind": "class",
@@ -644,7 +840,7 @@
"longname": "src/extensions/colOps/colOps.js~ColOps#calc",
"access": null,
"description": "Calculates columns' values\nConfiguration options are stored in 'opts' property\n- 'id' contains ids of elements showing result (array)\n- 'col' contains the columns' indexes (array)\n- 'operation' contains operation type (array, values: 'sum', 'mean',\n 'min', 'max', 'median', 'q1', 'q3')\n- 'write_method' array defines which method to use for displaying the\n result (innerHTML, setValue, createTextNode) - default: 'innerHTML'\n- 'tot_row_index' defines in which row results are displayed\n (integers array)\n\n- changes made by Nuovella:\n(1) optimized the routine (now it will only process each column once),\n(2) added calculations for the median, lower and upper quartile.",
- "lineNumber": 44,
+ "lineNumber": 47,
"params": [],
"generator": false
},
@@ -657,7 +853,7 @@
"longname": "src/extensions/colOps/colOps.js~ColOps#destroy",
"access": null,
"description": null,
- "lineNumber": 313,
+ "lineNumber": 316,
"undocument": true,
"params": [],
"generator": false
@@ -2613,7 +2809,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Types from '../../types';\nimport Dom from '../../dom';\nimport Event from '../../event';\nimport DateHelper from '../../date';\nimport Helpers from '../../helpers';\n\nexport default class AdapterSortableTable{\n\n /**\n * SortableTable Adapter module\n * @param {Object} tf TableFilter instance\n */\n constructor(tf, opts){\n this.initialized = false;\n this.name = opts.name;\n this.desc = opts.description || 'Sortable table';\n\n //indicates if tables was sorted\n this.sorted = false;\n\n this.sortTypes = Types.isArray(opts.types) ? opts.types : [];\n this.sortColAtStart = Types.isArray(opts.sort_col_at_start) ?\n opts.sort_col_at_start : null;\n this.asyncSort = Boolean(opts.async_sort);\n this.triggerIds = Types.isArray(opts.trigger_ids) ?\n opts.trigger_ids : [];\n\n // edit .sort-arrow.descending / .sort-arrow.ascending in\n // tablefilter.css to reflect any path change\n this.imgPath = opts.images_path || tf.themesPath;\n this.imgBlank = opts.image_blank || 'blank.png';\n this.imgClassName = opts.image_class_name || 'sort-arrow';\n this.imgAscClassName = opts.image_asc_class_name || 'ascending';\n this.imgDescClassName = opts.image_desc_class_name ||'descending';\n //cell attribute storing custom key\n this.customKey = opts.custom_key || 'data-tf-sortKey';\n\n // callback invoked after sort is loaded and instanciated\n this.onSortLoaded = Types.isFn(opts.on_sort_loaded) ?\n opts.on_sort_loaded : null;\n // callback invoked before table is sorted\n this.onBeforeSort = Types.isFn(opts.on_before_sort) ?\n opts.on_before_sort : null;\n // callback invoked after table is sorted\n this.onAfterSort = Types.isFn(opts.on_after_sort) ?\n opts.on_after_sort : null;\n\n this.tf = tf;\n }\n\n init(){\n let tf = this.tf;\n let adpt = this;\n\n // SortableTable class sanity check (sortabletable.js)\n if(Types.isUndef(SortableTable)){\n throw new Error('SortableTable class not found.');\n }\n\n this.overrideSortableTable();\n this.setSortTypes();\n\n //Column sort at start\n let sortColAtStart = adpt.sortColAtStart;\n if(sortColAtStart){\n this.stt.sort(sortColAtStart[0], sortColAtStart[1]);\n }\n\n if(this.onSortLoaded){\n this.onSortLoaded.call(null, tf, this);\n }\n\n /*** SortableTable callbacks ***/\n this.stt.onbeforesort = function(){\n if(adpt.onBeforeSort){\n adpt.onBeforeSort.call(null, tf, adpt.stt.sortColumn);\n }\n\n /*** sort behaviour for paging ***/\n if(tf.paging){\n tf.feature('paging').disable();\n }\n };\n\n this.stt.onsort = function(){\n adpt.sorted = true;\n\n //rows alternating bg issue\n // TODO: move into AlternateRows component\n if(tf.alternateRows){\n let rows = tf.tbl.rows, c = 0;\n\n let setClass = function(row, i, removeOnly){\n if(Types.isUndef(removeOnly)){\n removeOnly = false;\n }\n let altRows = tf.feature('alternateRows'),\n oddCls = altRows.oddCss,\n evenCls = altRows.evenCss;\n Dom.removeClass(row, oddCls);\n Dom.removeClass(row, evenCls);\n\n if(!removeOnly){\n Dom.addClass(row, i % 2 ? oddCls : evenCls);\n }\n };\n\n for (let i = tf.refRow; i < tf.nbRows; i++){\n let isRowValid = rows[i].getAttribute('validRow');\n if(tf.paging && rows[i].style.display === ''){\n setClass(rows[i], c);\n c++;\n } else {\n if((isRowValid==='true' || isRowValid===null) &&\n rows[i].style.display === ''){\n setClass(rows[i], c);\n c++;\n } else {\n setClass(rows[i], c, true);\n }\n }\n }\n }\n //sort behaviour for paging\n if(tf.paging){\n let paginator = tf.feature('paging');\n // recalculate valid rows index as sorting may have change it\n tf.getValidRows(true);\n paginator.enable();\n paginator.setPage(paginator.getPage());\n }\n\n if(adpt.onAfterSort){\n adpt.onAfterSort.call(null, tf, adpt.stt.sortColumn);\n }\n };\n\n this.initialized = true;\n }\n\n /**\n * Sort specified column\n * @param {Number} colIdx Column index\n * @param {Boolean} desc Optional: descending manner\n */\n sortByColumnIndex(colIdx, desc){\n this.stt.sort(colIdx, desc);\n }\n\n overrideSortableTable(){\n let adpt = this,\n tf = this.tf;\n\n /**\n * Overrides headerOnclick method in order to handle th event\n * @param {Object} e [description]\n */\n SortableTable.prototype.headerOnclick = function(evt){\n if(!adpt.initialized){\n return;\n }\n\n // find Header element\n let el = evt.target || evt.srcElement;\n\n while(el.tagName !== 'TD' && el.tagName !== 'TH'){\n el = el.parentNode;\n }\n\n this.sort(\n SortableTable.msie ?\n SortableTable.getCellIndex(el) : el.cellIndex\n );\n };\n\n /**\n * Overrides getCellIndex IE returns wrong cellIndex when columns are\n * hidden\n * @param {Object} oTd TD element\n * @return {Number} Cell index\n */\n SortableTable.getCellIndex = function(oTd){\n let cells = oTd.parentNode.cells,\n l = cells.length, i;\n for (i = 0; cells[i] != oTd && i < l; i++){}\n return i;\n };\n\n /**\n * Overrides initHeader in order to handle filters row position\n * @param {Array} oSortTypes\n */\n SortableTable.prototype.initHeader = function(oSortTypes){\n let stt = this;\n if (!stt.tHead){\n if(tf.gridLayout){\n stt.tHead = tf.feature('gridLayout').headTbl.tHead;\n } else {\n return;\n }\n }\n\n stt.headersRow = tf.headersRow;\n let cells = stt.tHead.rows[stt.headersRow].cells;\n stt.sortTypes = oSortTypes || [];\n let l = cells.length;\n let img, c;\n\n for (let i = 0; i < l; i++) {\n c = cells[i];\n if (stt.sortTypes[i] !== null && stt.sortTypes[i] !== 'None'){\n c.style.cursor = 'pointer';\n img = Dom.create('img',\n ['src', adpt.imgPath + adpt.imgBlank]);\n c.appendChild(img);\n if (stt.sortTypes[i] !== null){\n c.setAttribute( '_sortType', stt.sortTypes[i]);\n }\n Event.add(c, 'click', stt._headerOnclick);\n } else {\n c.setAttribute('_sortType', oSortTypes[i]);\n c._sortType = 'None';\n }\n }\n stt.updateHeaderArrows();\n };\n\n /**\n * Overrides updateHeaderArrows in order to handle arrows indicators\n */\n SortableTable.prototype.updateHeaderArrows = function(){\n let stt = this;\n let cells, l, img;\n\n // external headers\n if(adpt.asyncSort && adpt.triggerIds.length > 0){\n let triggers = adpt.triggerIds;\n cells = [];\n l = triggers.length;\n for(let j=0; j 0){\n let triggers = this.triggerIds;\n for(let j=0; j {\n let elm = evt.target;\n if(!this.tf.sort){\n return;\n }\n this.stt.asyncSort(triggers.indexOf(elm.id));\n });\n trigger.setAttribute('_sortType', _sortTypes[j]);\n }\n }\n }\n }\n\n /**\n * Destroy sort\n */\n destroy(){\n let tf = this.tf;\n this.sorted = false;\n this.initialized = false;\n this.stt.destroy();\n\n let ids = tf.getFiltersId();\n for (let idx = 0; idx < ids.length; idx++){\n let header = tf.getHeaderElement(idx);\n let img = Dom.tag(header, 'img');\n\n if(img.length === 1){\n header.removeChild(img[0]);\n }\n }\n }\n\n}\n\n//Converters\nfunction usNumberConverter(s){\n return Helpers.removeNbFormat(s, 'us');\n}\nfunction euNumberConverter(s){\n return Helpers.removeNbFormat(s, 'eu');\n}\nfunction dateConverter(s, format){\n return DateHelper.format(s, format);\n}\nfunction dmyDateConverter(s){\n return dateConverter(s, 'DMY');\n}\nfunction mdyDateConverter(s){\n return dateConverter(s, 'MDY');\n}\nfunction ymdDateConverter(s){\n return dateConverter(s, 'YMD');\n}\nfunction ddmmmyyyyDateConverter(s){\n return dateConverter(s, 'DDMMMYYYY');\n}\n\nfunction ipAddress(value){\n let vals = value.split('.');\n for (let x in vals) {\n let val = vals[x];\n while (3 > val.length){\n val = '0'+val;\n }\n vals[x] = val;\n }\n return vals.join('.');\n}\n\nfunction sortIP(a,b){\n let aa = ipAddress(a.value.toLowerCase());\n let bb = ipAddress(b.value.toLowerCase());\n if (aa==bb){\n return 0;\n } else if (aa 0){\n let triggers = adpt.triggerIds;\n cells = [];\n l = triggers.length;\n for(let j=0; j 0){\n let triggers = this.triggerIds;\n for(let j=0; j {\n let elm = evt.target;\n if(!this.tf.sort){\n return;\n }\n this.stt.asyncSort(triggers.indexOf(elm.id));\n });\n trigger.setAttribute('_sortType', _sortTypes[j]);\n }\n }\n }\n }\n\n /**\n * Destroy sort\n */\n destroy(){\n let tf = this.tf;\n this.sorted = false;\n this.initialized = false;\n this.stt.destroy();\n\n let ids = tf.getFiltersId();\n for (let idx = 0; idx < ids.length; idx++){\n let header = tf.getHeaderElement(idx);\n let img = Dom.tag(header, 'img');\n\n if(img.length === 1){\n header.removeChild(img[0]);\n }\n }\n }\n\n}\n\n//Converters\nfunction usNumberConverter(s){\n return Helpers.removeNbFormat(s, 'us');\n}\nfunction euNumberConverter(s){\n return Helpers.removeNbFormat(s, 'eu');\n}\nfunction dateConverter(s, format){\n return DateHelper.format(s, format);\n}\nfunction dmyDateConverter(s){\n return dateConverter(s, 'DMY');\n}\nfunction mdyDateConverter(s){\n return dateConverter(s, 'MDY');\n}\nfunction ymdDateConverter(s){\n return dateConverter(s, 'YMD');\n}\nfunction ddmmmyyyyDateConverter(s){\n return dateConverter(s, 'DDMMMYYYY');\n}\n\nfunction ipAddress(value){\n let vals = value.split('.');\n for (let x in vals) {\n let val = vals[x];\n while (3 > val.length){\n val = '0'+val;\n }\n vals[x] = val;\n }\n return vals.join('.');\n}\n\nfunction sortIP(a,b){\n let aa = ipAddress(a.value.toLowerCase());\n let bb = ipAddress(b.value.toLowerCase());\n if (aa==bb){\n return 0;\n } else if (aa\n this.processRow(rowIndex, arrIndex, isValid));\n this.emitter.on(['column-sorted'], ()=> this.processAll());\n\n this.initialized = true;\n }\n\n processAll() {\n if(!this.isEnabled()){\n return;\n }\n var tf = this.tf;\n var validRowsIndex = tf.getValidRows(true);\n var noValidRowsIndex = validRowsIndex.length === 0;\n //1st index\n var beginIndex = noValidRowsIndex ? tf.refRow : 0;\n // nb indexes\n var indexLen = noValidRowsIndex ?\n tf.nbFilterableRows+beginIndex :\n validRowsIndex.length;\n var idx = 0;\n\n //alternates bg color\n for(var j=beginIndex; j\n this.processRow(rowIndex, arrIndex, isValid));\n this.emitter.off(['column-sorted'], ()=> this.processAll());\n\n this.initialized = false;\n }\n\n}\n"
},
{
"kind": "class",
@@ -3540,7 +3753,7 @@
"longname": "src/modules/alternateRows.js~AlternateRows#initialized",
"access": null,
"description": null,
- "lineNumber": 45,
+ "lineNumber": 36,
"undocument": true,
"type": {
"types": [
@@ -3548,6 +3761,54 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "processAll",
+ "memberof": "src/modules/alternateRows.js~AlternateRows",
+ "longname": "src/modules/alternateRows.js~AlternateRows#processAll",
+ "access": null,
+ "description": null,
+ "lineNumber": 39,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "processRow",
+ "memberof": "src/modules/alternateRows.js~AlternateRows",
+ "longname": "src/modules/alternateRows.js~AlternateRows#processRow",
+ "access": null,
+ "description": "Set/remove row background based on row validation",
+ "lineNumber": 67,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Number"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "rowIdx",
+ "description": "Row index"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Boolean"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "isValid",
+ "description": "Valid row flag"
+ }
+ ],
+ "generator": false
+ },
{
"kind": "method",
"static": false,
@@ -3557,7 +3818,7 @@
"longname": "src/modules/alternateRows.js~AlternateRows#setRowBg",
"access": null,
"description": "Sets row background color",
- "lineNumber": 54,
+ "lineNumber": 81,
"params": [
{
"nullable": null,
@@ -3591,7 +3852,7 @@
"longname": "src/modules/alternateRows.js~AlternateRows#removeRowBg",
"access": null,
"description": "Removes row background color",
- "lineNumber": 72,
+ "lineNumber": 99,
"params": [
{
"nullable": null,
@@ -3615,7 +3876,7 @@
"longname": "src/modules/alternateRows.js~AlternateRows#destroy",
"access": null,
"description": "Removes all alternating backgrounds",
- "lineNumber": 84,
+ "lineNumber": 111,
"params": [],
"generator": false
},
@@ -3628,7 +3889,7 @@
"longname": "src/modules/alternateRows.js~AlternateRows#initialized",
"access": null,
"description": null,
- "lineNumber": 91,
+ "lineNumber": 125,
"undocument": true,
"type": {
"types": [
@@ -3646,7 +3907,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Dom from '../dom';\nimport Arr from '../array';\nimport Str from '../string';\nimport Sort from '../sort';\nimport Event from '../event';\n\nexport class CheckList{\n\n /**\n * Checklist UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n // Configuration object\n var f = tf.config();\n\n this.checkListDiv = []; //checklist container div\n //defines css class for div containing checklist filter\n this.checkListDivCssClass = f.div_checklist_css_class ||\n 'div_checklist';\n //defines css class for checklist filters\n this.checkListCssClass = f.checklist_css_class || 'flt_checklist';\n //defines css class for checklist item (li)\n this.checkListItemCssClass = f.checklist_item_css_class ||\n 'flt_checklist_item';\n //defines css class for selected checklist item (li)\n this.checkListSlcItemCssClass = f.checklist_selected_item_css_class ||\n 'flt_checklist_slc_item';\n //Load on demand text\n this.activateCheckListTxt = f.activate_checklist_text ||\n 'Click to load filter data';\n //defines css class for checklist filters\n this.checkListItemDisabledCssClass =\n f.checklist_item_disabled_css_class ||\n 'flt_checklist_item_disabled';\n this.enableCheckListResetFilter =\n f.enable_checklist_reset_filter===false ? false : true;\n //checklist filter container div\n this.prfxCheckListDiv = 'chkdiv_';\n\n this.isCustom = null;\n this.opts = null;\n this.optsTxt = null;\n this.excludedOpts = null;\n\n this.tf = tf;\n }\n\n // TODO: move event here\n onChange(evt){\n let elm = evt.target;\n this.tf.activeFilterId = elm.getAttribute('id');\n this.tf.activeFlt = Dom.id(this.tf.activeFilterId);\n this.tf.Evt.onSlcChange.call(this.tf, evt);\n }\n\n optionClick(evt){\n this.setCheckListValues(evt.target);\n this.onChange(evt);\n }\n\n /**\n * Build checklist UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n */\n build(colIndex, isExternal, extFltId){\n var tf = this.tf;\n tf.EvtManager(\n tf.Evt.name.checklist,\n { slcIndex:colIndex, slcExternal:isExternal, slcId:extFltId }\n );\n }\n\n /**\n * Build checklist UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n */\n _build(colIndex, isExternal=false, extFltId=null){\n var tf = this.tf;\n colIndex = parseInt(colIndex, 10);\n\n this.opts = [];\n this.optsTxt = [];\n\n var divFltId = this.prfxCheckListDiv+colIndex+'_'+tf.id;\n if((!Dom.id(divFltId) && !isExternal) ||\n (!Dom.id(extFltId) && isExternal)){\n return;\n }\n\n var flt = !isExternal ? this.checkListDiv[colIndex] : Dom.id(extFltId);\n var ul = Dom.create(\n 'ul', ['id', tf.fltIds[colIndex]], ['colIndex', colIndex]);\n ul.className = this.checkListCssClass;\n Event.add(ul, 'change', (evt) => { this.onChange(evt); });\n\n var rows = tf.tbl.rows;\n this.isCustom = tf.isCustomOptions(colIndex);\n\n var activeFlt;\n if(tf.linkedFilters && tf.activeFilterId){\n activeFlt = tf.activeFilterId.split('_')[0];\n activeFlt = activeFlt.split(tf.prfxFlt)[1];\n }\n\n var filteredDataCol = [];\n if(tf.linkedFilters && tf.disableExcludedOptions){\n this.excludedOpts = [];\n }\n\n for(var k=tf.refRow; k 0){\n if(tf.hasCustomSlcOptions &&\n tf.customSlcOptions.cols.indexOf(colIndex) != -1){\n fltArr.push(tmpVal);\n } else {\n fltArr = tmpVal.split(' '+tf.orOperator+' ');\n }\n }\n\n for(var y=0; y { this.optionClick(evt); });\n }\n ul.appendChild(li);\n\n if(val===''){\n //item is hidden\n li.style.display = 'none';\n }\n\n /*** remember grid values ***/\n if(tf.rememberGridValues){\n if((tf.hasCustomSlcOptions &&\n tf.customSlcOptions.cols.indexOf(colIndex) != -1 &&\n fltArr.toString().indexOf(val) != -1) ||\n Arr.has(fltArr,\n Str.matchCase(val, tf.matchCase), tf.matchCase)){\n li.check.checked = true;\n this.setCheckListValues(li.check);\n }\n }\n }\n }\n\n /**\n * Add checklist header option\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n */\n addTChecks(colIndex, ul){\n var tf = this.tf;\n var chkCt = 1;\n var li0 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_0', '', tf.displayAllText);\n li0.className = this.checkListItemCssClass;\n ul.appendChild(li0);\n\n Event.add(li0.check, 'click', (evt) => {\n this.optionClick(evt);\n });\n\n if(!this.enableCheckListResetFilter){\n li0.style.display = 'none';\n }\n\n if(tf.enableEmptyOption){\n var li1 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_1', tf.emOperator, tf.emptyText);\n li1.className = this.checkListItemCssClass;\n ul.appendChild(li1);\n Event.add(li1.check, 'click', (evt) => {\n this.optionClick(evt);\n });\n chkCt++;\n }\n\n if(tf.enableNonEmptyOption){\n var li2 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_2',\n tf.nmOperator,\n tf.nonEmptyText\n );\n li2.className = this.checkListItemCssClass;\n ul.appendChild(li2);\n Event.add(li2.check, 'click', (evt) => {\n this.optionClick(evt);\n });\n chkCt++;\n }\n return chkCt;\n }\n\n /**\n * Store checked options in DOM element attribute\n * @param {Object} o checklist option DOM element\n */\n setCheckListValues(o){\n if(!o){\n return;\n }\n var tf = this.tf;\n var chkValue = o.value; //checked item value\n var chkIndex = parseInt(o.id.split('_')[2], 10);\n var filterTag = 'ul', itemTag = 'li';\n var n = o;\n\n //ul tag search\n while(Str.lower(n.nodeName)!==filterTag){\n n = n.parentNode;\n }\n\n var li = n.childNodes[chkIndex];\n var colIndex = n.getAttribute('colIndex');\n var fltValue = n.getAttribute('value'); //filter value (ul tag)\n var fltIndexes = n.getAttribute('indexes'); //selected items (ul tag)\n\n if(o.checked){\n //show all item\n if(chkValue===''){\n if((fltIndexes && fltIndexes!=='')){\n //items indexes\n var indSplit = fltIndexes.split(tf.separator);\n //checked items loop\n for(var u=0; u this.onCheckListClick(evt));\n }\n }\n\n /**\n * Initialize checklist filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n */\n init(colIndex, isExternal, container){\n let tf = this.tf;\n let externalFltTgtId = isExternal ?\n tf.externalFltTgtIds[colIndex] : null;\n\n let divCont = Dom.create('div',\n ['id', this.prfxCheckListDiv+colIndex+'_'+tf.id],\n ['ct', colIndex], ['filled', '0']);\n divCont.className = this.checkListDivCssClass;\n\n //filter is appended in desired element\n if(externalFltTgtId){\n Dom.id(externalFltTgtId).appendChild(divCont);\n tf.externalFltEls.push(divCont);\n } else {\n container.appendChild(divCont);\n }\n\n this.checkListDiv[colIndex] = divCont;\n tf.fltIds.push(tf.prfxFlt+colIndex+'_'+tf.id);\n\n if(!tf.loadFltOnDemand){\n this.build(colIndex);\n } else {\n Event.add(divCont, 'click', (evt)=> this.onCheckListClick(evt));\n divCont.appendChild(Dom.text(this.activateCheckListTxt));\n }\n\n this.emitter.on(\n ['build-checklist-filter'],\n (tf, colIndex, isExternal)=> this.build(colIndex, isExternal)\n );\n\n this.emitter.on(\n ['select-checklist-options'],\n (tf, colIndex, values)=> this.selectOptions(colIndex, values)\n );\n\n this.initialized = true;\n }\n\n /**\n * Build checklist UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal Render in external container\n * @param {String} extFltId External container id\n */\n build(colIndex, isExternal=false, extFltId=null){\n let tf = this.tf;\n colIndex = parseInt(colIndex, 10);\n\n this.emitter.emit('before-populating-filter', tf, colIndex);\n\n this.opts = [];\n this.optsTxt = [];\n\n let divFltId = this.prfxCheckListDiv+colIndex+'_'+tf.id;\n if((!Dom.id(divFltId) && !isExternal) ||\n (!Dom.id(extFltId) && isExternal)){\n return;\n }\n\n let flt = !isExternal ? this.checkListDiv[colIndex] : Dom.id(extFltId);\n let ul = Dom.create(\n 'ul', ['id', tf.fltIds[colIndex]], ['colIndex', colIndex]);\n ul.className = this.checkListCssClass;\n Event.add(ul, 'change', (evt)=> this.onChange(evt));\n\n let rows = tf.tbl.rows;\n this.isCustom = tf.isCustomOptions(colIndex);\n\n let activeFlt;\n if(tf.linkedFilters && tf.activeFilterId){\n activeFlt = tf.activeFilterId.split('_')[0];\n activeFlt = activeFlt.split(tf.prfxFlt)[1];\n }\n\n let filteredDataCol = [];\n if(tf.linkedFilters && tf.disableExcludedOptions){\n this.excludedOpts = [];\n }\n\n for(let k=tf.refRow; k this.optionClick(evt));\n }\n ul.appendChild(li);\n\n if(val === ''){\n //item is hidden\n li.style.display = 'none';\n }\n }\n }\n\n /**\n * Add checklist header option\n * @param {Number} colIndex Column index\n * @param {Object} ul Ul element\n */\n addTChecks(colIndex, ul){\n let tf = this.tf;\n let chkCt = 1;\n let li0 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_0', '', tf.displayAllText);\n li0.className = this.checkListItemCssClass;\n ul.appendChild(li0);\n\n Event.add(li0.check, 'click', (evt)=> this.optionClick(evt));\n\n if(!this.enableCheckListResetFilter){\n li0.style.display = 'none';\n }\n\n if(tf.enableEmptyOption){\n let li1 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_1', tf.emOperator, tf.emptyText);\n li1.className = this.checkListItemCssClass;\n ul.appendChild(li1);\n Event.add(li1.check, 'click', (evt)=> this.optionClick(evt));\n chkCt++;\n }\n\n if(tf.enableNonEmptyOption){\n let li2 = Dom.createCheckItem(\n tf.fltIds[colIndex]+'_2',\n tf.nmOperator,\n tf.nonEmptyText\n );\n li2.className = this.checkListItemCssClass;\n ul.appendChild(li2);\n Event.add(li2.check, 'click', (evt)=> this.optionClick(evt));\n chkCt++;\n }\n return chkCt;\n }\n\n /**\n * Store checked options in DOM element attribute\n * @param {Object} o checklist option DOM element\n */\n setCheckListValues(o){\n if(!o){\n return;\n }\n let tf = this.tf;\n let chkValue = o.value; //checked item value\n let chkIndex = parseInt(o.id.split('_')[2], 10);\n let filterTag = 'ul', itemTag = 'li';\n let n = o;\n\n //ul tag search\n while(Str.lower(n.nodeName)!==filterTag){\n n = n.parentNode;\n }\n\n let li = n.childNodes[chkIndex];\n let colIndex = n.getAttribute('colIndex');\n let fltValue = n.getAttribute('value'); //filter value (ul tag)\n let fltIndexes = n.getAttribute('indexes'); //selected items (ul tag)\n\n if(o.checked){\n //show all item\n if(chkValue===''){\n if((fltIndexes && fltIndexes!=='')){\n //items indexes\n let indSplit = fltIndexes.split(tf.separator);\n //checked items loop\n for(let u=0; u this.build(colIndex, isExternal)\n );\n this.emitter.off(\n ['select-checklist-options'],\n (tf, colIndex, values)=> this.selectOptions(colIndex, values)\n );\n }\n}\n"
},
{
"kind": "class",
@@ -3660,9 +3921,12 @@
"importPath": "tablefilter/src/modules/checkList.js",
"importStyle": "{CheckList}",
"description": null,
- "lineNumber": 7,
+ "lineNumber": 8,
"undocument": true,
- "interface": false
+ "interface": false,
+ "extends": [
+ "src/modules/feature~Feature"
+ ]
},
{
"kind": "constructor",
@@ -3673,7 +3937,7 @@
"longname": "src/modules/checkList.js~CheckList#constructor",
"access": null,
"description": "Checklist UI component",
- "lineNumber": 13,
+ "lineNumber": 14,
"params": [
{
"nullable": null,
@@ -3697,7 +3961,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListDiv",
"access": null,
"description": null,
- "lineNumber": 17,
+ "lineNumber": 20,
"undocument": true,
"type": {
"types": [
@@ -3714,7 +3978,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListDivCssClass",
"access": null,
"description": null,
- "lineNumber": 19,
+ "lineNumber": 22,
"undocument": true,
"type": {
"types": [
@@ -3731,7 +3995,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListCssClass",
"access": null,
"description": null,
- "lineNumber": 22,
+ "lineNumber": 25,
"undocument": true,
"type": {
"types": [
@@ -3748,7 +4012,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListItemCssClass",
"access": null,
"description": null,
- "lineNumber": 24,
+ "lineNumber": 27,
"undocument": true,
"type": {
"types": [
@@ -3765,7 +4029,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListSlcItemCssClass",
"access": null,
"description": null,
- "lineNumber": 27,
+ "lineNumber": 30,
"undocument": true,
"type": {
"types": [
@@ -3782,7 +4046,7 @@
"longname": "src/modules/checkList.js~CheckList#activateCheckListTxt",
"access": null,
"description": null,
- "lineNumber": 30,
+ "lineNumber": 33,
"undocument": true,
"type": {
"types": [
@@ -3799,7 +4063,7 @@
"longname": "src/modules/checkList.js~CheckList#checkListItemDisabledCssClass",
"access": null,
"description": null,
- "lineNumber": 33,
+ "lineNumber": 36,
"undocument": true,
"type": {
"types": [
@@ -3816,7 +4080,7 @@
"longname": "src/modules/checkList.js~CheckList#enableCheckListResetFilter",
"access": null,
"description": null,
- "lineNumber": 36,
+ "lineNumber": 39,
"undocument": true,
"type": {
"types": [
@@ -3833,7 +4097,7 @@
"longname": "src/modules/checkList.js~CheckList#prfxCheckListDiv",
"access": null,
"description": null,
- "lineNumber": 39,
+ "lineNumber": 42,
"undocument": true,
"type": {
"types": [
@@ -3850,7 +4114,7 @@
"longname": "src/modules/checkList.js~CheckList#isCustom",
"access": null,
"description": null,
- "lineNumber": 41,
+ "lineNumber": 44,
"undocument": true,
"type": {
"types": [
@@ -3867,7 +4131,7 @@
"longname": "src/modules/checkList.js~CheckList#opts",
"access": null,
"description": null,
- "lineNumber": 42,
+ "lineNumber": 45,
"undocument": true,
"type": {
"types": [
@@ -3884,7 +4148,7 @@
"longname": "src/modules/checkList.js~CheckList#optsTxt",
"access": null,
"description": null,
- "lineNumber": 43,
+ "lineNumber": 46,
"undocument": true,
"type": {
"types": [
@@ -3901,24 +4165,7 @@
"longname": "src/modules/checkList.js~CheckList#excludedOpts",
"access": null,
"description": null,
- "lineNumber": 44,
- "undocument": true,
- "type": {
- "types": [
- "*"
- ]
- }
- },
- {
- "kind": "member",
- "static": false,
- "variation": null,
- "name": "tf",
- "memberof": "src/modules/checkList.js~CheckList",
- "longname": "src/modules/checkList.js~CheckList#tf",
- "access": null,
- "description": null,
- "lineNumber": 46,
+ "lineNumber": 47,
"undocument": true,
"type": {
"types": [
@@ -3956,7 +4203,7 @@
"longname": "src/modules/checkList.js~CheckList#optionClick",
"access": null,
"description": null,
- "lineNumber": 57,
+ "lineNumber": 58,
"undocument": true,
"params": [
{
@@ -3972,12 +4219,33 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "build",
+ "name": "onCheckListClick",
"memberof": "src/modules/checkList.js~CheckList",
- "longname": "src/modules/checkList.js~CheckList#build",
+ "longname": "src/modules/checkList.js~CheckList#onCheckListClick",
"access": null,
- "description": "Build checklist UI asynchronously",
- "lineNumber": 68,
+ "description": null,
+ "lineNumber": 63,
+ "undocument": true,
+ "params": [
+ {
+ "name": "evt",
+ "types": [
+ "*"
+ ]
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "init",
+ "memberof": "src/modules/checkList.js~CheckList",
+ "longname": "src/modules/checkList.js~CheckList#init",
+ "access": null,
+ "description": "Initialize checklist filter",
+ "lineNumber": 79,
"params": [
{
"nullable": null,
@@ -3997,31 +4265,48 @@
"spread": false,
"optional": false,
"name": "isExternal",
- "description": "Render in external container"
+ "description": "External filter flag"
},
{
"nullable": null,
"types": [
- "String"
+ "DOMElement"
],
"spread": false,
"optional": false,
- "name": "extFltId",
- "description": "External container id"
+ "name": "container",
+ "description": "Dom element containing the filter"
}
],
"generator": false
},
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "initialized",
+ "memberof": "src/modules/checkList.js~CheckList",
+ "longname": "src/modules/checkList.js~CheckList#initialized",
+ "access": null,
+ "description": null,
+ "lineNumber": 117,
+ "undocument": true,
+ "type": {
+ "types": [
+ "boolean"
+ ]
+ }
+ },
{
"kind": "method",
"static": false,
"variation": null,
- "name": "_build",
+ "name": "build",
"memberof": "src/modules/checkList.js~CheckList",
- "longname": "src/modules/checkList.js~CheckList#_build",
+ "longname": "src/modules/checkList.js~CheckList#build",
"access": null,
"description": "Build checklist UI",
- "lineNumber": 82,
+ "lineNumber": 126,
"params": [
{
"nullable": null,
@@ -4065,7 +4350,7 @@
"longname": "src/modules/checkList.js~CheckList#opts",
"access": null,
"description": null,
- "lineNumber": 86,
+ "lineNumber": 132,
"undocument": true,
"type": {
"types": [
@@ -4082,7 +4367,7 @@
"longname": "src/modules/checkList.js~CheckList#optsTxt",
"access": null,
"description": null,
- "lineNumber": 87,
+ "lineNumber": 133,
"undocument": true,
"type": {
"types": [
@@ -4099,7 +4384,7 @@
"longname": "src/modules/checkList.js~CheckList#isCustom",
"access": null,
"description": null,
- "lineNumber": 102,
+ "lineNumber": 148,
"undocument": true,
"type": {
"types": [
@@ -4116,7 +4401,7 @@
"longname": "src/modules/checkList.js~CheckList#excludedOpts",
"access": null,
"description": null,
- "lineNumber": 112,
+ "lineNumber": 158,
"undocument": true,
"type": {
"types": [
@@ -4133,7 +4418,7 @@
"longname": "src/modules/checkList.js~CheckList#opts",
"access": null,
"description": null,
- "lineNumber": 166,
+ "lineNumber": 211,
"undocument": true,
"type": {
"types": [
@@ -4150,7 +4435,7 @@
"longname": "src/modules/checkList.js~CheckList#optsTxt",
"access": null,
"description": null,
- "lineNumber": 167,
+ "lineNumber": 212,
"undocument": true,
"type": {
"types": [
@@ -4167,7 +4452,7 @@
"longname": "src/modules/checkList.js~CheckList#addChecks",
"access": null,
"description": "Add checklist options",
- "lineNumber": 237,
+ "lineNumber": 284,
"params": [
{
"nullable": null,
@@ -4201,7 +4486,7 @@
"longname": "src/modules/checkList.js~CheckList#addTChecks",
"access": null,
"description": "Add checklist header option",
- "lineNumber": 295,
+ "lineNumber": 317,
"params": [
{
"nullable": null,
@@ -4240,7 +4525,7 @@
"longname": "src/modules/checkList.js~CheckList#setCheckListValues",
"access": null,
"description": "Store checked options in DOM element attribute",
- "lineNumber": 342,
+ "lineNumber": 358,
"params": [
{
"nullable": null,
@@ -4255,6 +4540,54 @@
],
"generator": false
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "selectOptions",
+ "memberof": "src/modules/checkList.js~CheckList",
+ "longname": "src/modules/checkList.js~CheckList#selectOptions",
+ "access": null,
+ "description": "Select filter options programmatically",
+ "lineNumber": 441,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Number"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "colIndex",
+ "description": "Column index"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Array"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "values",
+ "description": "Array of option values to select"
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "destroy",
+ "memberof": "src/modules/checkList.js~CheckList",
+ "longname": "src/modules/checkList.js~CheckList#destroy",
+ "access": null,
+ "description": null,
+ "lineNumber": 470,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "file",
"static": true,
@@ -4530,7 +4863,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Dom from '../dom';\nimport Arr from '../array';\nimport Str from '../string';\nimport Sort from '../sort';\n\nexport class Dropdown{\n\n /**\n * Dropdown UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n // Configuration object\n var f = tf.config();\n\n this.enableSlcResetFilter = f.enable_slc_reset_filter===false ?\n false : true;\n //defines empty option text\n this.nonEmptyText = f.non_empty_text || '(Non empty)';\n //sets select filling method: 'innerHTML' or 'createElement'\n this.slcFillingMethod = f.slc_filling_method || 'createElement';\n //IE only, tooltip text appearing on select before it is populated\n this.activateSlcTooltip = f.activate_slc_tooltip ||\n 'Click to activate';\n //tooltip text appearing on multiple select\n this.multipleSlcTooltip = f.multiple_slc_tooltip ||\n 'Use Ctrl key for multiple selections';\n\n this.isCustom = null;\n this.opts = null;\n this.optsTxt = null;\n this.slcInnerHtml = null;\n\n this.tf = tf;\n }\n\n /**\n * Build drop-down filter UI asynchronously\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n */\n build(colIndex, isLinked, isExternal, extSlcId){\n var tf = this.tf;\n tf.EvtManager(\n tf.Evt.name.dropdown,\n {\n slcIndex: colIndex,\n slcRefreshed: isLinked,\n slcExternal: isExternal,\n slcId: extSlcId\n }\n );\n }\n\n /**\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n */\n _build(colIndex, isLinked=false, isExternal=false, extSlcId=null){\n var tf = this.tf;\n colIndex = parseInt(colIndex, 10);\n\n this.opts = [];\n this.optsTxt = [];\n this.slcInnerHtml = '';\n\n var slcId = tf.fltIds[colIndex];\n if((!Dom.id(slcId) && !isExternal) ||\n (!Dom.id(extSlcId) && isExternal)){\n return;\n }\n var slc = !isExternal ? Dom.id(slcId) : Dom.id(extSlcId),\n rows = tf.tbl.rows,\n matchCase = tf.matchCase;\n\n //custom select test\n this.isCustom = tf.isCustomOptions(colIndex);\n\n //custom selects text\n var activeFlt;\n if(isLinked && tf.activeFilterId){\n activeFlt = tf.activeFilterId.split('_')[0];\n activeFlt = activeFlt.split(tf.prfxFlt)[1];\n }\n\n /*** remember grid values ***/\n var fltsValues = [], fltArr = [];\n if(tf.rememberGridValues){\n fltsValues =\n tf.feature('store').getFilterValues(tf.fltsValuesCookie);\n if(fltsValues && !Str.isEmpty(fltsValues.toString())){\n if(this.isCustom){\n fltArr.push(fltsValues[colIndex]);\n } else {\n fltArr = fltsValues[colIndex].split(' '+tf.orOperator+' ');\n }\n }\n }\n\n var excludedOpts = null,\n filteredDataCol = null;\n if(isLinked && tf.disableExcludedOptions){\n excludedOpts = [];\n filteredDataCol = [];\n }\n\n for(var k=tf.refRow; k' +\n lbl+'';\n } else {\n var opt;\n //fill select on demand\n if(tf.loadFltOnDemand && slcValue===this.opts[y] &&\n tf.getFilterType(colIndex) === tf.fltTypeSlc){\n opt = Dom.createOpt(lbl, val, true);\n } else {\n if(tf.getFilterType(colIndex) !== tf.fltTypeMulti){\n opt = Dom.createOpt(\n lbl,\n val,\n (fltsValues[colIndex]!==' ' &&\n val===fltsValues[colIndex]) ? true : false\n );\n } else {\n opt = Dom.createOpt(\n lbl,\n val,\n (Arr.has(fltArr,\n Str.matchCase(this.opts[y], tf.matchCase),\n tf.matchCase) ||\n fltArr.toString().indexOf(val)!== -1) ?\n true : false\n );\n }\n }\n if(isDisabled){\n opt.disabled = true;\n }\n slc.appendChild(opt);\n }\n }// for y\n\n if(fillMethod === 'innerhtml'){\n slc.innerHTML += this.slcInnerHtml;\n }\n slc.setAttribute('filled', '1');\n }\n\n /**\n * Add drop-down header option\n * @param {Object} slc Select DOM element\n */\n addFirstOption(slc){\n var tf = this.tf,\n fillMethod = Str.lower(this.slcFillingMethod);\n\n if(fillMethod === 'innerhtml'){\n this.slcInnerHtml += ''+ tf.displayAllText +\n ' ';\n }\n else {\n var opt0 = Dom.createOpt(\n (!this.enableSlcResetFilter ? '' : tf.displayAllText),'');\n if(!this.enableSlcResetFilter){\n opt0.style.display = 'none';\n }\n slc.appendChild(opt0);\n if(tf.enableEmptyOption){\n var opt1 = Dom.createOpt(tf.emptyText, tf.emOperator);\n slc.appendChild(opt1);\n }\n if(tf.enableNonEmptyOption){\n var opt2 = Dom.createOpt(tf.nonEmptyText, tf.nmOperator);\n slc.appendChild(opt2);\n }\n }\n return slc;\n }\n\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Arr from '../array';\nimport Str from '../string';\nimport Sort from '../sort';\nimport Event from '../event';\n\nexport class Dropdown extends Feature{\n\n /**\n * Dropdown UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'dropdown');\n\n // Configuration object\n let f = tf.config();\n\n this.enableSlcResetFilter = f.enable_slc_reset_filter===false ?\n false : true;\n //defines empty option text\n this.nonEmptyText = f.non_empty_text || '(Non empty)';\n //sets select filling method: 'innerHTML' or 'createElement'\n this.slcFillingMethod = f.slc_filling_method || 'createElement';\n //IE only, tooltip text appearing on select before it is populated\n this.activateSlcTooltip = f.activate_slc_tooltip ||\n 'Click to activate';\n //tooltip text appearing on multiple select\n this.multipleSlcTooltip = f.multiple_slc_tooltip ||\n 'Use Ctrl key for multiple selections';\n\n this.isCustom = null;\n this.opts = null;\n this.optsTxt = null;\n this.slcInnerHtml = null;\n }\n\n onSlcFocus(e) {\n let elm = Event.target(e);\n let tf = this.tf;\n tf.activeFilterId = elm.getAttribute('id');\n tf.activeFlt = Dom.id(tf.activeFilterId);\n // select is populated when element has focus\n if(tf.loadFltOnDemand && elm.getAttribute('filled') === '0'){\n let ct = elm.getAttribute('ct');\n this.build(ct);\n }\n this.emitter.emit('filter-focus', tf, this);\n }\n\n onSlcChange() {\n if(this.tf.onSlcChange){\n this.tf.filter();\n }\n }\n\n /**\n * Initialize drop-down filter\n * @param {Number} colIndex Column index\n * @param {Boolean} isExternal External filter flag\n * @param {DOMElement} container Dom element containing the filter\n */\n init(colIndex, isExternal, container){\n let tf = this.tf;\n let col = tf.getFilterType(colIndex);\n let externalFltTgtId = isExternal ?\n tf.externalFltTgtIds[colIndex] : null;\n\n let slc = Dom.create(tf.fltTypeSlc,\n ['id', tf.prfxFlt+colIndex+'_'+tf.id],\n ['ct', colIndex], ['filled', '0']\n );\n\n if(col === tf.fltTypeMulti){\n slc.multiple = tf.fltTypeMulti;\n slc.title = this.multipleSlcTooltip;\n }\n slc.className = Str.lower(col) === tf.fltTypeSlc ?\n tf.fltCssClass : tf.fltMultiCssClass;\n\n //filter is appended in container element\n if(externalFltTgtId){\n Dom.id(externalFltTgtId).appendChild(slc);\n tf.externalFltEls.push(slc);\n } else {\n container.appendChild(slc);\n }\n\n tf.fltIds.push(slc.id);\n\n if(!tf.loadFltOnDemand){\n this.build(colIndex);\n } else {\n //1st option is created here since build isn't invoked\n let opt0 = Dom.createOpt(tf.displayAllText, '');\n slc.appendChild(opt0);\n }\n\n Event.add(slc, 'change', ()=> this.onSlcChange());\n Event.add(slc, 'focus', (e)=> this.onSlcFocus(e));\n\n this.emitter.on(\n ['build-select-filter'],\n (tf, colIndex, isLinked, isExternal)=>\n this.build(colIndex, isLinked, isExternal)\n );\n this.emitter.on(\n ['select-options'],\n (tf, colIndex, values)=> this.selectOptions(colIndex, values)\n );\n\n this.initialized = true;\n }\n\n /**\n * Build drop-down filter UI\n * @param {Number} colIndex Column index\n * @param {Boolean} isLinked Enable linked refresh behaviour\n * @param {Boolean} isExternal Render in external container\n * @param {String} extSlcId External container id\n */\n build(colIndex, isLinked=false, isExternal=false, extSlcId=null){\n let tf = this.tf;\n colIndex = parseInt(colIndex, 10);\n\n this.emitter.emit('before-populating-filter', tf, colIndex);\n\n this.opts = [];\n this.optsTxt = [];\n this.slcInnerHtml = '';\n\n let slcId = tf.fltIds[colIndex];\n if((!Dom.id(slcId) && !isExternal) ||\n (!Dom.id(extSlcId) && isExternal)){\n return;\n }\n let slc = !isExternal ? Dom.id(slcId) : Dom.id(extSlcId),\n rows = tf.tbl.rows,\n matchCase = tf.matchCase;\n\n //custom select test\n this.isCustom = tf.isCustomOptions(colIndex);\n\n //custom selects text\n let activeFlt;\n if(isLinked && tf.activeFilterId){\n activeFlt = tf.activeFilterId.split('_')[0];\n activeFlt = activeFlt.split(tf.prfxFlt)[1];\n }\n\n let excludedOpts = null,\n filteredDataCol = null;\n if(isLinked && tf.disableExcludedOptions){\n excludedOpts = [];\n filteredDataCol = [];\n }\n\n for(let k=tf.refRow; k' +\n lbl+'';\n } else {\n let opt;\n //fill select on demand\n if(tf.loadFltOnDemand && slcValue===this.opts[y] &&\n tf.getFilterType(colIndex) === tf.fltTypeSlc){\n opt = Dom.createOpt(lbl, val, true);\n } else {\n opt = Dom.createOpt(lbl, val, false);\n }\n if(isDisabled){\n opt.disabled = true;\n }\n slc.appendChild(opt);\n }\n }// for y\n\n if(fillMethod === 'innerhtml'){\n slc.innerHTML += this.slcInnerHtml;\n }\n slc.setAttribute('filled', '1');\n }\n\n /**\n * Add drop-down header option\n * @param {Object} slc Select DOM element\n */\n addFirstOption(slc){\n let tf = this.tf,\n fillMethod = Str.lower(this.slcFillingMethod);\n\n if(fillMethod === 'innerhtml'){\n this.slcInnerHtml += ''+ tf.displayAllText +\n ' ';\n }\n else {\n let opt0 = Dom.createOpt(\n (!this.enableSlcResetFilter ? '' : tf.displayAllText),'');\n if(!this.enableSlcResetFilter){\n opt0.style.display = 'none';\n }\n slc.appendChild(opt0);\n if(tf.enableEmptyOption){\n let opt1 = Dom.createOpt(tf.emptyText, tf.emOperator);\n slc.appendChild(opt1);\n }\n if(tf.enableNonEmptyOption){\n let opt2 = Dom.createOpt(tf.nonEmptyText, tf.nmOperator);\n slc.appendChild(opt2);\n }\n }\n return slc;\n }\n\n /**\n * Select filter options programmatically\n * @param {Number} colIndex Column index\n * @param {Array} values Array of option values to select\n */\n selectOptions(colIndex, values=[]){\n let tf = this.tf;\n if(tf.getFilterType(colIndex) !== tf.fltTypeMulti ||\n values.length === 0){\n return;\n }\n let slc = tf.getFilterElement(colIndex);\n [].forEach.call(slc.options, (option)=> {\n // Empty value means clear all selections and first option is the\n // clear all option\n if(values[0] === '' || option.value === ''){\n option.selected = false;\n }\n\n if(option.value !== '' &&\n Arr.has(values, option.value, true)){\n option.selected = true;\n }//if\n });\n }\n\n destroy(){\n this.emitter.off(\n ['build-select-filter'],\n (colIndex, isLinked, isExternal)=>\n this.build(colIndex, isLinked, isExternal)\n );\n this.emitter.off(\n ['select-options'],\n (tf, colIndex, values)=> this.selectOptions(colIndex, values)\n );\n }\n}\n"
},
{
"kind": "class",
@@ -4544,9 +4877,12 @@
"importPath": "tablefilter/src/modules/dropdown.js",
"importStyle": "{Dropdown}",
"description": null,
- "lineNumber": 6,
+ "lineNumber": 8,
"undocument": true,
- "interface": false
+ "interface": false,
+ "extends": [
+ "src/modules/feature~Feature"
+ ]
},
{
"kind": "constructor",
@@ -4557,7 +4893,7 @@
"longname": "src/modules/dropdown.js~Dropdown#constructor",
"access": null,
"description": "Dropdown UI component",
- "lineNumber": 12,
+ "lineNumber": 14,
"params": [
{
"nullable": null,
@@ -4581,7 +4917,7 @@
"longname": "src/modules/dropdown.js~Dropdown#enableSlcResetFilter",
"access": null,
"description": null,
- "lineNumber": 16,
+ "lineNumber": 20,
"undocument": true,
"type": {
"types": [
@@ -4598,7 +4934,7 @@
"longname": "src/modules/dropdown.js~Dropdown#nonEmptyText",
"access": null,
"description": null,
- "lineNumber": 19,
+ "lineNumber": 23,
"undocument": true,
"type": {
"types": [
@@ -4615,7 +4951,7 @@
"longname": "src/modules/dropdown.js~Dropdown#slcFillingMethod",
"access": null,
"description": null,
- "lineNumber": 21,
+ "lineNumber": 25,
"undocument": true,
"type": {
"types": [
@@ -4632,7 +4968,7 @@
"longname": "src/modules/dropdown.js~Dropdown#activateSlcTooltip",
"access": null,
"description": null,
- "lineNumber": 23,
+ "lineNumber": 27,
"undocument": true,
"type": {
"types": [
@@ -4649,7 +4985,7 @@
"longname": "src/modules/dropdown.js~Dropdown#multipleSlcTooltip",
"access": null,
"description": null,
- "lineNumber": 26,
+ "lineNumber": 30,
"undocument": true,
"type": {
"types": [
@@ -4666,7 +5002,7 @@
"longname": "src/modules/dropdown.js~Dropdown#isCustom",
"access": null,
"description": null,
- "lineNumber": 29,
+ "lineNumber": 33,
"undocument": true,
"type": {
"types": [
@@ -4683,7 +5019,7 @@
"longname": "src/modules/dropdown.js~Dropdown#opts",
"access": null,
"description": null,
- "lineNumber": 30,
+ "lineNumber": 34,
"undocument": true,
"type": {
"types": [
@@ -4700,7 +5036,7 @@
"longname": "src/modules/dropdown.js~Dropdown#optsTxt",
"access": null,
"description": null,
- "lineNumber": 31,
+ "lineNumber": 35,
"undocument": true,
"type": {
"types": [
@@ -4717,24 +5053,7 @@
"longname": "src/modules/dropdown.js~Dropdown#slcInnerHtml",
"access": null,
"description": null,
- "lineNumber": 32,
- "undocument": true,
- "type": {
- "types": [
- "*"
- ]
- }
- },
- {
- "kind": "member",
- "static": false,
- "variation": null,
- "name": "tf",
- "memberof": "src/modules/dropdown.js~Dropdown",
- "longname": "src/modules/dropdown.js~Dropdown#tf",
- "access": null,
- "description": null,
- "lineNumber": 34,
+ "lineNumber": 36,
"undocument": true,
"type": {
"types": [
@@ -4746,52 +5065,19 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "build",
+ "name": "onSlcFocus",
"memberof": "src/modules/dropdown.js~Dropdown",
- "longname": "src/modules/dropdown.js~Dropdown#build",
+ "longname": "src/modules/dropdown.js~Dropdown#onSlcFocus",
"access": null,
- "description": "Build drop-down filter UI asynchronously",
- "lineNumber": 44,
+ "description": null,
+ "lineNumber": 39,
+ "undocument": true,
"params": [
{
- "nullable": null,
+ "name": "e",
"types": [
- "Number"
- ],
- "spread": false,
- "optional": false,
- "name": "colIndex",
- "description": "Column index"
- },
- {
- "nullable": null,
- "types": [
- "Boolean"
- ],
- "spread": false,
- "optional": false,
- "name": "isLinked",
- "description": "Enable linked refresh behaviour"
- },
- {
- "nullable": null,
- "types": [
- "Boolean"
- ],
- "spread": false,
- "optional": false,
- "name": "isExternal",
- "description": "Render in external container"
- },
- {
- "nullable": null,
- "types": [
- "String"
- ],
- "spread": false,
- "optional": false,
- "name": "extSlcId",
- "description": "External container id"
+ "*"
+ ]
}
],
"generator": false
@@ -4800,12 +5086,87 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "_build",
+ "name": "onSlcChange",
"memberof": "src/modules/dropdown.js~Dropdown",
- "longname": "src/modules/dropdown.js~Dropdown#_build",
+ "longname": "src/modules/dropdown.js~Dropdown#onSlcChange",
"access": null,
- "description": "Build drop-down filter UI",
+ "description": null,
+ "lineNumber": 52,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "init",
+ "memberof": "src/modules/dropdown.js~Dropdown",
+ "longname": "src/modules/dropdown.js~Dropdown#init",
+ "access": null,
+ "description": "Initialize drop-down filter",
"lineNumber": 64,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Number"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "colIndex",
+ "description": "Column index"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Boolean"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "isExternal",
+ "description": "External filter flag"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "DOMElement"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "container",
+ "description": "Dom element containing the filter"
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "initialized",
+ "memberof": "src/modules/dropdown.js~Dropdown",
+ "longname": "src/modules/dropdown.js~Dropdown#initialized",
+ "access": null,
+ "description": null,
+ "lineNumber": 113,
+ "undocument": true,
+ "type": {
+ "types": [
+ "boolean"
+ ]
+ }
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "build",
+ "memberof": "src/modules/dropdown.js~Dropdown",
+ "longname": "src/modules/dropdown.js~Dropdown#build",
+ "access": null,
+ "description": "Build drop-down filter UI",
+ "lineNumber": 123,
"params": [
{
"nullable": null,
@@ -4859,7 +5220,7 @@
"longname": "src/modules/dropdown.js~Dropdown#opts",
"access": null,
"description": null,
- "lineNumber": 68,
+ "lineNumber": 129,
"undocument": true,
"type": {
"types": [
@@ -4876,7 +5237,7 @@
"longname": "src/modules/dropdown.js~Dropdown#optsTxt",
"access": null,
"description": null,
- "lineNumber": 69,
+ "lineNumber": 130,
"undocument": true,
"type": {
"types": [
@@ -4893,7 +5254,7 @@
"longname": "src/modules/dropdown.js~Dropdown#slcInnerHtml",
"access": null,
"description": null,
- "lineNumber": 70,
+ "lineNumber": 131,
"undocument": true,
"type": {
"types": [
@@ -4910,7 +5271,7 @@
"longname": "src/modules/dropdown.js~Dropdown#isCustom",
"access": null,
"description": null,
- "lineNumber": 82,
+ "lineNumber": 143,
"undocument": true,
"type": {
"types": [
@@ -4927,7 +5288,7 @@
"longname": "src/modules/dropdown.js~Dropdown#opts",
"access": null,
"description": null,
- "lineNumber": 169,
+ "lineNumber": 215,
"undocument": true,
"type": {
"types": [
@@ -4944,7 +5305,7 @@
"longname": "src/modules/dropdown.js~Dropdown#optsTxt",
"access": null,
"description": null,
- "lineNumber": 170,
+ "lineNumber": 216,
"undocument": true,
"type": {
"types": [
@@ -4961,7 +5322,7 @@
"longname": "src/modules/dropdown.js~Dropdown#addOptions",
"access": null,
"description": "Add drop-down options",
- "lineNumber": 240,
+ "lineNumber": 285,
"params": [
{
"nullable": null,
@@ -5002,26 +5363,6 @@
"optional": false,
"name": "excludedOpts",
"description": "Array of excluded options"
- },
- {
- "nullable": null,
- "types": [
- "Array"
- ],
- "spread": false,
- "optional": false,
- "name": "fltsValues",
- "description": "Collection of persisted filter values"
- },
- {
- "nullable": null,
- "types": [
- "Array"
- ],
- "spread": false,
- "optional": false,
- "name": "fltArr",
- "description": "Collection of persisted filter values"
}
],
"generator": false
@@ -5035,7 +5376,7 @@
"longname": "src/modules/dropdown.js~Dropdown#slcInnerHtml",
"access": null,
"description": null,
- "lineNumber": 269,
+ "lineNumber": 314,
"undocument": true,
"type": {
"types": [
@@ -5052,7 +5393,7 @@
"longname": "src/modules/dropdown.js~Dropdown#addFirstOption",
"access": null,
"description": "Add drop-down header option",
- "lineNumber": 315,
+ "lineNumber": 343,
"params": [
{
"nullable": null,
@@ -5081,7 +5422,7 @@
"longname": "src/modules/dropdown.js~Dropdown#slcInnerHtml",
"access": null,
"description": null,
- "lineNumber": 320,
+ "lineNumber": 348,
"undocument": true,
"type": {
"types": [
@@ -5089,6 +5430,54 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "selectOptions",
+ "memberof": "src/modules/dropdown.js~Dropdown",
+ "longname": "src/modules/dropdown.js~Dropdown#selectOptions",
+ "access": null,
+ "description": "Select filter options programmatically",
+ "lineNumber": 375,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Number"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "colIndex",
+ "description": "Column index"
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Array"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "values",
+ "description": "Array of option values to select"
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "destroy",
+ "memberof": "src/modules/dropdown.js~Dropdown",
+ "longname": "src/modules/dropdown.js~Dropdown#destroy",
+ "access": null,
+ "description": null,
+ "lineNumber": 396,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "file",
"static": true,
@@ -5099,7 +5488,7 @@
"access": null,
"description": null,
"lineNumber": 2,
- "content": "\nconst NOTIMPLEMENTED = 'Not implemented.';\n\nexport class Feature {\n constructor(tf, feature) {\n this.tf = tf;\n this.feature = feature;\n this.enabled = tf[feature];\n this.config = tf.config();\n this.initialized = false;\n }\n\n init() {\n throw new Error(NOTIMPLEMENTED);\n }\n\n reset() {\n this.enable();\n this.init();\n }\n\n destroy() {\n throw new Error(NOTIMPLEMENTED);\n }\n\n enable() {\n this.enabled = true;\n }\n\n disable() {\n this.enabled = false;\n }\n\n isEnabled() {\n return this.enabled;\n }\n}\n"
+ "content": "\nconst NOTIMPLEMENTED = 'Not implemented.';\n\nexport class Feature {\n constructor(tf, feature) {\n this.tf = tf;\n this.feature = feature;\n this.enabled = tf[feature];\n this.config = tf.config();\n this.emitter = tf.emitter;\n this.initialized = false;\n }\n\n init() {\n throw new Error(NOTIMPLEMENTED);\n }\n\n reset() {\n this.enable();\n this.init();\n }\n\n destroy() {\n throw new Error(NOTIMPLEMENTED);\n }\n\n enable() {\n this.enabled = true;\n }\n\n disable() {\n this.enabled = false;\n }\n\n isEnabled() {\n return this.enabled;\n }\n}\n"
},
{
"kind": "variable",
@@ -5232,6 +5621,23 @@
]
}
},
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "emitter",
+ "memberof": "src/modules/feature.js~Feature",
+ "longname": "src/modules/feature.js~Feature#emitter",
+ "access": null,
+ "description": null,
+ "lineNumber": 10,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
{
"kind": "member",
"static": false,
@@ -5241,7 +5647,7 @@
"longname": "src/modules/feature.js~Feature#initialized",
"access": null,
"description": null,
- "lineNumber": 10,
+ "lineNumber": 11,
"undocument": true,
"type": {
"types": [
@@ -5258,7 +5664,7 @@
"longname": "src/modules/feature.js~Feature#init",
"access": null,
"description": null,
- "lineNumber": 13,
+ "lineNumber": 14,
"undocument": true,
"params": [],
"generator": false
@@ -5272,7 +5678,7 @@
"longname": "src/modules/feature.js~Feature#reset",
"access": null,
"description": null,
- "lineNumber": 17,
+ "lineNumber": 18,
"undocument": true,
"params": [],
"generator": false
@@ -5286,7 +5692,7 @@
"longname": "src/modules/feature.js~Feature#destroy",
"access": null,
"description": null,
- "lineNumber": 22,
+ "lineNumber": 23,
"undocument": true,
"params": [],
"generator": false
@@ -5300,7 +5706,7 @@
"longname": "src/modules/feature.js~Feature#enable",
"access": null,
"description": null,
- "lineNumber": 26,
+ "lineNumber": 27,
"undocument": true,
"params": [],
"generator": false
@@ -5314,7 +5720,7 @@
"longname": "src/modules/feature.js~Feature#enabled",
"access": null,
"description": null,
- "lineNumber": 27,
+ "lineNumber": 28,
"undocument": true,
"type": {
"types": [
@@ -5331,7 +5737,7 @@
"longname": "src/modules/feature.js~Feature#disable",
"access": null,
"description": null,
- "lineNumber": 30,
+ "lineNumber": 31,
"undocument": true,
"params": [],
"generator": false
@@ -5345,7 +5751,7 @@
"longname": "src/modules/feature.js~Feature#enabled",
"access": null,
"description": null,
- "lineNumber": 31,
+ "lineNumber": 32,
"undocument": true,
"type": {
"types": [
@@ -5362,7 +5768,7 @@
"longname": "src/modules/feature.js~Feature#isEnabled",
"access": null,
"description": null,
- "lineNumber": 34,
+ "lineNumber": 35,
"undocument": true,
"params": [],
"return": {
@@ -5382,7 +5788,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\nimport Event from '../event';\nimport Str from '../string';\n\nexport class GridLayout extends Feature{\n\n /**\n * Grid layout, table with fixed headers\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'gridLayout');\n\n var f = this.config;\n\n //defines grid width\n this.gridWidth = f.grid_width || null;\n //defines grid height\n this.gridHeight = f.grid_height || null;\n //defines css class for main container\n this.gridMainContCssClass = f.grid_cont_css_class || 'grd_Cont';\n //defines css class for div containing table\n this.gridContCssClass = f.grid_tbl_cont_css_class || 'grd_tblCont';\n //defines css class for div containing headers' table\n this.gridHeadContCssClass = f.grid_tblHead_cont_css_class ||\n 'grd_headTblCont';\n //defines css class for div containing rows counter, paging etc.\n this.gridInfDivCssClass = f.grid_inf_grid_css_class || 'grd_inf';\n //defines which row contains column headers\n this.gridHeadRowIndex = f.grid_headers_row_index || 0;\n //array of headers row indexes to be placed in header table\n this.gridHeadRows = f.grid_headers_rows || [0];\n //generate filters in table headers\n this.gridEnableFilters = f.grid_enable_default_filters!==undefined ?\n f.grid_enable_default_filters : true;\n //default col width\n this.gridDefaultColWidth = f.grid_default_col_width || '100px';\n\n this.gridColElms = [];\n\n //div containing grid elements if grid_layout true\n this.prfxMainTblCont = 'gridCont_';\n //div containing table if grid_layout true\n this.prfxTblCont = 'tblCont_';\n //div containing headers table if grid_layout true\n this.prfxHeadTblCont = 'tblHeadCont_';\n //headers' table if grid_layout true\n this.prfxHeadTbl = 'tblHead_';\n //id of td containing the filter if grid_layout true\n this.prfxGridFltTd = '_td_';\n //id of th containing column header if grid_layout true\n this.prfxGridTh = 'tblHeadTh_';\n\n this.sourceTblHtml = tf.tbl.outerHTML;\n }\n\n /**\n * Generates a grid with fixed headers\n */\n init(){\n var tf = this.tf;\n var f = this.config;\n var tbl = tf.tbl;\n\n if(this.initialized){\n return;\n }\n\n tf.isExternalFlt = true;\n\n // default width of 100px if column widths not set\n if(!tf.hasColWidths){\n tf.colWidths = [];\n for(var k=0; k0){\n tbl.removeChild(thead[0]);\n }\n\n //Headers table style\n this.headTbl.style.tableLayout = 'fixed';\n tbl.style.tableLayout = 'fixed';\n this.headTbl.cellPadding = tbl.cellPadding;\n this.headTbl.cellSpacing = tbl.cellSpacing;\n // this.headTbl.style.width = tbl.style.width;\n\n //content table without headers needs col widths to be reset\n tf.setColWidths(0, this.headTbl);\n\n //Headers container width\n // this.headTblCont.style.width = this.tblCont.clientWidth+'px';\n\n tbl.style.width = '';\n //\n this.headTbl.style.width = tbl.clientWidth + 'px';\n //\n\n //scroll synchronisation\n Event.add(this.tblCont, 'scroll', (evt)=> {\n var elm = Event.target(evt);\n var scrollLeft = elm.scrollLeft;\n this.headTblCont.scrollLeft = scrollLeft;\n //New pointerX calc taking into account scrollLeft\n // if(!o.isPointerXOverwritten){\n // try{\n // o.Evt.pointerX = function(evt){\n // var e = evt || global.event;\n // var bdScrollLeft = tf_StandardBody().scrollLeft +\n // scrollLeft;\n // return (e.pageX + scrollLeft) ||\n // (e.clientX + bdScrollLeft);\n // };\n // o.isPointerXOverwritten = true;\n // } catch(err) {\n // o.isPointerXOverwritten = false;\n // }\n // }\n });\n\n //Configure sort extension if any\n var sort = (f.extensions || []).filter(function(itm){\n return itm.name === 'sort';\n });\n if(sort.length === 1){\n sort[0].async_sort = true;\n sort[0].trigger_ids = sortTriggers;\n }\n\n //Cols generation for all browsers excepted IE<=7\n this.tblHasColTag = Dom.tag(tbl, 'col').length > 0 ? true : false;\n\n //Col elements are enough to keep column widths after sorting and\n //filtering\n var createColTags = function(){\n for(var k=(tf.nbCells-1); k>=0; k--){\n var col = Dom.create('col', ['id', tf.id+'_col_'+k]);\n tbl.insertBefore(col, tbl.firstChild);\n col.style.width = tf.colWidths[k];\n this.gridColElms[k] = col;\n }\n this.tblHasColTag = true;\n };\n\n if(!this.tblHasColTag){\n createColTags.call(this);\n } else {\n var cols = Dom.tag(tbl, 'col');\n for(var ii=0; ii0){\n tbl.removeChild(thead[0]);\n }\n\n //Headers table style\n this.headTbl.style.tableLayout = 'fixed';\n tbl.style.tableLayout = 'fixed';\n this.headTbl.cellPadding = tbl.cellPadding;\n this.headTbl.cellSpacing = tbl.cellSpacing;\n // this.headTbl.style.width = tbl.style.width;\n\n //content table without headers needs col widths to be reset\n tf.setColWidths(0, this.headTbl);\n\n //Headers container width\n // this.headTblCont.style.width = this.tblCont.clientWidth+'px';\n\n tbl.style.width = '';\n //\n this.headTbl.style.width = tbl.clientWidth + 'px';\n //\n\n //scroll synchronisation\n Event.add(this.tblCont, 'scroll', (evt)=> {\n let elm = Event.target(evt);\n let scrollLeft = elm.scrollLeft;\n this.headTblCont.scrollLeft = scrollLeft;\n //New pointerX calc taking into account scrollLeft\n // if(!o.isPointerXOverwritten){\n // try{\n // o.Evt.pointerX = function(evt){\n // let e = evt || global.event;\n // let bdScrollLeft = tf_StandardBody().scrollLeft +\n // scrollLeft;\n // return (e.pageX + scrollLeft) ||\n // (e.clientX + bdScrollLeft);\n // };\n // o.isPointerXOverwritten = true;\n // } catch(err) {\n // o.isPointerXOverwritten = false;\n // }\n // }\n });\n\n //Configure sort extension if any\n let sort = (f.extensions || []).filter(function(itm){\n return itm.name === 'sort';\n });\n if(sort.length === 1){\n sort[0].async_sort = true;\n sort[0].trigger_ids = sortTriggers;\n }\n\n //Cols generation for all browsers excepted IE<=7\n this.tblHasColTag = Dom.tag(tbl, 'col').length > 0 ? true : false;\n\n //Col elements are enough to keep column widths after sorting and\n //filtering\n let createColTags = function(){\n for(let k=(tf.nbCells-1); k>=0; k--){\n let col = Dom.create('col', ['id', tf.id+'_col_'+k]);\n tbl.insertBefore(col, tbl.firstChild);\n col.style.width = tf.colWidths[k];\n this.gridColElms[k] = col;\n }\n this.tblHasColTag = true;\n };\n\n if(!this.tblHasColTag){\n createColTags.call(this);\n } else {\n let cols = Dom.tag(tbl, 'col');\n for(let ii=0; ii< , <= , > , ' +\n '>= , = , * , ! , { , } , ' +\n '|| ,&& , [empty] , [nonempty] , ' +\n 'rgx: ' +\n 'Learn more ';\n //defines help innerHtml\n this.instrHtml = f.help_instructions_html || null;\n //defines reset button text\n this.btnText = f.help_instructions_btn_text || '?';\n //defines reset button innerHtml\n this.btnHtml = f.help_instructions_btn_html || null;\n //defines css class for help button\n this.btnCssClass = f.help_instructions_btn_css_class || 'helpBtn';\n //defines css class for help container\n this.contCssClass = f.help_instructions_container_css_class ||\n 'helpCont';\n //help button element\n this.btn = null;\n //help content div\n this.cont = null;\n this.defaultHtml = '';\n\n //id prefix for help elements\n this.prfxHelpSpan = 'helpSpan_';\n //id prefix for help elements\n this.prfxHelpDiv = 'helpDiv_';\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n var helpspan = Dom.create('span', ['id', this.prfxHelpSpan+tf.id]);\n var helpdiv = Dom.create('div', ['id', this.prfxHelpDiv+tf.id]);\n\n //help button is added to defined element\n if(!this.tgtId){\n tf.setToolbar();\n }\n var targetEl = !this.tgtId ? tf.rDiv : Dom.id(this.tgtId);\n targetEl.appendChild(helpspan);\n\n var divContainer = !this.contTgtId ? helpspan : Dom.id(this.contTgtId);\n\n if(!this.btnHtml){\n divContainer.appendChild(helpdiv);\n var helplink = Dom.create('a', ['href', 'javascript:void(0);']);\n helplink.className = this.btnCssClass;\n helplink.appendChild(Dom.text(this.btnText));\n helpspan.appendChild(helplink);\n Event.add(helplink, 'click', () => { this.toggle(); });\n } else {\n helpspan.innerHTML = this.btnHtml;\n var helpEl = helpspan.firstChild;\n Event.add(helpEl, 'click', () => { this.toggle(); });\n divContainer.appendChild(helpdiv);\n }\n\n if(!this.instrHtml){\n helpdiv.innerHTML = this.instrText;\n helpdiv.className = this.contCssClass;\n Event.add(helpdiv, 'dblclick', () => { this.toggle(); });\n } else {\n if(this.contTgtId){\n divContainer.appendChild(helpdiv);\n }\n helpdiv.innerHTML = this.instrHtml;\n if(!this.contTgtId){\n helpdiv.className = this.contCssClass;\n Event.add(helpdiv, 'dblclick', () => { this.toggle(); });\n }\n }\n helpdiv.innerHTML += this.defaultHtml;\n Event.add(helpdiv, 'click', () => { this.toggle(); });\n\n this.cont = helpdiv;\n this.btn = helpspan;\n this.initialized = true;\n }\n\n /**\n * Toggle help pop-up\n */\n toggle(){\n // check only if explicitily set to false as in this case undefined\n // signifies the help feature is enabled by default\n if(this.enabled === false){\n return;\n }\n var divDisplay = this.cont.style.display;\n if(divDisplay === '' || divDisplay === 'none'){\n this.cont.style.display = 'inline';\n } else {\n this.cont.style.display = 'none';\n }\n }\n\n /**\n * Remove help UI\n */\n destroy(){\n if(!this.initialized){\n return;\n }\n Dom.remove(this.btn);\n this.btn = null;\n if(!this.cont){\n return;\n }\n Dom.remove(this.cont);\n this.cont = null;\n this.initialized = false;\n }\n\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Event from '../event';\n\n\nconst WIKI_URL = 'https://github.com/koalyptus/TableFilter/wiki/' +\n '4.-Filter-operators';\nconst WEBSITE_URL = 'http://koalyptus.github.io/TableFilter/';\n\nexport class Help extends Feature{\n\n /**\n * Help UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'help');\n\n var f = this.config;\n\n //id of custom container element for instructions\n this.tgtId = f.help_instructions_target_id || null;\n //id of custom container element for instructions\n this.contTgtId = f.help_instructions_container_target_id ||\n null;\n //defines help text\n this.instrText = f.help_instructions_text ?\n f.help_instructions_text :\n 'Use the filters above each column to filter and limit table ' +\n 'data. Advanced searches can be performed by using the following ' +\n 'operators: < , <= , > , ' +\n '>= , = , * , ! , { , } , ' +\n '|| ,&& , [empty] , [nonempty] , ' +\n 'rgx: ' +\n 'Learn more ';\n //defines help innerHtml\n this.instrHtml = f.help_instructions_html || null;\n //defines reset button text\n this.btnText = f.help_instructions_btn_text || '?';\n //defines reset button innerHtml\n this.btnHtml = f.help_instructions_btn_html || null;\n //defines css class for help button\n this.btnCssClass = f.help_instructions_btn_css_class || 'helpBtn';\n //defines css class for help container\n this.contCssClass = f.help_instructions_container_css_class ||\n 'helpCont';\n //help button element\n this.btn = null;\n //help content div\n this.cont = null;\n this.defaultHtml = '';\n\n //id prefix for help elements\n this.prfxHelpSpan = 'helpSpan_';\n //id prefix for help elements\n this.prfxHelpDiv = 'helpDiv_';\n\n this.emitter.on(['init-help'], ()=> this.init());\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n var helpspan = Dom.create('span', ['id', this.prfxHelpSpan+tf.id]);\n var helpdiv = Dom.create('div', ['id', this.prfxHelpDiv+tf.id]);\n\n //help button is added to defined element\n if(!this.tgtId){\n tf.setToolbar();\n }\n var targetEl = !this.tgtId ? tf.rDiv : Dom.id(this.tgtId);\n targetEl.appendChild(helpspan);\n\n var divContainer = !this.contTgtId ? helpspan : Dom.id(this.contTgtId);\n\n if(!this.btnHtml){\n divContainer.appendChild(helpdiv);\n var helplink = Dom.create('a', ['href', 'javascript:void(0);']);\n helplink.className = this.btnCssClass;\n helplink.appendChild(Dom.text(this.btnText));\n helpspan.appendChild(helplink);\n Event.add(helplink, 'click', () => { this.toggle(); });\n } else {\n helpspan.innerHTML = this.btnHtml;\n var helpEl = helpspan.firstChild;\n Event.add(helpEl, 'click', () => { this.toggle(); });\n divContainer.appendChild(helpdiv);\n }\n\n if(!this.instrHtml){\n helpdiv.innerHTML = this.instrText;\n helpdiv.className = this.contCssClass;\n Event.add(helpdiv, 'dblclick', () => { this.toggle(); });\n } else {\n if(this.contTgtId){\n divContainer.appendChild(helpdiv);\n }\n helpdiv.innerHTML = this.instrHtml;\n if(!this.contTgtId){\n helpdiv.className = this.contCssClass;\n Event.add(helpdiv, 'dblclick', () => { this.toggle(); });\n }\n }\n helpdiv.innerHTML += this.defaultHtml;\n Event.add(helpdiv, 'click', () => { this.toggle(); });\n\n this.cont = helpdiv;\n this.btn = helpspan;\n this.initialized = true;\n }\n\n /**\n * Toggle help pop-up\n */\n toggle(){\n // check only if explicitily set to false as in this case undefined\n // signifies the help feature is enabled by default\n if(this.enabled === false){\n return;\n }\n var divDisplay = this.cont.style.display;\n if(divDisplay === '' || divDisplay === 'none'){\n this.cont.style.display = 'inline';\n } else {\n this.cont.style.display = 'none';\n }\n }\n\n /**\n * Remove help UI\n */\n destroy(){\n if(!this.initialized){\n return;\n }\n Dom.remove(this.btn);\n this.btn = null;\n if(!this.cont){\n return;\n }\n Dom.remove(this.cont);\n this.cont = null;\n this.initialized = false;\n }\n\n}\n"
},
{
"kind": "variable",
@@ -6288,7 +6694,7 @@
"longname": "src/modules/help.js~Help#init",
"access": null,
"description": null,
- "lineNumber": 64,
+ "lineNumber": 66,
"undocument": true,
"params": [],
"generator": false
@@ -6302,7 +6708,7 @@
"longname": "src/modules/help.js~Help#cont",
"access": null,
"description": null,
- "lineNumber": 114,
+ "lineNumber": 116,
"undocument": true,
"type": {
"types": [
@@ -6319,7 +6725,7 @@
"longname": "src/modules/help.js~Help#btn",
"access": null,
"description": null,
- "lineNumber": 115,
+ "lineNumber": 117,
"undocument": true,
"type": {
"types": [
@@ -6336,7 +6742,7 @@
"longname": "src/modules/help.js~Help#initialized",
"access": null,
"description": null,
- "lineNumber": 116,
+ "lineNumber": 118,
"undocument": true,
"type": {
"types": [
@@ -6353,7 +6759,7 @@
"longname": "src/modules/help.js~Help#toggle",
"access": null,
"description": "Toggle help pop-up",
- "lineNumber": 122,
+ "lineNumber": 124,
"params": [],
"generator": false
},
@@ -6366,7 +6772,7 @@
"longname": "src/modules/help.js~Help#destroy",
"access": null,
"description": "Remove help UI",
- "lineNumber": 139,
+ "lineNumber": 141,
"params": [],
"generator": false
},
@@ -6379,7 +6785,7 @@
"longname": "src/modules/help.js~Help#btn",
"access": null,
"description": null,
- "lineNumber": 144,
+ "lineNumber": 146,
"undocument": true,
"type": {
"types": [
@@ -6396,7 +6802,7 @@
"longname": "src/modules/help.js~Help#cont",
"access": null,
"description": null,
- "lineNumber": 149,
+ "lineNumber": 151,
"undocument": true,
"type": {
"types": [
@@ -6413,7 +6819,7 @@
"longname": "src/modules/help.js~Help#initialized",
"access": null,
"description": null,
- "lineNumber": 150,
+ "lineNumber": 152,
"undocument": true,
"type": {
"types": [
@@ -6431,7 +6837,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Dom from '../dom';\nimport Str from '../string';\n\nexport class HighlightKeyword{\n\n /**\n * HighlightKeyword, highlight matched keyword\n * @param {Object} tf TableFilter instance\n */\n constructor(tf) {\n var f = tf.config();\n //defines css class for highlighting\n this.highlightCssClass = f.highlight_css_class || 'keyword';\n this.highlightedNodes = [];\n\n this.tf = tf;\n }\n\n /**\n * highlight occurences of searched term in passed node\n * @param {Node} node\n * @param {String} word Searched term\n * @param {String} cssClass Css class name\n */\n highlight(node, word, cssClass){\n // Iterate into this nodes childNodes\n if(node.hasChildNodes){\n var children = node.childNodes;\n for(var i=0; i this.unhighlightAll()\n );\n this.emitter.on(\n ['highlight-keyword'],\n (tf, cell, word)=>\n this.highlight(cell, word, this.highlightCssClass)\n );\n }\n\n /**\n * highlight occurences of searched term in passed node\n * @param {Node} node\n * @param {String} word Searched term\n * @param {String} cssClass Css class name\n */\n highlight(node, word, cssClass){\n // Iterate into this nodes childNodes\n if(node.hasChildNodes){\n var children = node.childNodes;\n for(var i=0; i {\n if(Types.isArray(val)){\n val.forEach((item)=>\n this.unhighlight(item, this.highlightCssClass));\n } else {\n this.unhighlight(val, this.highlightCssClass);\n }\n });\n this.highlightedNodes = [];\n }\n\n destroy(){\n this.emitter.off(\n ['before-filtering', 'destroy'],\n ()=> this.unhighlightAll()\n );\n this.emitter.off(\n ['highlight-keyword'],\n (tf, cell, word)=>\n this.highlight(cell, word, this.highlightCssClass)\n );\n }\n}"
},
{
"kind": "class",
@@ -6445,7 +6851,7 @@
"importPath": "tablefilter/src/modules/highlightKeywords.js",
"importStyle": "{HighlightKeyword}",
"description": null,
- "lineNumber": 4,
+ "lineNumber": 5,
"undocument": true,
"interface": false
},
@@ -6458,7 +6864,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#constructor",
"access": null,
"description": "HighlightKeyword, highlight matched keyword",
- "lineNumber": 10,
+ "lineNumber": 11,
"params": [
{
"nullable": null,
@@ -6482,7 +6888,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#highlightCssClass",
"access": null,
"description": null,
- "lineNumber": 13,
+ "lineNumber": 14,
"undocument": true,
"type": {
"types": [
@@ -6499,7 +6905,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#highlightedNodes",
"access": null,
"description": null,
- "lineNumber": 14,
+ "lineNumber": 15,
"undocument": true,
"type": {
"types": [
@@ -6516,7 +6922,24 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#tf",
"access": null,
"description": null,
- "lineNumber": 16,
+ "lineNumber": 17,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "emitter",
+ "memberof": "src/modules/highlightKeywords.js~HighlightKeyword",
+ "longname": "src/modules/highlightKeywords.js~HighlightKeyword#emitter",
+ "access": null,
+ "description": null,
+ "lineNumber": 18,
"undocument": true,
"type": {
"types": [
@@ -6524,6 +6947,20 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "init",
+ "memberof": "src/modules/highlightKeywords.js~HighlightKeyword",
+ "longname": "src/modules/highlightKeywords.js~HighlightKeyword#init",
+ "access": null,
+ "description": null,
+ "lineNumber": 21,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "method",
"static": false,
@@ -6533,7 +6970,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#highlight",
"access": null,
"description": "highlight occurences of searched term in passed node",
- "lineNumber": 25,
+ "lineNumber": 39,
"params": [
{
"nullable": null,
@@ -6577,7 +7014,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#unhighlight",
"access": null,
"description": "Removes highlight to nodes matching passed string",
- "lineNumber": 66,
+ "lineNumber": 80,
"params": [
{
"nullable": null,
@@ -6611,7 +7048,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#unhighlightAll",
"access": null,
"description": "Clear all occurrences of highlighted nodes",
- "lineNumber": 98,
+ "lineNumber": 112,
"params": [],
"generator": false
},
@@ -6624,7 +7061,7 @@
"longname": "src/modules/highlightKeywords.js~HighlightKeyword#highlightedNodes",
"access": null,
"description": null,
- "lineNumber": 106,
+ "lineNumber": 125,
"undocument": true,
"type": {
"types": [
@@ -6632,6 +7069,20 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "destroy",
+ "memberof": "src/modules/highlightKeywords.js~HighlightKeyword",
+ "longname": "src/modules/highlightKeywords.js~HighlightKeyword#destroy",
+ "access": null,
+ "description": null,
+ "lineNumber": 128,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "file",
"static": true,
@@ -6642,7 +7093,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nvar global = window;\n\nexport class Loader extends Feature{\n\n /**\n * Loading message/spinner\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'loader');\n\n // TableFilter configuration\n var f = this.config;\n\n //id of container element\n this.loaderTgtId = f.loader_target_id || null;\n //div containing loader\n this.loaderDiv = null;\n //defines loader text\n this.loaderText = f.loader_text || 'Loading...';\n //defines loader innerHtml\n this.loaderHtml = f.loader_html || null;\n //defines css class for loader div\n this.loaderCssClass = f.loader_css_class || 'loader';\n //delay for hiding loader\n this.loaderCloseDelay = 200;\n //callback function before loader is displayed\n this.onShowLoader = Types.isFn(f.on_show_loader) ?\n f.on_show_loader : null;\n //callback function after loader is closed\n this.onHideLoader = Types.isFn(f.on_hide_loader) ?\n f.on_hide_loader : null;\n //loader div\n this.prfxLoader = 'load_';\n }\n\n init() {\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n var containerDiv = Dom.create('div', ['id', this.prfxLoader+tf.id]);\n containerDiv.className = this.loaderCssClass;\n\n var targetEl = !this.loaderTgtId ?\n tf.tbl.parentNode : Dom.id(this.loaderTgtId);\n if(!this.loaderTgtId){\n targetEl.insertBefore(containerDiv, tf.tbl);\n } else {\n targetEl.appendChild(containerDiv);\n }\n this.loaderDiv = containerDiv;\n if(!this.loaderHtml){\n this.loaderDiv.appendChild(Dom.text(this.loaderText));\n } else {\n this.loaderDiv.innerHTML = this.loaderHtml;\n }\n\n this.show('none');\n this.initialized = true;\n }\n\n show(p) {\n if(!this.isEnabled() || this.loaderDiv.style.display === p){\n return;\n }\n\n var displayLoader = () => {\n if(!this.loaderDiv){\n return;\n }\n if(this.onShowLoader && p !== 'none'){\n this.onShowLoader.call(null, this);\n }\n this.loaderDiv.style.display = p;\n if(this.onHideLoader && p === 'none'){\n this.onHideLoader.call(null, this);\n }\n };\n\n var t = p === 'none' ? this.loaderCloseDelay : 1;\n global.setTimeout(displayLoader, t);\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n\n Dom.remove(this.loaderDiv);\n this.loaderDiv = null;\n this.initialized = false;\n }\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nlet global = window;\n\nexport class Loader extends Feature{\n\n /**\n * Loading message/spinner\n * @param {Object} tf TableFilter instance\n */\n constructor(tf) {\n super(tf, 'loader');\n\n // TableFilter configuration\n let f = this.config;\n\n //id of container element\n this.loaderTgtId = f.loader_target_id || null;\n //div containing loader\n this.loaderDiv = null;\n //defines loader text\n this.loaderText = f.loader_text || 'Loading...';\n //defines loader innerHtml\n this.loaderHtml = f.loader_html || null;\n //defines css class for loader div\n this.loaderCssClass = f.loader_css_class || 'loader';\n //delay for hiding loader\n this.loaderCloseDelay = 250;\n //callback function before loader is displayed\n this.onShowLoader = Types.isFn(f.on_show_loader) ?\n f.on_show_loader : null;\n //callback function after loader is closed\n this.onHideLoader = Types.isFn(f.on_hide_loader) ?\n f.on_hide_loader : null;\n //loader div\n this.prfxLoader = 'load_';\n }\n\n init() {\n if(this.initialized){\n return;\n }\n\n let tf = this.tf;\n let emitter = this.emitter;\n\n let containerDiv = Dom.create('div', ['id', this.prfxLoader+tf.id]);\n containerDiv.className = this.loaderCssClass;\n\n let targetEl = !this.loaderTgtId ?\n tf.tbl.parentNode : Dom.id(this.loaderTgtId);\n if(!this.loaderTgtId){\n targetEl.insertBefore(containerDiv, tf.tbl);\n } else {\n targetEl.appendChild(containerDiv);\n }\n this.loaderDiv = containerDiv;\n if(!this.loaderHtml){\n this.loaderDiv.appendChild(Dom.text(this.loaderText));\n } else {\n this.loaderDiv.innerHTML = this.loaderHtml;\n }\n\n this.show('none');\n\n // Subscribe to events\n emitter.on([\n 'before-filtering',\n 'before-populating-filter',\n 'before-changing-page',\n 'before-clearing-filters',\n 'before-changing-results-per-page',\n 'before-reset-page',\n 'before-reset-page-length',\n 'before-loading-extensions',\n 'before-loading-themes'\n ],\n ()=> this.show('')\n );\n emitter.on([\n 'after-filtering',\n 'after-populating-filter',\n 'after-changing-page',\n 'after-clearing-filters',\n 'after-changing-results-per-page',\n 'after-reset-page',\n 'after-reset-page-length',\n 'after-loading-extensions',\n 'after-loading-themes'\n ],\n ()=> this.show('none')\n );\n\n this.initialized = true;\n }\n\n show(p) {\n if(!this.isEnabled() /*|| this.loaderDiv.style.display === p*/){\n return;\n }\n\n let displayLoader = () => {\n if(!this.loaderDiv){\n return;\n }\n if(this.onShowLoader && p !== 'none'){\n this.onShowLoader.call(null, this);\n }\n this.loaderDiv.style.display = p;\n if(this.onHideLoader && p === 'none'){\n this.onHideLoader.call(null, this);\n }\n };\n\n let t = p === 'none' ? this.loaderCloseDelay : 1;\n global.setTimeout(displayLoader, t);\n }\n\n destroy() {\n if(!this.initialized){\n return;\n }\n\n let emitter = this.emitter;\n\n Dom.remove(this.loaderDiv);\n this.loaderDiv = null;\n\n // Unsubscribe to events\n emitter.off([\n 'before-filtering',\n 'before-populating-filter',\n 'before-changing-page',\n 'before-clearing-filters',\n 'before-changing-results-per-page',\n 'before-reset-page',\n 'before-reset-page-length',\n 'before-loading-extensions',\n 'before-loading-themes'\n ],\n ()=> this.show('')\n );\n emitter.off([\n 'after-filtering',\n 'after-populating-filter',\n 'after-changing-page',\n 'after-clearing-filters',\n 'after-changing-results-per-page',\n 'after-reset-page',\n 'after-reset-page-length',\n 'after-loading-extensions',\n 'after-loading-themes'\n ],\n ()=> this.show('none')\n );\n\n this.initialized = false;\n }\n}\n"
},
{
"kind": "variable",
@@ -6883,7 +7334,7 @@
"longname": "src/modules/loader.js~Loader#loaderDiv",
"access": null,
"description": null,
- "lineNumber": 58,
+ "lineNumber": 59,
"undocument": true,
"type": {
"types": [
@@ -6900,7 +7351,7 @@
"longname": "src/modules/loader.js~Loader#initialized",
"access": null,
"description": null,
- "lineNumber": 66,
+ "lineNumber": 96,
"undocument": true,
"type": {
"types": [
@@ -6917,7 +7368,7 @@
"longname": "src/modules/loader.js~Loader#show",
"access": null,
"description": null,
- "lineNumber": 69,
+ "lineNumber": 99,
"undocument": true,
"params": [
{
@@ -6938,7 +7389,7 @@
"longname": "src/modules/loader.js~Loader#destroy",
"access": null,
"description": null,
- "lineNumber": 91,
+ "lineNumber": 121,
"undocument": true,
"params": [],
"generator": false
@@ -6952,7 +7403,7 @@
"longname": "src/modules/loader.js~Loader#loaderDiv",
"access": null,
"description": null,
- "lineNumber": 97,
+ "lineNumber": 129,
"undocument": true,
"type": {
"types": [
@@ -6969,7 +7420,7 @@
"longname": "src/modules/loader.js~Loader#initialized",
"access": null,
"description": null,
- "lineNumber": 98,
+ "lineNumber": 159,
"undocument": true,
"type": {
"types": [
@@ -6987,7 +7438,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nexport class NoResults extends Feature{\n\n /**\n * No results message UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'noResults');\n\n //configuration object\n let f = this.config.no_results_message;\n\n this.content = f.content || 'No results';\n this.customContainer = f.custom_container || null;\n this.customContainerId = f.custom_container_id || null;\n this.isExternal = !Types.isEmpty(this.customContainer) ||\n !Types.isEmpty(this.customContainerId);\n this.cssClass = f.css_class || 'no-results';\n\n this.cont = null;\n\n //callback before message is displayed\n this.onBeforeShowMsg = Types.isFn(f.on_before_show_msg) ?\n f.on_before_show_msg : null;\n //callback after message is displayed\n this.onAfterShowMsg = Types.isFn(f.on_after_show_msg) ?\n f.on_after_show_msg : null;\n //callback before message is hidden\n this.onBeforeHideMsg = Types.isFn(f.on_before_hide_msg) ?\n f.on_before_hide_msg : null;\n //callback after message is hidden\n this.onAfterHideMsg = Types.isFn(f.on_after_hide_msg) ?\n f.on_after_hide_msg : null;\n\n this.prfxNoResults = 'nores_';\n }\n\n init(){\n if(this.initialized){\n return;\n }\n let tf = this.tf;\n let target = this.customContainer || Dom.id(this.customContainerId) ||\n tf.tbl;\n\n //container\n let cont = Dom.create('div', ['id', this.prfxNoResults+tf.id]);\n cont.className = this.cssClass;\n cont.innerHTML = this.content;\n\n if(this.isExternal){\n target.appendChild(cont);\n } else {\n target.parentNode.insertBefore(cont, target.nextSibling);\n }\n\n this.cont = cont;\n this.initialized = true;\n this.hide();\n }\n\n show(){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n if(this.onBeforeShowMsg){\n this.onBeforeShowMsg.call(null, this.tf, this);\n }\n\n this.setWidth();\n this.cont.style.display = 'block';\n\n if(this.onAfterShowMsg){\n this.onAfterShowMsg.call(null, this.tf, this);\n }\n }\n\n hide(){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n if(this.onBeforeHideMsg){\n this.onBeforeHideMsg.call(null, this.tf, this);\n }\n\n this.cont.style.display = 'none';\n\n if(this.onBeforeHideMsg){\n this.onBeforeHideMsg.call(null, this.tf, this);\n }\n }\n\n setWidth(){\n if(!this.initialized || this.isExternal || !this.isEnabled()){\n return;\n }\n if(this.tf.gridLayout){\n let gridLayout = this.tf.feature('gridLayout');\n this.cont.style.width = gridLayout.tblCont.clientWidth + 'px';\n } else {\n this.cont.style.width = this.tf.tbl.clientWidth + 'px';\n }\n\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n Dom.remove(this.cont);\n this.cont = null;\n this.initialized = false;\n }\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nexport class NoResults extends Feature{\n\n /**\n * No results message UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'noResults');\n\n //configuration object\n let f = this.config.no_results_message;\n\n this.content = f.content || 'No results';\n this.customContainer = f.custom_container || null;\n this.customContainerId = f.custom_container_id || null;\n this.isExternal = !Types.isEmpty(this.customContainer) ||\n !Types.isEmpty(this.customContainerId);\n this.cssClass = f.css_class || 'no-results';\n\n this.cont = null;\n\n //callback before message is displayed\n this.onBeforeShowMsg = Types.isFn(f.on_before_show_msg) ?\n f.on_before_show_msg : null;\n //callback after message is displayed\n this.onAfterShowMsg = Types.isFn(f.on_after_show_msg) ?\n f.on_after_show_msg : null;\n //callback before message is hidden\n this.onBeforeHideMsg = Types.isFn(f.on_before_hide_msg) ?\n f.on_before_hide_msg : null;\n //callback after message is hidden\n this.onAfterHideMsg = Types.isFn(f.on_after_hide_msg) ?\n f.on_after_hide_msg : null;\n\n this.prfxNoResults = 'nores_';\n }\n\n init(){\n if(this.initialized){\n return;\n }\n let tf = this.tf;\n let target = this.customContainer || Dom.id(this.customContainerId) ||\n tf.tbl;\n\n //container\n let cont = Dom.create('div', ['id', this.prfxNoResults+tf.id]);\n cont.className = this.cssClass;\n cont.innerHTML = this.content;\n\n if(this.isExternal){\n target.appendChild(cont);\n } else {\n target.parentNode.insertBefore(cont, target.nextSibling);\n }\n\n this.cont = cont;\n\n // subscribe to after-filtering event\n this.emitter.on(['after-filtering'], ()=> this.toggle());\n\n this.initialized = true;\n this.hide();\n }\n\n toggle(){\n if(this.tf.nbVisibleRows > 0){\n this.hide();\n } else {\n this.show();\n }\n }\n\n show(){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n if(this.onBeforeShowMsg){\n this.onBeforeShowMsg.call(null, this.tf, this);\n }\n\n this.setWidth();\n this.cont.style.display = 'block';\n\n if(this.onAfterShowMsg){\n this.onAfterShowMsg.call(null, this.tf, this);\n }\n }\n\n hide(){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n if(this.onBeforeHideMsg){\n this.onBeforeHideMsg.call(null, this.tf, this);\n }\n\n this.cont.style.display = 'none';\n\n if(this.onBeforeHideMsg){\n this.onBeforeHideMsg.call(null, this.tf, this);\n }\n }\n\n setWidth(){\n if(!this.initialized || this.isExternal || !this.isEnabled()){\n return;\n }\n if(this.tf.gridLayout){\n let gridLayout = this.tf.feature('gridLayout');\n this.cont.style.width = gridLayout.tblCont.clientWidth + 'px';\n } else {\n this.cont.style.width = this.tf.tbl.clientWidth + 'px';\n }\n\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n Dom.remove(this.cont);\n this.cont = null;\n // unsubscribe to after-filtering event\n this.emitter.off(['after-filtering'], ()=> this.toggle());\n\n this.initialized = false;\n }\n}\n"
},
{
"kind": "class",
@@ -7259,7 +7710,7 @@
"longname": "src/modules/noResults.js~NoResults#initialized",
"access": null,
"description": null,
- "lineNumber": 62,
+ "lineNumber": 66,
"undocument": true,
"type": {
"types": [
@@ -7267,6 +7718,20 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "toggle",
+ "memberof": "src/modules/noResults.js~NoResults",
+ "longname": "src/modules/noResults.js~NoResults#toggle",
+ "access": null,
+ "description": null,
+ "lineNumber": 70,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "method",
"static": false,
@@ -7276,7 +7741,7 @@
"longname": "src/modules/noResults.js~NoResults#show",
"access": null,
"description": null,
- "lineNumber": 66,
+ "lineNumber": 78,
"undocument": true,
"params": [],
"generator": false
@@ -7290,7 +7755,7 @@
"longname": "src/modules/noResults.js~NoResults#hide",
"access": null,
"description": null,
- "lineNumber": 83,
+ "lineNumber": 95,
"undocument": true,
"params": [],
"generator": false
@@ -7304,7 +7769,7 @@
"longname": "src/modules/noResults.js~NoResults#setWidth",
"access": null,
"description": null,
- "lineNumber": 99,
+ "lineNumber": 111,
"undocument": true,
"params": [],
"generator": false
@@ -7318,7 +7783,7 @@
"longname": "src/modules/noResults.js~NoResults#destroy",
"access": null,
"description": null,
- "lineNumber": 112,
+ "lineNumber": 124,
"undocument": true,
"params": [],
"generator": false
@@ -7332,7 +7797,7 @@
"longname": "src/modules/noResults.js~NoResults#cont",
"access": null,
"description": null,
- "lineNumber": 117,
+ "lineNumber": 129,
"undocument": true,
"type": {
"types": [
@@ -7349,7 +7814,7 @@
"longname": "src/modules/noResults.js~NoResults#initialized",
"access": null,
"description": null,
- "lineNumber": 118,
+ "lineNumber": 133,
"undocument": true,
"type": {
"types": [
@@ -7367,7 +7832,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\nimport Str from '../string';\nimport Event from '../event';\n\nexport class Paging extends Feature{\n\n /**\n * Pagination component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'paging');\n\n // Configuration object\n var f = this.config;\n\n //css class for paging buttons (previous,next,etc.)\n this.btnPageCssClass = f.paging_btn_css_class || 'pgInp';\n //stores paging select element\n this.pagingSlc = null;\n //results per page select element\n this.resultsPerPageSlc = null;\n //id of container element\n this.pagingTgtId = f.paging_target_id || null;\n //defines table paging length\n this.pagingLength = !isNaN(f.paging_length) ? f.paging_length : 10;\n //id of container element\n this.resultsPerPageTgtId = f.results_per_page_target_id || null;\n //css class for paging select element\n this.pgSlcCssClass = f.paging_slc_css_class || 'pgSlc';\n //css class for paging input element\n this.pgInpCssClass = f.paging_inp_css_class || 'pgNbInp';\n //stores results per page text and values\n this.resultsPerPage = f.results_per_page || null;\n //enables/disables results per page drop-down\n this.hasResultsPerPage = Types.isArray(this.resultsPerPage);\n //defines css class for results per page select\n this.resultsSlcCssClass = f.results_slc_css_class || 'rspg';\n //css class for label preceding results per page select\n this.resultsSpanCssClass = f.results_span_css_class || 'rspgSpan';\n //1st row index of current page\n this.startPagingRow = 0;\n //total nb of pages\n this.nbPages = 0;\n //current page nb\n this.currentPageNb = 1;\n //defines next page button text\n this.btnNextPageText = f.btn_next_page_text || '>';\n //defines previous page button text\n this.btnPrevPageText = f.btn_prev_page_text || '<';\n //defines last page button text\n this.btnLastPageText = f.btn_last_page_text || '>|';\n //defines first page button text\n this.btnFirstPageText = f.btn_first_page_text || '|<';\n //defines next page button html\n this.btnNextPageHtml = f.btn_next_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines previous page button html\n this.btnPrevPageHtml = f.btn_prev_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines last page button html\n this.btnFirstPageHtml = f.btn_first_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines previous page button html\n this.btnLastPageHtml = f.btn_last_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines text preceeding page selector drop-down\n this.pageText = f.page_text || ' Page ';\n //defines text after page selector drop-down\n this.ofText = f.of_text || ' of ';\n //css class for span containing tot nb of pages\n this.nbPgSpanCssClass = f.nb_pages_css_class || 'nbpg';\n //enables/disables paging buttons\n this.hasPagingBtns = f.paging_btns===false ? false : true;\n //defines previous page button html\n this.pageSelectorType = f.page_selector_type || tf.fltTypeSlc;\n //calls function before page is changed\n this.onBeforeChangePage = Types.isFn(f.on_before_change_page) ?\n f.on_before_change_page : null;\n //calls function before page is changed\n this.onAfterChangePage = Types.isFn(f.on_after_change_page) ?\n f.on_after_change_page : null;\n\n //pages select\n this.prfxSlcPages = 'slcPages_';\n //results per page select\n this.prfxSlcResults = 'slcResults_';\n //label preciding results per page select\n this.prfxSlcResultsTxt = 'slcResultsTxt_';\n //span containing next page button\n this.prfxBtnNextSpan = 'btnNextSpan_';\n //span containing previous page button\n this.prfxBtnPrevSpan = 'btnPrevSpan_';\n //span containing last page button\n this.prfxBtnLastSpan = 'btnLastSpan_';\n //span containing first page button\n this.prfxBtnFirstSpan = 'btnFirstSpan_';\n //next button\n this.prfxBtnNext = 'btnNext_';\n //previous button\n this.prfxBtnPrev = 'btnPrev_';\n //last button\n this.prfxBtnLast = 'btnLast_';\n //first button\n this.prfxBtnFirst = 'btnFirst_';\n //span for tot nb pages\n this.prfxPgSpan = 'pgspan_';\n //span preceding pages select (contains 'Page')\n this.prfxPgBeforeSpan = 'pgbeforespan_';\n //span following pages select (contains ' of ')\n this.prfxPgAfterSpan = 'pgafterspan_';\n\n var start_row = this.refRow;\n var nrows = this.nbRows;\n //calculates page nb\n this.nbPages = Math.ceil((nrows-start_row)/this.pagingLength);\n\n //Paging elements events\n var o = this;\n // Paging DOM events\n this.evt = {\n slcIndex(){\n return (o.pageSelectorType===tf.fltTypeSlc) ?\n o.pagingSlc.options.selectedIndex :\n parseInt(o.pagingSlc.value, 10)-1;\n },\n nbOpts(){\n return (o.pageSelectorType===tf.fltTypeSlc) ?\n parseInt(o.pagingSlc.options.length, 10)-1 :\n (o.nbPages-1);\n },\n next(){\n var nextIndex = o.evt.slcIndex() < o.evt.nbOpts() ?\n o.evt.slcIndex()+1 : 0;\n o.changePage(nextIndex);\n },\n prev(){\n var prevIndex = o.evt.slcIndex()>0 ?\n o.evt.slcIndex()-1 : o.evt.nbOpts();\n o.changePage(prevIndex);\n },\n last(){\n o.changePage(o.evt.nbOpts());\n },\n first(){\n o.changePage(0);\n },\n _detectKey(e){\n var key = Event.keyCode(e);\n if(key===13){\n if(tf.sorted){\n tf.filter();\n o.changePage(o.evt.slcIndex());\n } else{\n o.changePage();\n }\n this.blur();\n }\n },\n slcPagesChange: null,\n nextEvt: null,\n prevEvt: null,\n lastEvt: null,\n firstEvt: null\n };\n }\n\n /**\n * Initialize DOM elements\n */\n init(){\n var slcPages;\n var tf = this.tf;\n var evt = this.evt;\n\n if(this.initialized){\n return;\n }\n\n // Check resultsPerPage is in expected format and initialise the\n // results per page component\n if(this.hasResultsPerPage){\n if(this.resultsPerPage.length<2){\n this.hasResultsPerPage = false;\n } else {\n this.pagingLength = this.resultsPerPage[1][0];\n this.setResultsPerPage();\n }\n }\n\n evt.slcPagesChange = (event) => {\n var slc = event.target;\n this.changePage(slc.selectedIndex);\n };\n\n // Paging drop-down list selector\n if(this.pageSelectorType === tf.fltTypeSlc){\n slcPages = Dom.create(\n tf.fltTypeSlc, ['id', this.prfxSlcPages+tf.id]);\n slcPages.className = this.pgSlcCssClass;\n Event.add(slcPages, 'change', evt.slcPagesChange);\n }\n\n // Paging input selector\n if(this.pageSelectorType === tf.fltTypeInp){\n slcPages = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxSlcPages+tf.id],\n ['value', this.currentPageNb]\n );\n slcPages.className = this.pgInpCssClass;\n Event.add(slcPages, 'keypress', evt._detectKey);\n }\n\n // btns containers\n var btnNextSpan = Dom.create(\n 'span',['id', this.prfxBtnNextSpan+tf.id]);\n var btnPrevSpan = Dom.create(\n 'span',['id', this.prfxBtnPrevSpan+tf.id]);\n var btnLastSpan = Dom.create(\n 'span',['id', this.prfxBtnLastSpan+tf.id]);\n var btnFirstSpan = Dom.create(\n 'span',['id', this.prfxBtnFirstSpan+tf.id]);\n\n if(this.hasPagingBtns){\n // Next button\n if(!this.btnNextPageHtml){\n var btn_next = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnNext+tf.id],\n ['type', 'button'],\n ['value', this.btnNextPageText],\n ['title', 'Next']\n );\n btn_next.className = this.btnPageCssClass;\n Event.add(btn_next, 'click', evt.next);\n btnNextSpan.appendChild(btn_next);\n } else {\n btnNextSpan.innerHTML = this.btnNextPageHtml;\n Event.add(btnNextSpan, 'click', evt.next);\n }\n // Previous button\n if(!this.btnPrevPageHtml){\n var btn_prev = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnPrev+tf.id],\n ['type', 'button'],\n ['value', this.btnPrevPageText],\n ['title', 'Previous']\n );\n btn_prev.className = this.btnPageCssClass;\n Event.add(btn_prev, 'click', evt.prev);\n btnPrevSpan.appendChild(btn_prev);\n } else {\n btnPrevSpan.innerHTML = this.btnPrevPageHtml;\n Event.add(btnPrevSpan, 'click', evt.prev);\n }\n // Last button\n if(!this.btnLastPageHtml){\n var btn_last = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnLast+tf.id],\n ['type', 'button'],\n ['value', this.btnLastPageText],\n ['title', 'Last']\n );\n btn_last.className = this.btnPageCssClass;\n Event.add(btn_last, 'click', evt.last);\n btnLastSpan.appendChild(btn_last);\n } else {\n btnLastSpan.innerHTML = this.btnLastPageHtml;\n Event.add(btnLastSpan, 'click', evt.last);\n }\n // First button\n if(!this.btnFirstPageHtml){\n var btn_first = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnFirst+tf.id],\n ['type', 'button'],\n ['value', this.btnFirstPageText],\n ['title', 'First']\n );\n btn_first.className = this.btnPageCssClass;\n Event.add(btn_first, 'click', evt.first);\n btnFirstSpan.appendChild(btn_first);\n } else {\n btnFirstSpan.innerHTML = this.btnFirstPageHtml;\n Event.add(btnFirstSpan, 'click', evt.first);\n }\n }\n\n // paging elements (buttons+drop-down list) are added to defined element\n if(!this.pagingTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.pagingTgtId ? tf.mDiv : Dom.id(this.pagingTgtId);\n targetEl.appendChild(btnFirstSpan);\n targetEl.appendChild(btnPrevSpan);\n\n var pgBeforeSpan = Dom.create(\n 'span',['id', this.prfxPgBeforeSpan+tf.id] );\n pgBeforeSpan.appendChild( Dom.text(this.pageText) );\n pgBeforeSpan.className = this.nbPgSpanCssClass;\n targetEl.appendChild(pgBeforeSpan);\n targetEl.appendChild(slcPages);\n var pgAfterSpan = Dom.create(\n 'span',['id', this.prfxPgAfterSpan+tf.id]);\n pgAfterSpan.appendChild( Dom.text(this.ofText) );\n pgAfterSpan.className = this.nbPgSpanCssClass;\n targetEl.appendChild(pgAfterSpan);\n var pgspan = Dom.create( 'span',['id', this.prfxPgSpan+tf.id] );\n pgspan.className = this.nbPgSpanCssClass;\n pgspan.appendChild( Dom.text(' '+this.nbPages+' ') );\n targetEl.appendChild(pgspan);\n targetEl.appendChild(btnNextSpan);\n targetEl.appendChild(btnLastSpan);\n this.pagingSlc = Dom.id(this.prfxSlcPages+tf.id);\n\n if(!tf.rememberGridValues){\n this.setPagingInfo();\n }\n if(!tf.fltGrid){\n tf.validateAllRows();\n this.setPagingInfo(tf.validRowsIndex);\n }\n\n this.initialized = true;\n }\n\n /**\n * Reset paging when filters are already instantiated\n * @param {Boolean} filterTable Execute filtering once paging instanciated\n */\n reset(filterTable=false){\n var tf = this.tf;\n if(!tf.hasGrid() || this.isEnabled()){\n return;\n }\n this.enable();\n this.init();\n tf.resetValues();\n if(filterTable){\n tf.filter();\n }\n }\n\n /**\n * Calculate number of pages based on valid rows\n * Refresh paging select according to number of pages\n * @param {Array} validRows Collection of valid rows\n */\n setPagingInfo(validRows=[]){\n var tf = this.tf;\n var rows = tf.tbl.rows;\n var mdiv = !this.pagingTgtId ? tf.mDiv : Dom.id(this.pagingTgtId);\n var pgspan = Dom.id(this.prfxPgSpan+tf.id);\n\n //store valid rows indexes\n tf.validRowsIndex = validRows;\n\n if(validRows.length === 0){\n //counts rows to be grouped\n for(var j=tf.refRow; j0){\n mdiv.style.visibility = 'visible';\n if(this.pageSelectorType === tf.fltTypeSlc){\n for(var z=0; z=startPagingRow && h {\n this.changeResultsPerPage();\n ev.target.blur();\n };\n\n var slcR = Dom.create(\n tf.fltTypeSlc, ['id', this.prfxSlcResults+tf.id]);\n slcR.className = this.resultsSlcCssClass;\n var slcRText = this.resultsPerPage[0],\n slcROpts = this.resultsPerPage[1];\n var slcRSpan = Dom.create(\n 'span',['id', this.prfxSlcResultsTxt+tf.id]);\n slcRSpan.className = this.resultsSpanCssClass;\n\n // results per page select is added to external element\n if(!this.resultsPerPageTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.resultsPerPageTgtId ?\n tf.rDiv : Dom.id(this.resultsPerPageTgtId);\n slcRSpan.appendChild(Dom.text(slcRText));\n\n var help = tf.feature('help');\n if(help && help.btn){\n help.btn.parentNode.insertBefore(slcRSpan, help.btn);\n help.btn.parentNode.insertBefore(slcR, help.btn);\n } else {\n targetEl.appendChild(slcRSpan);\n targetEl.appendChild(slcR);\n }\n\n for(var r=0; r=0 && index<=(this.nbPages-1) ){\n if(this.onBeforeChangePage){\n this.onBeforeChangePage.call(null, this, index);\n }\n this.currentPageNb = parseInt(index, 10)+1;\n if(this.pageSelectorType===tf.fltTypeSlc){\n this.pagingSlc.options[index].selected = true;\n } else {\n this.pagingSlc.value = this.currentPageNb;\n }\n\n if(tf.rememberPageNb){\n tf.feature('store').savePageNb(tf.pgNbCookie);\n }\n this.startPagingRow = (this.pageSelectorType===tf.fltTypeSlc) ?\n this.pagingSlc.value : (index*this.pagingLength);\n\n this.groupByPage();\n\n if(this.onAfterChangePage){\n this.onAfterChangePage.call(null, this, index);\n }\n }\n }\n\n /**\n * Change rows according to page results drop-down\n * TODO: accept a parameter setting the results per page length\n */\n _changeResultsPerPage(){\n var tf = this.tf;\n\n if(!this.isEnabled()){\n return;\n }\n var slcR = this.resultsPerPageSlc;\n var slcPagesSelIndex = (this.pageSelectorType===tf.fltTypeSlc) ?\n this.pagingSlc.selectedIndex :\n parseInt(this.pagingSlc.value-1, 10);\n this.pagingLength = parseInt(slcR.options[slcR.selectedIndex].value,10);\n this.startPagingRow = this.pagingLength*slcPagesSelIndex;\n\n if(!isNaN(this.pagingLength)){\n if(this.startPagingRow >= tf.nbFilterableRows){\n this.startPagingRow = (tf.nbFilterableRows-this.pagingLength);\n }\n this.setPagingInfo();\n\n if(this.pageSelectorType===tf.fltTypeSlc){\n var slcIndex =\n (this.pagingSlc.options.length-1<=slcPagesSelIndex ) ?\n (this.pagingSlc.options.length-1) : slcPagesSelIndex;\n this.pagingSlc.options[slcIndex].selected = true;\n }\n if(tf.rememberPageLen){\n tf.feature('store').savePageLength(tf.pgLenCookie);\n }\n }\n }\n\n /**\n * Re-set page nb at page re-load\n */\n _resetPage(name){\n var tf = this.tf;\n var pgnb = tf.feature('store').getPageNb(name);\n if(pgnb!==''){\n this.changePage((pgnb-1));\n }\n }\n\n /**\n * Re-set page length value at page re-load\n */\n _resetPageLength(name){\n var tf = this.tf;\n if(!this.isEnabled()){\n return;\n }\n var pglenIndex = tf.feature('store').getPageLength(name);\n\n if(pglenIndex!==''){\n this.resultsPerPageSlc.options[pglenIndex].selected = true;\n this.changeResultsPerPage();\n }\n }\n\n /**\n * Remove paging feature\n */\n destroy(){\n var tf = this.tf;\n\n if(!this.initialized){\n return;\n }\n // btns containers\n var btnNextSpan = Dom.id(this.prfxBtnNextSpan+tf.id);\n var btnPrevSpan = Dom.id(this.prfxBtnPrevSpan+tf.id);\n var btnLastSpan = Dom.id(this.prfxBtnLastSpan+tf.id);\n var btnFirstSpan = Dom.id(this.prfxBtnFirstSpan+tf.id);\n //span containing 'Page' text\n var pgBeforeSpan = Dom.id(this.prfxPgBeforeSpan+tf.id);\n //span containing 'of' text\n var pgAfterSpan = Dom.id(this.prfxPgAfterSpan+tf.id);\n //span containing nb of pages\n var pgspan = Dom.id(this.prfxPgSpan+tf.id);\n\n var evt = this.evt;\n\n if(this.pagingSlc){\n if(this.pageSelectorType === tf.fltTypeSlc){\n Event.remove(this.pagingSlc, 'change', evt.slcPagesChange);\n }\n else if(this.pageSelectorType === tf.fltTypeInp){\n Event.remove(this.pagingSlc, 'keypress', evt._detectKey);\n }\n Dom.remove(this.pagingSlc);\n }\n\n if(btnNextSpan){\n Event.remove(btnNextSpan, 'click', evt.next);\n Dom.remove(btnNextSpan);\n }\n\n if(btnPrevSpan){\n Event.remove(btnPrevSpan, 'click', evt.prev);\n Dom.remove(btnPrevSpan);\n }\n\n if(btnLastSpan){\n Event.remove(btnLastSpan, 'click', evt.last);\n Dom.remove(btnLastSpan);\n }\n\n if(btnFirstSpan){\n Event.remove(btnFirstSpan, 'click', evt.first);\n Dom.remove(btnFirstSpan);\n }\n\n if(pgBeforeSpan){\n Dom.remove(pgBeforeSpan);\n }\n\n if(pgAfterSpan){\n Dom.remove(pgAfterSpan);\n }\n\n if(pgspan){\n Dom.remove(pgspan);\n }\n\n if(this.hasResultsPerPage){\n this.removeResultsPerPage();\n }\n\n this.pagingSlc = null;\n this.nbPages = 0;\n this.disable();\n this.initialized = false;\n }\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\nimport Str from '../string';\nimport Event from '../event';\n\nexport class Paging extends Feature{\n\n /**\n * Pagination component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'paging');\n\n // Configuration object\n var f = this.config;\n\n //css class for paging buttons (previous,next,etc.)\n this.btnPageCssClass = f.paging_btn_css_class || 'pgInp';\n //stores paging select element\n this.pagingSlc = null;\n //results per page select element\n this.resultsPerPageSlc = null;\n //id of container element\n this.pagingTgtId = f.paging_target_id || null;\n //defines table paging length\n this.pagingLength = !isNaN(f.paging_length) ? f.paging_length : 10;\n //id of container element\n this.resultsPerPageTgtId = f.results_per_page_target_id || null;\n //css class for paging select element\n this.pgSlcCssClass = f.paging_slc_css_class || 'pgSlc';\n //css class for paging input element\n this.pgInpCssClass = f.paging_inp_css_class || 'pgNbInp';\n //stores results per page text and values\n this.resultsPerPage = f.results_per_page || null;\n //enables/disables results per page drop-down\n this.hasResultsPerPage = Types.isArray(this.resultsPerPage);\n //defines css class for results per page select\n this.resultsSlcCssClass = f.results_slc_css_class || 'rspg';\n //css class for label preceding results per page select\n this.resultsSpanCssClass = f.results_span_css_class || 'rspgSpan';\n //1st row index of current page\n this.startPagingRow = 0;\n //total nb of pages\n this.nbPages = 0;\n //current page nb\n this.currentPageNb = 1;\n //defines next page button text\n this.btnNextPageText = f.btn_next_page_text || '>';\n //defines previous page button text\n this.btnPrevPageText = f.btn_prev_page_text || '<';\n //defines last page button text\n this.btnLastPageText = f.btn_last_page_text || '>|';\n //defines first page button text\n this.btnFirstPageText = f.btn_first_page_text || '|<';\n //defines next page button html\n this.btnNextPageHtml = f.btn_next_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines previous page button html\n this.btnPrevPageHtml = f.btn_prev_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines last page button html\n this.btnFirstPageHtml = f.btn_first_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines previous page button html\n this.btnLastPageHtml = f.btn_last_page_html ||\n (!tf.enableIcons ? null :\n ' ');\n //defines text preceeding page selector drop-down\n this.pageText = f.page_text || ' Page ';\n //defines text after page selector drop-down\n this.ofText = f.of_text || ' of ';\n //css class for span containing tot nb of pages\n this.nbPgSpanCssClass = f.nb_pages_css_class || 'nbpg';\n //enables/disables paging buttons\n this.hasPagingBtns = f.paging_btns===false ? false : true;\n //defines previous page button html\n this.pageSelectorType = f.page_selector_type || tf.fltTypeSlc;\n //calls function before page is changed\n this.onBeforeChangePage = Types.isFn(f.on_before_change_page) ?\n f.on_before_change_page : null;\n //calls function before page is changed\n this.onAfterChangePage = Types.isFn(f.on_after_change_page) ?\n f.on_after_change_page : null;\n\n //pages select\n this.prfxSlcPages = 'slcPages_';\n //results per page select\n this.prfxSlcResults = 'slcResults_';\n //label preciding results per page select\n this.prfxSlcResultsTxt = 'slcResultsTxt_';\n //span containing next page button\n this.prfxBtnNextSpan = 'btnNextSpan_';\n //span containing previous page button\n this.prfxBtnPrevSpan = 'btnPrevSpan_';\n //span containing last page button\n this.prfxBtnLastSpan = 'btnLastSpan_';\n //span containing first page button\n this.prfxBtnFirstSpan = 'btnFirstSpan_';\n //next button\n this.prfxBtnNext = 'btnNext_';\n //previous button\n this.prfxBtnPrev = 'btnPrev_';\n //last button\n this.prfxBtnLast = 'btnLast_';\n //first button\n this.prfxBtnFirst = 'btnFirst_';\n //span for tot nb pages\n this.prfxPgSpan = 'pgspan_';\n //span preceding pages select (contains 'Page')\n this.prfxPgBeforeSpan = 'pgbeforespan_';\n //span following pages select (contains ' of ')\n this.prfxPgAfterSpan = 'pgafterspan_';\n\n var start_row = tf.refRow;\n var nrows = tf.nbRows;\n //calculates page nb\n this.nbPages = Math.ceil((nrows-start_row)/this.pagingLength);\n\n //Paging elements events\n var o = this;\n // Paging DOM events\n this.evt = {\n slcIndex(){\n return (o.pageSelectorType===tf.fltTypeSlc) ?\n o.pagingSlc.options.selectedIndex :\n parseInt(o.pagingSlc.value, 10)-1;\n },\n nbOpts(){\n return (o.pageSelectorType===tf.fltTypeSlc) ?\n parseInt(o.pagingSlc.options.length, 10)-1 :\n (o.nbPages-1);\n },\n next(){\n var nextIndex = o.evt.slcIndex() < o.evt.nbOpts() ?\n o.evt.slcIndex()+1 : 0;\n o.changePage(nextIndex);\n },\n prev(){\n var prevIndex = o.evt.slcIndex()>0 ?\n o.evt.slcIndex()-1 : o.evt.nbOpts();\n o.changePage(prevIndex);\n },\n last(){\n o.changePage(o.evt.nbOpts());\n },\n first(){\n o.changePage(0);\n },\n _detectKey(e){\n var key = Event.keyCode(e);\n if(key===13){\n if(tf.sorted){\n tf.filter();\n o.changePage(o.evt.slcIndex());\n } else{\n o.changePage();\n }\n this.blur();\n }\n },\n slcPagesChange: null,\n nextEvt: null,\n prevEvt: null,\n lastEvt: null,\n firstEvt: null\n };\n }\n\n /**\n * Initialize DOM elements\n */\n init(){\n var slcPages;\n var tf = this.tf;\n var evt = this.evt;\n\n if(this.initialized){\n return;\n }\n\n // Check resultsPerPage is in expected format and initialise the\n // results per page component\n if(this.hasResultsPerPage){\n if(this.resultsPerPage.length<2){\n this.hasResultsPerPage = false;\n } else {\n this.pagingLength = this.resultsPerPage[1][0];\n this.setResultsPerPage();\n }\n }\n\n evt.slcPagesChange = (event) => {\n var slc = event.target;\n this.changePage(slc.selectedIndex);\n };\n\n // Paging drop-down list selector\n if(this.pageSelectorType === tf.fltTypeSlc){\n slcPages = Dom.create(\n tf.fltTypeSlc, ['id', this.prfxSlcPages+tf.id]);\n slcPages.className = this.pgSlcCssClass;\n Event.add(slcPages, 'change', evt.slcPagesChange);\n }\n\n // Paging input selector\n if(this.pageSelectorType === tf.fltTypeInp){\n slcPages = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxSlcPages+tf.id],\n ['value', this.currentPageNb]\n );\n slcPages.className = this.pgInpCssClass;\n Event.add(slcPages, 'keypress', evt._detectKey);\n }\n\n // btns containers\n var btnNextSpan = Dom.create(\n 'span',['id', this.prfxBtnNextSpan+tf.id]);\n var btnPrevSpan = Dom.create(\n 'span',['id', this.prfxBtnPrevSpan+tf.id]);\n var btnLastSpan = Dom.create(\n 'span',['id', this.prfxBtnLastSpan+tf.id]);\n var btnFirstSpan = Dom.create(\n 'span',['id', this.prfxBtnFirstSpan+tf.id]);\n\n if(this.hasPagingBtns){\n // Next button\n if(!this.btnNextPageHtml){\n var btn_next = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnNext+tf.id],\n ['type', 'button'],\n ['value', this.btnNextPageText],\n ['title', 'Next']\n );\n btn_next.className = this.btnPageCssClass;\n Event.add(btn_next, 'click', evt.next);\n btnNextSpan.appendChild(btn_next);\n } else {\n btnNextSpan.innerHTML = this.btnNextPageHtml;\n Event.add(btnNextSpan, 'click', evt.next);\n }\n // Previous button\n if(!this.btnPrevPageHtml){\n var btn_prev = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnPrev+tf.id],\n ['type', 'button'],\n ['value', this.btnPrevPageText],\n ['title', 'Previous']\n );\n btn_prev.className = this.btnPageCssClass;\n Event.add(btn_prev, 'click', evt.prev);\n btnPrevSpan.appendChild(btn_prev);\n } else {\n btnPrevSpan.innerHTML = this.btnPrevPageHtml;\n Event.add(btnPrevSpan, 'click', evt.prev);\n }\n // Last button\n if(!this.btnLastPageHtml){\n var btn_last = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnLast+tf.id],\n ['type', 'button'],\n ['value', this.btnLastPageText],\n ['title', 'Last']\n );\n btn_last.className = this.btnPageCssClass;\n Event.add(btn_last, 'click', evt.last);\n btnLastSpan.appendChild(btn_last);\n } else {\n btnLastSpan.innerHTML = this.btnLastPageHtml;\n Event.add(btnLastSpan, 'click', evt.last);\n }\n // First button\n if(!this.btnFirstPageHtml){\n var btn_first = Dom.create(\n tf.fltTypeInp,\n ['id', this.prfxBtnFirst+tf.id],\n ['type', 'button'],\n ['value', this.btnFirstPageText],\n ['title', 'First']\n );\n btn_first.className = this.btnPageCssClass;\n Event.add(btn_first, 'click', evt.first);\n btnFirstSpan.appendChild(btn_first);\n } else {\n btnFirstSpan.innerHTML = this.btnFirstPageHtml;\n Event.add(btnFirstSpan, 'click', evt.first);\n }\n }\n\n // paging elements (buttons+drop-down list) are added to defined element\n if(!this.pagingTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.pagingTgtId ? tf.mDiv : Dom.id(this.pagingTgtId);\n targetEl.appendChild(btnFirstSpan);\n targetEl.appendChild(btnPrevSpan);\n\n var pgBeforeSpan = Dom.create(\n 'span',['id', this.prfxPgBeforeSpan+tf.id] );\n pgBeforeSpan.appendChild( Dom.text(this.pageText) );\n pgBeforeSpan.className = this.nbPgSpanCssClass;\n targetEl.appendChild(pgBeforeSpan);\n targetEl.appendChild(slcPages);\n var pgAfterSpan = Dom.create(\n 'span',['id', this.prfxPgAfterSpan+tf.id]);\n pgAfterSpan.appendChild( Dom.text(this.ofText) );\n pgAfterSpan.className = this.nbPgSpanCssClass;\n targetEl.appendChild(pgAfterSpan);\n var pgspan = Dom.create( 'span',['id', this.prfxPgSpan+tf.id] );\n pgspan.className = this.nbPgSpanCssClass;\n pgspan.appendChild( Dom.text(' '+this.nbPages+' ') );\n targetEl.appendChild(pgspan);\n targetEl.appendChild(btnNextSpan);\n targetEl.appendChild(btnLastSpan);\n this.pagingSlc = Dom.id(this.prfxSlcPages+tf.id);\n\n if(!tf.rememberGridValues){\n this.setPagingInfo();\n }\n if(!tf.fltGrid){\n tf.validateAllRows();\n this.setPagingInfo(tf.validRowsIndex);\n }\n\n this.emitter.on(['after-filtering'], ()=> this.resetPagingInfo());\n this.emitter.on(['initialized'], ()=> this.resetValues());\n\n this.initialized = true;\n }\n\n /**\n * Reset paging when filters are already instantiated\n * @param {Boolean} filterTable Execute filtering once paging instanciated\n */\n reset(filterTable=false){\n var tf = this.tf;\n if(this.isEnabled()){\n return;\n }\n this.enable();\n this.init();\n // tf.resetValues();\n if(filterTable){\n tf.filter();\n }\n }\n\n /**\n * Reset paging info from scratch after a filtering process\n */\n resetPagingInfo(){\n this.startPagingRow = 0;\n this.currentPageNb = 1;\n this.setPagingInfo(this.tf.validRowsIndex);\n }\n\n /**\n * Calculate number of pages based on valid rows\n * Refresh paging select according to number of pages\n * @param {Array} validRows Collection of valid rows\n */\n setPagingInfo(validRows){\n var tf = this.tf;\n var mdiv = !this.pagingTgtId ? tf.mDiv : Dom.id(this.pagingTgtId);\n var pgspan = Dom.id(this.prfxPgSpan+tf.id);\n\n //store valid rows indexes\n tf.validRowsIndex = validRows || tf.getValidRows(true);\n\n //calculate nb of pages\n this.nbPages = Math.ceil(tf.validRowsIndex.length/this.pagingLength);\n //refresh page nb span\n pgspan.innerHTML = this.nbPages;\n //select clearing shortcut\n if(this.pageSelectorType === tf.fltTypeSlc){\n this.pagingSlc.innerHTML = '';\n }\n\n if(this.nbPages>0){\n mdiv.style.visibility = 'visible';\n if(this.pageSelectorType === tf.fltTypeSlc){\n for(var z=0; z=startPagingRow && h {\n this.changeResultsPerPage();\n ev.target.blur();\n };\n\n var slcR = Dom.create(\n tf.fltTypeSlc, ['id', this.prfxSlcResults+tf.id]);\n slcR.className = this.resultsSlcCssClass;\n var slcRText = this.resultsPerPage[0],\n slcROpts = this.resultsPerPage[1];\n var slcRSpan = Dom.create(\n 'span',['id', this.prfxSlcResultsTxt+tf.id]);\n slcRSpan.className = this.resultsSpanCssClass;\n\n // results per page select is added to external element\n if(!this.resultsPerPageTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.resultsPerPageTgtId ?\n tf.rDiv : Dom.id(this.resultsPerPageTgtId);\n slcRSpan.appendChild(Dom.text(slcRText));\n\n var help = tf.feature('help');\n if(help && help.btn){\n help.btn.parentNode.insertBefore(slcRSpan, help.btn);\n help.btn.parentNode.insertBefore(slcR, help.btn);\n } else {\n targetEl.appendChild(slcRSpan);\n targetEl.appendChild(slcR);\n }\n\n for(var r=0; r=0 && index<=(this.nbPages-1) ){\n if(this.onBeforeChangePage){\n this.onBeforeChangePage.call(null, this, index);\n }\n this.currentPageNb = parseInt(index, 10)+1;\n if(this.pageSelectorType===tf.fltTypeSlc){\n this.pagingSlc.options[index].selected = true;\n } else {\n this.pagingSlc.value = this.currentPageNb;\n }\n\n if(tf.rememberPageNb){\n tf.feature('store').savePageNb(tf.pgNbCookie);\n }\n this.startPagingRow = (this.pageSelectorType===tf.fltTypeSlc) ?\n this.pagingSlc.value : (index*this.pagingLength);\n\n this.groupByPage();\n\n if(this.onAfterChangePage){\n this.onAfterChangePage.call(null, this, index);\n }\n }\n\n this.emitter.emit('after-changing-page', tf, index);\n }\n\n /**\n * Change rows according to page results drop-down\n * TODO: accept a parameter setting the results per page length\n */\n changeResultsPerPage(){\n var tf = this.tf;\n\n if(!this.isEnabled()){\n return;\n }\n\n this.emitter.emit('before-changing-results-per-page', tf);\n\n var slcR = this.resultsPerPageSlc;\n var slcPagesSelIndex = (this.pageSelectorType===tf.fltTypeSlc) ?\n this.pagingSlc.selectedIndex :\n parseInt(this.pagingSlc.value-1, 10);\n this.pagingLength = parseInt(slcR.options[slcR.selectedIndex].value,10);\n this.startPagingRow = this.pagingLength*slcPagesSelIndex;\n\n if(!isNaN(this.pagingLength)){\n if(this.startPagingRow >= tf.nbFilterableRows){\n this.startPagingRow = (tf.nbFilterableRows-this.pagingLength);\n }\n this.setPagingInfo();\n\n if(this.pageSelectorType===tf.fltTypeSlc){\n var slcIndex =\n (this.pagingSlc.options.length-1<=slcPagesSelIndex ) ?\n (this.pagingSlc.options.length-1) : slcPagesSelIndex;\n this.pagingSlc.options[slcIndex].selected = true;\n }\n if(tf.rememberPageLen){\n tf.feature('store').savePageLength(tf.pgLenCookie);\n }\n }\n\n this.emitter.emit('after-changing-results-per-page', tf);\n }\n\n /**\n * Re-set persisted pagination info\n */\n resetValues(){\n var tf = this.tf;\n if(tf.rememberPageLen){\n this.resetPageLength(tf.pgLenCookie);\n }\n if(tf.rememberPageNb){\n this.resetPage(tf.pgNbCookie);\n }\n }\n\n /**\n * Re-set page nb at page re-load\n */\n resetPage(name){\n var tf = this.tf;\n if(!this.isEnabled()){\n return;\n }\n this.emitter.emit('before-reset-page', tf);\n var pgnb = tf.feature('store').getPageNb(name);\n if(pgnb !== ''){\n this.changePage((pgnb-1));\n }\n this.emitter.emit('after-reset-page', tf, pgnb);\n }\n\n /**\n * Re-set page length value at page re-load\n */\n resetPageLength(name){\n var tf = this.tf;\n if(!this.isEnabled()){\n return;\n }\n this.emitter.emit('before-reset-page-length', tf);\n var pglenIndex = tf.feature('store').getPageLength(name);\n\n if(pglenIndex!==''){\n this.resultsPerPageSlc.options[pglenIndex].selected = true;\n this.changeResultsPerPage();\n }\n this.emitter.emit('after-reset-page-length', tf, pglenIndex);\n }\n\n /**\n * Remove paging feature\n */\n destroy(){\n var tf = this.tf;\n\n if(!this.initialized){\n return;\n }\n // btns containers\n var btnNextSpan = Dom.id(this.prfxBtnNextSpan+tf.id);\n var btnPrevSpan = Dom.id(this.prfxBtnPrevSpan+tf.id);\n var btnLastSpan = Dom.id(this.prfxBtnLastSpan+tf.id);\n var btnFirstSpan = Dom.id(this.prfxBtnFirstSpan+tf.id);\n //span containing 'Page' text\n var pgBeforeSpan = Dom.id(this.prfxPgBeforeSpan+tf.id);\n //span containing 'of' text\n var pgAfterSpan = Dom.id(this.prfxPgAfterSpan+tf.id);\n //span containing nb of pages\n var pgspan = Dom.id(this.prfxPgSpan+tf.id);\n\n var evt = this.evt;\n\n if(this.pagingSlc){\n if(this.pageSelectorType === tf.fltTypeSlc){\n Event.remove(this.pagingSlc, 'change', evt.slcPagesChange);\n }\n else if(this.pageSelectorType === tf.fltTypeInp){\n Event.remove(this.pagingSlc, 'keypress', evt._detectKey);\n }\n Dom.remove(this.pagingSlc);\n }\n\n if(btnNextSpan){\n Event.remove(btnNextSpan, 'click', evt.next);\n Dom.remove(btnNextSpan);\n }\n\n if(btnPrevSpan){\n Event.remove(btnPrevSpan, 'click', evt.prev);\n Dom.remove(btnPrevSpan);\n }\n\n if(btnLastSpan){\n Event.remove(btnLastSpan, 'click', evt.last);\n Dom.remove(btnLastSpan);\n }\n\n if(btnFirstSpan){\n Event.remove(btnFirstSpan, 'click', evt.first);\n Dom.remove(btnFirstSpan);\n }\n\n if(pgBeforeSpan){\n Dom.remove(pgBeforeSpan);\n }\n\n if(pgAfterSpan){\n Dom.remove(pgAfterSpan);\n }\n\n if(pgspan){\n Dom.remove(pgspan);\n }\n\n if(this.hasResultsPerPage){\n this.removeResultsPerPage();\n }\n\n this.emitter.off(['after-filtering'], ()=> this.resetPagingInfo());\n this.emitter.off(['initialized'], ()=> this.resetValues());\n\n this.pagingSlc = null;\n this.nbPages = 0;\n this.disable();\n this.initialized = false;\n }\n}\n"
},
{
"kind": "class",
@@ -8267,7 +8732,7 @@
"longname": "src/modules/paging.js~Paging#initialized",
"access": null,
"description": null,
- "lineNumber": 337,
+ "lineNumber": 340,
"undocument": true,
"type": {
"types": [
@@ -8284,7 +8749,7 @@
"longname": "src/modules/paging.js~Paging#reset",
"access": null,
"description": "Reset paging when filters are already instantiated",
- "lineNumber": 344,
+ "lineNumber": 347,
"params": [
{
"nullable": null,
@@ -8299,6 +8764,53 @@
],
"generator": false
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "resetPagingInfo",
+ "memberof": "src/modules/paging.js~Paging",
+ "longname": "src/modules/paging.js~Paging#resetPagingInfo",
+ "access": null,
+ "description": "Reset paging info from scratch after a filtering process",
+ "lineNumber": 363,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "startPagingRow",
+ "memberof": "src/modules/paging.js~Paging",
+ "longname": "src/modules/paging.js~Paging#startPagingRow",
+ "access": null,
+ "description": null,
+ "lineNumber": 364,
+ "undocument": true,
+ "type": {
+ "types": [
+ "number"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "currentPageNb",
+ "memberof": "src/modules/paging.js~Paging",
+ "longname": "src/modules/paging.js~Paging#currentPageNb",
+ "access": null,
+ "description": null,
+ "lineNumber": 365,
+ "undocument": true,
+ "type": {
+ "types": [
+ "number"
+ ]
+ }
+ },
{
"kind": "method",
"static": false,
@@ -8308,7 +8820,7 @@
"longname": "src/modules/paging.js~Paging#setPagingInfo",
"access": null,
"description": "Calculate number of pages based on valid rows\nRefresh paging select according to number of pages",
- "lineNumber": 362,
+ "lineNumber": 374,
"params": [
{
"nullable": null,
@@ -8332,7 +8844,7 @@
"longname": "src/modules/paging.js~Paging#nbPages",
"access": null,
"description": null,
- "lineNumber": 387,
+ "lineNumber": 383,
"undocument": true,
"type": {
"types": [
@@ -8349,7 +8861,7 @@
"longname": "src/modules/paging.js~Paging#groupByPage",
"access": null,
"description": "Group table rows by page and display valid rows",
- "lineNumber": 418,
+ "lineNumber": 414,
"params": [
{
"nullable": null,
@@ -8373,7 +8885,7 @@
"longname": "src/modules/paging.js~Paging#getPage",
"access": null,
"description": "Return the current page number",
- "lineNumber": 460,
+ "lineNumber": 453,
"params": [],
"return": {
"nullable": null,
@@ -8394,7 +8906,7 @@
"longname": "src/modules/paging.js~Paging#setPage",
"access": null,
"description": "Show page based on passed param value (string or number):",
- "lineNumber": 469,
+ "lineNumber": 462,
"params": [
{
"nullable": null,
@@ -8418,7 +8930,7 @@
"longname": "src/modules/paging.js~Paging#setResultsPerPage",
"access": null,
"description": "Generates UI elements for the number of results per page drop-down",
- "lineNumber": 503,
+ "lineNumber": 496,
"params": [],
"generator": false
},
@@ -8431,7 +8943,7 @@
"longname": "src/modules/paging.js~Paging#resultsPerPageSlc",
"access": null,
"description": null,
- "lineNumber": 550,
+ "lineNumber": 540,
"undocument": true,
"type": {
"types": [
@@ -8448,7 +8960,7 @@
"longname": "src/modules/paging.js~Paging#removeResultsPerPage",
"access": null,
"description": "Remove number of results per page UI elements",
- "lineNumber": 556,
+ "lineNumber": 546,
"params": [],
"generator": false
},
@@ -8461,7 +8973,7 @@
"longname": "src/modules/paging.js~Paging#resultsPerPageSlc",
"access": null,
"description": null,
- "lineNumber": 569,
+ "lineNumber": 559,
"undocument": true,
"type": {
"types": [
@@ -8477,71 +8989,8 @@
"memberof": "src/modules/paging.js~Paging",
"longname": "src/modules/paging.js~Paging#changePage",
"access": null,
- "description": "Change the page asynchronously according to passed index",
- "lineNumber": 576,
- "params": [
- {
- "nullable": null,
- "types": [
- "Number"
- ],
- "spread": false,
- "optional": false,
- "name": "index",
- "description": "Index of the page (0-n)"
- }
- ],
- "generator": false
- },
- {
- "kind": "method",
- "static": false,
- "variation": null,
- "name": "changeResultsPerPage",
- "memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#changeResultsPerPage",
- "access": null,
- "description": "Change rows asynchronously according to page results",
- "lineNumber": 585,
- "params": [],
- "generator": false
- },
- {
- "kind": "method",
- "static": false,
- "variation": null,
- "name": "resetPage",
- "memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#resetPage",
- "access": null,
- "description": "Re-set asynchronously page nb at page re-load",
- "lineNumber": 594,
- "params": [],
- "generator": false
- },
- {
- "kind": "method",
- "static": false,
- "variation": null,
- "name": "resetPageLength",
- "memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#resetPageLength",
- "access": null,
- "description": "Re-set asynchronously page length at page re-load",
- "lineNumber": 603,
- "params": [],
- "generator": false
- },
- {
- "kind": "method",
- "static": false,
- "variation": null,
- "name": "_changePage",
- "memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#_changePage",
- "access": null,
"description": "Change the page according to passed index",
- "lineNumber": 613,
+ "lineNumber": 566,
"params": [
{
"nullable": null,
@@ -8565,7 +9014,7 @@
"longname": "src/modules/paging.js~Paging#currentPageNb",
"access": null,
"description": null,
- "lineNumber": 627,
+ "lineNumber": 583,
"undocument": true,
"type": {
"types": [
@@ -8582,7 +9031,7 @@
"longname": "src/modules/paging.js~Paging#startPagingRow",
"access": null,
"description": null,
- "lineNumber": 637,
+ "lineNumber": 593,
"undocument": true,
"type": {
"types": [
@@ -8594,12 +9043,12 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "_changeResultsPerPage",
+ "name": "changeResultsPerPage",
"memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#_changeResultsPerPage",
+ "longname": "src/modules/paging.js~Paging#changeResultsPerPage",
"access": null,
"description": "Change rows according to page results drop-down\nTODO: accept a parameter setting the results per page length",
- "lineNumber": 652,
+ "lineNumber": 610,
"params": [],
"generator": false
},
@@ -8612,7 +9061,7 @@
"longname": "src/modules/paging.js~Paging#pagingLength",
"access": null,
"description": null,
- "lineNumber": 662,
+ "lineNumber": 623,
"undocument": true,
"type": {
"types": [
@@ -8629,7 +9078,7 @@
"longname": "src/modules/paging.js~Paging#startPagingRow",
"access": null,
"description": null,
- "lineNumber": 663,
+ "lineNumber": 624,
"undocument": true,
"type": {
"types": [
@@ -8646,7 +9095,7 @@
"longname": "src/modules/paging.js~Paging#startPagingRow",
"access": null,
"description": null,
- "lineNumber": 667,
+ "lineNumber": 628,
"undocument": true,
"type": {
"types": [
@@ -8658,12 +9107,25 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "_resetPage",
+ "name": "resetValues",
"memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#_resetPage",
+ "longname": "src/modules/paging.js~Paging#resetValues",
+ "access": null,
+ "description": "Re-set persisted pagination info",
+ "lineNumber": 649,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "resetPage",
+ "memberof": "src/modules/paging.js~Paging",
+ "longname": "src/modules/paging.js~Paging#resetPage",
"access": null,
"description": "Re-set page nb at page re-load",
- "lineNumber": 686,
+ "lineNumber": 662,
"params": [
{
"name": "name",
@@ -8678,12 +9140,12 @@
"kind": "method",
"static": false,
"variation": null,
- "name": "_resetPageLength",
+ "name": "resetPageLength",
"memberof": "src/modules/paging.js~Paging",
- "longname": "src/modules/paging.js~Paging#_resetPageLength",
+ "longname": "src/modules/paging.js~Paging#resetPageLength",
"access": null,
"description": "Re-set page length value at page re-load",
- "lineNumber": 697,
+ "lineNumber": 678,
"params": [
{
"name": "name",
@@ -8703,7 +9165,7 @@
"longname": "src/modules/paging.js~Paging#destroy",
"access": null,
"description": "Remove paging feature",
- "lineNumber": 713,
+ "lineNumber": 696,
"params": [],
"generator": false
},
@@ -8716,7 +9178,7 @@
"longname": "src/modules/paging.js~Paging#pagingSlc",
"access": null,
"description": null,
- "lineNumber": 779,
+ "lineNumber": 765,
"undocument": true,
"type": {
"types": [
@@ -8733,7 +9195,7 @@
"longname": "src/modules/paging.js~Paging#nbPages",
"access": null,
"description": null,
- "lineNumber": 780,
+ "lineNumber": 766,
"undocument": true,
"type": {
"types": [
@@ -8750,7 +9212,7 @@
"longname": "src/modules/paging.js~Paging#initialized",
"access": null,
"description": null,
- "lineNumber": 782,
+ "lineNumber": 768,
"undocument": true,
"type": {
"types": [
@@ -8768,7 +9230,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Types from '../types';\nimport Dom from '../dom';\nimport Event from '../event';\n\nexport class PopupFilter extends Feature{\n\n /**\n * Pop-up filter component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'popupFilters');\n\n // Configuration object\n var f = this.config;\n\n // Enable external filters behaviour\n tf.isExternalFlt = true;\n tf.externalFltTgtIds = [];\n\n //filter icon path\n this.popUpImgFlt = f.popup_filters_image ||\n tf.themesPath+'icn_filter.gif';\n //active filter icon path\n this.popUpImgFltActive = f.popup_filters_image_active ||\n tf.themesPath+'icn_filterActive.gif';\n this.popUpImgFltHtml = f.popup_filters_image_html ||\n ' ';\n //defines css class for popup div containing filter\n this.popUpDivCssClass = f.popup_div_css_class || 'popUpFilter';\n //callback function before popup filtes is opened\n this.onBeforePopUpOpen = Types.isFn(f.on_before_popup_filter_open) ?\n f.on_before_popup_filter_open : null;\n //callback function after popup filtes is opened\n this.onAfterPopUpOpen = Types.isFn(f.on_after_popup_filter_open) ?\n f.on_after_popup_filter_open : null;\n //callback function before popup filtes is closed\n this.onBeforePopUpClose =\n Types.isFn(f.on_before_popup_filter_close) ?\n f.on_before_popup_filter_close : null;\n //callback function after popup filtes is closed\n this.onAfterPopUpClose = Types.isFn(f.on_after_popup_filter_close) ?\n f.on_after_popup_filter_close : null;\n\n //stores filters spans\n this.popUpFltSpans = [];\n //stores filters icons\n this.popUpFltImgs = [];\n //stores filters containers\n this.popUpFltElms = this.popUpFltElmCache || [];\n this.popUpFltAdjustToContainer = true;\n\n //id prefix for pop-up filter span\n this.prfxPopUpSpan = 'popUpSpan_';\n //id prefix for pop-up div containing filter\n this.prfxPopUpDiv = 'popUpDiv_';\n }\n\n onClick(e){\n var evt = e || global.event,\n elm = evt.target.parentNode,\n colIndex = parseInt(elm.getAttribute('ci'), 10);\n\n this.closeAll(colIndex);\n this.toggle(colIndex);\n\n if(this.popUpFltAdjustToContainer){\n var popUpDiv = this.popUpFltElms[colIndex],\n header = this.tf.getHeaderElement(colIndex),\n headerWidth = header.clientWidth * 0.95;\n popUpDiv.style.width = parseInt(headerWidth, 10) + 'px';\n }\n Event.cancel(evt);\n Event.stop(evt);\n }\n\n /**\n * Initialize DOM elements\n */\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n for(var i=0; i { this.onClick(evt); });\n this.popUpFltSpans[i] = popUpSpan;\n this.popUpFltImgs[i] = popUpSpan.firstChild;\n }\n\n this.initialized = true;\n }\n\n /**\n * Reset previously destroyed feature\n */\n reset(){\n this.enable();\n this.init();\n this.buildAll();\n }\n\n /**\n * Build all pop-up filters elements\n */\n buildAll(){\n for(var i=0; i { Event.stop(evt); });\n this.popUpFltElms[colIndex] = popUpDiv;\n }\n\n /**\n * Toogle visibility of specified filter\n * @param {Number} colIndex Column index\n */\n toggle(colIndex){\n var tf = this.tf,\n popUpFltElm = this.popUpFltElms[colIndex];\n\n if(popUpFltElm.style.display === 'none' ||\n popUpFltElm.style.display === ''){\n if(this.onBeforePopUpOpen){\n this.onBeforePopUpOpen.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n popUpFltElm.style.display = 'block';\n if(tf.getFilterType(colIndex) === tf.fltTypeInp){\n var flt = tf.getFilterElement(colIndex);\n if(flt){\n flt.focus();\n }\n }\n if(this.onAfterPopUpOpen){\n this.onAfterPopUpOpen.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n } else {\n if(this.onBeforePopUpClose){\n this.onBeforePopUpClose.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n popUpFltElm.style.display = 'none';\n if(this.onAfterPopUpClose){\n this.onAfterPopUpClose.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n }\n }\n\n /**\n * Close all filters excepted for the specified one if any\n * @param {Number} exceptIdx Column index of the filter to not close\n */\n closeAll(exceptIdx){\n for(var i=0; i ';\n //defines css class for popup div containing filter\n this.popUpDivCssClass = f.popup_div_css_class || 'popUpFilter';\n //callback function before popup filtes is opened\n this.onBeforePopUpOpen = Types.isFn(f.on_before_popup_filter_open) ?\n f.on_before_popup_filter_open : null;\n //callback function after popup filtes is opened\n this.onAfterPopUpOpen = Types.isFn(f.on_after_popup_filter_open) ?\n f.on_after_popup_filter_open : null;\n //callback function before popup filtes is closed\n this.onBeforePopUpClose =\n Types.isFn(f.on_before_popup_filter_close) ?\n f.on_before_popup_filter_close : null;\n //callback function after popup filtes is closed\n this.onAfterPopUpClose = Types.isFn(f.on_after_popup_filter_close) ?\n f.on_after_popup_filter_close : null;\n\n //stores filters spans\n this.popUpFltSpans = [];\n //stores filters icons\n this.popUpFltImgs = [];\n //stores filters containers\n this.popUpFltElms = this.popUpFltElmCache || [];\n this.popUpFltAdjustToContainer = true;\n\n //id prefix for pop-up filter span\n this.prfxPopUpSpan = 'popUpSpan_';\n //id prefix for pop-up div containing filter\n this.prfxPopUpDiv = 'popUpDiv_';\n }\n\n onClick(e){\n var evt = e || global.event,\n elm = evt.target.parentNode,\n colIndex = parseInt(elm.getAttribute('ci'), 10);\n\n this.closeAll(colIndex);\n this.toggle(colIndex);\n\n if(this.popUpFltAdjustToContainer){\n var popUpDiv = this.popUpFltElms[colIndex],\n header = this.tf.getHeaderElement(colIndex),\n headerWidth = header.clientWidth * 0.95;\n popUpDiv.style.width = parseInt(headerWidth, 10) + 'px';\n }\n Event.cancel(evt);\n Event.stop(evt);\n }\n\n /**\n * Initialize DOM elements\n */\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n // Override headers row index if no grouped headers\n if(tf.headersRow <= 1){\n tf.headersRow = 0;\n }\n\n for(var i=0; i { this.onClick(evt); });\n this.popUpFltSpans[i] = popUpSpan;\n this.popUpFltImgs[i] = popUpSpan.firstChild;\n }\n\n // subscribe to events\n this.emitter.on(['before-filtering'], ()=> this.buildIcons());\n this.emitter.on(['after-filtering'], ()=> this.closeAll());\n this.emitter.on(['cell-processed'],\n (tf, cellIndex)=> this.buildIcon(cellIndex, true));\n this.emitter.on(['filters-row-inserted'], ()=> this.tf.headersRow++);\n this.emitter.on(['before-filter-init'],\n (tf, colIndex)=> this.build(colIndex));\n\n this.initialized = true;\n }\n\n /**\n * Reset previously destroyed feature\n */\n reset(){\n this.enable();\n this.init();\n this.buildAll();\n }\n\n /**\n * Build all pop-up filters elements\n */\n buildAll(){\n for(var i=0; i { Event.stop(evt); });\n this.popUpFltElms[colIndex] = popUpDiv;\n }\n\n /**\n * Toogle visibility of specified filter\n * @param {Number} colIndex Column index\n */\n toggle(colIndex){\n var tf = this.tf,\n popUpFltElm = this.popUpFltElms[colIndex];\n\n if(popUpFltElm.style.display === 'none' ||\n popUpFltElm.style.display === ''){\n if(this.onBeforePopUpOpen){\n this.onBeforePopUpOpen.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n popUpFltElm.style.display = 'block';\n if(tf.getFilterType(colIndex) === tf.fltTypeInp){\n var flt = tf.getFilterElement(colIndex);\n if(flt){\n flt.focus();\n }\n }\n if(this.onAfterPopUpOpen){\n this.onAfterPopUpOpen.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n } else {\n if(this.onBeforePopUpClose){\n this.onBeforePopUpClose.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n popUpFltElm.style.display = 'none';\n if(this.onAfterPopUpClose){\n this.onAfterPopUpClose.call(\n null, this, this.popUpFltElms[colIndex], colIndex);\n }\n }\n }\n\n /**\n * Close all filters excepted for the specified one if any\n * @param {Number} exceptIdx Column index of the filter to not close\n */\n closeAll(exceptIdx){\n for(var i=0; i this.buildIcons());\n this.emitter.off(['after-filtering'], ()=> this.closeAll());\n this.emitter.off(['cell-processed'],\n (tf, cellIndex)=> this.buildIcon(cellIndex, true));\n this.emitter.off(['filters-row-inserted'], ()=> this.tf.headersRow++);\n this.emitter.off(['before-filter-init'],\n (tf, colIndex)=> this.build(colIndex));\n\n this.initialized = false;\n }\n\n}\n"
},
{
"kind": "class",
@@ -9094,7 +9556,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#initialized",
"access": null,
"description": null,
- "lineNumber": 104,
+ "lineNumber": 119,
"undocument": true,
"type": {
"types": [
@@ -9111,7 +9573,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#reset",
"access": null,
"description": "Reset previously destroyed feature",
- "lineNumber": 110,
+ "lineNumber": 125,
"params": [],
"generator": false
},
@@ -9124,7 +9586,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#buildAll",
"access": null,
"description": "Build all pop-up filters elements",
- "lineNumber": 119,
+ "lineNumber": 134,
"params": [],
"generator": false
},
@@ -9137,7 +9599,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#build",
"access": null,
"description": "Build a specified pop-up filter elements",
- "lineNumber": 130,
+ "lineNumber": 145,
"params": [
{
"nullable": null,
@@ -9171,7 +9633,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#toggle",
"access": null,
"description": "Toogle visibility of specified filter",
- "lineNumber": 147,
+ "lineNumber": 162,
"params": [
{
"nullable": null,
@@ -9195,7 +9657,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#closeAll",
"access": null,
"description": "Close all filters excepted for the specified one if any",
- "lineNumber": 185,
+ "lineNumber": 200,
"params": [
{
"nullable": null,
@@ -9219,7 +9681,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#buildIcons",
"access": null,
"description": "Build all the icons representing the pop-up filters",
- "lineNumber": 200,
+ "lineNumber": 215,
"params": [],
"generator": false
},
@@ -9231,8 +9693,8 @@
"memberof": "src/modules/popupFilter.js~PopupFilter",
"longname": "src/modules/popupFilter.js~PopupFilter#buildIcon",
"access": null,
- "description": "Build specified icon",
- "lineNumber": 211,
+ "description": "Apply specified icon state",
+ "lineNumber": 226,
"params": [
{
"nullable": null,
@@ -9266,7 +9728,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#destroy",
"access": null,
"description": "Remove pop-up filters",
- "lineNumber": 221,
+ "lineNumber": 236,
"params": [],
"generator": false
},
@@ -9279,7 +9741,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#popUpFltElmCache",
"access": null,
"description": null,
- "lineNumber": 226,
+ "lineNumber": 241,
"undocument": true,
"type": {
"types": [
@@ -9296,7 +9758,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#popUpFltElms",
"access": null,
"description": null,
- "lineNumber": 245,
+ "lineNumber": 260,
"undocument": true,
"type": {
"types": [
@@ -9313,7 +9775,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#popUpFltSpans",
"access": null,
"description": null,
- "lineNumber": 246,
+ "lineNumber": 261,
"undocument": true,
"type": {
"types": [
@@ -9330,7 +9792,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#popUpFltImgs",
"access": null,
"description": null,
- "lineNumber": 247,
+ "lineNumber": 262,
"undocument": true,
"type": {
"types": [
@@ -9347,7 +9809,7 @@
"longname": "src/modules/popupFilter.js~PopupFilter#initialized",
"access": null,
"description": null,
- "lineNumber": 248,
+ "lineNumber": 273,
"undocument": true,
"type": {
"types": [
@@ -9365,7 +9827,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nexport class RowsCounter extends Feature{\n\n /**\n * Rows counter\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'rowsCounter');\n\n // TableFilter configuration\n var f = this.config;\n\n //id of custom container element\n this.rowsCounterTgtId = f.rows_counter_target_id || null;\n //element containing tot nb rows\n this.rowsCounterDiv = null;\n //element containing tot nb rows label\n this.rowsCounterSpan = null;\n //defines rows counter text\n this.rowsCounterText = f.rows_counter_text || 'Rows: ';\n this.fromToTextSeparator = f.from_to_text_separator || '-';\n this.overText = f.over_text || ' / ';\n //defines css class rows counter\n this.totRowsCssClass = f.tot_rows_css_class || 'tot';\n //rows counter div\n this.prfxCounter = 'counter_';\n //nb displayed rows label\n this.prfxTotRows = 'totrows_span_';\n //label preceding nb rows label\n this.prfxTotRowsTxt = 'totRowsTextSpan_';\n //callback raised before counter is refreshed\n this.onBeforeRefreshCounter = Types.isFn(f.on_before_refresh_counter) ?\n f.on_before_refresh_counter : null;\n //callback raised after counter is refreshed\n this.onAfterRefreshCounter = Types.isFn(f.on_after_refresh_counter) ?\n f.on_after_refresh_counter : null;\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n //rows counter container\n var countDiv = Dom.create('div', ['id', this.prfxCounter+tf.id]);\n countDiv.className = this.totRowsCssClass;\n //rows counter label\n var countSpan = Dom.create('span', ['id', this.prfxTotRows+tf.id]);\n var countText = Dom.create('span', ['id', this.prfxTotRowsTxt+tf.id]);\n countText.appendChild(Dom.text(this.rowsCounterText));\n\n // counter is added to defined element\n if(!this.rowsCounterTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.rowsCounterTgtId ?\n tf.lDiv : Dom.id( this.rowsCounterTgtId );\n\n //default container: 'lDiv'\n if(!this.rowsCounterTgtId){\n countDiv.appendChild(countText);\n countDiv.appendChild(countSpan);\n targetEl.appendChild(countDiv);\n }\n else{\n //custom container, no need to append statusDiv\n targetEl.appendChild(countText);\n targetEl.appendChild(countSpan);\n }\n this.rowsCounterDiv = countDiv;\n this.rowsCounterSpan = countSpan;\n\n this.initialized = true;\n this.refresh();\n }\n\n refresh(p){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n var tf = this.tf;\n\n if(this.onBeforeRefreshCounter){\n this.onBeforeRefreshCounter.call(null, tf, this.rowsCounterSpan);\n }\n\n var totTxt;\n if(!tf.paging){\n if(p && p !== ''){\n totTxt = p;\n } else{\n totTxt = tf.nbFilterableRows - tf.nbHiddenRows;\n }\n } else {\n var paging = tf.feature('paging');\n if(paging){\n //paging start row\n var paging_start_row = parseInt(paging.startPagingRow, 10) +\n ((tf.nbVisibleRows>0) ? 1 : 0);\n var paging_end_row = (paging_start_row+paging.pagingLength)-1 <=\n tf.nbVisibleRows ?\n paging_start_row+paging.pagingLength-1 :\n tf.nbVisibleRows;\n totTxt = paging_start_row + this.fromToTextSeparator +\n paging_end_row + this.overText + tf.nbVisibleRows;\n }\n }\n\n this.rowsCounterSpan.innerHTML = totTxt;\n if(this.onAfterRefreshCounter){\n this.onAfterRefreshCounter.call(\n null, tf, this.rowsCounterSpan, totTxt);\n }\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n\n if(!this.rowsCounterTgtId && this.rowsCounterDiv){\n Dom.remove(this.rowsCounterDiv);\n } else {\n Dom.id(this.rowsCounterTgtId).innerHTML = '';\n }\n this.rowsCounterSpan = null;\n this.rowsCounterDiv = null;\n this.initialized = false;\n }\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nexport class RowsCounter extends Feature{\n\n /**\n * Rows counter\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'rowsCounter');\n\n // TableFilter configuration\n var f = this.config;\n\n //id of custom container element\n this.rowsCounterTgtId = f.rows_counter_target_id || null;\n //element containing tot nb rows\n this.rowsCounterDiv = null;\n //element containing tot nb rows label\n this.rowsCounterSpan = null;\n //defines rows counter text\n this.rowsCounterText = f.rows_counter_text || 'Rows: ';\n this.fromToTextSeparator = f.from_to_text_separator || '-';\n this.overText = f.over_text || ' / ';\n //defines css class rows counter\n this.totRowsCssClass = f.tot_rows_css_class || 'tot';\n //rows counter div\n this.prfxCounter = 'counter_';\n //nb displayed rows label\n this.prfxTotRows = 'totrows_span_';\n //label preceding nb rows label\n this.prfxTotRowsTxt = 'totRowsTextSpan_';\n //callback raised before counter is refreshed\n this.onBeforeRefreshCounter = Types.isFn(f.on_before_refresh_counter) ?\n f.on_before_refresh_counter : null;\n //callback raised after counter is refreshed\n this.onAfterRefreshCounter = Types.isFn(f.on_after_refresh_counter) ?\n f.on_after_refresh_counter : null;\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n //rows counter container\n var countDiv = Dom.create('div', ['id', this.prfxCounter+tf.id]);\n countDiv.className = this.totRowsCssClass;\n //rows counter label\n var countSpan = Dom.create('span', ['id', this.prfxTotRows+tf.id]);\n var countText = Dom.create('span', ['id', this.prfxTotRowsTxt+tf.id]);\n countText.appendChild(Dom.text(this.rowsCounterText));\n\n // counter is added to defined element\n if(!this.rowsCounterTgtId){\n tf.setToolbar();\n }\n var targetEl = !this.rowsCounterTgtId ?\n tf.lDiv : Dom.id( this.rowsCounterTgtId );\n\n //default container: 'lDiv'\n if(!this.rowsCounterTgtId){\n countDiv.appendChild(countText);\n countDiv.appendChild(countSpan);\n targetEl.appendChild(countDiv);\n }\n else{\n //custom container, no need to append statusDiv\n targetEl.appendChild(countText);\n targetEl.appendChild(countSpan);\n }\n this.rowsCounterDiv = countDiv;\n this.rowsCounterSpan = countSpan;\n\n // subscribe to events\n this.emitter.on(['after-filtering', 'grouped-by-page'],\n ()=> this.refresh(tf.nbVisibleRows));\n this.emitter.on(['rows-changed'], ()=> this.refresh());\n\n this.initialized = true;\n this.refresh();\n }\n\n refresh(p){\n if(!this.initialized || !this.isEnabled()){\n return;\n }\n\n var tf = this.tf;\n\n if(this.onBeforeRefreshCounter){\n this.onBeforeRefreshCounter.call(null, tf, this.rowsCounterSpan);\n }\n\n var totTxt;\n if(!tf.paging){\n if(p && p !== ''){\n totTxt = p;\n } else{\n totTxt = tf.nbFilterableRows - tf.nbHiddenRows;\n }\n } else {\n var paging = tf.feature('paging');\n if(paging){\n //paging start row\n var paging_start_row = parseInt(paging.startPagingRow, 10) +\n ((tf.nbVisibleRows>0) ? 1 : 0);\n var paging_end_row = (paging_start_row+paging.pagingLength)-1 <=\n tf.nbVisibleRows ?\n paging_start_row+paging.pagingLength-1 :\n tf.nbVisibleRows;\n totTxt = paging_start_row + this.fromToTextSeparator +\n paging_end_row + this.overText + tf.nbVisibleRows;\n }\n }\n\n this.rowsCounterSpan.innerHTML = totTxt;\n if(this.onAfterRefreshCounter){\n this.onAfterRefreshCounter.call(\n null, tf, this.rowsCounterSpan, totTxt);\n }\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n\n if(!this.rowsCounterTgtId && this.rowsCounterDiv){\n Dom.remove(this.rowsCounterDiv);\n } else {\n Dom.id(this.rowsCounterTgtId).innerHTML = '';\n }\n this.rowsCounterSpan = null;\n this.rowsCounterDiv = null;\n\n // unsubscribe to events\n this.emitter.off(['after-filtering', 'grouped-by-page'],\n ()=> this.refresh(tf.nbVisibleRows));\n this.emitter.off(['rows-changed'], ()=> this.refresh());\n\n this.initialized = false;\n }\n}\n"
},
{
"kind": "class",
@@ -9671,7 +10133,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#initialized",
"access": null,
"description": null,
- "lineNumber": 79,
+ "lineNumber": 84,
"undocument": true,
"type": {
"types": [
@@ -9688,7 +10150,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#refresh",
"access": null,
"description": null,
- "lineNumber": 83,
+ "lineNumber": 88,
"undocument": true,
"params": [
{
@@ -9709,7 +10171,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#destroy",
"access": null,
"description": null,
- "lineNumber": 123,
+ "lineNumber": 128,
"undocument": true,
"params": [],
"generator": false
@@ -9723,7 +10185,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#rowsCounterSpan",
"access": null,
"description": null,
- "lineNumber": 133,
+ "lineNumber": 138,
"undocument": true,
"type": {
"types": [
@@ -9740,7 +10202,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#rowsCounterDiv",
"access": null,
"description": null,
- "lineNumber": 134,
+ "lineNumber": 139,
"undocument": true,
"type": {
"types": [
@@ -9757,7 +10219,7 @@
"longname": "src/modules/rowsCounter.js~RowsCounter#initialized",
"access": null,
"description": null,
- "lineNumber": 135,
+ "lineNumber": 146,
"undocument": true,
"type": {
"types": [
@@ -9775,7 +10237,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nvar global = window;\n\nexport class StatusBar extends Feature{\n\n /**\n * Status bar UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'statusBar');\n\n // Configuration object\n var f = this.config;\n\n //id of custom container element\n this.statusBarTgtId = f.status_bar_target_id || null;\n //element containing status bar label\n this.statusBarDiv = null;\n //status bar\n this.statusBarSpan = null;\n //status bar label\n this.statusBarSpanText = null;\n //defines status bar text\n this.statusBarText = f.status_bar_text || '';\n //defines css class status bar\n this.statusBarCssClass = f.status_bar_css_class || 'status';\n //delay for status bar clearing\n this.statusBarCloseDelay = 250;\n\n //calls function before message is displayed\n this.onBeforeShowMsg = Types.isFn(f.on_before_show_msg) ?\n f.on_before_show_msg : null;\n //calls function after message is displayed\n this.onAfterShowMsg = Types.isFn(f.on_after_show_msg) ?\n f.on_after_show_msg : null;\n\n // status bar div\n this.prfxStatus = 'status_';\n // status bar label\n this.prfxStatusSpan = 'statusSpan_';\n // text preceding status bar label\n this.prfxStatusTxt = 'statusText_';\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n var tf = this.tf;\n\n //status bar container\n var statusDiv = Dom.create('div', ['id', this.prfxStatus+tf.id]);\n statusDiv.className = this.statusBarCssClass;\n\n //status bar label\n var statusSpan = Dom.create('span', ['id', this.prfxStatusSpan+tf.id]);\n //preceding text\n var statusSpanText = Dom.create('span',\n ['id', this.prfxStatusTxt+tf.id]);\n statusSpanText.appendChild(Dom.text(this.statusBarText));\n\n // target element container\n if(!this.statusBarTgtId){\n tf.setToolbar();\n }\n var targetEl = (!this.statusBarTgtId) ?\n tf.lDiv : Dom.id(this.statusBarTgtId);\n\n //default container: 'lDiv'\n if(!this.statusBarTgtId){\n statusDiv.appendChild(statusSpanText);\n statusDiv.appendChild(statusSpan);\n targetEl.appendChild(statusDiv);\n } else {\n // custom container, no need to append statusDiv\n targetEl.appendChild(statusSpanText);\n targetEl.appendChild(statusSpan);\n }\n\n this.statusBarDiv = statusDiv;\n this.statusBarSpan = statusSpan;\n this.statusBarSpanText = statusSpanText;\n\n this.initialized = true;\n }\n\n message(t=''){\n if(!this.isEnabled()){\n return;\n }\n\n if(this.onBeforeShowMsg){\n this.onBeforeShowMsg.call(null, this.tf, t);\n }\n\n var d = t==='' ? this.statusBarCloseDelay : 1;\n global.setTimeout(() => {\n this.statusBarSpan.innerHTML = t;\n if(this.onAfterShowMsg){\n this.onAfterShowMsg.call(null, this.tf, t);\n }\n }, d);\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n\n this.statusBarDiv.innerHTML = '';\n Dom.remove(this.statusBarDiv);\n this.statusBarSpan = null;\n this.statusBarSpanText = null;\n this.statusBarDiv = null;\n this.initialized = false;\n }\n\n}\n"
+ "content": "import {Feature} from './feature';\nimport Dom from '../dom';\nimport Types from '../types';\n\nlet global = window;\n\nexport class StatusBar extends Feature{\n\n /**\n * Status bar UI component\n * @param {Object} tf TableFilter instance\n */\n constructor(tf){\n super(tf, 'statusBar');\n\n // Configuration object\n let f = this.config;\n\n //id of custom container element\n this.statusBarTgtId = f.status_bar_target_id || null;\n //element containing status bar label\n this.statusBarDiv = null;\n //status bar\n this.statusBarSpan = null;\n //status bar label\n this.statusBarSpanText = null;\n //defines status bar text\n this.statusBarText = f.status_bar_text || '';\n //defines css class status bar\n this.statusBarCssClass = f.status_bar_css_class || 'status';\n //delay for status bar clearing\n this.statusBarCloseDelay = 250;\n\n //calls function before message is displayed\n this.onBeforeShowMsg = Types.isFn(f.on_before_show_msg) ?\n f.on_before_show_msg : null;\n //calls function after message is displayed\n this.onAfterShowMsg = Types.isFn(f.on_after_show_msg) ?\n f.on_after_show_msg : null;\n\n //status messages\n this.msgFilter = f.msg_filter || 'Filtering data...';\n //populating drop-downs\n this.msgPopulate = f.msg_populate || 'Populating filter...';\n //populating drop-downs\n this.msgPopulateCheckList = f.msg_populate_checklist ||\n 'Populating list...';\n //changing paging page\n this.msgChangePage = f.msg_change_page || 'Collecting paging data...';\n //clearing filters\n this.msgClear = f.msg_clear || 'Clearing filters...';\n //changing nb results/page\n this.msgChangeResults = f.msg_change_results ||\n 'Changing results per page...';\n //re-setting page\n this.msgResetPage = f.msg_reset_page || 'Re-setting page...';\n //re-setting page length\n this.msgResetPageLength = f.msg_reset_page_length ||\n 'Re-setting page length...';\n //table sorting\n this.msgSort = f.msg_sort || 'Sorting data...';\n //extensions loading\n this.msgLoadExtensions = f.msg_load_extensions ||\n 'Loading extensions...';\n //themes loading\n this.msgLoadThemes = f.msg_load_themes || 'Loading theme(s)...';\n\n // status bar div\n this.prfxStatus = 'status_';\n // status bar label\n this.prfxStatusSpan = 'statusSpan_';\n // text preceding status bar label\n this.prfxStatusTxt = 'statusText_';\n }\n\n init(){\n if(this.initialized){\n return;\n }\n\n let tf = this.tf;\n let emitter = this.emitter;\n\n //status bar container\n let statusDiv = Dom.create('div', ['id', this.prfxStatus+tf.id]);\n statusDiv.className = this.statusBarCssClass;\n\n //status bar label\n let statusSpan = Dom.create('span', ['id', this.prfxStatusSpan+tf.id]);\n //preceding text\n let statusSpanText = Dom.create('span',\n ['id', this.prfxStatusTxt+tf.id]);\n statusSpanText.appendChild(Dom.text(this.statusBarText));\n\n // target element container\n if(!this.statusBarTgtId){\n tf.setToolbar();\n }\n let targetEl = (!this.statusBarTgtId) ?\n tf.lDiv : Dom.id(this.statusBarTgtId);\n\n //default container: 'lDiv'\n if(!this.statusBarTgtId){\n statusDiv.appendChild(statusSpanText);\n statusDiv.appendChild(statusSpan);\n targetEl.appendChild(statusDiv);\n } else {\n // custom container, no need to append statusDiv\n targetEl.appendChild(statusSpanText);\n targetEl.appendChild(statusSpan);\n }\n\n this.statusBarDiv = statusDiv;\n this.statusBarSpan = statusSpan;\n this.statusBarSpanText = statusSpanText;\n\n // Subscribe to events\n emitter.on(['before-filtering'], ()=> this.message(this.msgFilter));\n emitter.on(['before-populating-filter'],\n ()=> this.message(this.msgPopulate));\n emitter.on(['before-changing-page'],\n ()=> this.message(this.msgChangePage));\n emitter.on(['before-clearing-filters'], ()=>\n this.message(this.msgClear));\n emitter.on(['before-changing-results-per-page'],\n ()=> this.message(this.msgChangeResults));\n emitter.on(['before-reset-page'], ()=> this.message(this.msgResetPage));\n emitter.on(['before-reset-page-length'],\n ()=> this.message(this.msgResetPageLength));\n emitter.on(['before-loading-extensions'],\n ()=> this.message(this.msgLoadExtensions));\n emitter.on(['before-loading-themes'],\n ()=> this.message(this.msgLoadThemes));\n\n emitter.on([\n 'after-filtering',\n 'after-populating-filter',\n 'after-changing-page',\n 'after-clearing-filters',\n 'after-changing-results-per-page',\n 'after-reset-page',\n 'after-reset-page-length',\n 'after-loading-extensions',\n 'after-loading-themes'\n ],\n ()=> this.message('')\n );\n\n this.initialized = true;\n }\n\n message(t=''){\n if(!this.isEnabled()){\n return;\n }\n\n if(this.onBeforeShowMsg){\n this.onBeforeShowMsg.call(null, this.tf, t);\n }\n\n let d = t==='' ? this.statusBarCloseDelay : 1;\n global.setTimeout(() => {\n if(!this.initialized){\n return;\n }\n this.statusBarSpan.innerHTML = t;\n if(this.onAfterShowMsg){\n this.onAfterShowMsg.call(null, this.tf, t);\n }\n }, d);\n }\n\n destroy(){\n if(!this.initialized){\n return;\n }\n\n let emitter = this.emitter;\n\n this.statusBarDiv.innerHTML = '';\n if(!this.statusBarTgtId){\n Dom.remove(this.statusBarDiv);\n }\n this.statusBarSpan = null;\n this.statusBarSpanText = null;\n this.statusBarDiv = null;\n\n // Unsubscribe to events\n emitter.off(['before-filtering'], ()=> this.message(this.msgFilter));\n emitter.off(['before-populating-filter'],\n ()=> this.message(this.msgPopulate));\n emitter.off(['before-changing-page'],\n ()=> this.message(this.msgChangePage));\n emitter.off(['before-clearing-filters'],\n ()=> this.message(this.msgClear));\n emitter.off(['before-changing-results-per-page'],\n ()=> this.message(this.msgChangeResults));\n emitter.off(['before-reset-page'], ()=>\n this.message(this.msgResetPage));\n emitter.off(['before-reset-page-length'],\n ()=> this.message(this.msgResetPageLength));\n emitter.off(['before-loading-extensions'],\n ()=> this.message(this.msgLoadExtensions));\n emitter.off(['before-loading-themes'],\n ()=> this.message(this.msgLoadThemes));\n\n emitter.off([\n 'after-filtering',\n 'after-populating-filter',\n 'after-changing-page',\n 'after-clearing-filters',\n 'after-changing-results-per-page',\n 'after-reset-page',\n 'after-reset-page-length',\n 'after-loading-extensions',\n 'after-loading-themes'\n ],\n ()=> this.message('')\n );\n\n this.initialized = false;\n }\n\n}\n"
},
{
"kind": "variable",
@@ -9993,6 +10455,193 @@
]
}
},
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgFilter",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgFilter",
+ "access": null,
+ "description": null,
+ "lineNumber": 42,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgPopulate",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgPopulate",
+ "access": null,
+ "description": null,
+ "lineNumber": 44,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgPopulateCheckList",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgPopulateCheckList",
+ "access": null,
+ "description": null,
+ "lineNumber": 46,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgChangePage",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgChangePage",
+ "access": null,
+ "description": null,
+ "lineNumber": 49,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgClear",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgClear",
+ "access": null,
+ "description": null,
+ "lineNumber": 51,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgChangeResults",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgChangeResults",
+ "access": null,
+ "description": null,
+ "lineNumber": 53,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgResetPage",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgResetPage",
+ "access": null,
+ "description": null,
+ "lineNumber": 56,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgResetPageLength",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgResetPageLength",
+ "access": null,
+ "description": null,
+ "lineNumber": 58,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgSort",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgSort",
+ "access": null,
+ "description": null,
+ "lineNumber": 61,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgLoadExtensions",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgLoadExtensions",
+ "access": null,
+ "description": null,
+ "lineNumber": 63,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "msgLoadThemes",
+ "memberof": "src/modules/statusBar.js~StatusBar",
+ "longname": "src/modules/statusBar.js~StatusBar#msgLoadThemes",
+ "access": null,
+ "description": null,
+ "lineNumber": 66,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
{
"kind": "member",
"static": false,
@@ -10002,7 +10651,7 @@
"longname": "src/modules/statusBar.js~StatusBar#prfxStatus",
"access": null,
"description": null,
- "lineNumber": 42,
+ "lineNumber": 69,
"undocument": true,
"type": {
"types": [
@@ -10019,7 +10668,7 @@
"longname": "src/modules/statusBar.js~StatusBar#prfxStatusSpan",
"access": null,
"description": null,
- "lineNumber": 44,
+ "lineNumber": 71,
"undocument": true,
"type": {
"types": [
@@ -10036,7 +10685,7 @@
"longname": "src/modules/statusBar.js~StatusBar#prfxStatusTxt",
"access": null,
"description": null,
- "lineNumber": 46,
+ "lineNumber": 73,
"undocument": true,
"type": {
"types": [
@@ -10053,7 +10702,7 @@
"longname": "src/modules/statusBar.js~StatusBar#init",
"access": null,
"description": null,
- "lineNumber": 49,
+ "lineNumber": 76,
"undocument": true,
"params": [],
"generator": false
@@ -10067,7 +10716,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarDiv",
"access": null,
"description": null,
- "lineNumber": 85,
+ "lineNumber": 113,
"undocument": true,
"type": {
"types": [
@@ -10084,7 +10733,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarSpan",
"access": null,
"description": null,
- "lineNumber": 86,
+ "lineNumber": 114,
"undocument": true,
"type": {
"types": [
@@ -10101,7 +10750,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarSpanText",
"access": null,
"description": null,
- "lineNumber": 87,
+ "lineNumber": 115,
"undocument": true,
"type": {
"types": [
@@ -10118,7 +10767,7 @@
"longname": "src/modules/statusBar.js~StatusBar#initialized",
"access": null,
"description": null,
- "lineNumber": 89,
+ "lineNumber": 149,
"undocument": true,
"type": {
"types": [
@@ -10135,7 +10784,7 @@
"longname": "src/modules/statusBar.js~StatusBar#message",
"access": null,
"description": null,
- "lineNumber": 92,
+ "lineNumber": 152,
"undocument": true,
"params": [
{
@@ -10159,7 +10808,7 @@
"longname": "src/modules/statusBar.js~StatusBar#destroy",
"access": null,
"description": null,
- "lineNumber": 110,
+ "lineNumber": 173,
"undocument": true,
"params": [],
"generator": false
@@ -10173,7 +10822,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarSpan",
"access": null,
"description": null,
- "lineNumber": 117,
+ "lineNumber": 184,
"undocument": true,
"type": {
"types": [
@@ -10190,7 +10839,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarSpanText",
"access": null,
"description": null,
- "lineNumber": 118,
+ "lineNumber": 185,
"undocument": true,
"type": {
"types": [
@@ -10207,7 +10856,7 @@
"longname": "src/modules/statusBar.js~StatusBar#statusBarDiv",
"access": null,
"description": null,
- "lineNumber": 119,
+ "lineNumber": 186,
"undocument": true,
"type": {
"types": [
@@ -10224,7 +10873,7 @@
"longname": "src/modules/statusBar.js~StatusBar#initialized",
"access": null,
"description": null,
- "lineNumber": 120,
+ "lineNumber": 221,
"undocument": true,
"type": {
"types": [
@@ -10242,7 +10891,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Cookie from '../cookie';\n\nexport class Store{\n\n /**\n * Store, persistence manager\n * @param {Object} tf TableFilter instance\n *\n * TODO: use localStorage and fallback to cookie persistence\n */\n constructor(tf) {\n var f = tf.config();\n\n this.duration = !isNaN(f.set_cookie_duration) ?\n parseInt(f.set_cookie_duration, 10) : 100000;\n\n this.tf = tf;\n }\n\n /**\n * Store filters' values in cookie\n * @param {String} cookie name\n */\n saveFilterValues(name){\n var tf = this.tf;\n var fltValues = [];\n //store filters' values\n for(var i=0; i this.saveFilterValues(this.tf.fltsValuesCookie));\n this.emitter.on(['after-clearing-filters'], ()=> this.clearCookies());\n }\n\n /**\n * Store filters' values in cookie\n * @param {String} cookie name\n */\n saveFilterValues(name){\n let tf = this.tf;\n let fltValues = [];\n\n if(!tf.rememberGridValues){\n return;\n }\n\n //store filters' values\n for(let i=0; i this.saveFilterValues(this.tf.fltsValuesCookie));\n this.emitter.off(['after-clearing-filters'], ()=> this.clearCookies());\n }\n}\n"
},
{
"kind": "class",
@@ -10256,7 +10905,7 @@
"importPath": "tablefilter/src/modules/store.js",
"importStyle": "{Store}",
"description": null,
- "lineNumber": 3,
+ "lineNumber": 4,
"undocument": true,
"interface": false
},
@@ -10269,7 +10918,7 @@
"longname": "src/modules/store.js~Store#constructor",
"access": null,
"description": "Store, persistence manager",
- "lineNumber": 11,
+ "lineNumber": 12,
"params": [
{
"nullable": null,
@@ -10293,7 +10942,7 @@
"longname": "src/modules/store.js~Store#duration",
"access": null,
"description": null,
- "lineNumber": 14,
+ "lineNumber": 15,
"undocument": true,
"type": {
"types": [
@@ -10310,7 +10959,24 @@
"longname": "src/modules/store.js~Store#tf",
"access": null,
"description": null,
- "lineNumber": 17,
+ "lineNumber": 18,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "member",
+ "static": false,
+ "variation": null,
+ "name": "emitter",
+ "memberof": "src/modules/store.js~Store",
+ "longname": "src/modules/store.js~Store#emitter",
+ "access": null,
+ "description": null,
+ "lineNumber": 19,
"undocument": true,
"type": {
"types": [
@@ -10318,6 +10984,20 @@
]
}
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "init",
+ "memberof": "src/modules/store.js~Store",
+ "longname": "src/modules/store.js~Store#init",
+ "access": null,
+ "description": null,
+ "lineNumber": 22,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "method",
"static": false,
@@ -10327,7 +11007,7 @@
"longname": "src/modules/store.js~Store#saveFilterValues",
"access": null,
"description": "Store filters' values in cookie",
- "lineNumber": 24,
+ "lineNumber": 32,
"params": [
{
"nullable": null,
@@ -10351,7 +11031,7 @@
"longname": "src/modules/store.js~Store#getFilterValues",
"access": null,
"description": "Retrieve filters' values from cookie",
- "lineNumber": 51,
+ "lineNumber": 68,
"params": [
{
"nullable": null,
@@ -10383,7 +11063,7 @@
"longname": "src/modules/store.js~Store#savePageNb",
"access": null,
"description": "Store page number in cookie",
- "lineNumber": 62,
+ "lineNumber": 79,
"params": [
{
"nullable": null,
@@ -10407,7 +11087,7 @@
"longname": "src/modules/store.js~Store#getPageNb",
"access": null,
"description": "Retrieve page number from cookie",
- "lineNumber": 75,
+ "lineNumber": 95,
"params": [
{
"nullable": null,
@@ -10439,7 +11119,7 @@
"longname": "src/modules/store.js~Store#savePageLength",
"access": null,
"description": "Store page length in cookie",
- "lineNumber": 83,
+ "lineNumber": 103,
"params": [
{
"nullable": null,
@@ -10463,7 +11143,7 @@
"longname": "src/modules/store.js~Store#getPageLength",
"access": null,
"description": "Retrieve page length from cookie",
- "lineNumber": 96,
+ "lineNumber": 119,
"params": [
{
"nullable": null,
@@ -10486,6 +11166,33 @@
},
"generator": false
},
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "clearCookies",
+ "memberof": "src/modules/store.js~Store",
+ "longname": "src/modules/store.js~Store#clearCookies",
+ "access": null,
+ "description": "Remove all cookies",
+ "lineNumber": 126,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "destroy",
+ "memberof": "src/modules/store.js~Store",
+ "longname": "src/modules/store.js~Store#destroy",
+ "access": null,
+ "description": null,
+ "lineNumber": 132,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
{
"kind": "file",
"static": true,
@@ -10520,7 +11227,7 @@
"access": null,
"description": null,
"lineNumber": 1,
- "content": "import Event from './event';\nimport Dom from './dom';\nimport Str from './string';\nimport Cookie from './cookie';\nimport Types from './types';\nimport Arr from './array';\nimport DateHelper from './date';\nimport Helpers from './helpers';\n\n// Features\nimport {Store} from './modules/store';\nimport {GridLayout} from './modules/gridLayout';\nimport {Loader} from './modules/loader';\nimport {HighlightKeyword} from './modules/highlightKeywords';\nimport {PopupFilter} from './modules/popupFilter';\nimport {Dropdown} from './modules/dropdown';\nimport {CheckList} from './modules/checkList';\nimport {RowsCounter} from './modules/rowsCounter';\nimport {StatusBar} from './modules/statusBar';\nimport {Paging} from './modules/paging';\nimport {ClearButton} from './modules/clearButton';\nimport {Help} from './modules/help';\nimport {AlternateRows} from './modules/alternateRows';\nimport {NoResults} from './modules/noResults';\n\nlet global = window,\n doc = global.document;\n\nexport class TableFilter{\n\n /**\n * TableFilter object constructor\n * requires `table` or `id` arguments, `row` and `configuration` optional\n * @param {DOMElement} table Table DOM element\n * @param {String} id Table id\n * @param {Number} row index indicating the 1st row\n * @param {Object} configuration object\n */\n constructor(...args) {\n if(args.length === 0){ return; }\n\n this.id = null;\n this.version = '{VERSION}';\n this.year = new Date().getFullYear();\n this.tbl = null;\n this.startRow = null;\n this.refRow = null;\n this.headersRow = null;\n this.cfg = {};\n this.nbFilterableRows = null;\n this.nbRows = null;\n this.nbCells = null;\n this._hasGrid = false;\n\n // TODO: use for-of with babel plug-in\n args.forEach((arg)=> {\n let argtype = typeof arg;\n if(argtype === 'object' && arg && arg.nodeName === 'TABLE'){\n this.tbl = arg;\n this.id = arg.id || `tf_${new Date().getTime()}_`;\n } else if(argtype === 'string'){\n this.id = arg;\n this.tbl = Dom.id(arg);\n } else if(argtype === 'number'){\n this.startRow = arg;\n } else if(argtype === 'object'){\n this.cfg = arg;\n }\n });\n\n if(!this.tbl || this.tbl.nodeName != 'TABLE' || this.getRowsNb() === 0){\n throw new Error(\n 'Could not instantiate TableFilter: HTML table not found.');\n }\n\n // configuration object\n let f = this.cfg;\n\n //Start row et cols nb\n this.refRow = this.startRow === null ? 2 : (this.startRow+1);\n try{ this.nbCells = this.getCellsNb(this.refRow); }\n catch(e){ this.nbCells = this.getCellsNb(0); }\n\n //default script base path\n this.basePath = f.base_path || 'tablefilter/';\n\n /*** filter types ***/\n this.fltTypeInp = 'input';\n this.fltTypeSlc = 'select';\n this.fltTypeMulti = 'multiple';\n this.fltTypeCheckList = 'checklist';\n this.fltTypeNone = 'none';\n\n /*** filters' grid properties ***/\n\n //enables/disables filter grid\n this.fltGrid = f.grid === false ? false : true;\n\n //enables/disables grid layout (fixed headers)\n this.gridLayout = Boolean(f.grid_layout);\n\n this.filtersRowIndex = isNaN(f.filters_row_index) ?\n 0 : f.filters_row_index;\n this.headersRow = isNaN(f.headers_row_index) ?\n (this.filtersRowIndex === 0 ? 1 : 0) : f.headers_row_index;\n\n if(this.gridLayout){\n if(this.headersRow > 1){\n this.filtersRowIndex = this.headersRow+1;\n } else {\n this.filtersRowIndex = 1;\n this.headersRow = 0;\n }\n }\n\n //defines tag of the cells containing filters (td/th)\n this.fltCellTag = f.filters_cell_tag!=='th' ||\n f.filters_cell_tag!=='td' ? 'td' : f.filters_cell_tag;\n\n //stores filters ids\n this.fltIds = [];\n //stores filters DOM elements\n this.fltElms = [];\n //stores filters values\n this.searchArgs = null;\n //stores valid rows indexes (rows visible upon filtering)\n this.validRowsIndex = null;\n //stores filters row element\n this.fltGridEl = null;\n //is first load boolean\n this.isFirstLoad = true;\n //container div for paging elements, reset btn etc.\n this.infDiv = null;\n //div for rows counter\n this.lDiv = null;\n //div for reset button and results per page select\n this.rDiv = null;\n //div for paging elements\n this.mDiv = null;\n\n //defines css class for div containing paging elements, rows counter etc\n this.infDivCssClass = f.inf_div_css_class || 'inf';\n //defines css class for left div\n this.lDivCssClass = f.left_div_css_class || 'ldiv';\n //defines css class for right div\n this.rDivCssClass = f.right_div_css_class || 'rdiv';\n //defines css class for mid div\n this.mDivCssClass = f.middle_div_css_class || 'mdiv';\n //table container div css class\n this.contDivCssClass = f.content_div_css_class || 'cont';\n\n /*** filters' grid appearance ***/\n //stylesheet file\n this.stylePath = f.style_path || this.basePath + 'style/';\n this.stylesheet = f.stylesheet || this.stylePath+'tablefilter.css';\n this.stylesheetId = this.id + '_style';\n //defines css class for filters row\n this.fltsRowCssClass = f.flts_row_css_class || 'fltrow';\n //enables/disables icons (paging, reset button)\n this.enableIcons = f.enable_icons===false ? false : true;\n //enables/disbles rows alternating bg colors\n this.alternateRows = Boolean(f.alternate_rows);\n //defines widths of columns\n this.hasColWidths = Types.isArray(f.col_widths);\n this.colWidths = this.hasColWidths ? f.col_widths : null;\n //defines css class for filters\n this.fltCssClass = f.flt_css_class || 'flt';\n //defines css class for multiple selects filters\n this.fltMultiCssClass = f.flt_multi_css_class || 'flt_multi';\n //defines css class for filters\n this.fltSmallCssClass = f.flt_small_css_class || 'flt_s';\n //defines css class for single-filter\n this.singleFltCssClass = f.single_flt_css_class || 'single_flt';\n\n /*** filters' grid behaviours ***/\n //enables/disables enter key\n this.enterKey = f.enter_key===false ? false : true;\n //calls function before filtering starts\n this.onBeforeFilter = Types.isFn(f.on_before_filter) ?\n f.on_before_filter : null;\n //calls function after filtering\n this.onAfterFilter = Types.isFn(f.on_after_filter) ?\n f.on_after_filter : null;\n //enables/disables case sensitivity\n this.caseSensitive = Boolean(f.case_sensitive);\n //has exact match per column\n this.hasExactMatchByCol = Types.isArray(f.columns_exact_match);\n this.exactMatchByCol = this.hasExactMatchByCol ?\n f.columns_exact_match : [];\n //enables/disbles exact match for search\n this.exactMatch = Boolean(f.exact_match);\n //refreshes drop-down lists upon validation\n this.linkedFilters = Boolean(f.linked_filters);\n //wheter excluded options are disabled\n this.disableExcludedOptions = Boolean(f.disable_excluded_options);\n //stores active filter element\n this.activeFlt = null;\n //id of active filter\n this.activeFilterId = null;\n //enables always visible rows\n this.hasVisibleRows = Boolean(f.rows_always_visible);\n //array containing always visible rows\n this.visibleRows = this.hasVisibleRows ? f.rows_always_visible : [];\n //enables/disables external filters generation\n this.isExternalFlt = Boolean(f.external_flt_grid);\n //array containing ids of external elements containing filters\n this.externalFltTgtIds = f.external_flt_grid_ids || null;\n //stores filters elements if isExternalFlt is true\n this.externalFltEls = [];\n //delays any filtering process if loader true\n this.execDelay = !isNaN(f.exec_delay) ? parseInt(f.exec_delay,10) : 100;\n //calls function when filters grid loaded\n this.onFiltersLoaded = Types.isFn(f.on_filters_loaded) ?\n f.on_filters_loaded : null;\n //enables/disables single filter search\n this.singleSearchFlt = Boolean(f.single_filter);\n //calls function after row is validated\n this.onRowValidated = Types.isFn(f.on_row_validated) ?\n f.on_row_validated : null;\n //array defining columns for customCellData event\n this.customCellDataCols = f.custom_cell_data_cols ?\n f.custom_cell_data_cols : [];\n //calls custom function for retrieving cell data\n this.customCellData = Types.isFn(f.custom_cell_data) ?\n f.custom_cell_data : null;\n //input watermark text array\n this.watermark = f.watermark || '';\n this.isWatermarkArray = Types.isArray(this.watermark);\n //id of toolbar container element\n this.toolBarTgtId = f.toolbar_target_id || null;\n //enables/disables help div\n this.help = Types.isUndef(f.help_instructions) ?\n undefined : Boolean(f.help_instructions);\n //popup filters\n this.popupFilters = Boolean(f.popup_filters);\n //active columns color\n this.markActiveColumns = Boolean(f.mark_active_columns);\n //defines css class for active column header\n this.activeColumnsCssClass = f.active_columns_css_class ||\n 'activeHeader';\n //calls function before active column header is marked\n this.onBeforeActiveColumn = Types.isFn(f.on_before_active_column) ?\n f.on_before_active_column : null;\n //calls function after active column header is marked\n this.onAfterActiveColumn = Types.isFn(f.on_after_active_column) ?\n f.on_after_active_column : null;\n\n /*** select filter's customisation and behaviours ***/\n //defines 1st option text\n this.displayAllText = f.display_all_text || 'Clear';\n //enables/disables empty option in combo-box filters\n this.enableEmptyOption = Boolean(f.enable_empty_option);\n //defines empty option text\n this.emptyText = f.empty_text || '(Empty)';\n //enables/disables non empty option in combo-box filters\n this.enableNonEmptyOption = Boolean(f.enable_non_empty_option);\n //defines empty option text\n this.nonEmptyText = f.non_empty_text || '(Non empty)';\n //enables/disables onChange event on combo-box\n this.onSlcChange = f.on_change===false ? false : true;\n //enables/disables select options sorting\n this.sortSlc = f.sort_select===false ? false : true;\n //enables/disables ascending numeric options sorting\n this.isSortNumAsc = Boolean(f.sort_num_asc);\n this.sortNumAsc = this.isSortNumAsc ? f.sort_num_asc : null;\n //enables/disables descending numeric options sorting\n this.isSortNumDesc = Boolean(f.sort_num_desc);\n this.sortNumDesc = this.isSortNumDesc ? f.sort_num_desc : null;\n //Select filters are populated on demand\n this.loadFltOnDemand = Boolean(f.load_filters_on_demand);\n this.hasCustomOptions = Types.isObj(f.custom_options);\n this.customOptions = f.custom_options;\n\n /*** Filter operators ***/\n this.rgxOperator = f.regexp_operator || 'rgx:';\n this.emOperator = f.empty_operator || '[empty]';\n this.nmOperator = f.nonempty_operator || '[nonempty]';\n this.orOperator = f.or_operator || '||';\n this.anOperator = f.and_operator || '&&';\n this.grOperator = f.greater_operator || '>';\n this.lwOperator = f.lower_operator || '<';\n this.leOperator = f.lower_equal_operator || '<=';\n this.geOperator = f.greater_equal_operator || '>=';\n this.dfOperator = f.different_operator || '!';\n this.lkOperator = f.like_operator || '*';\n this.eqOperator = f.equal_operator || '=';\n this.stOperator = f.start_with_operator || '{';\n this.enOperator = f.end_with_operator || '}';\n this.curExp = f.cur_exp || '^[¥£€$]';\n this.separator = f.separator || ',';\n\n /*** rows counter ***/\n //show/hides rows counter\n this.rowsCounter = Boolean(f.rows_counter);\n\n /*** status bar ***/\n //show/hides status bar\n this.statusBar = Boolean(f.status_bar);\n\n /*** loader ***/\n //enables/disables loader/spinner indicator\n this.loader = Boolean(f.loader);\n\n /*** validation - reset buttons/links ***/\n //show/hides filter's validation button\n this.displayBtn = Boolean(f.btn);\n //defines validation button text\n this.btnText = f.btn_text || (!this.enableIcons ? 'Go' : '');\n //defines css class for validation button\n this.btnCssClass = f.btn_css_class ||\n (!this.enableIcons ? 'btnflt' : 'btnflt_icon');\n //show/hides reset link\n this.btnReset = Boolean(f.btn_reset);\n //defines css class for reset button\n this.btnResetCssClass = f.btn_reset_css_class || 'reset';\n //callback function before filters are cleared\n this.onBeforeReset = Types.isFn(f.on_before_reset) ?\n f.on_before_reset : null;\n //callback function after filters are cleared\n this.onAfterReset = Types.isFn(f.on_after_reset) ?\n f.on_after_reset : null;\n\n /*** paging ***/\n //enables/disables table paging\n this.paging = Boolean(f.paging);\n this.nbVisibleRows = 0; //nb visible rows\n this.nbHiddenRows = 0; //nb hidden rows\n\n /*** autofilter on typing ***/\n //enables/disables auto filtering, table is filtered when user stops\n //typing\n this.autoFilter = Boolean(f.auto_filter);\n //onkeyup delay timer (msecs)\n this.autoFilterDelay = !isNaN(f.auto_filter_delay) ?\n f.auto_filter_delay : 900;\n //typing indicator\n this.isUserTyping = null;\n this.autoFilterTimer = null;\n\n /*** keyword highlighting ***/\n //enables/disables keyword highlighting\n this.highlightKeywords = Boolean(f.highlight_keywords);\n\n /*** No results feature ***/\n this.noResults = Types.isObj(f.no_results_message) ||\n Boolean(f.no_results_message);\n\n /*** data types ***/\n //defines default date type (european DMY)\n this.defaultDateType = f.default_date_type || 'DMY';\n //defines default thousands separator\n //US = ',' EU = '.'\n this.thousandsSeparator = f.thousands_separator || ',';\n //defines default decimal separator\n //US & javascript = '.' EU = ','\n this.decimalSeparator = f.decimal_separator || '.';\n //enables number format per column\n this.hasColNbFormat = Types.isArray(f.col_number_format);\n //array containing columns nb formats\n this.colNbFormat = this.hasColNbFormat ? f.col_number_format : null;\n //enables date type per column\n this.hasColDateType = Types.isArray(f.col_date_type);\n //array containing columns date type\n this.colDateType = this.hasColDateType ? f.col_date_type : null;\n\n /*** status messages ***/\n //filtering\n this.msgFilter = f.msg_filter || 'Filtering data...';\n //populating drop-downs\n this.msgPopulate = f.msg_populate || 'Populating filter...';\n //populating drop-downs\n this.msgPopulateCheckList = f.msg_populate_checklist ||\n 'Populating list...';\n //changing paging page\n this.msgChangePage = f.msg_change_page || 'Collecting paging data...';\n //clearing filters\n this.msgClear = f.msg_clear || 'Clearing filters...';\n //changing nb results/page\n this.msgChangeResults = f.msg_change_results ||\n 'Changing results per page...';\n //re-setting grid values\n this.msgResetValues = f.msg_reset_grid_values ||\n 'Re-setting filters values...';\n //re-setting page\n this.msgResetPage = f.msg_reset_page || 'Re-setting page...';\n //re-setting page length\n this.msgResetPageLength = f.msg_reset_page_length ||\n 'Re-setting page length...';\n //table sorting\n this.msgSort = f.msg_sort || 'Sorting data...';\n //extensions loading\n this.msgLoadExtensions = f.msg_load_extensions ||\n 'Loading extensions...';\n //themes loading\n this.msgLoadThemes = f.msg_load_themes || 'Loading theme(s)...';\n\n /*** ids prefixes ***/\n //css class name added to table\n this.prfxTf = 'TF';\n //filters (inputs - selects)\n this.prfxFlt = 'flt';\n //validation button\n this.prfxValButton = 'btn';\n //container div for paging elements, rows counter etc.\n this.prfxInfDiv = 'inf_';\n //left div\n this.prfxLDiv = 'ldiv_';\n //right div\n this.prfxRDiv = 'rdiv_';\n //middle div\n this.prfxMDiv = 'mdiv_';\n //filter values cookie\n this.prfxCookieFltsValues = 'tf_flts_';\n //page nb cookie\n this.prfxCookiePageNb = 'tf_pgnb_';\n //page length cookie\n this.prfxCookiePageLen = 'tf_pglen_';\n\n /*** cookies ***/\n this.hasStoredValues = false;\n //remembers filters values on page load\n this.rememberGridValues = Boolean(f.remember_grid_values);\n //cookie storing filter values\n this.fltsValuesCookie = this.prfxCookieFltsValues + this.id;\n //remembers page nb on page load\n this.rememberPageNb = this.paging && f.remember_page_number;\n //cookie storing page nb\n this.pgNbCookie = this.prfxCookiePageNb + this.id;\n //remembers page length on page load\n this.rememberPageLen = this.paging && f.remember_page_length;\n //cookie storing page length\n this.pgLenCookie = this.prfxCookiePageLen + this.id;\n\n /*** extensions ***/\n //imports external script\n this.extensions = f.extensions;\n this.hasExtensions = Types.isArray(this.extensions);\n\n /*** themes ***/\n this.enableDefaultTheme = Boolean(f.enable_default_theme);\n //imports themes\n this.hasThemes = (this.enableDefaultTheme || Types.isArray(f.themes));\n this.themes = f.themes || [];\n //themes path\n this.themesPath = f.themes_path || this.stylePath + 'themes/';\n\n // Features registry\n this.Mod = {};\n\n // Extensions registry\n this.ExtRegistry = {};\n\n /*** TF events ***/\n this.Evt = {\n name: {\n filter: 'Filter',\n dropdown: 'DropDown',\n checklist: 'CheckList',\n changepage: 'ChangePage',\n clear: 'Clear',\n changeresultsperpage: 'ChangeResults',\n resetvalues: 'ResetValues',\n resetpage: 'ResetPage',\n resetpagelength: 'ResetPageLength',\n loadextensions: 'LoadExtensions',\n loadthemes: 'LoadThemes'\n },\n\n // Detect key\n detectKey(e) {\n if(!this.enterKey){ return; }\n let _ev = e || global.event;\n if(_ev){\n let key = Event.keyCode(_ev);\n if(key===13){\n this.filter();\n Event.cancel(_ev);\n Event.stop(_ev);\n } else {\n this.isUserTyping = true;\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n }\n }\n },\n // if auto-filter on, detect user is typing and filter columns\n onKeyUp(e) {\n if(!this.autoFilter){\n return;\n }\n let _ev = e || global.event;\n let key = Event.keyCode(_ev);\n this.isUserTyping = false;\n\n function filter() {\n /*jshint validthis:true */\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n if(!this.isUserTyping){\n this.filter();\n this.isUserTyping = null;\n }\n }\n\n if(key!==13 && key!==9 && key!==27 && key!==38 && key!==40) {\n if(this.autoFilterTimer === null){\n this.autoFilterTimer = global.setInterval(\n filter.bind(this), this.autoFilterDelay);\n }\n } else {\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n }\n },\n // if auto-filter on, detect user is typing\n onKeyDown() {\n if(!this.autoFilter) { return; }\n this.isUserTyping = true;\n },\n // if auto-filter on, clear interval on filter blur\n onInpBlur() {\n if(this.autoFilter){\n this.isUserTyping = false;\n global.clearInterval(this.autoFilterTimer);\n }\n // TODO: hack to prevent ezEditTable enter key event hijaking.\n // Needs to be fixed in the vendor's library\n if(this.hasExtension('advancedGrid')){\n var advGrid = this.extension('advancedGrid');\n var ezEditTable = advGrid._ezEditTable;\n if(advGrid.cfg.editable){\n ezEditTable.Editable.Set();\n }\n if(advGrid.cfg.selection){\n ezEditTable.Selection.Set();\n }\n }\n },\n // set focused text-box filter as active\n onInpFocus(e) {\n let _ev = e || global.event;\n let elm = Event.target(_ev);\n this.activeFilterId = elm.getAttribute('id');\n this.activeFlt = Dom.id(this.activeFilterId);\n if(this.popupFilters){\n Event.cancel(_ev);\n Event.stop(_ev);\n }\n // TODO: hack to prevent ezEditTable enter key event hijaking.\n // Needs to be fixed in the vendor's library\n if(this.hasExtension('advancedGrid')){\n var advGrid = this.extension('advancedGrid');\n var ezEditTable = advGrid._ezEditTable;\n if(advGrid.cfg.editable){\n ezEditTable.Editable.Remove();\n }\n if(advGrid.cfg.selection){\n ezEditTable.Selection.Remove();\n }\n }\n },\n // set focused drop-down filter as active\n onSlcFocus(e) {\n let _ev = e || global.event;\n let elm = Event.target(_ev);\n this.activeFilterId = elm.getAttribute('id');\n this.activeFlt = Dom.id(this.activeFilterId);\n // select is populated when element has focus\n if(this.loadFltOnDemand && elm.getAttribute('filled') === '0'){\n let ct = elm.getAttribute('ct');\n this.Mod.dropdown._build(ct);\n }\n if(this.popupFilters){\n Event.cancel(_ev);\n Event.stop(_ev);\n }\n },\n // filter columns on drop-down filter change\n onSlcChange(e) {\n if(!this.activeFlt){ return; }\n let _ev = e || global.event;\n if(this.popupFilters){ Event.stop(_ev); }\n if(this.onSlcChange){ this.filter(); }\n },\n // fill checklist filter on click if required\n onCheckListClick(e) {\n let _ev = e || global.event;\n let elm = Event.target(_ev);\n if(this.loadFltOnDemand && elm.getAttribute('filled') === '0'){\n let ct = elm.getAttribute('ct');\n this.Mod.checkList._build(ct);\n this.Mod.checkList.checkListDiv[ct].onclick = null;\n this.Mod.checkList.checkListDiv[ct].title = '';\n }\n }\n };\n }\n\n /**\n * Initialise filtering grid bar behaviours and layout\n *\n * TODO: decompose in smaller methods\n */\n init(){\n if(this._hasGrid){\n return;\n }\n if(!this.tbl){\n this.tbl = Dom.id(this.id);\n }\n if(this.gridLayout){\n this.refRow = this.startRow===null ? 0 : this.startRow;\n }\n if(this.popupFilters &&\n ((this.filtersRowIndex === 0 && this.headersRow === 1) ||\n this.gridLayout)){\n this.headersRow = 0;\n }\n\n let Mod = this.Mod;\n let n = this.singleSearchFlt ? 1 : this.nbCells,\n inpclass;\n\n //loads stylesheet if not imported\n this.import(this.stylesheetId, this.stylesheet, null, 'link');\n\n //loads theme\n if(this.hasThemes){ this._loadThemes(); }\n\n if(this.rememberGridValues || this.rememberPageNb ||\n this.rememberPageLen){\n Mod.store = new Store(this);\n }\n\n if(this.gridLayout){\n Mod.gridLayout = new GridLayout(this);\n Mod.gridLayout.init();\n }\n\n if(this.loader){\n if(!Mod.loader){\n Mod.loader = new Loader(this);\n }\n Mod.loader.init();\n }\n\n if(this.highlightKeywords){\n Mod.highlightKeyword = new HighlightKeyword(this);\n }\n\n if(this.popupFilters){\n if(!Mod.popupFilter){\n Mod.popupFilter = new PopupFilter(this);\n }\n Mod.popupFilter.init();\n }\n\n //filters grid is not generated\n if(!this.fltGrid){\n this.refRow = this.refRow-1;\n if(this.gridLayout){\n this.refRow = 0;\n }\n this.nbFilterableRows = this.getRowsNb();\n this.nbVisibleRows = this.nbFilterableRows;\n this.nbRows = this.nbFilterableRows + this.refRow;\n } else {\n if(this.isFirstLoad){\n let fltrow;\n if(!this.gridLayout){\n let thead = Dom.tag(this.tbl, 'thead');\n if(thead.length > 0){\n fltrow = thead[0].insertRow(this.filtersRowIndex);\n } else {\n fltrow = this.tbl.insertRow(this.filtersRowIndex);\n }\n\n if(this.headersRow > 1 &&\n this.filtersRowIndex <= this.headersRow &&\n !this.popupFilters){\n this.headersRow++;\n }\n if(this.popupFilters){\n this.headersRow++;\n }\n\n fltrow.className = this.fltsRowCssClass;\n\n if(this.isExternalFlt || this.popupFilters){\n fltrow.style.display = 'none';\n }\n }\n\n this.nbFilterableRows = this.getRowsNb();\n this.nbVisibleRows = this.nbFilterableRows;\n this.nbRows = this.tbl.rows.length;\n\n for(let i=0; i this.filter());\n }//if\n\n }// for i\n\n } else {\n this._resetGrid();\n }//if isFirstLoad\n\n }//if this.fltGrid\n\n /* Features */\n if(this.hasVisibleRows){\n this.enforceVisibility();\n }\n if(this.rowsCounter){\n Mod.rowsCounter = new RowsCounter(this);\n Mod.rowsCounter.init();\n }\n if(this.statusBar){\n Mod.statusBar = new StatusBar(this);\n Mod.statusBar.init();\n }\n if(this.paging || Mod.paging){\n if(!Mod.paging){\n Mod.paging = new Paging(this);\n Mod.paging.init();\n }\n Mod.paging.reset();\n }\n if(this.btnReset){\n Mod.clearButton = new ClearButton(this);\n Mod.clearButton.init();\n }\n if(this.help){\n if(!Mod.help){\n Mod.help = new Help(this);\n }\n Mod.help.init();\n }\n if(this.hasColWidths && !this.gridLayout){\n this.setColWidths();\n }\n if(this.alternateRows){\n Mod.alternateRows = new AlternateRows(this);\n Mod.alternateRows.init();\n }\n if(this.noResults){\n if(!Mod.noResults){\n Mod.noResults = new NoResults(this);\n }\n Mod.noResults.init();\n }\n\n this.isFirstLoad = false;\n this._hasGrid = true;\n\n if(this.rememberGridValues || this.rememberPageLen ||\n this.rememberPageNb){\n this.resetValues();\n }\n\n //TF css class is added to table\n if(!this.gridLayout){\n Dom.addClass(this.tbl, this.prfxTf);\n }\n\n if(this.loader){\n Mod.loader.show('none');\n }\n\n /* Loads extensions */\n if(this.hasExtensions){\n this.initExtensions();\n }\n\n if(this.onFiltersLoaded){\n this.onFiltersLoaded.call(null, this);\n }\n }\n\n /**\n * Manages state messages\n * @param {String} evt Event name\n * @param {Object} cfg Config object\n */\n EvtManager(evt,\n cfg={ slcIndex: null, slcExternal: false, slcId: null, pgIndex: null }){\n let slcIndex = cfg.slcIndex;\n let slcExternal = cfg.slcExternal;\n let slcId = cfg.slcId;\n let pgIndex = cfg.pgIndex;\n let cpt = this.Mod;\n\n function efx(){\n /*jshint validthis:true */\n let ev = this.Evt.name;\n\n switch(evt){\n case ev.filter:\n this._filter();\n break;\n case ev.dropdown:\n if(this.linkedFilters){\n cpt.dropdown._build(slcIndex, true);\n } else {\n cpt.dropdown._build(\n slcIndex, false, slcExternal, slcId);\n }\n break;\n case ev.checklist:\n cpt.checkList._build(slcIndex, slcExternal, slcId);\n break;\n case ev.changepage:\n cpt.paging._changePage(pgIndex);\n break;\n case ev.clear:\n this._clearFilters();\n this._filter();\n break;\n case ev.changeresultsperpage:\n cpt.paging._changeResultsPerPage();\n break;\n case ev.resetvalues:\n this._resetValues();\n this._filter();\n break;\n case ev.resetpage:\n cpt.paging._resetPage(this.pgNbCookie);\n break;\n case ev.resetpagelength:\n cpt.paging._resetPageLength(this.pgLenCookie);\n break;\n case ev.loadextensions:\n this._loadExtensions();\n break;\n case ev.loadthemes:\n this._loadThemes();\n break;\n }\n if(this.statusBar){\n cpt.statusBar.message('');\n }\n if(this.loader){\n cpt.loader.show('none');\n }\n }\n\n if(!this.loader && !this.statusBar && !this.linkedFilters) {\n efx.call(this);\n } else {\n if(this.loader){\n cpt.loader.show('');\n }\n if(this.statusBar){\n cpt.statusBar.message(this['msg'+evt]);\n }\n global.setTimeout(efx.bind(this), this.execDelay);\n }\n }\n\n /**\n * Return a feature instance for a given name\n * @param {String} name Name of the feature\n * @return {Object}\n */\n feature(name){\n return this.Mod[name];\n }\n\n /**\n * Initialise all the extensions defined in the configuration object\n */\n initExtensions(){\n let exts = this.extensions;\n\n for(let i=0, len=exts.length; i {\n let inst = new mod.default(this, ext);\n inst.init();\n this.ExtRegistry[name] = inst;\n });\n }\n\n /**\n * Get an extension instance\n * @param {String} name Name of the extension\n * @return {Object} Extension instance\n */\n extension(name){\n return this.ExtRegistry[name];\n }\n\n /**\n * Check passed extension name exists\n * @param {String} name Name of the extension\n * @return {Boolean}\n */\n hasExtension(name){\n return !Types.isEmpty(this.ExtRegistry[name]);\n }\n\n /**\n * Destroy all the extensions defined in the configuration object\n */\n destroyExtensions(){\n let exts = this.extensions;\n\n for(let i=0, len=exts.length; i ';\n\n //Paging buttons\n this.btnPrevPageHtml = ' ';\n this.btnNextPageHtml = ' ';\n this.btnFirstPageHtml = ' ';\n this.btnLastPageHtml = ' ';\n\n //Loader\n this.loader = true;\n this.loaderHtml = '
';\n this.loaderText = null;\n }\n\n /**\n * Return stylesheet DOM element for a given theme name\n * @return {DOMElement} stylesheet element\n */\n getStylesheet(name='default'){\n return Dom.id(this.prfxTf + name);\n }\n\n /**\n * Destroy filter grid\n */\n destroy(){\n if(!this._hasGrid){\n return;\n }\n let rows = this.tbl.rows,\n Mod = this.Mod;\n\n this._clearFilters();\n\n if(this.isExternalFlt && !this.popupFilters){\n this.removeExternalFlts();\n }\n if(this.infDiv){\n this.removeToolbar();\n }\n if(this.highlightKeywords){\n Mod.highlightKeyword.unhighlightAll();\n }\n if(this.markActiveColumns){\n this.clearActiveColumns();\n }\n if(this.hasExtensions){\n this.destroyExtensions();\n }\n\n for(let j=this.refRow; j 0){\n [].forEach.call(captions, function(elm) {\n tbl.removeChild(elm);\n });\n }\n }\n\n /**\n * Remove all the external column filters\n */\n removeExternalFlts(){\n if(!this.isExternalFlt || !this.externalFltTgtIds){\n return;\n }\n let ids = this.externalFltTgtIds,\n len = ids.length;\n for(let ct=0; ct= dte2;\n }\n // greater date\n else if(isGDate){\n dte2 = DateHelper.format(sA.replace(re_g,''), dtType);\n occurence = dte1 > dte2;\n }\n // different date\n else if(isDFDate){\n dte2 = DateHelper.format(sA.replace(re_d,''), dtType);\n occurence = dte1.toString() != dte2.toString();\n }\n // equal date\n else if(isEQDate){\n dte2 = DateHelper.format(sA.replace(re_eq,''), dtType);\n occurence = dte1.toString() == dte2.toString();\n }\n // searched keyword with * operator doesn't have to be a date\n else if(re_lk.test(sA)){// like date\n occurence = Str.contains(sA.replace(re_lk,''), cellData,\n false, this.caseSensitive);\n }\n else if(DateHelper.isValid(sA,dtType)){\n dte2 = DateHelper.format(sA,dtType);\n occurence = dte1.toString() === dte2.toString();\n }\n //empty\n else if(hasEM){\n occurence = Str.isEmpty(cellData);\n }\n //non-empty\n else if(hasNM){\n occurence = !Str.isEmpty(cellData);\n } else {\n occurence = Str.contains(sA, cellData, this.isExactMatch(j),\n this.caseSensitive);\n }\n }\n\n else{\n //first numbers need to be formated\n if(this.hasColNbFormat && this.colNbFormat[j]){\n numCellData = removeNbFormat(\n cellData, this.colNbFormat[j]);\n nbFormat = this.colNbFormat[j];\n } else {\n if(this.thousandsSeparator === ',' &&\n this.decimalSeparator === '.'){\n numCellData = removeNbFormat(cellData, 'us');\n nbFormat = 'us';\n } else {\n numCellData = removeNbFormat(cellData, 'eu');\n nbFormat = 'eu';\n }\n }\n\n // first checks if there is any operator (<,>,<=,>=,!,*,=,{,},\n // rgx:)\n // lower equal\n if(hasLE){\n occurence = numCellData <= removeNbFormat(\n sA.replace(re_le, ''), nbFormat);\n }\n //greater equal\n else if(hasGE){\n occurence = numCellData >= removeNbFormat(\n sA.replace(re_ge, ''), nbFormat);\n }\n //lower\n else if(hasLO){\n occurence = numCellData < removeNbFormat(\n sA.replace(re_l, ''), nbFormat);\n }\n //greater\n else if(hasGR){\n occurence = numCellData > removeNbFormat(\n sA.replace(re_g, ''), nbFormat);\n }\n //different\n else if(hasDF){\n occurence = Str.contains(sA.replace(re_d, ''), cellData,\n false, this.caseSensitive) ? false : true;\n }\n //like\n else if(hasLK){\n occurence = Str.contains(sA.replace(re_lk, ''), cellData,\n false, this.caseSensitive);\n }\n //equal\n else if(hasEQ){\n occurence = Str.contains(sA.replace(re_eq, ''), cellData,\n true, this.caseSensitive);\n }\n //starts with\n else if(hasST){\n occurence = cellData.indexOf(sA.replace(re_st, '')) === 0 ?\n true : false;\n }\n //ends with\n else if(hasEN){\n let searchArg = sA.replace(re_en, '');\n occurence =\n cellData.lastIndexOf(searchArg, cellData.length-1) ===\n (cellData.length-1)-(searchArg.length-1) &&\n cellData.lastIndexOf(\n searchArg, cellData.length-1) > -1 ? true : false;\n }\n //empty\n else if(hasEM){\n occurence = Str.isEmpty(cellData);\n }\n //non-empty\n else if(hasNM){\n occurence = !Str.isEmpty(cellData);\n }\n //regexp\n else if(hasRE){\n //in case regexp fires an exception\n try{\n //operator is removed\n let srchArg = sA.replace(re_re,'');\n let rgx = new RegExp(srchArg);\n occurence = rgx.test(cellData);\n } catch(e) { occurence = false; }\n } else {\n occurence = Str.contains(sA, cellData, this.isExactMatch(j),\n this.caseSensitive);\n }\n\n }//else\n return occurence;\n }//fn\n\n for(let k=this.refRow; k1) ? true : false,\n //multiple search parameter operator &&\n sAAndSplit = sA.split(this.anOperator),\n //multiple search && parameter boolean\n hasMultiAndSA = sAAndSplit.length>1 ? true : false;\n\n //multiple sarch parameters\n if(hasMultiOrSA || hasMultiAndSA){\n let cS,\n occur = false,\n s = hasMultiOrSA ? sAOrSplit : sAAndSplit;\n for(let w=0, len=s.length; w 0){\n Mod.noResults.hide();\n } else {\n Mod.noResults.show();\n }\n }\n }\n\n /**\n * Return the data of a specified colum\n * @param {Number} colIndex Column index\n * @param {Boolean} includeHeaders Optional: include headers row\n * @param {Boolean} num Optional: return unformatted number\n * @param {Array} exclude Optional: list of row indexes to be excluded\n * @return {Array} Flat list of data for a column\n */\n getColValues(colIndex, includeHeaders=false, num=false, exclude=[]){\n if(!this.fltGrid){\n return;\n }\n let row = this.tbl.rows,\n colValues = [];\n\n if(includeHeaders){\n colValues.push(this.getHeadersText()[colIndex]);\n }\n\n for(let i=this.refRow; i 0){\n isExludedRow = exclude.indexOf(i) != -1;\n }\n let cell = row[i].cells,\n nchilds = cell.length;\n\n // checks if row has exact cell # and is not excluded\n if(nchilds === this.nbCells && !isExludedRow){\n // this loop retrieves cell data\n for(let j=0; j 0;\n let frag = !tblHasColTag ? doc.createDocumentFragment() : null;\n for(let k=0; k nrows\n if(row <= this.nbRows){\n this.validateRow(row, true);\n }\n }\n }\n\n clearFilters(){\n this.EvtManager(this.Evt.name.clear);\n }\n\n /**\n * Clear all the filters' values\n */\n _clearFilters(){\n if(!this.fltGrid){\n return;\n }\n if(this.onBeforeReset){\n this.onBeforeReset.call(null, this, this.getFiltersValue());\n }\n for(let i=0, len=this.fltIds.length; i IE onload event works only for scripts, not for stylesheets\n file.onload = file.onreadystatechange = function(){\n if(!isLoaded &&\n (!this.readyState || this.readyState === 'loaded' ||\n this.readyState === 'complete')){\n isLoaded = true;\n if(typeof callback === 'function'){\n callback.call(null, o);\n }\n }\n };\n file.onerror = function(){\n throw new Error('TF script could not load: ' + filePath);\n };\n head.appendChild(file);\n }\n\n /**\n * Check if table has filters grid\n * @return {Boolean}\n */\n hasGrid(){\n return this._hasGrid;\n }\n\n /**\n * Get list of filter IDs\n * @return {[type]} [description]\n */\n getFiltersId(){\n return this.fltIds || [];\n }\n\n /**\n * Get filtered (valid) rows indexes\n * @param {Boolean} reCalc Force calculation of filtered rows list\n * @return {Array} List of row indexes\n */\n getValidRows(reCalc){\n if(!reCalc){\n return this.validRowsIndex;\n }\n\n this.validRowsIndex = [];\n for(let k=this.refRow; k {\n // for (let arg of args) {\n let argtype = typeof arg;\n if(argtype === 'object' && arg && arg.nodeName === 'TABLE'){\n this.tbl = arg;\n this.id = arg.id || `tf_${new Date().getTime()}_`;\n } else if(argtype === 'string'){\n this.id = arg;\n this.tbl = Dom.id(arg);\n } else if(argtype === 'number'){\n this.startRow = arg;\n } else if(argtype === 'object'){\n this.cfg = arg;\n }\n // }\n });\n\n if(!this.tbl || this.tbl.nodeName != 'TABLE' || this.getRowsNb() === 0){\n throw new Error(\n 'Could not instantiate TableFilter: HTML table not found.');\n }\n\n // configuration object\n let f = this.cfg;\n\n this.emitter = new Emitter();\n\n //Start row et cols nb\n this.refRow = this.startRow === null ? 2 : (this.startRow+1);\n try{ this.nbCells = this.getCellsNb(this.refRow); }\n catch(e){ this.nbCells = this.getCellsNb(0); }\n\n //default script base path\n this.basePath = f.base_path || 'tablefilter/';\n\n /*** filter types ***/\n this.fltTypeInp = 'input';\n this.fltTypeSlc = 'select';\n this.fltTypeMulti = 'multiple';\n this.fltTypeCheckList = 'checklist';\n this.fltTypeNone = 'none';\n\n /*** filters' grid properties ***/\n\n //enables/disables filter grid\n this.fltGrid = f.grid === false ? false : true;\n\n //enables/disables grid layout (fixed headers)\n this.gridLayout = Boolean(f.grid_layout);\n\n this.filtersRowIndex = isNaN(f.filters_row_index) ?\n 0 : f.filters_row_index;\n this.headersRow = isNaN(f.headers_row_index) ?\n (this.filtersRowIndex === 0 ? 1 : 0) : f.headers_row_index;\n\n //defines tag of the cells containing filters (td/th)\n this.fltCellTag = f.filters_cell_tag!=='th' ||\n f.filters_cell_tag!=='td' ? 'td' : f.filters_cell_tag;\n\n //stores filters ids\n this.fltIds = [];\n //stores filters DOM elements\n this.fltElms = [];\n //stores filters values\n this.searchArgs = null;\n //stores valid rows indexes (rows visible upon filtering)\n this.validRowsIndex = [];\n //stores filters row element\n this.fltGridEl = null;\n //container div for paging elements, reset btn etc.\n this.infDiv = null;\n //div for rows counter\n this.lDiv = null;\n //div for reset button and results per page select\n this.rDiv = null;\n //div for paging elements\n this.mDiv = null;\n\n //defines css class for div containing paging elements, rows counter etc\n this.infDivCssClass = f.inf_div_css_class || 'inf';\n //defines css class for left div\n this.lDivCssClass = f.left_div_css_class || 'ldiv';\n //defines css class for right div\n this.rDivCssClass = f.right_div_css_class || 'rdiv';\n //defines css class for mid div\n this.mDivCssClass = f.middle_div_css_class || 'mdiv';\n //table container div css class\n this.contDivCssClass = f.content_div_css_class || 'cont';\n\n /*** filters' grid appearance ***/\n //stylesheet file\n this.stylePath = f.style_path || this.basePath + 'style/';\n this.stylesheet = f.stylesheet || this.stylePath+'tablefilter.css';\n this.stylesheetId = this.id + '_style';\n //defines css class for filters row\n this.fltsRowCssClass = f.flts_row_css_class || 'fltrow';\n //enables/disables icons (paging, reset button)\n this.enableIcons = f.enable_icons===false ? false : true;\n //enables/disbles rows alternating bg colors\n this.alternateRows = Boolean(f.alternate_rows);\n //defines widths of columns\n this.hasColWidths = Types.isArray(f.col_widths);\n this.colWidths = this.hasColWidths ? f.col_widths : null;\n //defines css class for filters\n this.fltCssClass = f.flt_css_class || 'flt';\n //defines css class for multiple selects filters\n this.fltMultiCssClass = f.flt_multi_css_class || 'flt_multi';\n //defines css class for filters\n this.fltSmallCssClass = f.flt_small_css_class || 'flt_s';\n //defines css class for single-filter\n this.singleFltCssClass = f.single_flt_css_class || 'single_flt';\n\n /*** filters' grid behaviours ***/\n //enables/disables enter key\n this.enterKey = f.enter_key===false ? false : true;\n //calls function before filtering starts\n this.onBeforeFilter = Types.isFn(f.on_before_filter) ?\n f.on_before_filter : null;\n //calls function after filtering\n this.onAfterFilter = Types.isFn(f.on_after_filter) ?\n f.on_after_filter : null;\n //enables/disables case sensitivity\n this.caseSensitive = Boolean(f.case_sensitive);\n //has exact match per column\n this.hasExactMatchByCol = Types.isArray(f.columns_exact_match);\n this.exactMatchByCol = this.hasExactMatchByCol ?\n f.columns_exact_match : [];\n //enables/disbles exact match for search\n this.exactMatch = Boolean(f.exact_match);\n //refreshes drop-down lists upon validation\n this.linkedFilters = Boolean(f.linked_filters);\n //wheter excluded options are disabled\n this.disableExcludedOptions = Boolean(f.disable_excluded_options);\n //stores active filter element\n this.activeFlt = null;\n //id of active filter\n this.activeFilterId = null;\n //enables always visible rows\n this.hasVisibleRows = Boolean(f.rows_always_visible);\n //array containing always visible rows\n this.visibleRows = this.hasVisibleRows ? f.rows_always_visible : [];\n //enables/disables external filters generation\n this.isExternalFlt = Boolean(f.external_flt_grid);\n //array containing ids of external elements containing filters\n this.externalFltTgtIds = f.external_flt_grid_ids || [];\n //stores filters elements if isExternalFlt is true\n this.externalFltEls = [];\n //delays any filtering process if loader true\n this.execDelay = !isNaN(f.exec_delay) ? parseInt(f.exec_delay,10) : 100;\n //calls function when filters grid loaded\n this.onFiltersLoaded = Types.isFn(f.on_filters_loaded) ?\n f.on_filters_loaded : null;\n //enables/disables single filter search\n this.singleSearchFlt = Boolean(f.single_filter);\n //calls function after row is validated\n this.onRowValidated = Types.isFn(f.on_row_validated) ?\n f.on_row_validated : null;\n //array defining columns for customCellData event\n this.customCellDataCols = f.custom_cell_data_cols ?\n f.custom_cell_data_cols : [];\n //calls custom function for retrieving cell data\n this.customCellData = Types.isFn(f.custom_cell_data) ?\n f.custom_cell_data : null;\n //input watermark text array\n this.watermark = f.watermark || '';\n this.isWatermarkArray = Types.isArray(this.watermark);\n //id of toolbar container element\n this.toolBarTgtId = f.toolbar_target_id || null;\n //enables/disables help div\n this.help = Types.isUndef(f.help_instructions) ?\n undefined : Boolean(f.help_instructions);\n //popup filters\n this.popupFilters = Boolean(f.popup_filters);\n //active columns color\n this.markActiveColumns = Boolean(f.mark_active_columns);\n //defines css class for active column header\n this.activeColumnsCssClass = f.active_columns_css_class ||\n 'activeHeader';\n //calls function before active column header is marked\n this.onBeforeActiveColumn = Types.isFn(f.on_before_active_column) ?\n f.on_before_active_column : null;\n //calls function after active column header is marked\n this.onAfterActiveColumn = Types.isFn(f.on_after_active_column) ?\n f.on_after_active_column : null;\n\n /*** select filter's customisation and behaviours ***/\n //defines 1st option text\n this.displayAllText = f.display_all_text || 'Clear';\n //enables/disables empty option in combo-box filters\n this.enableEmptyOption = Boolean(f.enable_empty_option);\n //defines empty option text\n this.emptyText = f.empty_text || '(Empty)';\n //enables/disables non empty option in combo-box filters\n this.enableNonEmptyOption = Boolean(f.enable_non_empty_option);\n //defines empty option text\n this.nonEmptyText = f.non_empty_text || '(Non empty)';\n //enables/disables onChange event on combo-box\n this.onSlcChange = f.on_change===false ? false : true;\n //enables/disables select options sorting\n this.sortSlc = f.sort_select===false ? false : true;\n //enables/disables ascending numeric options sorting\n this.isSortNumAsc = Boolean(f.sort_num_asc);\n this.sortNumAsc = this.isSortNumAsc ? f.sort_num_asc : null;\n //enables/disables descending numeric options sorting\n this.isSortNumDesc = Boolean(f.sort_num_desc);\n this.sortNumDesc = this.isSortNumDesc ? f.sort_num_desc : null;\n //Select filters are populated on demand\n this.loadFltOnDemand = Boolean(f.load_filters_on_demand);\n this.hasCustomOptions = Types.isObj(f.custom_options);\n this.customOptions = f.custom_options;\n\n /*** Filter operators ***/\n this.rgxOperator = f.regexp_operator || 'rgx:';\n this.emOperator = f.empty_operator || '[empty]';\n this.nmOperator = f.nonempty_operator || '[nonempty]';\n this.orOperator = f.or_operator || '||';\n this.anOperator = f.and_operator || '&&';\n this.grOperator = f.greater_operator || '>';\n this.lwOperator = f.lower_operator || '<';\n this.leOperator = f.lower_equal_operator || '<=';\n this.geOperator = f.greater_equal_operator || '>=';\n this.dfOperator = f.different_operator || '!';\n this.lkOperator = f.like_operator || '*';\n this.eqOperator = f.equal_operator || '=';\n this.stOperator = f.start_with_operator || '{';\n this.enOperator = f.end_with_operator || '}';\n this.curExp = f.cur_exp || '^[¥£€$]';\n this.separator = f.separator || ',';\n\n /*** rows counter ***/\n //show/hides rows counter\n this.rowsCounter = Boolean(f.rows_counter);\n\n /*** status bar ***/\n //show/hides status bar\n this.statusBar = Boolean(f.status_bar);\n\n /*** loader ***/\n //enables/disables loader/spinner indicator\n this.loader = Boolean(f.loader);\n\n /*** validation - reset buttons/links ***/\n //show/hides filter's validation button\n this.displayBtn = Boolean(f.btn);\n //defines validation button text\n this.btnText = f.btn_text || (!this.enableIcons ? 'Go' : '');\n //defines css class for validation button\n this.btnCssClass = f.btn_css_class ||\n (!this.enableIcons ? 'btnflt' : 'btnflt_icon');\n //show/hides reset link\n this.btnReset = Boolean(f.btn_reset);\n //defines css class for reset button\n this.btnResetCssClass = f.btn_reset_css_class || 'reset';\n //callback function before filters are cleared\n this.onBeforeReset = Types.isFn(f.on_before_reset) ?\n f.on_before_reset : null;\n //callback function after filters are cleared\n this.onAfterReset = Types.isFn(f.on_after_reset) ?\n f.on_after_reset : null;\n\n /*** paging ***/\n //enables/disables table paging\n this.paging = Boolean(f.paging);\n this.nbVisibleRows = 0; //nb visible rows\n this.nbHiddenRows = 0; //nb hidden rows\n\n /*** autofilter on typing ***/\n //enables/disables auto filtering, table is filtered when user stops\n //typing\n this.autoFilter = Boolean(f.auto_filter);\n //onkeyup delay timer (msecs)\n this.autoFilterDelay = !isNaN(f.auto_filter_delay) ?\n f.auto_filter_delay : 900;\n //typing indicator\n this.isUserTyping = null;\n this.autoFilterTimer = null;\n\n /*** keyword highlighting ***/\n //enables/disables keyword highlighting\n this.highlightKeywords = Boolean(f.highlight_keywords);\n\n /*** No results feature ***/\n this.noResults = Types.isObj(f.no_results_message) ||\n Boolean(f.no_results_message);\n\n /*** data types ***/\n //defines default date type (european DMY)\n this.defaultDateType = f.default_date_type || 'DMY';\n //defines default thousands separator\n //US = ',' EU = '.'\n this.thousandsSeparator = f.thousands_separator || ',';\n //defines default decimal separator\n //US & javascript = '.' EU = ','\n this.decimalSeparator = f.decimal_separator || '.';\n //enables number format per column\n this.hasColNbFormat = Types.isArray(f.col_number_format);\n //array containing columns nb formats\n this.colNbFormat = this.hasColNbFormat ? f.col_number_format : null;\n //enables date type per column\n this.hasColDateType = Types.isArray(f.col_date_type);\n //array containing columns date type\n this.colDateType = this.hasColDateType ? f.col_date_type : null;\n\n /*** ids prefixes ***/\n //css class name added to table\n this.prfxTf = 'TF';\n //filters (inputs - selects)\n this.prfxFlt = 'flt';\n //validation button\n this.prfxValButton = 'btn';\n //container div for paging elements, rows counter etc.\n this.prfxInfDiv = 'inf_';\n //left div\n this.prfxLDiv = 'ldiv_';\n //right div\n this.prfxRDiv = 'rdiv_';\n //middle div\n this.prfxMDiv = 'mdiv_';\n //filter values cookie\n this.prfxCookieFltsValues = 'tf_flts_';\n //page nb cookie\n this.prfxCookiePageNb = 'tf_pgnb_';\n //page length cookie\n this.prfxCookiePageLen = 'tf_pglen_';\n\n /*** cookies ***/\n //remembers filters values on page load\n this.rememberGridValues = Boolean(f.remember_grid_values);\n //cookie storing filter values\n this.fltsValuesCookie = this.prfxCookieFltsValues + this.id;\n //remembers page nb on page load\n this.rememberPageNb = this.paging && f.remember_page_number;\n //cookie storing page nb\n this.pgNbCookie = this.prfxCookiePageNb + this.id;\n //remembers page length on page load\n this.rememberPageLen = this.paging && f.remember_page_length;\n //cookie storing page length\n this.pgLenCookie = this.prfxCookiePageLen + this.id;\n\n /*** extensions ***/\n //imports external script\n this.extensions = f.extensions;\n this.hasExtensions = Types.isArray(this.extensions);\n\n /*** themes ***/\n this.enableDefaultTheme = Boolean(f.enable_default_theme);\n //imports themes\n this.hasThemes = (this.enableDefaultTheme || Types.isArray(f.themes));\n this.themes = f.themes || [];\n //themes path\n this.themesPath = f.themes_path || this.stylePath + 'themes/';\n\n // Features registry\n this.Mod = {};\n\n // Extensions registry\n this.ExtRegistry = {};\n\n /*** TF events ***/\n this.Evt = {\n // Detect key\n detectKey(e) {\n if(!this.enterKey){ return; }\n if(e){\n let key = Event.keyCode(e);\n if(key===13){\n this.filter();\n Event.cancel(e);\n Event.stop(e);\n } else {\n this.isUserTyping = true;\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n }\n }\n },\n // if auto-filter on, detect user is typing and filter columns\n onKeyUp(e) {\n if(!this.autoFilter){\n return;\n }\n let key = Event.keyCode(e);\n this.isUserTyping = false;\n\n function filter() {\n /*jshint validthis:true */\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n if(!this.isUserTyping){\n this.filter();\n this.isUserTyping = null;\n }\n }\n\n if(key!==13 && key!==9 && key!==27 && key!==38 && key!==40) {\n if(this.autoFilterTimer === null){\n this.autoFilterTimer = global.setInterval(\n filter.bind(this), this.autoFilterDelay);\n }\n } else {\n global.clearInterval(this.autoFilterTimer);\n this.autoFilterTimer = null;\n }\n },\n // if auto-filter on, detect user is typing\n onKeyDown() {\n if(!this.autoFilter) { return; }\n this.isUserTyping = true;\n },\n // if auto-filter on, clear interval on filter blur\n onInpBlur() {\n if(this.autoFilter){\n this.isUserTyping = false;\n global.clearInterval(this.autoFilterTimer);\n }\n this.emitter.emit('filter-blur', this);\n },\n // set focused text-box filter as active\n onInpFocus(e) {\n let elm = Event.target(e);\n this.activeFilterId = elm.getAttribute('id');\n this.activeFlt = Dom.id(this.activeFilterId);\n this.emitter.emit('filter-focus', this);\n }\n };\n }\n\n /**\n * Initialise features and layout\n */\n init(){\n if(this._hasGrid){\n return;\n }\n\n let Mod = this.Mod;\n let n = this.singleSearchFlt ? 1 : this.nbCells,\n inpclass;\n\n //loads stylesheet if not imported\n this.import(this.stylesheetId, this.stylesheet, null, 'link');\n\n //loads theme\n if(this.hasThemes){ this.loadThemes(); }\n\n // Instantiate help feature and initialise only if set true\n if(!Mod.help){\n Mod.help = new Help(this);\n }\n if(this.help){\n Mod.help.init();\n }\n\n if(this.rememberGridValues || this.rememberPageNb ||\n this.rememberPageLen){\n if(!Mod.store){\n Mod.store = new Store(this);\n }\n Mod.store.init();\n }\n\n if(this.gridLayout){\n if(!Mod.gridLayout){\n Mod.gridLayout = new GridLayout(this);\n }\n Mod.gridLayout.init();\n }\n\n if(this.loader){\n if(!Mod.loader){\n Mod.loader = new Loader(this);\n }\n Mod.loader.init();\n }\n\n if(this.highlightKeywords){\n Mod.highlightKeyword = new HighlightKeyword(this);\n Mod.highlightKeyword.init();\n }\n\n if(this.popupFilters){\n if(!Mod.popupFilter){\n Mod.popupFilter = new PopupFilter(this);\n }\n Mod.popupFilter.init();\n }\n\n //filters grid is not generated\n if(!this.fltGrid){\n this._initNoFilters();\n } else {\n let fltrow = this._insertFiltersRow();\n\n this.nbFilterableRows = this.getRowsNb();\n this.nbVisibleRows = this.nbFilterableRows;\n this.nbRows = this.tbl.rows.length;\n\n // Generate filters\n for(let i=0; i this.enforceVisibility());\n this.enforceVisibility();\n }\n if(this.rowsCounter){\n Mod.rowsCounter = new RowsCounter(this);\n Mod.rowsCounter.init();\n }\n if(this.statusBar){\n Mod.statusBar = new StatusBar(this);\n Mod.statusBar.init();\n }\n if(this.paging){\n if(!Mod.paging){\n Mod.paging = new Paging(this);\n Mod.paging.init();\n } else{\n Mod.paging.reset();\n }\n }\n if(this.btnReset){\n Mod.clearButton = new ClearButton(this);\n Mod.clearButton.init();\n }\n\n if(this.hasColWidths && !this.gridLayout){\n this.setColWidths();\n }\n if(this.alternateRows){\n Mod.alternateRows = new AlternateRows(this);\n Mod.alternateRows.init();\n }\n if(this.noResults){\n if(!Mod.noResults){\n Mod.noResults = new NoResults(this);\n }\n Mod.noResults.init();\n }\n\n this._hasGrid = true;\n\n if(this.rememberGridValues || this.rememberPageLen ||\n this.rememberPageNb){\n this.resetValues();\n }\n\n //TF css class is added to table\n if(!this.gridLayout){\n Dom.addClass(this.tbl, this.prfxTf);\n }\n\n /* Loads extensions */\n if(this.hasExtensions){\n this.initExtensions();\n }\n\n // Subscribe to events\n if(this.markActiveColumns){\n this.emitter.on(['before-filtering'],\n ()=> this.clearActiveColumns());\n this.emitter.on(['cell-processed'],\n (tf, colIndex)=> this.markActiveColumn(colIndex));\n }\n if(this.linkedFilters){\n this.emitter.on(['after-filtering'], ()=> this.linkFilters());\n }\n\n if(this.onFiltersLoaded){\n this.onFiltersLoaded.call(null, this);\n }\n\n this.initialized = true;\n this.emitter.emit('initialized', this);\n }\n\n /**\n * Insert filters row at initialization\n */\n _insertFiltersRow() {\n if(this.gridLayout){\n return;\n }\n let fltrow;\n\n let thead = Dom.tag(this.tbl, 'thead');\n if(thead.length > 0){\n fltrow = thead[0].insertRow(this.filtersRowIndex);\n } else {\n fltrow = this.tbl.insertRow(this.filtersRowIndex);\n }\n\n if(this.headersRow > 1 && this.filtersRowIndex <= this.headersRow){\n this.headersRow++;\n }\n\n fltrow.className = this.fltsRowCssClass;\n\n if(this.isExternalFlt){\n fltrow.style.display = 'none';\n }\n\n this.emitter.emit('filters-row-inserted', this, fltrow);\n return fltrow;\n }\n\n /**\n * Initialize filtersless table\n */\n _initNoFilters(){\n if(this.fltGrid){\n return;\n }\n this.refRow = this.refRow > 0 ? this.refRow-1 : 0;\n this.nbFilterableRows = this.getRowsNb();\n this.nbVisibleRows = this.nbFilterableRows;\n this.nbRows = this.nbFilterableRows + this.refRow;\n }\n\n /**\n * Build input filter type\n * @param {Number} colIndex Column index\n * @param {String} cssClass Css class applied to filter\n * @param {DOMElement} container Container DOM element\n */\n _buildInputFilter(colIndex, cssClass, container){\n let col = this.getFilterType(colIndex);\n let externalFltTgtId = this.isExternalFlt ?\n this.externalFltTgtIds[colIndex] : null;\n let inptype = col===this.fltTypeInp ? 'text' : 'hidden';\n let inp = Dom.create(this.fltTypeInp,\n ['id', this.prfxFlt+colIndex+'_'+this.id],\n ['type', inptype], ['ct', colIndex]);\n\n if(inptype !== 'hidden' && this.watermark){\n inp.setAttribute('placeholder',\n this.isWatermarkArray ? (this.watermark[colIndex] || '') :\n this.watermark\n );\n }\n inp.className = cssClass || this.fltCssClass;\n Event.add(inp, 'focus', this.Evt.onInpFocus.bind(this));\n\n //filter is appended in custom element\n if(externalFltTgtId){\n Dom.id(externalFltTgtId).appendChild(inp);\n this.externalFltEls.push(inp);\n } else {\n container.appendChild(inp);\n }\n\n this.fltIds.push(inp.id);\n\n Event.add(inp, 'keypress', this.Evt.detectKey.bind(this));\n Event.add(inp, 'keydown', this.Evt.onKeyDown.bind(this));\n Event.add(inp, 'keyup', this.Evt.onKeyUp.bind(this));\n Event.add(inp, 'blur', this.Evt.onInpBlur.bind(this));\n }\n\n /**\n * Build submit button\n * @param {Number} colIndex Column index\n * @param {DOMElement} container Container DOM element\n */\n _buildSubmitButton(colIndex, container){\n let externalFltTgtId = this.isExternalFlt ?\n this.externalFltTgtIds[colIndex] : null;\n let btn = Dom.create(this.fltTypeInp,\n ['id', this.prfxValButton+colIndex+'_'+this.id],\n ['type', 'button'], ['value', this.btnText]);\n btn.className = this.btnCssClass;\n\n //filter is appended in custom element\n if(externalFltTgtId){\n Dom.id(externalFltTgtId).appendChild(btn);\n } else{\n container.appendChild(btn);\n }\n\n Event.add(btn, 'click', ()=> this.filter());\n }\n\n /**\n * Return a feature instance for a given name\n * @param {String} name Name of the feature\n * @return {Object}\n */\n feature(name){\n return this.Mod[name];\n }\n\n /**\n * Initialise all the extensions defined in the configuration object\n */\n initExtensions(){\n let exts = this.extensions;\n // Set config's publicPath dynamically for Webpack...\n __webpack_public_path__ = this.basePath;\n\n this.emitter.emit('before-loading-extensions', this);\n for(let i=0, len=exts.length; i {\n let inst = new mod.default(this, ext);\n inst.init();\n this.ExtRegistry[name] = inst;\n });\n }\n\n /**\n * Get an extension instance\n * @param {String} name Name of the extension\n * @return {Object} Extension instance\n */\n extension(name){\n return this.ExtRegistry[name];\n }\n\n /**\n * Check passed extension name exists\n * @param {String} name Name of the extension\n * @return {Boolean}\n */\n hasExtension(name){\n return !Types.isEmpty(this.ExtRegistry[name]);\n }\n\n /**\n * Destroy all the extensions defined in the configuration object\n */\n destroyExtensions(){\n let exts = this.extensions;\n\n for(let i=0, len=exts.length; i ';\n\n //Paging buttons\n this.btnPrevPageHtml = ' ';\n this.btnNextPageHtml = ' ';\n this.btnFirstPageHtml = ' ';\n this.btnLastPageHtml = ' ';\n\n //Loader\n this.loader = true;\n this.loaderHtml = '
';\n this.loaderText = null;\n\n this.emitter.emit('after-loading-themes', this);\n }\n\n /**\n * Return stylesheet DOM element for a given theme name\n * @return {DOMElement} stylesheet element\n */\n getStylesheet(name='default'){\n return Dom.id(this.prfxTf + name);\n }\n\n /**\n * Destroy filter grid\n */\n destroy(){\n if(!this._hasGrid){\n return;\n }\n let rows = this.tbl.rows,\n Mod = this.Mod,\n emitter = this.emitter;\n\n if(this.isExternalFlt && !this.popupFilters){\n this.removeExternalFlts();\n }\n if(this.infDiv){\n this.removeToolbar();\n }\n if(this.markActiveColumns){\n this.clearActiveColumns();\n emitter.off(['before-filtering'], ()=> this.clearActiveColumns());\n emitter.off(['cell-processed'],\n (tf, colIndex)=> this.markActiveColumn(colIndex));\n }\n if(this.hasExtensions){\n this.destroyExtensions();\n }\n\n this.validateAllRows();\n\n if(this.fltGrid && !this.gridLayout){\n this.fltGridEl = rows[this.filtersRowIndex];\n this.tbl.deleteRow(this.filtersRowIndex);\n }\n\n // broadcast destroy event\n emitter.emit('destroy', this);\n\n // Destroy modules\n // TODO: subcribe modules to destroy event instead\n Object.keys(Mod).forEach(function(key){\n var feature = Mod[key];\n if(feature && Types.isFn(feature.destroy)){\n feature.destroy();\n }\n });\n\n // unsubscribe to events\n if(this.hasVisibleRows){\n emitter.off(['after-filtering'], ()=> this.enforceVisibility());\n }\n if(this.linkedFilters){\n emitter.off(['after-filtering'], ()=> this.linkFilters());\n }\n\n Dom.removeClass(this.tbl, this.prfxTf);\n this.nbHiddenRows = 0;\n this.validRowsIndex = [];\n this.fltIds = [];\n this.activeFlt = null;\n this._hasGrid = false;\n this.initialized = false;\n }\n\n /**\n * Generate container element for paging, reset button, rows counter etc.\n */\n setToolbar(){\n if(this.infDiv){\n return;\n }\n\n /*** container div ***/\n let infdiv = Dom.create('div', ['id', this.prfxInfDiv+this.id]);\n infdiv.className = this.infDivCssClass;\n\n //custom container\n if(this.toolBarTgtId){\n Dom.id(this.toolBarTgtId).appendChild(infdiv);\n }\n //grid-layout\n else if(this.gridLayout){\n let gridLayout = this.Mod.gridLayout;\n gridLayout.tblMainCont.appendChild(infdiv);\n infdiv.className = gridLayout.gridInfDivCssClass;\n }\n //default location: just above the table\n else{\n var cont = Dom.create('caption');\n cont.appendChild(infdiv);\n this.tbl.insertBefore(cont, this.tbl.firstChild);\n }\n this.infDiv = Dom.id(this.prfxInfDiv+this.id);\n\n /*** left div containing rows # displayer ***/\n let ldiv = Dom.create('div', ['id', this.prfxLDiv+this.id]);\n ldiv.className = this.lDivCssClass;\n infdiv.appendChild(ldiv);\n this.lDiv = Dom.id(this.prfxLDiv+this.id);\n\n /*** right div containing reset button\n + nb results per page select ***/\n let rdiv = Dom.create('div', ['id', this.prfxRDiv+this.id]);\n rdiv.className = this.rDivCssClass;\n infdiv.appendChild(rdiv);\n this.rDiv = Dom.id(this.prfxRDiv+this.id);\n\n /*** mid div containing paging elements ***/\n let mdiv = Dom.create('div', ['id', this.prfxMDiv+this.id]);\n mdiv.className = this.mDivCssClass;\n infdiv.appendChild(mdiv);\n this.mDiv = Dom.id(this.prfxMDiv+this.id);\n\n // emit help initialisation only if undefined\n if(Types.isUndef(this.help)){\n this.emitter.emit('init-help', this);\n }\n }\n\n /**\n * Remove toolbar container element\n */\n removeToolbar(){\n if(!this.infDiv){\n return;\n }\n Dom.remove(this.infDiv);\n this.infDiv = null;\n\n let tbl = this.tbl;\n let captions = Dom.tag(tbl, 'caption');\n if(captions.length > 0){\n [].forEach.call(captions, (elm)=> tbl.removeChild(elm));\n }\n }\n\n /**\n * Remove all the external column filters\n */\n removeExternalFlts(){\n if(!this.isExternalFlt){\n return;\n }\n let ids = this.externalFltTgtIds,\n len = ids.length;\n for(let ct=0; ct {\n if(val !== ' '){\n this.setFilterValue(idx, val);\n }\n });\n this.filter();\n }\n\n /**\n * Filter the table by retrieving the data from each cell in every single\n * row and comparing it to the search term for current column. A row is\n * hidden when all the search terms are not found in inspected row.\n */\n filter(){\n if(!this.fltGrid || !this._hasGrid){\n return;\n }\n //invoke onbefore callback\n if(this.onBeforeFilter){\n this.onBeforeFilter.call(null, this);\n }\n this.emitter.emit('before-filtering', this);\n\n let row = this.tbl.rows,\n hiddenrows = 0;\n\n this.validRowsIndex = [];\n // search args re-init\n this.searchArgs = this.getFiltersValue();\n\n var numCellData, nbFormat;\n var re_le = new RegExp(this.leOperator),\n re_ge = new RegExp(this.geOperator),\n re_l = new RegExp(this.lwOperator),\n re_g = new RegExp(this.grOperator),\n re_d = new RegExp(this.dfOperator),\n re_lk = new RegExp(Str.rgxEsc(this.lkOperator)),\n re_eq = new RegExp(this.eqOperator),\n re_st = new RegExp(this.stOperator),\n re_en = new RegExp(this.enOperator),\n // re_an = new RegExp(this.anOperator),\n // re_cr = new RegExp(this.curExp),\n re_em = this.emOperator,\n re_nm = this.nmOperator,\n re_re = new RegExp(Str.rgxEsc(this.rgxOperator));\n\n //keyword highlighting\n function highlight(str, ok, cell){\n /*jshint validthis:true */\n if(this.highlightKeywords && ok){\n str = str.replace(re_lk, '');\n str = str.replace(re_eq, '');\n str = str.replace(re_st, '');\n str = str.replace(re_en, '');\n let w = str;\n if(re_le.test(str) || re_ge.test(str) || re_l.test(str) ||\n re_g.test(str) || re_d.test(str)){\n w = Dom.getText(cell);\n }\n if(w !== ''){\n this.emitter.emit('highlight-keyword', this, cell, w);\n }\n }\n }\n\n //looks for search argument in current row\n function hasArg(sA, cellData, j){\n /*jshint validthis:true */\n sA = Str.matchCase(sA, this.caseSensitive);\n\n let occurence,\n removeNbFormat = Helpers.removeNbFormat;\n\n //Search arg operator tests\n let hasLO = re_l.test(sA),\n hasLE = re_le.test(sA),\n hasGR = re_g.test(sA),\n hasGE = re_ge.test(sA),\n hasDF = re_d.test(sA),\n hasEQ = re_eq.test(sA),\n hasLK = re_lk.test(sA),\n // hasAN = re_an.test(sA),\n hasST = re_st.test(sA),\n hasEN = re_en.test(sA),\n hasEM = (re_em === sA),\n hasNM = (re_nm === sA),\n hasRE = re_re.test(sA);\n\n //Search arg dates tests\n let isLDate = hasLO &&\n DateHelper.isValid(sA.replace(re_l,''), dtType);\n let isLEDate = hasLE &&\n DateHelper.isValid(sA.replace(re_le,''), dtType);\n let isGDate = hasGR &&\n DateHelper.isValid(sA.replace(re_g,''), dtType);\n let isGEDate = hasGE &&\n DateHelper.isValid(sA.replace(re_ge,''), dtType);\n let isDFDate = hasDF &&\n DateHelper.isValid(sA.replace(re_d,''), dtType);\n let isEQDate = hasEQ &&\n DateHelper.isValid(sA.replace(re_eq,''), dtType);\n\n let dte1, dte2;\n //dates\n if(DateHelper.isValid(cellData, dtType)){\n dte1 = DateHelper.format(cellData, dtType);\n // lower date\n if(isLDate){\n dte2 = DateHelper.format(sA.replace(re_l,''), dtType);\n occurence = dte1 < dte2;\n }\n // lower equal date\n else if(isLEDate){\n dte2 = DateHelper.format(sA.replace(re_le,''), dtType);\n occurence = dte1 <= dte2;\n }\n // greater equal date\n else if(isGEDate){\n dte2 = DateHelper.format(sA.replace(re_ge,''), dtType);\n occurence = dte1 >= dte2;\n }\n // greater date\n else if(isGDate){\n dte2 = DateHelper.format(sA.replace(re_g,''), dtType);\n occurence = dte1 > dte2;\n }\n // different date\n else if(isDFDate){\n dte2 = DateHelper.format(sA.replace(re_d,''), dtType);\n occurence = dte1.toString() != dte2.toString();\n }\n // equal date\n else if(isEQDate){\n dte2 = DateHelper.format(sA.replace(re_eq,''), dtType);\n occurence = dte1.toString() == dte2.toString();\n }\n // searched keyword with * operator doesn't have to be a date\n else if(re_lk.test(sA)){// like date\n occurence = Str.contains(sA.replace(re_lk,''), cellData,\n false, this.caseSensitive);\n }\n else if(DateHelper.isValid(sA,dtType)){\n dte2 = DateHelper.format(sA,dtType);\n occurence = dte1.toString() === dte2.toString();\n }\n //empty\n else if(hasEM){\n occurence = Str.isEmpty(cellData);\n }\n //non-empty\n else if(hasNM){\n occurence = !Str.isEmpty(cellData);\n } else {\n occurence = Str.contains(sA, cellData, this.isExactMatch(j),\n this.caseSensitive);\n }\n }\n\n else{\n //first numbers need to be formated\n if(this.hasColNbFormat && this.colNbFormat[j]){\n numCellData = removeNbFormat(\n cellData, this.colNbFormat[j]);\n nbFormat = this.colNbFormat[j];\n } else {\n if(this.thousandsSeparator === ',' &&\n this.decimalSeparator === '.'){\n numCellData = removeNbFormat(cellData, 'us');\n nbFormat = 'us';\n } else {\n numCellData = removeNbFormat(cellData, 'eu');\n nbFormat = 'eu';\n }\n }\n\n // first checks if there is any operator (<,>,<=,>=,!,*,=,{,},\n // rgx:)\n // lower equal\n if(hasLE){\n occurence = numCellData <= removeNbFormat(\n sA.replace(re_le, ''), nbFormat);\n }\n //greater equal\n else if(hasGE){\n occurence = numCellData >= removeNbFormat(\n sA.replace(re_ge, ''), nbFormat);\n }\n //lower\n else if(hasLO){\n occurence = numCellData < removeNbFormat(\n sA.replace(re_l, ''), nbFormat);\n }\n //greater\n else if(hasGR){\n occurence = numCellData > removeNbFormat(\n sA.replace(re_g, ''), nbFormat);\n }\n //different\n else if(hasDF){\n occurence = Str.contains(sA.replace(re_d, ''), cellData,\n false, this.caseSensitive) ? false : true;\n }\n //like\n else if(hasLK){\n occurence = Str.contains(sA.replace(re_lk, ''), cellData,\n false, this.caseSensitive);\n }\n //equal\n else if(hasEQ){\n occurence = Str.contains(sA.replace(re_eq, ''), cellData,\n true, this.caseSensitive);\n }\n //starts with\n else if(hasST){\n occurence = cellData.indexOf(sA.replace(re_st, '')) === 0 ?\n true : false;\n }\n //ends with\n else if(hasEN){\n let searchArg = sA.replace(re_en, '');\n occurence =\n cellData.lastIndexOf(searchArg, cellData.length-1) ===\n (cellData.length-1)-(searchArg.length-1) &&\n cellData.lastIndexOf(\n searchArg, cellData.length-1) > -1 ? true : false;\n }\n //empty\n else if(hasEM){\n occurence = Str.isEmpty(cellData);\n }\n //non-empty\n else if(hasNM){\n occurence = !Str.isEmpty(cellData);\n }\n //regexp\n else if(hasRE){\n //in case regexp fires an exception\n try{\n //operator is removed\n let srchArg = sA.replace(re_re,'');\n let rgx = new RegExp(srchArg);\n occurence = rgx.test(cellData);\n } catch(e) { occurence = false; }\n } else {\n occurence = Str.contains(sA, cellData, this.isExactMatch(j),\n this.caseSensitive);\n }\n\n }//else\n return occurence;\n }//fn\n\n for(let k=this.refRow; k 1,\n //multiple search parameter operator &&\n sAAndSplit = sA.toString().split(this.anOperator),\n //multiple search && parameter boolean\n hasMultiAndSA = sAAndSplit.length > 1;\n\n //detect operators or array query\n if(Types.isArray(sA) || hasMultiOrSA || hasMultiAndSA){\n let cS,\n s,\n occur = false;\n if(Types.isArray(sA)){\n s = sA;\n } else {\n s = hasMultiOrSA ? sAOrSplit : sAAndSplit;\n }\n // TODO: improve clarity/readability of this block\n for(let w=0, len=s.length; w 0){\n isExludedRow = exclude.indexOf(i) != -1;\n }\n let cell = row[i].cells,\n nchilds = cell.length;\n\n // checks if row has exact cell # and is not excluded\n if(nchilds === this.nbCells && !isExludedRow){\n // this loop retrieves cell data\n for(let j=0; j 0 ? fltValues : '';\n }\n //checklist\n else if(fltColType === this.fltTypeCheckList){\n // TODO: extract a method in checklist module from below\n if(flt.getAttribute('value') !== null){\n fltValues = flt.getAttribute('value');\n //removes last operator ||\n fltValues = fltValues.substr(0, fltValues.length-3);\n //convert || separated values into array\n fltValues = fltValues.split(' ' + this.orOperator + ' ');\n }\n //return empty string if collection is empty\n fltValue = fltValues.length > 0 ? fltValues : '';\n }\n //return an empty string if collection contains a single empty string\n if(Types.isArray(fltValue) && fltValue.length === 1 &&\n fltValue[0] === ''){\n fltValue = '';\n }\n return fltValue;\n }\n\n /**\n * Return the filters' values\n * @return {Array} List of filters' values\n */\n getFiltersValue(){\n if(!this.fltGrid){\n return;\n }\n let searchArgs = [];\n for(let i=0, len=this.fltIds.length; i 0;\n let frag = !tblHasColTag ? doc.createDocumentFragment() : null;\n for(let k=0; k nrows\n if(row <= this.nbRows){\n this.validateRow(row, true);\n }\n }\n }\n\n /**\n * Clear all the filters' values\n */\n clearFilters(){\n if(!this.fltGrid){\n return;\n }\n\n this.emitter.emit('before-clearing-filters', this);\n\n if(this.onBeforeReset){\n this.onBeforeReset.call(null, this, this.getFiltersValue());\n }\n for(let i=0, len=this.fltIds.length; i IE onload event works only for scripts, not for stylesheets\n file.onload = file.onreadystatechange = function(){\n if(!isLoaded &&\n (!this.readyState || this.readyState === 'loaded' ||\n this.readyState === 'complete')){\n isLoaded = true;\n if(typeof callback === 'function'){\n callback.call(null, o);\n }\n }\n };\n file.onerror = function(){\n throw new Error('TF script could not load: ' + filePath);\n };\n head.appendChild(file);\n }\n\n /**\n * Check if table has filters grid\n * @return {Boolean}\n */\n hasGrid(){\n return this._hasGrid;\n }\n\n /**\n * Get list of filter IDs\n * @return {[type]} [description]\n */\n getFiltersId(){\n return this.fltIds || [];\n }\n\n /**\n * Get filtered (valid) rows indexes\n * @param {Boolean} reCalc Force calculation of filtered rows list\n * @return {Array} List of row indexes\n */\n getValidRows(reCalc){\n if(!reCalc){\n return this.validRowsIndex;\n }\n\n this.validRowsIndex = [];\n for(let k=this.refRow; k
- src/array.js | tablefilter v0.0.23 API Document
+ src/array.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/cookie.js.html b/docs/file/src/cookie.js.html
index 070153d6..7de98c8a 100644
--- a/docs/file/src/cookie.js.html
+++ b/docs/file/src/cookie.js.html
@@ -3,7 +3,7 @@
- src/cookie.js | tablefilter v0.0.23 API Document
+ src/cookie.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/date.js.html b/docs/file/src/date.js.html
index 85fbaddf..b268602e 100644
--- a/docs/file/src/date.js.html
+++ b/docs/file/src/date.js.html
@@ -3,7 +3,7 @@
- src/date.js | tablefilter v0.0.23 API Document
+ src/date.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/dom.js.html b/docs/file/src/dom.js.html
index 279a8ce3..bf670938 100644
--- a/docs/file/src/dom.js.html
+++ b/docs/file/src/dom.js.html
@@ -3,7 +3,7 @@
- src/dom.js | tablefilter v0.0.23 API Document
+ src/dom.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/emitter.js.html b/docs/file/src/emitter.js.html
new file mode 100644
index 00000000..44ab1201
--- /dev/null
+++ b/docs/file/src/emitter.js.html
@@ -0,0 +1,136 @@
+
+
+
+
+
+ src/emitter.js | tablefilter v0.1.9 API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+src/emitter.js
+
/**
+ * Event emitter class
+ */
+export class Emitter {
+ constructor() {
+ /**
+ * Events object
+ * @type {Object}
+ */
+ this.events = {};
+ }
+
+ /**
+ * Subscribe to an event
+ * @param {Array} evts Collection of event names
+ * @param {Function} fn Function invoked when event is emitted
+ */
+ on(evts, fn) {
+ evts.forEach((evt)=> {
+ this.events[evt] = this.events[evt] || [];
+ this.events[evt].push(fn);
+ });
+ }
+
+ /**
+ * Unsubscribe to an event
+ * @param {Array} evts Collection of event names
+ * @param {Function} fn Function invoked when event is emitted
+ */
+ off(evts, fn) {
+ evts.forEach((evt)=> {
+ if(evt in this.events) {
+ this.events[evt].splice(this.events[evt].indexOf(fn), 1);
+ }
+ });
+ }
+
+ /**
+ * Emit an event
+ * @param {String} evt Event name followed by any other argument passed to
+ * the invoked function
+ */
+ emit(evt /*, args...*/) {
+ if(evt in this.events) {
+ for(let i = 0; i < this.events[evt].length; i++) {
+ this.events[evt][i].apply(this, [].slice.call(arguments, 1));
+ }
+ }
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/file/src/event.js.html b/docs/file/src/event.js.html
index c47c1724..da601719 100644
--- a/docs/file/src/event.js.html
+++ b/docs/file/src/event.js.html
@@ -3,7 +3,7 @@
- src/event.js | tablefilter v0.0.23 API Document
+ src/event.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/extensions/advancedGrid/adapterEzEditTable.js.html b/docs/file/src/extensions/advancedGrid/adapterEzEditTable.js.html
index 80dad97e..d607aeab 100644
--- a/docs/file/src/extensions/advancedGrid/adapterEzEditTable.js.html
+++ b/docs/file/src/extensions/advancedGrid/adapterEzEditTable.js.html
@@ -3,7 +3,7 @@
- src/extensions/advancedGrid/adapterEzEditTable.js | tablefilter v0.0.23 API Document
+ src/extensions/advancedGrid/adapterEzEditTable.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -95,6 +96,7 @@ export default class AdapterEzEditTable {
this._ezEditTable = null;
this.cfg = cfg;
this.tf = tf;
+ this.emitter = tf.emitter;
}
/**
@@ -112,6 +114,11 @@ export default class AdapterEzEditTable {
if(this.loadStylesheet && !tf.isImported(this.stylesheet, 'link')){
tf.import(this.stylesheetName, this.stylesheet, null, 'link');
}
+
+ // TODO: hack to prevent ezEditTable enter key event hijaking.
+ // Needs to be fixed in the vendor's library
+ this.emitter.on(['filter-focus', 'filter-blur'],
+ ()=> this._toggleForInputFilter());
}
/**
@@ -362,7 +369,8 @@ export default class AdapterEzEditTable {
cfg.on_added_dom_row = function(){
tf.nbFilterableRows++;
if(!tf.paging){
- tf.feature('rowsCounter').refresh();
+ tf.emitter.emit('rows-changed', tf, this);
+ //tf.feature('rowsCounter').refresh();
} else {
tf.nbRows++;
tf.nbVisibleRows++;
@@ -383,7 +391,8 @@ export default class AdapterEzEditTable {
cfg.actions['delete'].on_after_submit = function(){
tf.nbFilterableRows--;
if(!tf.paging){
- tf.feature('rowsCounter').refresh();
+ // tf.feature('rowsCounter').refresh();
+ tf.emitter.emit('rows-changed', tf, this);
} else {
tf.nbRows--;
tf.nbVisibleRows--;
@@ -425,6 +434,35 @@ export default class AdapterEzEditTable {
}
}
+ /**
+ * Toggle behaviour
+ */
+ toggle(){
+ var ezEditTable = this._ezEditTable;
+ if(ezEditTable.editable){
+ ezEditTable.Editable.Remove();
+ } else {
+ ezEditTable.Editable.Set();
+ }
+ if(ezEditTable.selection){
+ ezEditTable.Selection.Remove();
+ } else {
+ ezEditTable.Selection.Set();
+ }
+ }
+
+ _toggleForInputFilter(){
+ var tf = this.tf;
+ if(!tf.activeFlt){
+ return;
+ }
+ var colIndex = tf.activeFlt.getAttribute('ct');
+ var filterType = tf.getFilterType(colIndex);
+ if(filterType === tf.fltTypeInp){
+ this.toggle();
+ }
+ }
+
/**
* Remove advanced grid
*/
@@ -439,6 +477,9 @@ export default class AdapterEzEditTable {
ezEditTable.Editable.Remove();
}
}
+
+ this.emitter.off(['filter-focus', 'filter-blur'],
+ ()=> this._toggleForInputFilter());
this.initialized = false;
}
}
diff --git a/docs/file/src/extensions/advancedGrid/advancedGrid.js.html b/docs/file/src/extensions/advancedGrid/advancedGrid.js.html
index faf32c65..1b8d99b4 100644
--- a/docs/file/src/extensions/advancedGrid/advancedGrid.js.html
+++ b/docs/file/src/extensions/advancedGrid/advancedGrid.js.html
@@ -3,7 +3,7 @@
- src/extensions/advancedGrid/advancedGrid.js | tablefilter v0.0.23 API Document
+ src/extensions/advancedGrid/advancedGrid.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/extensions/colOps/colOps.js.html b/docs/file/src/extensions/colOps/colOps.js.html
index 677c22cc..ee91f80e 100644
--- a/docs/file/src/extensions/colOps/colOps.js.html
+++ b/docs/file/src/extensions/colOps/colOps.js.html
@@ -3,7 +3,7 @@
- src/extensions/colOps/colOps.js | tablefilter v0.0.23 API Document
+ src/extensions/colOps/colOps.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -91,6 +92,9 @@ export default class ColOps{
}
init(){
+ // subscribe to events
+ this.tf.emitter.on(['after-filtering'], ()=> this.calc());
+
this.calc();
}
@@ -112,7 +116,7 @@ export default class ColOps{
*/
calc() {
var tf = this.tf;
- if(!tf.isFirstLoad && !tf.hasGrid()){
+ if(!tf.hasGrid()){
return;
}
@@ -379,7 +383,10 @@ export default class ColOps{
}
}
- destroy(){}
+ destroy(){
+ // unsubscribe to events
+ this.tf.emitter.off(['after-filtering'], ()=> this.calc());
+ }
}
diff --git a/docs/file/src/extensions/colsVisibility/colsVisibility.js.html b/docs/file/src/extensions/colsVisibility/colsVisibility.js.html
index afcc3dd0..1e985497 100644
--- a/docs/file/src/extensions/colsVisibility/colsVisibility.js.html
+++ b/docs/file/src/extensions/colsVisibility/colsVisibility.js.html
@@ -3,7 +3,7 @@
- src/extensions/colsVisibility/colsVisibility.js | tablefilter v0.0.23 API Document
+ src/extensions/colsVisibility/colsVisibility.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/extensions/filtersVisibility/filtersVisibility.js.html b/docs/file/src/extensions/filtersVisibility/filtersVisibility.js.html
index a8ddf5da..7edce0ab 100644
--- a/docs/file/src/extensions/filtersVisibility/filtersVisibility.js.html
+++ b/docs/file/src/extensions/filtersVisibility/filtersVisibility.js.html
@@ -3,7 +3,7 @@
- src/extensions/filtersVisibility/filtersVisibility.js | tablefilter v0.0.23 API Document
+ src/extensions/filtersVisibility/filtersVisibility.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/extensions/sort/adapterSortabletable.js.html b/docs/file/src/extensions/sort/adapterSortabletable.js.html
index 3adb449a..76efdb5d 100644
--- a/docs/file/src/extensions/sort/adapterSortabletable.js.html
+++ b/docs/file/src/extensions/sort/adapterSortabletable.js.html
@@ -3,7 +3,7 @@
- src/extensions/sort/adapterSortabletable.js | tablefilter v0.0.23 API Document
+ src/extensions/sort/adapterSortabletable.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -115,6 +116,7 @@ export default class AdapterSortableTable{
opts.on_after_sort : null;
this.tf = tf;
+ this.emitter = tf.emitter;
}
init(){
@@ -154,42 +156,6 @@ export default class AdapterSortableTable{
this.stt.onsort = function(){
adpt.sorted = true;
- //rows alternating bg issue
- // TODO: move into AlternateRows component
- if(tf.alternateRows){
- let rows = tf.tbl.rows, c = 0;
-
- let setClass = function(row, i, removeOnly){
- if(Types.isUndef(removeOnly)){
- removeOnly = false;
- }
- let altRows = tf.feature('alternateRows'),
- oddCls = altRows.oddCss,
- evenCls = altRows.evenCss;
- Dom.removeClass(row, oddCls);
- Dom.removeClass(row, evenCls);
-
- if(!removeOnly){
- Dom.addClass(row, i % 2 ? oddCls : evenCls);
- }
- };
-
- for (let i = tf.refRow; i < tf.nbRows; i++){
- let isRowValid = rows[i].getAttribute('validRow');
- if(tf.paging && rows[i].style.display === ''){
- setClass(rows[i], c);
- c++;
- } else {
- if((isRowValid==='true' || isRowValid===null) &&
- rows[i].style.display === ''){
- setClass(rows[i], c);
- c++;
- } else {
- setClass(rows[i], c, true);
- }
- }
- }
- }
//sort behaviour for paging
if(tf.paging){
let paginator = tf.feature('paging');
@@ -202,6 +168,8 @@ export default class AdapterSortableTable{
if(adpt.onAfterSort){
adpt.onAfterSort.call(null, tf, adpt.stt.sortColumn);
}
+
+ adpt.emitter.emit('column-sorted', tf, adpt.stt.sortColumn);
};
this.initialized = true;
diff --git a/docs/file/src/extensions/sort/sort.js.html b/docs/file/src/extensions/sort/sort.js.html
index 4582a7f9..2bf600ad 100644
--- a/docs/file/src/extensions/sort/sort.js.html
+++ b/docs/file/src/extensions/sort/sort.js.html
@@ -3,7 +3,7 @@
- src/extensions/sort/sort.js | tablefilter v0.0.23 API Document
+ src/extensions/sort/sort.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/helpers.js.html b/docs/file/src/helpers.js.html
index 6b3ceb33..bc8d5100 100644
--- a/docs/file/src/helpers.js.html
+++ b/docs/file/src/helpers.js.html
@@ -3,7 +3,7 @@
- src/helpers.js | tablefilter v0.0.23 API Document
+ src/helpers.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/modules/alternateRows.js.html b/docs/file/src/modules/alternateRows.js.html
index 2fa2e224..9299d6dd 100644
--- a/docs/file/src/modules/alternateRows.js.html
+++ b/docs/file/src/modules/alternateRows.js.html
@@ -3,7 +3,7 @@
- src/modules/alternateRows.js | tablefilter v0.0.23 API Document
+ src/modules/alternateRows.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -94,9 +95,24 @@ export class AlternateRows extends Feature {
return;
}
+ this.processAll();
+
+ // Subscribe to events
+ this.emitter.on(['row-processed', 'row-paged'],
+ (tf, rowIndex, arrIndex, isValid)=>
+ this.processRow(rowIndex, arrIndex, isValid));
+ this.emitter.on(['column-sorted'], ()=> this.processAll());
+
+ this.initialized = true;
+ }
+
+ processAll() {
+ if(!this.isEnabled()){
+ return;
+ }
var tf = this.tf;
- var validRowsIndex = tf.validRowsIndex;
- var noValidRowsIndex = validRowsIndex===null;
+ var validRowsIndex = tf.getValidRows(true);
+ var noValidRowsIndex = validRowsIndex.length === 0;
//1st index
var beginIndex = noValidRowsIndex ? tf.refRow : 0;
// nb indexes
@@ -111,7 +127,19 @@ export class AlternateRows extends Feature {
this.setRowBg(rowIdx, idx);
idx++;
}
- this.initialized = true;
+ }
+
+ /**
+ * Set/remove row background based on row validation
+ * @param {Number} rowIdx Row index
+ * @param {Boolean} isValid Valid row flag
+ */
+ processRow(rowIdx, arrIdx, isValid) {
+ if(isValid){
+ this.setRowBg(rowIdx, arrIdx);
+ } else {
+ this.removeRowBg(rowIdx);
+ }
}
/**
@@ -154,9 +182,16 @@ export class AlternateRows extends Feature {
if(!this.initialized){
return;
}
- for(var i=this.tf.refRow; i<this.tf.nbRows; i++){
+ for(var i=0; i<this.tf.nbRows; i++){
this.removeRowBg(i);
}
+
+ // Unsubscribe to events
+ this.emitter.off(['row-processed', 'row-paged'],
+ (tf, rowIndex, arrIndex, isValid)=>
+ this.processRow(rowIndex, arrIndex, isValid));
+ this.emitter.off(['column-sorted'], ()=> this.processAll());
+
this.initialized = false;
}
diff --git a/docs/file/src/modules/checkList.js.html b/docs/file/src/modules/checkList.js.html
index 7a03732b..cd6f5fc5 100644
--- a/docs/file/src/modules/checkList.js.html
+++ b/docs/file/src/modules/checkList.js.html
@@ -3,7 +3,7 @@
- src/modules/checkList.js | tablefilter v0.0.23 API Document
+ src/modules/checkList.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,21 +68,24 @@
src/modules/checkList.js
-
import Dom from '../dom';
+import {Feature} from './feature';
+import Dom from '../dom';
import Arr from '../array';
import Str from '../string';
import Sort from '../sort';
import Event from '../event';
-export class CheckList{
+export class CheckList extends Feature{
/**
* Checklist UI component
* @param {Object} tf TableFilter instance
*/
constructor(tf){
+ super(tf, 'checkList');
+
// Configuration object
- var f = tf.config();
+ let f = tf.config();
this.checkListDiv = []; //checklist container div
//defines css class for div containing checklist filter
@@ -111,16 +115,14 @@ export class CheckList{
this.opts = null;
this.optsTxt = null;
this.excludedOpts = null;
-
- this.tf = tf;
}
- // TODO: move event here
onChange(evt){
let elm = evt.target;
- this.tf.activeFilterId = elm.getAttribute('id');
- this.tf.activeFlt = Dom.id(this.tf.activeFilterId);
- this.tf.Evt.onSlcChange.call(this.tf, evt);
+ let tf = this.tf;
+ tf.activeFilterId = elm.getAttribute('id');
+ tf.activeFlt = Dom.id(tf.activeFilterId);
+ tf.filter();
}
optionClick(evt){
@@ -128,18 +130,61 @@ export class CheckList{
this.onChange(evt);
}
+ onCheckListClick(evt){
+ let elm = Event.target(evt);
+ if(this.tf.loadFltOnDemand && elm.getAttribute('filled') === '0'){
+ let ct = elm.getAttribute('ct');
+ let div = this.checkListDiv[ct];
+ this.build(ct);
+ Event.remove(div, 'click', (evt)=> this.onCheckListClick(evt));
+ }
+ }
+
/**
- * Build checklist UI asynchronously
- * @param {Number} colIndex Column index
- * @param {Boolean} isExternal Render in external container
- * @param {String} extFltId External container id
+ * Initialize checklist filter
+ * @param {Number} colIndex Column index
+ * @param {Boolean} isExternal External filter flag
+ * @param {DOMElement} container Dom element containing the filter
*/
- build(colIndex, isExternal, extFltId){
- var tf = this.tf;
- tf.EvtManager(
- tf.Evt.name.checklist,
- { slcIndex:colIndex, slcExternal:isExternal, slcId:extFltId }
+ init(colIndex, isExternal, container){
+ let tf = this.tf;
+ let externalFltTgtId = isExternal ?
+ tf.externalFltTgtIds[colIndex] : null;
+
+ let divCont = Dom.create('div',
+ ['id', this.prfxCheckListDiv+colIndex+'_'+tf.id],
+ ['ct', colIndex], ['filled', '0']);
+ divCont.className = this.checkListDivCssClass;
+
+ //filter is appended in desired element
+ if(externalFltTgtId){
+ Dom.id(externalFltTgtId).appendChild(divCont);
+ tf.externalFltEls.push(divCont);
+ } else {
+ container.appendChild(divCont);
+ }
+
+ this.checkListDiv[colIndex] = divCont;
+ tf.fltIds.push(tf.prfxFlt+colIndex+'_'+tf.id);
+
+ if(!tf.loadFltOnDemand){
+ this.build(colIndex);
+ } else {
+ Event.add(divCont, 'click', (evt)=> this.onCheckListClick(evt));
+ divCont.appendChild(Dom.text(this.activateCheckListTxt));
+ }
+
+ this.emitter.on(
+ ['build-checklist-filter'],
+ (tf, colIndex, isExternal)=> this.build(colIndex, isExternal)
);
+
+ this.emitter.on(
+ ['select-checklist-options'],
+ (tf, colIndex, values)=> this.selectOptions(colIndex, values)
+ );
+
+ this.initialized = true;
}
/**
@@ -148,48 +193,50 @@ export class CheckList{
* @param {Boolean} isExternal Render in external container
* @param {String} extFltId External container id
*/
- _build(colIndex, isExternal=false, extFltId=null){
- var tf = this.tf;
+ build(colIndex, isExternal=false, extFltId=null){
+ let tf = this.tf;
colIndex = parseInt(colIndex, 10);
+ this.emitter.emit('before-populating-filter', tf, colIndex);
+
this.opts = [];
this.optsTxt = [];
- var divFltId = this.prfxCheckListDiv+colIndex+'_'+tf.id;
+ let divFltId = this.prfxCheckListDiv+colIndex+'_'+tf.id;
if((!Dom.id(divFltId) && !isExternal) ||
(!Dom.id(extFltId) && isExternal)){
return;
}
- var flt = !isExternal ? this.checkListDiv[colIndex] : Dom.id(extFltId);
- var ul = Dom.create(
+ let flt = !isExternal ? this.checkListDiv[colIndex] : Dom.id(extFltId);
+ let ul = Dom.create(
'ul', ['id', tf.fltIds[colIndex]], ['colIndex', colIndex]);
ul.className = this.checkListCssClass;
- Event.add(ul, 'change', (evt) => { this.onChange(evt); });
+ Event.add(ul, 'change', (evt)=> this.onChange(evt));
- var rows = tf.tbl.rows;
+ let rows = tf.tbl.rows;
this.isCustom = tf.isCustomOptions(colIndex);
- var activeFlt;
+ let activeFlt;
if(tf.linkedFilters && tf.activeFilterId){
activeFlt = tf.activeFilterId.split('_')[0];
activeFlt = activeFlt.split(tf.prfxFlt)[1];
}
- var filteredDataCol = [];
+ let filteredDataCol = [];
if(tf.linkedFilters && tf.disableExcludedOptions){
this.excludedOpts = [];
}
- for(var k=tf.refRow; k<tf.nbRows; k++){
+ for(let k=tf.refRow; k<tf.nbRows; k++){
// always visible rows don't need to appear on selects as always
// valid
if(tf.hasVisibleRows && tf.visibleRows.indexOf(k) !== -1){
continue;
}
- var cells = rows[k].cells;
- var ncells = cells.length;
+ let cells = rows[k].cells;
+ let ncells = cells.length;
// checks if row has exact cell #
if(ncells !== tf.nbCells || this.isCustom){
@@ -197,7 +244,7 @@ export class CheckList{
}
// this loop retrieves cell data
- for(var j=0; j<ncells; j++){
+ for(let j=0; j<ncells; j++){
// WTF: cyclomatic complexity hell :)
if((colIndex===j && (!tf.linkedFilters ||
(tf.linkedFilters && tf.disableExcludedOptions)))||
@@ -206,22 +253,21 @@ export class CheckList{
(tf.paging && ((!activeFlt || activeFlt===colIndex )||
(activeFlt!=colIndex &&
tf.validRowsIndex.indexOf(k) != -1)) )))){
- var cell_data = tf.getCellData(cells[j]);
+ let cell_data = tf.getCellData(cells[j]);
//Vary Peter's patch
- var cell_string = Str.matchCase(cell_data, tf.matchCase);
+ let cell_string = Str.matchCase(cell_data, tf.matchCase);
// checks if celldata is already in array
if(!Arr.has(this.opts, cell_string, tf.matchCase)){
this.opts.push(cell_data);
}
- var filteredCol = filteredDataCol[j];
+ let filteredCol = filteredDataCol[j];
if(tf.linkedFilters && tf.disableExcludedOptions){
if(!filteredCol){
filteredCol = tf.getFilteredDataCol(j);
}
if(!Arr.has(filteredCol, cell_string, tf.matchCase) &&
!Arr.has(this.excludedOpts,
- cell_string, tf.matchCase) &&
- !tf.isFirstLoad){
+ cell_string, tf.matchCase)){
this.excludedOpts.push(cell_data);
}
}
@@ -231,7 +277,7 @@ export class CheckList{
//Retrieves custom values
if(this.isCustom){
- var customValues = tf.getCustomOptions(colIndex);
+ let customValues = tf.getCustomOptions(colIndex);
this.opts = customValues[0];
this.optsTxt = customValues[1];
}
@@ -289,13 +335,15 @@ export class CheckList{
}//in case there are alphanumeric values
}
- this.addChecks(colIndex, ul, tf.separator);
+ this.addChecks(colIndex, ul);
if(tf.loadFltOnDemand){
flt.innerHTML = '';
}
flt.appendChild(ul);
flt.setAttribute('filled', '1');
+
+ this.emitter.emit('after-populating-filter', tf, colIndex, flt);
}
/**
@@ -304,55 +352,30 @@ export class CheckList{
* @param {Object} ul Ul element
*/
addChecks(colIndex, ul){
- var tf = this.tf;
- var chkCt = this.addTChecks(colIndex, ul);
- var fltArr = []; //remember grid values
- var store = tf.feature('store');
- var tmpVal = store ?
- store.getFilterValues(tf.fltsValuesCookie)[colIndex] : null;
- if(tmpVal && Str.trim(tmpVal).length > 0){
- if(tf.hasCustomSlcOptions &&
- tf.customSlcOptions.cols.indexOf(colIndex) != -1){
- fltArr.push(tmpVal);
- } else {
- fltArr = tmpVal.split(' '+tf.orOperator+' ');
- }
- }
+ let tf = this.tf;
+ let chkCt = this.addTChecks(colIndex, ul);
- for(var y=0; y<this.opts.length; y++){
- var val = this.opts[y]; //item value
- var lbl = this.isCustom ? this.optsTxt[y] : val; //item text
- var li = Dom.createCheckItem(
+ for(let y=0; y<this.opts.length; y++){
+ let val = this.opts[y]; //item value
+ let lbl = this.isCustom ? this.optsTxt[y] : val; //item text
+ let li = Dom.createCheckItem(
tf.fltIds[colIndex]+'_'+(y+chkCt), val, lbl);
li.className = this.checkListItemCssClass;
if(tf.linkedFilters && tf.disableExcludedOptions &&
Arr.has(this.excludedOpts,
- Str.matchCase(val, tf.matchCase), tf.matchCase)){
- Dom.addClass(li, this.checkListItemDisabledCssClass);
- li.check.disabled = true;
- li.disabled = true;
+ Str.matchCase(val, tf.matchCase), tf.matchCase)){
+ Dom.addClass(li, this.checkListItemDisabledCssClass);
+ li.check.disabled = true;
+ li.disabled = true;
} else {
- Event.add(li.check, 'click',
- (evt) => { this.optionClick(evt); });
+ Event.add(li.check, 'click', (evt)=> this.optionClick(evt));
}
ul.appendChild(li);
- if(val===''){
+ if(val === ''){
//item is hidden
li.style.display = 'none';
}
-
- /*** remember grid values ***/
- if(tf.rememberGridValues){
- if((tf.hasCustomSlcOptions &&
- tf.customSlcOptions.cols.indexOf(colIndex) != -1 &&
- fltArr.toString().indexOf(val) != -1) ||
- Arr.has(fltArr,
- Str.matchCase(val, tf.matchCase), tf.matchCase)){
- li.check.checked = true;
- this.setCheckListValues(li.check);
- }
- }
}
}
@@ -362,43 +385,37 @@ export class CheckList{
* @param {Object} ul Ul element
*/
addTChecks(colIndex, ul){
- var tf = this.tf;
- var chkCt = 1;
- var li0 = Dom.createCheckItem(
+ let tf = this.tf;
+ let chkCt = 1;
+ let li0 = Dom.createCheckItem(
tf.fltIds[colIndex]+'_0', '', tf.displayAllText);
li0.className = this.checkListItemCssClass;
ul.appendChild(li0);
- Event.add(li0.check, 'click', (evt) => {
- this.optionClick(evt);
- });
+ Event.add(li0.check, 'click', (evt)=> this.optionClick(evt));
if(!this.enableCheckListResetFilter){
li0.style.display = 'none';
}
if(tf.enableEmptyOption){
- var li1 = Dom.createCheckItem(
+ let li1 = Dom.createCheckItem(
tf.fltIds[colIndex]+'_1', tf.emOperator, tf.emptyText);
li1.className = this.checkListItemCssClass;
ul.appendChild(li1);
- Event.add(li1.check, 'click', (evt) => {
- this.optionClick(evt);
- });
+ Event.add(li1.check, 'click', (evt)=> this.optionClick(evt));
chkCt++;
}
if(tf.enableNonEmptyOption){
- var li2 = Dom.createCheckItem(
+ let li2 = Dom.createCheckItem(
tf.fltIds[colIndex]+'_2',
tf.nmOperator,
tf.nonEmptyText
);
li2.className = this.checkListItemCssClass;
ul.appendChild(li2);
- Event.add(li2.check, 'click', (evt) => {
- this.optionClick(evt);
- });
+ Event.add(li2.check, 'click', (evt)=> this.optionClick(evt));
chkCt++;
}
return chkCt;
@@ -412,32 +429,32 @@ export class CheckList{
if(!o){
return;
}
- var tf = this.tf;
- var chkValue = o.value; //checked item value
- var chkIndex = parseInt(o.id.split('_')[2], 10);
- var filterTag = 'ul', itemTag = 'li';
- var n = o;
+ let tf = this.tf;
+ let chkValue = o.value; //checked item value
+ let chkIndex = parseInt(o.id.split('_')[2], 10);
+ let filterTag = 'ul', itemTag = 'li';
+ let n = o;
//ul tag search
while(Str.lower(n.nodeName)!==filterTag){
n = n.parentNode;
}
- var li = n.childNodes[chkIndex];
- var colIndex = n.getAttribute('colIndex');
- var fltValue = n.getAttribute('value'); //filter value (ul tag)
- var fltIndexes = n.getAttribute('indexes'); //selected items (ul tag)
+ let li = n.childNodes[chkIndex];
+ let colIndex = n.getAttribute('colIndex');
+ let fltValue = n.getAttribute('value'); //filter value (ul tag)
+ let fltIndexes = n.getAttribute('indexes'); //selected items (ul tag)
if(o.checked){
//show all item
if(chkValue===''){
if((fltIndexes && fltIndexes!=='')){
//items indexes
- var indSplit = fltIndexes.split(tf.separator);
+ let indSplit = fltIndexes.split(tf.separator);
//checked items loop
- for(var u=0; u<indSplit.length; u++){
+ for(let u=0; u<indSplit.length; u++){
//checked item
- var cChk = Dom.id(tf.fltIds[colIndex]+'_'+indSplit[u]);
+ let cChk = Dom.id(tf.fltIds[colIndex]+'_'+indSplit[u]);
if(cChk){
cChk.checked = false;
Dom.removeClass(
@@ -455,7 +472,7 @@ export class CheckList{
chkValue = Str.trim(
fltValue+' '+chkValue+' '+tf.orOperator);
chkIndex = fltIndexes + chkIndex + tf.separator;
- n.setAttribute('value', chkValue );
+ n.setAttribute('value', chkValue);
n.setAttribute('indexes', chkIndex);
//1st option unchecked
if(Dom.id(tf.fltIds[colIndex]+'_0')){
@@ -470,12 +487,12 @@ export class CheckList{
}
} else { //removes values and indexes
if(chkValue!==''){
- var replaceValue = new RegExp(
+ let replaceValue = new RegExp(
Str.rgxEsc(chkValue+' '+tf.orOperator));
fltValue = fltValue.replace(replaceValue,'');
n.setAttribute('value', Str.trim(fltValue));
- var replaceIndex = new RegExp(
+ let replaceIndex = new RegExp(
Str.rgxEsc(chkIndex + tf.separator));
fltIndexes = fltIndexes.replace(replaceIndex, '');
n.setAttribute('indexes', fltIndexes);
@@ -485,6 +502,51 @@ export class CheckList{
}
}
}
+
+ /**
+ * Select filter options programmatically
+ * @param {Number} colIndex Column index
+ * @param {Array} values Array of option values to select
+ */
+ selectOptions(colIndex, values=[]){
+ let tf = this.tf;
+ if(tf.getFilterType(colIndex) !== tf.fltTypeCheckList ||
+ values.length === 0){
+ return;
+ }
+ let flt = tf.getFilterElement(colIndex);
+
+ let lisNb = Dom.tag(flt, 'li').length;
+
+ flt.setAttribute('value', '');
+ flt.setAttribute('indexes', '');
+
+ for(let k=0; k<lisNb; k++){
+ let li = Dom.tag(flt, 'li')[k],
+ lbl = Dom.tag(li, 'label')[0],
+ chk = Dom.tag(li, 'input')[0],
+ lblTxt = Str.matchCase(Dom.getText(lbl), tf.caseSensitive);
+ if(lblTxt !== '' && Arr.has(values, lblTxt, tf.caseSensitive)){
+ chk.checked = true;
+ this.setCheckListValues(chk);
+ }
+ else{
+ chk.checked = false;
+ this.setCheckListValues(chk);
+ }
+ }
+ }
+
+ destroy(){
+ this.emitter.off(
+ ['build-checklist-filter'],
+ (tf, colIndex, isExternal)=> this.build(colIndex, isExternal)
+ );
+ this.emitter.off(
+ ['select-checklist-options'],
+ (tf, colIndex, values)=> this.selectOptions(colIndex, values)
+ );
+ }
}
diff --git a/docs/file/src/modules/clearButton.js.html b/docs/file/src/modules/clearButton.js.html
index 059cda03..a182e4f0 100644
--- a/docs/file/src/modules/clearButton.js.html
+++ b/docs/file/src/modules/clearButton.js.html
@@ -3,7 +3,7 @@
- src/modules/clearButton.js | tablefilter v0.0.23 API Document
+ src/modules/clearButton.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/modules/dropdown.js.html b/docs/file/src/modules/dropdown.js.html
index 442a5372..4adc8426 100644
--- a/docs/file/src/modules/dropdown.js.html
+++ b/docs/file/src/modules/dropdown.js.html
@@ -3,7 +3,7 @@
- src/modules/dropdown.js | tablefilter v0.0.23 API Document
+ src/modules/dropdown.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,20 +68,24 @@
src/modules/dropdown.js
-
import Dom from '../dom';
+import {Feature} from './feature';
+import Dom from '../dom';
import Arr from '../array';
import Str from '../string';
import Sort from '../sort';
+import Event from '../event';
-export class Dropdown{
+export class Dropdown extends Feature{
/**
* Dropdown UI component
* @param {Object} tf TableFilter instance
*/
constructor(tf){
+ super(tf, 'dropdown');
+
// Configuration object
- var f = tf.config();
+ let f = tf.config();
this.enableSlcResetFilter = f.enable_slc_reset_filter===false ?
false : true;
@@ -99,51 +104,108 @@ export class Dropdown{
this.opts = null;
this.optsTxt = null;
this.slcInnerHtml = null;
+ }
- this.tf = tf;
+ onSlcFocus(e) {
+ let elm = Event.target(e);
+ let tf = this.tf;
+ tf.activeFilterId = elm.getAttribute('id');
+ tf.activeFlt = Dom.id(tf.activeFilterId);
+ // select is populated when element has focus
+ if(tf.loadFltOnDemand && elm.getAttribute('filled') === '0'){
+ let ct = elm.getAttribute('ct');
+ this.build(ct);
+ }
+ this.emitter.emit('filter-focus', tf, this);
+ }
+
+ onSlcChange() {
+ if(this.tf.onSlcChange){
+ this.tf.filter();
+ }
}
/**
- * Build drop-down filter UI asynchronously
- * @param {Number} colIndex Column index
- * @param {Boolean} isLinked Enable linked refresh behaviour
- * @param {Boolean} isExternal Render in external container
- * @param {String} extSlcId External container id
+ * Initialize drop-down filter
+ * @param {Number} colIndex Column index
+ * @param {Boolean} isExternal External filter flag
+ * @param {DOMElement} container Dom element containing the filter
*/
- build(colIndex, isLinked, isExternal, extSlcId){
- var tf = this.tf;
- tf.EvtManager(
- tf.Evt.name.dropdown,
- {
- slcIndex: colIndex,
- slcRefreshed: isLinked,
- slcExternal: isExternal,
- slcId: extSlcId
- }
+ init(colIndex, isExternal, container){
+ let tf = this.tf;
+ let col = tf.getFilterType(colIndex);
+ let externalFltTgtId = isExternal ?
+ tf.externalFltTgtIds[colIndex] : null;
+
+ let slc = Dom.create(tf.fltTypeSlc,
+ ['id', tf.prfxFlt+colIndex+'_'+tf.id],
+ ['ct', colIndex], ['filled', '0']
);
+
+ if(col === tf.fltTypeMulti){
+ slc.multiple = tf.fltTypeMulti;
+ slc.title = this.multipleSlcTooltip;
+ }
+ slc.className = Str.lower(col) === tf.fltTypeSlc ?
+ tf.fltCssClass : tf.fltMultiCssClass;
+
+ //filter is appended in container element
+ if(externalFltTgtId){
+ Dom.id(externalFltTgtId).appendChild(slc);
+ tf.externalFltEls.push(slc);
+ } else {
+ container.appendChild(slc);
+ }
+
+ tf.fltIds.push(slc.id);
+
+ if(!tf.loadFltOnDemand){
+ this.build(colIndex);
+ } else {
+ //1st option is created here since build isn't invoked
+ let opt0 = Dom.createOpt(tf.displayAllText, '');
+ slc.appendChild(opt0);
+ }
+
+ Event.add(slc, 'change', ()=> this.onSlcChange());
+ Event.add(slc, 'focus', (e)=> this.onSlcFocus(e));
+
+ this.emitter.on(
+ ['build-select-filter'],
+ (tf, colIndex, isLinked, isExternal)=>
+ this.build(colIndex, isLinked, isExternal)
+ );
+ this.emitter.on(
+ ['select-options'],
+ (tf, colIndex, values)=> this.selectOptions(colIndex, values)
+ );
+
+ this.initialized = true;
}
/**
* Build drop-down filter UI
* @param {Number} colIndex Column index
- * @param {Boolean} isLinked Enable linked refresh behaviour
+ * @param {Boolean} isLinked Enable linked refresh behaviour
* @param {Boolean} isExternal Render in external container
* @param {String} extSlcId External container id
*/
- _build(colIndex, isLinked=false, isExternal=false, extSlcId=null){
- var tf = this.tf;
+ build(colIndex, isLinked=false, isExternal=false, extSlcId=null){
+ let tf = this.tf;
colIndex = parseInt(colIndex, 10);
+ this.emitter.emit('before-populating-filter', tf, colIndex);
+
this.opts = [];
this.optsTxt = [];
this.slcInnerHtml = '';
- var slcId = tf.fltIds[colIndex];
+ let slcId = tf.fltIds[colIndex];
if((!Dom.id(slcId) && !isExternal) ||
(!Dom.id(extSlcId) && isExternal)){
return;
}
- var slc = !isExternal ? Dom.id(slcId) : Dom.id(extSlcId),
+ let slc = !isExternal ? Dom.id(slcId) : Dom.id(extSlcId),
rows = tf.tbl.rows,
matchCase = tf.matchCase;
@@ -151,41 +213,27 @@ export class Dropdown{
this.isCustom = tf.isCustomOptions(colIndex);
//custom selects text
- var activeFlt;
+ let activeFlt;
if(isLinked && tf.activeFilterId){
activeFlt = tf.activeFilterId.split('_')[0];
activeFlt = activeFlt.split(tf.prfxFlt)[1];
}
- /*** remember grid values ***/
- var fltsValues = [], fltArr = [];
- if(tf.rememberGridValues){
- fltsValues =
- tf.feature('store').getFilterValues(tf.fltsValuesCookie);
- if(fltsValues && !Str.isEmpty(fltsValues.toString())){
- if(this.isCustom){
- fltArr.push(fltsValues[colIndex]);
- } else {
- fltArr = fltsValues[colIndex].split(' '+tf.orOperator+' ');
- }
- }
- }
-
- var excludedOpts = null,
+ let excludedOpts = null,
filteredDataCol = null;
if(isLinked && tf.disableExcludedOptions){
excludedOpts = [];
filteredDataCol = [];
}
- for(var k=tf.refRow; k<tf.nbRows; k++){
+ for(let k=tf.refRow; k<tf.nbRows; k++){
// always visible rows don't need to appear on selects as always
// valid
if(tf.hasVisibleRows && tf.visibleRows.indexOf(k) !== -1){
continue;
}
- var cell = rows[k].cells,
+ let cell = rows[k].cells,
nchilds = cell.length;
// checks if row has exact cell #
@@ -194,7 +242,7 @@ export class Dropdown{
}
// this loop retrieves cell data
- for(var j=0; j<nchilds; j++){
+ for(let j=0; j<nchilds; j++){
// WTF: cyclomatic complexity hell
if((colIndex===j &&
(!isLinked ||
@@ -207,7 +255,7 @@ export class Dropdown{
((activeFlt===undefined || activeFlt==colIndex) ||
(activeFlt!=colIndex &&
tf.validRowsIndex.indexOf(k) != -1 ))) ))){
- var cell_data = tf.getCellData(cell[j]),
+ let cell_data = tf.getCellData(cell[j]),
//Vary Peter's patch
cell_string = Str.matchCase(cell_data, matchCase);
@@ -217,14 +265,13 @@ export class Dropdown{
}
if(isLinked && tf.disableExcludedOptions){
- var filteredCol = filteredDataCol[j];
+ let filteredCol = filteredDataCol[j];
if(!filteredCol){
filteredCol = tf.getFilteredDataCol(j);
}
if(!Arr.has(filteredCol, cell_string, matchCase) &&
!Arr.has(
- excludedOpts, cell_string, matchCase) &&
- !this.isFirstLoad){
+ excludedOpts, cell_string, matchCase)){
excludedOpts.push(cell_data);
}
}
@@ -234,7 +281,7 @@ export class Dropdown{
//Retrieves custom values
if(this.isCustom){
- var customValues = tf.getCustomOptions(colIndex);
+ let customValues = tf.getCustomOptions(colIndex);
this.opts = customValues[0];
this.optsTxt = customValues[1];
}
@@ -293,8 +340,9 @@ export class Dropdown{
}
//populates drop-down
- this.addOptions(
- colIndex, slc, isLinked, excludedOpts, fltsValues, fltArr);
+ this.addOptions(colIndex, slc, isLinked, excludedOpts);
+
+ this.emitter.emit('after-populating-filter', tf, colIndex, slc);
}
/**
@@ -303,24 +351,22 @@ export class Dropdown{
* @param {Object} slc Select Dom element
* @param {Boolean} isLinked Enable linked refresh behaviour
* @param {Array} excludedOpts Array of excluded options
- * @param {Array} fltsValues Collection of persisted filter values
- * @param {Array} fltArr Collection of persisted filter values
*/
- addOptions(colIndex, slc, isLinked, excludedOpts, fltsValues, fltArr){
- var tf = this.tf,
+ addOptions(colIndex, slc, isLinked, excludedOpts){
+ let tf = this.tf,
fillMethod = Str.lower(this.slcFillingMethod),
slcValue = slc.value;
slc.innerHTML = '';
slc = this.addFirstOption(slc);
- for(var y=0; y<this.opts.length; y++){
+ for(let y=0; y<this.opts.length; y++){
if(this.opts[y]===''){
continue;
}
- var val = this.opts[y]; //option value
- var lbl = this.isCustom ? this.optsTxt[y] : val; //option text
- var isDisabled = false;
+ let val = this.opts[y]; //option value
+ let lbl = this.isCustom ? this.optsTxt[y] : val; //option text
+ let isDisabled = false;
if(isLinked && tf.disableExcludedOptions &&
Arr.has(
excludedOpts,
@@ -331,7 +377,7 @@ export class Dropdown{
}
if(fillMethod === 'innerhtml'){
- var slcAttr = '';
+ let slcAttr = '';
if(tf.loadFltOnDemand && slcValue===this.opts[y]){
slcAttr = 'selected="selected"';
}
@@ -339,30 +385,13 @@ export class Dropdown{
(isDisabled ? 'disabled="disabled"' : '')+ '>' +
lbl+'</option>';
} else {
- var opt;
+ let opt;
//fill select on demand
if(tf.loadFltOnDemand && slcValue===this.opts[y] &&
tf.getFilterType(colIndex) === tf.fltTypeSlc){
opt = Dom.createOpt(lbl, val, true);
} else {
- if(tf.getFilterType(colIndex) !== tf.fltTypeMulti){
- opt = Dom.createOpt(
- lbl,
- val,
- (fltsValues[colIndex]!==' ' &&
- val===fltsValues[colIndex]) ? true : false
- );
- } else {
- opt = Dom.createOpt(
- lbl,
- val,
- (Arr.has(fltArr,
- Str.matchCase(this.opts[y], tf.matchCase),
- tf.matchCase) ||
- fltArr.toString().indexOf(val)!== -1) ?
- true : false
- );
- }
+ opt = Dom.createOpt(lbl, val, false);
}
if(isDisabled){
opt.disabled = true;
@@ -382,7 +411,7 @@ export class Dropdown{
* @param {Object} slc Select DOM element
*/
addFirstOption(slc){
- var tf = this.tf,
+ let tf = this.tf,
fillMethod = Str.lower(this.slcFillingMethod);
if(fillMethod === 'innerhtml'){
@@ -390,24 +419,61 @@ export class Dropdown{
'</option>';
}
else {
- var opt0 = Dom.createOpt(
+ let opt0 = Dom.createOpt(
(!this.enableSlcResetFilter ? '' : tf.displayAllText),'');
if(!this.enableSlcResetFilter){
opt0.style.display = 'none';
}
slc.appendChild(opt0);
if(tf.enableEmptyOption){
- var opt1 = Dom.createOpt(tf.emptyText, tf.emOperator);
+ let opt1 = Dom.createOpt(tf.emptyText, tf.emOperator);
slc.appendChild(opt1);
}
if(tf.enableNonEmptyOption){
- var opt2 = Dom.createOpt(tf.nonEmptyText, tf.nmOperator);
+ let opt2 = Dom.createOpt(tf.nonEmptyText, tf.nmOperator);
slc.appendChild(opt2);
}
}
return slc;
}
+ /**
+ * Select filter options programmatically
+ * @param {Number} colIndex Column index
+ * @param {Array} values Array of option values to select
+ */
+ selectOptions(colIndex, values=[]){
+ let tf = this.tf;
+ if(tf.getFilterType(colIndex) !== tf.fltTypeMulti ||
+ values.length === 0){
+ return;
+ }
+ let slc = tf.getFilterElement(colIndex);
+ [].forEach.call(slc.options, (option)=> {
+ // Empty value means clear all selections and first option is the
+ // clear all option
+ if(values[0] === '' || option.value === ''){
+ option.selected = false;
+ }
+
+ if(option.value !== '' &&
+ Arr.has(values, option.value, true)){
+ option.selected = true;
+ }//if
+ });
+ }
+
+ destroy(){
+ this.emitter.off(
+ ['build-select-filter'],
+ (colIndex, isLinked, isExternal)=>
+ this.build(colIndex, isLinked, isExternal)
+ );
+ this.emitter.off(
+ ['select-options'],
+ (tf, colIndex, values)=> this.selectOptions(colIndex, values)
+ );
+ }
}
diff --git a/docs/file/src/modules/feature.js.html b/docs/file/src/modules/feature.js.html
index 4ae36038..30e804d7 100644
--- a/docs/file/src/modules/feature.js.html
+++ b/docs/file/src/modules/feature.js.html
@@ -3,7 +3,7 @@
- src/modules/feature.js | tablefilter v0.0.23 API Document
+ src/modules/feature.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -76,6 +77,7 @@ export class Feature {
this.feature = feature;
this.enabled = tf[feature];
this.config = tf.config();
+ this.emitter = tf.emitter;
this.initialized = false;
}
diff --git a/docs/file/src/modules/gridLayout.js.html b/docs/file/src/modules/gridLayout.js.html
index 9d81f3bc..d461a5c5 100644
--- a/docs/file/src/modules/gridLayout.js.html
+++ b/docs/file/src/modules/gridLayout.js.html
@@ -3,7 +3,7 @@
- src/modules/gridLayout.js | tablefilter v0.0.23 API Document
+ src/modules/gridLayout.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -82,7 +83,7 @@ export class GridLayout extends Feature{
constructor(tf){
super(tf, 'gridLayout');
- var f = this.config;
+ let f = this.config;
//defines grid width
this.gridWidth = f.grid_width || null;
@@ -123,27 +124,35 @@ export class GridLayout extends Feature{
this.prfxGridTh = 'tblHeadTh_';
this.sourceTblHtml = tf.tbl.outerHTML;
+
+ // filters flag at TF level
+ tf.fltGrid = this.gridEnableFilters;
}
/**
* Generates a grid with fixed headers
*/
init(){
- var tf = this.tf;
- var f = this.config;
- var tbl = tf.tbl;
+ let tf = this.tf;
+ let f = this.config;
+ let tbl = tf.tbl;
if(this.initialized){
return;
}
+ // Override reference rows indexes
+ tf.refRow = Types.isNull(tf.startRow) ? 0 : tf.startRow;
+ tf.headersRow = 0;
+ tf.filtersRowIndex = 1;
+
tf.isExternalFlt = true;
// default width of 100px if column widths not set
if(!tf.hasColWidths){
tf.colWidths = [];
- for(var k=0; k<tf.nbCells; k++){
- var colW,
+ for(let k=0; k<tf.nbCells; k++){
+ let colW,
cell = tbl.rows[this.gridHeadRowIndex].cells[k];
if(cell.width !== ''){
colW = cell.width;
@@ -158,7 +167,7 @@ export class GridLayout extends Feature{
}
tf.setColWidths(this.gridHeadRowIndex);
- var tblW;//initial table width
+ let tblW;//initial table width
if(tbl.width !== ''){
tblW = tbl.width;
}
@@ -191,7 +200,7 @@ export class GridLayout extends Feature{
this.tblCont.style.height = this.gridHeight;
}
tbl.parentNode.insertBefore(this.tblCont, tbl);
- var t = Dom.remove(tbl);
+ let t = Dom.remove(tbl);
this.tblCont.appendChild(t);
//In case table width is expressed in %
@@ -200,7 +209,7 @@ export class GridLayout extends Feature{
tbl.clientWidth : tblW) + 'px';
}
- var d = Dom.remove(this.tblCont);
+ let d = Dom.remove(this.tblCont);
this.tblMainCont.appendChild(d);
//Headers table container: div wrapping headers table
@@ -217,15 +226,15 @@ export class GridLayout extends Feature{
//Headers table
this.headTbl = Dom.create('table', ['id', this.prfxHeadTbl + tf.id]);
- var tH = Dom.create('tHead');
+ let tH = Dom.create('tHead');
//1st row should be headers row, ids are added if not set
//Those ids are used by the sort feature
- var hRow = tbl.rows[this.gridHeadRowIndex];
- var sortTriggers = [];
- for(var n=0; n<tf.nbCells; n++){
- var c = hRow.cells[n];
- var thId = c.getAttribute('id');
+ let hRow = tbl.rows[this.gridHeadRowIndex];
+ let sortTriggers = [];
+ for(let n=0; n<tf.nbCells; n++){
+ let c = hRow.cells[n];
+ let thId = c.getAttribute('id');
if(!thId || thId===''){
thId = this.prfxGridTh+n+'_'+tf.id;
c.setAttribute('id', thId);
@@ -234,24 +243,24 @@ export class GridLayout extends Feature{
}
//Filters row is created
- var filtersRow = Dom.create('tr');
+ let filtersRow = Dom.create('tr');
if(this.gridEnableFilters && tf.fltGrid){
tf.externalFltTgtIds = [];
- for(var j=0; j<tf.nbCells; j++){
- var fltTdId = tf.prfxFlt+j+ this.prfxGridFltTd +tf.id;
- var cl = Dom.create(tf.fltCellTag, ['id', fltTdId]);
+ for(let j=0; j<tf.nbCells; j++){
+ let fltTdId = tf.prfxFlt+j+ this.prfxGridFltTd +tf.id;
+ let cl = Dom.create(tf.fltCellTag, ['id', fltTdId]);
filtersRow.appendChild(cl);
tf.externalFltTgtIds[j] = fltTdId;
}
}
//Headers row are moved from content table to headers table
- for(var i=0; i<this.gridHeadRows.length; i++){
- var headRow = tbl.rows[this.gridHeadRows[0]];
+ for(let i=0; i<this.gridHeadRows.length; i++){
+ let headRow = tbl.rows[this.gridHeadRows[0]];
tH.appendChild(headRow);
}
this.headTbl.appendChild(tH);
if(tf.filtersRowIndex === 0){
- tH.insertBefore(filtersRow,hRow);
+ tH.insertBefore(filtersRow, hRow);
} else {
tH.appendChild(filtersRow);
}
@@ -260,7 +269,7 @@ export class GridLayout extends Feature{
this.tblCont.parentNode.insertBefore(this.headTblCont, this.tblCont);
//THead needs to be removed in content table for sort feature
- var thead = Dom.tag(tbl, 'thead');
+ let thead = Dom.tag(tbl, 'thead');
if(thead.length>0){
tbl.removeChild(thead[0]);
}
@@ -285,15 +294,15 @@ export class GridLayout extends Feature{
//scroll synchronisation
Event.add(this.tblCont, 'scroll', (evt)=> {
- var elm = Event.target(evt);
- var scrollLeft = elm.scrollLeft;
+ let elm = Event.target(evt);
+ let scrollLeft = elm.scrollLeft;
this.headTblCont.scrollLeft = scrollLeft;
//New pointerX calc taking into account scrollLeft
// if(!o.isPointerXOverwritten){
// try{
// o.Evt.pointerX = function(evt){
- // var e = evt || global.event;
- // var bdScrollLeft = tf_StandardBody().scrollLeft +
+ // let e = evt || global.event;
+ // let bdScrollLeft = tf_StandardBody().scrollLeft +
// scrollLeft;
// return (e.pageX + scrollLeft) ||
// (e.clientX + bdScrollLeft);
@@ -306,7 +315,7 @@ export class GridLayout extends Feature{
});
//Configure sort extension if any
- var sort = (f.extensions || []).filter(function(itm){
+ let sort = (f.extensions || []).filter(function(itm){
return itm.name === 'sort';
});
if(sort.length === 1){
@@ -319,9 +328,9 @@ export class GridLayout extends Feature{
//Col elements are enough to keep column widths after sorting and
//filtering
- var createColTags = function(){
- for(var k=(tf.nbCells-1); k>=0; k--){
- var col = Dom.create('col', ['id', tf.id+'_col_'+k]);
+ let createColTags = function(){
+ for(let k=(tf.nbCells-1); k>=0; k--){
+ let col = Dom.create('col', ['id', tf.id+'_col_'+k]);
tbl.insertBefore(col, tbl.firstChild);
col.style.width = tf.colWidths[k];
this.gridColElms[k] = col;
@@ -332,26 +341,26 @@ export class GridLayout extends Feature{
if(!this.tblHasColTag){
createColTags.call(this);
} else {
- var cols = Dom.tag(tbl, 'col');
- for(var ii=0; ii<tf.nbCells; ii++){
+ let cols = Dom.tag(tbl, 'col');
+ for(let ii=0; ii<tf.nbCells; ii++){
cols[ii].setAttribute('id', tf.id+'_col_'+ii);
cols[ii].style.width = tf.colWidths[ii];
this.gridColElms.push(cols[ii]);
}
}
- var afterColResizedFn = Types.isFn(f.on_after_col_resized) ?
+ let afterColResizedFn = Types.isFn(f.on_after_col_resized) ?
f.on_after_col_resized : null;
f.on_after_col_resized = function(o, colIndex){
if(!colIndex){
return;
}
- var w = o.crWColsRow.cells[colIndex].style.width;
- var col = o.gridColElms[colIndex];
+ let w = o.crWColsRow.cells[colIndex].style.width;
+ let col = o.gridColElms[colIndex];
col.style.width = w;
- var thCW = o.crWColsRow.cells[colIndex].clientWidth;
- var tdCW = o.crWRowDataTbl.cells[colIndex].clientWidth;
+ let thCW = o.crWColsRow.cells[colIndex].clientWidth;
+ let tdCW = o.crWRowDataTbl.cells[colIndex].clientWidth;
if(thCW != tdCW){
o.headTbl.style.width = tbl.clientWidth+'px';
@@ -377,13 +386,13 @@ export class GridLayout extends Feature{
* Removes the grid layout
*/
destroy(){
- var tf = this.tf;
- var tbl = tf.tbl;
+ let tf = this.tf;
+ let tbl = tf.tbl;
if(!this.initialized){
return;
}
- var t = Dom.remove(tbl);
+ let t = Dom.remove(tbl);
this.tblMainCont.parentNode.insertBefore(t, this.tblMainCont);
Dom.remove(this.tblMainCont);
@@ -394,7 +403,7 @@ export class GridLayout extends Feature{
tbl.outerHTML = this.sourceTblHtml;
//needed to keep reference of table element for future usage
- this.tf.tbl = t;
+ this.tf.tbl = Dom.id(tf.id);
this.initialized = false;
}
diff --git a/docs/file/src/modules/help.js.html b/docs/file/src/modules/help.js.html
index 585d1b2d..9187c82d 100644
--- a/docs/file/src/modules/help.js.html
+++ b/docs/file/src/modules/help.js.html
@@ -3,7 +3,7 @@
- src/modules/help.js | tablefilter v0.0.23 API Document
+ src/modules/help.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -128,6 +129,8 @@ export class Help extends Feature{
this.prfxHelpSpan = 'helpSpan_';
//id prefix for help elements
this.prfxHelpDiv = 'helpDiv_';
+
+ this.emitter.on(['init-help'], ()=> this.init());
}
init(){
diff --git a/docs/file/src/modules/highlightKeywords.js.html b/docs/file/src/modules/highlightKeywords.js.html
index 061024a1..e9660310 100644
--- a/docs/file/src/modules/highlightKeywords.js.html
+++ b/docs/file/src/modules/highlightKeywords.js.html
@@ -3,7 +3,7 @@
- src/modules/highlightKeywords.js | tablefilter v0.0.23 API Document
+ src/modules/highlightKeywords.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -69,6 +70,7 @@
src/modules/highlightKeywords.js
import Dom from '../dom';
import Str from '../string';
+import Types from '../types';
export class HighlightKeyword{
@@ -83,6 +85,19 @@ export class HighlightKeyword{
this.highlightedNodes = [];
this.tf = tf;
+ this.emitter = tf.emitter;
+ }
+
+ init(){
+ this.emitter.on(
+ ['before-filtering', 'destroy'],
+ ()=> this.unhighlightAll()
+ );
+ this.emitter.on(
+ ['highlight-keyword'],
+ (tf, cell, word)=>
+ this.highlight(cell, word, this.highlightCssClass)
+ );
}
/**
@@ -165,15 +180,32 @@ export class HighlightKeyword{
* Clear all occurrences of highlighted nodes
*/
unhighlightAll(){
- if(!this.tf.highlightKeywords || !this.tf.searchArgs){
+ if(!this.tf.highlightKeywords){
return;
}
- for(var y=0; y<this.tf.searchArgs.length; y++){
- this.unhighlight(
- this.tf.searchArgs[y], this.highlightCssClass);
- }
+ // iterate filters values to unhighlight all values
+ this.tf.getFiltersValue().forEach((val)=> {
+ if(Types.isArray(val)){
+ val.forEach((item)=>
+ this.unhighlight(item, this.highlightCssClass));
+ } else {
+ this.unhighlight(val, this.highlightCssClass);
+ }
+ });
this.highlightedNodes = [];
}
+
+ destroy(){
+ this.emitter.off(
+ ['before-filtering', 'destroy'],
+ ()=> this.unhighlightAll()
+ );
+ this.emitter.off(
+ ['highlight-keyword'],
+ (tf, cell, word)=>
+ this.highlight(cell, word, this.highlightCssClass)
+ );
+ }
}
diff --git a/docs/file/src/modules/loader.js.html b/docs/file/src/modules/loader.js.html
index 782cdaac..8aa558c6 100644
--- a/docs/file/src/modules/loader.js.html
+++ b/docs/file/src/modules/loader.js.html
@@ -3,7 +3,7 @@
- src/modules/loader.js | tablefilter v0.0.23 API Document
+ src/modules/loader.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -71,7 +72,7 @@
import Dom from '../dom';
import Types from '../types';
-var global = window;
+let global = window;
export class Loader extends Feature{
@@ -79,11 +80,11 @@ export class Loader extends Feature{
* Loading message/spinner
* @param {Object} tf TableFilter instance
*/
- constructor(tf){
+ constructor(tf) {
super(tf, 'loader');
// TableFilter configuration
- var f = this.config;
+ let f = this.config;
//id of container element
this.loaderTgtId = f.loader_target_id || null;
@@ -96,7 +97,7 @@ export class Loader extends Feature{
//defines css class for loader div
this.loaderCssClass = f.loader_css_class || 'loader';
//delay for hiding loader
- this.loaderCloseDelay = 200;
+ this.loaderCloseDelay = 250;
//callback function before loader is displayed
this.onShowLoader = Types.isFn(f.on_show_loader) ?
f.on_show_loader : null;
@@ -112,12 +113,13 @@ export class Loader extends Feature{
return;
}
- var tf = this.tf;
+ let tf = this.tf;
+ let emitter = this.emitter;
- var containerDiv = Dom.create('div', ['id', this.prfxLoader+tf.id]);
+ let containerDiv = Dom.create('div', ['id', this.prfxLoader+tf.id]);
containerDiv.className = this.loaderCssClass;
- var targetEl = !this.loaderTgtId ?
+ let targetEl = !this.loaderTgtId ?
tf.tbl.parentNode : Dom.id(this.loaderTgtId);
if(!this.loaderTgtId){
targetEl.insertBefore(containerDiv, tf.tbl);
@@ -132,15 +134,44 @@ export class Loader extends Feature{
}
this.show('none');
+
+ // Subscribe to events
+ emitter.on([
+ 'before-filtering',
+ 'before-populating-filter',
+ 'before-changing-page',
+ 'before-clearing-filters',
+ 'before-changing-results-per-page',
+ 'before-reset-page',
+ 'before-reset-page-length',
+ 'before-loading-extensions',
+ 'before-loading-themes'
+ ],
+ ()=> this.show('')
+ );
+ emitter.on([
+ 'after-filtering',
+ 'after-populating-filter',
+ 'after-changing-page',
+ 'after-clearing-filters',
+ 'after-changing-results-per-page',
+ 'after-reset-page',
+ 'after-reset-page-length',
+ 'after-loading-extensions',
+ 'after-loading-themes'
+ ],
+ ()=> this.show('none')
+ );
+
this.initialized = true;
}
show(p) {
- if(!this.isEnabled() || this.loaderDiv.style.display === p){
+ if(!this.isEnabled() /*|| this.loaderDiv.style.display === p*/){
return;
}
- var displayLoader = () => {
+ let displayLoader = () => {
if(!this.loaderDiv){
return;
}
@@ -153,17 +184,48 @@ export class Loader extends Feature{
}
};
- var t = p === 'none' ? this.loaderCloseDelay : 1;
+ let t = p === 'none' ? this.loaderCloseDelay : 1;
global.setTimeout(displayLoader, t);
}
- destroy(){
+ destroy() {
if(!this.initialized){
return;
}
+ let emitter = this.emitter;
+
Dom.remove(this.loaderDiv);
this.loaderDiv = null;
+
+ // Unsubscribe to events
+ emitter.off([
+ 'before-filtering',
+ 'before-populating-filter',
+ 'before-changing-page',
+ 'before-clearing-filters',
+ 'before-changing-results-per-page',
+ 'before-reset-page',
+ 'before-reset-page-length',
+ 'before-loading-extensions',
+ 'before-loading-themes'
+ ],
+ ()=> this.show('')
+ );
+ emitter.off([
+ 'after-filtering',
+ 'after-populating-filter',
+ 'after-changing-page',
+ 'after-clearing-filters',
+ 'after-changing-results-per-page',
+ 'after-reset-page',
+ 'after-reset-page-length',
+ 'after-loading-extensions',
+ 'after-loading-themes'
+ ],
+ ()=> this.show('none')
+ );
+
this.initialized = false;
}
}
diff --git a/docs/file/src/modules/noResults.js.html b/docs/file/src/modules/noResults.js.html
index 3876e3dd..745d136b 100644
--- a/docs/file/src/modules/noResults.js.html
+++ b/docs/file/src/modules/noResults.js.html
@@ -3,7 +3,7 @@
- src/modules/noResults.js | tablefilter v0.0.23 API Document
+ src/modules/noResults.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -128,10 +129,22 @@ export class NoResults extends Feature{
}
this.cont = cont;
+
+ // subscribe to after-filtering event
+ this.emitter.on(['after-filtering'], ()=> this.toggle());
+
this.initialized = true;
this.hide();
}
+ toggle(){
+ if(this.tf.nbVisibleRows > 0){
+ this.hide();
+ } else {
+ this.show();
+ }
+ }
+
show(){
if(!this.initialized || !this.isEnabled()){
return;
@@ -184,6 +197,9 @@ export class NoResults extends Feature{
}
Dom.remove(this.cont);
this.cont = null;
+ // unsubscribe to after-filtering event
+ this.emitter.off(['after-filtering'], ()=> this.toggle());
+
this.initialized = false;
}
}
diff --git a/docs/file/src/modules/paging.js.html b/docs/file/src/modules/paging.js.html
index 9f34f380..c575a6fe 100644
--- a/docs/file/src/modules/paging.js.html
+++ b/docs/file/src/modules/paging.js.html
@@ -3,7 +3,7 @@
- src/modules/paging.js | tablefilter v0.0.23 API Document
+ src/modules/paging.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -189,8 +190,8 @@ export class Paging extends Feature{
//span following pages select (contains ' of ')
this.prfxPgAfterSpan = 'pgafterspan_';
- var start_row = this.refRow;
- var nrows = this.nbRows;
+ var start_row = tf.refRow;
+ var nrows = tf.nbRows;
//calculates page nb
this.nbPages = Math.ceil((nrows-start_row)/this.pagingLength);
@@ -403,6 +404,9 @@ export class Paging extends Feature{
this.setPagingInfo(tf.validRowsIndex);
}
+ this.emitter.on(['after-filtering'], ()=> this.resetPagingInfo());
+ this.emitter.on(['initialized'], ()=> this.resetValues());
+
this.initialized = true;
}
@@ -412,45 +416,38 @@ export class Paging extends Feature{
*/
reset(filterTable=false){
var tf = this.tf;
- if(!tf.hasGrid() || this.isEnabled()){
+ if(this.isEnabled()){
return;
}
this.enable();
this.init();
- tf.resetValues();
+ // tf.resetValues();
if(filterTable){
tf.filter();
}
}
+ /**
+ * Reset paging info from scratch after a filtering process
+ */
+ resetPagingInfo(){
+ this.startPagingRow = 0;
+ this.currentPageNb = 1;
+ this.setPagingInfo(this.tf.validRowsIndex);
+ }
+
/**
* Calculate number of pages based on valid rows
* Refresh paging select according to number of pages
* @param {Array} validRows Collection of valid rows
*/
- setPagingInfo(validRows=[]){
+ setPagingInfo(validRows){
var tf = this.tf;
- var rows = tf.tbl.rows;
var mdiv = !this.pagingTgtId ? tf.mDiv : Dom.id(this.pagingTgtId);
var pgspan = Dom.id(this.prfxPgSpan+tf.id);
//store valid rows indexes
- tf.validRowsIndex = validRows;
-
- if(validRows.length === 0){
- //counts rows to be grouped
- for(var j=tf.refRow; j<tf.nbRows; j++){
- var row = rows[j];
- if(!row){
- continue;
- }
-
- var isRowValid = row.getAttribute('validRow');
- if(Types.isNull(isRowValid) || Boolean(isRowValid==='true')){
- tf.validRowsIndex.push(j);
- }
- }
- }
+ tf.validRowsIndex = validRows || tf.getValidRows(true);
//calculate nb of pages
this.nbPages = Math.ceil(tf.validRowsIndex.length/this.pagingLength);
@@ -486,7 +483,6 @@ export class Paging extends Feature{
*/
groupByPage(validRows){
var tf = this.tf;
- var alternateRows = tf.feature('alternateRows');
var rows = tf.tbl.rows;
var startPagingRow = parseInt(this.startPagingRow, 10);
var endPagingRow = startPagingRow + parseInt(this.pagingLength, 10);
@@ -501,25 +497,23 @@ export class Paging extends Feature{
var validRowIdx = tf.validRowsIndex[h];
var r = rows[validRowIdx];
var isRowValid = r.getAttribute('validRow');
+ var rowDisplayed = false;
if(h>=startPagingRow && h<endPagingRow){
if(Types.isNull(isRowValid) || Boolean(isRowValid==='true')){
r.style.display = '';
- }
- if(tf.alternateRows && alternateRows){
- alternateRows.setRowBg(validRowIdx, h);
+ rowDisplayed = true;
}
} else {
r.style.display = 'none';
- if(tf.alternateRows && alternateRows){
- alternateRows.removeRowBg(validRowIdx);
- }
}
+ this.emitter.emit('row-paged', tf, validRowIdx, h, rowDisplayed);
}
tf.nbVisibleRows = tf.validRowsIndex.length;
- //re-applies filter behaviours after filtering process
- tf.applyProps();
+
+ // broadcast grouping by page
+ this.emitter.emit('grouped-by-page', tf, this);
}
/**
@@ -573,9 +567,6 @@ export class Paging extends Feature{
var tf = this.tf;
var evt = this.evt;
- if(!tf.hasGrid() && !tf.isFirstLoad){
- return;
- }
if(this.resultsPerPageSlc || !this.resultsPerPage){
return;
}
@@ -638,53 +629,19 @@ export class Paging extends Feature{
this.resultsPerPageSlc = null;
}
- /**
- * Change the page asynchronously according to passed index
- * @param {Number} index Index of the page (0-n)
- */
- changePage(index){
- var tf = this.tf;
- var evt = tf.Evt;
- tf.EvtManager(evt.name.changepage, { pgIndex:index });
- }
-
- /**
- * Change rows asynchronously according to page results
- */
- changeResultsPerPage(){
- var tf = this.tf;
- var evt = tf.Evt;
- tf.EvtManager(evt.name.changeresultsperpage);
- }
-
- /**
- * Re-set asynchronously page nb at page re-load
- */
- resetPage(){
- var tf = this.tf;
- var evt = tf.Evt;
- tf.EvtManager(evt.name.resetpage);
- }
-
- /**
- * Re-set asynchronously page length at page re-load
- */
- resetPageLength(){
- var tf = this.tf;
- var evt = tf.Evt;
- tf.EvtManager(evt.name.resetpagelength);
- }
-
/**
* Change the page according to passed index
* @param {Number} index Index of the page (0-n)
*/
- _changePage(index){
+ changePage(index){
var tf = this.tf;
if(!this.isEnabled()){
return;
}
+
+ this.emitter.emit('before-changing-page', tf, index);
+
if(index === null){
index = this.pageSelectorType===tf.fltTypeSlc ?
this.pagingSlc.options.selectedIndex : (this.pagingSlc.value-1);
@@ -712,18 +669,23 @@ export class Paging extends Feature{
this.onAfterChangePage.call(null, this, index);
}
}
+
+ this.emitter.emit('after-changing-page', tf, index);
}
/**
* Change rows according to page results drop-down
* TODO: accept a parameter setting the results per page length
*/
- _changeResultsPerPage(){
+ changeResultsPerPage(){
var tf = this.tf;
if(!this.isEnabled()){
return;
}
+
+ this.emitter.emit('before-changing-results-per-page', tf);
+
var slcR = this.resultsPerPageSlc;
var slcPagesSelIndex = (this.pageSelectorType===tf.fltTypeSlc) ?
this.pagingSlc.selectedIndex :
@@ -747,33 +709,55 @@ export class Paging extends Feature{
tf.feature('store').savePageLength(tf.pgLenCookie);
}
}
+
+ this.emitter.emit('after-changing-results-per-page', tf);
+ }
+
+ /**
+ * Re-set persisted pagination info
+ */
+ resetValues(){
+ var tf = this.tf;
+ if(tf.rememberPageLen){
+ this.resetPageLength(tf.pgLenCookie);
+ }
+ if(tf.rememberPageNb){
+ this.resetPage(tf.pgNbCookie);
+ }
}
/**
* Re-set page nb at page re-load
*/
- _resetPage(name){
+ resetPage(name){
var tf = this.tf;
+ if(!this.isEnabled()){
+ return;
+ }
+ this.emitter.emit('before-reset-page', tf);
var pgnb = tf.feature('store').getPageNb(name);
- if(pgnb!==''){
+ if(pgnb !== ''){
this.changePage((pgnb-1));
}
+ this.emitter.emit('after-reset-page', tf, pgnb);
}
/**
* Re-set page length value at page re-load
*/
- _resetPageLength(name){
+ resetPageLength(name){
var tf = this.tf;
if(!this.isEnabled()){
return;
}
+ this.emitter.emit('before-reset-page-length', tf);
var pglenIndex = tf.feature('store').getPageLength(name);
if(pglenIndex!==''){
this.resultsPerPageSlc.options[pglenIndex].selected = true;
this.changeResultsPerPage();
}
+ this.emitter.emit('after-reset-page-length', tf, pglenIndex);
}
/**
@@ -845,6 +829,9 @@ export class Paging extends Feature{
this.removeResultsPerPage();
}
+ this.emitter.off(['after-filtering'], ()=> this.resetPagingInfo());
+ this.emitter.off(['initialized'], ()=> this.resetValues());
+
this.pagingSlc = null;
this.nbPages = 0;
this.disable();
diff --git a/docs/file/src/modules/popupFilter.js.html b/docs/file/src/modules/popupFilter.js.html
index 1a9f22d8..08bc0698 100644
--- a/docs/file/src/modules/popupFilter.js.html
+++ b/docs/file/src/modules/popupFilter.js.html
@@ -3,7 +3,7 @@
- src/modules/popupFilter.js | tablefilter v0.0.23 API Document
+ src/modules/popupFilter.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -84,7 +85,7 @@ export class PopupFilter extends Feature{
// Configuration object
var f = this.config;
- // Enable external filters behaviour
+ // Enable external filters
tf.isExternalFlt = true;
tf.externalFltTgtIds = [];
@@ -153,6 +154,12 @@ export class PopupFilter extends Feature{
}
var tf = this.tf;
+
+ // Override headers row index if no grouped headers
+ if(tf.headersRow <= 1){
+ tf.headersRow = 0;
+ }
+
for(var i=0; i<tf.nbCells; i++){
if(tf.getFilterType(i) === tf.fltTypeNone){
continue;
@@ -170,6 +177,15 @@ export class PopupFilter extends Feature{
this.popUpFltImgs[i] = popUpSpan.firstChild;
}
+ // subscribe to events
+ this.emitter.on(['before-filtering'], ()=> this.buildIcons());
+ this.emitter.on(['after-filtering'], ()=> this.closeAll());
+ this.emitter.on(['cell-processed'],
+ (tf, cellIndex)=> this.buildIcon(cellIndex, true));
+ this.emitter.on(['filters-row-inserted'], ()=> this.tf.headersRow++);
+ this.emitter.on(['before-filter-init'],
+ (tf, colIndex)=> this.build(colIndex));
+
this.initialized = true;
}
@@ -273,7 +289,7 @@ export class PopupFilter extends Feature{
}
/**
- * Build specified icon
+ * Apply specified icon state
* @param {Number} colIndex Column index
* @param {Boolean} active Apply active state
*/
@@ -314,6 +330,16 @@ export class PopupFilter extends Feature{
this.popUpFltElms = [];
this.popUpFltSpans = [];
this.popUpFltImgs = [];
+
+ // unsubscribe to events
+ this.emitter.off(['before-filtering'], ()=> this.buildIcons());
+ this.emitter.off(['after-filtering'], ()=> this.closeAll());
+ this.emitter.off(['cell-processed'],
+ (tf, cellIndex)=> this.buildIcon(cellIndex, true));
+ this.emitter.off(['filters-row-inserted'], ()=> this.tf.headersRow++);
+ this.emitter.off(['before-filter-init'],
+ (tf, colIndex)=> this.build(colIndex));
+
this.initialized = false;
}
diff --git a/docs/file/src/modules/rowsCounter.js.html b/docs/file/src/modules/rowsCounter.js.html
index ac10f2af..c1a11f4e 100644
--- a/docs/file/src/modules/rowsCounter.js.html
+++ b/docs/file/src/modules/rowsCounter.js.html
@@ -3,7 +3,7 @@
- src/modules/rowsCounter.js | tablefilter v0.0.23 API Document
+ src/modules/rowsCounter.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -145,6 +146,11 @@ export class RowsCounter extends Feature{
this.rowsCounterDiv = countDiv;
this.rowsCounterSpan = countSpan;
+ // subscribe to events
+ this.emitter.on(['after-filtering', 'grouped-by-page'],
+ ()=> this.refresh(tf.nbVisibleRows));
+ this.emitter.on(['rows-changed'], ()=> this.refresh());
+
this.initialized = true;
this.refresh();
}
@@ -201,6 +207,12 @@ export class RowsCounter extends Feature{
}
this.rowsCounterSpan = null;
this.rowsCounterDiv = null;
+
+ // unsubscribe to events
+ this.emitter.off(['after-filtering', 'grouped-by-page'],
+ ()=> this.refresh(tf.nbVisibleRows));
+ this.emitter.off(['rows-changed'], ()=> this.refresh());
+
this.initialized = false;
}
}
diff --git a/docs/file/src/modules/statusBar.js.html b/docs/file/src/modules/statusBar.js.html
index 91670e9c..26e0b643 100644
--- a/docs/file/src/modules/statusBar.js.html
+++ b/docs/file/src/modules/statusBar.js.html
@@ -3,7 +3,7 @@
- src/modules/statusBar.js | tablefilter v0.0.23 API Document
+ src/modules/statusBar.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -71,7 +72,7 @@
import Dom from '../dom';
import Types from '../types';
-var global = window;
+let global = window;
export class StatusBar extends Feature{
@@ -83,7 +84,7 @@ export class StatusBar extends Feature{
super(tf, 'statusBar');
// Configuration object
- var f = this.config;
+ let f = this.config;
//id of custom container element
this.statusBarTgtId = f.status_bar_target_id || null;
@@ -107,6 +108,33 @@ export class StatusBar extends Feature{
this.onAfterShowMsg = Types.isFn(f.on_after_show_msg) ?
f.on_after_show_msg : null;
+ //status messages
+ this.msgFilter = f.msg_filter || 'Filtering data...';
+ //populating drop-downs
+ this.msgPopulate = f.msg_populate || 'Populating filter...';
+ //populating drop-downs
+ this.msgPopulateCheckList = f.msg_populate_checklist ||
+ 'Populating list...';
+ //changing paging page
+ this.msgChangePage = f.msg_change_page || 'Collecting paging data...';
+ //clearing filters
+ this.msgClear = f.msg_clear || 'Clearing filters...';
+ //changing nb results/page
+ this.msgChangeResults = f.msg_change_results ||
+ 'Changing results per page...';
+ //re-setting page
+ this.msgResetPage = f.msg_reset_page || 'Re-setting page...';
+ //re-setting page length
+ this.msgResetPageLength = f.msg_reset_page_length ||
+ 'Re-setting page length...';
+ //table sorting
+ this.msgSort = f.msg_sort || 'Sorting data...';
+ //extensions loading
+ this.msgLoadExtensions = f.msg_load_extensions ||
+ 'Loading extensions...';
+ //themes loading
+ this.msgLoadThemes = f.msg_load_themes || 'Loading theme(s)...';
+
// status bar div
this.prfxStatus = 'status_';
// status bar label
@@ -120,16 +148,17 @@ export class StatusBar extends Feature{
return;
}
- var tf = this.tf;
+ let tf = this.tf;
+ let emitter = this.emitter;
//status bar container
- var statusDiv = Dom.create('div', ['id', this.prfxStatus+tf.id]);
+ let statusDiv = Dom.create('div', ['id', this.prfxStatus+tf.id]);
statusDiv.className = this.statusBarCssClass;
//status bar label
- var statusSpan = Dom.create('span', ['id', this.prfxStatusSpan+tf.id]);
+ let statusSpan = Dom.create('span', ['id', this.prfxStatusSpan+tf.id]);
//preceding text
- var statusSpanText = Dom.create('span',
+ let statusSpanText = Dom.create('span',
['id', this.prfxStatusTxt+tf.id]);
statusSpanText.appendChild(Dom.text(this.statusBarText));
@@ -137,7 +166,7 @@ export class StatusBar extends Feature{
if(!this.statusBarTgtId){
tf.setToolbar();
}
- var targetEl = (!this.statusBarTgtId) ?
+ let targetEl = (!this.statusBarTgtId) ?
tf.lDiv : Dom.id(this.statusBarTgtId);
//default container: 'lDiv'
@@ -155,6 +184,38 @@ export class StatusBar extends Feature{
this.statusBarSpan = statusSpan;
this.statusBarSpanText = statusSpanText;
+ // Subscribe to events
+ emitter.on(['before-filtering'], ()=> this.message(this.msgFilter));
+ emitter.on(['before-populating-filter'],
+ ()=> this.message(this.msgPopulate));
+ emitter.on(['before-changing-page'],
+ ()=> this.message(this.msgChangePage));
+ emitter.on(['before-clearing-filters'], ()=>
+ this.message(this.msgClear));
+ emitter.on(['before-changing-results-per-page'],
+ ()=> this.message(this.msgChangeResults));
+ emitter.on(['before-reset-page'], ()=> this.message(this.msgResetPage));
+ emitter.on(['before-reset-page-length'],
+ ()=> this.message(this.msgResetPageLength));
+ emitter.on(['before-loading-extensions'],
+ ()=> this.message(this.msgLoadExtensions));
+ emitter.on(['before-loading-themes'],
+ ()=> this.message(this.msgLoadThemes));
+
+ emitter.on([
+ 'after-filtering',
+ 'after-populating-filter',
+ 'after-changing-page',
+ 'after-clearing-filters',
+ 'after-changing-results-per-page',
+ 'after-reset-page',
+ 'after-reset-page-length',
+ 'after-loading-extensions',
+ 'after-loading-themes'
+ ],
+ ()=> this.message('')
+ );
+
this.initialized = true;
}
@@ -167,8 +228,11 @@ export class StatusBar extends Feature{
this.onBeforeShowMsg.call(null, this.tf, t);
}
- var d = t==='' ? this.statusBarCloseDelay : 1;
+ let d = t==='' ? this.statusBarCloseDelay : 1;
global.setTimeout(() => {
+ if(!this.initialized){
+ return;
+ }
this.statusBarSpan.innerHTML = t;
if(this.onAfterShowMsg){
this.onAfterShowMsg.call(null, this.tf, t);
@@ -181,11 +245,49 @@ export class StatusBar extends Feature{
return;
}
+ let emitter = this.emitter;
+
this.statusBarDiv.innerHTML = '';
- Dom.remove(this.statusBarDiv);
+ if(!this.statusBarTgtId){
+ Dom.remove(this.statusBarDiv);
+ }
this.statusBarSpan = null;
this.statusBarSpanText = null;
this.statusBarDiv = null;
+
+ // Unsubscribe to events
+ emitter.off(['before-filtering'], ()=> this.message(this.msgFilter));
+ emitter.off(['before-populating-filter'],
+ ()=> this.message(this.msgPopulate));
+ emitter.off(['before-changing-page'],
+ ()=> this.message(this.msgChangePage));
+ emitter.off(['before-clearing-filters'],
+ ()=> this.message(this.msgClear));
+ emitter.off(['before-changing-results-per-page'],
+ ()=> this.message(this.msgChangeResults));
+ emitter.off(['before-reset-page'], ()=>
+ this.message(this.msgResetPage));
+ emitter.off(['before-reset-page-length'],
+ ()=> this.message(this.msgResetPageLength));
+ emitter.off(['before-loading-extensions'],
+ ()=> this.message(this.msgLoadExtensions));
+ emitter.off(['before-loading-themes'],
+ ()=> this.message(this.msgLoadThemes));
+
+ emitter.off([
+ 'after-filtering',
+ 'after-populating-filter',
+ 'after-changing-page',
+ 'after-clearing-filters',
+ 'after-changing-results-per-page',
+ 'after-reset-page',
+ 'after-reset-page-length',
+ 'after-loading-extensions',
+ 'after-loading-themes'
+ ],
+ ()=> this.message('')
+ );
+
this.initialized = false;
}
diff --git a/docs/file/src/modules/store.js.html b/docs/file/src/modules/store.js.html
index d88f96ac..bf14a33f 100644
--- a/docs/file/src/modules/store.js.html
+++ b/docs/file/src/modules/store.js.html
@@ -3,7 +3,7 @@
- src/modules/store.js | tablefilter v0.0.23 API Document
+ src/modules/store.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -68,6 +69,7 @@
src/modules/store.js
import Cookie from '../cookie';
+import Types from '../types';
export class Store{
@@ -77,13 +79,20 @@ export class Store{
*
* TODO: use localStorage and fallback to cookie persistence
*/
- constructor(tf) {
- var f = tf.config();
+ constructor(tf){
+ let f = tf.config();
this.duration = !isNaN(f.set_cookie_duration) ?
parseInt(f.set_cookie_duration, 10) : 100000;
this.tf = tf;
+ this.emitter = tf.emitter;
+ }
+
+ init(){
+ this.emitter.on(['after-filtering'],
+ ()=> this.saveFilterValues(this.tf.fltsValuesCookie));
+ this.emitter.on(['after-clearing-filters'], ()=> this.clearCookies());
}
/**
@@ -91,20 +100,29 @@ export class Store{
* @param {String} cookie name
*/
saveFilterValues(name){
- var tf = this.tf;
- var fltValues = [];
+ let tf = this.tf;
+ let fltValues = [];
+
+ if(!tf.rememberGridValues){
+ return;
+ }
+
//store filters' values
- for(var i=0; i<tf.fltIds.length; i++){
- var value = tf.getFilterValue(i);
+ for(let i=0; i<tf.fltIds.length; i++){
+ let value = tf.getFilterValue(i);
+ //convert array to a || separated values
+ if(Types.isArray(value)){
+ let rgx = new RegExp(tf.separator, 'g');
+ value = value.toString()
+ .replace(rgx, ' ' + tf.orOperator + ' ');
+ }
if (value === ''){
value = ' ';
}
fltValues.push(value);
}
- //adds array size
- fltValues.push(tf.fltIds.length);
- //writes cookie
+ //write cookie
Cookie.write(
name,
fltValues.join(tf.separator),
@@ -118,8 +136,8 @@ export class Store{
* @return {Array}
*/
getFilterValues(name){
- var flts = Cookie.read(name);
- var rgx = new RegExp(this.tf.separator, 'g');
+ let flts = Cookie.read(name);
+ let rgx = new RegExp(this.tf.separator, 'g');
// filters' values array
return flts.split(rgx);
}
@@ -129,6 +147,9 @@ export class Store{
* @param {String} cookie name
*/
savePageNb(name){
+ if(!this.tf.rememberPageNb){
+ return;
+ }
Cookie.write(
name,
this.tf.feature('paging').currentPageNb,
@@ -150,6 +171,9 @@ export class Store{
* @param {String} cookie name
*/
savePageLength(name){
+ if(!this.tf.rememberPageLen){
+ return;
+ }
Cookie.write(
name,
this.tf.feature('paging').resultsPerPageSlc.selectedIndex,
@@ -166,6 +190,20 @@ export class Store{
return Cookie.read(name);
}
+ /**
+ * Remove all cookies
+ */
+ clearCookies(){
+ Cookie.remove(this.tf.fltsValuesCookie);
+ Cookie.remove(this.tf.pgLenCookie);
+ Cookie.remove(this.tf.pgNbCookie);
+ }
+
+ destroy(){
+ this.emitter.off(['after-filtering'],
+ ()=> this.saveFilterValues(this.tf.fltsValuesCookie));
+ this.emitter.off(['after-clearing-filters'], ()=> this.clearCookies());
+ }
}
diff --git a/docs/file/src/sort.js.html b/docs/file/src/sort.js.html
index afc0f6e2..8b7def5d 100644
--- a/docs/file/src/sort.js.html
+++ b/docs/file/src/sort.js.html
@@ -3,7 +3,7 @@
- src/sort.js | tablefilter v0.0.23 API Document
+ src/sort.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/string.js.html b/docs/file/src/string.js.html
index 9ab5c41c..763e0ece 100644
--- a/docs/file/src/string.js.html
+++ b/docs/file/src/string.js.html
@@ -3,7 +3,7 @@
- src/string.js | tablefilter v0.0.23 API Document
+ src/string.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/file/src/tablefilter.js.html b/docs/file/src/tablefilter.js.html
index c1397256..c69f6890 100644
--- a/docs/file/src/tablefilter.js.html
+++ b/docs/file/src/tablefilter.js.html
@@ -3,7 +3,7 @@
- src/tablefilter.js | tablefilter v0.0.23 API Document
+ src/tablefilter.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -70,11 +71,10 @@
import Event from './event';
import Dom from './dom';
import Str from './string';
-import Cookie from './cookie';
import Types from './types';
-import Arr from './array';
import DateHelper from './date';
import Helpers from './helpers';
+import {Emitter} from './emitter';
// Features
import {Store} from './modules/store';
@@ -95,7 +95,7 @@ import {NoResults} from './modules/noResults';
let global = window,
doc = global.document;
-export class TableFilter{
+export class TableFilter {
/**
* TableFilter object constructor
@@ -123,6 +123,7 @@ export class TableFilter{
// TODO: use for-of with babel plug-in
args.forEach((arg)=> {
+ // for (let arg of args) {
let argtype = typeof arg;
if(argtype === 'object' && arg && arg.nodeName === 'TABLE'){
this.tbl = arg;
@@ -135,6 +136,7 @@ export class TableFilter{
} else if(argtype === 'object'){
this.cfg = arg;
}
+ // }
});
if(!this.tbl || this.tbl.nodeName != 'TABLE' || this.getRowsNb() === 0){
@@ -145,6 +147,8 @@ export class TableFilter{
// configuration object
let f = this.cfg;
+ this.emitter = new Emitter();
+
//Start row et cols nb
this.refRow = this.startRow === null ? 2 : (this.startRow+1);
try{ this.nbCells = this.getCellsNb(this.refRow); }
@@ -173,15 +177,6 @@ export class TableFilter{
this.headersRow = isNaN(f.headers_row_index) ?
(this.filtersRowIndex === 0 ? 1 : 0) : f.headers_row_index;
- if(this.gridLayout){
- if(this.headersRow > 1){
- this.filtersRowIndex = this.headersRow+1;
- } else {
- this.filtersRowIndex = 1;
- this.headersRow = 0;
- }
- }
-
//defines tag of the cells containing filters (td/th)
this.fltCellTag = f.filters_cell_tag!=='th' ||
f.filters_cell_tag!=='td' ? 'td' : f.filters_cell_tag;
@@ -193,11 +188,9 @@ export class TableFilter{
//stores filters values
this.searchArgs = null;
//stores valid rows indexes (rows visible upon filtering)
- this.validRowsIndex = null;
+ this.validRowsIndex = [];
//stores filters row element
this.fltGridEl = null;
- //is first load boolean
- this.isFirstLoad = true;
//container div for paging elements, reset btn etc.
this.infDiv = null;
//div for rows counter
@@ -273,7 +266,7 @@ export class TableFilter{
//enables/disables external filters generation
this.isExternalFlt = Boolean(f.external_flt_grid);
//array containing ids of external elements containing filters
- this.externalFltTgtIds = f.external_flt_grid_ids || null;
+ this.externalFltTgtIds = f.external_flt_grid_ids || [];
//stores filters elements if isExternalFlt is true
this.externalFltEls = [];
//delays any filtering process if loader true
@@ -432,37 +425,6 @@ export class TableFilter{
//array containing columns date type
this.colDateType = this.hasColDateType ? f.col_date_type : null;
- /*** status messages ***/
- //filtering
- this.msgFilter = f.msg_filter || 'Filtering data...';
- //populating drop-downs
- this.msgPopulate = f.msg_populate || 'Populating filter...';
- //populating drop-downs
- this.msgPopulateCheckList = f.msg_populate_checklist ||
- 'Populating list...';
- //changing paging page
- this.msgChangePage = f.msg_change_page || 'Collecting paging data...';
- //clearing filters
- this.msgClear = f.msg_clear || 'Clearing filters...';
- //changing nb results/page
- this.msgChangeResults = f.msg_change_results ||
- 'Changing results per page...';
- //re-setting grid values
- this.msgResetValues = f.msg_reset_grid_values ||
- 'Re-setting filters values...';
- //re-setting page
- this.msgResetPage = f.msg_reset_page || 'Re-setting page...';
- //re-setting page length
- this.msgResetPageLength = f.msg_reset_page_length ||
- 'Re-setting page length...';
- //table sorting
- this.msgSort = f.msg_sort || 'Sorting data...';
- //extensions loading
- this.msgLoadExtensions = f.msg_load_extensions ||
- 'Loading extensions...';
- //themes loading
- this.msgLoadThemes = f.msg_load_themes || 'Loading theme(s)...';
-
/*** ids prefixes ***/
//css class name added to table
this.prfxTf = 'TF';
@@ -486,7 +448,6 @@ export class TableFilter{
this.prfxCookiePageLen = 'tf_pglen_';
/*** cookies ***/
- this.hasStoredValues = false;
//remembers filters values on page load
this.rememberGridValues = Boolean(f.remember_grid_values);
//cookie storing filter values
@@ -521,30 +482,15 @@ export class TableFilter{
/*** TF events ***/
this.Evt = {
- name: {
- filter: 'Filter',
- dropdown: 'DropDown',
- checklist: 'CheckList',
- changepage: 'ChangePage',
- clear: 'Clear',
- changeresultsperpage: 'ChangeResults',
- resetvalues: 'ResetValues',
- resetpage: 'ResetPage',
- resetpagelength: 'ResetPageLength',
- loadextensions: 'LoadExtensions',
- loadthemes: 'LoadThemes'
- },
-
// Detect <enter> key
detectKey(e) {
if(!this.enterKey){ return; }
- let _ev = e || global.event;
- if(_ev){
- let key = Event.keyCode(_ev);
+ if(e){
+ let key = Event.keyCode(e);
if(key===13){
this.filter();
- Event.cancel(_ev);
- Event.stop(_ev);
+ Event.cancel(e);
+ Event.stop(e);
} else {
this.isUserTyping = true;
global.clearInterval(this.autoFilterTimer);
@@ -557,8 +503,7 @@ export class TableFilter{
if(!this.autoFilter){
return;
}
- let _ev = e || global.event;
- let key = Event.keyCode(_ev);
+ let key = Event.keyCode(e);
this.isUserTyping = false;
function filter() {
@@ -592,99 +537,25 @@ export class TableFilter{
this.isUserTyping = false;
global.clearInterval(this.autoFilterTimer);
}
- // TODO: hack to prevent ezEditTable enter key event hijaking.
- // Needs to be fixed in the vendor's library
- if(this.hasExtension('advancedGrid')){
- var advGrid = this.extension('advancedGrid');
- var ezEditTable = advGrid._ezEditTable;
- if(advGrid.cfg.editable){
- ezEditTable.Editable.Set();
- }
- if(advGrid.cfg.selection){
- ezEditTable.Selection.Set();
- }
- }
+ this.emitter.emit('filter-blur', this);
},
// set focused text-box filter as active
onInpFocus(e) {
- let _ev = e || global.event;
- let elm = Event.target(_ev);
+ let elm = Event.target(e);
this.activeFilterId = elm.getAttribute('id');
this.activeFlt = Dom.id(this.activeFilterId);
- if(this.popupFilters){
- Event.cancel(_ev);
- Event.stop(_ev);
- }
- // TODO: hack to prevent ezEditTable enter key event hijaking.
- // Needs to be fixed in the vendor's library
- if(this.hasExtension('advancedGrid')){
- var advGrid = this.extension('advancedGrid');
- var ezEditTable = advGrid._ezEditTable;
- if(advGrid.cfg.editable){
- ezEditTable.Editable.Remove();
- }
- if(advGrid.cfg.selection){
- ezEditTable.Selection.Remove();
- }
- }
- },
- // set focused drop-down filter as active
- onSlcFocus(e) {
- let _ev = e || global.event;
- let elm = Event.target(_ev);
- this.activeFilterId = elm.getAttribute('id');
- this.activeFlt = Dom.id(this.activeFilterId);
- // select is populated when element has focus
- if(this.loadFltOnDemand && elm.getAttribute('filled') === '0'){
- let ct = elm.getAttribute('ct');
- this.Mod.dropdown._build(ct);
- }
- if(this.popupFilters){
- Event.cancel(_ev);
- Event.stop(_ev);
- }
- },
- // filter columns on drop-down filter change
- onSlcChange(e) {
- if(!this.activeFlt){ return; }
- let _ev = e || global.event;
- if(this.popupFilters){ Event.stop(_ev); }
- if(this.onSlcChange){ this.filter(); }
- },
- // fill checklist filter on click if required
- onCheckListClick(e) {
- let _ev = e || global.event;
- let elm = Event.target(_ev);
- if(this.loadFltOnDemand && elm.getAttribute('filled') === '0'){
- let ct = elm.getAttribute('ct');
- this.Mod.checkList._build(ct);
- this.Mod.checkList.checkListDiv[ct].onclick = null;
- this.Mod.checkList.checkListDiv[ct].title = '';
- }
+ this.emitter.emit('filter-focus', this);
}
};
}
/**
- * Initialise filtering grid bar behaviours and layout
- *
- * TODO: decompose in smaller methods
+ * Initialise features and layout
*/
init(){
if(this._hasGrid){
return;
}
- if(!this.tbl){
- this.tbl = Dom.id(this.id);
- }
- if(this.gridLayout){
- this.refRow = this.startRow===null ? 0 : this.startRow;
- }
- if(this.popupFilters &&
- ((this.filtersRowIndex === 0 && this.headersRow === 1) ||
- this.gridLayout)){
- this.headersRow = 0;
- }
let Mod = this.Mod;
let n = this.singleSearchFlt ? 1 : this.nbCells,
@@ -694,15 +565,28 @@ export class TableFilter{
this.import(this.stylesheetId, this.stylesheet, null, 'link');
//loads theme
- if(this.hasThemes){ this._loadThemes(); }
+ if(this.hasThemes){ this.loadThemes(); }
+
+ // Instantiate help feature and initialise only if set true
+ if(!Mod.help){
+ Mod.help = new Help(this);
+ }
+ if(this.help){
+ Mod.help.init();
+ }
if(this.rememberGridValues || this.rememberPageNb ||
this.rememberPageLen){
- Mod.store = new Store(this);
+ if(!Mod.store){
+ Mod.store = new Store(this);
+ }
+ Mod.store.init();
}
if(this.gridLayout){
- Mod.gridLayout = new GridLayout(this);
+ if(!Mod.gridLayout){
+ Mod.gridLayout = new GridLayout(this);
+ }
Mod.gridLayout.init();
}
@@ -715,6 +599,7 @@ export class TableFilter{
if(this.highlightKeywords){
Mod.highlightKeyword = new HighlightKeyword(this);
+ Mod.highlightKeyword.init();
}
if(this.popupFilters){
@@ -726,218 +611,66 @@ export class TableFilter{
//filters grid is not generated
if(!this.fltGrid){
- this.refRow = this.refRow-1;
- if(this.gridLayout){
- this.refRow = 0;
- }
+ this._initNoFilters();
+ } else {
+ let fltrow = this._insertFiltersRow();
+
this.nbFilterableRows = this.getRowsNb();
this.nbVisibleRows = this.nbFilterableRows;
- this.nbRows = this.nbFilterableRows + this.refRow;
- } else {
- if(this.isFirstLoad){
- let fltrow;
+ this.nbRows = this.tbl.rows.length;
+
+ // Generate filters
+ for(let i=0; i<n; i++){
+ this.emitter.emit('before-filter-init', this, i);
+
+ let fltcell = Dom.create(this.fltCellTag),
+ col = this.getFilterType(i);
+
+ if(this.singleSearchFlt){
+ fltcell.colSpan = this.nbCells;
+ }
if(!this.gridLayout){
- let thead = Dom.tag(this.tbl, 'thead');
- if(thead.length > 0){
- fltrow = thead[0].insertRow(this.filtersRowIndex);
- } else {
- fltrow = this.tbl.insertRow(this.filtersRowIndex);
- }
+ fltrow.appendChild(fltcell);
+ }
+ inpclass = (i==n-1 && this.displayBtn) ?
+ this.fltSmallCssClass : this.fltCssClass;
- if(this.headersRow > 1 &&
- this.filtersRowIndex <= this.headersRow &&
- !this.popupFilters){
- this.headersRow++;
- }
- if(this.popupFilters){
- this.headersRow++;
- }
-
- fltrow.className = this.fltsRowCssClass;
-
- if(this.isExternalFlt || this.popupFilters){
- fltrow.style.display = 'none';
- }
+ //only 1 input for single search
+ if(this.singleSearchFlt){
+ col = this.fltTypeInp;
+ inpclass = this.singleFltCssClass;
}
- this.nbFilterableRows = this.getRowsNb();
- this.nbVisibleRows = this.nbFilterableRows;
- this.nbRows = this.tbl.rows.length;
-
- for(let i=0; i<n; i++){// this loop adds filters
-
- if(this.popupFilters){
- Mod.popupFilter.build(i);
+ //drop-down filters
+ if(col===this.fltTypeSlc || col===this.fltTypeMulti){
+ if(!Mod.dropdown){
+ Mod.dropdown = new Dropdown(this);
}
-
- let fltcell = Dom.create(this.fltCellTag),
- col = this.getFilterType(i),
- externalFltTgtId =
- this.isExternalFlt && this.externalFltTgtIds ?
- this.externalFltTgtIds[i] : null;
-
- if(this.singleSearchFlt){
- fltcell.colSpan = this.nbCells;
- }
- if(!this.gridLayout){
- fltrow.appendChild(fltcell);
- }
- inpclass = (i==n-1 && this.displayBtn) ?
- this.fltSmallCssClass : this.fltCssClass;
-
- //only 1 input for single search
- if(this.singleSearchFlt){
- col = this.fltTypeInp;
- inpclass = this.singleFltCssClass;
- }
-
- //drop-down filters
- if(col===this.fltTypeSlc || col===this.fltTypeMulti){
- if(!Mod.dropdown){
- Mod.dropdown = new Dropdown(this);
- }
- let dropdown = Mod.dropdown;
-
- let slc = Dom.create(this.fltTypeSlc,
- ['id', this.prfxFlt+i+'_'+this.id],
- ['ct', i], ['filled', '0']
- );
-
- if(col===this.fltTypeMulti){
- slc.multiple = this.fltTypeMulti;
- slc.title = dropdown.multipleSlcTooltip;
- }
- slc.className = Str.lower(col) === this.fltTypeSlc ?
- inpclass : this.fltMultiCssClass;
-
- //filter is appended in desired external element
- if(externalFltTgtId){
- Dom.id(externalFltTgtId).appendChild(slc);
- this.externalFltEls.push(slc);
- } else {
- fltcell.appendChild(slc);
- }
-
- this.fltIds.push(this.prfxFlt+i+'_'+this.id);
-
- if(!this.loadFltOnDemand){
- dropdown._build(i);
- }
-
- Event.add(slc, 'keypress',
- this.Evt.detectKey.bind(this));
- Event.add(slc, 'change',
- this.Evt.onSlcChange.bind(this));
- Event.add(slc, 'focus', this.Evt.onSlcFocus.bind(this));
-
- //1st option is created here since dropdown.build isn't
- //invoked
- if(this.loadFltOnDemand){
- let opt0 = Dom.createOpt(this.displayAllText, '');
- slc.appendChild(opt0);
- }
- }
- // checklist
- else if(col===this.fltTypeCheckList){
- let checkList;
+ Mod.dropdown.init(i, this.isExternalFlt, fltcell);
+ }
+ // checklist
+ else if(col===this.fltTypeCheckList){
+ if(!Mod.checkList){
Mod.checkList = new CheckList(this);
- checkList = Mod.checkList;
-
- let divCont = Dom.create('div',
- ['id', checkList.prfxCheckListDiv+i+'_'+this.id],
- ['ct', i], ['filled', '0']);
- divCont.className = checkList.checkListDivCssClass;
-
- //filter is appended in desired element
- if(externalFltTgtId){
- Dom.id(externalFltTgtId).appendChild(divCont);
- this.externalFltEls.push(divCont);
- } else {
- fltcell.appendChild(divCont);
- }
-
- checkList.checkListDiv[i] = divCont;
- this.fltIds.push(this.prfxFlt+i+'_'+this.id);
- if(!this.loadFltOnDemand){
- checkList._build(i);
- }
-
- if(this.loadFltOnDemand){
- Event.add(divCont, 'click',
- this.Evt.onCheckListClick.bind(this));
- divCont.appendChild(
- Dom.text(checkList.activateCheckListTxt));
- }
}
+ Mod.checkList.init(i, this.isExternalFlt, fltcell);
+ } else {
+ this._buildInputFilter(i, inpclass, fltcell);
+ }
- else{
- //show/hide input
- let inptype = col===this.fltTypeInp ? 'text' : 'hidden';
- let inp = Dom.create(this.fltTypeInp,
- ['id',this.prfxFlt+i+'_'+this.id],
- ['type',inptype], ['ct',i]);
- if(inptype!=='hidden' && this.watermark){
- inp.setAttribute(
- 'placeholder',
- this.isWatermarkArray ?
- (this.watermark[i] || '') : this.watermark
- );
- }
- inp.className = inpclass;
- Event.add(inp, 'focus', this.Evt.onInpFocus.bind(this));
+ // this adds submit button
+ if(i==n-1 && this.displayBtn){
+ this._buildSubmitButton(i, fltcell);
+ }
- //filter is appended in desired element
- if(externalFltTgtId){
- Dom.id(externalFltTgtId).appendChild(inp);
- this.externalFltEls.push(inp);
- } else {
- fltcell.appendChild(inp);
- }
-
- this.fltIds.push(this.prfxFlt+i+'_'+this.id);
-
- Event.add(inp, 'keypress',
- this.Evt.detectKey.bind(this));
- Event.add(inp, 'keydown',
- this.Evt.onKeyDown.bind(this));
- Event.add(inp, 'keyup', this.Evt.onKeyUp.bind(this));
- Event.add(inp, 'blur', this.Evt.onInpBlur.bind(this));
-
- if(this.rememberGridValues){
- let flts_values = this.Mod.store.getFilterValues(
- this.fltsValuesCookie);
- if(flts_values[i]!=' '){
- this.setFilterValue(i, flts_values[i], false);
- }
- }
- }
- // this adds submit button
- if(i==n-1 && this.displayBtn){
- let btn = Dom.create(this.fltTypeInp,
- ['id', this.prfxValButton+i+'_'+this.id],
- ['type', 'button'], ['value', this.btnText]);
- btn.className = this.btnCssClass;
-
- //filter is appended in desired element
- if(externalFltTgtId){
- Dom.id(externalFltTgtId).appendChild(btn);
- } else{
- fltcell.appendChild(btn);
- }
-
- Event.add(btn, 'click', ()=> this.filter());
- }//if
-
- }// for i
-
- } else {
- this._resetGrid();
- }//if isFirstLoad
+ this.emitter.emit('after-filter-init', this, i);
+ }
}//if this.fltGrid
/* Features */
if(this.hasVisibleRows){
+ this.emitter.on(['after-filtering'], ()=> this.enforceVisibility());
this.enforceVisibility();
}
if(this.rowsCounter){
@@ -948,23 +681,19 @@ export class TableFilter{
Mod.statusBar = new StatusBar(this);
Mod.statusBar.init();
}
- if(this.paging || Mod.paging){
+ if(this.paging){
if(!Mod.paging){
Mod.paging = new Paging(this);
Mod.paging.init();
+ } else{
+ Mod.paging.reset();
}
- Mod.paging.reset();
}
if(this.btnReset){
Mod.clearButton = new ClearButton(this);
Mod.clearButton.init();
}
- if(this.help){
- if(!Mod.help){
- Mod.help = new Help(this);
- }
- Mod.help.init();
- }
+
if(this.hasColWidths && !this.gridLayout){
this.setColWidths();
}
@@ -979,7 +708,6 @@ export class TableFilter{
Mod.noResults.init();
}
- this.isFirstLoad = false;
this._hasGrid = true;
if(this.rememberGridValues || this.rememberPageLen ||
@@ -992,98 +720,134 @@ export class TableFilter{
Dom.addClass(this.tbl, this.prfxTf);
}
- if(this.loader){
- Mod.loader.show('none');
- }
-
/* Loads extensions */
if(this.hasExtensions){
this.initExtensions();
}
+ // Subscribe to events
+ if(this.markActiveColumns){
+ this.emitter.on(['before-filtering'],
+ ()=> this.clearActiveColumns());
+ this.emitter.on(['cell-processed'],
+ (tf, colIndex)=> this.markActiveColumn(colIndex));
+ }
+ if(this.linkedFilters){
+ this.emitter.on(['after-filtering'], ()=> this.linkFilters());
+ }
+
if(this.onFiltersLoaded){
this.onFiltersLoaded.call(null, this);
}
+
+ this.initialized = true;
+ this.emitter.emit('initialized', this);
}
/**
- * Manages state messages
- * @param {String} evt Event name
- * @param {Object} cfg Config object
+ * Insert filters row at initialization
*/
- EvtManager(evt,
- cfg={ slcIndex: null, slcExternal: false, slcId: null, pgIndex: null }){
- let slcIndex = cfg.slcIndex;
- let slcExternal = cfg.slcExternal;
- let slcId = cfg.slcId;
- let pgIndex = cfg.pgIndex;
- let cpt = this.Mod;
-
- function efx(){
- /*jshint validthis:true */
- let ev = this.Evt.name;
-
- switch(evt){
- case ev.filter:
- this._filter();
- break;
- case ev.dropdown:
- if(this.linkedFilters){
- cpt.dropdown._build(slcIndex, true);
- } else {
- cpt.dropdown._build(
- slcIndex, false, slcExternal, slcId);
- }
- break;
- case ev.checklist:
- cpt.checkList._build(slcIndex, slcExternal, slcId);
- break;
- case ev.changepage:
- cpt.paging._changePage(pgIndex);
- break;
- case ev.clear:
- this._clearFilters();
- this._filter();
- break;
- case ev.changeresultsperpage:
- cpt.paging._changeResultsPerPage();
- break;
- case ev.resetvalues:
- this._resetValues();
- this._filter();
- break;
- case ev.resetpage:
- cpt.paging._resetPage(this.pgNbCookie);
- break;
- case ev.resetpagelength:
- cpt.paging._resetPageLength(this.pgLenCookie);
- break;
- case ev.loadextensions:
- this._loadExtensions();
- break;
- case ev.loadthemes:
- this._loadThemes();
- break;
- }
- if(this.statusBar){
- cpt.statusBar.message('');
- }
- if(this.loader){
- cpt.loader.show('none');
- }
+ _insertFiltersRow() {
+ if(this.gridLayout){
+ return;
}
+ let fltrow;
- if(!this.loader && !this.statusBar && !this.linkedFilters) {
- efx.call(this);
+ let thead = Dom.tag(this.tbl, 'thead');
+ if(thead.length > 0){
+ fltrow = thead[0].insertRow(this.filtersRowIndex);
} else {
- if(this.loader){
- cpt.loader.show('');
- }
- if(this.statusBar){
- cpt.statusBar.message(this['msg'+evt]);
- }
- global.setTimeout(efx.bind(this), this.execDelay);
+ fltrow = this.tbl.insertRow(this.filtersRowIndex);
}
+
+ if(this.headersRow > 1 && this.filtersRowIndex <= this.headersRow){
+ this.headersRow++;
+ }
+
+ fltrow.className = this.fltsRowCssClass;
+
+ if(this.isExternalFlt){
+ fltrow.style.display = 'none';
+ }
+
+ this.emitter.emit('filters-row-inserted', this, fltrow);
+ return fltrow;
+ }
+
+ /**
+ * Initialize filtersless table
+ */
+ _initNoFilters(){
+ if(this.fltGrid){
+ return;
+ }
+ this.refRow = this.refRow > 0 ? this.refRow-1 : 0;
+ this.nbFilterableRows = this.getRowsNb();
+ this.nbVisibleRows = this.nbFilterableRows;
+ this.nbRows = this.nbFilterableRows + this.refRow;
+ }
+
+ /**
+ * Build input filter type
+ * @param {Number} colIndex Column index
+ * @param {String} cssClass Css class applied to filter
+ * @param {DOMElement} container Container DOM element
+ */
+ _buildInputFilter(colIndex, cssClass, container){
+ let col = this.getFilterType(colIndex);
+ let externalFltTgtId = this.isExternalFlt ?
+ this.externalFltTgtIds[colIndex] : null;
+ let inptype = col===this.fltTypeInp ? 'text' : 'hidden';
+ let inp = Dom.create(this.fltTypeInp,
+ ['id', this.prfxFlt+colIndex+'_'+this.id],
+ ['type', inptype], ['ct', colIndex]);
+
+ if(inptype !== 'hidden' && this.watermark){
+ inp.setAttribute('placeholder',
+ this.isWatermarkArray ? (this.watermark[colIndex] || '') :
+ this.watermark
+ );
+ }
+ inp.className = cssClass || this.fltCssClass;
+ Event.add(inp, 'focus', this.Evt.onInpFocus.bind(this));
+
+ //filter is appended in custom element
+ if(externalFltTgtId){
+ Dom.id(externalFltTgtId).appendChild(inp);
+ this.externalFltEls.push(inp);
+ } else {
+ container.appendChild(inp);
+ }
+
+ this.fltIds.push(inp.id);
+
+ Event.add(inp, 'keypress', this.Evt.detectKey.bind(this));
+ Event.add(inp, 'keydown', this.Evt.onKeyDown.bind(this));
+ Event.add(inp, 'keyup', this.Evt.onKeyUp.bind(this));
+ Event.add(inp, 'blur', this.Evt.onInpBlur.bind(this));
+ }
+
+ /**
+ * Build submit button
+ * @param {Number} colIndex Column index
+ * @param {DOMElement} container Container DOM element
+ */
+ _buildSubmitButton(colIndex, container){
+ let externalFltTgtId = this.isExternalFlt ?
+ this.externalFltTgtIds[colIndex] : null;
+ let btn = Dom.create(this.fltTypeInp,
+ ['id', this.prfxValButton+colIndex+'_'+this.id],
+ ['type', 'button'], ['value', this.btnText]);
+ btn.className = this.btnCssClass;
+
+ //filter is appended in custom element
+ if(externalFltTgtId){
+ Dom.id(externalFltTgtId).appendChild(btn);
+ } else{
+ container.appendChild(btn);
+ }
+
+ Event.add(btn, 'click', ()=> this.filter());
}
/**
@@ -1100,13 +864,17 @@ export class TableFilter{
*/
initExtensions(){
let exts = this.extensions;
+ // Set config's publicPath dynamically for Webpack...
+ __webpack_public_path__ = this.basePath;
+ this.emitter.emit('before-loading-extensions', this);
for(let i=0, len=exts.length; i<len; i++){
let ext = exts[i];
if(!this.ExtRegistry[ext.name]){
this.loadExtension(ext);
}
}
+ this.emitter.emit('after-loading-extensions', this);
}
/**
@@ -1129,9 +897,7 @@ export class TableFilter{
modulePath = 'extensions/{}/{}'.replace(/{}/g, name);
}
- // Trick to set config's publicPath dynamically for Webpack...
- __webpack_public_path__ = this.basePath;
-
+ // Require pattern for Webpack
require(['./' + modulePath], (mod)=> {
let inst = new mod.default(this, ext);
inst.init();
@@ -1173,15 +939,13 @@ export class TableFilter{
}
}
- loadThemes(){
- this.EvtManager(this.Evt.name.loadthemes);
- }
-
/**
* Load themes defined in the configuration object
*/
- _loadThemes(){
+ loadThemes(){
let themes = this.themes;
+ this.emitter.emit('before-loading-themes', this);
+
//Default theme config
if(this.enableDefaultTheme){
let defaultTheme = { name: 'default' };
@@ -1226,6 +990,8 @@ export class TableFilter{
this.loader = true;
this.loaderHtml = '<div class="defaultLoader"></div>';
this.loaderText = null;
+
+ this.emitter.emit('after-loading-themes', this);
}
/**
@@ -1244,9 +1010,8 @@ export class TableFilter{
return;
}
let rows = this.tbl.rows,
- Mod = this.Mod;
-
- this._clearFilters();
+ Mod = this.Mod,
+ emitter = this.emitter;
if(this.isExternalFlt && !this.popupFilters){
this.removeExternalFlts();
@@ -1254,46 +1019,50 @@ export class TableFilter{
if(this.infDiv){
this.removeToolbar();
}
- if(this.highlightKeywords){
- Mod.highlightKeyword.unhighlightAll();
- }
if(this.markActiveColumns){
this.clearActiveColumns();
+ emitter.off(['before-filtering'], ()=> this.clearActiveColumns());
+ emitter.off(['cell-processed'],
+ (tf, colIndex)=> this.markActiveColumn(colIndex));
}
if(this.hasExtensions){
this.destroyExtensions();
}
- for(let j=this.refRow; j<this.nbRows; j++){
- // validate row
- this.validateRow(j, true);
-
- //removes alternating colors
- if(this.alternateRows){
- Mod.alternateRows.removeRowBg(j);
- }
-
- }//for j
+ this.validateAllRows();
if(this.fltGrid && !this.gridLayout){
this.fltGridEl = rows[this.filtersRowIndex];
this.tbl.deleteRow(this.filtersRowIndex);
}
+ // broadcast destroy event
+ emitter.emit('destroy', this);
+
// Destroy modules
- Object.keys(Mod).forEach(function(key) {
+ // TODO: subcribe modules to destroy event instead
+ Object.keys(Mod).forEach(function(key){
var feature = Mod[key];
if(feature && Types.isFn(feature.destroy)){
feature.destroy();
}
});
+ // unsubscribe to events
+ if(this.hasVisibleRows){
+ emitter.off(['after-filtering'], ()=> this.enforceVisibility());
+ }
+ if(this.linkedFilters){
+ emitter.off(['after-filtering'], ()=> this.linkFilters());
+ }
+
Dom.removeClass(this.tbl, this.prfxTf);
this.nbHiddenRows = 0;
- this.validRowsIndex = null;
+ this.validRowsIndex = [];
+ this.fltIds = [];
this.activeFlt = null;
this._hasGrid = false;
- this.tbl = null;
+ this.initialized = false;
}
/**
@@ -1345,14 +1114,9 @@ export class TableFilter{
infdiv.appendChild(mdiv);
this.mDiv = Dom.id(this.prfxMDiv+this.id);
- // Enable help instructions by default if topbar is generated and not
- // explicitely set to false
+ // emit help initialisation only if undefined
if(Types.isUndef(this.help)){
- if(!this.Mod.help){
- this.Mod.help = new Help(this);
- }
- this.Mod.help.init();
- this.help = true;
+ this.emitter.emit('init-help', this);
}
}
@@ -1369,9 +1133,7 @@ export class TableFilter{
let tbl = this.tbl;
let captions = Dom.tag(tbl, 'caption');
if(captions.length > 0){
- [].forEach.call(captions, function(elm) {
- tbl.removeChild(elm);
- });
+ [].forEach.call(captions, (elm)=> tbl.removeChild(elm));
}
}
@@ -1379,7 +1141,7 @@ export class TableFilter{
* Remove all the external column filters
*/
removeExternalFlts(){
- if(!this.isExternalFlt || !this.externalFltTgtIds){
+ if(!this.isExternalFlt){
return;
}
let ids = this.externalFltTgtIds,
@@ -1437,149 +1199,42 @@ export class TableFilter{
return [optArray, optTxt];
}
- resetValues(){
- this.EvtManager(this.Evt.name.resetvalues);
- }
-
/**
* Reset persisted filter values
*/
- _resetValues(){
- //only loadFltOnDemand
- if(this.rememberGridValues && this.loadFltOnDemand){
- this._resetGridValues(this.fltsValuesCookie);
- }
- if(this.rememberPageLen && this.Mod.paging){
- this.Mod.paging.resetPageLength(this.pgLenCookie);
- }
- if(this.rememberPageNb && this.Mod.paging){
- this.Mod.paging.resetPage(this.pgNbCookie);
- }
- }
-
- /**
- * Reset persisted filter values when load filters on demand feature is
- * enabled
- * @param {String} name cookie name storing filter values
- */
- _resetGridValues(name){
- if(!this.loadFltOnDemand){
+ resetValues(){
+ if(!this.rememberGridValues){
return;
}
- let fltsValues = this.Mod.store.getFilterValues(name),
- slcFltsIndex = this.getFiltersByType(this.fltTypeSlc, true),
- multiFltsIndex = this.getFiltersByType(this.fltTypeMulti, true);
- //if the number of columns is the same as before page reload
- if(Number(fltsValues[(fltsValues.length-1)]) === this.fltIds.length){
- for(let i=0; i<(fltsValues.length - 1); i++){
- if(fltsValues[i]===' '){
- continue;
- }
- let s, opt;
- let fltType = this.getFilterType(i);
- // if loadFltOnDemand, drop-down needs to contain stored
- // value(s) for filtering
- if(fltType===this.fltTypeSlc || fltType===this.fltTypeMulti){
- let slc = Dom.id( this.fltIds[i] );
- slc.options[0].selected = false;
-
- //selects
- if(slcFltsIndex.indexOf(i) != -1){
- opt = Dom.createOpt(fltsValues[i],fltsValues[i],true);
- slc.appendChild(opt);
- this.hasStoredValues = true;
- }
- //multiple select
- if(multiFltsIndex.indexOf(i) != -1){
- s = fltsValues[i].split(' '+this.orOperator+' ');
- for(let j=0, len=s.length; j<len; j++){
- if(s[j]===''){
- continue;
- }
- opt = Dom.createOpt(s[j],s[j],true);
- slc.appendChild(opt);
- this.hasStoredValues = true;
- }
- }// if multiFltsIndex
- }
- else if(fltType===this.fltTypeCheckList){
- let checkList = this.Mod.checkList;
- let divChk = checkList.checkListDiv[i];
- divChk.title = divChk.innerHTML;
- divChk.innerHTML = '';
-
- let ul = Dom.create(
- 'ul',['id',this.fltIds[i]],['colIndex',i]);
- ul.className = checkList.checkListCssClass;
-
- let li0 = Dom.createCheckItem(
- this.fltIds[i]+'_0', '', this.displayAllText);
- li0.className = checkList.checkListItemCssClass;
- ul.appendChild(li0);
-
- divChk.appendChild(ul);
-
- s = fltsValues[i].split(' '+this.orOperator+' ');
- for(let j=0, len=s.length; j<len; j++){
- if(s[j]===''){
- continue;
- }
- let li = Dom.createCheckItem(
- this.fltIds[i]+'_'+(j+1), s[j], s[j]);
- li.className = checkList.checkListItemCssClass;
- ul.appendChild(li);
- li.check.checked = true;
- checkList.setCheckListValues(li.check);
- this.hasStoredValues = true;
- }
- }
- }//end for
-
- if(!this.hasStoredValues && this.paging){
- this.Mod.paging.setPagingInfo();
+ let fltValues = this.Mod.store.getFilterValues(this.fltsValuesCookie);
+ fltValues.forEach((val, idx)=> {
+ if(val !== ' '){
+ this.setFilterValue(idx, val);
}
- }//end if
- }
-
- filter(){
- this.EvtManager(this.Evt.name.filter);
+ });
+ this.filter();
}
/**
* Filter the table by retrieving the data from each cell in every single
* row and comparing it to the search term for current column. A row is
* hidden when all the search terms are not found in inspected row.
- *
- * TODO: Reduce complexity of this massive method
*/
- _filter(){
- if(!this.fltGrid || (!this._hasGrid && !this.isFirstLoad)){
+ filter(){
+ if(!this.fltGrid || !this._hasGrid){
return;
}
//invoke onbefore callback
if(this.onBeforeFilter){
this.onBeforeFilter.call(null, this);
}
+ this.emitter.emit('before-filtering', this);
let row = this.tbl.rows,
- Mod = this.Mod,
hiddenrows = 0;
this.validRowsIndex = [];
-
- // removes keyword highlighting
- if(this.highlightKeywords){
- Mod.highlightKeyword.unhighlightAll();
- }
- //removes popup filters active icons
- if(this.popupFilters){
- Mod.popupFilter.buildIcons();
- }
- //removes active column header class
- if(this.markActiveColumns){
- this.clearActiveColumns();
- }
// search args re-init
this.searchArgs = this.getFiltersValue();
@@ -1613,8 +1268,7 @@ export class TableFilter{
w = Dom.getText(cell);
}
if(w !== ''){
- Mod.highlightKeyword.highlight(
- cell, w, Mod.highlightKeyword.highlightCssClass);
+ this.emitter.emit('highlight-keyword', this, cell, w);
}
}
}
@@ -1622,6 +1276,8 @@ export class TableFilter{
//looks for search argument in current row
function hasArg(sA, cellData, j){
/*jshint validthis:true */
+ sA = Str.matchCase(sA, this.caseSensitive);
+
let occurence,
removeNbFormat = Helpers.removeNbFormat;
@@ -1805,10 +1461,8 @@ export class TableFilter{
}//fn
for(let k=this.refRow; k<this.nbRows; k++){
- /*** if table already filtered some rows are not visible ***/
- if(row[k].style.display === 'none'){
- row[k].style.display = '';
- }
+ // already filtered rows display re-init
+ row[k].style.display = '';
let cell = row[k].cells,
nchilds = cell.length;
@@ -1829,6 +1483,7 @@ export class TableFilter{
let sA = this.searchArgs[this.singleSearchFlt ? 0 : j];
var dtType = this.hasColDateType ?
this.colDateType[j] : this.defaultDateType;
+
if(sA === ''){
continue;
}
@@ -1837,31 +1492,39 @@ export class TableFilter{
this.caseSensitive);
//multiple search parameter operator ||
- let sAOrSplit = sA.split(this.orOperator),
+ let sAOrSplit = sA.toString().split(this.orOperator),
//multiple search || parameter boolean
- hasMultiOrSA = (sAOrSplit.length>1) ? true : false,
+ hasMultiOrSA = sAOrSplit.length > 1,
//multiple search parameter operator &&
- sAAndSplit = sA.split(this.anOperator),
+ sAAndSplit = sA.toString().split(this.anOperator),
//multiple search && parameter boolean
- hasMultiAndSA = sAAndSplit.length>1 ? true : false;
+ hasMultiAndSA = sAAndSplit.length > 1;
- //multiple sarch parameters
- if(hasMultiOrSA || hasMultiAndSA){
+ //detect operators or array query
+ if(Types.isArray(sA) || hasMultiOrSA || hasMultiAndSA){
let cS,
- occur = false,
+ s,
+ occur = false;
+ if(Types.isArray(sA)){
+ s = sA;
+ } else {
s = hasMultiOrSA ? sAOrSplit : sAAndSplit;
+ }
+ // TODO: improve clarity/readability of this block
for(let w=0, len=s.length; w<len; w++){
cS = Str.trim(s[w]);
occur = hasArg.call(this, cS, cellData, j);
highlight.call(this, cS, occur, cell[j]);
- if(hasMultiOrSA && occur){
+ if((hasMultiOrSA && occur) ||
+ (hasMultiAndSA && !occur)){
break;
}
- if(hasMultiAndSA && !occur){
+ if(Types.isArray(sA) && occur){
break;
}
}
occurence[j] = occur;
+
}
//single search parameter
else {
@@ -1875,22 +1538,8 @@ export class TableFilter{
if(this.singleSearchFlt && occurence[j]){
singleFltRowValid = true;
}
- if(this.popupFilters){
- Mod.popupFilter.buildIcon(j, true);
- }
- if(this.markActiveColumns){
- if(k === this.refRow){
- if(this.onBeforeActiveColumn){
- this.onBeforeActiveColumn.call(null, this, j);
- }
- Dom.addClass(
- this.getHeaderElement(j),
- this.activeColumnsCssClass);
- if(this.onAfterActiveColumn){
- this.onAfterActiveColumn.call(null, this, j);
- }
- }
- }
+
+ this.emitter.emit('cell-processed', this, j, cell[j]);
}//for j
if(this.singleSearchFlt && singleFltRowValid){
@@ -1899,90 +1548,28 @@ export class TableFilter{
if(!isRowValid){
this.validateRow(k, false);
- if(Mod.alternateRows){
- Mod.alternateRows.removeRowBg(k);
- }
- // always visible rows need to be counted as valid
- if(this.hasVisibleRows && this.visibleRows.indexOf(k) !== -1){
- this.validRowsIndex.push(k);
- } else {
- hiddenrows++;
- }
+ hiddenrows++;
} else {
this.validateRow(k, true);
- this.validRowsIndex.push(k);
- if(this.alternateRows){
- Mod.alternateRows.setRowBg(k, this.validRowsIndex.length);
- }
- if(this.onRowValidated){
- this.onRowValidated.call(null, this, k);
- }
}
+
+ this.emitter.emit('row-processed', this, k,
+ this.validRowsIndex.length, isRowValid);
}// for k
this.nbVisibleRows = this.validRowsIndex.length;
this.nbHiddenRows = hiddenrows;
- if(this.rememberGridValues){
- Mod.store.saveFilterValues(this.fltsValuesCookie);
- }
- //applies filter props after filtering process
- if(!this.paging){
- this.applyProps();
- } else {
- // Shouldn't need to care of that here...
- // TODO: provide a method in paging module
- Mod.paging.startPagingRow = 0;
- Mod.paging.currentPageNb = 1;
- Mod.paging.setPagingInfo(this.validRowsIndex);
- }
- //invokes onafter callback
+ //invokes onafterfilter callback
if(this.onAfterFilter){
- this.onAfterFilter.call(null,this);
+ this.onAfterFilter.call(null, this);
}
+
+ this.emitter.emit('after-filtering', this);
}
/**
- * Re-apply the features/behaviour concerned by filtering/paging operation
- *
- * NOTE: this will disappear whenever custom events in place
- */
- applyProps(){
- let Mod = this.Mod;
-
- //shows rows always visible
- if(this.hasVisibleRows){
- this.enforceVisibility();
- }
- //columns operations
- if(this.hasExtension('colOps')){
- this.extension('colOps').calc();
- }
-
- //re-populates drop-down filters
- if(this.linkedFilters){
- this.linkFilters();
- }
-
- if(this.rowsCounter){
- Mod.rowsCounter.refresh(this.nbVisibleRows);
- }
-
- if(this.popupFilters){
- Mod.popupFilter.closeAll();
- }
-
- if(this.noResults){
- if(this.nbVisibleRows > 0){
- Mod.noResults.hide();
- } else {
- Mod.noResults.show();
- }
- }
- }
-
- /**
- * Return the data of a specified colum
+ * Return the data of a specified column
* @param {Number} colIndex Column index
* @param {Boolean} includeHeaders Optional: include headers row
* @param {Boolean} num Optional: return unformatted number
@@ -2038,7 +1625,8 @@ export class TableFilter{
if(!this.fltGrid){
return;
}
- let fltValue,
+ let fltValue = '',
+ fltValues = [],
flt = this.getFilterElement(index);
if(!flt){
return '';
@@ -2051,27 +1639,32 @@ export class TableFilter{
}
//mutiple select
else if(fltColType === this.fltTypeMulti){
- fltValue = '';
+ // TODO: extract a method in dropdown module from below
for(let j=0, len=flt.options.length; j<len; j++){
if(flt.options[j].selected){
- fltValue = fltValue.concat(
- flt.options[j].value+' ' +
- this.orOperator + ' '
- );
+ fltValues.push(flt.options[j].value);
}
}
- //removes last operator ||
- fltValue = fltValue.substr(0, fltValue.length-4);
+ //return empty string if collection is empty
+ fltValue = fltValues.length > 0 ? fltValues : '';
}
//checklist
else if(fltColType === this.fltTypeCheckList){
+ // TODO: extract a method in checklist module from below
if(flt.getAttribute('value') !== null){
- fltValue = flt.getAttribute('value');
+ fltValues = flt.getAttribute('value');
//removes last operator ||
- fltValue = fltValue.substr(0, fltValue.length-3);
- } else{
- fltValue = '';
+ fltValues = fltValues.substr(0, fltValues.length-3);
+ //convert || separated values into array
+ fltValues = fltValues.split(' ' + this.orOperator + ' ');
}
+ //return empty string if collection is empty
+ fltValue = fltValues.length > 0 ? fltValues : '';
+ }
+ //return an empty string if collection contains a single empty string
+ if(Types.isArray(fltValue) && fltValue.length === 1 &&
+ fltValue[0] === ''){
+ fltValue = '';
}
return fltValue;
}
@@ -2086,10 +1679,12 @@ export class TableFilter{
}
let searchArgs = [];
for(let i=0, len=this.fltIds.length; i<len; i++){
- searchArgs.push(
- Str.trim(
- Str.matchCase(this.getFilterValue(i), this.caseSensitive))
- );
+ let fltValue = this.getFilterValue(i);
+ if(Types.isArray(fltValue)){
+ searchArgs.push(fltValue);
+ } else {
+ searchArgs.push(Str.trim(fltValue));
+ }
}
return searchArgs;
}
@@ -2169,7 +1764,7 @@ export class TableFilter{
* @return {String}
*/
getCellData(cell){
- var idx = cell.cellIndex;
+ let idx = cell.cellIndex;
//Check for customCellData callback
if(this.customCellData && this.customCellDataCols.indexOf(idx) != -1){
return this.customCellData.call(null, this, cell, idx);
@@ -2318,6 +1913,18 @@ export class TableFilter{
if(this.paging){
row.setAttribute('validRow', validFlag);
}
+
+ if(isValid){
+ if(this.validRowsIndex.indexOf(rowIndex) === -1){
+ this.validRowsIndex.push(rowIndex);
+ }
+
+ if(this.onRowValidated){
+ this.onRowValidated.call(null, this, rowIndex);
+ }
+
+ this.emitter.emit('row-validated', this, rowIndex);
+ }
}
/**
@@ -2330,18 +1937,16 @@ export class TableFilter{
this.validRowsIndex = [];
for(let k=this.refRow; k<this.nbFilterableRows; k++){
this.validateRow(k, true);
- this.validRowsIndex.push(k);
}
}
/**
* Set search value to a given filter
* @param {Number} index Column's index
- * @param {String} searcharg Search term
+ * @param {String or Array} searcharg Search term
*/
- setFilterValue(index, searcharg=''){
- if((!this.fltGrid && !this.isFirstLoad) ||
- !this.getFilterElement(index)){
+ setFilterValue(index, query=''){
+ if(!this.fltGrid){
return;
}
let slc = this.getFilterElement(index),
@@ -2349,50 +1954,39 @@ export class TableFilter{
if(fltColType !== this.fltTypeMulti &&
fltColType != this.fltTypeCheckList){
- slc.value = searcharg;
+ if(this.loadFltOnDemand && !this.initialized){
+ this.emitter.emit('build-select-filter', this, index,
+ this.linkedFilters, this.isExternalFlt);
+ }
+ slc.value = query;
}
//multiple selects
else if(fltColType === this.fltTypeMulti){
- let s = searcharg.split(' '+this.orOperator+' ');
- // let ct = 0; //keywords counter
- for(let j=0, len=slc.options.length; j<len; j++){
- let option = slc.options[j];
- if(s==='' || s[0]===''){
- option.selected = false;
- }
- if(option.value===''){
- option.selected = false;
- }
- if(option.value!=='' &&
- Arr.has(s, option.value, true)){
- option.selected = true;
- }//if
- }//for j
+ let values = Types.isArray(query) ? query :
+ query.split(' '+this.orOperator+' ');
+
+ if(this.loadFltOnDemand && !this.initialized){
+ this.emitter.emit('build-select-filter', this, index,
+ this.linkedFilters, this.isExternalFlt);
+ }
+
+ this.emitter.emit('select-options', this, index, values);
}
//checklist
else if(fltColType === this.fltTypeCheckList){
- searcharg = Str.matchCase(searcharg, this.caseSensitive);
- let sarg = searcharg.split(' '+this.orOperator+' ');
- let lisNb = Dom.tag(slc,'li').length;
-
- slc.setAttribute('value', '');
- slc.setAttribute('indexes', '');
-
- for(let k=0; k<lisNb; k++){
- let li = Dom.tag(slc,'li')[k],
- lbl = Dom.tag(li,'label')[0],
- chk = Dom.tag(li,'input')[0],
- lblTxt = Str.matchCase(
- Dom.getText(lbl), this.caseSensitive);
- if(lblTxt !== '' && Arr.has(sarg, lblTxt, true)){
- chk.checked = true;
- this.Mod.checkList.setCheckListValues(chk);
- }
- else{
- chk.checked = false;
- this.Mod.checkList.setCheckListValues(chk);
- }
+ let values = [];
+ if(this.loadFltOnDemand && !this.initialized){
+ this.emitter.emit('build-checklist-filter', this, index,
+ this.isExternalFlt);
}
+ if(Types.isArray(query)){
+ values = query;
+ } else {
+ query = Str.matchCase(query, this.caseSensitive);
+ values = query.split(' '+this.orOperator+' ');
+ }
+
+ this.emitter.emit('select-checklist-options', this, index, values);
}
}
@@ -2402,12 +1996,12 @@ export class TableFilter{
* @param {Element} tbl DOM element
*/
setColWidths(rowIndex, tbl){
- if(!this.fltGrid || !this.hasColWidths){
+ if(!this.hasColWidths){
return;
}
tbl = tbl || this.tbl;
let rIndex;
- if(rowIndex===undefined){
+ if(rowIndex === undefined){
rIndex = tbl.rows[0].style.display!='none' ? 0 : 1;
} else{
rIndex = rowIndex;
@@ -2454,29 +2048,30 @@ export class TableFilter{
}
}
- clearFilters(){
- this.EvtManager(this.Evt.name.clear);
- }
-
/**
* Clear all the filters' values
*/
- _clearFilters(){
+ clearFilters(){
if(!this.fltGrid){
return;
}
+
+ this.emitter.emit('before-clearing-filters', this);
+
if(this.onBeforeReset){
this.onBeforeReset.call(null, this, this.getFiltersValue());
}
for(let i=0, len=this.fltIds.length; i<len; i++){
this.setFilterValue(i, '');
}
- if(this.linkedFilters){
- this.linkFilters();
- }
- if(this.rememberPageLen){ Cookie.remove(this.pgLenCookie); }
- if(this.rememberPageNb){ Cookie.remove(this.pgNbCookie); }
+ // if(this.linkedFilters){
+ // this.linkFilters();
+ // }
+
+ this.filter();
+
if(this.onAfterReset){ this.onAfterReset.call(null, this); }
+ this.emitter.emit('after-clearing-filters', this);
}
/**
@@ -2489,12 +2084,30 @@ export class TableFilter{
}
}
+ /**
+ * Mark currently filtered column
+ * @param {Number} colIndex Column index
+ */
+ markActiveColumn(colIndex){
+ let header = this.getHeaderElement(colIndex);
+ if(Dom.hasClass(header, this.activeColumnsCssClass)){
+ return;
+ }
+ if(this.onBeforeActiveColumn){
+ this.onBeforeActiveColumn.call(null, this, colIndex);
+ }
+ Dom.addClass(header, this.activeColumnsCssClass);
+ if(this.onAfterActiveColumn){
+ this.onAfterActiveColumn.call(null, this, colIndex);
+ }
+ }
+
/**
* Refresh the filters subject to linking ('select', 'multiple',
* 'checklist' type)
*/
linkFilters(){
- if(!this.activeFilterId){
+ if(!this.linkedFilters || !this.activeFilterId){
return;
}
let slcA1 = this.getFiltersByType(this.fltTypeSlc, true),
@@ -2534,9 +2147,11 @@ export class TableFilter{
}
if(slcA3.indexOf(slcIndex[i]) != -1){
- this.Mod.checkList._build(slcIndex[i]);
+ this.emitter.emit('build-checklist-filter', this,
+ slcIndex[i], this.isExternalFlt);
} else {
- this.Mod.dropdown._build(slcIndex[i], true);
+ this.emitter.emit('build-select-filter', this, slcIndex[i],
+ true, this.isExternalFlt);
}
this.setFilterValue(slcIndex[i], slcSelectedValue);
@@ -2544,74 +2159,6 @@ export class TableFilter{
}// for i
}
- /**
- * Re-generate the filters grid bar when previously removed
- */
- _resetGrid(){
- if(this.isFirstLoad){
- return;
- }
-
- let Mod = this.Mod;
- let tbl = this.tbl;
- let rows = tbl.rows;
- let filtersRowIndex = this.filtersRowIndex;
- let filtersRow = rows[filtersRowIndex];
-
- // grid was removed, grid row element is stored in fltGridEl property
- if(!this.gridLayout){
- // If table has a thead ensure the filters row is appended in the
- // thead element
- if(tbl.tHead){
- var tempRow = tbl.tHead.insertRow(this.filtersRowIndex);
- tbl.tHead.replaceChild(this.fltGridEl, tempRow);
- } else {
- filtersRow.parentNode.insertBefore(this.fltGridEl, filtersRow);
- }
- }
-
- // filters are appended in external placeholders elements
- if(this.isExternalFlt){
- let externalFltTgtIds = this.externalFltTgtIds;
- for(let ct=0, len=externalFltTgtIds.length; ct<len; ct++){
- let extFlt = Dom.id(externalFltTgtIds[ct]);
-
- if(!extFlt){ continue; }
-
- let externalFltEl = this.externalFltEls[ct];
- extFlt.appendChild(externalFltEl);
- let colFltType = this.getFilterType(ct);
- //IE special treatment for gridLayout, appended filters are
- //empty
- if(this.gridLayout &&
- externalFltEl.innerHTML === '' &&
- colFltType !== this.fltTypeInp){
- if(colFltType === this.fltTypeSlc ||
- colFltType === this.fltTypeMulti){
- Mod.dropdown.build(ct);
- }
- if(colFltType === this.fltTypeCheckList){
- Mod.checkList.build(ct);
- }
- }
- }
- }
-
- this.nbFilterableRows = this.getRowsNb();
- this.nbVisibleRows = this.nbFilterableRows;
- this.nbRows = rows.length;
-
- if(this.popupFilters){
- this.headersRow++;
- Mod.popupFilter.reset();
- }
-
- if(!this.gridLayout){
- Dom.addClass(this.tbl, this.prfxTf);
- }
- this._hasGrid = true;
- }
-
/**
* Determines if passed filter column implements exact query match
* @param {Number} colIndex [description]
diff --git a/docs/file/src/types.js.html b/docs/file/src/types.js.html
index 01b2fe0d..095118c8 100644
--- a/docs/file/src/types.js.html
+++ b/docs/file/src/types.js.html
@@ -3,7 +3,7 @@
- src/types.js | tablefilter v0.0.23 API Document
+ src/types.js | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
diff --git a/docs/identifiers.html b/docs/identifiers.html
index d2120f47..f0c9b850 100644
--- a/docs/identifiers.html
+++ b/docs/identifiers.html
@@ -3,7 +3,7 @@
- Index | tablefilter v0.0.23 API Document
+ Index | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -277,6 +278,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
diff --git a/docs/index.html b/docs/index.html
index cde6584e..e449ec3e 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -3,7 +3,7 @@
- tablefilter v0.0.23 API Document
+ tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -103,6 +104,9 @@ solution
npm install tablefilter --save
+or get the future features from the next release channel:npm install tablefilter@next --save
+
+
Setup
Copy the tablefilter directory under dist and place it at desired location in your project. Then include the main js file in your page:
diff --git a/docs/script/search_index.js b/docs/script/search_index.js
index a265b4e6..6f089c59 100644
--- a/docs/script/search_index.js
+++ b/docs/script/search_index.js
@@ -47,6 +47,12 @@ window.esdocSearchIndex = [
"Dropdown tablefilter/src/modules/dropdown.js ",
"class"
],
+ [
+ "tablefilter/src/emitter.js~emitter",
+ "class/src/emitter.js~Emitter.html",
+ "Emitter tablefilter/src/emitter.js ",
+ "class"
+ ],
[
"tablefilter/src/modules/feature.js~feature",
"class/src/modules/feature.js~Feature.html",
@@ -473,6 +479,42 @@ window.esdocSearchIndex = [
"src/dom.js",
"file"
],
+ [
+ "src/emitter.js",
+ "file/src/emitter.js.html",
+ "src/emitter.js",
+ "file"
+ ],
+ [
+ "src/emitter.js~emitter#constructor",
+ "class/src/emitter.js~Emitter.html#instance-constructor-constructor",
+ "src/emitter.js~Emitter#constructor",
+ "method"
+ ],
+ [
+ "src/emitter.js~emitter#emit",
+ "class/src/emitter.js~Emitter.html#instance-method-emit",
+ "src/emitter.js~Emitter#emit",
+ "method"
+ ],
+ [
+ "src/emitter.js~emitter#events",
+ "class/src/emitter.js~Emitter.html#instance-member-events",
+ "src/emitter.js~Emitter#events",
+ "member"
+ ],
+ [
+ "src/emitter.js~emitter#off",
+ "class/src/emitter.js~Emitter.html#instance-method-off",
+ "src/emitter.js~Emitter#off",
+ "method"
+ ],
+ [
+ "src/emitter.js~emitter#on",
+ "class/src/emitter.js~Emitter.html#instance-method-on",
+ "src/emitter.js~Emitter#on",
+ "method"
+ ],
[
"src/event.js",
"file/src/event.js.html",
@@ -509,6 +551,12 @@ window.esdocSearchIndex = [
"src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#destroy",
"method"
],
+ [
+ "src/extensions/advancedgrid/adapterezedittable.js~adapterezedittable#emitter",
+ "class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html#instance-member-emitter",
+ "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#emitter",
+ "member"
+ ],
[
"src/extensions/advancedgrid/adapterezedittable.js~adapterezedittable#err",
"class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html#instance-member-err",
@@ -563,6 +611,12 @@ window.esdocSearchIndex = [
"src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#tf",
"member"
],
+ [
+ "src/extensions/advancedgrid/adapterezedittable.js~adapterezedittable#toggle",
+ "class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html#instance-method-toggle",
+ "src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable#toggle",
+ "method"
+ ],
[
"src/extensions/advancedgrid/adapterezedittable.js~adapterezedittable#vendorpath",
"class/src/extensions/advancedGrid/adapterEzEditTable.js~AdapterEzEditTable.html#instance-member-vendorPath",
@@ -1217,6 +1271,12 @@ window.esdocSearchIndex = [
"src/extensions/sort/adapterSortabletable.js~AdapterSortableTable#destroy",
"method"
],
+ [
+ "src/extensions/sort/adaptersortabletable.js~adaptersortabletable#emitter",
+ "class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html#instance-member-emitter",
+ "src/extensions/sort/adapterSortabletable.js~AdapterSortableTable#emitter",
+ "member"
+ ],
[
"src/extensions/sort/adaptersortabletable.js~adaptersortabletable#imgascclassname",
"class/src/extensions/sort/adapterSortabletable.js~AdapterSortableTable.html#instance-member-imgAscClassName",
@@ -1391,6 +1451,18 @@ window.esdocSearchIndex = [
"src/modules/alternateRows.js~AlternateRows#oddCss",
"member"
],
+ [
+ "src/modules/alternaterows.js~alternaterows#processall",
+ "class/src/modules/alternateRows.js~AlternateRows.html#instance-method-processAll",
+ "src/modules/alternateRows.js~AlternateRows#processAll",
+ "method"
+ ],
+ [
+ "src/modules/alternaterows.js~alternaterows#processrow",
+ "class/src/modules/alternateRows.js~AlternateRows.html#instance-method-processRow",
+ "src/modules/alternateRows.js~AlternateRows#processRow",
+ "method"
+ ],
[
"src/modules/alternaterows.js~alternaterows#removerowbg",
"class/src/modules/alternateRows.js~AlternateRows.html#instance-method-removeRowBg",
@@ -1475,6 +1547,12 @@ window.esdocSearchIndex = [
"src/modules/checkList.js~CheckList#constructor",
"method"
],
+ [
+ "src/modules/checklist.js~checklist#destroy",
+ "class/src/modules/checkList.js~CheckList.html#instance-method-destroy",
+ "src/modules/checkList.js~CheckList#destroy",
+ "method"
+ ],
[
"src/modules/checklist.js~checklist#enablechecklistresetfilter",
"class/src/modules/checkList.js~CheckList.html#instance-member-enableCheckListResetFilter",
@@ -1487,6 +1565,18 @@ window.esdocSearchIndex = [
"src/modules/checkList.js~CheckList#excludedOpts",
"member"
],
+ [
+ "src/modules/checklist.js~checklist#init",
+ "class/src/modules/checkList.js~CheckList.html#instance-method-init",
+ "src/modules/checkList.js~CheckList#init",
+ "method"
+ ],
+ [
+ "src/modules/checklist.js~checklist#initialized",
+ "class/src/modules/checkList.js~CheckList.html#instance-member-initialized",
+ "src/modules/checkList.js~CheckList#initialized",
+ "member"
+ ],
[
"src/modules/checklist.js~checklist#iscustom",
"class/src/modules/checkList.js~CheckList.html#instance-member-isCustom",
@@ -1499,6 +1589,12 @@ window.esdocSearchIndex = [
"src/modules/checkList.js~CheckList#onChange",
"method"
],
+ [
+ "src/modules/checklist.js~checklist#onchecklistclick",
+ "class/src/modules/checkList.js~CheckList.html#instance-method-onCheckListClick",
+ "src/modules/checkList.js~CheckList#onCheckListClick",
+ "method"
+ ],
[
"src/modules/checklist.js~checklist#optionclick",
"class/src/modules/checkList.js~CheckList.html#instance-method-optionClick",
@@ -1523,18 +1619,18 @@ window.esdocSearchIndex = [
"src/modules/checkList.js~CheckList#prfxCheckListDiv",
"member"
],
+ [
+ "src/modules/checklist.js~checklist#selectoptions",
+ "class/src/modules/checkList.js~CheckList.html#instance-method-selectOptions",
+ "src/modules/checkList.js~CheckList#selectOptions",
+ "method"
+ ],
[
"src/modules/checklist.js~checklist#setchecklistvalues",
"class/src/modules/checkList.js~CheckList.html#instance-method-setCheckListValues",
"src/modules/checkList.js~CheckList#setCheckListValues",
"method"
],
- [
- "src/modules/checklist.js~checklist#tf",
- "class/src/modules/checkList.js~CheckList.html#instance-member-tf",
- "src/modules/checkList.js~CheckList#tf",
- "member"
- ],
[
"src/modules/clearbutton.js",
"file/src/modules/clearButton.js.html",
@@ -1643,12 +1739,30 @@ window.esdocSearchIndex = [
"src/modules/dropdown.js~Dropdown#constructor",
"method"
],
+ [
+ "src/modules/dropdown.js~dropdown#destroy",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-method-destroy",
+ "src/modules/dropdown.js~Dropdown#destroy",
+ "method"
+ ],
[
"src/modules/dropdown.js~dropdown#enableslcresetfilter",
"class/src/modules/dropdown.js~Dropdown.html#instance-member-enableSlcResetFilter",
"src/modules/dropdown.js~Dropdown#enableSlcResetFilter",
"member"
],
+ [
+ "src/modules/dropdown.js~dropdown#init",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-method-init",
+ "src/modules/dropdown.js~Dropdown#init",
+ "method"
+ ],
+ [
+ "src/modules/dropdown.js~dropdown#initialized",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-member-initialized",
+ "src/modules/dropdown.js~Dropdown#initialized",
+ "member"
+ ],
[
"src/modules/dropdown.js~dropdown#iscustom",
"class/src/modules/dropdown.js~Dropdown.html#instance-member-isCustom",
@@ -1667,6 +1781,18 @@ window.esdocSearchIndex = [
"src/modules/dropdown.js~Dropdown#nonEmptyText",
"member"
],
+ [
+ "src/modules/dropdown.js~dropdown#onslcchange",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-method-onSlcChange",
+ "src/modules/dropdown.js~Dropdown#onSlcChange",
+ "method"
+ ],
+ [
+ "src/modules/dropdown.js~dropdown#onslcfocus",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-method-onSlcFocus",
+ "src/modules/dropdown.js~Dropdown#onSlcFocus",
+ "method"
+ ],
[
"src/modules/dropdown.js~dropdown#opts",
"class/src/modules/dropdown.js~Dropdown.html#instance-member-opts",
@@ -1679,6 +1805,12 @@ window.esdocSearchIndex = [
"src/modules/dropdown.js~Dropdown#optsTxt",
"member"
],
+ [
+ "src/modules/dropdown.js~dropdown#selectoptions",
+ "class/src/modules/dropdown.js~Dropdown.html#instance-method-selectOptions",
+ "src/modules/dropdown.js~Dropdown#selectOptions",
+ "method"
+ ],
[
"src/modules/dropdown.js~dropdown#slcfillingmethod",
"class/src/modules/dropdown.js~Dropdown.html#instance-member-slcFillingMethod",
@@ -1691,12 +1823,6 @@ window.esdocSearchIndex = [
"src/modules/dropdown.js~Dropdown#slcInnerHtml",
"member"
],
- [
- "src/modules/dropdown.js~dropdown#tf",
- "class/src/modules/dropdown.js~Dropdown.html#instance-member-tf",
- "src/modules/dropdown.js~Dropdown#tf",
- "member"
- ],
[
"src/modules/feature.js",
"file/src/modules/feature.js.html",
@@ -1727,6 +1853,12 @@ window.esdocSearchIndex = [
"src/modules/feature.js~Feature#disable",
"method"
],
+ [
+ "src/modules/feature.js~feature#emitter",
+ "class/src/modules/feature.js~Feature.html#instance-member-emitter",
+ "src/modules/feature.js~Feature#emitter",
+ "member"
+ ],
[
"src/modules/feature.js~feature#enable",
"class/src/modules/feature.js~Feature.html#instance-method-enable",
@@ -2069,6 +2201,18 @@ window.esdocSearchIndex = [
"src/modules/highlightKeywords.js~HighlightKeyword#constructor",
"method"
],
+ [
+ "src/modules/highlightkeywords.js~highlightkeyword#destroy",
+ "class/src/modules/highlightKeywords.js~HighlightKeyword.html#instance-method-destroy",
+ "src/modules/highlightKeywords.js~HighlightKeyword#destroy",
+ "method"
+ ],
+ [
+ "src/modules/highlightkeywords.js~highlightkeyword#emitter",
+ "class/src/modules/highlightKeywords.js~HighlightKeyword.html#instance-member-emitter",
+ "src/modules/highlightKeywords.js~HighlightKeyword#emitter",
+ "member"
+ ],
[
"src/modules/highlightkeywords.js~highlightkeyword#highlight",
"class/src/modules/highlightKeywords.js~HighlightKeyword.html#instance-method-highlight",
@@ -2087,6 +2231,12 @@ window.esdocSearchIndex = [
"src/modules/highlightKeywords.js~HighlightKeyword#highlightedNodes",
"member"
],
+ [
+ "src/modules/highlightkeywords.js~highlightkeyword#init",
+ "class/src/modules/highlightKeywords.js~HighlightKeyword.html#instance-method-init",
+ "src/modules/highlightKeywords.js~HighlightKeyword#init",
+ "method"
+ ],
[
"src/modules/highlightkeywords.js~highlightkeyword#tf",
"class/src/modules/highlightKeywords.js~HighlightKeyword.html#instance-member-tf",
@@ -2309,6 +2459,12 @@ window.esdocSearchIndex = [
"src/modules/noResults.js~NoResults#show",
"method"
],
+ [
+ "src/modules/noresults.js~noresults#toggle",
+ "class/src/modules/noResults.js~NoResults.html#instance-method-toggle",
+ "src/modules/noResults.js~NoResults#toggle",
+ "method"
+ ],
[
"src/modules/paging.js",
"file/src/modules/paging.js.html",
@@ -2621,6 +2777,18 @@ window.esdocSearchIndex = [
"src/modules/paging.js~Paging#resetPageLength",
"method"
],
+ [
+ "src/modules/paging.js~paging#resetpaginginfo",
+ "class/src/modules/paging.js~Paging.html#instance-method-resetPagingInfo",
+ "src/modules/paging.js~Paging#resetPagingInfo",
+ "method"
+ ],
+ [
+ "src/modules/paging.js~paging#resetvalues",
+ "class/src/modules/paging.js~Paging.html#instance-method-resetValues",
+ "src/modules/paging.js~Paging#resetValues",
+ "method"
+ ],
[
"src/modules/paging.js~paging#resultsperpage",
"class/src/modules/paging.js~Paging.html#instance-member-resultsPerPage",
@@ -2987,6 +3155,72 @@ window.esdocSearchIndex = [
"src/modules/statusBar.js~StatusBar#message",
"method"
],
+ [
+ "src/modules/statusbar.js~statusbar#msgchangepage",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgChangePage",
+ "src/modules/statusBar.js~StatusBar#msgChangePage",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgchangeresults",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgChangeResults",
+ "src/modules/statusBar.js~StatusBar#msgChangeResults",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgclear",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgClear",
+ "src/modules/statusBar.js~StatusBar#msgClear",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgfilter",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgFilter",
+ "src/modules/statusBar.js~StatusBar#msgFilter",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgloadextensions",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgLoadExtensions",
+ "src/modules/statusBar.js~StatusBar#msgLoadExtensions",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgloadthemes",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgLoadThemes",
+ "src/modules/statusBar.js~StatusBar#msgLoadThemes",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgpopulate",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgPopulate",
+ "src/modules/statusBar.js~StatusBar#msgPopulate",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgpopulatechecklist",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgPopulateCheckList",
+ "src/modules/statusBar.js~StatusBar#msgPopulateCheckList",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgresetpage",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgResetPage",
+ "src/modules/statusBar.js~StatusBar#msgResetPage",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgresetpagelength",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgResetPageLength",
+ "src/modules/statusBar.js~StatusBar#msgResetPageLength",
+ "member"
+ ],
+ [
+ "src/modules/statusbar.js~statusbar#msgsort",
+ "class/src/modules/statusBar.js~StatusBar.html#instance-member-msgSort",
+ "src/modules/statusBar.js~StatusBar#msgSort",
+ "member"
+ ],
[
"src/modules/statusbar.js~statusbar#onaftershowmsg",
"class/src/modules/statusBar.js~StatusBar.html#instance-member-onAfterShowMsg",
@@ -3065,18 +3299,36 @@ window.esdocSearchIndex = [
"src/modules/store.js",
"file"
],
+ [
+ "src/modules/store.js~store#clearcookies",
+ "class/src/modules/store.js~Store.html#instance-method-clearCookies",
+ "src/modules/store.js~Store#clearCookies",
+ "method"
+ ],
[
"src/modules/store.js~store#constructor",
"class/src/modules/store.js~Store.html#instance-constructor-constructor",
"src/modules/store.js~Store#constructor",
"method"
],
+ [
+ "src/modules/store.js~store#destroy",
+ "class/src/modules/store.js~Store.html#instance-method-destroy",
+ "src/modules/store.js~Store#destroy",
+ "method"
+ ],
[
"src/modules/store.js~store#duration",
"class/src/modules/store.js~Store.html#instance-member-duration",
"src/modules/store.js~Store#duration",
"member"
],
+ [
+ "src/modules/store.js~store#emitter",
+ "class/src/modules/store.js~Store.html#instance-member-emitter",
+ "src/modules/store.js~Store#emitter",
+ "member"
+ ],
[
"src/modules/store.js~store#getfiltervalues",
"class/src/modules/store.js~Store.html#instance-method-getFilterValues",
@@ -3095,6 +3347,12 @@ window.esdocSearchIndex = [
"src/modules/store.js~Store#getPageNb",
"method"
],
+ [
+ "src/modules/store.js~store#init",
+ "class/src/modules/store.js~Store.html#instance-method-init",
+ "src/modules/store.js~Store#init",
+ "method"
+ ],
[
"src/modules/store.js~store#savefiltervalues",
"class/src/modules/store.js~Store.html#instance-method-saveFilterValues",
@@ -3143,12 +3401,6 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#Evt",
"member"
],
- [
- "src/tablefilter.js~tablefilter#evtmanager",
- "class/src/tablefilter.js~TableFilter.html#instance-method-EvtManager",
- "src/tablefilter.js~TableFilter#EvtManager",
- "method"
- ],
[
"src/tablefilter.js~tablefilter#extregistry",
"class/src/tablefilter.js~TableFilter.html#instance-member-ExtRegistry",
@@ -3191,12 +3443,6 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#anOperator",
"member"
],
- [
- "src/tablefilter.js~tablefilter#applyprops",
- "class/src/tablefilter.js~TableFilter.html#instance-method-applyProps",
- "src/tablefilter.js~TableFilter#applyProps",
- "method"
- ],
[
"src/tablefilter.js~tablefilter#autofilter",
"class/src/tablefilter.js~TableFilter.html#instance-member-autoFilter",
@@ -3419,6 +3665,12 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#emOperator",
"member"
],
+ [
+ "src/tablefilter.js~tablefilter#emitter",
+ "class/src/tablefilter.js~TableFilter.html#instance-member-emitter",
+ "src/tablefilter.js~TableFilter#emitter",
+ "member"
+ ],
[
"src/tablefilter.js~tablefilter#emptytext",
"class/src/tablefilter.js~TableFilter.html#instance-member-emptyText",
@@ -3839,12 +4091,6 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#hasGrid",
"method"
],
- [
- "src/tablefilter.js~tablefilter#hasstoredvalues",
- "class/src/tablefilter.js~TableFilter.html#instance-member-hasStoredValues",
- "src/tablefilter.js~TableFilter#hasStoredValues",
- "member"
- ],
[
"src/tablefilter.js~tablefilter#hasthemes",
"class/src/tablefilter.js~TableFilter.html#instance-member-hasThemes",
@@ -3911,6 +4157,12 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#initExtensions",
"method"
],
+ [
+ "src/tablefilter.js~tablefilter#initialized",
+ "class/src/tablefilter.js~TableFilter.html#instance-member-initialized",
+ "src/tablefilter.js~TableFilter#initialized",
+ "member"
+ ],
[
"src/tablefilter.js~tablefilter#iscustomoptions",
"class/src/tablefilter.js~TableFilter.html#instance-method-isCustomOptions",
@@ -3929,12 +4181,6 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#isExternalFlt",
"member"
],
- [
- "src/tablefilter.js~tablefilter#isfirstload",
- "class/src/tablefilter.js~TableFilter.html#instance-member-isFirstLoad",
- "src/tablefilter.js~TableFilter#isFirstLoad",
- "member"
- ],
[
"src/tablefilter.js~tablefilter#isimported",
"class/src/tablefilter.js~TableFilter.html#instance-method-isImported",
@@ -4055,84 +4301,18 @@ window.esdocSearchIndex = [
"src/tablefilter.js~TableFilter#mDivCssClass",
"member"
],
+ [
+ "src/tablefilter.js~tablefilter#markactivecolumn",
+ "class/src/tablefilter.js~TableFilter.html#instance-method-markActiveColumn",
+ "src/tablefilter.js~TableFilter#markActiveColumn",
+ "method"
+ ],
[
"src/tablefilter.js~tablefilter#markactivecolumns",
"class/src/tablefilter.js~TableFilter.html#instance-member-markActiveColumns",
"src/tablefilter.js~TableFilter#markActiveColumns",
"member"
],
- [
- "src/tablefilter.js~tablefilter#msgchangepage",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgChangePage",
- "src/tablefilter.js~TableFilter#msgChangePage",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgchangeresults",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgChangeResults",
- "src/tablefilter.js~TableFilter#msgChangeResults",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgclear",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgClear",
- "src/tablefilter.js~TableFilter#msgClear",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgfilter",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgFilter",
- "src/tablefilter.js~TableFilter#msgFilter",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgloadextensions",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgLoadExtensions",
- "src/tablefilter.js~TableFilter#msgLoadExtensions",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgloadthemes",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgLoadThemes",
- "src/tablefilter.js~TableFilter#msgLoadThemes",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgpopulate",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgPopulate",
- "src/tablefilter.js~TableFilter#msgPopulate",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgpopulatechecklist",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgPopulateCheckList",
- "src/tablefilter.js~TableFilter#msgPopulateCheckList",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgresetpage",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgResetPage",
- "src/tablefilter.js~TableFilter#msgResetPage",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgresetpagelength",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgResetPageLength",
- "src/tablefilter.js~TableFilter#msgResetPageLength",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgresetvalues",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgResetValues",
- "src/tablefilter.js~TableFilter#msgResetValues",
- "member"
- ],
- [
- "src/tablefilter.js~tablefilter#msgsort",
- "class/src/tablefilter.js~TableFilter.html#instance-member-msgSort",
- "src/tablefilter.js~TableFilter#msgSort",
- "member"
- ],
[
"src/tablefilter.js~tablefilter#nbcells",
"class/src/tablefilter.js~TableFilter.html#instance-member-nbCells",
diff --git a/docs/source.html b/docs/source.html
index bd9867b7..84e1670c 100644
--- a/docs/source.html
+++ b/docs/source.html
@@ -3,7 +3,7 @@
- Source | tablefilter v0.0.23 API Document
+ Source | tablefilter v0.1.9 API Document
@@ -39,6 +39,7 @@
ColOps
ColsVisibility
Dropdown
+Emitter
Feature
FiltersVisibility
GridLayout
@@ -67,8 +68,8 @@
+
document 24%
+
175/704
@@ -89,7 +90,7 @@
-
379 byte
17
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/cookie.js
@@ -97,7 +98,7 @@
-
1455 byte
58
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/date.js
@@ -105,7 +106,7 @@
-
5711 byte
172
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/dom.js
@@ -113,7 +114,15 @@
-
4442 byte
165
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
+
+
+ src/emitter.js
+ Emitter
+ 83 % 5/6
+ 1263 byte
+ 50
+ 2016-01-04 11:10:40 (UTC)
src/event.js
@@ -121,15 +130,15 @@
-
1299 byte
53
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/extensions/advancedGrid/adapterEzEditTable.js
AdapterEzEditTable
- 26 % 4/15
- 15423 byte
- 375
- 2016-01-06 07:20:12 (UTC)
+ 29 % 5/17
+ 16634 byte
+ 415
+ 2016-01-04 11:10:40 (UTC)
src/extensions/advancedGrid/advancedGrid.js
@@ -137,15 +146,15 @@
-
90 byte
2
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/extensions/colOps/colOps.js
ColOps
22 % 2/9
- 12186 byte
- 315
- 2016-01-06 07:20:12 (UTC)
+ 12372 byte
+ 321
+ 2016-01-04 11:10:40 (UTC)
src/extensions/colsVisibility/colsVisibility.js
@@ -153,7 +162,7 @@
17 % 10/58
17262 byte
520
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/extensions/filtersVisibility/filtersVisibility.js
@@ -161,15 +170,15 @@
15 % 5/33
5733 byte
184
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/extensions/sort/adapterSortabletable.js
AdapterSortableTable
- 11 % 3/27
- 14738 byte
- 446
- 2016-01-06 07:20:12 (UTC)
+ 10 % 3/28
+ 13392 byte
+ 413
+ 2016-01-04 11:10:40 (UTC)
src/extensions/sort/sort.js
@@ -177,7 +186,7 @@
-
198 byte
8
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/helpers.js
@@ -185,23 +194,23 @@
-
433 byte
23
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/modules/alternateRows.js
AlternateRows
- 55 % 5/9
- 2368 byte
- 94
- 2016-01-06 07:20:12 (UTC)
+ 54 % 6/11
+ 3361 byte
+ 128
+ 2016-01-04 11:10:40 (UTC)
src/modules/checkList.js
CheckList
- 22 % 5/22
- 14912 byte
- 419
- 2016-01-06 07:20:12 (UTC)
+ 26 % 7/26
+ 16743 byte
+ 480
+ 2016-01-04 11:10:40 (UTC)
src/modules/clearButton.js
@@ -209,103 +218,103 @@
25 % 3/12
2613 byte
94
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/modules/dropdown.js
Dropdown
- 26 % 4/15
- 12060 byte
- 342
- 2016-01-06 07:20:12 (UTC)
+ 30 % 6/20
+ 13754 byte
+ 407
+ 2016-01-04 11:10:40 (UTC)
src/modules/feature.js
Feature
- 0 % 0/13
- 614 byte
- 37
- 2016-01-06 07:20:12 (UTC)
+ 0 % 0/14
+ 649 byte
+ 38
+ 2016-01-04 11:10:40 (UTC)
src/modules/gridLayout.js
GridLayout
10 % 3/28
- 11539 byte
- 332
- 2016-01-06 07:20:12 (UTC)
+ 11802 byte
+ 340
+ 2016-01-04 11:10:40 (UTC)
src/modules/help.js
Help
15 % 3/19
- 5311 byte
- 153
- 2016-01-06 07:20:12 (UTC)
+ 5370 byte
+ 155
+ 2016-01-04 11:10:40 (UTC)
src/modules/highlightKeywords.js
HighlightKeyword
- 50 % 4/8
- 3764 byte
- 107
- 2016-01-06 07:20:12 (UTC)
+ 36 % 4/11
+ 4631 byte
+ 138
+ 2016-01-04 11:10:40 (UTC)
src/modules/loader.js
Loader
6 % 1/15
- 2817 byte
- 100
- 2016-01-06 07:20:12 (UTC)
+ 4792 byte
+ 161
+ 2016-01-04 11:10:40 (UTC)
src/modules/noResults.js
NoResults
- 5 % 1/19
- 3306 byte
- 120
- 2016-01-06 07:20:12 (UTC)
+ 5 % 1/20
+ 3673 byte
+ 135
+ 2016-01-04 11:10:40 (UTC)
src/modules/paging.js
Paging
- 22 % 14/61
- 26572 byte
- 784
- 2016-01-06 07:20:12 (UTC)
+ 25 % 16/63
+ 26310 byte
+ 770
+ 2016-01-04 11:10:40 (UTC)
src/modules/popupFilter.js
PopupFilter
35 % 10/28
- 7952 byte
- 251
- 2016-01-06 07:20:12 (UTC)
+ 9005 byte
+ 276
+ 2016-01-04 11:10:40 (UTC)
src/modules/rowsCounter.js
RowsCounter
5 % 1/18
- 4500 byte
- 137
- 2016-01-06 07:20:12 (UTC)
+ 4925 byte
+ 148
+ 2016-01-04 11:10:40 (UTC)
src/modules/statusBar.js
StatusBar
- 5 % 1/18
- 3590 byte
- 123
- 2016-01-06 07:20:12 (UTC)
+ 3 % 1/29
+ 7710 byte
+ 224
+ 2016-01-04 11:10:40 (UTC)
src/modules/store.js
Store
- 70 % 7/10
- 2235 byte
- 100
- 2016-01-06 07:20:12 (UTC)
+ 57 % 8/14
+ 3327 byte
+ 137
+ 2016-01-04 11:10:40 (UTC)
src/sort.js
@@ -313,7 +322,7 @@
-
187 byte
9
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/string.js
@@ -321,15 +330,15 @@
-
1495 byte
61
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)
src/tablefilter.js
TableFilter
- 30 % 73/238
- 98344 byte
- 2777
- 2016-01-06 07:20:12 (UTC)
+ 33 % 75/225
+ 79746 byte
+ 2323
+ 2016-01-04 11:10:40 (UTC)
src/types.js
@@ -337,7 +346,7 @@
-
1432 byte
71
- 2016-01-06 07:20:12 (UTC)
+ 2016-01-04 11:10:40 (UTC)