devexpress-richedit 25.2.3 → 25.2.5
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/bin/gulpfile.js +2 -2
- package/bin/index-custom.js +2 -2
- package/bin/localization-builder.js +2 -2
- package/bin/nspell-index.js +2 -2
- package/bin/nspell.webpack.config.js +2 -2
- package/bin/webpack-externals.js +2 -2
- package/bin/webpack.config.js +2 -2
- package/dist/dx.richedit.d.ts +2 -2
- package/dist/dx.richedit.js +5809 -9423
- package/dist/dx.richedit.min.js +4 -4
- package/index.d.ts +2 -2
- package/index.js +2 -2
- package/lib/client/_constants.js +3 -4
- package/lib/client/api/bookmark.js +0 -1
- package/lib/client/api/collections/bookmark-collection.js +0 -1
- package/lib/client/api/collections/sub-documents-collection.js +0 -1
- package/lib/client/api/document.js +0 -1
- package/lib/client/api/history.js +0 -1
- package/lib/client/api/key-code.js +0 -5
- package/lib/client/api/layout-api.js +0 -1
- package/lib/client/api/loading-panel.js +0 -1
- package/lib/client/api/selection-api.js +0 -1
- package/lib/client/api/sub-document.js +0 -1
- package/lib/client/bars/active-context-tab-manager.js +12 -17
- package/lib/client/bars/bar-holder.js +0 -4
- package/lib/client/bars/context-menu.js +0 -6
- package/lib/client/bars/ribbon.js +1 -7
- package/lib/client/bars/rich-edit-ribbon/ribbon-items-data.js +231 -237
- package/lib/client/client-rich-edit-core.js +0 -4
- package/lib/client/client-rich-edit.js +7 -29
- package/lib/client/commands/download-document-command.js +0 -2
- package/lib/client/commands/export-document-command.js +0 -4
- package/lib/client/commands/mail-merge-command.js +0 -5
- package/lib/client/commands/open-document-command.js +4 -5
- package/lib/client/context-menu/settings.js +3 -2
- package/lib/client/default-localization.js +6 -6
- package/lib/client/dialogs/bookmark-dialog.js +4 -10
- package/lib/client/dialogs/dialog-base.js +0 -7
- package/lib/client/dialogs/dialog-manager.js +0 -3
- package/lib/client/dialogs/find-replace-dialog.js +0 -11
- package/lib/client/dialogs/finish-and-merge-dialog.js +0 -3
- package/lib/client/dialogs/font-dialog.js +0 -2
- package/lib/client/dialogs/hyperlink-dialog.js +5 -3
- package/lib/client/dialogs/insert-merge-field-dialog.js +0 -2
- package/lib/client/dialogs/page-setup-dialog.js +6 -7
- package/lib/client/dialogs/paragraph-dialog.js +0 -1
- package/lib/client/dialogs/tabs-dialog.js +5 -10
- package/lib/client/document-processor/docvar-args.js +0 -10
- package/lib/client/document-processor/processor.js +2 -11
- package/lib/client/document-processor/public/processor.js +0 -2
- package/lib/client/formats/docx/export/data.js +3 -30
- package/lib/client/formats/docx/export/docx-export-options.js +8 -5
- package/lib/client/formats/docx/export/exporter.js +0 -3
- package/lib/client/formats/docx/export/exporters/base/drawing.js +0 -5
- package/lib/client/formats/docx/export/exporters/base/sections.js +1 -2
- package/lib/client/formats/docx/export/exporters/base/styles/table-style.js +3 -3
- package/lib/client/formats/docx/export/exporters/base/table/table-cell-properties.js +18 -15
- package/lib/client/formats/docx/export/exporters/base/table/table-properties.d.ts +2 -1
- package/lib/client/formats/docx/export/exporters/base/table/table-properties.js +10 -5
- package/lib/client/formats/docx/export/exporters/base/table/table.js +6 -4
- package/lib/client/formats/docx/export/exporters/base/text.js +2 -2
- package/lib/client/formats/docx/export/exporters/base.js +0 -1
- package/lib/client/formats/docx/export/exporters/content-types.js +2 -2
- package/lib/client/formats/docx/export/exporters/note-properties.js +1 -1
- package/lib/client/formats/docx/export/exporters/relations/base.js +4 -1
- package/lib/client/formats/docx/export/exporters/relations/document-relations.js +0 -6
- package/lib/client/formats/docx/export/exporters/relations/relation-collection.js +0 -5
- package/lib/client/formats/docx/export/exporters/styles.js +6 -3
- package/lib/client/formats/docx/export/exporters/sub-document/base-sub-document.js +11 -25
- package/lib/client/formats/docx/export/exporters/sub-document/header-footer-sub-document-exporter.js +0 -1
- package/lib/client/formats/docx/export/exporters/sub-document/note-sub-document-exporter.js +0 -2
- package/lib/client/formats/docx/export/utils/id-generator.js +1 -2
- package/lib/client/formats/docx/export/utils/inline-drawing-object.js +0 -2
- package/lib/client/formats/docx/import/css-engine/inline-picture-css-parser.js +0 -28
- package/lib/client/formats/docx/import/data.js +1 -25
- package/lib/client/formats/docx/import/destination/borders/table-borders-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/borders/table-cell-borders-destination.js +4 -4
- package/lib/client/formats/docx/import/destination/character-properties/character-formatting-leaf-element-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/character-properties/run-properties-base-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/character-properties/run-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/destination.js +1 -7
- package/lib/client/formats/docx/import/destination/document/alt-chunk-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/document/body-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/document/document-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/document/smart-tag-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/drawing/drawing-anchor-position-destination.js +6 -15
- package/lib/client/formats/docx/import/destination/drawing/drawing-anchor-relative-size-destination.js +5 -9
- package/lib/client/formats/docx/import/destination/drawing/drawing-anchor-wrap-destination.js +0 -3
- package/lib/client/formats/docx/import/destination/drawing/drawing-destination.js +26 -47
- package/lib/client/formats/docx/import/destination/drawing/non-visual-pucture-properties-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/drawing/shape-properties-destination.js +6 -13
- package/lib/client/formats/docx/import/destination/field/field-char-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/field/field-simple-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/field/hyperlink-destination.js +4 -4
- package/lib/client/formats/docx/import/destination/notes/endnotes/endnote-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/notes/endnotes/endnotes-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/notes/footnotes/footnote-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/notes/footnotes/footnotes-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/notes/note-destination.js +2 -5
- package/lib/client/formats/docx/import/destination/notes/note-properties-destination.js +3 -8
- package/lib/client/formats/docx/import/destination/numbering/numberings-destination.js +12 -31
- package/lib/client/formats/docx/import/destination/paragraph/paragraph-destination.js +4 -4
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-formatting-leaf-element-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-numbering-reference-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-numbering-reference-level-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-numbering-reference-numbering-id-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-properties-base-destination.js +4 -6
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-properties-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/paragraph-properties/properties/borders/borders-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/property-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/range-permission/range-permission-element-destination.js +3 -3
- package/lib/client/formats/docx/import/destination/relationships/relation-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/relationships/relationships-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/runs/deleted-text-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/runs/inline-object-destination.js +2 -4
- package/lib/client/formats/docx/import/destination/runs/run-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/section/column-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/section/columns-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/section/header-footer/header-footer-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/section/section-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/settings/compat-settings-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/settings/document-protection.js +1 -1
- package/lib/client/formats/docx/import/destination/settings/document-variables-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/settings/settings.js +2 -2
- package/lib/client/formats/docx/import/destination/style/default/char/default-run-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/style/default/char/inner-default-run-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/style/default/document-defaults-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/style/default/par/default-paragraph-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/style/destinations/style-paragraph-properties-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/style/style-conditional-table-formatting.js +6 -3
- package/lib/client/formats/docx/import/destination/style/style-destination-base.js +3 -10
- package/lib/client/formats/docx/import/destination/style/style-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/style/styles-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/table/cell/properties/table-cell-properties-destination-core.js +2 -3
- package/lib/client/formats/docx/import/destination/table/cell/properties/table-cell-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/table/cell/properties/table-cell-properties-element-base-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/cell/properties/table-cell-style-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/cell/table-cell-destination.js +2 -6
- package/lib/client/formats/docx/import/destination/table/height-unit-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/row/properties/table-row-properties-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/table/row/properties/table-row-properties-leaf-element-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/row/table-row-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/table/table/grid-column-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/table/properties/table-cell-margins-destination.js +0 -2
- package/lib/client/formats/docx/import/destination/table/table/properties/table-properties-base-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/table/properties/table-properties-destination-core.js +2 -4
- package/lib/client/formats/docx/import/destination/table/table/properties/table-properties-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/table/table/properties/table-properties-leaf-element-destination.js +0 -2
- package/lib/client/formats/docx/import/destination/table/table/table-destination.js +2 -4
- package/lib/client/formats/docx/import/destination/table/table/table-grid-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/table/table-style-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/table/width-unit-destination.js +0 -2
- package/lib/client/formats/docx/import/destination/tabs/tabs-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/tabs/tabs-leaf-element-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/themes/color/drawing-color-destination-base.js +2 -4
- package/lib/client/formats/docx/import/destination/themes/color/drawing-color-destination.js +1 -1
- package/lib/client/formats/docx/import/destination/themes/color/drawing-color-properties-destination-base.js +2 -4
- package/lib/client/formats/docx/import/destination/themes/color/office-theme-color-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/themes/color/office-theme-color-scheme-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/themes/color/props/color-transform-destination-base.js +0 -1
- package/lib/client/formats/docx/import/destination/themes/font/drawing-text-font-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/themes/font/office-theme-font-collection-scheme-destination.js +5 -6
- package/lib/client/formats/docx/import/destination/themes/font/office-theme-font-scheme-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/themes/font/office-theme-supplemental-font-scheme-destination.js +0 -1
- package/lib/client/formats/docx/import/destination/themes/format/office-theme-format-scheme-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/themes/office-theme-destination.js +2 -3
- package/lib/client/formats/docx/import/destination/themes/office-theme-elements-destination.js +2 -2
- package/lib/client/formats/docx/import/destination/vml/v-mlshape-destination.js +4 -15
- package/lib/client/formats/docx/import/importer-options.js +6 -8
- package/lib/client/formats/docx/import/importer.js +1 -5
- package/lib/client/formats/docx/import/importers/alt-chunk-importer.js +0 -2
- package/lib/client/formats/docx/import/importers/bookmark-importer.js +0 -2
- package/lib/client/formats/docx/import/importers/character-importer.js +0 -4
- package/lib/client/formats/docx/import/importers/comments-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/core-properties-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/custom-properties-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/field-importer.js +1 -2
- package/lib/client/formats/docx/import/importers/header-footer-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/notes-importer.js +2 -3
- package/lib/client/formats/docx/import/importers/numbering-list-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/paragraph-importer.js +1 -8
- package/lib/client/formats/docx/import/importers/position-importer.js +0 -2
- package/lib/client/formats/docx/import/importers/range-permission-importer.js +0 -2
- package/lib/client/formats/docx/import/importers/section-importer.js +0 -4
- package/lib/client/formats/docx/import/importers/settings-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/styles-importer.d.ts +1 -0
- package/lib/client/formats/docx/import/importers/styles-importer.js +23 -32
- package/lib/client/formats/docx/import/importers/table-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/themes-importer.js +0 -1
- package/lib/client/formats/docx/import/importers/web-settings-importer.js +0 -1
- package/lib/client/formats/docx/import/list/open-xml-abstract-numbering-info.js +0 -4
- package/lib/client/formats/docx/import/list/open-xml-list-level-override.js +0 -5
- package/lib/client/formats/docx/import/list/open-xml-numbering-list-info.js +0 -4
- package/lib/client/formats/docx/import/model/alt-chunk-info.js +0 -3
- package/lib/client/formats/docx/import/model/comment-list-info.js +7 -8
- package/lib/client/formats/docx/import/model/floating-object-import-info.js +3 -13
- package/lib/client/formats/docx/import/model/import-bookmark-info.js +4 -2
- package/lib/client/formats/docx/import/model/import-field-info.js +7 -11
- package/lib/client/formats/docx/import/model/import-range-permission-info.js +7 -7
- package/lib/client/formats/docx/import/model/import-sub-document-info.js +0 -14
- package/lib/client/formats/docx/import/model/open-xml-style-conditional-table-formatting-info.js +0 -7
- package/lib/client/formats/docx/import/utils/culture-info-helper.js +2 -2
- package/lib/client/formats/docx/import/utils/reader-helper.js +0 -1
- package/lib/client/formats/docx/import/utils/relations-collection.js +0 -2
- package/lib/client/formats/docx/translation-table/ml-table-data.js +0 -2
- package/lib/client/formats/docx/translation-table/translation-tables-data.js +4 -2
- package/lib/client/formats/docx/translation-table/translation-tables.js +55 -55
- package/lib/client/formats/docx/translation-table/word-processing-mlvalue.js +0 -2
- package/lib/client/formats/docx/utils/constants.js +92 -119
- package/lib/client/formats/docx/utils/lock-aspect-ratio-table.js +3 -1
- package/lib/client/formats/docx/utils/open-xml-relation.js +0 -4
- package/lib/client/formats/docx/utils/progress-indication.js +4 -10
- package/lib/client/formats/docx/utils/string-value-parser.js +1 -1
- package/lib/client/formats/docx/utils/value-info.js +1 -4
- package/lib/client/formats/docx/utils/xml-chars-decoder.js +1 -1
- package/lib/client/formats/docx/zip/xml-reader.js +0 -8
- package/lib/client/formats/docx/zip/xml-writer.js +1 -4
- package/lib/client/formats/docx/zip/zip-builder.js +0 -2
- package/lib/client/formats/docx/zip/zip-reader.js +0 -2
- package/lib/client/loading-panel/panel.js +1 -3
- package/lib/client/loading-panel/status-bar-panel.js +7 -2
- package/lib/client/localization.js +0 -1
- package/lib/client/losing-changes-watcher.js +2 -5
- package/lib/client/model/fields/field-client-request-manager.js +1 -7
- package/lib/client/model/font-changes-listener.js +0 -1
- package/lib/client/model/styles/known-style-names.js +167 -167
- package/lib/client/model-api/anchor-info.js +0 -12
- package/lib/client/model-api/api-utils/parameter-checker.js +0 -4
- package/lib/client/model-api/bookmark.js +0 -3
- package/lib/client/model-api/character-properties.js +0 -15
- package/lib/client/model-api/collections/bookmark-collection.js +0 -1
- package/lib/client/model-api/collections/collection.js +0 -1
- package/lib/client/model-api/collections/drawing-object-collection-base.js +0 -3
- package/lib/client/model-api/collections/field-collection.js +0 -3
- package/lib/client/model-api/collections/hyperlink-collection.js +0 -1
- package/lib/client/model-api/collections/paragraph-collection.js +0 -1
- package/lib/client/model-api/collections/range-permission-collection.js +0 -1
- package/lib/client/model-api/collections/table/table-base-collection.js +0 -3
- package/lib/client/model-api/collections/table/table-cell-collection.js +0 -2
- package/lib/client/model-api/collections/table/table-row-collection.js +0 -2
- package/lib/client/model-api/document.js +0 -1
- package/lib/client/model-api/field.js +0 -7
- package/lib/client/model-api/fonts/control-font.js +0 -2
- package/lib/client/model-api/fonts/model-font.js +0 -2
- package/lib/client/model-api/images/image-interfaces.js +6 -18
- package/lib/client/model-api/images/image-iterator.js +0 -4
- package/lib/client/model-api/images/image.js +0 -4
- package/lib/client/model-api/images/images.js +0 -2
- package/lib/client/model-api/interval.js +0 -2
- package/lib/client/model-api/lists/enums.js +2 -2
- package/lib/client/model-api/lists/list-level-settings.js +0 -13
- package/lib/client/model-api/lists/lists.js +0 -2
- package/lib/client/model-api/paragraph.js +0 -16
- package/lib/client/model-api/picture.js +0 -7
- package/lib/client/model-api/range-permission.js +0 -3
- package/lib/client/model-api/rectangle.js +0 -4
- package/lib/client/model-api/section.js +0 -2
- package/lib/client/model-api/size.js +0 -6
- package/lib/client/model-api/sub-document.js +0 -2
- package/lib/client/model-api/table/table-borders.js +0 -9
- package/lib/client/model-api/table/table-cell.js +0 -2
- package/lib/client/model-api/table/table-element-base.js +0 -4
- package/lib/client/model-api/table/table-row.js +0 -2
- package/lib/client/model-api/table/table-style-options.js +0 -6
- package/lib/client/model-api/table/table.js +0 -1
- package/lib/client/model-api/text-box.js +0 -6
- package/lib/client/public/api/authentication-options.js +0 -1
- package/lib/client/public/api/mail-merge-options.js +0 -1
- package/lib/client/public/api/print-layout-view.js +0 -1
- package/lib/client/public/api/range-permission-options.js +0 -1
- package/lib/client/public/api/simple-view.js +0 -5
- package/lib/client/public/api/spell-checker-options.js +0 -1
- package/lib/client/public/characters.js +3 -3
- package/lib/client/public/client-events.js +0 -28
- package/lib/client/public/commands/commands.js +0 -3
- package/lib/client/public/commands/ui-changes-listener.js +3 -5
- package/lib/client/public/context-menu/item.js +0 -8
- package/lib/client/public/context-menu/menu.js +0 -4
- package/lib/client/public/document-processor.js +0 -1
- package/lib/client/public/events.js +3 -39
- package/lib/client/public/nusa/rich-edits-holder.js +0 -3
- package/lib/client/public/nusa/settings.js +2 -3
- package/lib/client/public/ribbon/items/base.js +1 -2
- package/lib/client/public/ribbon/items/button.js +1 -7
- package/lib/client/public/ribbon/items/color-box.js +1 -5
- package/lib/client/public/ribbon/items/menu.js +2 -6
- package/lib/client/public/ribbon/items/number-box.js +1 -9
- package/lib/client/public/ribbon/items/select-box.js +1 -13
- package/lib/client/public/ribbon/items/sub-menu.js +1 -5
- package/lib/client/public/ribbon/ribbon.js +5 -3
- package/lib/client/public/ribbon/tab.js +0 -8
- package/lib/client/public/rich-edit.js +0 -13
- package/lib/client/public/utils.d.ts +1 -0
- package/lib/client/public/utils.js +7 -6
- package/lib/client/ribbon/ribbon.js +11 -13
- package/lib/client/ribbon/toolbar-items/toolbar-button-group-item.js +2 -2
- package/lib/client/ribbon/toolbar-items/toolbar-button-item.js +4 -4
- package/lib/client/ribbon/toolbar-items/toolbar-color-box-item.js +0 -2
- package/lib/client/ribbon/toolbar-items/toolbar-interactive-item.js +0 -4
- package/lib/client/ribbon/toolbar-items/toolbar-item-base.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/button-group-toolbar-item-template-creator.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/button-toolbar-item-template-creator.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/color-box-toolbar-item-template-creator.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/menu-toolbar-item-template-creator.js +1 -2
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/number-box-toolbar-item-template-creator.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/select-box-toolbar-item-template-creator.js +0 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/separator-toolbar-item-template-creator.js +1 -1
- package/lib/client/ribbon/toolbar-items/toolbar-menu-item.js +1 -2
- package/lib/client/ribbon/toolbar-items/toolbar-separator-item.js +1 -1
- package/lib/client/ribbon/toolbar-items/toolbar-sub-menu-item.js +1 -6
- package/lib/client/settings.js +23 -51
- package/lib/client/ui/client-quick-search-panel.js +0 -1
- package/lib/client/ui/full-screen-helper.js +2 -3
- package/lib/client/utils/focus-helper.js +4 -5
- package/lib/common/auto-correct/auto-correct-providers.js +10 -7
- package/lib/common/auto-correct/auto-correct-service.js +0 -3
- package/lib/common/bars/base.js +1 -3
- package/lib/common/bars/context-menu.js +5 -2
- package/lib/common/bars/ribbon.js +4 -1
- package/lib/common/canvas/canvas-manager.js +7 -14
- package/lib/common/canvas/canvas-scroll-info.js +16 -17
- package/lib/common/canvas/canvas-scroll-manager.js +2 -4
- package/lib/common/canvas/canvas-size-info.js +7 -9
- package/lib/common/canvas/listeners/anchor-listener.js +0 -1
- package/lib/common/canvas/listeners/auto-scroll-listener.js +1 -6
- package/lib/common/canvas/listeners/drag-caret-listener.js +1 -1
- package/lib/common/canvas/listeners/frame-base-listener.js +2 -6
- package/lib/common/canvas/listeners/resize-box-listener.js +6 -8
- package/lib/common/canvas/renderes/canvas-listener/canvas-listener.js +0 -2
- package/lib/common/canvas/renderes/canvas-listener/print-layout-view-canvas-listener.js +0 -1
- package/lib/common/canvas/renderes/canvas-listener/simple-view-canvas-listener.js +0 -5
- package/lib/common/canvas/renderes/change-active-sub-document/base-renderer.js +0 -6
- package/lib/common/canvas/renderes/change-active-sub-document/header-footer-labels-renderer.js +4 -6
- package/lib/common/canvas/renderes/change-active-sub-document/renderer.js +0 -2
- package/lib/common/canvas/renderes/common/document-renderer.d.ts +7 -1
- package/lib/common/canvas/renderes/common/document-renderer.js +86 -69
- package/lib/common/canvas/renderes/common/simple-view-renderer.js +7 -4
- package/lib/common/canvas/renderes/selection-renderers/misspelled-selection-renderer.js +4 -1
- package/lib/common/canvas/renderes/selection-renderers/range-permission-renderer.js +4 -1
- package/lib/common/canvas/renderes/selection-renderers/search-selection-renderer.js +4 -1
- package/lib/common/canvas/renderes/selection-renderers/selection-renderer-base.js +0 -3
- package/lib/common/canvas/renderes/selection-renderers/selection-renderer.js +1 -3
- package/lib/common/canvas/renderes/selection-renderers/touch-selection-circle-elements-manager.js +1 -6
- package/lib/common/canvas/renderes/view-manager.js +2 -26
- package/lib/common/canvas/renderes/z-index-helper.js +2 -2
- package/lib/common/client-side-events.js +0 -1
- package/lib/common/clipboard-content-inserter.d.ts +1 -1
- package/lib/common/clipboard-content-inserter.js +24 -17
- package/lib/common/commands/bookmark-command.js +0 -1
- package/lib/common/commands/character-properties/change-character-properties-command-base.js +0 -1
- package/lib/common/commands/command-base.js +0 -7
- package/lib/common/commands/command-manager.js +8 -11
- package/lib/common/commands/command-states.js +4 -19
- package/lib/common/commands/dialogs/dialog-alert-message-command.js +0 -1
- package/lib/common/commands/dialogs/dialog-bookmarks-command.js +0 -7
- package/lib/common/commands/dialogs/dialog-border-shading-command.js +6 -21
- package/lib/common/commands/dialogs/dialog-columns-command.js +9 -16
- package/lib/common/commands/dialogs/dialog-custom-numbering-list-command.js +7 -22
- package/lib/common/commands/dialogs/dialog-find-replace-command.js +0 -1
- package/lib/common/commands/dialogs/dialog-finish-and-merge-command.js +0 -5
- package/lib/common/commands/dialogs/dialog-font-command.js +16 -14
- package/lib/common/commands/dialogs/dialog-hyperlink-command.js +9 -6
- package/lib/common/commands/dialogs/dialog-insert-image-command.js +6 -3
- package/lib/common/commands/dialogs/dialog-insert-merge-field-command.js +0 -1
- package/lib/common/commands/dialogs/dialog-insert-table-cells-command.js +0 -1
- package/lib/common/commands/dialogs/dialog-insert-table-command.js +0 -2
- package/lib/common/commands/dialogs/dialog-layout-options-command.js +0 -31
- package/lib/common/commands/dialogs/dialog-numbering-list-command.js +4 -2
- package/lib/common/commands/dialogs/dialog-page-setup-command.js +0 -15
- package/lib/common/commands/dialogs/dialog-paragraph-properties-command.js +0 -17
- package/lib/common/commands/dialogs/dialog-spell-checker-command.js +0 -4
- package/lib/common/commands/dialogs/dialog-split-table-cells-command.js +0 -5
- package/lib/common/commands/dialogs/dialog-symbols-command.js +0 -3
- package/lib/common/commands/dialogs/dialog-table-properties-command.js +13 -41
- package/lib/common/commands/dialogs/dialog-tabs-command.js +0 -2
- package/lib/common/commands/document/print-document-on-client-command.js +2 -11
- package/lib/common/commands/fields/change-hyperlink-command.js +0 -3
- package/lib/common/commands/fields/update-field-command.js +1 -4
- package/lib/common/commands/find-replace/find-all-command.js +0 -4
- package/lib/common/commands/find-replace/replace-all-command.js +0 -3
- package/lib/common/commands/floating-objects/floating-object-drag-drop-change-position-command.js +0 -11
- package/lib/common/commands/floating-objects/set-floating-object-alignment-command.js +50 -22
- package/lib/common/commands/floating-objects/set-floating-object-text-wrap-type-command.js +29 -9
- package/lib/common/commands/header-footer/link-header-footer-commands.js +0 -1
- package/lib/common/commands/numbering/insert-numeration-to-paragraphs-command.js +0 -1
- package/lib/common/commands/ruler/ruler-paragraph-indents-command.js +0 -2
- package/lib/common/commands/ruler/ruler-table-column-separators-command.js +6 -11
- package/lib/common/commands/ruler/ruler-table-commands.js +0 -8
- package/lib/common/commands/selection/go-to-line-end-command.js +0 -1
- package/lib/common/commands/selection/go-to-next-page-command.d.ts +5 -8
- package/lib/common/commands/selection/go-to-next-page-command.js +26 -50
- package/lib/common/commands/selection/go-to-page-command-base.d.ts +18 -0
- package/lib/common/commands/selection/go-to-page-command-base.js +91 -0
- package/lib/common/commands/selection/go-to-prev-page-command.d.ts +5 -9
- package/lib/common/commands/selection/go-to-prev-page-command.js +27 -48
- package/lib/common/commands/selection/select-table-command.js +0 -2
- package/lib/common/commands/shortcut-manager.js +1 -6
- package/lib/common/commands/shortcuts/assign-shortcut-command.js +0 -2
- package/lib/common/commands/sub-document/change-active-sub-document-command.js +2 -4
- package/lib/common/commands/tables/change-table-cell-alignment-command.js +45 -20
- package/lib/common/commands/tables/change-table-look-command.js +24 -7
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.js +16 -1
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.js +23 -1
- package/lib/common/commands/tables/insert-table-column-commands.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-column-commands.js +8 -0
- package/lib/common/commands/tables/insert-table-core-command.js +8 -3
- package/lib/common/commands/tables/table-command-base.d.ts +2 -0
- package/lib/common/commands/tables/table-command-base.js +4 -1
- package/lib/common/commands/tables/toggle-table-cells-border-command.js +56 -27
- package/lib/common/commands/text/backspace-command.js +0 -2
- package/lib/common/commands/text/clipboard-commands.d.ts +1 -1
- package/lib/common/commands/text/clipboard-commands.js +40 -46
- package/lib/common/commands/text/insert-paragraph-command.js +10 -9
- package/lib/common/commands/text/insert-tab-command.d.ts +3 -0
- package/lib/common/commands/text/insert-tab-command.js +7 -1
- package/lib/common/commands/text/insert-text-command.js +0 -1
- package/lib/common/event-manager.js +5 -19
- package/lib/common/focus-manager.js +0 -5
- package/lib/common/formats/file-name-helper.js +0 -5
- package/lib/common/formats/html/export/html-builder.js +4 -3
- package/lib/common/formats/html/export/html-document-exporter.js +0 -4
- package/lib/common/formats/html/export/html-export.js +5 -7
- package/lib/common/formats/html/import/containers/runs.js +1 -21
- package/lib/common/formats/html/import/containers/tables.js +0 -16
- package/lib/common/formats/html/import/html-document-importer.js +0 -3
- package/lib/common/formats/html/import/html-importer.js +8 -30
- package/lib/common/formats/html/import/html-model-inserter.js +4 -12
- package/lib/common/formats/html/import/importers/base.js +2 -3
- package/lib/common/formats/html/import/importers/list-base.js +4 -1
- package/lib/common/formats/html/import/importers/p.js +5 -2
- package/lib/common/formats/html/import/importers/span.js +4 -1
- package/lib/common/formats/html/import/importers/table.js +5 -2
- package/lib/common/formats/html/import/importers/td.js +2 -4
- package/lib/common/formats/html/import/importers/tr.js +5 -4
- package/lib/common/formats/html/import/load-font-info.js +0 -3
- package/lib/common/formats/html/import/utils/character-properties-utils.js +3 -9
- package/lib/common/formats/html/import/utils/paragraph-list-properties-utils.js +2 -7
- package/lib/common/formats/html/import/utils/paragraph-properties-utils.js +2 -5
- package/lib/common/formats/html/import/utils/utils.js +2 -2
- package/lib/common/formats/html/model/history/paste-html-data-history-item.js +0 -4
- package/lib/common/formats/options.js +3 -1
- package/lib/common/formats/pdf/box-exporter.js +1 -5
- package/lib/common/formats/pdf/character-properties-exporter.d.ts +1 -1
- package/lib/common/formats/pdf/character-properties-exporter.js +1 -3
- package/lib/common/formats/pdf/exporter.js +0 -1
- package/lib/common/formats/pdf/page-area-exporter.js +0 -3
- package/lib/common/formats/pdf/page-exporter.js +0 -2
- package/lib/common/formats/pdf/row-exporter.js +0 -2
- package/lib/common/formats/pdf/table-column-info-exporter.js +0 -1
- package/lib/common/formats/rtf/export/characters.js +41 -41
- package/lib/common/formats/rtf/export/exporter.js +0 -5
- package/lib/common/formats/rtf/export/exporters/picture/rtf-picture-exporter.js +0 -3
- package/lib/common/formats/rtf/export/exporters/rtf-anchored-picture-run-exporter.js +0 -2
- package/lib/common/formats/rtf/export/exporters/rtf-anchored-run-exporter.js +0 -5
- package/lib/common/formats/rtf/export/exporters/rtf-anchored-text-box-run-exporter.js +0 -2
- package/lib/common/formats/rtf/export/exporters/rtf-character-properties-exporter.js +3 -4
- package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.js +12 -28
- package/lib/common/formats/rtf/export/exporters/rtf-numbering-list-exporter.js +2 -7
- package/lib/common/formats/rtf/export/exporters/rtf-paragraph-properties-exporter.js +21 -18
- package/lib/common/formats/rtf/export/exporters/rtf-properties-exporter.js +0 -3
- package/lib/common/formats/rtf/export/exporters/rtf-style-exporter.js +0 -8
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +0 -9
- package/lib/common/formats/rtf/export/helpers/rtf-export-helper.js +0 -14
- package/lib/common/formats/rtf/export/rtf-builder.js +4 -9
- package/lib/common/formats/rtf/export/rtf-document-exporter-options.js +3 -8
- package/lib/common/formats/rtf/import/destination/base/destination.js +6 -9
- package/lib/common/formats/rtf/import/destination/base/hex-content-destination.js +4 -2
- package/lib/common/formats/rtf/import/destination/base/hex-stream-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/base/skip-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/base/string-property-base-destination.js +2 -4
- package/lib/common/formats/rtf/import/destination/base/string-property-destination.js +2 -3
- package/lib/common/formats/rtf/import/destination/base/string-value-destination-base.js +2 -2
- package/lib/common/formats/rtf/import/destination/base/string-value-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/base/unicode-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/base/unicode-string-value-destination.js +6 -3
- package/lib/common/formats/rtf/import/destination/color-table-destination.js +9 -10
- package/lib/common/formats/rtf/import/destination/destination-revision-author-table.js +4 -1
- package/lib/common/formats/rtf/import/destination/document-variable-destination.js +4 -3
- package/lib/common/formats/rtf/import/destination/fields/field-map-data-destination.js +4 -7
- package/lib/common/formats/rtf/import/destination/fields/field-sub-destination.js +1 -1
- package/lib/common/formats/rtf/import/destination/fields/mail-merge-destination.js +4 -4
- package/lib/common/formats/rtf/import/destination/fields/table-content-field-destination.js +3 -3
- package/lib/common/formats/rtf/import/destination/font-table-destination.js +0 -3
- package/lib/common/formats/rtf/import/destination/numbering-list/destination-old-paragraph-numbering-base.js +5 -2
- package/lib/common/formats/rtf/import/destination/numbering-list/destination-old-paragraph-numbering.js +0 -10
- package/lib/common/formats/rtf/import/destination/numbering-list/destination-old-section-numbering-level.js +0 -1
- package/lib/common/formats/rtf/import/destination/numbering-list/list-level-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/numbering-list/list-level-text-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/numbering-list/list-override-level-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/numbering-list/list-override-table-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/numbering-list/list-table-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/picture/picture-destination.js +2 -4
- package/lib/common/formats/rtf/import/destination/picture/picture-units-converter.js +0 -1
- package/lib/common/formats/rtf/import/destination/shape/hyperlink-property-value-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/shape/pic/shape-picture-destination.js +1 -3
- package/lib/common/formats/rtf/import/destination/shape/shape-properties-destination-base.js +2 -3
- package/lib/common/formats/rtf/import/destination/shape/shape-property-destination.js +0 -3
- package/lib/common/formats/rtf/import/destination/shape/shape-property-hsv-value-destination.js +0 -1
- package/lib/common/formats/rtf/import/destination/shape/shape-property-hyperlink-destination.js +4 -1
- package/lib/common/formats/rtf/import/destination/shape/shape-property-value-destination.js +4 -2
- package/lib/common/formats/rtf/import/destination/styles/character-style-destination.js +0 -2
- package/lib/common/formats/rtf/import/destination/styles/style-sheet-destination.js +0 -2
- package/lib/common/formats/rtf/import/destination/styles/table-style-destination.js +1 -3
- package/lib/common/formats/rtf/import/destination/sub-document/destination-sub-document.js +2 -2
- package/lib/common/formats/rtf/import/destination/sub-document/section-header-footer-destination-base.js +0 -1
- package/lib/common/formats/rtf/import/dx-decoding/gb2315-decoder-helper.js +1 -1
- package/lib/common/formats/rtf/import/dx-decoding/hangul949-decoder-helper.js +0 -1
- package/lib/common/formats/rtf/import/dx-decoding/russian-decoder.js +2 -2
- package/lib/common/formats/rtf/import/encoding/code-page-character-decoder.js +1 -3
- package/lib/common/formats/rtf/import/encoding/dx-encoding.js +2 -2
- package/lib/common/formats/rtf/import/encoding/unicode-character-decoder.js +5 -2
- package/lib/common/formats/rtf/import/importer-options.js +1 -3
- package/lib/common/formats/rtf/import/importers/character-importer.js +0 -3
- package/lib/common/formats/rtf/import/importers/field-importer.js +1 -2
- package/lib/common/formats/rtf/import/importers/font-importer.js +1 -2
- package/lib/common/formats/rtf/import/importers/image-importer.js +2 -3
- package/lib/common/formats/rtf/import/importers/importer-base.js +0 -1
- package/lib/common/formats/rtf/import/importers/importers-collection.js +1 -14
- package/lib/common/formats/rtf/import/importers/numbering-lists-importer.js +4 -10
- package/lib/common/formats/rtf/import/importers/paragraph-importer.js +0 -2
- package/lib/common/formats/rtf/import/importers/range-permission-importer.js +2 -2
- package/lib/common/formats/rtf/import/importers/section-importer.js +0 -1
- package/lib/common/formats/rtf/import/importers/styles/base-style-importer.js +1 -3
- package/lib/common/formats/rtf/import/importers/styles/paragraph-style-importer.js +4 -2
- package/lib/common/formats/rtf/import/importers/styles/rtf-style-importer-state.js +0 -2
- package/lib/common/formats/rtf/import/importers/styles-importer.js +2 -6
- package/lib/common/formats/rtf/import/keyword-tables/keyword-table-holder.js +251 -249
- package/lib/common/formats/rtf/import/model/bookmark/import-bookmark-info-core.js +4 -2
- package/lib/common/formats/rtf/import/model/bookmark/import-bookmark-info.js +0 -2
- package/lib/common/formats/rtf/import/model/character/character-properties.js +6 -10
- package/lib/common/formats/rtf/import/model/character/font-info-collection.js +4 -2
- package/lib/common/formats/rtf/import/model/character/rtf-font-info.js +5 -6
- package/lib/common/formats/rtf/import/model/character/rtf-formatting-info.js +2 -6
- package/lib/common/formats/rtf/import/model/color-collections.js +3 -5
- package/lib/common/formats/rtf/import/model/fields/rtf-field-info.js +11 -14
- package/lib/common/formats/rtf/import/model/image/picture-destination-info.js +15 -19
- package/lib/common/formats/rtf/import/model/image/rtf-image-info.js +0 -10
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-list-converter.js +1 -2
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-list-level.js +2 -5
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-list-override-level.js +1 -4
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-numbering-list-info.js +0 -2
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-numbering-list-override.js +3 -3
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-numbering-list.js +4 -6
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-old-list-level-info-collection.js +3 -1
- package/lib/common/formats/rtf/import/model/numbering-lists/rtf-old-list-level-info.js +0 -7
- package/lib/common/formats/rtf/import/model/paragraph/paragraph-frame-formatting-info.js +0 -15
- package/lib/common/formats/rtf/import/model/paragraph/paragraph-properties.js +16 -15
- package/lib/common/formats/rtf/import/model/range-permission/import-range-permission-info.js +0 -7
- package/lib/common/formats/rtf/import/model/rtf-document-properties.js +2 -7
- package/lib/common/formats/rtf/import/model/rtf-revision-authors.js +4 -2
- package/lib/common/formats/rtf/import/model/section/general-section-info.js +0 -6
- package/lib/common/formats/rtf/import/model/section/line-numbering-info.js +0 -4
- package/lib/common/formats/rtf/import/model/section/margins-info.js +0 -2
- package/lib/common/formats/rtf/import/model/section/page-numbering-info.js +6 -5
- package/lib/common/formats/rtf/import/model/section/rtf-section-properties.js +0 -9
- package/lib/common/formats/rtf/import/model/shape/calculators/rtf-bounds-calculator-base.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/rtf-shape-helpers/rtf-container-properties-helper.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/rtf-shape-helpers/rtf-drawing-object-run-properties-helper.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/rtf-shape-helpers/rtf-drawing-text-body-properties-helper.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/rtf-shape-helpers/rtf-outline-properties-helper.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/rtf-shape-helpers/rtf-shape-import-helper.js +0 -1
- package/lib/common/formats/rtf/import/model/shape/shape-properties-info.js +3 -1
- package/lib/common/formats/rtf/import/model/shape/shape-type-code.js +203 -203
- package/lib/common/formats/rtf/import/model/table/properties/rtf-table-cell-properties.js +3 -8
- package/lib/common/formats/rtf/import/model/table/properties/rtf-table-properties.js +3 -7
- package/lib/common/formats/rtf/import/model/table/properties/table-floating-position-info.js +0 -11
- package/lib/common/formats/rtf/import/model/table/properties/table-row-properties.js +6 -14
- package/lib/common/formats/rtf/import/model/table/rtf-table-cell.js +5 -9
- package/lib/common/formats/rtf/import/model/table/rtf-table-row.js +2 -6
- package/lib/common/formats/rtf/import/model/table/rtf-table.js +1 -4
- package/lib/common/formats/rtf/import/rtf-import-data.js +1 -26
- package/lib/common/formats/rtf/import/rtf-importer.js +0 -4
- package/lib/common/formats/rtf/import/table/rtf-table-cell-controller.js +0 -2
- package/lib/common/formats/rtf/import/table/rtf-table-controller.js +0 -3
- package/lib/common/formats/rtf/import/table/rtf-table-row-controller.js +0 -3
- package/lib/common/formats/rtf/import/table/rtf-table-state.js +0 -4
- package/lib/common/formats/rtf/import/table/states/no-table-state.js +4 -1
- package/lib/common/formats/rtf/import/table/states/state-base.js +0 -1
- package/lib/common/formats/rtf/import/table/table-converter.js +1 -3
- package/lib/common/formats/rtf/import/table/table-grid.js +3 -1
- package/lib/common/formats/rtf/import/table/table-reader.js +1 -13
- package/lib/common/formats/rtf/translation-table/rtf-content-exporter.js +1 -1
- package/lib/common/formats/rtf/translation-table/rtf-drawing-keywords.js +179 -179
- package/lib/common/formats/rtf/translation-table/rtf-export-sr.js +688 -688
- package/lib/common/formats/rtf/utils/mergers/rtf-table-properties-merger-base.js +0 -1
- package/lib/common/formats/rtf/utils/rtf-art-border-converter.js +1 -2
- package/lib/common/formats/rtf/utils/shape-utils.js +1 -1
- package/lib/common/formats/rtf/utils/unicode-char-helper.js +19 -19
- package/lib/common/formats/txt/txt-exporter.js +0 -2
- package/lib/common/formats/txt/txt-importer.js +0 -3
- package/lib/common/formats/utils/color/theme-color-index-calculator.js +4 -4
- package/lib/common/formats/utils/color/tint-and-shade-calculator.js +1 -1
- package/lib/common/formats/utils/cross-existing-iterator.js +0 -9
- package/lib/common/formats/utils/extension-helper.js +4 -4
- package/lib/common/formats/utils/images-import.js +4 -7
- package/lib/common/formats/utils/import-bookmark-info-core.js +4 -2
- package/lib/common/formats/utils/import-comment-info.js +0 -4
- package/lib/common/formats/utils/numbering-list-index-constants.js +4 -4
- package/lib/common/formats/utils/string-helper.js +7 -7
- package/lib/common/global-event-dispatcher.js +2 -7
- package/lib/common/input-controller.d.ts +2 -1
- package/lib/common/input-controller.js +19 -49
- package/lib/common/layout/document-layout.js +1 -12
- package/lib/common/layout/layout-point.js +0 -1
- package/lib/common/layout/layout-position.js +17 -14
- package/lib/common/layout/main-structures/layout-boxes/bookmark-box.js +4 -4
- package/lib/common/layout/main-structures/layout-boxes/layout-anchored-object-box.js +2 -9
- package/lib/common/layout/main-structures/layout-boxes/layout-anchored-picture-box.js +0 -3
- package/lib/common/layout/main-structures/layout-boxes/layout-anchored-text-box.js +0 -2
- package/lib/common/layout/main-structures/layout-boxes/layout-box.js +0 -7
- package/lib/common/layout/main-structures/layout-boxes/layout-dash-box.js +0 -1
- package/lib/common/layout/main-structures/layout-boxes/layout-dependent-text-box.js +0 -1
- package/lib/common/layout/main-structures/layout-boxes/layout-line-break-box.js +0 -2
- package/lib/common/layout/main-structures/layout-boxes/layout-non-breaking-space-box.js +1 -3
- package/lib/common/layout/main-structures/layout-boxes/layout-numbering-list-box.js +0 -3
- package/lib/common/layout/main-structures/layout-boxes/layout-page-break-box.js +0 -2
- package/lib/common/layout/main-structures/layout-boxes/layout-paragraph-mark-box.js +0 -2
- package/lib/common/layout/main-structures/layout-boxes/layout-picture-box.js +0 -3
- package/lib/common/layout/main-structures/layout-boxes/layout-space-box.js +0 -2
- package/lib/common/layout/main-structures/layout-boxes/layout-tab-space-box.js +1 -7
- package/lib/common/layout/main-structures/layout-boxes/layout-text-box.js +0 -1
- package/lib/common/layout/main-structures/layout-column.js +4 -5
- package/lib/common/layout/main-structures/layout-page-area.js +1 -3
- package/lib/common/layout/main-structures/layout-page.js +14 -44
- package/lib/common/layout/main-structures/layout-row.js +4 -12
- package/lib/common/layout/selection/layout-selection-info.js +2 -4
- package/lib/common/layout/selection/layout-selection-items.js +2 -4
- package/lib/common/layout/selection/layout-selection-page-info.js +5 -3
- package/lib/common/layout/selection/layout-selection.js +4 -8
- package/lib/common/layout/table/layout-table-cell-info.js +1 -6
- package/lib/common/layout/table/layout-table-info.js +6 -12
- package/lib/common/layout/table/layout-table-row-info.js +0 -5
- package/lib/common/layout/table/table-cell-iterator.js +16 -22
- package/lib/common/layout-engine/hit-test-manager/hit-test-manager.js +0 -8
- package/lib/common/layout-engine/hit-test-manager/hit-test-result.js +2 -4
- package/lib/common/layout-engine/layout-anchor-object-finder.js +0 -2
- package/lib/common/layout-engine/layout-box-iterator/layout-box-iterator-base.js +0 -8
- package/lib/common/layout-engine/layout-box-iterator/layout-box-iterator-other-sub-document.js +0 -1
- package/lib/common/layout-engine/layout-box-iterator/layout-position-advance-helpers/base-advance-helper.js +0 -3
- package/lib/common/layout-engine/layout-position-creator.js +0 -15
- package/lib/common/layout-engine/selection/selection-formatter.js +6 -8
- package/lib/common/layout-engine/visualizers/base-visualizer.js +1 -8
- package/lib/common/layout-engine/visualizers/box-visualizer-manager.js +0 -6
- package/lib/common/layout-engine/visualizers/full-table-selector-visualizer.js +2 -2
- package/lib/common/layout-engine/visualizers/resize-box-visualizer.js +2 -3
- package/lib/common/layout-formatter/box/box-iterator.js +0 -5
- package/lib/common/layout-formatter/box/box-wrap.js +1 -10
- package/lib/common/layout-formatter/box/box-wraps-holder.js +3 -12
- package/lib/common/layout-formatter/box/generator/box-infos-generator.js +3 -17
- package/lib/common/layout-formatter/box/generator/one-dimension-itertors.js +0 -3
- package/lib/common/layout-formatter/box/generator/recursive-objects-iterators.js +0 -4
- package/lib/common/layout-formatter/changes/changes/column-change.js +0 -3
- package/lib/common/layout-formatter/changes/changes/layout-change-base.js +0 -5
- package/lib/common/layout-formatter/changes/changes/page-area-change.js +0 -1
- package/lib/common/layout-formatter/changes/changes/page-change.js +0 -3
- package/lib/common/layout-formatter/changes/changes/selection/layout-area-selection-change.js +0 -1
- package/lib/common/layout-formatter/changes/changes/selection/layout-page-selection-change.js +0 -1
- package/lib/common/layout-formatter/changes/engine/changes-manager.js +0 -1
- package/lib/common/layout-formatter/changes/engine/changes-merger.js +0 -5
- package/lib/common/layout-formatter/changes/engine/table-cells-comparer.js +3 -1
- package/lib/common/layout-formatter/floating/anchored-objects-manager.js +0 -10
- package/lib/common/layout-formatter/floating/layout-row-bounds-manager.js +2 -7
- package/lib/common/layout-formatter/floating/page-anchored-object-holder.js +0 -2
- package/lib/common/layout-formatter/floating/position-calculators/base-calculator.js +0 -5
- package/lib/common/layout-formatter/floating/position-calculators/horizontal.js +2 -2
- package/lib/common/layout-formatter/floating/render-level-calculator.js +18 -15
- package/lib/common/layout-formatter/formatter/base-formatter.js +2 -11
- package/lib/common/layout-formatter/formatter/main-formatter.js +2 -2
- package/lib/common/layout-formatter/formatter/model-changes-listener.js +0 -1
- package/lib/common/layout-formatter/formatter/other-page-area-formatter.js +0 -1
- package/lib/common/layout-formatter/formatter/utils/bounds-calculator.js +5 -26
- package/lib/common/layout-formatter/formatter/utils/floating-restart-info-holder.js +3 -4
- package/lib/common/layout-formatter/formatter/utils/last-row-info.js +3 -5
- package/lib/common/layout-formatter/formatter/utils/layout-dependent-cache.js +0 -2
- package/lib/common/layout-formatter/formatter/utils/number-utils.js +1 -1
- package/lib/common/layout-formatter/formatter/utils/remove-redundant-helper.js +0 -1
- package/lib/common/layout-formatter/formatter/utils/restart-preparer.js +0 -1
- package/lib/common/layout-formatter/invalidator/header-footer-invalidator-helper.js +0 -7
- package/lib/common/layout-formatter/invalidator/layout-invalidator.js +0 -1
- package/lib/common/layout-formatter/invalidator/position-savers.js +0 -6
- package/lib/common/layout-formatter/invalidator/remove-content-helper.js +0 -11
- package/lib/common/layout-formatter/managers/formatter-manager.js +4 -27
- package/lib/common/layout-formatter/managers/restart-manager.js +0 -2
- package/lib/common/layout-formatter/row/formatter.js +1 -15
- package/lib/common/layout-formatter/row/result.js +0 -7
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +0 -12
- package/lib/common/layout-formatter/row/size-engine/row-height-calculator.js +2 -6
- package/lib/common/layout-formatter/row/size-engine/row-height-state.js +0 -7
- package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.js +0 -7
- package/lib/common/layout-formatter/row/states.js +0 -1
- package/lib/common/layout-formatter/row/tab-info.js +0 -6
- package/lib/common/layout-formatter/row/utils/line-spacing-calculator.js +0 -3
- package/lib/common/layout-formatter/row/utils/row-spacing-before-applier.js +0 -9
- package/lib/common/layout-formatter/row/word-holder.js +0 -2
- package/lib/common/layout-formatter/table/borders/border-helper.js +0 -10
- package/lib/common/layout-formatter/table/borders/horizontal-line-borders-info.js +2 -4
- package/lib/common/layout-formatter/table/borders/layout-table-border.js +0 -5
- package/lib/common/layout-formatter/table/borders/layout-table-horizontal-border.js +0 -3
- package/lib/common/layout-formatter/table/formatter.d.ts +1 -1
- package/lib/common/layout-formatter/table/formatter.js +11 -12
- package/lib/common/layout-formatter/table/grid-engine/calculators/column-interval.js +0 -6
- package/lib/common/layout-formatter/table/grid-engine/calculators/column-width-engine/column-interval.js +0 -3
- package/lib/common/layout-formatter/table/grid-engine/calculators/column-width-engine/iterator.js +0 -3
- package/lib/common/layout-formatter/table/grid-engine/calculators/grid-calculator.js +3 -15
- package/lib/common/layout-formatter/table/grid-engine/calculators/table-properties-cache.js +0 -12
- package/lib/common/layout-formatter/table/grid-engine/calculators/table-width-calculators/table-cell-width-calculator.js +0 -6
- package/lib/common/layout-formatter/table/grid-engine/calculators/table-width-calculators/table-width-calculator.js +1 -7
- package/lib/common/layout-formatter/table/grid-engine/cell-grid-info-manager.js +0 -2
- package/lib/common/layout-formatter/table/grid-engine/columns.js +0 -3
- package/lib/common/layout-formatter/table/grid-engine/grid.js +0 -4
- package/lib/common/layout-formatter/table/horizontal-cursor-borders-helper.js +1 -1
- package/lib/common/layout-formatter/table/info/cell-info.js +2 -16
- package/lib/common/layout-formatter/table/info/cell-order-helper.js +0 -1
- package/lib/common/layout-formatter/table/info/row-info.js +1 -9
- package/lib/common/layout-formatter/table/info/table-info.js +6 -22
- package/lib/common/layout-formatter/table/other.js +4 -7
- package/lib/common/layout-formatter/table/utils/table-anchored-objects-holder.js +3 -1
- package/lib/common/loading-panel/manager.js +0 -2
- package/lib/common/loading-panel/panel.js +3 -4
- package/lib/common/measurer/measure-info.js +0 -5
- package/lib/common/measurer/measurer.js +1 -6
- package/lib/common/model/bookmarks.js +2 -7
- package/lib/common/model/borders/border-base.js +1 -4
- package/lib/common/model/borders/border-info.js +8 -6
- package/lib/common/model/borders/table-border-base.d.ts +2 -0
- package/lib/common/model/borders/table-border-base.js +8 -6
- package/lib/common/model/borders/table-borders.d.ts +0 -5
- package/lib/common/model/borders/table-borders.js +0 -18
- package/lib/common/model/borders/table-cell-borders.d.ts +2 -1
- package/lib/common/model/borders/table-cell-borders.js +11 -5
- package/lib/common/model/caches/caches.js +0 -15
- package/lib/common/model/caches/control-fonts.js +4 -2
- package/lib/common/model/caches/hash-based-cache.js +0 -2
- package/lib/common/model/caches/hashed-caches/character-properties-cache.js +0 -1
- package/lib/common/model/caches/hashed-caches/color-model-info-cache.js +1 -1
- package/lib/common/model/caches/hashed-caches/drawing-color-model-info-cache.js +1 -1
- package/lib/common/model/caches/hashed-caches/font-info-cache.js +3 -5
- package/lib/common/model/caches/hashed-caches/scene3d-properties-info-cache.js +1 -1
- package/lib/common/model/caches/hashed-caches/scene3d-rotation-info-cache.js +1 -1
- package/lib/common/model/caches/images.js +5 -16
- package/lib/common/model/changes/change-base.js +0 -4
- package/lib/common/model/changes/model/create-style-link.js +1 -2
- package/lib/common/model/changes/model/default-tab-width.js +1 -2
- package/lib/common/model/changes/model/delete-style-link.js +1 -2
- package/lib/common/model/changes/model/different-odd-and-even-pages.js +1 -2
- package/lib/common/model/changes/model/document-protection-changed.js +1 -2
- package/lib/common/model/changes/model/header-created.js +1 -4
- package/lib/common/model/changes/model/header-footer-index-changed.js +1 -5
- package/lib/common/model/changes/model/list/abstract-numbering-list-added.js +1 -2
- package/lib/common/model/changes/model/list/abstract-numbering-list-deleted.js +1 -2
- package/lib/common/model/changes/model/list/i-override-list-level-changed.js +1 -3
- package/lib/common/model/changes/model/list/list-level-character-property-changed.js +1 -3
- package/lib/common/model/changes/model/list/list-level-paragraph-property-changed.js +1 -3
- package/lib/common/model/changes/model/list/list-level-property-changed.js +1 -3
- package/lib/common/model/changes/model/list/numbering-list-added.js +1 -2
- package/lib/common/model/changes/model/list/numbering-list-deleted.js +1 -2
- package/lib/common/model/changes/model/load-font.js +1 -2
- package/lib/common/model/changes/model/page-color.js +1 -2
- package/lib/common/model/changes/model/section-formatting-changed.js +1 -5
- package/lib/common/model/changes/model/section-merged.js +1 -4
- package/lib/common/model/changes/model/zoom-level.js +1 -3
- package/lib/common/model/changes/sub-document/anchor/anchor-info-property-changed.js +1 -5
- package/lib/common/model/changes/sub-document/anchor/anchored-text-box-properties-changed.js +1 -5
- package/lib/common/model/changes/sub-document/anchor/anchored-text-box-size-changed.js +1 -5
- package/lib/common/model/changes/sub-document/anchor/shape-changed.js +1 -4
- package/lib/common/model/changes/sub-document/anchor/shape-property-changed.js +1 -5
- package/lib/common/model/changes/sub-document/bookmark/created.js +1 -4
- package/lib/common/model/changes/sub-document/bookmark/deleted.js +1 -4
- package/lib/common/model/changes/sub-document/field/deleted.js +1 -3
- package/lib/common/model/changes/sub-document/field/fields-show-code-changed.js +1 -3
- package/lib/common/model/changes/sub-document/field/hyperlink-info-changed.js +1 -5
- package/lib/common/model/changes/sub-document/field/inserted.js +1 -5
- package/lib/common/model/changes/sub-document/list/paragraph-numbering-list-changed.js +1 -4
- package/lib/common/model/changes/sub-document/picture/anchored-picture-size-changed.js +1 -5
- package/lib/common/model/changes/sub-document/picture/anchored-pictureinserted.js +1 -6
- package/lib/common/model/changes/sub-document/picture/inline-object-run-property-changed.js +1 -5
- package/lib/common/model/changes/sub-document/picture/inline-picture-inserted.js +1 -3
- package/lib/common/model/changes/sub-document/picture/inline-pictures-updated.js +1 -3
- package/lib/common/model/changes/sub-document/picture/load-pictures-info.js +1 -3
- package/lib/common/model/changes/sub-document/properties/character-formatting-changed.js +1 -4
- package/lib/common/model/changes/sub-document/properties/character-properties-changed.js +1 -3
- package/lib/common/model/changes/sub-document/properties/merged-props-reset.js +1 -3
- package/lib/common/model/changes/sub-document/properties/paragraph-formatting-changed.js +1 -4
- package/lib/common/model/changes/sub-document/properties/paragraph-properties-changed.js +1 -8
- package/lib/common/model/changes/sub-document/range-permissions-changed.js +4 -5
- package/lib/common/model/changes/sub-document/style/character-style-applied.js +1 -3
- package/lib/common/model/changes/sub-document/style/paragraph-style-applied.js +1 -3
- package/lib/common/model/changes/sub-document/style/table-style-changed.js +1 -4
- package/lib/common/model/changes/sub-document/tab/deleted.js +1 -3
- package/lib/common/model/changes/sub-document/tab/inserted.js +1 -3
- package/lib/common/model/changes/sub-document/table/cell-inserted.js +1 -5
- package/lib/common/model/changes/sub-document/table/cell-merged-horizontally.js +1 -6
- package/lib/common/model/changes/sub-document/table/cell-property-changed.js +1 -4
- package/lib/common/model/changes/sub-document/table/cell-removed.js +1 -5
- package/lib/common/model/changes/sub-document/table/cell-splitted-horizontally.js +1 -6
- package/lib/common/model/changes/sub-document/table/created.js +1 -3
- package/lib/common/model/changes/sub-document/table/property-changed.js +1 -4
- package/lib/common/model/changes/sub-document/table/removed.js +1 -6
- package/lib/common/model/changes/sub-document/table/row-inserted.js +1 -4
- package/lib/common/model/changes/sub-document/table/row-property-changed.js +1 -4
- package/lib/common/model/changes/sub-document/table/row-removed.js +1 -4
- package/lib/common/model/changes/sub-document/table/start-position-shifted.js +1 -5
- package/lib/common/model/changes/sub-document/text/anchor-object-removed.js +1 -4
- package/lib/common/model/changes/sub-document/text/anchored-text-box-inserted.js +1 -5
- package/lib/common/model/changes/sub-document/text/interval-removed.js +1 -4
- package/lib/common/model/changes/sub-document/text/paragraph-inserted.js +1 -2
- package/lib/common/model/changes/sub-document/text/paragraph-merged.js +1 -5
- package/lib/common/model/changes/sub-document/text/section-inserted.js +1 -3
- package/lib/common/model/changes/sub-document/text/simple-run-inserted.js +1 -8
- package/lib/common/model/changes/sub-document/text/text-buffer-changed.js +1 -3
- package/lib/common/model/character/character-properties-helper.js +0 -10
- package/lib/common/model/character/character-properties.js +29 -25
- package/lib/common/model/character/character-property-descriptor.js +104 -64
- package/lib/common/model/character/character-style.js +3 -5
- package/lib/common/model/character/composite-font-info.js +0 -9
- package/lib/common/model/character/history-runs.js +0 -18
- package/lib/common/model/character/lang-info.js +0 -3
- package/lib/common/model/character/layout-character-properties-color-info.js +0 -4
- package/lib/common/model/character/run-iterator.js +11 -11
- package/lib/common/model/chunk.js +2 -4
- package/lib/common/model/color/color-hsl.js +3 -6
- package/lib/common/model/color/color-model-info.js +8 -12
- package/lib/common/model/color/color-provider.js +2 -5
- package/lib/common/model/color/color.js +7 -7
- package/lib/common/model/color/d-xsystem-colors.js +30 -30
- package/lib/common/model/color/dx-color.js +3 -3
- package/lib/common/model/color/enums.js +13 -13
- package/lib/common/model/color/palette.js +20 -24
- package/lib/common/model/color/sc-rgbcolor.js +1 -4
- package/lib/common/model/comments/comment.js +1 -7
- package/lib/common/model/compat-settings.js +0 -3
- package/lib/common/model/creator/cache.js +0 -3
- package/lib/common/model/creator/creator.js +3 -2
- package/lib/common/model/creator/font-corrector.js +0 -3
- package/lib/common/model/creator/options.js +9 -7
- package/lib/common/model/document-model.js +31 -54
- package/lib/common/model/drawing/backdrop-plane.js +0 -3
- package/lib/common/model/drawing/container-effect.js +0 -4
- package/lib/common/model/drawing/drawing-color-model-info.js +3 -11
- package/lib/common/model/drawing/drawing-color.js +0 -2
- package/lib/common/model/drawing/drawing-effect-collection.js +0 -1
- package/lib/common/model/drawing/drawing-effect-style.js +0 -3
- package/lib/common/model/drawing/drawing-fill.js +3 -4
- package/lib/common/model/drawing/drawing-text-font.js +6 -8
- package/lib/common/model/drawing/drawing-value-constants.js +20 -20
- package/lib/common/model/drawing/outline.js +0 -1
- package/lib/common/model/drawing/scene3d-properties-info.js +10 -10
- package/lib/common/model/drawing/scene3d-properties.js +0 -4
- package/lib/common/model/drawing/scene3d-rotation-info.js +1 -5
- package/lib/common/model/drawing/scene3d-vector.js +0 -3
- package/lib/common/model/drawing/shape-bevel3d-properties.js +2 -5
- package/lib/common/model/drawing/shape3d-properties.js +4 -12
- package/lib/common/model/drawing/transform/color-transform-collection.js +0 -1
- package/lib/common/model/drawing/transform/color-transform-value-base.js +0 -1
- package/lib/common/model/fields/check-box-properties.js +4 -6
- package/lib/common/model/fields/field-request-manager.js +4 -7
- package/lib/common/model/fields/field.js +0 -27
- package/lib/common/model/fields/form-field-properties.js +4 -11
- package/lib/common/model/fields/parsers/field-code-parser-doc-variable.js +0 -1
- package/lib/common/model/fields/parsers/field-code-parser-if.js +1 -9
- package/lib/common/model/fields/parsers/field-code-parser-toc.js +10 -23
- package/lib/common/model/fields/parsers/field-code-parser.js +2 -18
- package/lib/common/model/fields/tree-creator.js +5 -19
- package/lib/common/model/find-replace-helper.js +0 -24
- package/lib/common/model/floating-objects/anchor-info.js +21 -19
- package/lib/common/model/floating-objects/sizes.js +2 -10
- package/lib/common/model/floating-objects/text-box-properties.js +8 -8
- package/lib/common/model/fonts/control-font.js +4 -8
- package/lib/common/model/fonts/font-chooser.js +2 -3
- package/lib/common/model/fonts/font-face-descriptors.js +11 -9
- package/lib/common/model/fonts/font-info.js +6 -16
- package/lib/common/model/fonts/google-fonts.js +1 -4
- package/lib/common/model/fonts/grabber.js +3 -7
- package/lib/common/model/fonts/loader.js +2 -7
- package/lib/common/model/fonts/measurer.js +1 -4
- package/lib/common/model/footnotes/footnote.js +0 -9
- package/lib/common/model/full-chunk-and-run-info.js +0 -7
- package/lib/common/model/history/base/history-item.js +2 -3
- package/lib/common/model/history/base/history.js +10 -11
- package/lib/common/model/history/base/interval-based-history-item.js +0 -1
- package/lib/common/model/history/base/position-based-history-item.js +0 -1
- package/lib/common/model/history/items/apply-field-hyperlink-style-history-item.js +2 -2
- package/lib/common/model/history/items/apply-style-history-items.js +0 -9
- package/lib/common/model/history/items/bookmark-history-items.js +0 -2
- package/lib/common/model/history/items/change-field-hyperlink-info-history-item.js +0 -4
- package/lib/common/model/history/items/change-rectangular-object-history-item.js +0 -4
- package/lib/common/model/history/items/character-properties-history-items.js +0 -9
- package/lib/common/model/history/items/create-style-link-history-item.js +0 -2
- package/lib/common/model/history/items/document-properties-history-items.js +0 -6
- package/lib/common/model/history/items/document-protection-history-item.js +0 -2
- package/lib/common/model/history/items/field-insert-history-item.js +0 -6
- package/lib/common/model/history/items/floating-objects/anchor-info-property-history-item.js +0 -3
- package/lib/common/model/history/items/floating-objects/change-anchored-picture-size-history-item.js +0 -2
- package/lib/common/model/history/items/floating-objects/change-anchored-text-box-size-history-item.js +0 -2
- package/lib/common/model/history/items/floating-objects/change-image-property-history-item.js +0 -3
- package/lib/common/model/history/items/floating-objects/change-text-box-properties-history-item.js +0 -2
- package/lib/common/model/history/items/floating-objects/insert-anchored-picture-history-item.js +0 -5
- package/lib/common/model/history/items/floating-objects/shape-property-history-item.js +0 -5
- package/lib/common/model/history/items/header-footer-history-items.js +0 -5
- package/lib/common/model/history/items/insert-inline-picture-history-item.js +0 -3
- package/lib/common/model/history/items/insert-paragraph-history-item.js +0 -1
- package/lib/common/model/history/items/insert-section-history-item.js +0 -5
- package/lib/common/model/history/items/insert-sub-document-history-item.js +1 -7
- package/lib/common/model/history/items/insert-text-history-item.js +0 -1
- package/lib/common/model/history/items/list-level-character-properties-history-items.js +0 -6
- package/lib/common/model/history/items/list-level-paragraph-properties-history-items.js +0 -6
- package/lib/common/model/history/items/list-level-properties-history-items.js +0 -5
- package/lib/common/model/history/items/non-visual-drawing-object-info.js +0 -3
- package/lib/common/model/history/items/numbering-list-history-items.js +0 -21
- package/lib/common/model/history/items/paragraph-properties-history-items.js +0 -19
- package/lib/common/model/history/items/range-permission-history-item.js +0 -2
- package/lib/common/model/history/items/remove-hyperlink-history-item.js +0 -11
- package/lib/common/model/history/items/remove-interval-history-item.js +0 -2
- package/lib/common/model/history/items/section-properties-history-items.js +0 -3
- package/lib/common/model/history/items/switch-text-box-sub-documents-state-history-item.js +0 -4
- package/lib/common/model/history/items/tables/change-table-cell-history-items.js +0 -7
- package/lib/common/model/history/items/tables/create-table-history-item.js +0 -5
- package/lib/common/model/history/items/tables/insert-table-row-history-item.js +0 -3
- package/lib/common/model/history/items/tables/remove-table-cell-history-item.js +0 -5
- package/lib/common/model/history/items/tables/remove-table-history-item.js +0 -2
- package/lib/common/model/history/items/tables/remove-table-row-history-item.js +0 -3
- package/lib/common/model/history/items/tables/split-table-cell-history-item.js +0 -6
- package/lib/common/model/history/items/tables/table-cell-properties-history-items.js +0 -10
- package/lib/common/model/history/items/tables/table-properties-history-items.js +0 -7
- package/lib/common/model/history/items/tables/table-row-properties-history-items.js +0 -9
- package/lib/common/model/history/items/text-run-change-case-history-item.js +0 -4
- package/lib/common/model/history/selection/scroll-history-item.js +0 -4
- package/lib/common/model/history/selection/selection-history-item.js +0 -4
- package/lib/common/model/history/states/history-item-state-object.js +0 -30
- package/lib/common/model/history/states/history-item-state.js +1 -2
- package/lib/common/model/json/command-request.js +3 -12
- package/lib/common/model/json/enums/table/json-table-structures-enums.d.ts +4 -2
- package/lib/common/model/json/enums/table/json-table-structures-enums.js +4 -2
- package/lib/common/model/json/importers/json-border-info-converter.js +2 -0
- package/lib/common/model/json/importers/sub-document/json-sub-document-importer.js +2 -2
- package/lib/common/model/json/importers/sub-document/run-importers.js +0 -6
- package/lib/common/model/json/importers/table/json-table-cell-borders-converter.js +4 -0
- package/lib/common/model/json/web-caches-exporter.js +0 -3
- package/lib/common/model/manipulators/base-manipulator.js +0 -1
- package/lib/common/model/manipulators/character-properties-manipulator.js +0 -24
- package/lib/common/model/manipulators/document/sub-document-inserter.js +15 -31
- package/lib/common/model/manipulators/fields-manipulator.js +6 -9
- package/lib/common/model/manipulators/floating-objects/anchor-info-manipulator.js +0 -20
- package/lib/common/model/manipulators/floating-objects/anchor-info-property-manipulator.js +0 -3
- package/lib/common/model/manipulators/floating-objects/floating-objects-manipulator.js +0 -7
- package/lib/common/model/manipulators/floating-objects/shape-manipulator.js +0 -7
- package/lib/common/model/manipulators/floating-objects/z-order-manipulator.js +1 -3
- package/lib/common/model/manipulators/font-manipulator.js +4 -4
- package/lib/common/model/manipulators/inline-object-manipulator.js +0 -3
- package/lib/common/model/manipulators/model-manipulator.js +2 -30
- package/lib/common/model/manipulators/numbering-lists/list-level-character-properties-manipulator.js +0 -19
- package/lib/common/model/manipulators/numbering-lists/list-level-paragraph-properties-manipulator.js +0 -23
- package/lib/common/model/manipulators/numbering-lists/list-level-properties-manipulator.js +0 -15
- package/lib/common/model/manipulators/numbering-lists/numbering-list-manipulator.js +0 -3
- package/lib/common/model/manipulators/paragraph-manipulator/insert-paragraph-manipulator-params.js +0 -3
- package/lib/common/model/manipulators/paragraph-properties-manipulator.js +0 -26
- package/lib/common/model/manipulators/picture-manipulator/insert-picture-manipulator-params.js +0 -6
- package/lib/common/model/manipulators/picture-manipulator/loader/image-loading-options.js +1 -3
- package/lib/common/model/manipulators/picture-manipulator/loader/picture-loader.js +2 -13
- package/lib/common/model/manipulators/picture-manipulator/loader/updated-image-info.js +0 -3
- package/lib/common/model/manipulators/picture-manipulator/non-visual-drawing-object-info.js +0 -4
- package/lib/common/model/manipulators/picture-manipulator/picture-manipulator.js +0 -9
- package/lib/common/model/manipulators/range/create-range-copy-operation.js +2 -20
- package/lib/common/model/manipulators/range/remove-interval-operation.js +6 -22
- package/lib/common/model/manipulators/range/restore-removed-interval-operation.js +1 -3
- package/lib/common/model/manipulators/runs-base-manipulator.js +2 -2
- package/lib/common/model/manipulators/section-properties-manipulator.js +0 -18
- package/lib/common/model/manipulators/tables/insert-table-cell-operation.js +0 -2
- package/lib/common/model/manipulators/tables/insert-table-row-operation.js +0 -2
- package/lib/common/model/manipulators/tables/merge-table-cells-operation.js +5 -4
- package/lib/common/model/manipulators/tables/table-cell-properties-manipulator.js +0 -29
- package/lib/common/model/manipulators/tables/table-normalizator.js +0 -9
- package/lib/common/model/manipulators/tables/table-properties-manipulator.js +0 -27
- package/lib/common/model/manipulators/tables/table-row-properties-manipulator.js +0 -19
- package/lib/common/model/manipulators/tables/tables-manipulator.js +0 -3
- package/lib/common/model/manipulators/text-box-manipulator.js +0 -6
- package/lib/common/model/manipulators/text-case-manipulator.js +0 -7
- package/lib/common/model/manipulators/text-manipulator/chunk-size-corrector.js +5 -9
- package/lib/common/model/manipulators/text-manipulator/insert-text-manipulator-params.js +0 -2
- package/lib/common/model/manipulators/text-manipulator/text-manipulator.js +0 -5
- package/lib/common/model/manipulators/utils/manipulator-params-base.js +0 -4
- package/lib/common/model/model-checks/check-all.js +2 -3
- package/lib/common/model/model-checks/comparer.js +4 -8
- package/lib/common/model/model-checks/position.js +0 -2
- package/lib/common/model/model-iterator.js +0 -4
- package/lib/common/model/number-converters/alphabet-based-number-converter.js +0 -1
- package/lib/common/model/number-converters/decimal-enclosed-parentheses-number-converter.js +0 -1
- package/lib/common/model/number-converters/decimal-zero-number-converter.js +0 -1
- package/lib/common/model/number-converters/descriptive-number-converter.js +0 -3
- package/lib/common/model/number-converters/number-in-dash-number-converter.js +0 -1
- package/lib/common/model/number-converters/numerics-provider.js +0 -12
- package/lib/common/model/number-converters/ordinal-based-number-converter.js +1 -5
- package/lib/common/model/number-converters/roman-number-converter.js +0 -2
- package/lib/common/model/numbering-lists/list-level-properties.js +16 -15
- package/lib/common/model/numbering-lists/list-level.js +6 -12
- package/lib/common/model/numbering-lists/numbering-helper.js +2 -2
- package/lib/common/model/numbering-lists/numbering-list-counters-calculator.js +3 -4
- package/lib/common/model/numbering-lists/numbering-list-id-provider.js +1 -3
- package/lib/common/model/numbering-lists/numbering-list-index-calculator.js +0 -3
- package/lib/common/model/numbering-lists/numbering-list-style.js +0 -1
- package/lib/common/model/numbering-lists/numbering-list.js +6 -8
- package/lib/common/model/numbering-lists/piece-table-numbering-list-counters-manager.js +2 -3
- package/lib/common/model/options/auto-correct.js +0 -8
- package/lib/common/model/options/bookmarks.js +0 -3
- package/lib/common/model/options/control.js +39 -37
- package/lib/common/model/options/document-protection.js +3 -9
- package/lib/common/model/options/fields.js +3 -10
- package/lib/common/model/options/fonts.js +7 -9
- package/lib/common/model/options/mail-merge.js +0 -5
- package/lib/common/model/options/pdf.js +4 -5
- package/lib/common/model/options/printing.js +4 -2
- package/lib/common/model/options/protection.js +2 -9
- package/lib/common/model/options/rich-options.js +11 -13
- package/lib/common/model/options/search.js +0 -1
- package/lib/common/model/options/spell-checker.js +6 -9
- package/lib/common/model/paragraph/paragraph-properties-helper.js +0 -9
- package/lib/common/model/paragraph/paragraph-properties.js +62 -60
- package/lib/common/model/paragraph/paragraph-property-descriptors.js +108 -54
- package/lib/common/model/paragraph/paragraph-style.js +8 -18
- package/lib/common/model/paragraph/paragraph.js +2 -11
- package/lib/common/model/position/linked-interval.js +0 -2
- package/lib/common/model/position/position-manager.js +4 -3
- package/lib/common/model/position/position.js +0 -2
- package/lib/common/model/properties-merger/paragraph-properties-merger.js +1 -1
- package/lib/common/model/properties-merger/properties-merger-base.js +0 -2
- package/lib/common/model/protection/md5.js +8 -7
- package/lib/common/model/protection/password-hash-code-calculator.js +4 -4
- package/lib/common/model/protection/ripemd160.js +32 -31
- package/lib/common/model/protection/sha1.js +0 -1
- package/lib/common/model/protection/sha256.js +9 -8
- package/lib/common/model/protection/sha512.js +0 -3
- package/lib/common/model/range-permissions.js +6 -11
- package/lib/common/model/rich-utils.js +9 -9
- package/lib/common/model/runs/anchored-picture-run.js +0 -1
- package/lib/common/model/runs/anchored-text-box-run.js +0 -3
- package/lib/common/model/runs/inline-picture-run.js +1 -1
- package/lib/common/model/runs/inline-text-box-run.js +0 -1
- package/lib/common/model/runs/run-base.js +1 -12
- package/lib/common/model/runs/text-run.js +0 -1
- package/lib/common/model/section/header-footer.js +2 -3
- package/lib/common/model/section/line-numbering-properties.js +4 -8
- package/lib/common/model/section/paper-kind.js +2 -2
- package/lib/common/model/section/section-column-properties.js +2 -2
- package/lib/common/model/section/section-properties.js +19 -17
- package/lib/common/model/section/section-property-descriptor.js +82 -50
- package/lib/common/model/section/section.js +0 -6
- package/lib/common/model/sentence-model-builder.js +12 -19
- package/lib/common/model/shadings/shading-info.js +0 -4
- package/lib/common/model/shadings/shading-pattern-helper.js +1 -5
- package/lib/common/model/shapes/shape.js +3 -3
- package/lib/common/model/simple-sentence-model-builder.js +7 -10
- package/lib/common/model/special-characters.js +53 -51
- package/lib/common/model/style-base.js +0 -10
- package/lib/common/model/styles-manager.js +20 -21
- package/lib/common/model/sub-document-collection.js +4 -2
- package/lib/common/model/sub-document-infos.js +42 -26
- package/lib/common/model/sub-document.js +12 -24
- package/lib/common/model/tables/grid/table-cell-grid-info.js +0 -3
- package/lib/common/model/tables/main-structures/table-cell.js +7 -10
- package/lib/common/model/tables/main-structures/table-row.js +8 -10
- package/lib/common/model/tables/main-structures/table.js +4 -14
- package/lib/common/model/tables/properties/table-cell-descriptors.d.ts +10 -0
- package/lib/common/model/tables/properties/table-cell-descriptors.js +22 -0
- package/lib/common/model/tables/properties/table-cell-properties.d.ts +5 -1
- package/lib/common/model/tables/properties/table-cell-properties.js +34 -29
- package/lib/common/model/tables/properties/table-properties.js +45 -44
- package/lib/common/model/tables/properties/table-row-properties.js +9 -8
- package/lib/common/model/tables/properties/table-row-property-descriptor.js +8 -8
- package/lib/common/model/tables/properties-mergers/table-cell-properties-merger.js +2 -8
- package/lib/common/model/tables/properties-mergers/table-properties-merger-base.js +0 -4
- package/lib/common/model/tables/properties-mergers/table-properties-merger.js +2 -3
- package/lib/common/model/tables/properties-mergers/table-row-properties-merger.js +2 -4
- package/lib/common/model/tables/secondary-structures/table-base-structures.js +0 -4
- package/lib/common/model/tables/secondary-structures/table-border-calculator.js +3 -7
- package/lib/common/model/tables/secondary-structures/table-units.js +2 -4
- package/lib/common/model/tables/styles/table-cell-style.js +1 -3
- package/lib/common/model/tables/styles/table-conditional-style.js +0 -6
- package/lib/common/model/tables/styles/table-style.d.ts +1 -0
- package/lib/common/model/tables/styles/table-style.js +5 -5
- package/lib/common/model/themes/culture-info.js +0 -1
- package/lib/common/model/themes/office-theme-base.js +1 -4
- package/lib/common/model/themes/theme-drawing-color-collection.js +2 -4
- package/lib/common/model/themes/theme-font-scheme-part.js +4 -7
- package/lib/common/model/themes/theme-font-scheme.js +1 -3
- package/lib/common/model/themes/theme-format-scheme.js +7 -5
- package/lib/common/model/web-settings.js +7 -5
- package/lib/common/model-manager.js +0 -4
- package/lib/common/mouse-handler/base/manipulator-handler-base.js +1 -5
- package/lib/common/mouse-handler/base/manipulator-handler-state-base.js +0 -1
- package/lib/common/mouse-handler/drag-floating-objects-helper.js +0 -9
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-auto-scroll-state.js +2 -5
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-begin-drag-helper-state.js +0 -2
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-drag-column-or-row-state.js +0 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-drag-content-states.js +2 -2
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-drag-floating-object-state.js +0 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-paragraph-select-state.js +1 -4
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-resize-box-state.js +0 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-rotate-box-state.js +0 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-text-selection-states.js +4 -13
- package/lib/common/mouse-handler/mouse-handler/mouse-handler.js +2 -2
- package/lib/common/mouse-handler/resize-box-helper.js +0 -15
- package/lib/common/mouse-handler/resize-table-helper.js +3 -19
- package/lib/common/mouse-handler/rotate-box-helper.js +0 -3
- package/lib/common/mouse-handler/touch-handler/touch-handler-default-state.js +1 -1
- package/lib/common/mouse-handler/touch-handler/touch-handler-drag-floating-object-state.js +0 -1
- package/lib/common/mouse-handler/touch-handler/touch-handler-resize-box-state.js +0 -1
- package/lib/common/mouse-handler/touch-handler/touch-handler-rotate-box-state.js +0 -1
- package/lib/common/mouse-handler/touch-handler/touch-handler-selection-states.js +1 -2
- package/lib/common/mouse-handler/touch-handler/touch-handler-state-base.js +4 -4
- package/lib/common/mouse-handler/touch-handler/touch-handler-waiting-states.js +0 -2
- package/lib/common/popup-menu-manager.js +1 -5
- package/lib/common/rich-edit-core.js +9 -49
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/array.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/base-formatter.js +7 -14
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/element-formatter.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/elements.js +13 -9
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/json.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/anchor-objects-position-info.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/document-layout.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-box.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-column.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-page-area.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-page.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-position.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/layout-row.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/page-anchored-object-holder.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/layout/paragraph-frame.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/border-info.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/character-properties.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/chunk.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/field.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/fixed-interval.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/geometry/point.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/geometry/rectangle.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/paragraph.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/runs.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/sub-document.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-cell-properties.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-cell.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-height-unit.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-position.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-properties.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-row-properties.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-row.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-width-unit.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table.js +1 -1
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/short-string.js +2 -4
- package/lib/common/rich-utils/debug/debug-table.js +2 -11
- package/lib/common/rich-utils/debug/logger/base-logger/log-source-params.js +0 -3
- package/lib/common/rich-utils/debug/logger/base-logger/logger.js +9 -9
- package/lib/common/rich-utils/debug/logger/base-logger/model-params-holder.js +0 -1
- package/lib/common/rich-utils/debug/logger/layout-logger/layout-params-holder.js +1 -2
- package/lib/common/rich-utils/debug/logger/layout-logger/visualizers/debug-visualizer-manager.js +2 -3
- package/lib/common/rich-utils/debug/logger/layout-logger/visualizers/page-visible-info-helper.js +1 -1
- package/lib/common/rich-utils/debug/runtime-template-model-creator.js +6 -20
- package/lib/common/rich-utils/debug/runtime-test-helper.js +2 -8
- package/lib/common/rich-utils/html-converter.d.ts +9 -2
- package/lib/common/rich-utils/html-converter.js +10 -8
- package/lib/common/rich-utils/html-utils.d.ts +5 -2
- package/lib/common/rich-utils/html-utils.js +42 -9
- package/lib/common/rich-utils/inner-client-properties.js +0 -3
- package/lib/common/rich-utils/properties-bundle.js +0 -6
- package/lib/common/scroll/canvas-states.js +0 -3
- package/lib/common/scroll/model-scroll-manager.js +3 -4
- package/lib/common/scroll/model-states.js +0 -9
- package/lib/common/scroll/scroll-formatter.js +1 -4
- package/lib/common/selection/input-position-base.js +0 -16
- package/lib/common/selection/input-position-model-changes-listener.js +1 -3
- package/lib/common/selection/input-position.js +0 -4
- package/lib/common/selection/selected-cells-engine.js +3 -15
- package/lib/common/selection/selected-special-run-info.js +0 -5
- package/lib/common/selection/selection-base.js +6 -2
- package/lib/common/selection/selection-intervals-info.js +1 -5
- package/lib/common/selection/selection-model-changes-listener.js +0 -1
- package/lib/common/selection/selection-state.js +4 -7
- package/lib/common/selection/selection.js +11 -15
- package/lib/common/selection/set-selection-params.js +7 -6
- package/lib/common/spelling/intervals-collections.js +3 -2
- package/lib/common/spelling/intervals-manager.js +0 -6
- package/lib/common/spelling/intervals.js +0 -7
- package/lib/common/spelling/listeners.js +0 -2
- package/lib/common/spelling/spell-checker-selection-changes-listener.js +0 -4
- package/lib/common/spelling/spell-checker.js +0 -8
- package/lib/common/string-resources.js +0 -22
- package/lib/common/ui/quick-search-panel.js +8 -14
- package/lib/common/ui/ruler/controls/base.js +1 -7
- package/lib/common/ui/ruler/controls/column.js +0 -16
- package/lib/common/ui/ruler/controls/divisions.js +3 -12
- package/lib/common/ui/ruler/controls/indent/base.js +4 -4
- package/lib/common/ui/ruler/controls/indent/first-line.js +0 -2
- package/lib/common/ui/ruler/controls/indent/left.js +1 -5
- package/lib/common/ui/ruler/controls/indent/right.js +0 -1
- package/lib/common/ui/ruler/controls/margin/base.js +4 -5
- package/lib/common/ui/ruler/controls/margin/left.js +0 -1
- package/lib/common/ui/ruler/controls/owner.js +5 -9
- package/lib/common/ui/ruler/controls/ruler.js +4 -4
- package/lib/common/ui/ruler/controls/shadow.js +0 -1
- package/lib/common/ui/ruler/controls/tab/tab-info.js +0 -2
- package/lib/common/ui/ruler/controls/tab/tab-type.js +2 -4
- package/lib/common/ui/ruler/controls/tab/tab.js +8 -13
- package/lib/common/ui/ruler/controls/table.js +0 -11
- package/lib/common/ui/ruler/controls/vertical-line.js +4 -7
- package/lib/common/ui/ruler/controls/zoomable-value.js +0 -2
- package/lib/common/ui/ruler/events/mouse.js +6 -6
- package/lib/common/ui/ruler/events/scroll.js +5 -4
- package/lib/common/ui/ruler/manager.js +2 -20
- package/lib/common/ui/ruler/model-data.js +0 -4
- package/lib/common/ui/ruler/mouse-handler.js +3 -6
- package/lib/common/ui/ruler/ruler.js +6 -8
- package/lib/common/ui/ruler/settings.js +0 -36
- package/lib/common/ui/search-manager.js +1 -4
- package/lib/common/utils/direction-adaptor/x-direction-adaptor.js +0 -2
- package/lib/common/utils/direction-adaptor/y-direction-adaptor.js +0 -2
- package/lib/common/utils/event-dispatcher.js +3 -1
- package/lib/common/utils/information-creator.js +2 -2
- package/lib/common/utils/map-creator.js +0 -1
- package/lib/common/utils/mixed-size.d.ts +6 -0
- package/lib/common/utils/mixed-size.js +28 -6
- package/lib/common/utils/size-utils.js +0 -4
- package/lib/common/utils/sub-document-changes-storer.js +4 -2
- package/lib/common/utils/unicode-string.js +0 -2
- package/lib/common/utils/utils.js +1 -4
- package/lib/common/view-settings/views-settings.js +6 -12
- package/lib/common/word-bounds-engine/layout-word-bounds-group-separator.js +3 -5
- package/lib/common/word-bounds-engine/layout-word-bounds.js +1 -3
- package/lib/common/word-bounds-engine/word-bounds-iterators/layout/layout-word-bounds-iterator.js +2 -6
- package/package.json +3 -3
|
@@ -1,61 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
const initPosition = selection.forwardDirection ? selection.lastSelectedInterval.end : selection.lastSelectedInterval.start;
|
|
9
|
-
const layoutPosition = new LayoutPositionMainSubDocumentCreator(this.control.layout, this.selection.activeSubDocument, initPosition, DocumentLayoutDetailsLevel.Box)
|
|
10
|
-
.create(new LayoutPositionCreatorConflictFlags().setDefault(false), new LayoutPositionCreatorConflictFlags().setDefault(true));
|
|
11
|
-
if (!layoutPosition)
|
|
12
|
-
return -1;
|
|
13
|
-
const charOffset = initPosition - layoutPosition.getLogPosition(DocumentLayoutDetailsLevel.Box);
|
|
14
|
-
const x = layoutPosition.pageArea.x + layoutPosition.column.x + layoutPosition.row.x + layoutPosition.box.x + layoutPosition.box.getCharOffsetXInPixels(this.control.measurer, charOffset);
|
|
15
|
-
const y = layoutPosition.pageArea.y + layoutPosition.column.y + layoutPosition.row.y + layoutPosition.box.y;
|
|
16
|
-
const viewportHeight = Math.max(layoutPosition.row.height, this.control.viewManager.sizes.getVisibleAreaHeight(false));
|
|
17
|
-
let newY = y - viewportHeight;
|
|
1
|
+
import { GoToPageCommandBase } from './go-to-page-command-base';
|
|
2
|
+
import { MixedSize } from '../../../common/utils/mixed-size';
|
|
3
|
+
export class GoToPrevPageCommandBase extends GoToPageCommandBase {
|
|
4
|
+
goToPage(layoutPosition, x, y) {
|
|
5
|
+
const visibleAreaHeight = MixedSize.fromUI(this.control.viewManager.sizes.getVisibleAreaHeight(false)).useScale(this.scale);
|
|
6
|
+
const viewportHeight = MixedSize.fromLayout(Math.max(layoutPosition.row.height, visibleAreaHeight.LayoutSize)).useScale(this.scale);
|
|
7
|
+
const viewportTop = MixedSize.fromUI(this.control.viewManager.canvas.scrollTop).useScale(this.scale);
|
|
18
8
|
let page = layoutPosition.page;
|
|
19
|
-
const
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
if (!this.extendSelection())
|
|
26
|
-
htr.correctAsVisibleBox();
|
|
27
|
-
return htr.getPosition();
|
|
28
|
-
}
|
|
29
|
-
const siblingPageIndex = layoutPosition.pageIndex - 1;
|
|
30
|
-
page = this.control.layout.pages[siblingPageIndex];
|
|
31
|
-
} while (page);
|
|
32
|
-
return 0;
|
|
9
|
+
const newViewportTop = MixedSize.substract(viewportTop, viewportHeight);
|
|
10
|
+
let pageIndex = this.findPageIndexByOffsetY(newViewportTop.LayoutSize);
|
|
11
|
+
this.scrollToPosition(pageIndex, newViewportTop.LayoutSize);
|
|
12
|
+
const newY = MixedSize.substract(MixedSize.fromLayout(y).useScale(this.scale), viewportHeight);
|
|
13
|
+
const position = this.getPosition(page, MixedSize.fromLayout(x).useScale(this.scale), newY, newViewportTop, viewportHeight);
|
|
14
|
+
this.changeSelection(position);
|
|
33
15
|
}
|
|
34
|
-
|
|
35
|
-
|
|
16
|
+
getPosition(currentPage, x, y, viewportTop, viewportHeight) {
|
|
17
|
+
const currentPageY = this.control.viewManager.sizes.getPageOffsetY(currentPage);
|
|
18
|
+
const viewportBottom = MixedSize.add(viewportTop, viewportHeight);
|
|
19
|
+
const newAbsoluteY = MixedSize.min(y.addLayoutSize(currentPageY), viewportBottom);
|
|
20
|
+
let pageIndex = this.findPageIndexByOffsetY(newAbsoluteY.LayoutSize);
|
|
21
|
+
const pageY = this.getPageOffsetY(pageIndex);
|
|
22
|
+
const htr = this.calculateHitTestResult(pageIndex, x.LayoutSize, newAbsoluteY.LayoutSize - pageY);
|
|
23
|
+
const rowY = htr.getLayoutY() + pageY + htr.row.height / 2;
|
|
24
|
+
if (rowY >= viewportTop.LayoutSize)
|
|
25
|
+
return htr.getPosition();
|
|
26
|
+
const position = this.tryFindVisiblePosition(x.LayoutSize, viewportTop.LayoutSize, viewportBottom.LayoutSize);
|
|
27
|
+
if (position !== null)
|
|
28
|
+
return position;
|
|
29
|
+
return htr.getPosition();
|
|
36
30
|
}
|
|
37
31
|
}
|
|
38
32
|
export class GoToPrevPageCommand extends GoToPrevPageCommandBase {
|
|
39
|
-
executeCore(_state, _options) {
|
|
40
|
-
const selection = this.selection;
|
|
41
|
-
const position = this.getPosition();
|
|
42
|
-
if (position < 0)
|
|
43
|
-
return false;
|
|
44
|
-
selection.deprecatedSetSelection(position, position, selection.endOfLine, selection.keepX, true);
|
|
45
|
-
return true;
|
|
46
|
-
}
|
|
47
33
|
extendSelection() {
|
|
48
34
|
return false;
|
|
49
35
|
}
|
|
50
36
|
}
|
|
51
37
|
export class ExtendGoToPrevPageCommand extends GoToPrevPageCommandBase {
|
|
52
|
-
executeCore(_state, _options) {
|
|
53
|
-
const position = this.getPosition();
|
|
54
|
-
if (position < 0)
|
|
55
|
-
return false;
|
|
56
|
-
this.selection.changeState((newState) => newState.extendLastInterval(position));
|
|
57
|
-
return true;
|
|
58
|
-
}
|
|
59
38
|
extendSelection() {
|
|
60
39
|
return true;
|
|
61
40
|
}
|
|
@@ -106,8 +106,6 @@ export class ExtendSelectTableColumnCommand extends SelectTableColumnCommand {
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
export class SelectTableRowCommandOptions extends CommandOptions {
|
|
109
|
-
rows;
|
|
110
|
-
forwardDirection;
|
|
111
109
|
constructor(control, table, rowIndices, forwardDirection) {
|
|
112
110
|
super(control);
|
|
113
111
|
if (table) {
|
|
@@ -5,11 +5,8 @@ import { ListUtils } from '@devexpress/utils/lib/utils/list';
|
|
|
5
5
|
import { RichEditClientCommand } from './client-command';
|
|
6
6
|
import { ClipboardCommand } from './text/clipboard-commands';
|
|
7
7
|
export class ShortcutManager {
|
|
8
|
-
lastCommandExecutedByShortcut;
|
|
9
|
-
control;
|
|
10
|
-
shortcuts;
|
|
11
|
-
knownNonCommandShortcuts = {};
|
|
12
8
|
constructor(commandManager, control) {
|
|
9
|
+
this.knownNonCommandShortcuts = {};
|
|
13
10
|
this.control = control;
|
|
14
11
|
this.init(commandManager);
|
|
15
12
|
}
|
|
@@ -140,7 +137,6 @@ export class CommandHolderBase {
|
|
|
140
137
|
}
|
|
141
138
|
}
|
|
142
139
|
export class CommandHolder extends CommandHolderBase {
|
|
143
|
-
command;
|
|
144
140
|
constructor(command) {
|
|
145
141
|
super();
|
|
146
142
|
this.command = command;
|
|
@@ -153,7 +149,6 @@ export class CommandHolder extends CommandHolderBase {
|
|
|
153
149
|
}
|
|
154
150
|
}
|
|
155
151
|
export class UserDefinedFunctionHolder extends CommandHolderBase {
|
|
156
|
-
userCommandCallback;
|
|
157
152
|
constructor(userCommandCallback) {
|
|
158
153
|
super();
|
|
159
154
|
this.userCommandCallback = userCommandCallback;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { CommandBase, CommandOptions } from '../command-base';
|
|
2
2
|
import { SimpleCommandState } from '../command-states';
|
|
3
3
|
export class AssignShortcutCommandOptions extends CommandOptions {
|
|
4
|
-
keyCode;
|
|
5
|
-
callback;
|
|
6
4
|
constructor(control, keyCode, callback) {
|
|
7
5
|
super(control);
|
|
8
6
|
this.keyCode = keyCode;
|
|
@@ -48,8 +48,6 @@ class FindTextBoxPageIndexHelper extends FindPageIndexHelper {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
export class ChangeActiveSubDocumentToHeaderFooterByPageIndexCommandParameters extends CommandOptions {
|
|
51
|
-
pageIndex;
|
|
52
|
-
isHeader;
|
|
53
51
|
constructor(control, pageIndex, isHeader) {
|
|
54
52
|
super(control);
|
|
55
53
|
this.pageIndex = pageIndex;
|
|
@@ -181,11 +179,11 @@ export class ChangeActiveSubDocumentToHeaderFooterByPageIndexCommand extends Cha
|
|
|
181
179
|
}
|
|
182
180
|
}
|
|
183
181
|
export class ChangeActiveSubDocumentToHeaderFooterOrTextBoxBySubDocumentCommand extends ChangeActiveSubDocumentCommandBase {
|
|
184
|
-
static MapTypeToPageIndexHelper = new MapCreator()
|
|
182
|
+
static { this.MapTypeToPageIndexHelper = new MapCreator()
|
|
185
183
|
.add(SubDocumentInfoType.Header, new FindHeaderPageIndexHelper())
|
|
186
184
|
.add(SubDocumentInfoType.Footer, new FindFooterPageIndexHelper())
|
|
187
185
|
.add(SubDocumentInfoType.TextBox, new FindTextBoxPageIndexHelper())
|
|
188
|
-
.get();
|
|
186
|
+
.get(); }
|
|
189
187
|
executeCore(_state, options) {
|
|
190
188
|
const newActiveSubDoc = options.param;
|
|
191
189
|
let targetPageIndex;
|
|
@@ -11,8 +11,6 @@ import { RichEditClientCommand } from '../client-command';
|
|
|
11
11
|
import { CommandBase } from '../command-base';
|
|
12
12
|
import { SimpleCommandState } from '../command-states';
|
|
13
13
|
export class ChangeTableCellAlignmentCommandBase extends CommandBase {
|
|
14
|
-
horizontalAlignment;
|
|
15
|
-
verticalAlignment;
|
|
16
14
|
getRelatedCommands() {
|
|
17
15
|
return {
|
|
18
16
|
[RichEditClientCommand.TableCellAlignBottomCenter]: true,
|
|
@@ -61,38 +59,65 @@ export class ChangeTableCellAlignmentCommandBase extends CommandBase {
|
|
|
61
59
|
}
|
|
62
60
|
}
|
|
63
61
|
export class ChangeTableCellTopLeftAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
constructor() {
|
|
63
|
+
super(...arguments);
|
|
64
|
+
this.horizontalAlignment = ParagraphAlignment.Left;
|
|
65
|
+
this.verticalAlignment = TableCellVerticalAlignment.Top;
|
|
66
|
+
}
|
|
66
67
|
}
|
|
67
68
|
export class ChangeTableCellTopCenterAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
68
|
-
|
|
69
|
-
|
|
69
|
+
constructor() {
|
|
70
|
+
super(...arguments);
|
|
71
|
+
this.horizontalAlignment = ParagraphAlignment.Center;
|
|
72
|
+
this.verticalAlignment = TableCellVerticalAlignment.Top;
|
|
73
|
+
}
|
|
70
74
|
}
|
|
71
75
|
export class ChangeTableCellTopRightAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
72
|
-
|
|
73
|
-
|
|
76
|
+
constructor() {
|
|
77
|
+
super(...arguments);
|
|
78
|
+
this.horizontalAlignment = ParagraphAlignment.Right;
|
|
79
|
+
this.verticalAlignment = TableCellVerticalAlignment.Top;
|
|
80
|
+
}
|
|
74
81
|
}
|
|
75
82
|
export class ChangeTableCellMiddleLeftAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
76
|
-
|
|
77
|
-
|
|
83
|
+
constructor() {
|
|
84
|
+
super(...arguments);
|
|
85
|
+
this.horizontalAlignment = ParagraphAlignment.Left;
|
|
86
|
+
this.verticalAlignment = TableCellVerticalAlignment.Center;
|
|
87
|
+
}
|
|
78
88
|
}
|
|
79
89
|
export class ChangeTableCellMiddleCenterAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
80
|
-
|
|
81
|
-
|
|
90
|
+
constructor() {
|
|
91
|
+
super(...arguments);
|
|
92
|
+
this.horizontalAlignment = ParagraphAlignment.Center;
|
|
93
|
+
this.verticalAlignment = TableCellVerticalAlignment.Center;
|
|
94
|
+
}
|
|
82
95
|
}
|
|
83
96
|
export class ChangeTableCellMiddleRightAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
84
|
-
|
|
85
|
-
|
|
97
|
+
constructor() {
|
|
98
|
+
super(...arguments);
|
|
99
|
+
this.horizontalAlignment = ParagraphAlignment.Right;
|
|
100
|
+
this.verticalAlignment = TableCellVerticalAlignment.Center;
|
|
101
|
+
}
|
|
86
102
|
}
|
|
87
103
|
export class ChangeTableCellBottomLeftAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
88
|
-
|
|
89
|
-
|
|
104
|
+
constructor() {
|
|
105
|
+
super(...arguments);
|
|
106
|
+
this.horizontalAlignment = ParagraphAlignment.Left;
|
|
107
|
+
this.verticalAlignment = TableCellVerticalAlignment.Bottom;
|
|
108
|
+
}
|
|
90
109
|
}
|
|
91
110
|
export class ChangeTableCellBottomCenterAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
92
|
-
|
|
93
|
-
|
|
111
|
+
constructor() {
|
|
112
|
+
super(...arguments);
|
|
113
|
+
this.horizontalAlignment = ParagraphAlignment.Center;
|
|
114
|
+
this.verticalAlignment = TableCellVerticalAlignment.Bottom;
|
|
115
|
+
}
|
|
94
116
|
}
|
|
95
117
|
export class ChangeTableCellBottomRightAlignmentCommand extends ChangeTableCellAlignmentCommandBase {
|
|
96
|
-
|
|
97
|
-
|
|
118
|
+
constructor() {
|
|
119
|
+
super(...arguments);
|
|
120
|
+
this.horizontalAlignment = ParagraphAlignment.Right;
|
|
121
|
+
this.verticalAlignment = TableCellVerticalAlignment.Bottom;
|
|
122
|
+
}
|
|
98
123
|
}
|
|
@@ -6,7 +6,6 @@ import { RichEditClientCommand } from '../client-command';
|
|
|
6
6
|
import { CommandBase } from '../command-base';
|
|
7
7
|
import { SimpleCommandState } from '../command-states';
|
|
8
8
|
export class ChangeTableLookCommandBase extends CommandBase {
|
|
9
|
-
option;
|
|
10
9
|
getState() {
|
|
11
10
|
const tableInfo = this.selection.tableInfo;
|
|
12
11
|
const state = new SimpleCommandState(this.isEnabled() && tableInfo.extendedData.numRows > 0, false);
|
|
@@ -64,25 +63,43 @@ export class ChangeTableLookCommand extends ChangeTableLookCommandBase {
|
|
|
64
63
|
}
|
|
65
64
|
}
|
|
66
65
|
export class ToggleFirstRowCommand extends ChangeTableLookCommandBase {
|
|
67
|
-
|
|
66
|
+
constructor() {
|
|
67
|
+
super(...arguments);
|
|
68
|
+
this.option = TableLookTypes.ApplyFirstRow;
|
|
69
|
+
}
|
|
68
70
|
}
|
|
69
71
|
export class ToggleLastRowCommand extends ChangeTableLookCommandBase {
|
|
70
|
-
|
|
72
|
+
constructor() {
|
|
73
|
+
super(...arguments);
|
|
74
|
+
this.option = TableLookTypes.ApplyLastRow;
|
|
75
|
+
}
|
|
71
76
|
}
|
|
72
77
|
export class ToggleFirstColumnCommand extends ChangeTableLookCommandBase {
|
|
73
|
-
|
|
78
|
+
constructor() {
|
|
79
|
+
super(...arguments);
|
|
80
|
+
this.option = TableLookTypes.ApplyFirstColumn;
|
|
81
|
+
}
|
|
74
82
|
}
|
|
75
83
|
export class ToggleLastColumnCommand extends ChangeTableLookCommandBase {
|
|
76
|
-
|
|
84
|
+
constructor() {
|
|
85
|
+
super(...arguments);
|
|
86
|
+
this.option = TableLookTypes.ApplyLastColumn;
|
|
87
|
+
}
|
|
77
88
|
}
|
|
78
89
|
export class ToggleBandedRowsCommand extends ChangeTableLookCommandBase {
|
|
79
|
-
|
|
90
|
+
constructor() {
|
|
91
|
+
super(...arguments);
|
|
92
|
+
this.option = TableLookTypes.DoNotApplyRowBanding;
|
|
93
|
+
}
|
|
80
94
|
isInvertedTableLookType() {
|
|
81
95
|
return true;
|
|
82
96
|
}
|
|
83
97
|
}
|
|
84
98
|
export class ToggleBandedColumnCommand extends ChangeTableLookCommandBase {
|
|
85
|
-
|
|
99
|
+
constructor() {
|
|
100
|
+
super(...arguments);
|
|
101
|
+
this.option = TableLookTypes.DoNotApplyColumnBanding;
|
|
102
|
+
}
|
|
86
103
|
isInvertedTableLookType() {
|
|
87
104
|
return true;
|
|
88
105
|
}
|
package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare abstract class InsertTableCellWithShiftToTheHorizontallyCommandBa
|
|
|
8
8
|
isEnabled(): boolean;
|
|
9
9
|
executeCore(_state: SimpleCommandState, options: ICommandOptions): boolean;
|
|
10
10
|
abstract insertTableCell(subDocument: SubDocument, table: Table, rowIndex: number, cellIndex: number): TableCell;
|
|
11
|
+
private canModifySelectedRows;
|
|
11
12
|
}
|
|
12
13
|
export declare class InsertTableCellWithShiftToTheLeftCommand extends InsertTableCellWithShiftToTheHorizontallyCommandBase {
|
|
13
14
|
insertTableCell(subDocument: SubDocument, table: Table, rowIndex: number, cellIndex: number): TableCell;
|
package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ControlOptions } from '../../model/options/control';
|
|
2
2
|
import { TableCellMergingState } from '../../model/tables/secondary-structures/table-base-structures';
|
|
3
3
|
import { TableConditionalFormattingCalculator } from '../../model/tables/table-utils';
|
|
4
|
+
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
|
|
4
5
|
import { SelectionHistoryItem } from '../../model/history/selection/selection-history-item';
|
|
5
6
|
import { CommandBase } from '../command-base';
|
|
6
7
|
import { SimpleCommandState } from '../command-states';
|
|
@@ -9,7 +10,9 @@ export class InsertTableCellWithShiftToTheHorizontallyCommandBase extends Comman
|
|
|
9
10
|
return new SimpleCommandState(this.isEnabled());
|
|
10
11
|
}
|
|
11
12
|
isEnabled() {
|
|
12
|
-
|
|
13
|
+
const tableInfo = this.selection.tableInfo;
|
|
14
|
+
return super.isEnabled() && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.tables) &&
|
|
15
|
+
tableInfo.extendedData.numRows > 0 && this.canModifySelectedRows(this.selection.activeSubDocument, tableInfo);
|
|
13
16
|
}
|
|
14
17
|
executeCore(_state, options) {
|
|
15
18
|
this.history.beginTransaction();
|
|
@@ -30,6 +33,18 @@ export class InsertTableCellWithShiftToTheHorizontallyCommandBase extends Comman
|
|
|
30
33
|
this.history.endTransaction();
|
|
31
34
|
return true;
|
|
32
35
|
}
|
|
36
|
+
canModifySelectedRows(subDocument, tableInfo) {
|
|
37
|
+
const table = tableInfo.table;
|
|
38
|
+
const rawRows = tableInfo.rawData.rows;
|
|
39
|
+
if (!table || !rawRows || rawRows.length === 0)
|
|
40
|
+
return false;
|
|
41
|
+
const intervals = [];
|
|
42
|
+
for (let i = 0; i < table.rows.length; i++) {
|
|
43
|
+
const row = table.rows[i];
|
|
44
|
+
intervals.push(FixedInterval.fromPositions(row.getStartPosition(), row.getEndPosition()));
|
|
45
|
+
}
|
|
46
|
+
return subDocument.isEditable(intervals);
|
|
47
|
+
}
|
|
33
48
|
}
|
|
34
49
|
export class InsertTableCellWithShiftToTheLeftCommand extends InsertTableCellWithShiftToTheHorizontallyCommandBase {
|
|
35
50
|
insertTableCell(subDocument, table, rowIndex, cellIndex) {
|
package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.d.ts
CHANGED
|
@@ -15,4 +15,5 @@ export declare class InsertTableCellsWithShiftToTheVerticallyCommand extends Com
|
|
|
15
15
|
insertTableCells(subDocument: SubDocument, table: Table, patternRowIndex: number, patternCellIndex: number, insertedCellsCount: number, preferredWidth: TableWidthUnit): void;
|
|
16
16
|
deleteTextInCell(subDocument: SubDocument, table: Table, rowIndex: number, rowsCount: number): void;
|
|
17
17
|
deleteContentInCell(subDocument: SubDocument, table: Table, rowIndex: number, cellIndex: number): void;
|
|
18
|
+
private canModifyVerticalSelection;
|
|
18
19
|
}
|
package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.js
CHANGED
|
@@ -15,7 +15,9 @@ export class InsertTableCellsWithShiftToTheVerticallyCommand extends CommandBase
|
|
|
15
15
|
return new SimpleCommandState(this.isEnabled());
|
|
16
16
|
}
|
|
17
17
|
isEnabled() {
|
|
18
|
-
|
|
18
|
+
const tableInfo = this.selection.tableInfo;
|
|
19
|
+
return super.isEnabled() && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.tables) &&
|
|
20
|
+
tableInfo.extendedData.areCellsSelectedInSeries && this.canModifyVerticalSelection(this.selection.activeSubDocument, tableInfo);
|
|
19
21
|
}
|
|
20
22
|
executeCore(_state, options) {
|
|
21
23
|
this.history.beginTransaction();
|
|
@@ -100,4 +102,24 @@ export class InsertTableCellsWithShiftToTheVerticallyCommand extends CommandBase
|
|
|
100
102
|
if (cell.endParagrapPosition.value - cell.startParagraphPosition.value > 1)
|
|
101
103
|
this.modelManipulator.range.removeInterval(new SubDocumentInterval(subDocument, FixedInterval.fromPositions(cell.startParagraphPosition.value, cell.endParagrapPosition.value - 1)), true, false);
|
|
102
104
|
}
|
|
105
|
+
canModifyVerticalSelection(subDocument, tableInfo) {
|
|
106
|
+
const table = tableInfo.table;
|
|
107
|
+
const rawRows = tableInfo.rawData.rows;
|
|
108
|
+
if (!table || !rawRows || rawRows.length === 0)
|
|
109
|
+
return false;
|
|
110
|
+
const wholeTableInterval = FixedInterval.fromPositions(table.getStartPosition(), table.getEndPosition());
|
|
111
|
+
if (subDocument.isEditable([wholeTableInterval]))
|
|
112
|
+
return true;
|
|
113
|
+
const rowIntervals = [];
|
|
114
|
+
for (let rowIndex = 0; rowIndex < table.rows.length; rowIndex++) {
|
|
115
|
+
const row = table.rows[rowIndex];
|
|
116
|
+
rowIntervals.push(FixedInterval.fromPositions(row.getStartPosition(), row.getEndPosition()));
|
|
117
|
+
}
|
|
118
|
+
if (!subDocument.isEditable(rowIntervals))
|
|
119
|
+
return false;
|
|
120
|
+
let maxSelectedRowIndex = -1;
|
|
121
|
+
for (let i = 0; i < rawRows.length; i++)
|
|
122
|
+
maxSelectedRowIndex = Math.max(maxSelectedRowIndex, rawRows[i].rowIndex);
|
|
123
|
+
return maxSelectedRowIndex === table.rows.length - 1;
|
|
124
|
+
}
|
|
103
125
|
}
|
|
@@ -8,6 +8,7 @@ import { TableCommandBase } from './table-command-base';
|
|
|
8
8
|
export declare abstract class InsertTableColumnCommandBase extends TableCommandBase<SimpleCommandState> {
|
|
9
9
|
getState(): SimpleCommandState;
|
|
10
10
|
isEnabled(): boolean;
|
|
11
|
+
protected canModifyTable(table: Table): boolean;
|
|
11
12
|
executeCore(_state: SimpleCommandState, options: ICommandOptions): boolean;
|
|
12
13
|
private getInsertedColumnCount;
|
|
13
14
|
private getColumnCellIndices;
|
|
@@ -6,6 +6,7 @@ import { ControlOptions } from '../../model/options/control';
|
|
|
6
6
|
import { SubDocumentPosition } from '../../model/sub-document';
|
|
7
7
|
import { TableCellUtils, TableConditionalFormattingCalculator } from '../../model/tables/table-utils';
|
|
8
8
|
import { Constants } from '@devexpress/utils/lib/constants';
|
|
9
|
+
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
|
|
9
10
|
import { ListUtils } from '@devexpress/utils/lib/utils/list';
|
|
10
11
|
import { SimpleCommandState } from '../command-states';
|
|
11
12
|
import { TableCommandBase } from './table-command-base';
|
|
@@ -16,6 +17,13 @@ export class InsertTableColumnCommandBase extends TableCommandBase {
|
|
|
16
17
|
isEnabled() {
|
|
17
18
|
return super.isEnabled() && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.tables) && this.selection.tableInfo.extendedData.isSquare;
|
|
18
19
|
}
|
|
20
|
+
canModifyTable(table) {
|
|
21
|
+
const subDocument = this.selection.activeSubDocument;
|
|
22
|
+
if (super.canModifyTable(table))
|
|
23
|
+
return true;
|
|
24
|
+
const rowIntervals = table.rows.map(row => FixedInterval.fromPositions(row.getStartPosition(), row.getEndPosition()));
|
|
25
|
+
return rowIntervals.length > 0 && subDocument.isEditable(rowIntervals);
|
|
26
|
+
}
|
|
19
27
|
executeCore(_state, options) {
|
|
20
28
|
this.history.beginTransaction();
|
|
21
29
|
let patternCell = this.getPatternCell();
|
|
@@ -7,6 +7,9 @@ import { UnitConverter } from '@devexpress/utils/lib/class/unit-converter';
|
|
|
7
7
|
import { SelectionHistoryItem } from '../../model/history/selection/selection-history-item';
|
|
8
8
|
import { CommandBase } from '../command-base';
|
|
9
9
|
import { SimpleCommandState } from '../command-states';
|
|
10
|
+
import { ApplyTableStyleHistoryItem } from '../../../common/model/history/items/apply-style-history-items';
|
|
11
|
+
import { TableStyle } from '../../../common/model/tables/styles/table-style';
|
|
12
|
+
import { StylesManager } from '../../../common/model/styles-manager';
|
|
10
13
|
export class InsertTableCoreCommand extends CommandBase {
|
|
11
14
|
getState() {
|
|
12
15
|
return new SimpleCommandState(this.isEnabled());
|
|
@@ -16,16 +19,18 @@ export class InsertTableCoreCommand extends CommandBase {
|
|
|
16
19
|
}
|
|
17
20
|
executeCore(_state, options) {
|
|
18
21
|
const parameter = options.param;
|
|
22
|
+
const model = this.control.modelManager.model;
|
|
23
|
+
const gridTableStyle = model.getTableStyleByName(TableStyle.GRID_STYLENAME) || model.stylesManager.addTableStyle(StylesManager.getPresetTableStyleByName(TableStyle.GRID_STYLENAME)?.clone());
|
|
19
24
|
const subDocument = this.selection.activeSubDocument;
|
|
20
25
|
const position = this.selection.intervals[0].start;
|
|
21
26
|
const lp = LayoutPosition.ensure(this.control.layoutFormatterManager, subDocument, position);
|
|
22
27
|
let currentTable = Table.getTableByPosition(subDocument.tables, position, true);
|
|
23
|
-
let availableWidth = currentTable ? lp.row.tableCellInfo.avaliableContentWidth :
|
|
24
|
-
LayoutColumn.findSectionColumnWithMinimumWidth(lp.pageArea.columns);
|
|
28
|
+
let availableWidth = currentTable ? lp.row.tableCellInfo.avaliableContentWidth : LayoutColumn.findSectionColumnWithMinimumWidth(lp.pageArea.columns);
|
|
25
29
|
this.history.beginTransaction();
|
|
26
|
-
const table = this.modelManipulator.table.insertTable(subDocument, parameter.rowCount, parameter.cellCount, position, UnitConverter.pixelsToTwipsF(availableWidth), this.inputPosition,
|
|
30
|
+
const table = this.modelManipulator.table.insertTable(subDocument, parameter.rowCount, parameter.cellCount, position, UnitConverter.pixelsToTwipsF(availableWidth), this.inputPosition, false);
|
|
27
31
|
this.history.addAndRedo(new SelectionHistoryItem(this.modelManipulator, this.selection, this.selection.getState(), this.selection.getState().setPosition(table.getStartPosition()).setEndOfLine(false)));
|
|
28
32
|
TableConditionalFormattingCalculator.updateTable(this.control.modelManager, table, subDocument);
|
|
33
|
+
this.history.addAndRedo(new ApplyTableStyleHistoryItem(this.modelManipulator, subDocument, table.index, gridTableStyle));
|
|
29
34
|
this.history.endTransaction();
|
|
30
35
|
return true;
|
|
31
36
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { Table } from '../../model/tables/main-structures/table';
|
|
1
2
|
import { CommandBase } from '../command-base';
|
|
2
3
|
import { ICommandState } from '../i-command';
|
|
3
4
|
export declare abstract class TableCommandBase<T extends ICommandState> extends CommandBase<T> {
|
|
4
5
|
isEnabled(): boolean;
|
|
6
|
+
protected canModifyTable(table: Table): boolean;
|
|
5
7
|
}
|
|
@@ -4,6 +4,9 @@ export class TableCommandBase extends CommandBase {
|
|
|
4
4
|
isEnabled() {
|
|
5
5
|
const table = this.control.selection.tableInfo.table;
|
|
6
6
|
return super.isEnabled() && table != null &&
|
|
7
|
-
this.
|
|
7
|
+
this.canModifyTable(table);
|
|
8
|
+
}
|
|
9
|
+
canModifyTable(table) {
|
|
10
|
+
return this.control.selection.activeSubDocument.isEditable([FixedInterval.fromPositions(table.getStartPosition(), table.getEndPosition())]);
|
|
8
11
|
}
|
|
9
12
|
}
|
|
@@ -11,11 +11,13 @@ import { RichEditClientCommand } from '../client-command';
|
|
|
11
11
|
import { CommandBase } from '../command-base';
|
|
12
12
|
import { SimpleCommandState } from '../command-states';
|
|
13
13
|
export class ToggleTableCellsBorderCommandBase extends CommandBase {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
constructor() {
|
|
15
|
+
super(...arguments);
|
|
16
|
+
this.affectNeighbours = true;
|
|
17
|
+
this.affectInner = true;
|
|
18
|
+
this.affectOuter = true;
|
|
19
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.All;
|
|
20
|
+
}
|
|
19
21
|
get colorProvider() { return this.control.modelManager.model.colorProvider; }
|
|
20
22
|
DEPRECATEDConvertOptionsParameter(parameter) {
|
|
21
23
|
return parameter instanceof BorderInfo ? parameter : this.control.modelManager.model.repositoryBorderItem;
|
|
@@ -309,8 +311,11 @@ export class ToggleSingleTableCellsBorderCommand extends ToggleTableCellsBorderC
|
|
|
309
311
|
}
|
|
310
312
|
}
|
|
311
313
|
export class ToggleTableCellsTopBorderCommand extends ToggleSingleTableCellsBorderCommand {
|
|
312
|
-
|
|
313
|
-
|
|
314
|
+
constructor() {
|
|
315
|
+
super(...arguments);
|
|
316
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.TopOuter;
|
|
317
|
+
this.affectInner = false;
|
|
318
|
+
}
|
|
314
319
|
getActualCellBorder(table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
315
320
|
return this.getActualTopBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex);
|
|
316
321
|
}
|
|
@@ -347,8 +352,11 @@ export class ToggleTableCellsTopBorderCommand extends ToggleSingleTableCellsBord
|
|
|
347
352
|
}
|
|
348
353
|
}
|
|
349
354
|
export class ToggleTableCellsRightBorderCommand extends ToggleSingleTableCellsBorderCommand {
|
|
350
|
-
|
|
351
|
-
|
|
355
|
+
constructor() {
|
|
356
|
+
super(...arguments);
|
|
357
|
+
this.affectInner = false;
|
|
358
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.RightOuter;
|
|
359
|
+
}
|
|
352
360
|
getActualCellBorder(table, _grid, _currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
353
361
|
return this.getActualRightBorder(tableBordersInfo, table, rowIndex, columnIndex);
|
|
354
362
|
}
|
|
@@ -385,8 +393,11 @@ export class ToggleTableCellsRightBorderCommand extends ToggleSingleTableCellsBo
|
|
|
385
393
|
}
|
|
386
394
|
}
|
|
387
395
|
export class ToggleTableCellsBottomBorderCommand extends ToggleSingleTableCellsBorderCommand {
|
|
388
|
-
|
|
389
|
-
|
|
396
|
+
constructor() {
|
|
397
|
+
super(...arguments);
|
|
398
|
+
this.affectInner = false;
|
|
399
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.BottomOuter;
|
|
400
|
+
}
|
|
390
401
|
getActualCellBorder(table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
391
402
|
return this.getActualBottomBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex);
|
|
392
403
|
}
|
|
@@ -423,8 +434,11 @@ export class ToggleTableCellsBottomBorderCommand extends ToggleSingleTableCellsB
|
|
|
423
434
|
}
|
|
424
435
|
}
|
|
425
436
|
export class ToggleTableCellsLeftBorderCommand extends ToggleSingleTableCellsBorderCommand {
|
|
426
|
-
|
|
427
|
-
|
|
437
|
+
constructor() {
|
|
438
|
+
super(...arguments);
|
|
439
|
+
this.affectInner = false;
|
|
440
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.LeftOuter;
|
|
441
|
+
}
|
|
428
442
|
getActualCellBorder(table, _grid, _currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
429
443
|
return this.getActualLeftBorder(tableBordersInfo, table, rowIndex, columnIndex);
|
|
430
444
|
}
|
|
@@ -461,9 +475,12 @@ export class ToggleTableCellsLeftBorderCommand extends ToggleSingleTableCellsBor
|
|
|
461
475
|
}
|
|
462
476
|
}
|
|
463
477
|
export class ToggleTableCellAllBordersCommand extends ToggleTableCellsBorderCommandBase {
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
TableBorderGridCellInfo.
|
|
478
|
+
constructor() {
|
|
479
|
+
super(...arguments);
|
|
480
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.BottomInner | TableBorderGridCellInfo.BottomOuter | TableBorderGridCellInfo.LeftInner |
|
|
481
|
+
TableBorderGridCellInfo.LeftOuter | TableBorderGridCellInfo.RightInner | TableBorderGridCellInfo.RightOuter |
|
|
482
|
+
TableBorderGridCellInfo.TopInner | TableBorderGridCellInfo.TopOuter;
|
|
483
|
+
}
|
|
467
484
|
checkBorderInParticallyTableSelection(patternBorder, table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
468
485
|
return patternBorder.equals(this.getActualTopBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex)) &&
|
|
469
486
|
patternBorder.equals(this.getActualBottomBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex)) &&
|
|
@@ -512,9 +529,12 @@ export class ToggleTableCellNoBorderCommand extends ToggleTableCellAllBordersCom
|
|
|
512
529
|
}
|
|
513
530
|
}
|
|
514
531
|
export class ToggleTableCellInsideBordersCommand extends ToggleTableCellsBorderCommandBase {
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
532
|
+
constructor() {
|
|
533
|
+
super(...arguments);
|
|
534
|
+
this.affectOuter = false;
|
|
535
|
+
this.affectNeighbours = false;
|
|
536
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.BottomInner | TableBorderGridCellInfo.LeftInner | TableBorderGridCellInfo.RightInner | TableBorderGridCellInfo.TopInner;
|
|
537
|
+
}
|
|
518
538
|
checkBorderInParticallyTableSelection(patternBorder, table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
519
539
|
if (currentCell.info & TableBorderGridCellInfo.TopInner)
|
|
520
540
|
return patternBorder.equals(this.getActualTopBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex));
|
|
@@ -552,9 +572,12 @@ export class ToggleTableCellInsideBordersCommand extends ToggleTableCellsBorderC
|
|
|
552
572
|
}
|
|
553
573
|
}
|
|
554
574
|
export class ToggleTableCellInsideHorizontalBordersCommand extends ToggleSingleTableCellsBorderCommand {
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
575
|
+
constructor() {
|
|
576
|
+
super(...arguments);
|
|
577
|
+
this.affectOuter = false;
|
|
578
|
+
this.affectNeighbours = false;
|
|
579
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.BottomInner | TableBorderGridCellInfo.TopInner;
|
|
580
|
+
}
|
|
558
581
|
getActualCellBorder(table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
559
582
|
let border1, border2;
|
|
560
583
|
if (currentCell.info & TableBorderGridCellInfo.TopInner)
|
|
@@ -590,9 +613,12 @@ export class ToggleTableCellInsideHorizontalBordersCommand extends ToggleSingleT
|
|
|
590
613
|
}
|
|
591
614
|
}
|
|
592
615
|
export class ToggleTableCellInsideVerticalBordersCommand extends ToggleSingleTableCellsBorderCommand {
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
616
|
+
constructor() {
|
|
617
|
+
super(...arguments);
|
|
618
|
+
this.affectOuter = false;
|
|
619
|
+
this.affectNeighbours = false;
|
|
620
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.LeftInner | TableBorderGridCellInfo.RightInner;
|
|
621
|
+
}
|
|
596
622
|
getActualCellBorder(table, _grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
597
623
|
let border1, border2;
|
|
598
624
|
if (currentCell.info & TableBorderGridCellInfo.LeftInner)
|
|
@@ -628,8 +654,11 @@ export class ToggleTableCellInsideVerticalBordersCommand extends ToggleSingleTab
|
|
|
628
654
|
}
|
|
629
655
|
}
|
|
630
656
|
export class ToggleTableCellOutsideBordersCommand extends ToggleTableCellsBorderCommandBase {
|
|
631
|
-
|
|
632
|
-
|
|
657
|
+
constructor() {
|
|
658
|
+
super(...arguments);
|
|
659
|
+
this.affectInner = false;
|
|
660
|
+
this.affectOnStateFlags = TableBorderGridCellInfo.LeftOuter | TableBorderGridCellInfo.RightOuter | TableBorderGridCellInfo.TopOuter | TableBorderGridCellInfo.BottomOuter;
|
|
661
|
+
}
|
|
633
662
|
checkBorderInParticallyTableSelection(patternBorder, table, grid, currentCell, rowIndex, columnIndex, tableBordersInfo) {
|
|
634
663
|
if (currentCell.info & TableBorderGridCellInfo.TopOuter && !patternBorder.equals(this.getActualTopBorder(grid, currentCell, tableBordersInfo, table, rowIndex, columnIndex)))
|
|
635
664
|
return false;
|