@talrace/ngx-noder 19.0.37 → 19.0.39
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 +7 -2
- package/assets/i18n/noder.es.json +7 -2
- package/assets/i18n/noder.ru.json +7 -2
- package/fesm2022/talrace-ngx-noder.mjs +566 -392
- package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
- package/lib/apart-components/editor-toolbar/components/base-toolbar.component.d.ts +4 -1
- package/lib/apart-components/editor-toolbar/components/buttons/spacing/spacing.component.d.ts +16 -0
- package/lib/apart-components/editor-toolbar/components/toolbar-actions/toolbar-actions.component.d.ts +3 -0
- package/lib/apart-components/editor-toolbar/editor-toolbar.module.d.ts +24 -23
- package/lib/editor/content/display-data/display-data.d.ts +1 -1
- package/lib/editor/content/display-data/toolbar-styles.interface.d.ts +1 -0
- package/lib/editor/display/layers/highlight.layer.d.ts +2 -1
- package/lib/editor/display/renderer.d.ts +1 -8
- package/lib/editor/display/virtual.renderer.d.ts +1 -2
- package/lib/editor/editor.module.d.ts +3 -1
- package/lib/editor/execution/edit.session.d.ts +2 -3
- package/lib/editor/execution/editor.d.ts +13 -4
- package/lib/editor/execution/regulator.service.d.ts +4 -2
- package/lib/editor/{components → gadgets/comment}/comment-popup/comment-popup.component.d.ts +6 -4
- package/lib/editor/gadgets/comment/comment-popup/comment-type.model.d.ts +6 -0
- package/lib/editor/gadgets/comment/comment-types.const.d.ts +3 -0
- package/lib/editor/gadgets/history/operation-history.d.ts +2 -2
- package/lib/editor/gadgets/numbering/numbering.helper.d.ts +7 -2
- package/lib/editor/interaction/editor.service.d.ts +32 -6
- package/lib/editor/operations/helpers/paragraph-operations.helper.d.ts +3 -2
- package/lib/editor/operations/operations-helper.helper.d.ts +4 -4
- package/lib/editor/operations/save-commands.helper.d.ts +2 -2
- package/lib/editor/positioning/position.helper.d.ts +20 -36
- package/lib/editor/positioning/range.d.ts +1 -7
- package/lib/models/generated/apply-paragraph-style.model.d.ts +2 -2
- package/lib/models/generated/paragraph-style-ext.model.d.ts +8 -0
- package/lib/models/generated/remove-with-paragraph.model.d.ts +2 -2
- package/lib/models/generated/restore-with-paragraph.model.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/_ngx-noder.theme.scss +1 -1
- package/src/assets/fonts/nc-iconfont.eot +0 -0
- package/src/assets/fonts/nc-iconfont.scss +24 -12
- package/src/assets/fonts/nc-iconfont.svg +5 -1
- package/src/assets/fonts/nc-iconfont.ttf +0 -0
- package/src/assets/fonts/nc-iconfont.woff +0 -0
- package/src/lib/apart-components/editor-toolbar/_theme.scss +2 -0
- package/src/lib/apart-components/editor-toolbar/components/buttons/spacing/_spacing.theme.scss +24 -0
- package/lib/editor/content/display-data/paragraph-info.interface.d.ts +0 -7
- /package/src/lib/editor/{components → gadgets/comment}/comment-popup/_theme.scss +0 -0
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"LABEL": {
|
|
13
13
|
"ADD": "Add",
|
|
14
14
|
"ADD_LINK": "Add Link",
|
|
15
|
+
"ADD_SPACE_AFTER_PARAGRAPH": "Add space after paragraph",
|
|
16
|
+
"ADD_SPACE_BEFORE_PARAGRAPH": "Add space before paragraph",
|
|
15
17
|
"ALIGN": "Align",
|
|
16
18
|
"ALIGNMENT": "Alignment",
|
|
17
19
|
"ALL_BORDERS": "All borders",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"LAYOUT": "Layout",
|
|
67
69
|
"LEFT": "Left",
|
|
68
70
|
"LEFT_BORDER": "Left border",
|
|
71
|
+
"LINE_SPACING_OPTIONS": "Line spacing options",
|
|
69
72
|
"LINK": "Link",
|
|
70
73
|
"LINK_OPTIONS": "Link Options",
|
|
71
74
|
"MEASURE": "Measure",
|
|
@@ -92,6 +95,8 @@
|
|
|
92
95
|
"REDO": "Redo",
|
|
93
96
|
"REMOVE_COLUMN": "Remove column",
|
|
94
97
|
"REMOVE_ROW": "Remove row",
|
|
98
|
+
"REMOVE_SPACE_AFTER_PARAGRAPH": "Remove space after paragraph",
|
|
99
|
+
"REMOVE_SPACE_BEFORE_PARAGRAPH": "Remove space before paragraph",
|
|
95
100
|
"REMOVE_TABLE": "Remove table",
|
|
96
101
|
"RENAME": "Rename",
|
|
97
102
|
"REPLACE": "Replace",
|
|
@@ -130,7 +135,7 @@
|
|
|
130
135
|
"BULLETED_LIST": "Bulleted list",
|
|
131
136
|
"BULLETED_MENU": "Bulleted list menu",
|
|
132
137
|
"CENTER": "Center align (Ctrl+E)",
|
|
133
|
-
"
|
|
138
|
+
"COMMENT": "Add Comment",
|
|
134
139
|
"DATEPICKER": "Datepicker",
|
|
135
140
|
"DECREMENT": "Decrease font size",
|
|
136
141
|
"FONT": "Font",
|
|
@@ -154,4 +159,4 @@
|
|
|
154
159
|
"UNDO": "Undo (Ctrl+Z)"
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
|
-
}
|
|
162
|
+
}
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"LABEL": {
|
|
13
13
|
"ADD": "Añadir",
|
|
14
14
|
"ADD_LINK": "Añadir Enlace",
|
|
15
|
+
"ADD_SPACE_AFTER_PARAGRAPH": "Agregar espacio después del párrafo",
|
|
16
|
+
"ADD_SPACE_BEFORE_PARAGRAPH": "Agregar espacio antes del párrafo",
|
|
15
17
|
"ALIGN": "Alinear",
|
|
16
18
|
"ALIGNMENT": "Alineación",
|
|
17
19
|
"ALL_BORDERS": "Todas las fronteras",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"LAYOUT": "Maquetación",
|
|
67
69
|
"LEFT": "Izquierda",
|
|
68
70
|
"LEFT_BORDER": "Borde izquierdo",
|
|
71
|
+
"LINE_SPACING_OPTIONS": "Opciones de interlineado",
|
|
69
72
|
"LINK": "Enlace",
|
|
70
73
|
"LINK_OPTIONS": "Opciones de Enlace",
|
|
71
74
|
"MEASURE": "Medida",
|
|
@@ -92,6 +95,8 @@
|
|
|
92
95
|
"REDO": "Rehacer",
|
|
93
96
|
"REMOVE_COLUMN": "Eliminar columna",
|
|
94
97
|
"REMOVE_ROW": "Eliminar fila",
|
|
98
|
+
"REMOVE_SPACE_AFTER_PARAGRAPH": "Eliminar espacio después del párrafo",
|
|
99
|
+
"REMOVE_SPACE_BEFORE_PARAGRAPH": "Eliminar espacio antes del párrafo",
|
|
95
100
|
"REMOVE_TABLE": "Eliminar tabla",
|
|
96
101
|
"RENAME": "Renombrar",
|
|
97
102
|
"REPLACE": "Reemplazar",
|
|
@@ -130,7 +135,7 @@
|
|
|
130
135
|
"BULLETED_LIST": "Lista con viñetas",
|
|
131
136
|
"BULLETED_MENU": "Menú de lista con viñetas",
|
|
132
137
|
"CENTER": "Centrar (Ctrl+E)",
|
|
133
|
-
"
|
|
138
|
+
"COMMENT": "Añadir comentario",
|
|
134
139
|
"DATEPICKER": "Datpicker",
|
|
135
140
|
"DECREMENT": "Disminuir tamaño de letra",
|
|
136
141
|
"FONT": "Fuente",
|
|
@@ -154,4 +159,4 @@
|
|
|
154
159
|
"UNDO": "Deshacer (Ctrl+Z)"
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
|
-
}
|
|
162
|
+
}
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"LABEL": {
|
|
13
13
|
"ADD": "Добавить",
|
|
14
14
|
"ADD_LINK": "Добавить ссылку",
|
|
15
|
+
"ADD_SPACE_AFTER_PARAGRAPH": "Добавить пробел после абзаца",
|
|
16
|
+
"ADD_SPACE_BEFORE_PARAGRAPH": "Добавьте пробел перед абзацем",
|
|
15
17
|
"ALIGN": "Выровнять",
|
|
16
18
|
"ALIGNMENT": "Выравнивание",
|
|
17
19
|
"ALL_BORDERS": "Все границы",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"LAYOUT": "Макет",
|
|
67
69
|
"LEFT": "По левому краю",
|
|
68
70
|
"LEFT_BORDER": "Левая граница",
|
|
71
|
+
"LINE_SPACING_OPTIONS": "Параметры межстрочного интервала",
|
|
69
72
|
"LINK": "Ссылка",
|
|
70
73
|
"LINK_OPTIONS": "Параметры ссылки",
|
|
71
74
|
"MEASURE": "Ед. изм.",
|
|
@@ -92,6 +95,8 @@
|
|
|
92
95
|
"REDO": "Повторить",
|
|
93
96
|
"REMOVE_COLUMN": "Удалить столбец",
|
|
94
97
|
"REMOVE_ROW": "Удалить строку",
|
|
98
|
+
"REMOVE_SPACE_AFTER_PARAGRAPH": "Убрать пробел после абзаца",
|
|
99
|
+
"REMOVE_SPACE_BEFORE_PARAGRAPH": "Убрать пробел перед абзацем",
|
|
95
100
|
"REMOVE_TABLE": "Удалить таблицу",
|
|
96
101
|
"RENAME": "Переименовать",
|
|
97
102
|
"REPLACE": "Заменить",
|
|
@@ -130,7 +135,7 @@
|
|
|
130
135
|
"BULLETED_LIST": "Создать список с маркерами",
|
|
131
136
|
"BULLETED_MENU": "Меню создания списка с маркерами",
|
|
132
137
|
"CENTER": "Выравнивание по центру (Ctrl+E)",
|
|
133
|
-
"
|
|
138
|
+
"COMMENT": "Добавить комментарий",
|
|
134
139
|
"DATEPICKER": "Выбор даты",
|
|
135
140
|
"DECREMENT": "Уменьшить размер шрифта",
|
|
136
141
|
"FONT": "Шрифт",
|
|
@@ -154,4 +159,4 @@
|
|
|
154
159
|
"UNDO": "Отменить последнее действие (Ctrl+Z)"
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
|
-
}
|
|
162
|
+
}
|