@elyx-code/project-logic-tree 0.0.7158 → 0.0.7159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16016,7 +16016,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
16016
16016
|
|
|
16017
16017
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
16018
16018
|
|
|
16019
|
-
export declare const CONDITION_TYPE_OPTIONS: readonly ["List of items", "List from cell range", "Number greater than", "Number greater than or equal", "Number less than", "Number less than or equal", "Number equal to", "Number not equal to", "Number between", "Number not between", "Text contains", "Text does not contain", "Text starts with", "Text ends with", "Text equals", "Text is valid email", "Text is valid URL", "Date is", "Date is before", "Date is after", "Date is on or before", "Date is on or after", "Date is between", "Date is not between", "Date is valid", "
|
|
16019
|
+
export declare const CONDITION_TYPE_OPTIONS: readonly ["List of items", "List from cell range", "Number greater than", "Number greater than or equal", "Number less than", "Number less than or equal", "Number equal to", "Number not equal to", "Number between", "Number not between", "Text contains", "Text does not contain", "Text starts with", "Text ends with", "Text equals", "Text is valid email", "Text is valid URL", "Date is", "Date is before", "Date is after", "Date is on or before", "Date is on or after", "Date is between", "Date is not between", "Date is valid", "Checkbox", "Custom formula"];
|
|
16020
16020
|
|
|
16021
16021
|
export declare enum ConditionDependencyField {
|
|
16022
16022
|
Parent = "parent"
|
package/dist/index.js
CHANGED
|
@@ -81332,8 +81332,6 @@ const adi = pp("ts", "TS", "Message timestamp", 0, "string", !0), sdi = pp("text
|
|
|
81332
81332
|
"Date is between",
|
|
81333
81333
|
"Date is not between",
|
|
81334
81334
|
"Date is valid",
|
|
81335
|
-
"Is empty",
|
|
81336
|
-
"Is not empty",
|
|
81337
81335
|
"Checkbox",
|
|
81338
81336
|
"Custom formula"
|
|
81339
81337
|
], Jwn = {
|
|
@@ -173771,6 +173769,8 @@ const T_ = {
|
|
|
173771
173769
|
"Number not between": "NUMBER_NOT_BETWEEN",
|
|
173772
173770
|
"Text contains": "TEXT_CONTAINS",
|
|
173773
173771
|
"Text does not contain": "TEXT_NOT_CONTAINS",
|
|
173772
|
+
"Text starts with": "TEXT_STARTS_WITH",
|
|
173773
|
+
"Text ends with": "TEXT_ENDS_WITH",
|
|
173774
173774
|
"Text equals": "TEXT_EQ",
|
|
173775
173775
|
"Text is valid email": "TEXT_IS_EMAIL",
|
|
173776
173776
|
"Text is valid URL": "TEXT_IS_URL",
|
|
@@ -173804,8 +173804,8 @@ function KH(r) {
|
|
|
173804
173804
|
return null;
|
|
173805
173805
|
if (T_[u])
|
|
173806
173806
|
return T_[u];
|
|
173807
|
-
const i = u.toUpperCase();
|
|
173808
|
-
return CR[i] ? CR[i] : rYi.has(i)
|
|
173807
|
+
const i = u.toUpperCase().replace(/\s+/g, "_");
|
|
173808
|
+
return CR[i] ? CR[i] : (rYi.has(i), i);
|
|
173809
173809
|
}
|
|
173810
173810
|
function aYi(r, u, i) {
|
|
173811
173811
|
if (r.length === 0) {
|
|
@@ -174048,8 +174048,6 @@ function fYi(r, u, i, n) {
|
|
|
174048
174048
|
case "TEXT_IS_EMAIL":
|
|
174049
174049
|
case "TEXT_IS_URL":
|
|
174050
174050
|
case "DATE_IS_VALID":
|
|
174051
|
-
case "BLANK":
|
|
174052
|
-
case "NOT_BLANK":
|
|
174053
174051
|
case "BOOLEAN":
|
|
174054
174052
|
cYi(s, i, n);
|
|
174055
174053
|
break;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7159",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|