@norskvideo/norsk-studio-alpha 1.27.0-2025-08-11-0f209756 → 1.27.0-2025-08-11-811e19f7
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/client/info.js +18 -0
- package/package.json +3 -3
package/client/info.js
CHANGED
@@ -22163,7 +22163,9 @@ var require_shared_views = __commonJS({
|
|
22163
22163
|
exports.GlobalIceServerView = GlobalIceServerView;
|
22164
22164
|
exports.EzDrmConfigView = EzDrmConfigView;
|
22165
22165
|
exports.AxinomConfigView = AxinomConfigView;
|
22166
|
+
exports.NumericArray = NumericArray;
|
22166
22167
|
var jsx_runtime_1 = require_jsx_runtime();
|
22168
|
+
var react_1 = require_react();
|
22167
22169
|
function GlobalIceServerView(i) {
|
22168
22170
|
return (0, jsx_runtime_1.jsxs)("div", { className: "grid grid-flow-row-dense grid-cols-3 text-sm gap-1", children: [(0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "URL" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-2", children: i.url }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Reported URL" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-2", children: i.reportedUrl ?? "" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Username" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-2", children: i.username ?? "" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Password" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-2", children: i.credential ?? "" })] });
|
22169
22171
|
}
|
@@ -22173,6 +22175,22 @@ var require_shared_views = __commonJS({
|
|
22173
22175
|
function AxinomConfigView(i) {
|
22174
22176
|
return (0, jsx_runtime_1.jsxs)("div", { className: "grid grid-flow-row-dense grid-cols-2 text-sm", children: [(0, jsx_runtime_1.jsx)("div", { className: "col-span-2 node-editor-helper-text", children: "For Encryption (required)" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Tenant ID" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: i?.tenantId?.trim() ? "Yes" : "No" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Management Key" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: i?.managementKey?.trim() ? "Yes" : "No" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-2 node-editor-helper-text", children: "For Local Preview (optional)" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Communication ID" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: i?.comKeyId?.trim() ? "Yes" : "No" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: "Communication Key" }), (0, jsx_runtime_1.jsx)("div", { className: "col-span-1", children: i?.comKey?.trim() ? "Yes" : "No" })] });
|
22175
22177
|
}
|
22178
|
+
function NumericArray(props) {
|
22179
|
+
const [value, setValue] = (0, react_1.useState)(props.defaultValue ?? []);
|
22180
|
+
const { onChanged } = props;
|
22181
|
+
(0, react_1.useEffect)(() => {
|
22182
|
+
onChanged(value);
|
22183
|
+
}, [value, onChanged]);
|
22184
|
+
const myOnChange = (0, react_1.useCallback)((e) => {
|
22185
|
+
try {
|
22186
|
+
const values = e.currentTarget.value.split(",").map((v) => parseInt(v, 10));
|
22187
|
+
setValue(values);
|
22188
|
+
} catch {
|
22189
|
+
return;
|
22190
|
+
}
|
22191
|
+
}, [setValue]);
|
22192
|
+
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)("input", { type: "text", onChange: myOnChange, defaultValue: value.join(",") }) });
|
22193
|
+
}
|
22176
22194
|
}
|
22177
22195
|
});
|
22178
22196
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@norskvideo/norsk-studio-alpha",
|
3
|
-
"version": "1.27.0-2025-08-11-
|
3
|
+
"version": "1.27.0-2025-08-11-811e19f7",
|
4
4
|
"description": "",
|
5
5
|
"scripts": {
|
6
6
|
"clean": "rm -rf lib client build && make clean",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"dependencies": {
|
25
25
|
"@apidevtools/json-schema-ref-parser": "^12.0.1",
|
26
26
|
"@norskvideo/norsk-sdk": "^1.0.402-2025-08-11-2cd1a96b",
|
27
|
-
"@norskvideo/norsk-studio": "1.27.0-2025-08-11-
|
28
|
-
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-08-11-
|
27
|
+
"@norskvideo/norsk-studio": "1.27.0-2025-08-11-811e19f7",
|
28
|
+
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-08-11-811e19f7",
|
29
29
|
"json-refs": "^3.0.15",
|
30
30
|
"JSX": "^1.1.0",
|
31
31
|
"node-fetch": "^2.7.0",
|