@team-monolith/cds 0.29.14 → 0.29.16

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.
@@ -24,8 +24,8 @@ const Layout = styled.div(({ theme }) => css `
24
24
  // actions의 위치를 올바르게 변경하기 위해 content의 position을 static으로 변경합니다.
25
25
  .ce-toolbar__content {
26
26
  position: static;
27
- }
28
-
27
+ }
28
+
29
29
  ${HeaderStyle(theme)}
30
30
  ${NestedListStyle}
31
31
  ${QuoteStyle(theme)}
@@ -39,12 +39,15 @@ const Layout = styled.div(({ theme }) => css `
39
39
  // 관련이슈: https://github.com/codex-team/editor.js/issues/2457
40
40
  // narrow 모드가 아직 제거되지 않아서 narrow모드가 발생했을 때를 고려해야 합니다.
41
41
  // 그래서 narrow모드가 변경하는 css를 override합니다.
42
+ .codex-editor--narrow .codex-editor__redactor {
43
+ margin-right: 0;
44
+ }
42
45
  .codex-editor--narrow .ce-popover {
43
46
  left: 0;
44
47
  right: unset;
45
48
  }
46
49
  // toolbar를 항상 왼쪽에서 나타나게 하기 위해 narrow모드의 right 스타일을 제거하고, left 스타일을 추가합니다.
47
- .ce-toolbar__actions {
50
+ .ce-toolbar__actions {
48
51
  left: -5px;
49
52
  right: unset;
50
53
  }
@@ -1 +1,3 @@
1
+ import TOOLS from "./tools";
1
2
  export * from "./ReactEditorJS";
3
+ export { TOOLS };
@@ -1 +1,3 @@
1
+ import TOOLS from "./tools";
1
2
  export * from "./ReactEditorJS";
3
+ export { TOOLS };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "0.29.14",
3
+ "version": "0.29.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,