Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
Updated packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed Jan 18, 2018
1 parent e977ff8 commit 17c866e
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 58 deletions.
6 changes: 3 additions & 3 deletions lib/QueryEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@
div_4.textContent = "If a class is specified, it must have a factory() static method that\n returns a new instance.";
text_13 = createText("\n\n ");
div_5 = createElement("div");
div_5.innerHTML = "Selectors are also associative arrays. Any amount of selectors can be\n provided. Empty selectors will be ignored. The first member of a selector\n must be a \"type\" string. The type string can be:\n\n <ul><li>& - (and) All values in the selector must be true.</li>\n <li>| - (or) At least one value in the selector must be true.</li>\n <li>!& - (not and) All values in the selector must be false.</li>\n <li>!| - (not or) At least one value in the selector must be false.</li>\n </ul>";
div_5.innerHTML = "Selectors are also associative arrays. Any amount of selectors can be\n provided. Empty selectors will be ignored. The first member of a selector\n must be a \"type\" string. The type string can be:\n\n <ul><li>&amp; - (and) All values in the selector must be true.</li>\n <li>| - (or) At least one value in the selector must be true.</li>\n <li>!&amp; - (not and) All values in the selector must be false.</li>\n <li>!| - (not or) At least one value in the selector must be false.</li>\n </ul>";
text_20 = createText("\n\n ");
div_6 = createElement("div");
div_6.innerHTML = "The rest of the entries in the selector are either more selectors or\n associative entries called selector clauses, which can be any of the\n following (in the form selector['name'] = value, or\n selector['name'] = [value1, value2,...]):\n\n <ul><li>guid - A GUID. True if the entity's GUID is equal.</li>\n <li>tag - A tag. True if the entity has the tag.</li>\n <li>isset - A name. True if the named variable exists and is not null.</li>\n <li>equal - An array with a name, then value. True if the named variable is\n defined and equal.</li>\n <li>data (deprecated) - An alias for equal.</li>\n <li>strict - An array with a name, then value. True if the named variable\n is defined and identical.</li>\n <li>array - An array with a name, then value. True if the named variable is\n an array containing the value. Uses in_array().</li>\n <li>match - An array with a name, then regular expression. True if the\n named variable matches. Uses preg_match(). More powerful than \"pmatch\"\n but slower. Must be surrounded by \"/\" delimiters.</li>\n <li>pmatch - An array with a name, then regular expression. True if the\n named variable matches. Uses POSIX RegExp. Case sensitive. Faster than\n \"match\". Must *not* be surrounded by any delimiters.</li>\n <li>ipmatch - An array with a name, then regular expression. True if the\n named variable matches. Uses POSIX RegExp. Case insensitive. Faster\n than \"match\". Must *not* be surrounded by any delimiters.</li>\n <li>like - An array with a name, then pattern. True if the named variable\n matches. Uses % for variable length wildcard and _ for single character\n wildcard. Case sensitive.</li>\n <li>ilike - An array with a name, then pattern. True if the named variable\n matches. Uses % for variable length wildcard and _ for single character\n wildcard. Case insensitive.</li>\n <li>gt - An array with a name, then value. True if the named variable is\n greater than the value.</li>\n <li>gte - An array with a name, then value. True if the named variable is\n greater than or equal to the value.</li>\n <li>lt - An array with a name, then value. True if the named variable is\n less than the value.</li>\n <li>lte - An array with a name, then value. True if the named variable is\n less than or equal to the value.</li>\n <li>ref - An array with a name, then either a entity, or a GUID. True if\n the named variable is the entity or an array containing the entity.</li>\n </ul>";
Expand All @@ -1256,7 +1256,7 @@
div_7.textContent = "These clauses can all be negated, by prefixing them with an exclamation\n point, such as \"!isset\".";
text_42 = createText("\n\n ");
div_8 = createElement("div");
div_8.innerHTML = "This example will retrieve the last two entities where:\n\n <ul><li>It has 'person' tag.</li>\n <li>spouse exists and is not null.</li>\n <li>gender is male and lname is Smith.</li>\n <li>warnings is not an integer 0.</li>\n <li>It has 'level1' and 'level2' tags, or it has 'access1' and 'access2'\n tags.</li>\n <li>It has either 'employee' or 'manager' tag.</li>\n <li>name is either Clark, James, Chris, Christopher, Jake, or Jacob.</li>\n <li>If age is 22 or more, then pay is not greater than 8.</li>\n </ul>\n\n <pre>Nymph.getEntities(\n {\n 'reverse': true,\n 'limit': 2\n },\n {\n 'type': '&', // all must be true\n 'tag': 'person',\n 'isset': 'spouse',\n 'equal': [\n ['gender', 'male'],\n ['lname', 'Smith']\n ],\n '!strict': ['warnings', 0]\n },\n {\n 'type': '|', // at least one of the selectors in this must evaluate to true\n '1': {\n 'type': '&',\n 'tag': ['level1', 'level2']\n },\n '2': {\n 'type': '&',\n 'tag': ['access1', 'access2']\n }\n },\n {\n 'type': '|', // at least one must be true\n 'tag': ['employee', 'manager']\n },\n {\n 'type': '|',\n 'equal': [\n ['name', 'Clark'],\n ['name', 'James']\n ],\n 'pmatch': [\n ['name', 'Chris(topher)?'],\n ['name', 'Ja(ke|cob)']\n ]\n },\n {\n 'type': '!|', // at least one must be false\n 'gte': ['age', 22],\n 'gt': ['pay', 8]\n }\n);</pre>";
div_8.innerHTML = "This example will retrieve the last two entities where:\n\n <ul><li>It has 'person' tag.</li>\n <li>spouse exists and is not null.</li>\n <li>gender is male and lname is Smith.</li>\n <li>warnings is not an integer 0.</li>\n <li>It has 'level1' and 'level2' tags, or it has 'access1' and 'access2'\n tags.</li>\n <li>It has either 'employee' or 'manager' tag.</li>\n <li>name is either Clark, James, Chris, Christopher, Jake, or Jacob.</li>\n <li>If age is 22 or more, then pay is not greater than 8.</li>\n </ul>\n\n <pre>Nymph.getEntities(\n {\n 'reverse': true,\n 'limit': 2\n },\n {\n 'type': '&amp;', // all must be true\n 'tag': 'person',\n 'isset': 'spouse',\n 'equal': [\n ['gender', 'male'],\n ['lname', 'Smith']\n ],\n '!strict': ['warnings', 0]\n },\n {\n 'type': '|', // at least one of the selectors in this must evaluate to true\n '1': {\n 'type': '&amp;',\n 'tag': ['level1', 'level2']\n },\n '2': {\n 'type': '&amp;',\n 'tag': ['access1', 'access2']\n }\n },\n {\n 'type': '|', // at least one must be true\n 'tag': ['employee', 'manager']\n },\n {\n 'type': '|',\n 'equal': [\n ['name', 'Clark'],\n ['name', 'James']\n ],\n 'pmatch': [\n ['name', 'Chris(topher)?'],\n ['name', 'Ja(ke|cob)']\n ]\n },\n {\n 'type': '!|', // at least one must be false\n 'gte': ['age', 22],\n 'gt': ['pay', 8]\n }\n);</pre>";
text_55 = createText("\n\n ");
div_9 = createElement("div");
button = createElement("button");
Expand Down Expand Up @@ -1457,7 +1457,7 @@

component.options = options;
component.root = options.root || component;
component.store = component.root.options.store;
component.store = component.root.store || options.store;
}

function callAll(fns) {
Expand Down
2 changes: 1 addition & 1 deletion lib/SelectorEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,7 @@

component.options = options;
component.root = options.root || component;
component.store = component.root.options.store;
component.store = component.root.store || options.store;
}

function callAll(fns) {
Expand Down
4 changes: 2 additions & 2 deletions lib/ValueEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};

/* src/ValueEditor.html generated by Svelte v1.48.0 */
/* src/ValueEditor.html generated by Svelte v1.51.1 */

var strtotime = window.strtotime;

Expand Down Expand Up @@ -1013,7 +1013,7 @@

component.options = options;
component.root = options.root || component;
component.store = component.root.options.store;
component.store = component.root.store || options.store;
}

function assign(target) {
Expand Down
100 changes: 50 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"svelte": "^1.48.0",
"svelte-cli": "^1.4.0"
"svelte": "^1.51.1",
"svelte-cli": "^2.1.0"
},
"dependencies": {
"locutus": "^2.0.9"
Expand Down

0 comments on commit 17c866e

Please sign in to comment.