@vuu-ui/vuu-table-extras 3.1.0 → 3.2.0
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/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.
|
|
2
|
+
"version": "3.2.0",
|
|
3
3
|
"author": "heswell",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
@@ -11,19 +11,19 @@
|
|
|
11
11
|
"lezer-generate:column": "lezer-generator --output ./src/column-expression-input/column-language-parser/generated/column-parser.js ./src/column-expression-input/column-language-parser/grammar/column.grammar"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@vuu-ui/vuu-filter-types": "3.
|
|
15
|
-
"@vuu-ui/vuu-protocol-types": "3.
|
|
14
|
+
"@vuu-ui/vuu-filter-types": "3.2.0",
|
|
15
|
+
"@vuu-ui/vuu-protocol-types": "3.2.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@vuu-ui/vuu-codemirror": "3.
|
|
19
|
-
"@vuu-ui/vuu-data-editing": "3.
|
|
20
|
-
"@vuu-ui/vuu-data-react": "3.
|
|
21
|
-
"@vuu-ui/vuu-data-types": "3.
|
|
22
|
-
"@vuu-ui/vuu-table-types": "3.
|
|
23
|
-
"@vuu-ui/vuu-popups": "3.
|
|
24
|
-
"@vuu-ui/vuu-table": "3.
|
|
25
|
-
"@vuu-ui/vuu-utils": "3.
|
|
26
|
-
"@vuu-ui/vuu-ui-controls": "3.
|
|
18
|
+
"@vuu-ui/vuu-codemirror": "3.2.0",
|
|
19
|
+
"@vuu-ui/vuu-data-editing": "3.2.0",
|
|
20
|
+
"@vuu-ui/vuu-data-react": "3.2.0",
|
|
21
|
+
"@vuu-ui/vuu-data-types": "3.2.0",
|
|
22
|
+
"@vuu-ui/vuu-table-types": "3.2.0",
|
|
23
|
+
"@vuu-ui/vuu-popups": "3.2.0",
|
|
24
|
+
"@vuu-ui/vuu-table": "3.2.0",
|
|
25
|
+
"@vuu-ui/vuu-utils": "3.2.0",
|
|
26
|
+
"@vuu-ui/vuu-ui-controls": "3.2.0",
|
|
27
27
|
"@lezer/lr": "1.4.2",
|
|
28
28
|
"@salt-ds/core": "1.54.1",
|
|
29
29
|
"@salt-ds/lab": "1.0.0-alpha.83",
|
package/types/column-expression-input/column-language-parser/ColumnExpressionTreeWalker.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Tree } from "@vuu-ui/vuu-codemirror";
|
|
2
|
-
import { RelationalExpression } from "./generated/column-parser.terms";
|
|
1
|
+
import type { Tree } from "@vuu-ui/vuu-codemirror";
|
|
3
2
|
type expressionType = "arithmeticExpression" | "booleanCondition" | "booleanLiteralExpression" | "callExpression" | "colExpression" | "conditionalExpression" | "numericLiteralExpression" | "relationalExpression" | "stringLiteralExpression" | "unknown";
|
|
4
3
|
type arithmeticOp = "*" | "/" | "+" | "-" | "unknown";
|
|
5
4
|
type booleanOp = "and" | "or";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { CompletionSource } from "@vuu-ui/vuu-codemirror";
|
|
2
|
-
import {
|
|
3
|
-
import { IExpressionSuggestionProvider } from "./useColumnExpressionEditor";
|
|
1
|
+
import { type CompletionSource } from "@vuu-ui/vuu-codemirror";
|
|
2
|
+
import { type RefObject } from "react";
|
|
3
|
+
import type { IExpressionSuggestionProvider } from "./useColumnExpressionEditor";
|
|
4
4
|
export type ApplyCompletion = (mode?: "add" | "replace") => void;
|
|
5
5
|
export type Operator = "";
|
|
6
|
-
export declare const useColumnAutoComplete: (suggestionProvider: IExpressionSuggestionProvider, onSubmit:
|
|
6
|
+
export declare const useColumnAutoComplete: (suggestionProvider: IExpressionSuggestionProvider, onSubmit: RefObject<ApplyCompletion>) => CompletionSource;
|