@runcontext/ui 0.5.3 → 0.5.5
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 +3 -3
- package/static/setup.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runcontext/ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "5-step browser wizard for creating data products and visual studio for curating metadata to Gold tier. Part of RunContext.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Eric Kittelson",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"hono": "^4.12.5",
|
|
50
50
|
"ws": "^8.19.0",
|
|
51
51
|
"yaml": "^2.7.0",
|
|
52
|
-
"@runcontext/core": "^0.5.
|
|
53
|
-
"@runcontext/uxd": "^0.5.
|
|
52
|
+
"@runcontext/core": "^0.5.4",
|
|
53
|
+
"@runcontext/uxd": "^0.5.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^25.3.3",
|
package/static/setup.js
CHANGED
|
@@ -838,7 +838,8 @@
|
|
|
838
838
|
targetTier: 'bronze',
|
|
839
839
|
};
|
|
840
840
|
if (state.sources && state.sources[0]) {
|
|
841
|
-
|
|
841
|
+
var src = state.sources[0];
|
|
842
|
+
body.dataSource = (typeof src === 'string' ? src : src.name || src.database || '').replace(/[^a-zA-Z0-9_-]/g, '_');
|
|
842
843
|
}
|
|
843
844
|
|
|
844
845
|
try {
|
|
@@ -1104,7 +1105,8 @@
|
|
|
1104
1105
|
targetTier: 'gold',
|
|
1105
1106
|
};
|
|
1106
1107
|
if (state.sources && state.sources[0]) {
|
|
1107
|
-
|
|
1108
|
+
var src = state.sources[0];
|
|
1109
|
+
body.dataSource = (typeof src === 'string' ? src : src.name || src.database || '').replace(/[^a-zA-Z0-9_-]/g, '_');
|
|
1108
1110
|
}
|
|
1109
1111
|
|
|
1110
1112
|
try {
|