@vuu-ui/vuu-data-react 0.10.3 → 0.10.4-beta.1
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/cjs/datasource-provider/VuuDataSourceProvider.js +16 -9
- package/cjs/datasource-provider/VuuDataSourceProvider.js.map +1 -1
- package/cjs/datasource-provider/useAutoLoginToVuuServer.js +53 -0
- package/cjs/datasource-provider/useAutoLoginToVuuServer.js.map +1 -0
- package/esm/datasource-provider/VuuDataSourceProvider.js +16 -9
- package/esm/datasource-provider/VuuDataSourceProvider.js.map +1 -1
- package/esm/datasource-provider/useAutoLoginToVuuServer.js +51 -0
- package/esm/datasource-provider/useAutoLoginToVuuServer.js.map +1 -0
- package/package.json +13 -13
- package/types/datasource-provider/VuuDataSourceProvider.d.ts +2 -1
- package/types/datasource-provider/useAutoLoginToVuuServer.d.ts +6 -0
|
@@ -3,19 +3,26 @@
|
|
|
3
3
|
var jsxRuntime = require('react/jsx-runtime');
|
|
4
4
|
var vuuDataRemote = require('@vuu-ui/vuu-data-remote');
|
|
5
5
|
var vuuUtils = require('@vuu-ui/vuu-utils');
|
|
6
|
+
var useAutoLoginToVuuServer = require('./useAutoLoginToVuuServer.js');
|
|
6
7
|
|
|
7
8
|
const getServerAPI = () => vuuDataRemote.ConnectionManager.serverAPI;
|
|
8
9
|
const VuuDataSourceProvider = ({
|
|
10
|
+
autoLogin = false,
|
|
9
11
|
children
|
|
10
|
-
}) =>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
}) => {
|
|
13
|
+
useAutoLoginToVuuServer.useAutoLoginToVuuServer({
|
|
14
|
+
autoLogin
|
|
15
|
+
});
|
|
16
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
17
|
+
vuuUtils.DataSourceProvider,
|
|
18
|
+
{
|
|
19
|
+
VuuDataSource: vuuDataRemote.VuuDataSource,
|
|
20
|
+
getServerAPI,
|
|
21
|
+
isLocalData: false,
|
|
22
|
+
children
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
19
26
|
|
|
20
27
|
exports.VuuDataSourceProvider = VuuDataSourceProvider;
|
|
21
28
|
//# sourceMappingURL=VuuDataSourceProvider.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VuuDataSourceProvider.js","sources":["../../src/datasource-provider/VuuDataSourceProvider.tsx"],"sourcesContent":["import { ConnectionManager, VuuDataSource } from \"@vuu-ui/vuu-data-remote\";\nimport { DataSourceProvider } from \"@vuu-ui/vuu-utils\";\nimport { ReactNode } from \"react\";\n\nconst getServerAPI = () => ConnectionManager.serverAPI;\n\nexport const VuuDataSourceProvider = ({\n children,\n}: {\n children: ReactNode;\n}) => (\n <DataSourceProvider\n
|
|
1
|
+
{"version":3,"file":"VuuDataSourceProvider.js","sources":["../../src/datasource-provider/VuuDataSourceProvider.tsx"],"sourcesContent":["import { ConnectionManager, VuuDataSource } from \"@vuu-ui/vuu-data-remote\";\nimport { DataSourceProvider } from \"@vuu-ui/vuu-utils\";\nimport { ReactNode } from \"react\";\nimport { useAutoLoginToVuuServer } from \"./useAutoLoginToVuuServer\";\n\nconst getServerAPI = () => ConnectionManager.serverAPI;\n\nexport const VuuDataSourceProvider = ({\n autoLogin = false,\n children,\n}: {\n autoLogin?: boolean;\n children: ReactNode;\n}) => {\n useAutoLoginToVuuServer({\n autoLogin,\n });\n return (\n <DataSourceProvider\n VuuDataSource={VuuDataSource}\n getServerAPI={getServerAPI}\n isLocalData={false}\n >\n {children}\n </DataSourceProvider>\n );\n};\n"],"names":["ConnectionManager","useAutoLoginToVuuServer","jsx","DataSourceProvider","VuuDataSource"],"mappings":";;;;;;;AAKA,MAAM,YAAA,GAAe,MAAMA,+BAAkB,CAAA,SAAA;AAEtC,MAAM,wBAAwB,CAAC;AAAA,EACpC,SAAY,GAAA,KAAA;AAAA,EACZ;AACF,CAGM,KAAA;AACJ,EAAwBC,+CAAA,CAAA;AAAA,IACtB;AAAA,GACD,CAAA;AACD,EACE,uBAAAC,cAAA;AAAA,IAACC,2BAAA;AAAA,IAAA;AAAA,qBACCC,2BAAA;AAAA,MACA,YAAA;AAAA,MACA,WAAa,EAAA,KAAA;AAAA,MAEZ;AAAA;AAAA,GACH;AAEJ;;;;"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
+
var vuuDataRemote = require('@vuu-ui/vuu-data-remote');
|
|
5
|
+
var react = require('react');
|
|
6
|
+
|
|
7
|
+
const useAutoLoginToVuuServer = ({
|
|
8
|
+
authenticate = true,
|
|
9
|
+
autoConnect = true,
|
|
10
|
+
autoLogin = true,
|
|
11
|
+
secure = true
|
|
12
|
+
} = {}) => {
|
|
13
|
+
const [errorMessage, setErrorMessage] = react.useState("");
|
|
14
|
+
react.useEffect(() => {
|
|
15
|
+
const connect = async () => {
|
|
16
|
+
try {
|
|
17
|
+
let token = "no-token";
|
|
18
|
+
if (authenticate) {
|
|
19
|
+
token = await vuuDataRemote.authenticate(
|
|
20
|
+
"steve",
|
|
21
|
+
"xyz",
|
|
22
|
+
"/api/authn"
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
const protocol = secure ? "wss" : "ws";
|
|
26
|
+
vuuDataRemote.ConnectionManager.connect({
|
|
27
|
+
url: `${protocol}://localhost:8090/websocket`,
|
|
28
|
+
token,
|
|
29
|
+
username: "steve"
|
|
30
|
+
});
|
|
31
|
+
} catch (e) {
|
|
32
|
+
if (e instanceof Error) {
|
|
33
|
+
console.error(e.message);
|
|
34
|
+
setErrorMessage(e.message);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
if (autoConnect) {
|
|
39
|
+
connect();
|
|
40
|
+
}
|
|
41
|
+
return () => {
|
|
42
|
+
if (autoConnect) {
|
|
43
|
+
vuuDataRemote.ConnectionManager.disconnect();
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
}, [authenticate, autoConnect, secure]);
|
|
47
|
+
if (errorMessage) {
|
|
48
|
+
return /* @__PURE__ */ jsxRuntime.jsx("p", { children: "Unable to authenticate against Vuu Server A Vuu Server instance must be running to show this example." });
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.useAutoLoginToVuuServer = useAutoLoginToVuuServer;
|
|
53
|
+
//# sourceMappingURL=useAutoLoginToVuuServer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAutoLoginToVuuServer.js","sources":["../../src/datasource-provider/useAutoLoginToVuuServer.tsx"],"sourcesContent":["import {\n authenticate as vuuAuthenticate,\n ConnectionManager,\n} from \"@vuu-ui/vuu-data-remote\";\nimport { useEffect, useState } from \"react\";\n\nexport const useAutoLoginToVuuServer = ({\n authenticate = true,\n autoConnect = true,\n autoLogin = true,\n secure = true,\n}: {\n authenticate?: boolean;\n autoConnect?: boolean;\n autoLogin?: boolean;\n secure?: boolean;\n} = {}) => {\n const [errorMessage, setErrorMessage] = useState(\"\");\n useEffect(() => {\n const connect = async () => {\n try {\n let token = \"no-token\";\n if (authenticate) {\n token = (await vuuAuthenticate(\n \"steve\",\n \"xyz\",\n \"/api/authn\",\n )) as string;\n }\n const protocol = secure ? \"wss\" : \"ws\";\n ConnectionManager.connect({\n url: `${protocol}://localhost:8090/websocket`,\n token,\n username: \"steve\",\n });\n } catch (e: unknown) {\n if (e instanceof Error) {\n console.error(e.message);\n setErrorMessage(e.message);\n }\n }\n };\n if (autoConnect) {\n connect();\n }\n\n return () => {\n if (autoConnect) {\n ConnectionManager.disconnect();\n }\n };\n }, [authenticate, autoConnect, secure]);\n\n if (errorMessage) {\n return (\n <p>\n Unable to authenticate against Vuu Server A Vuu Server instance must be\n running to show this example.\n </p>\n );\n }\n};\n"],"names":["useState","useEffect","vuuAuthenticate","ConnectionManager","jsx"],"mappings":";;;;;;AAMO,MAAM,0BAA0B,CAAC;AAAA,EACtC,YAAe,GAAA,IAAA;AAAA,EACf,WAAc,GAAA,IAAA;AAAA,EACd,SAAY,GAAA,IAAA;AAAA,EACZ,MAAS,GAAA;AACX,CAAA,GAKI,EAAO,KAAA;AACT,EAAA,MAAM,CAAC,YAAA,EAAc,eAAe,CAAA,GAAIA,eAAS,EAAE,CAAA;AACnD,EAAAC,eAAA,CAAU,MAAM;AACd,IAAA,MAAM,UAAU,YAAY;AAC1B,MAAI,IAAA;AACF,QAAA,IAAI,KAAQ,GAAA,UAAA;AACZ,QAAA,IAAI,YAAc,EAAA;AAChB,UAAA,KAAA,GAAS,MAAMC,0BAAA;AAAA,YACb,OAAA;AAAA,YACA,KAAA;AAAA,YACA;AAAA,WACF;AAAA;AAEF,QAAM,MAAA,QAAA,GAAW,SAAS,KAAQ,GAAA,IAAA;AAClC,QAAAC,+BAAA,CAAkB,OAAQ,CAAA;AAAA,UACxB,GAAA,EAAK,GAAG,QAAQ,CAAA,2BAAA,CAAA;AAAA,UAChB,KAAA;AAAA,UACA,QAAU,EAAA;AAAA,SACX,CAAA;AAAA,eACM,CAAY,EAAA;AACnB,QAAA,IAAI,aAAa,KAAO,EAAA;AACtB,UAAQ,OAAA,CAAA,KAAA,CAAM,EAAE,OAAO,CAAA;AACvB,UAAA,eAAA,CAAgB,EAAE,OAAO,CAAA;AAAA;AAC3B;AACF,KACF;AACA,IAAA,IAAI,WAAa,EAAA;AACf,MAAQ,OAAA,EAAA;AAAA;AAGV,IAAA,OAAO,MAAM;AACX,MAAA,IAAI,WAAa,EAAA;AACf,QAAAA,+BAAA,CAAkB,UAAW,EAAA;AAAA;AAC/B,KACF;AAAA,GACC,EAAA,CAAC,YAAc,EAAA,WAAA,EAAa,MAAM,CAAC,CAAA;AAEtC,EAAA,IAAI,YAAc,EAAA;AAChB,IACE,uBAAAC,cAAA,CAAC,OAAE,QAGH,EAAA,uGAAA,EAAA,CAAA;AAAA;AAGN;;;;"}
|
|
@@ -1,19 +1,26 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { VuuDataSource, ConnectionManager } from '@vuu-ui/vuu-data-remote';
|
|
3
3
|
import { DataSourceProvider } from '@vuu-ui/vuu-utils';
|
|
4
|
+
import { useAutoLoginToVuuServer } from './useAutoLoginToVuuServer.js';
|
|
4
5
|
|
|
5
6
|
const getServerAPI = () => ConnectionManager.serverAPI;
|
|
6
7
|
const VuuDataSourceProvider = ({
|
|
8
|
+
autoLogin = false,
|
|
7
9
|
children
|
|
8
|
-
}) =>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
}) => {
|
|
11
|
+
useAutoLoginToVuuServer({
|
|
12
|
+
autoLogin
|
|
13
|
+
});
|
|
14
|
+
return /* @__PURE__ */ jsx(
|
|
15
|
+
DataSourceProvider,
|
|
16
|
+
{
|
|
17
|
+
VuuDataSource,
|
|
18
|
+
getServerAPI,
|
|
19
|
+
isLocalData: false,
|
|
20
|
+
children
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
};
|
|
17
24
|
|
|
18
25
|
export { VuuDataSourceProvider };
|
|
19
26
|
//# sourceMappingURL=VuuDataSourceProvider.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VuuDataSourceProvider.js","sources":["../../src/datasource-provider/VuuDataSourceProvider.tsx"],"sourcesContent":["import { ConnectionManager, VuuDataSource } from \"@vuu-ui/vuu-data-remote\";\nimport { DataSourceProvider } from \"@vuu-ui/vuu-utils\";\nimport { ReactNode } from \"react\";\n\nconst getServerAPI = () => ConnectionManager.serverAPI;\n\nexport const VuuDataSourceProvider = ({\n children,\n}: {\n children: ReactNode;\n}) => (\n <DataSourceProvider\n
|
|
1
|
+
{"version":3,"file":"VuuDataSourceProvider.js","sources":["../../src/datasource-provider/VuuDataSourceProvider.tsx"],"sourcesContent":["import { ConnectionManager, VuuDataSource } from \"@vuu-ui/vuu-data-remote\";\nimport { DataSourceProvider } from \"@vuu-ui/vuu-utils\";\nimport { ReactNode } from \"react\";\nimport { useAutoLoginToVuuServer } from \"./useAutoLoginToVuuServer\";\n\nconst getServerAPI = () => ConnectionManager.serverAPI;\n\nexport const VuuDataSourceProvider = ({\n autoLogin = false,\n children,\n}: {\n autoLogin?: boolean;\n children: ReactNode;\n}) => {\n useAutoLoginToVuuServer({\n autoLogin,\n });\n return (\n <DataSourceProvider\n VuuDataSource={VuuDataSource}\n getServerAPI={getServerAPI}\n isLocalData={false}\n >\n {children}\n </DataSourceProvider>\n );\n};\n"],"names":[],"mappings":";;;;;AAKA,MAAM,YAAA,GAAe,MAAM,iBAAkB,CAAA,SAAA;AAEtC,MAAM,wBAAwB,CAAC;AAAA,EACpC,SAAY,GAAA,KAAA;AAAA,EACZ;AACF,CAGM,KAAA;AACJ,EAAwB,uBAAA,CAAA;AAAA,IACtB;AAAA,GACD,CAAA;AACD,EACE,uBAAA,GAAA;AAAA,IAAC,kBAAA;AAAA,IAAA;AAAA,MACC,aAAA;AAAA,MACA,YAAA;AAAA,MACA,WAAa,EAAA,KAAA;AAAA,MAEZ;AAAA;AAAA,GACH;AAEJ;;;;"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { ConnectionManager, authenticate } from '@vuu-ui/vuu-data-remote';
|
|
3
|
+
import { useState, useEffect } from 'react';
|
|
4
|
+
|
|
5
|
+
const useAutoLoginToVuuServer = ({
|
|
6
|
+
authenticate: authenticate$1 = true,
|
|
7
|
+
autoConnect = true,
|
|
8
|
+
autoLogin = true,
|
|
9
|
+
secure = true
|
|
10
|
+
} = {}) => {
|
|
11
|
+
const [errorMessage, setErrorMessage] = useState("");
|
|
12
|
+
useEffect(() => {
|
|
13
|
+
const connect = async () => {
|
|
14
|
+
try {
|
|
15
|
+
let token = "no-token";
|
|
16
|
+
if (authenticate$1) {
|
|
17
|
+
token = await authenticate(
|
|
18
|
+
"steve",
|
|
19
|
+
"xyz",
|
|
20
|
+
"/api/authn"
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
const protocol = secure ? "wss" : "ws";
|
|
24
|
+
ConnectionManager.connect({
|
|
25
|
+
url: `${protocol}://localhost:8090/websocket`,
|
|
26
|
+
token,
|
|
27
|
+
username: "steve"
|
|
28
|
+
});
|
|
29
|
+
} catch (e) {
|
|
30
|
+
if (e instanceof Error) {
|
|
31
|
+
console.error(e.message);
|
|
32
|
+
setErrorMessage(e.message);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
if (autoConnect) {
|
|
37
|
+
connect();
|
|
38
|
+
}
|
|
39
|
+
return () => {
|
|
40
|
+
if (autoConnect) {
|
|
41
|
+
ConnectionManager.disconnect();
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
}, [authenticate$1, autoConnect, secure]);
|
|
45
|
+
if (errorMessage) {
|
|
46
|
+
return /* @__PURE__ */ jsx("p", { children: "Unable to authenticate against Vuu Server A Vuu Server instance must be running to show this example." });
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export { useAutoLoginToVuuServer };
|
|
51
|
+
//# sourceMappingURL=useAutoLoginToVuuServer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAutoLoginToVuuServer.js","sources":["../../src/datasource-provider/useAutoLoginToVuuServer.tsx"],"sourcesContent":["import {\n authenticate as vuuAuthenticate,\n ConnectionManager,\n} from \"@vuu-ui/vuu-data-remote\";\nimport { useEffect, useState } from \"react\";\n\nexport const useAutoLoginToVuuServer = ({\n authenticate = true,\n autoConnect = true,\n autoLogin = true,\n secure = true,\n}: {\n authenticate?: boolean;\n autoConnect?: boolean;\n autoLogin?: boolean;\n secure?: boolean;\n} = {}) => {\n const [errorMessage, setErrorMessage] = useState(\"\");\n useEffect(() => {\n const connect = async () => {\n try {\n let token = \"no-token\";\n if (authenticate) {\n token = (await vuuAuthenticate(\n \"steve\",\n \"xyz\",\n \"/api/authn\",\n )) as string;\n }\n const protocol = secure ? \"wss\" : \"ws\";\n ConnectionManager.connect({\n url: `${protocol}://localhost:8090/websocket`,\n token,\n username: \"steve\",\n });\n } catch (e: unknown) {\n if (e instanceof Error) {\n console.error(e.message);\n setErrorMessage(e.message);\n }\n }\n };\n if (autoConnect) {\n connect();\n }\n\n return () => {\n if (autoConnect) {\n ConnectionManager.disconnect();\n }\n };\n }, [authenticate, autoConnect, secure]);\n\n if (errorMessage) {\n return (\n <p>\n Unable to authenticate against Vuu Server A Vuu Server instance must be\n running to show this example.\n </p>\n );\n }\n};\n"],"names":["authenticate","vuuAuthenticate"],"mappings":";;;;AAMO,MAAM,0BAA0B,CAAC;AAAA,gBACtCA,cAAe,GAAA,IAAA;AAAA,EACf,WAAc,GAAA,IAAA;AAAA,EACd,SAAY,GAAA,IAAA;AAAA,EACZ,MAAS,GAAA;AACX,CAAA,GAKI,EAAO,KAAA;AACT,EAAA,MAAM,CAAC,YAAA,EAAc,eAAe,CAAA,GAAI,SAAS,EAAE,CAAA;AACnD,EAAA,SAAA,CAAU,MAAM;AACd,IAAA,MAAM,UAAU,YAAY;AAC1B,MAAI,IAAA;AACF,QAAA,IAAI,KAAQ,GAAA,UAAA;AACZ,QAAA,IAAIA,cAAc,EAAA;AAChB,UAAA,KAAA,GAAS,MAAMC,YAAA;AAAA,YACb,OAAA;AAAA,YACA,KAAA;AAAA,YACA;AAAA,WACF;AAAA;AAEF,QAAM,MAAA,QAAA,GAAW,SAAS,KAAQ,GAAA,IAAA;AAClC,QAAA,iBAAA,CAAkB,OAAQ,CAAA;AAAA,UACxB,GAAA,EAAK,GAAG,QAAQ,CAAA,2BAAA,CAAA;AAAA,UAChB,KAAA;AAAA,UACA,QAAU,EAAA;AAAA,SACX,CAAA;AAAA,eACM,CAAY,EAAA;AACnB,QAAA,IAAI,aAAa,KAAO,EAAA;AACtB,UAAQ,OAAA,CAAA,KAAA,CAAM,EAAE,OAAO,CAAA;AACvB,UAAA,eAAA,CAAgB,EAAE,OAAO,CAAA;AAAA;AAC3B;AACF,KACF;AACA,IAAA,IAAI,WAAa,EAAA;AACf,MAAQ,OAAA,EAAA;AAAA;AAGV,IAAA,OAAO,MAAM;AACX,MAAA,IAAI,WAAa,EAAA;AACf,QAAA,iBAAA,CAAkB,UAAW,EAAA;AAAA;AAC/B,KACF;AAAA,GACC,EAAA,CAACD,cAAc,EAAA,WAAA,EAAa,MAAM,CAAC,CAAA;AAEtC,EAAA,IAAI,YAAc,EAAA;AAChB,IACE,uBAAA,GAAA,CAAC,OAAE,QAGH,EAAA,uGAAA,EAAA,CAAA;AAAA;AAGN;;;;"}
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.10.
|
|
2
|
+
"version": "0.10.4-beta.1",
|
|
3
3
|
"author": "heswell",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"devDependencies": {
|
|
6
|
-
"@vuu-ui/vuu-data-types": "0.10.
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.10.
|
|
8
|
-
"@vuu-ui/vuu-popups": "0.10.
|
|
9
|
-
"@vuu-ui/vuu-protocol-types": "0.10.
|
|
10
|
-
"@vuu-ui/vuu-table-types": "0.10.
|
|
6
|
+
"@vuu-ui/vuu-data-types": "0.10.4-beta.1",
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.10.4-beta.1",
|
|
8
|
+
"@vuu-ui/vuu-popups": "0.10.4-beta.1",
|
|
9
|
+
"@vuu-ui/vuu-protocol-types": "0.10.4-beta.1",
|
|
10
|
+
"@vuu-ui/vuu-table-types": "0.10.4-beta.1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@vuu-ui/vuu-data-remote": "0.10.
|
|
14
|
-
"@vuu-ui/vuu-filter-parser": "0.10.
|
|
15
|
-
"@vuu-ui/vuu-layout": "0.10.
|
|
16
|
-
"@vuu-ui/vuu-popups": "0.10.
|
|
17
|
-
"@vuu-ui/vuu-ui-controls": "0.10.
|
|
18
|
-
"@vuu-ui/vuu-utils": "0.10.
|
|
19
|
-
"@vuu-ui/vuu-table": "0.10.
|
|
13
|
+
"@vuu-ui/vuu-data-remote": "0.10.4-beta.1",
|
|
14
|
+
"@vuu-ui/vuu-filter-parser": "0.10.4-beta.1",
|
|
15
|
+
"@vuu-ui/vuu-layout": "0.10.4-beta.1",
|
|
16
|
+
"@vuu-ui/vuu-popups": "0.10.4-beta.1",
|
|
17
|
+
"@vuu-ui/vuu-ui-controls": "0.10.4-beta.1",
|
|
18
|
+
"@vuu-ui/vuu-utils": "0.10.4-beta.1",
|
|
19
|
+
"@vuu-ui/vuu-table": "0.10.4-beta.1",
|
|
20
20
|
"@salt-ds/core": "1.43.0",
|
|
21
21
|
"@salt-ds/styles": "0.2.1",
|
|
22
22
|
"@salt-ds/window": "0.1.1"
|