@talrace/ngx-noder 0.0.30 → 0.0.31
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/assets/i18n/noder.en.json +3 -1
- package/assets/i18n/noder.es.json +3 -1
- package/assets/i18n/noder.ru.json +3 -1
- package/fesm2022/talrace-ngx-noder.mjs +309 -202
- package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
- package/lib/editor/components/table/overlay-menu/overlay-menu.component.d.ts +2 -0
- package/lib/editor/content/constants/editor.const.d.ts +2 -2
- package/lib/editor/content/display-data/line-info.model.d.ts +1 -0
- package/lib/editor/content/display-data/text-line-info.d.ts +1 -0
- package/lib/editor/execution/edit.session.d.ts +1 -0
- package/lib/editor/execution/editor.d.ts +4 -1
- package/lib/editor/gadgets/history/operation-history.d.ts +1 -0
- package/lib/editor/gadgets/history/operation.type.d.ts +2 -1
- package/lib/editor/interaction/editor.service.d.ts +6 -0
- package/lib/editor/operations/enums/command-type.enum.d.ts +2 -1
- package/lib/editor/operations/operations-helper.helper.d.ts +1 -0
- package/lib/editor/operations/save-commands.helper.d.ts +1 -0
- package/lib/models/generated/command.model.d.ts +2 -0
- package/lib/models/generated/remove-table.model.d.ts +4 -0
- package/package.json +1 -1
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"REDO": "Redo",
|
|
70
70
|
"REMOVE_COLUMN": "Remove column",
|
|
71
71
|
"REMOVE_ROW": "Remove row",
|
|
72
|
+
"REMOVE_TABLE": "Remove table",
|
|
72
73
|
"RENAME": "Rename",
|
|
73
74
|
"REPLACE": "Replace",
|
|
74
75
|
"REPLACE_WITH": "Replace with",
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
"INSERT_LINK": "Insert link (Crtl+K)",
|
|
108
109
|
"INSERT_TABLE": "Insert table",
|
|
109
110
|
"ITALIC": "Italic (Ctrl+I)",
|
|
111
|
+
"JUSTIFY": "Justify align",
|
|
110
112
|
"LEFT": "Left align (Ctrl+L)",
|
|
111
113
|
"NUMBERED_LIST": "Numbered list",
|
|
112
114
|
"PRINT": "Print (Ctrl+P)",
|
|
@@ -117,4 +119,4 @@
|
|
|
117
119
|
"UNDO": "Undo (Ctrl+Z)"
|
|
118
120
|
}
|
|
119
121
|
}
|
|
120
|
-
}
|
|
122
|
+
}
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"REDO": "Rehacer",
|
|
70
70
|
"REMOVE_COLUMN": "Eliminar columna",
|
|
71
71
|
"REMOVE_ROW": "Eliminar fila",
|
|
72
|
+
"REMOVE_TABLE": "Eliminar tabla",
|
|
72
73
|
"RENAME": "Renombrar",
|
|
73
74
|
"REPLACE": "Reemplazar",
|
|
74
75
|
"REPLACE_WITH": "Reemplazar con",
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
"INSERT_LINK": "Insertar enlace (Ctrl+K)",
|
|
108
109
|
"INSERT_TABLE": "Insertar tabla",
|
|
109
110
|
"ITALIC": "Itálica (Ctrl+I)",
|
|
111
|
+
"JUSTIFY": "Alinear justificado",
|
|
110
112
|
"LEFT": "Alinear a la izquierda (Ctrl+L)",
|
|
111
113
|
"NUMBERED_LIST": "Lista numerada",
|
|
112
114
|
"PRINT": "Imprimir (Ctrl+P)",
|
|
@@ -117,4 +119,4 @@
|
|
|
117
119
|
"UNDO": "Deshacer (Ctrl+Z)"
|
|
118
120
|
}
|
|
119
121
|
}
|
|
120
|
-
}
|
|
122
|
+
}
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"REDO": "Повторить",
|
|
70
70
|
"REMOVE_COLUMN": "Удалить столбец",
|
|
71
71
|
"REMOVE_ROW": "Удалить строку",
|
|
72
|
+
"REMOVE_TABLE": "Удалить таблицу",
|
|
72
73
|
"RENAME": "Переименовать",
|
|
73
74
|
"REPLACE": "Заменить",
|
|
74
75
|
"REPLACE_WITH": "Заменить на",
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
"INSERT_LINK": "Вставить ссылку (Ctrl+K)",
|
|
108
109
|
"INSERT_TABLE": "Вставить таблицу",
|
|
109
110
|
"ITALIC": "Наклонный шрифт (Ctrl+I)",
|
|
111
|
+
"JUSTIFY": "Выровнять по ширине",
|
|
110
112
|
"LEFT": "Выравнивание по левому краю (Ctrl+L)",
|
|
111
113
|
"NUMBERED_LIST": "Создать нумерованный список",
|
|
112
114
|
"PRINT": "Печать (Ctrl+P)",
|
|
@@ -117,4 +119,4 @@
|
|
|
117
119
|
"UNDO": "Отменить последнее действие (Ctrl+Z)"
|
|
118
120
|
}
|
|
119
121
|
}
|
|
120
|
-
}
|
|
122
|
+
}
|