Skip to content

Commit 21423ae

Browse files
authored
add mode to VuuAuthenticator to not create ws (#2170)
1 parent c569105 commit 21423ae

38 files changed

Lines changed: 483 additions & 471 deletions

File tree

vuu-ui/package-lock.json

Lines changed: 234 additions & 234 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vuu-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuu-ui",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"author": "heswell <steve@heswell.com>",
55
"license": "Apache-2.0",
66
"private": true,

vuu-ui/packages/grid-layout/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@heswell/grid-layout",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "VUU Layout Components",
55
"main": "src/index.ts",
66
"author": "heswell",
@@ -12,7 +12,7 @@
1212
},
1313
"types": "src/index.ts",
1414
"dependencies": {
15-
"@vuu-ui/vuu-utils": "2.1.7",
15+
"@vuu-ui/vuu-utils": "2.1.8",
1616
"@salt-ds/core": "1.54.1",
1717
"@salt-ds/lab": "1.0.0-alpha.83",
1818
"@salt-ds/styles": "0.2.1",

vuu-ui/packages/vuu-chart/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-chart",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "support for apache echarts using vuu data",
55
"main": "src/index.ts",
66
"license": "Apache-2.0",
@@ -10,14 +10,14 @@
1010
"type-defs": "node ../../scripts/build-type-defs.mjs"
1111
},
1212
"devDependencies": {
13-
"@vuu-ui/vuu-data-types": "2.1.7",
14-
"@vuu-ui/vuu-protocol-types": "2.1.7"
13+
"@vuu-ui/vuu-data-types": "2.1.8",
14+
"@vuu-ui/vuu-protocol-types": "2.1.8"
1515
},
1616
"dependencies": {
1717
"@salt-ds/styles": "0.2.1",
1818
"@salt-ds/window": "0.1.1",
19-
"@vuu-ui/vuu-context-menu": "2.1.7",
20-
"@vuu-ui/vuu-utils": "2.1.7",
19+
"@vuu-ui/vuu-context-menu": "2.1.8",
20+
"@vuu-ui/vuu-utils": "2.1.8",
2121
"clsx": "^2.0.0"
2222
},
2323
"peerDependencies": {

vuu-ui/packages/vuu-codemirror/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-codemirror",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"author": "heswell",
55
"main": "src/index.ts",
66
"license": "Apache-2.0",
@@ -11,15 +11,15 @@
1111
"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"
1212
},
1313
"devDependencies": {
14-
"@vuu-ui/vuu-table-types": "2.1.7"
14+
"@vuu-ui/vuu-table-types": "2.1.8"
1515
},
1616
"dependencies": {
1717
"@codemirror/autocomplete": "^6.4.2",
1818
"@codemirror/commands": "^6.2.1",
1919
"@codemirror/language": "^6.6.0",
2020
"@codemirror/state": "^6.2.0",
2121
"@codemirror/view": "^6.9.3",
22-
"@vuu-ui/vuu-utils": "2.1.7",
22+
"@vuu-ui/vuu-utils": "2.1.8",
2323
"@lezer/common": "1.2.3",
2424
"@lezer/highlight": "^1.1.3"
2525
},

vuu-ui/packages/vuu-context-menu/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-context-menu",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"author": "heswell",
55
"main": "src/index.ts",
66
"license": "Apache-2.0",
@@ -10,12 +10,12 @@
1010
"type-defs": "node ../../scripts/build-type-defs.mjs"
1111
},
1212
"devDependencies": {
13-
"@vuu-ui/vuu-data-types": "2.1.7",
14-
"@vuu-ui/vuu-protocol-types": "2.1.7",
15-
"@vuu-ui/vuu-table-types": "2.1.7"
13+
"@vuu-ui/vuu-data-types": "2.1.8",
14+
"@vuu-ui/vuu-protocol-types": "2.1.8",
15+
"@vuu-ui/vuu-table-types": "2.1.8"
1616
},
1717
"dependencies": {
18-
"@vuu-ui/vuu-utils": "2.1.7",
18+
"@vuu-ui/vuu-utils": "2.1.8",
1919
"@salt-ds/core": "1.54.1",
2020
"@salt-ds/styles": "0.2.1",
2121
"@salt-ds/window": "0.1.1"
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-data-local",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"main": "src/index.ts",
55
"author": "heswell",
66
"license": "Apache-2.0",
@@ -11,14 +11,14 @@
1111
"type-defs": "node ../../scripts/build-type-defs.mjs"
1212
},
1313
"devDependencies": {
14-
"@vuu-ui/vuu-data-types": "2.1.7",
15-
"@vuu-ui/vuu-table-types": "2.1.7",
16-
"@vuu-ui/vuu-filter-types": "2.1.7",
17-
"@vuu-ui/vuu-protocol-types": "2.1.7"
14+
"@vuu-ui/vuu-data-types": "2.1.8",
15+
"@vuu-ui/vuu-table-types": "2.1.8",
16+
"@vuu-ui/vuu-filter-types": "2.1.8",
17+
"@vuu-ui/vuu-protocol-types": "2.1.8"
1818
},
1919
"dependencies": {
20-
"@vuu-ui/vuu-filter-parser": "2.1.7",
21-
"@vuu-ui/vuu-utils": "2.1.7"
20+
"@vuu-ui/vuu-filter-parser": "2.1.8",
21+
"@vuu-ui/vuu-utils": "2.1.8"
2222
},
2323
"sideEffects": false
2424
}

