@talrace/ngx-noder 0.0.40 → 0.0.42

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.
Files changed (37) hide show
  1. package/assets/i18n/noder.en.json +2 -1
  2. package/assets/i18n/noder.es.json +2 -1
  3. package/assets/i18n/noder.ru.json +2 -1
  4. package/fesm2022/talrace-ngx-noder.mjs +788 -482
  5. package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
  6. package/lib/apart-components/editor-ruler/editor-ruler.component.d.ts +28 -14
  7. package/lib/apart-components/editor-search-bar/editor-search-bar.component.d.ts +26 -0
  8. package/lib/editor/components/editor.component.d.ts +7 -1
  9. package/lib/editor/display/layers/highlight.layer.d.ts +16 -0
  10. package/lib/editor/display/layers/search-highlight.layer.d.ts +12 -0
  11. package/lib/editor/display/layers/selection.layer.d.ts +3 -11
  12. package/lib/editor/display/render-changes.interface.d.ts +1 -0
  13. package/lib/editor/display/render-changes.model.d.ts +1 -0
  14. package/lib/editor/display/renderer.d.ts +5 -0
  15. package/lib/editor/display/virtual.renderer.d.ts +4 -1
  16. package/lib/editor/editor.module.d.ts +10 -9
  17. package/lib/editor/execution/edit.session.d.ts +1 -0
  18. package/lib/editor/execution/editor.d.ts +21 -8
  19. package/lib/editor/gadgets/history/operation-history.d.ts +1 -0
  20. package/lib/editor/gadgets/history/operation.type.d.ts +2 -1
  21. package/lib/editor/gadgets/search/search-result.interface.d.ts +5 -0
  22. package/lib/editor/gadgets/search/search.d.ts +14 -30
  23. package/lib/editor/interaction/editor.service.d.ts +48 -16
  24. package/lib/editor/operations/enums/command-type.enum.d.ts +2 -1
  25. package/lib/editor/operations/helpers/paragraph-operations.helper.d.ts +1 -0
  26. package/lib/editor/operations/operations-helper.helper.d.ts +1 -0
  27. package/lib/editor/operations/save-commands.helper.d.ts +1 -0
  28. package/lib/models/generated/apply-paragraphs.model.d.ts +5 -0
  29. package/lib/models/generated/command.model.d.ts +2 -0
  30. package/package.json +1 -1
  31. package/public-api.d.ts +0 -1
  32. package/src/_ngx-noder.theme.scss +2 -0
  33. package/src/lib/apart-components/editor-search-bar/_theme.scss +28 -0
  34. package/src/scss/base-editor.scss +13 -3
  35. package/lib/apart-components/editor-search/editor-search-dialog.component.d.ts +0 -23
  36. package/lib/editor/gadgets/search/replace.interface.d.ts +0 -4
  37. package/lib/editor/gadgets/search/search-iteration.interface.d.ts +0 -4
@@ -64,6 +64,7 @@
64
64
  "MILLIMETERS": "mm",
65
65
  "NEW": "New",
66
66
  "NONE": "None",
67
+ "NO_RESULTS": "No Results",
67
68
  "NUMBERED_LIST_MENU": "Numbered List Menu",
68
69
  "ODD_PAGES_FOOTER": "Odd Pages Footer",
69
70
  "ODD_PAGES_HEADER": "Odd Pages Header",
@@ -135,4 +136,4 @@
135
136
  "UNDO": "Undo (Ctrl+Z)"
136
137
  }
137
138
  }
138
- }
139
+ }
@@ -64,6 +64,7 @@
64
64
  "MILLIMETERS": "mm",
65
65
  "NEW": "Nuevo",
66
66
  "NONE": "Ninguna",
67
+ "NO_RESULTS": "No hay resultados",
67
68
  "NUMBERED_LIST_MENU": "Menú de Lista Numerada",
68
69
  "ODD_PAGES_FOOTER": "Pie de Página de Páginas Impares",
69
70
  "ODD_PAGES_HEADER": "Encabezado de Páginas Impares",
@@ -135,4 +136,4 @@
135
136
  "UNDO": "Deshacer (Ctrl+Z)"
136
137
  }
137
138
  }
138
- }
139
+ }
@@ -64,6 +64,7 @@
64
64
  "MILLIMETERS": "мм",
65
65
  "NEW": "Новый",
66
66
  "NONE": "Нет",
67
+ "NO_RESULTS": "Нет Результатов",
67
68
  "NUMBERED_LIST_MENU": "Меню нумерованного списка",
68
69
  "ODD_PAGES_FOOTER": "Нижний колонтитул нечетных страниц",
69
70
  "ODD_PAGES_HEADER": "Верхний колонтитул нечетных страниц",
@@ -135,4 +136,4 @@
135
136
  "UNDO": "Отменить последнее действие (Ctrl+Z)"
136
137
  }
137
138
  }
138
- }
139
+ }