@capytale/meta-player 0.3.13 → 0.3.15
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/package.json +2 -2
- package/src/App.tsx +1 -1
- package/src/app.module.scss +5 -0
- package/src/index.css +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capytale/meta-player",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@capytale/activity.js": "^3.1.6",
|
|
23
23
|
"@capytale/capytale-anti-triche": "^0.2.1",
|
|
24
|
-
"@capytale/capytale-rich-text-editor": "^0.4.
|
|
24
|
+
"@capytale/capytale-rich-text-editor": "^0.4.3",
|
|
25
25
|
"@reduxjs/toolkit": "^2.0.1",
|
|
26
26
|
"@uidotdev/usehooks": "^2.4.1",
|
|
27
27
|
"primeicons": "^7.0.0",
|
package/src/App.tsx
CHANGED
|
@@ -101,7 +101,7 @@ const App: FC<AppProps> = (props) => {
|
|
|
101
101
|
<SplitterPanel minSize={15} size={30} className={styles.pedagoPanel}>
|
|
102
102
|
<Pedago key="pedago" />
|
|
103
103
|
</SplitterPanel>
|
|
104
|
-
<SplitterPanel minSize={40} size={70}>
|
|
104
|
+
<SplitterPanel minSize={40} size={70} className={styles.contentPanel}>
|
|
105
105
|
<div className="meta-player-content-cover"></div>
|
|
106
106
|
<div id="meta-player-content">{props.children}</div>
|
|
107
107
|
</SplitterPanel>
|
package/src/app.module.scss
CHANGED
package/src/index.css
CHANGED