@norskvideo/norsk-studio-alpha 1.27.0-2025-07-24-11bc458c → 1.27.0-2025-07-25-990c461b
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 +5 -1
- package/package.json +4 -4
package/client/info.js
CHANGED
@@ -21941,13 +21941,14 @@ var require_jitter_buffer_config = __commonJS({
|
|
21941
21941
|
"use strict";
|
21942
21942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
21943
21943
|
exports.default = ConfigRow;
|
21944
|
+
var jsx_runtime_1 = require_jsx_runtime();
|
21944
21945
|
function ConfigRow(r) {
|
21945
21946
|
return {
|
21946
21947
|
help: "Configure the buffer to smooth outgoing data",
|
21947
21948
|
hint: {
|
21948
21949
|
type: "form-item",
|
21949
21950
|
defaultValue: { bufferDelayMs: 500 },
|
21950
|
-
view:
|
21951
|
+
view: JbView,
|
21951
21952
|
form: {
|
21952
21953
|
startupMode: {
|
21953
21954
|
help: "What to do with bursty start-up data",
|
@@ -21969,6 +21970,9 @@ var require_jitter_buffer_config = __commonJS({
|
|
21969
21970
|
}
|
21970
21971
|
};
|
21971
21972
|
}
|
21973
|
+
function JbView(jb) {
|
21974
|
+
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: jb ? jb.bufferDelayMs + "ms" : "unconfigured" });
|
21975
|
+
}
|
21972
21976
|
}
|
21973
21977
|
});
|
21974
21978
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@norskvideo/norsk-studio-alpha",
|
3
|
-
"version": "1.27.0-2025-07-
|
3
|
+
"version": "1.27.0-2025-07-25-990c461b",
|
4
4
|
"description": "",
|
5
5
|
"scripts": {
|
6
6
|
"clean": "rm -rf lib client build && make clean",
|
@@ -23,9 +23,9 @@
|
|
23
23
|
"license": "MIT",
|
24
24
|
"dependencies": {
|
25
25
|
"@apidevtools/json-schema-ref-parser": "^12.0.1",
|
26
|
-
"@norskvideo/norsk-sdk": "^1.0.402-2025-07-
|
27
|
-
"@norskvideo/norsk-studio": "1.27.0-2025-07-
|
28
|
-
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-07-
|
26
|
+
"@norskvideo/norsk-sdk": "^1.0.402-2025-07-25-d54c866c",
|
27
|
+
"@norskvideo/norsk-studio": "1.27.0-2025-07-25-990c461b",
|
28
|
+
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-07-25-990c461b",
|
29
29
|
"json-refs": "^3.0.15",
|
30
30
|
"JSX": "^1.1.0",
|
31
31
|
"node-fetch": "^2.7.0",
|