oasis-editor 0.0.131 → 0.0.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/dist/{OasisEditorApp-Dn2I2b-M.js → OasisEditorApp-DmXn9H33.js} +716 -684
  2. package/dist/adapters/mountController.d.ts +12 -0
  3. package/dist/adapters/vue.d.ts +5 -5
  4. package/dist/app/controllers/EditorCommandRegistry.d.ts +2 -1
  5. package/dist/app/controllers/tableResize/tableResizeUnits.d.ts +3 -1
  6. package/dist/assets/{importDocxWorker-DdpdjbOY.js → importDocxWorker-CCwhxVSR.js} +1 -1
  7. package/dist/core/commands/builtinCommands.d.ts +1 -1
  8. package/dist/core/editorState/defaultStyles.d.ts +3 -0
  9. package/dist/core/editorState/documentFactories.d.ts +8 -0
  10. package/dist/core/editorState/nodeFactories.d.ts +35 -0
  11. package/dist/core/editorState/stateFactories.d.ts +26 -0
  12. package/dist/core/editorState.d.ts +4 -66
  13. package/dist/core/units/parseUnitToPt.d.ts +6 -0
  14. package/dist/export/docx/xmlUtils.d.ts +2 -0
  15. package/dist/import/docx/runs/drawingAnchorLayout.d.ts +12 -0
  16. package/dist/{index-BXo_oqOC.js → index-BOj4-NlJ.js} +2244 -2177
  17. package/dist/layoutProjection/presetGeometry/families/arrows.d.ts +3 -0
  18. package/dist/layoutProjection/presetGeometry/families/banners.d.ts +5 -0
  19. package/dist/layoutProjection/presetGeometry/families/bracesBrackets.d.ts +4 -0
  20. package/dist/layoutProjection/presetGeometry/families/callouts.d.ts +3 -0
  21. package/dist/layoutProjection/presetGeometry/families/connectors.d.ts +3 -0
  22. package/dist/layoutProjection/presetGeometry/families/containers3d.d.ts +11 -0
  23. package/dist/layoutProjection/presetGeometry/families/decorative.d.ts +9 -0
  24. package/dist/layoutProjection/presetGeometry/families/flowchart.d.ts +4 -0
  25. package/dist/layoutProjection/presetGeometry/families/mathSymbols.d.ts +8 -0
  26. package/dist/layoutProjection/presetGeometry/families/rectVariants.d.ts +5 -0
  27. package/dist/mountController-D2srsZ5t.js +15 -0
  28. package/dist/mountController.d.ts +12 -0
  29. package/dist/oasis-editor.css +1 -1
  30. package/dist/oasis-editor.js +54 -54
  31. package/dist/oasis-editor.umd.cjs +4 -4
  32. package/dist/plugins/internal/essentialsCapabilities.d.ts +2 -1
  33. package/dist/plugins/internal/essentialsCommandBuilders.d.ts +8 -7
  34. package/dist/plugins/internal/essentialsCommandGroups/coreFormatting.d.ts +17 -0
  35. package/dist/plugins/internal/essentialsCommandGroups/documentAndBrowser.d.ts +15 -0
  36. package/dist/plugins/internal/essentialsCommandGroups/paragraphAndSection.d.ts +13 -0
  37. package/dist/plugins/internal/essentialsCommandGroups/table.d.ts +11 -0
  38. package/dist/react.js +14 -15
  39. package/dist/text/fontMetricsUtil.d.ts +16 -0
  40. package/dist/text/fonts/opentype/extensionLookup.d.ts +9 -0
  41. package/dist/ui/EditorImportProgressOverlay.d.ts +7 -0
  42. package/dist/ui/EditorStatusBar.d.ts +13 -0
  43. package/dist/ui/OasisEditorEditor.d.ts +3 -117
  44. package/dist/ui/OasisEditorEditorProps.d.ts +118 -0
  45. package/dist/ui/app/createEditorEssentialsPlugin.d.ts +2 -41
  46. package/dist/ui/app/essentials/browser.d.ts +3 -0
  47. package/dist/ui/app/essentials/document.d.ts +4 -0
  48. package/dist/ui/app/essentials/formatting.d.ts +9 -0
  49. package/dist/ui/app/essentials/gate.d.ts +4 -0
  50. package/dist/ui/app/essentials/history.d.ts +4 -0
  51. package/dist/ui/app/essentials/image.d.ts +4 -0
  52. package/dist/ui/app/essentials/link.d.ts +4 -0
  53. package/dist/ui/app/essentials/paragraph.d.ts +4 -0
  54. package/dist/ui/app/essentials/section.d.ts +4 -0
  55. package/dist/ui/app/essentials/selection.d.ts +4 -0
  56. package/dist/ui/app/essentials/style.d.ts +4 -0
  57. package/dist/ui/app/essentials/table.d.ts +4 -0
  58. package/dist/ui/app/essentials/types.d.ts +41 -0
  59. package/dist/ui/canvas/canvasLineSlotLookup.d.ts +8 -0
  60. package/dist/ui/canvas/canvasSnapshotLines.d.ts +22 -0
  61. package/dist/ui/canvas/canvasSnapshotWalkers.d.ts +41 -0
  62. package/dist/ui/canvas/canvasTheme.d.ts +6 -0
  63. package/dist/ui/components/Dialogs/ParagraphDialog.d.ts +2 -69
  64. package/dist/ui/components/Dialogs/paragraph-dialog/ParagraphDialogTypes.d.ts +82 -0
  65. package/dist/ui/components/Dialogs/paragraph-dialog/useParagraphDialogController.d.ts +66 -0
  66. package/dist/ui/components/Dialogs/table-properties/TablePropertiesTypes.d.ts +0 -1
  67. package/dist/ui/components/Toolbar/LineSpacingButton.d.ts +10 -0
  68. package/dist/ui/components/Toolbar/presets/defaultToolbar/buttonSpecs.d.ts +27 -0
  69. package/dist/ui/components/Toolbar/presets/defaultToolbar/optionBuilders.d.ts +10 -0
  70. package/dist/ui/components/Toolbar/presets/defaultToolbar/ribbonPlacements.d.ts +3 -0
  71. package/dist/ui/components/Toolbar/primitives/DropdownChevron.d.ts +20 -0
  72. package/dist/ui/utils/customIcons.d.ts +30 -0
  73. package/dist/utils/parseNumber.d.ts +5 -0
  74. package/dist/vue.d.ts +5 -5
  75. package/dist/vue.js +10 -12
  76. package/package.json +1 -1
  77. package/dist/layoutProjection/presetGeometry/families.d.ts +0 -37
  78. package/dist/plugins/internal/essentialsCommandGroups.d.ts +0 -41

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.