@mdwrk/markdown-editor-react 1.1.0 → 1.1.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdwrk/markdown-editor-react",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -25,15 +25,15 @@
25
25
  ],
26
26
  "description": "React bindings, textarea editor surface, command wiring, history integration, and theme bridge for the Markdown Workspace portable markdown editor.",
27
27
  "dependencies": {
28
- "@mdwrk/markdown-editor-core": "^1.1.0",
29
- "@mdwrk/ui-tokens": "^1.2.0"
28
+ "@mdwrk/markdown-editor-core": "^1.1.1",
29
+ "@mdwrk/ui-tokens": "^1.2.1"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": "^19.0.0",
33
33
  "react-dom": "^19.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@mdwrk/testing": "^1.0.0",
36
+ "@mdwrk/testing": "^1.0.1",
37
37
  "@testing-library/jest-dom": "^6.6.3",
38
38
  "@testing-library/react": "^16.1.0",
39
39
  "@types/react": "^19.0.8",
@@ -12,7 +12,7 @@
12
12
  min-height: 320px;
13
13
  width: 100%;
14
14
  height: 100%;
15
- overflow: hidden;
15
+ overflow-y: scroll;
16
16
  border: 1px solid var(--mwe-border-color, var(--border-color, rgba(255,255,255,0.12)));
17
17
  background: var(--mwe-bg-surface, var(--bg-panel, #11151a));
18
18
  }
@@ -49,6 +49,7 @@
49
49
  font-size: var(--mwe-font-size, 13px);
50
50
  line-height: var(--mwe-line-height, var(--editor-line-rhythm, var(--editor-line-height, 1.5rem)));
51
51
  padding: var(--mwe-editor-padding, 16px);
52
+ text-wrap: auto;
52
53
  outline: none;
53
54
  }
54
55