diff --git a/showroom/package.json b/showroom/package.json index fbced03ce0d27c951cdc23a3ca62cb8c51fefad3..3a37a938896d8a2e90ee5e6192fbb734e0ff72f0 100644 --- a/showroom/package.json +++ b/showroom/package.json @@ -42,7 +42,7 @@ "dependencies": { "@floating-ui/dom": "^1.6.3", "@popperjs/core": "^2.11.8", - "@schukai/monster": "^3.63.3", + "@schukai/monster": "^3.64.0", "vite-plugin-directory-index": "^3.0.1" }, "devDependencies": { diff --git a/showroom/pnpm-lock.yaml b/showroom/pnpm-lock.yaml index feb6df42df3ebc7732a58b66720a97cc7b5e272b..3d46057e5df478fe944ba62a7355acdee5506b8f 100644 --- a/showroom/pnpm-lock.yaml +++ b/showroom/pnpm-lock.yaml @@ -12,8 +12,8 @@ dependencies: specifier: ^2.11.8 version: 2.11.8 '@schukai/monster': - specifier: ^3.63.3 - version: 3.63.3(vite@5.2.7) + specifier: ^3.64.0 + version: 3.64.0(vite@5.2.7) vite-plugin-directory-index: specifier: ^3.0.1 version: 3.0.1(vite@5.2.7) @@ -1342,8 +1342,8 @@ packages: - '@types/node' dev: true - /@schukai/monster@3.63.3(vite@5.2.7): - resolution: {integrity: sha512-Yov1+VKvkEA3zcqD6N4ug5dqBDZPYvCUSG0XavbKpkWbF6rEV+94tTCJ7MNzCniQq+wl0BMKQmNYUb2mVcjeiQ==} + /@schukai/monster@3.64.0(vite@5.2.7): + resolution: {integrity: sha512-C+7Wo7AmHv7krV+Zn4rIDnrmb8EGaixQ/6MJzg6IagJ9rd6MmFJUbG5XuwdFdAwy7cPiFu+CUpwgTMKHaPe/tA==} dependencies: '@floating-ui/dom': 1.6.3 '@popperjs/core': 2.11.8 diff --git a/showroom/video/README.md b/showroom/video/README.md index 861b10cbce67a3d37acb7bc3e26d11ef592281a6..ec11b6b237dc4dc4f6a8237564da4b8e88f4c45d 100644 --- a/showroom/video/README.md +++ b/showroom/video/README.md @@ -11,3 +11,12 @@ commands you can change the prompt: PS1="Monster Tutorial > " ``` +### Speech + +- https://elevenlabs.io/ + + + + + +With Ctrl + G you can create a new clip after cutting a video strip. \ No newline at end of file diff --git a/showroom/video/draft/index.html b/showroom/video/draft/index.html deleted file mode 100644 index 3ac47d7d7a346ae7e0d7cce236d3a1fb74b1bf22..0000000000000000000000000000000000000000 --- a/showroom/video/draft/index.html +++ /dev/null @@ -1,28 +0,0 @@ -<!DOCTYPE html> -<html lang="de"> -<head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Split Screen</title> - <script type="module" src="./script.mjs"></script> - <style> - *:not(:defined) { - vidibility: hidden; - } - </style> -</head> -<body> -<h1>Split Screen</h1> -<monster-panel> - <monter-split-panel> - <monster-panel slot="start"> - <h2>left panel</h2> - </monster-panel> - <monster-panel slot="end"> - <h2>right panel</h2> - </monster-panel> - </monter-split-panel> -</monster-panel> - -</body> -</html> diff --git a/showroom/video/draft/script.mjs b/showroom/video/draft/script.mjs deleted file mode 100644 index 1b655f46893b27556bd5a3af42e0c302681964f0..0000000000000000000000000000000000000000 --- a/showroom/video/draft/script.mjs +++ /dev/null @@ -1,6 +0,0 @@ -import "@schukai/monster/source/components/style/property.pcss" -import "@schukai/monster/source/components/style/normalize.pcss" -import "@schukai/monster/source/components/style/typography.pcss" -import "@schukai/monster/source/components/style/color.pcss" -import "@schukai/monster/source/components/layout/panel.mjs" -import "@schukai/monster/source/components/layout/split-panel.mjs" \ No newline at end of file diff --git a/source/components/layout/panel.mjs b/source/components/layout/panel.mjs index 2a983bc62e5e404be3189cdaef8644f35f6394ee..d3c5a6f9ef620146242f3d191cd2f3a12db810dd 100644 --- a/source/components/layout/panel.mjs +++ b/source/components/layout/panel.mjs @@ -116,6 +116,12 @@ class Panel extends CustomElement { connectedCallback() { super.connectedCallback(); attachResizeObserver.call(this); + + // disable scrolling in parent node + if (this.parentNode && this.parentNode instanceof HTMLElement) { + this.parentNode.style.overflow = "hidden"; + } + } /**