@norskvideo/norsk-studio 1.27.0-2025-04-09-a7944f8c → 1.27.0-2025-04-10-614c23ec
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/lib/client/creator.d.ts +6 -12
- package/lib/client/creator.js +46 -24
- package/lib/client/creator.js.map +1 -1
- package/lib/client/jsx/advanced-stream-mapping.js +29 -14
- package/lib/client/jsx/advanced-stream-mapping.js.map +1 -1
- package/lib/client/jsx/connection-editor.js +38 -11
- package/lib/client/jsx/connection-editor.js.map +1 -1
- package/lib/client/jsx/node-editor.js +17 -15
- package/lib/client/jsx/node-editor.js.map +1 -1
- package/lib/client/jsx/selected-connection.js +2 -2
- package/lib/client/jsx/selected-connection.js.map +1 -1
- package/lib/client/jsx/selected-node.js +1 -1
- package/lib/client/tools.js +2 -2
- package/lib/client/tools.js.map +1 -1
- package/lib/test/_util/manual-driver.d.ts +17 -0
- package/lib/test/_util/manual-driver.js +164 -0
- package/lib/test/_util/manual-driver.js.map +1 -1
- package/lib/test/_util/runtime.js +1 -1
- package/lib/test/_util/runtime.js.map +1 -1
- package/lib/test/_util/test-infos.d.ts +4 -2
- package/lib/test/_util/test-infos.js +8 -1
- package/lib/test/_util/test-infos.js.map +1 -1
- package/lib/test/connection-editor.d.ts +1 -0
- package/lib/test/connection-editor.js +380 -0
- package/lib/test/connection-editor.js.map +1 -0
- package/package.json +3 -2
- package/static/style.css +988 -1287
- package/tailwind-theme.js +4 -15
- package/tailwind.config.js +6 -3
- package/ui/index.js +12846 -12670
package/tailwind-theme.js
CHANGED
|
@@ -24,6 +24,10 @@ module.exports = {
|
|
|
24
24
|
},
|
|
25
25
|
success: "#00993D",
|
|
26
26
|
error: "#FF4A4A",
|
|
27
|
+
warning: "#FF7700",
|
|
28
|
+
live: "#E61818",
|
|
29
|
+
offline: "#34373D",
|
|
30
|
+
standby: "#34FF56",
|
|
27
31
|
},
|
|
28
32
|
keyframes: {
|
|
29
33
|
activeSubscription: {
|
|
@@ -77,19 +81,4 @@ module.exports = {
|
|
|
77
81
|
...defaultTheme.screens,
|
|
78
82
|
},
|
|
79
83
|
},
|
|
80
|
-
corePlugins: {
|
|
81
|
-
// Preflight is already included by the core studio stylesheet
|
|
82
|
-
preflight: false,
|
|
83
|
-
},
|
|
84
|
-
experimental: {
|
|
85
|
-
// This removes the var(--tw-*) reset
|
|
86
|
-
optimizeUniversalDefaults: true,
|
|
87
|
-
},
|
|
88
|
-
plugins: [
|
|
89
|
-
require('flowbite/plugin')({
|
|
90
|
-
charts: false,
|
|
91
|
-
forms: false,
|
|
92
|
-
tooltips: false,
|
|
93
|
-
}),
|
|
94
|
-
],
|
|
95
84
|
}
|
package/tailwind.config.js
CHANGED
|
@@ -8,10 +8,13 @@ module.exports = {
|
|
|
8
8
|
"static/**/*.{html,js,ejs}",
|
|
9
9
|
"node_modules/flowbite-react/lib/esm/**/*.js"
|
|
10
10
|
],
|
|
11
|
-
corePlugins: undefined,
|
|
12
|
-
experimental: undefined,
|
|
13
11
|
plugins: [
|
|
14
|
-
require('flowbite/plugin'),
|
|
15
12
|
require("tailwindcss-animate"),
|
|
13
|
+
require('tailwind-scrollbar')({ nocompatible: true }),
|
|
14
|
+
require('flowbite/plugin')({
|
|
15
|
+
charts: false,
|
|
16
|
+
forms: false,
|
|
17
|
+
tooltips: false,
|
|
18
|
+
}),
|
|
16
19
|
],
|
|
17
20
|
}
|