@team-monolith/cds 1.67.2 → 1.67.3

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.
@@ -40,7 +40,7 @@ export function LexicalEditor(props) {
40
40
  const { className, contentEditableClassName, value, onChange, editable = true, showQuizSolution = false, freezeProblemNode = false, isSheetEnabled = false, isQuizEnabled = false, children, } = props;
41
41
  const theme = useTheme();
42
42
  const initialConfig = {
43
- namespace: "CodleLexicalEditor",
43
+ namespace: "CustomLexicalEditor",
44
44
  onError: (error) => console.error(error),
45
45
  nodes,
46
46
  // 마운트 된 이후 editable 수정해도 theme에 반영되지 않음 유의
@@ -21,7 +21,7 @@ function TextFormatFloatingToolbar({ editor, anchorElem, isLink, isBold, isItali
21
21
  const popupCharStylesEditorRef = useRef(null);
22
22
  const insertLink = useCallback(() => {
23
23
  if (!isLink) {
24
- editor.dispatchCommand(TOGGLE_LINK_COMMAND, "https://codle.io");
24
+ editor.dispatchCommand(TOGGLE_LINK_COMMAND, "https://example.com/");
25
25
  }
26
26
  else {
27
27
  editor.dispatchCommand(TOGGLE_LINK_COMMAND, null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "1.67.2",
3
+ "version": "1.67.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,