@norskvideo/norsk-studio-alpha 1.27.0-2025-10-12-efe33298 → 1.27.0-2025-10-14-95f8632a
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 +39325 -0
- package/client/processor.audioLevel/styles.css +165 -0
- package/client/shared/style.css +1627 -0
- package/client/shared/tailwind.css +31 -0
- package/client/style.css +1753 -0
- package/client/util.aiChat/styles.css +371 -0
- package/lib/output.tams/types.yaml +266 -0
- package/lib/processor.actionReplay/types.yaml +78 -0
- package/lib/processor.audioLevel/types.yaml +81 -0
- package/lib/processor.delayAll/types.yaml +23 -0
- package/lib/processor.whisper-transcribe/types.yaml +29 -0
- package/lib/util.agent/types.yaml +426 -0
- package/lib/util.aiChat/types.yaml +141 -0
- package/lib/util.timestamps/types.yaml +70 -0
- package/package.json +4 -4
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
.node-editor-label {
|
|
6
|
+
@apply block mb-0.5 text-sm font-medium text-gray-900 dark:text-white
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.node-editor-text-input {
|
|
10
|
+
@apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded focus:ring-blue-500 focus:border-blue-500 block w-full p-1 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500 focus:outline-none
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.node-editor-numeric-input {
|
|
14
|
+
@apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded focus:ring-blue-500 focus:border-blue-500 block w-full p-0.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.node-editor-select-input {
|
|
18
|
+
@apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded focus:ring-blue-500 focus:border-blue-500 block w-full p-1 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.node-editor-helper-text {
|
|
22
|
+
@apply mt-0.5 mb-0.5 text-xs text-gray-500 dark:text-gray-400
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.output-socket {
|
|
26
|
+
display: inline-block;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.input-socket {
|
|
30
|
+
display: inline-block;
|
|
31
|
+
}
|