vuu-ui/packages/vuu-data-react/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-data-react",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"main": "src/index.ts",
55
"author": "heswell",
66
"license": "Apache-2.0",
@@ -11,21 +11,21 @@
1111
"type-defs": "node ../../scripts/build-type-defs.mjs"
1212
},
1313
"devDependencies": {
14-
"@vuu-ui/vuu-data-types": "2.1.7",
15-
"@vuu-ui/vuu-filter-types": "2.1.7",
16-
"@vuu-ui/vuu-protocol-types": "2.1.7",
17-
"@vuu-ui/vuu-table-types": "2.1.7"
14+
"@vuu-ui/vuu-data-types": "2.1.8",
15+
"@vuu-ui/vuu-filter-types": "2.1.8",
16+
"@vuu-ui/vuu-protocol-types": "2.1.8",
17+
"@vuu-ui/vuu-table-types": "2.1.8"
1818
},
1919
"dependencies": {
20-
"@vuu-ui/vuu-context-menu": "2.1.7",
21-
"@vuu-ui/vuu-data-remote": "2.1.7",
22-
"@vuu-ui/vuu-filter-parser": "2.1.7",
23-
"@vuu-ui/vuu-filters": "2.1.7",
24-
"@vuu-ui/vuu-layout": "2.1.7",
25-
"@vuu-ui/vuu-notifications": "2.1.7",
26-
"@vuu-ui/vuu-ui-controls": "2.1.7",
27-
"@vuu-ui/vuu-utils": "2.1.7",
28-
"@vuu-ui/vuu-table": "2.1.7",
20+
"@vuu-ui/vuu-context-menu": "2.1.8",
21+
"@vuu-ui/vuu-data-remote": "2.1.8",
22+
"@vuu-ui/vuu-filter-parser": "2.1.8",
23+
"@vuu-ui/vuu-filters": "2.1.8",
24+
"@vuu-ui/vuu-layout": "2.1.8",
25+
"@vuu-ui/vuu-notifications": "2.1.8",
26+
"@vuu-ui/vuu-ui-controls": "2.1.8",
27+
"@vuu-ui/vuu-utils": "2.1.8",
28+
"@vuu-ui/vuu-table": "2.1.8",
2929
"@salt-ds/core": "1.54.1",
3030
"@salt-ds/styles": "0.2.1",
3131
"@salt-ds/window": "0.1.1"
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuu-ui/vuu-data-remote",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"main": "src/index.ts",
55
"author": "heswell",
66
"license": "Apache-2.0",
@@ -12,13 +12,13 @@
1212
"type-defs": "node ../../scripts/build-type-defs.mjs"
1313
},
1414
"devDependencies": {
15-
"@vuu-ui/vuu-data-types": "2.1.7",
16-
"@vuu-ui/vuu-table-types": "2.1.7",
17-
"@vuu-ui/vuu-filter-types": "2.1.7",
18-
"@vuu-ui/vuu-protocol-types": "2.1.7"
15+
"@vuu-ui/vuu-data-types": "2.1.8",
16+
"@vuu-ui/vuu-table-types": "2.1.8",
17+
"@vuu-ui/vuu-filter-types": "2.1.8",
18+
"@vuu-ui/vuu-protocol-types": "2.1.8"
1919
},
2020
"dependencies": {
21-
"@vuu-ui/vuu-filter-parser": "2.1.7",
22-
"@vuu-ui/vuu-utils": "2.1.7"
21+
"@vuu-ui/vuu-filter-parser": "2.1.8",
22+
"@vuu-ui/vuu-utils": "2.1.8"
2323
}
2424
}

vuu-ui/packages/vuu-data-remote/src/VuuAuthProvider.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ export interface AuthProvider {
99
login: (
1010
username?: string,
1111
password?: string,
12-
) => Promise<{ authorizations: string[]; token: string; user: User }>;
12+
) => Promise<{
13+
authorizations: string[];
14+
token: string;
15+
user: User;
16+
websocket?: boolean;
17+
}>;
1318
logout: () => void;
1419
}
1520

0 commit comments

Comments
 (0)