microboard-temp 0.14.14 → 0.14.16

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 (250) hide show
  1. package/dist/cjs/browser.js +4862 -3698
  2. package/dist/cjs/index.js +4862 -3698
  3. package/dist/cjs/node.js +4862 -3698
  4. package/dist/cjs/protocol.js +25 -0
  5. package/dist/esm/browser.js +4862 -3698
  6. package/dist/esm/index.js +4862 -3698
  7. package/dist/esm/node.js +4862 -3698
  8. package/dist/esm/protocol.js +25 -0
  9. package/dist/types/Background/drawBackground.d.ts +1 -1
  10. package/dist/types/Board.d.ts +4 -3
  11. package/dist/types/Camera/Camera.d.ts +3 -3
  12. package/dist/types/Events/EventsOperations.d.ts +1 -1
  13. package/dist/types/Events/MessageRouter/socketContract.d.ts +1249 -9
  14. package/dist/types/Events/Transform/transformTransformationOperation.d.ts +2 -0
  15. package/dist/types/{Items → Geometry}/Geometry.d.ts +1 -1
  16. package/dist/types/{Items → Geometry}/Mbr/Mbr.d.ts +2 -1
  17. package/dist/types/{Items → Geometry}/Path/Paths.d.ts +1 -1
  18. package/dist/types/{Items → Geometry}/Transformation/Matrix.d.ts +16 -0
  19. package/dist/types/{Items → Geometry}/Transformation/TransformationData.d.ts +5 -1
  20. package/dist/types/{Items → Geometry}/Transformation/TransformationOperations.d.ts +27 -1
  21. package/dist/types/{Items → Geometry}/Transformation/transformOps.d.ts +3 -1
  22. package/dist/types/Geometry/index.d.ts +12 -0
  23. package/dist/types/HTMLAdapter/BoardHTMLAdapter.d.ts +15 -0
  24. package/dist/types/{parserHTML.d.ts → HTMLAdapter/Parser.d.ts} +2 -2
  25. package/dist/types/{Items → HTMLAdapter}/Renderers/AINodeHTMLRenderer.d.ts +1 -1
  26. package/dist/types/{Items → HTMLAdapter}/Renderers/AudioHTMLRenderer.d.ts +1 -1
  27. package/dist/types/{Items → HTMLAdapter}/Renderers/CommentHTMLRenderer.d.ts +1 -1
  28. package/dist/types/{Items → HTMLAdapter}/Renderers/ConnectorHTMLRenderer.d.ts +1 -1
  29. package/dist/types/{Items → HTMLAdapter}/Renderers/DrawingHTMLRenderer.d.ts +1 -1
  30. package/dist/types/{Items → HTMLAdapter}/Renderers/FrameHTMLRenderer.d.ts +1 -1
  31. package/dist/types/{Items → HTMLAdapter}/Renderers/GroupHTMLRenderer.d.ts +1 -1
  32. package/dist/types/{Items → HTMLAdapter}/Renderers/HTMLItemRenderer.d.ts +1 -1
  33. package/dist/types/{Items → HTMLAdapter}/Renderers/ImageHTMLRenderer.d.ts +1 -1
  34. package/dist/types/{Items → HTMLAdapter}/Renderers/PlaceholderHTMLRenderer.d.ts +1 -1
  35. package/dist/types/{Items → HTMLAdapter}/Renderers/RichTextHTMLRenderer.d.ts +1 -1
  36. package/dist/types/{Items → HTMLAdapter}/Renderers/ShapeHTMLRenderer.d.ts +1 -1
  37. package/dist/types/{Items → HTMLAdapter}/Renderers/StickerHTMLRenderer.d.ts +1 -1
  38. package/dist/types/{Items → HTMLAdapter}/Renderers/VideoHTMLRenderer.d.ts +1 -1
  39. package/dist/types/{HTMLRender/HTMLRender.d.ts → HTMLAdapter/Utils.d.ts} +1 -1
  40. package/dist/types/Items/AINode/AINode.d.ts +5 -20
  41. package/dist/types/Items/AINode/AINodeData.d.ts +4 -4
  42. package/dist/types/Items/Audio/Audio.d.ts +8 -5
  43. package/dist/types/Items/Audio/AudioHelpers.d.ts +1 -1
  44. package/dist/types/Items/BaseItem/BaseItem.d.ts +50 -28
  45. package/dist/types/Items/BaseItem/TransformContext.d.ts +3 -3
  46. package/dist/types/Items/BaseItem/UpdateHint.d.ts +12 -0
  47. package/dist/types/Items/{Examples/CardGame/Card → Card}/Card.d.ts +11 -7
  48. package/dist/types/Items/Card/CardActions.d.ts +2 -0
  49. package/dist/types/Items/{Examples/CardGame/Card → Card}/CardOperation.d.ts +2 -2
  50. package/dist/types/Items/Card/CardOverlay.d.ts +2 -0
  51. package/dist/types/Items/Comment/Comment.d.ts +10 -7
  52. package/dist/types/{Tools/AddComment → Items/Comment/Tool}/AddComment.d.ts +3 -3
  53. package/dist/types/Items/Connector/Connector.d.ts +14 -10
  54. package/dist/types/Items/Connector/ConnectorOperations.d.ts +2 -2
  55. package/dist/types/Items/Connector/ConnectorOverlay.d.ts +3 -0
  56. package/dist/types/Items/Connector/ConnectorSnap.d.ts +4 -4
  57. package/dist/types/Items/Connector/ConnectorTypes.d.ts +1 -1
  58. package/dist/types/Items/Connector/ControlPoint.d.ts +1 -1
  59. package/dist/types/Items/Connector/Pointers/Pointers.d.ts +3 -3
  60. package/dist/types/{Tools/AddConnector → Items/Connector/Tool}/AddConnector.d.ts +9 -9
  61. package/dist/types/Items/Connector/getLine/findOrthogonalPath.d.ts +1 -1
  62. package/dist/types/Items/Connector/getLine/getCurvedLine.d.ts +1 -1
  63. package/dist/types/Items/Connector/getLine/getLine.d.ts +1 -1
  64. package/dist/types/Items/{Examples/CardGame/Deck → Deck}/Deck.d.ts +10 -7
  65. package/dist/types/Items/Deck/DeckActions.d.ts +2 -0
  66. package/dist/types/Items/{Examples/CardGame/Deck → Deck}/DeckOperation.d.ts +2 -2
  67. package/dist/types/Items/Deck/DeckOverlay.d.ts +3 -0
  68. package/dist/types/Items/Dice/AddDice.d.ts +5 -0
  69. package/dist/types/Items/{Examples/CardGame/Dice → Dice}/Dice.d.ts +12 -8
  70. package/dist/types/Items/Dice/DiceActions.d.ts +2 -0
  71. package/dist/types/Items/{Examples/CardGame/Dice → Dice}/DiceOperation.d.ts +1 -1
  72. package/dist/types/Items/Dice/DiceOverlay.d.ts +3 -0
  73. package/dist/types/Items/Drawing/Drawing.d.ts +13 -9
  74. package/dist/types/Items/Drawing/DrawingOperation.d.ts +1 -1
  75. package/dist/types/Items/Drawing/DrawingOverlay.d.ts +4 -0
  76. package/dist/types/{Tools/AddDrawing → Items/Drawing/Tool}/AddDrawing.d.ts +7 -7
  77. package/dist/types/{Tools/AddDrawing → Items/Drawing/Tool}/AddHighlighter.d.ts +4 -4
  78. package/dist/types/{Tools → Items/Drawing/Tool}/Eraser/Eraser.d.ts +5 -5
  79. package/dist/types/Items/Frame/Basic/1-1/index.d.ts +3 -3
  80. package/dist/types/Items/Frame/Basic/16-9/index.d.ts +3 -3
  81. package/dist/types/Items/Frame/Basic/3-2/index.d.ts +3 -3
  82. package/dist/types/Items/Frame/Basic/4-3/index.d.ts +3 -3
  83. package/dist/types/Items/Frame/Basic/9-18/index.d.ts +3 -3
  84. package/dist/types/Items/Frame/Basic/A4/index.d.ts +3 -3
  85. package/dist/types/Items/Frame/Basic/Custom/index.d.ts +3 -3
  86. package/dist/types/Items/Frame/Basic/Letter/index.d.ts +3 -3
  87. package/dist/types/Items/Frame/Frame.d.ts +13 -20
  88. package/dist/types/Items/Frame/FrameData.d.ts +2 -2
  89. package/dist/types/Items/Frame/FrameOverlay.d.ts +2 -0
  90. package/dist/types/{Tools/AddFrame → Items/Frame/Tool}/AddFrame.d.ts +6 -6
  91. package/dist/types/Items/Group/Group.d.ts +9 -8
  92. package/dist/types/Items/Image/Image.d.ts +11 -7
  93. package/dist/types/Items/Item.d.ts +1 -1
  94. package/dist/types/Items/ItemActions.d.ts +160 -0
  95. package/dist/types/Items/LinkTo/LinkTo.d.ts +1 -1
  96. package/dist/types/Items/Placeholder/Placeholder.d.ts +11 -32
  97. package/dist/types/Items/RegisterItem.d.ts +8 -4
  98. package/dist/types/Items/RichText/Editor/BlockNode.d.ts +1 -1
  99. package/dist/types/Items/RichText/Editor/TextNode.d.ts +1 -1
  100. package/dist/types/Items/RichText/EditorContainer.d.ts +1 -1
  101. package/dist/types/Items/RichText/RichText.d.ts +11 -6
  102. package/dist/types/Items/RichText/RichTextData.d.ts +2 -2
  103. package/dist/types/Items/RichText/RichTextOperations.d.ts +1 -1
  104. package/dist/types/Items/RichText/RichTextOverlay.d.ts +3 -0
  105. package/dist/types/{Tools/AddText → Items/RichText/Tool}/AddText.d.ts +4 -4
  106. package/dist/types/Items/RichText/editorHelpers/common/createParagraphNode.d.ts +1 -1
  107. package/dist/types/Items/RichText/editorHelpers/common/getParagraph.d.ts +1 -1
  108. package/dist/types/Items/RichText/editorHelpers/selectionOps/setSelectionHorisontalAlignment.d.ts +1 -1
  109. package/dist/types/Items/RichText/setNodeStyles.d.ts +1 -1
  110. package/dist/types/Items/{Examples/CardGame/Screen → Screen}/AddScreen.d.ts +2 -2
  111. package/dist/types/Items/{Examples/CardGame/Screen → Screen}/Screen.d.ts +10 -6
  112. package/dist/types/Items/Screen/ScreenActions.d.ts +12 -0
  113. package/dist/types/Items/{Examples/CardGame/Screen → Screen}/ScreenOperation.d.ts +1 -1
  114. package/dist/types/Items/Screen/ScreenOverlay.d.ts +4 -0
  115. package/dist/types/Items/Shape/BPMN/BPMN_Annotation/index.d.ts +2 -2
  116. package/dist/types/Items/Shape/BPMN/BPMN_DataObject/index.d.ts +3 -3
  117. package/dist/types/Items/Shape/BPMN/BPMN_DataStore/index.d.ts +3 -3
  118. package/dist/types/Items/Shape/BPMN/BPMN_EndEvent/index.d.ts +3 -3
  119. package/dist/types/Items/Shape/BPMN/BPMN_EventSubprocess/index.d.ts +3 -3
  120. package/dist/types/Items/Shape/BPMN/BPMN_Gateway/index.d.ts +3 -3
  121. package/dist/types/Items/Shape/BPMN/BPMN_GatewayParallel/index.d.ts +3 -3
  122. package/dist/types/Items/Shape/BPMN/BPMN_GatewayXOR/index.d.ts +3 -3
  123. package/dist/types/Items/Shape/BPMN/BPMN_Group/index.d.ts +3 -3
  124. package/dist/types/Items/Shape/BPMN/BPMN_IntermediateEvent/index.d.ts +3 -3
  125. package/dist/types/Items/Shape/BPMN/BPMN_IntermediateEventNoneInterrupting/index.d.ts +3 -3
  126. package/dist/types/Items/Shape/BPMN/BPMN_Participant/index.d.ts +3 -3
  127. package/dist/types/Items/Shape/BPMN/BPMN_StartEvent/index.d.ts +3 -3
  128. package/dist/types/Items/Shape/BPMN/BPMN_StartEventNoneInterrupting/index.d.ts +3 -3
  129. package/dist/types/Items/Shape/BPMN/BPMN_Task/index.d.ts +3 -3
  130. package/dist/types/Items/Shape/BPMN/BPMN_Transaction/index.d.ts +3 -3
  131. package/dist/types/Items/Shape/Basic/ArrowBlockLeft/index.d.ts +3 -3
  132. package/dist/types/Items/Shape/Basic/ArrowBlockRigth/index.d.ts +3 -3
  133. package/dist/types/Items/Shape/Basic/ArrowLeft/index.d.ts +3 -3
  134. package/dist/types/Items/Shape/Basic/ArrowLeftRight/index.d.ts +3 -3
  135. package/dist/types/Items/Shape/Basic/ArrowRight/index.d.ts +3 -3
  136. package/dist/types/Items/Shape/Basic/BracesLeft/index.d.ts +2 -2
  137. package/dist/types/Items/Shape/Basic/BracesRight/index.d.ts +2 -2
  138. package/dist/types/Items/Shape/Basic/Circle/index.d.ts +3 -3
  139. package/dist/types/Items/Shape/Basic/Cloud/index.d.ts +3 -3
  140. package/dist/types/Items/Shape/Basic/Cross/index.d.ts +3 -3
  141. package/dist/types/Items/Shape/Basic/Cylinder/index.d.ts +3 -3
  142. package/dist/types/Items/Shape/Basic/Hexagon/index.d.ts +3 -3
  143. package/dist/types/Items/Shape/Basic/Octagon/index.d.ts +3 -3
  144. package/dist/types/Items/Shape/Basic/Parallelogram/index.d.ts +3 -3
  145. package/dist/types/Items/Shape/Basic/Pentagon/index.d.ts +3 -3
  146. package/dist/types/Items/Shape/Basic/PredefinedProcess/index.d.ts +3 -3
  147. package/dist/types/Items/Shape/Basic/Rectangle/index.d.ts +3 -3
  148. package/dist/types/Items/Shape/Basic/ReversedParallelogram/index.d.ts +3 -3
  149. package/dist/types/Items/Shape/Basic/ReversedTriangle/index.d.ts +3 -3
  150. package/dist/types/Items/Shape/Basic/Rhombus/index.d.ts +3 -3
  151. package/dist/types/Items/Shape/Basic/RoundedRectangle/index.d.ts +3 -3
  152. package/dist/types/Items/Shape/Basic/SpeachBubble/index.d.ts +3 -3
  153. package/dist/types/Items/Shape/Basic/Star/index.d.ts +3 -3
  154. package/dist/types/Items/Shape/Basic/Trapezoid/index.d.ts +3 -3
  155. package/dist/types/Items/Shape/Basic/Triangle/index.d.ts +3 -3
  156. package/dist/types/Items/Shape/Shape.d.ts +15 -11
  157. package/dist/types/Items/Shape/ShapeData.d.ts +2 -2
  158. package/dist/types/Items/Shape/ShapeOperation.d.ts +1 -1
  159. package/dist/types/Items/Shape/ShapeOverlay.d.ts +4 -0
  160. package/dist/types/{Tools/AddShape → Items/Shape/Tool}/AddShape.d.ts +6 -6
  161. package/dist/types/Items/Sticker/Sticker.d.ts +14 -10
  162. package/dist/types/Items/Sticker/StickerOperation.d.ts +1 -1
  163. package/dist/types/Items/Sticker/StickerOverlay.d.ts +2 -0
  164. package/dist/types/{Tools/AddSticker → Items/Sticker/Tool}/AddSticker.d.ts +8 -6
  165. package/dist/types/Items/Video/Video.d.ts +9 -6
  166. package/dist/types/Items/index.d.ts +13 -15
  167. package/dist/types/Items/itemActionsRegistry.d.ts +11 -0
  168. package/dist/types/Overlay/OverlayMetadata.d.ts +182 -0
  169. package/dist/types/Overlay/index.d.ts +2 -0
  170. package/dist/types/Overlay/overlayRegistry.d.ts +24 -0
  171. package/dist/types/Pointer/Pointer.d.ts +1 -1
  172. package/dist/types/Presence/Presence.d.ts +1 -1
  173. package/dist/types/RegistryMaps.d.ts +3 -1
  174. package/dist/types/Selection/ConnectorTransformer/ConnectorTransformer.d.ts +1 -1
  175. package/dist/types/Selection/QuickAddButtons/QuickAddButtons.d.ts +1 -1
  176. package/dist/types/Selection/Selection.d.ts +9 -8
  177. package/dist/types/Selection/SelectionTransformer.d.ts +1 -1
  178. package/dist/types/Selection/Transformer/Transformer.d.ts +2 -2
  179. package/dist/types/Selection/Transformer/TransformerHelpers/getResizeType.d.ts +2 -2
  180. package/dist/types/Selection/Transformer/TransformerHelpers/handleMultipleItemsResize.d.ts +31 -4
  181. package/dist/types/Selection/Transformer/TransformerHelpers/transformAINode.d.ts +12 -7
  182. package/dist/types/Selection/Transformer/TransformerHelpers/transformItems.d.ts +2 -2
  183. package/dist/types/Selection/Transformer/TransformerHelpers/transformRichText.d.ts +5 -3
  184. package/dist/types/Selection/Transformer/TransformerHelpers/transformShape.d.ts +4 -4
  185. package/dist/types/Selection/Transformer/TransformerHelpers/updateFrameChildren.d.ts +1 -1
  186. package/dist/types/SessionStorage.d.ts +1 -1
  187. package/dist/types/Settings.d.ts +2 -2
  188. package/dist/types/SpatialIndex/LayeredIndex/index.d.ts +2 -2
  189. package/dist/types/SpatialIndex/SimpleSpatialIndex.d.ts +3 -3
  190. package/dist/types/SpatialIndex/SpacialIndex.d.ts +4 -3
  191. package/dist/types/Tools/CustomTool.d.ts +3 -3
  192. package/dist/types/Tools/{ExportSnapshot/ExportSnapshot.d.ts → ExportScreenshot/ExportScreenshot.d.ts} +5 -6
  193. package/dist/types/Tools/{ExportSnapshot/exportBoardSnapshot.d.ts → ExportScreenshot/exportBoardScreenshot.d.ts} +2 -2
  194. package/dist/types/Tools/NestingHighlighter/NestingHighlighter.d.ts +1 -1
  195. package/dist/types/Tools/RelativeAlignment/RelativeAlignment.d.ts +1 -1
  196. package/dist/types/Tools/Select/Select.d.ts +32 -4
  197. package/dist/types/Tools/Tool.d.ts +1 -1
  198. package/dist/types/Tools/ToolContext.d.ts +1 -1
  199. package/dist/types/Tools/Tools.d.ts +14 -13
  200. package/dist/types/Tools/index.d.ts +2 -2
  201. package/dist/types/Tools/initTools.d.ts +13 -0
  202. package/dist/types/drawMbrOnCanvas.d.ts +3 -3
  203. package/dist/types/index.d.ts +4 -2
  204. package/dist/types/itemFactories.d.ts +4 -6
  205. package/package.json +1 -1
  206. package/dist/types/HTMLRender/index.d.ts +0 -1
  207. package/dist/types/Items/Examples/CardGame/Dice/AddDice.d.ts +0 -5
  208. package/dist/types/Items/Examples/Counter/AddCounter.d.ts +0 -7
  209. package/dist/types/Items/Examples/Counter/Counter.d.ts +0 -25
  210. package/dist/types/Items/Examples/Counter/CounterOperation.d.ts +0 -9
  211. package/dist/types/Items/Examples/Counter/index.d.ts +0 -1
  212. package/dist/types/Items/Examples/Star/AddStar.d.ts +0 -7
  213. package/dist/types/Items/Examples/Star/Star.d.ts +0 -38
  214. package/dist/types/Items/Examples/Star/StarOperation.d.ts +0 -9
  215. package/dist/types/Items/Examples/Star/index.d.ts +0 -1
  216. /package/dist/types/{Items → Geometry}/Alignment.d.ts +0 -0
  217. /package/dist/types/{Items → Geometry}/Anchor/Anchor.d.ts +0 -0
  218. /package/dist/types/{Items → Geometry}/Anchor/index.d.ts +0 -0
  219. /package/dist/types/{Items → Geometry}/Arc/Arc.d.ts +0 -0
  220. /package/dist/types/{Items → Geometry}/Arc/index.d.ts +0 -0
  221. /package/dist/types/{Items → Geometry}/Curve/Curve.d.ts +0 -0
  222. /package/dist/types/{Items → Geometry}/Curve/index.d.ts +0 -0
  223. /package/dist/types/{Items → Geometry}/DrawingContext.d.ts +0 -0
  224. /package/dist/types/{Items → Geometry}/GeometricNormal.d.ts +0 -0
  225. /package/dist/types/{Items → Geometry}/Line/Line.d.ts +0 -0
  226. /package/dist/types/{Items → Geometry}/Line/index.d.ts +0 -0
  227. /package/dist/types/{Items → Geometry}/Mbr/index.d.ts +0 -0
  228. /package/dist/types/{Items → Geometry}/Path/Path.d.ts +0 -0
  229. /package/dist/types/{Items → Geometry}/Path/index.d.ts +0 -0
  230. /package/dist/types/{Items → Geometry}/Point/Point.d.ts +0 -0
  231. /package/dist/types/{Items → Geometry}/Point/Point.schema.d.ts +0 -0
  232. /package/dist/types/{Items → Geometry}/Point/index.d.ts +0 -0
  233. /package/dist/types/{Items → Geometry}/Transformation/Transformation.d.ts +0 -0
  234. /package/dist/types/{Items → Geometry}/Transformation/Transformation.schema.d.ts +0 -0
  235. /package/dist/types/{Items → Geometry}/Transformation/TransformationCommand.d.ts +0 -0
  236. /package/dist/types/{Items → Geometry}/Transformation/index.d.ts +0 -0
  237. /package/dist/types/{Items → HTMLAdapter}/Renderers/index.d.ts +0 -0
  238. /package/dist/types/Items/{Examples/CardGame/Card → Card}/index.d.ts +0 -0
  239. /package/dist/types/{Tools/AddComment → Items/Comment/Tool}/index.d.ts +0 -0
  240. /package/dist/types/{Tools/AddConnector → Items/Connector/Tool}/index.d.ts +0 -0
  241. /package/dist/types/Items/{Examples/CardGame/Deck → Deck}/index.d.ts +0 -0
  242. /package/dist/types/Items/{Examples/CardGame/Dice → Dice}/index.d.ts +0 -0
  243. /package/dist/types/{Tools → Items/Drawing/Tool}/Eraser/index.d.ts +0 -0
  244. /package/dist/types/{Tools/AddDrawing → Items/Drawing/Tool}/index.d.ts +0 -0
  245. /package/dist/types/{Tools/AddFrame → Items/Frame/Tool}/index.d.ts +0 -0
  246. /package/dist/types/{Tools/AddText → Items/RichText/Tool}/index.d.ts +0 -0
  247. /package/dist/types/Items/{Examples/CardGame/Screen → Screen}/index.d.ts +0 -0
  248. /package/dist/types/{Tools/AddShape → Items/Shape/Tool}/index.d.ts +0 -0
  249. /package/dist/types/{Tools/AddSticker → Items/Sticker/Tool}/index.d.ts +0 -0
  250. /package/dist/types/Tools/{ExportSnapshot → ExportScreenshot}/getDecorationResizeType.d.ts +0 -0
@@ -1,9 +1,10 @@
1
- import { BaseItem, BaseItemData, SerializedItemData } from "../../../BaseItem/BaseItem";
2
- import { Board } from "../../../../Board";
3
- import { DrawingContext } from "../../../DrawingContext";
4
- import { Path } from "../../../Path/Path";
5
- import { Subject } from "../../../../Subject";
6
- import { Paths } from "../../../Path/Paths";
1
+ import { BaseItem, BaseItemData, SerializedItemData } from "../BaseItem/BaseItem";
2
+ import { UpdateHint } from "../BaseItem/UpdateHint";
3
+ import { Board } from "../../Board";
4
+ import { DrawingContext } from "../../Geometry/DrawingContext";
5
+ import { Path } from "../../Geometry/Path/Path";
6
+ import { Subject } from "../../Subject";
7
+ import { Paths } from "../../Geometry/Path/Paths";
7
8
  export interface CardData extends BaseItemData {
8
9
  isOpen?: boolean;
9
10
  faceUrl?: string;
@@ -43,5 +44,8 @@ export declare class Card extends BaseItem<Card> {
43
44
  getPath(): Path | Paths;
44
45
  deserialize(data: SerializedItemData): this;
45
46
  toggleIsOpen(cards: Card[]): void;
46
- apply(op: any): void;
47
+ apply(opIn: any): void;
48
+ protected updateVisuals(_op: any, hint: UpdateHint): void;
49
+ protected getPropertyUpdateHint(property: string): UpdateHint;
50
+ protected onPropertyUpdated(property: string, value: any, prevValue: any): void;
47
51
  }
@@ -0,0 +1,2 @@
1
+ import type { ItemActionConfig } from "../ItemActions";
2
+ export declare const cardActions: ItemActionConfig;
@@ -1,5 +1,5 @@
1
- import { BaseOperation } from "../../../../Events/EventsOperations";
2
- import { TransformationOperation } from "../../../Transformation/TransformationOperations";
1
+ import { BaseOperation } from "../../Events/EventsOperations";
2
+ import { TransformationOperation } from "../../Geometry/Transformation/TransformationOperations";
3
3
  export type CardOperation = SetIsOpen | SetIsInDeck | TransformationOperation;
4
4
  export interface SetIsOpen extends BaseOperation<{
5
5
  isOpen: boolean;
@@ -0,0 +1,2 @@
1
+ import type { ItemOverlayDefinition } from "../../Overlay";
2
+ export declare const cardOverlay: ItemOverlayDefinition;
@@ -1,15 +1,16 @@
1
1
  import { Subject } from "../../Subject";
2
2
  import type { Operation } from "../../Events";
3
- import { Point } from "../Point";
4
- import { TransformationData } from "../Transformation";
3
+ import { Point } from "../../Geometry/Point";
4
+ import { TransformationData } from "../../Geometry/Transformation";
5
5
  import { CommentOperation } from "./CommentOperation";
6
- import { Mbr } from "../Mbr";
7
- import { GeometricNormal } from "../GeometricNormal";
6
+ import { Mbr } from "../../Geometry/Mbr";
7
+ import { GeometricNormal } from "../../Geometry/GeometricNormal";
8
8
  import { RichText } from "../RichText";
9
- import { DrawingContext } from "../DrawingContext";
9
+ import { DrawingContext } from "../../Geometry/DrawingContext";
10
10
  import { SerializedItemData } from "../BaseItem";
11
- import { Line } from "../Line";
11
+ import { Line } from "../../Geometry/Line";
12
12
  import { BaseItem } from "../BaseItem/BaseItem";
13
+ import { UpdateHint } from "../BaseItem/UpdateHint";
13
14
  import { Board } from "../../Board";
14
15
  import { Item } from "../Item";
15
16
  export interface Commentator {
@@ -56,7 +57,9 @@ export declare class Comment extends BaseItem<Comment> {
56
57
  setId(id: string): this;
57
58
  getId(): string;
58
59
  getCommentators(): Commentator[];
59
- apply(op: Operation): void;
60
+ apply(opIn: Operation): void;
61
+ protected updateVisuals(_op: Operation, hint: UpdateHint): void;
62
+ protected getPropertyUpdateHint(property: string): UpdateHint;
60
63
  private applyCommentOperation;
61
64
  saveMessage(text: string, username: string, id: number, avatar?: string): void;
62
65
  editMessage(text: string, id: string): void;
@@ -1,6 +1,6 @@
1
- import { Board } from "../../Board";
2
- import { BoardTool } from "../BoardTool";
3
- import { Comment } from "../../Items";
1
+ import { Board } from "../../../Board";
2
+ import { BoardTool } from "../../../Tools/BoardTool";
3
+ import { Comment } from "../../../Items";
4
4
  export declare class AddComment extends BoardTool {
5
5
  isDown: boolean;
6
6
  comment: null | Comment;
@@ -1,21 +1,23 @@
1
1
  import { RichText } from '../RichText/RichText';
2
2
  import { Subject } from '../../Subject';
3
3
  import { Board } from '../../Board';
4
- import { Operation } from '../../Events';
5
- import { DrawingContext } from '../DrawingContext';
6
- import { GeometricNormal } from '../GeometricNormal';
4
+ import { Operation, BaseOperation } from '../../Events';
5
+ import { DrawingContext } from '../../Geometry/DrawingContext';
6
+ import { GeometricNormal } from '../../Geometry/GeometricNormal';
7
7
  import type { Item } from '../Item';
8
- import { Line } from '../Line/Line';
9
- import { Mbr } from '../Mbr/Mbr';
10
- import { Path } from '../Path/Path';
11
- import { Paths } from '../Path/Paths';
12
- import type { BorderStyle } from '../Path/Path';
13
- import { Point } from '../Point/Point';
8
+ import { Line } from '../../Geometry/Line/Line';
9
+ import { Mbr } from '../../Geometry/Mbr/Mbr';
10
+ import { Path } from '../../Geometry/Path/Path';
11
+ import { Paths } from '../../Geometry/Path/Paths';
12
+ import type { BorderStyle } from '../../Geometry/Path/Path';
13
+ import { Point } from '../../Geometry/Point/Point';
14
14
  import { ConnectorData, ConnectorOperation } from './ConnectorOperations';
15
15
  import { BoardPoint, ControlPoint, ControlPointData, FindItemFn } from './ControlPoint';
16
16
  import { ConnectorPointerStyle, Pointer } from './Pointers/Pointers';
17
17
  import { ConnectorAnchorColors } from './types';
18
18
  import { BaseItem, SerializedItemData } from "../BaseItem/BaseItem";
19
+ import { BaseItemOperation } from "../BaseItem/BaseItemOperation";
20
+ import { UpdateHint } from "../BaseItem/UpdateHint";
19
21
  import { ColorValue } from '../../..';
20
22
  import { ConnectionLineWidth, ConnectorLineStyle } from './ConnectorTypes';
21
23
  export declare const CONNECTOR_ANCHOR_COLOR: ConnectorAnchorColors;
@@ -65,7 +67,8 @@ export declare class Connector extends BaseItem<Connector> {
65
67
  emit(operation: ConnectorOperation): void;
66
68
  setId(id: string): this;
67
69
  getId(): string;
68
- apply(operation: Operation): void;
70
+ apply(opIn: Operation | BaseItemOperation | BaseOperation): void;
71
+ protected updateVisuals(op: Operation, hint: UpdateHint): void;
69
72
  protected onPropertyUpdated(property: string, value: unknown, prevValue: unknown): void;
70
73
  complete(id: string): void;
71
74
  protected applyStartPoint(pointData: ControlPointData, updatePath?: boolean): void;
@@ -109,6 +112,7 @@ export declare class Connector extends BaseItem<Connector> {
109
112
  isClosed(): boolean;
110
113
  serialize(): SerializedItemData<ConnectorData>;
111
114
  deserialize(data: SerializedItemData<ConnectorData> | ConnectorData): this;
115
+ protected getPropertyUpdateHint(property: string): UpdateHint;
112
116
  getConnectorById(items: Item[], connectorId: string): Connector | undefined;
113
117
  updateTitle(): void;
114
118
  private scalePoints;
@@ -2,8 +2,8 @@ import { ControlPointData, FindItemFn } from "./ControlPoint";
2
2
  import { ConnectionLineWidth, ConnectorLineStyle } from "./ConnectorTypes";
3
3
  import { ConnectorPointerStyle } from "./Pointers/Pointers";
4
4
  import { DefaultRichTextData } from "../RichText/RichTextData";
5
- import { DefaultTransformationData } from "../Transformation/TransformationData";
6
- import { BorderStyle } from "../Path";
5
+ import { DefaultTransformationData } from "../../Geometry/Transformation/TransformationData";
6
+ import { BorderStyle } from "../../Geometry/Path";
7
7
  import { ColorValue } from "../../..";
8
8
  export declare class ConnectorData {
9
9
  readonly itemType = "Connector";
@@ -0,0 +1,3 @@
1
+ import type { ItemOverlayDefinition, ToolOverlayDefinition } from "../../Overlay";
2
+ export declare const connectorOverlay: ItemOverlayDefinition;
3
+ export declare const addConnectorToolOverlay: ToolOverlayDefinition;
@@ -1,10 +1,10 @@
1
1
  import { Board } from "../../Board";
2
2
  import { ControlPoint } from "./ControlPoint";
3
- import { Point } from "../Point";
3
+ import { Point } from "../../Geometry/Point";
4
4
  import { Item } from "../Item";
5
- import { DrawingContext } from "../DrawingContext";
6
- import { Anchor } from "../Anchor";
7
- import { Path, Paths } from "../Path";
5
+ import { DrawingContext } from "../../Geometry/DrawingContext";
6
+ import { Anchor } from "../../Geometry/Anchor";
7
+ import { Path, Paths } from "../../Geometry/Path";
8
8
  import { Connector } from "./Connector";
9
9
  export declare class ConnectorSnap {
10
10
  private board;
@@ -1,4 +1,4 @@
1
- import { BorderStyle } from "../Path";
1
+ import { BorderStyle } from "../../Geometry/Path";
2
2
  export declare const ConnectorLineStyles: readonly ["straight", "curved", "orthogonal"];
3
3
  export type ConnectorLineStyle = (typeof ConnectorLineStyles)[number];
4
4
  export declare const ConnectionLineWidths: readonly [1, 2, 3, 4, 5, 6, 7, 8, 12];
@@ -1,4 +1,4 @@
1
- import { Point } from "../Point";
1
+ import { Point } from "../../Geometry/Point";
2
2
  import { Item } from "../Item";
3
3
  import { Connector } from "./Connector";
4
4
  export type Edge = "top" | "bottom" | "left" | "right";
@@ -1,6 +1,6 @@
1
- import { Path } from '../../Path/Path';
2
- import { Paths } from '../../Path/Paths';
3
- import { Point } from '../../Point/Point';
1
+ import { Path } from '../../../Geometry/Path/Path';
2
+ import { Paths } from '../../../Geometry/Path/Paths';
3
+ import { Point } from '../../../Geometry/Point/Point';
4
4
  export interface Pointer {
5
5
  name: string;
6
6
  path: Path | Paths;
@@ -1,12 +1,12 @@
1
- import { Board } from '../../Board';
2
- import { Connector, Item, Point } from '../../Items';
3
- import { ConnectorLineStyle } from '../../Items/Connector';
4
- import { ConnectionLineWidth } from '../../Items/Connector/ConnectorTypes';
5
- import { ConnectorSnap } from '../../Items/Connector/ConnectorSnap';
6
- import { ConnectorPointerStyle } from '../../Items/Connector/Pointers/Pointers';
7
- import { DrawingContext } from '../../Items/DrawingContext';
8
- import { BorderStyle } from '../../Items/Path';
9
- import { BoardTool } from '../BoardTool';
1
+ import { Board } from '../../../Board';
2
+ import { Connector, Item, Point } from '../../../Items';
3
+ import { ConnectorLineStyle } from '../../Connector';
4
+ import { ConnectionLineWidth } from '../../Connector/ConnectorTypes';
5
+ import { ConnectorSnap } from '../../Connector/ConnectorSnap';
6
+ import { ConnectorPointerStyle } from '../../Connector/Pointers/Pointers';
7
+ import { DrawingContext } from '../../../Geometry/DrawingContext';
8
+ import { BorderStyle } from '../../../Geometry/Path';
9
+ import { BoardTool } from '../../../Tools/BoardTool';
10
10
  export declare class AddConnector extends BoardTool {
11
11
  connector: Connector | null;
12
12
  lineStyle: ConnectorLineStyle;
@@ -1,5 +1,5 @@
1
1
  import { Line, Mbr } from '../../../Items';
2
- import { Point } from '../../Point';
2
+ import { Point } from '../../../Geometry/Point';
3
3
  import { ControlPoint } from '../ControlPoint';
4
4
  type Direction = 'vertical' | 'horizontal';
5
5
  export declare function getDirection(from: Point, to?: Point): Direction | null;
@@ -1,3 +1,3 @@
1
- import { Path } from "../../Path";
1
+ import { Path } from "../../../Geometry/Path";
2
2
  import { ControlPoint } from "../ControlPoint";
3
3
  export declare function getCurvedLine(start: ControlPoint, end: ControlPoint, middle: ControlPoint | null): Path;
@@ -1,4 +1,4 @@
1
- import { Path } from "../../Path";
1
+ import { Path } from "../../../Geometry/Path";
2
2
  import { ConnectorLineStyle } from "../ConnectorTypes";
3
3
  import { ControlPoint } from "../ControlPoint";
4
4
  export declare function getLine(lineStyle: ConnectorLineStyle, start: ControlPoint, end: ControlPoint, middle: ControlPoint | null): Path;
@@ -1,9 +1,10 @@
1
- import { BaseItem, BaseItemData, SerializedItemData } from "../../../BaseItem/BaseItem";
2
- import { Board } from "../../../../Board";
3
- import { Subject } from "../../../../Subject";
4
- import { Card } from "../../../Examples/CardGame/Card/Card";
5
- import { DrawingContext } from "../../../DrawingContext";
6
- import { Path } from "../../../Path";
1
+ import { BaseItem, BaseItemData, SerializedItemData } from "../BaseItem/BaseItem";
2
+ import { UpdateHint } from "../BaseItem/UpdateHint";
3
+ import { Board } from "../../Board";
4
+ import { Subject } from "../../Subject";
5
+ import { Card } from "../Card/Card";
6
+ import { DrawingContext } from "../../Geometry/DrawingContext";
7
+ import { Path } from "../../Geometry/Path";
7
8
  export declare const defaultDeckData: BaseItemData;
8
9
  export declare class Deck extends BaseItem<Deck> {
9
10
  readonly subject: Subject<Deck>;
@@ -26,7 +27,9 @@ export declare class Deck extends BaseItem<Deck> {
26
27
  getRandomCard(): Card | undefined;
27
28
  shuffleDeck(): void;
28
29
  flipDeck(): void;
29
- apply(op: any): void;
30
+ apply(opIn: any): void;
31
+ protected updateVisuals(_op: any, hint: UpdateHint): void;
32
+ protected getPropertyUpdateHint(property: string): UpdateHint;
30
33
  updateMbr(): void;
31
34
  deserialize(data: SerializedItemData): this;
32
35
  render(context: DrawingContext): void;
@@ -0,0 +1,2 @@
1
+ import type { ItemActionConfig } from "../ItemActions";
2
+ export declare const deckActions: ItemActionConfig;
@@ -1,5 +1,5 @@
1
- import { BaseOperation } from "../../../../Events/EventsOperations";
2
- import { TransformationOperation } from "../../../Transformation/TransformationOperations";
1
+ import { BaseOperation } from "../../Events/EventsOperations";
2
+ import { TransformationOperation } from "../../Geometry/Transformation/TransformationOperations";
3
3
  export type DeckOperation = StartAnimation | TransformationOperation;
4
4
  export interface StartAnimation extends BaseOperation<{
5
5
  timeStamp?: number;
@@ -0,0 +1,3 @@
1
+ import type { ItemOverlayDefinition, SelectionOverlayActionDefinition } from "../../Overlay";
2
+ export declare const deckOverlay: ItemOverlayDefinition;
3
+ export declare const createDeckSelectionAction: SelectionOverlayActionDefinition;
@@ -0,0 +1,5 @@
1
+ import { Board } from "../../Board";
2
+ import { ShapeTool } from "../../Tools/CustomTool";
3
+ export declare class AddDice extends ShapeTool {
4
+ constructor(board: Board, name: string);
5
+ }
@@ -1,9 +1,10 @@
1
- import { BaseItem, BaseItemData, SerializedItemData } from "../../../BaseItem/BaseItem";
2
- import { Operation } from "../../../../Events";
3
- import { BorderWidth, Path, BorderStyle } from "../../../../Items";
4
- import { Subject } from "../../../../Subject";
5
- import { Board } from "../../../../Board";
6
- import { DrawingContext } from "../../../../Items";
1
+ import { BaseItem, BaseItemData, SerializedItemData } from "../BaseItem/BaseItem";
2
+ import { UpdateHint } from "../BaseItem/UpdateHint";
3
+ import { Operation } from "../../Events";
4
+ import { BorderWidth, Path, BorderStyle } from "../../Items";
5
+ import { Subject } from "../../Subject";
6
+ import { Board } from "../../Board";
7
+ import { DrawingContext } from "../../Items";
7
8
  import { DiceOperation } from "./DiceOperation";
8
9
  export type DiceType = "common" | "custom";
9
10
  export interface DiceData extends BaseItemData {
@@ -49,10 +50,13 @@ export declare class Dice extends BaseItem<Dice> {
49
50
  setBorderWidth(borderWidth: BorderWidth): void;
50
51
  private applyBorderColor;
51
52
  setBorderColor(borderColor: string): void;
52
- setValues(values: number[]): void;
53
+ setValues(values: (number | string)[]): void;
53
54
  setValueIndex(valueIndex: number): void;
54
55
  throwDice(): void;
55
- apply(op: Operation | DiceOperation): void;
56
+ apply(opIn: Operation | DiceOperation): void;
57
+ protected updateVisuals(_op: any, hint: UpdateHint): void;
58
+ protected getPropertyUpdateHint(property: string): UpdateHint;
59
+ protected onPropertyUpdated(property: string, value: any, prevValue: any): void;
56
60
  startRotation(): void;
57
61
  stopRotation(): void;
58
62
  }
@@ -0,0 +1,2 @@
1
+ import type { ItemActionConfig } from "../ItemActions";
2
+ export declare const diceActions: ItemActionConfig;
@@ -1,4 +1,4 @@
1
- import { BaseOperation } from "../../../../Events/EventsOperations";
1
+ import { BaseOperation } from "../../Events/EventsOperations";
2
2
  export type DiceOperation = ChangeValueIndex | ChangeValues | SetBackgroundColor | SetBorderColor | SetBorderWidth;
3
3
  interface ChangeValueIndex extends BaseOperation<{
4
4
  valueIndex: number;
@@ -0,0 +1,3 @@
1
+ import type { ItemOverlayDefinition, ToolOverlayDefinition } from "../../Overlay";
2
+ export declare const diceOverlay: ItemOverlayDefinition;
3
+ export declare const addDiceToolOverlay: ToolOverlayDefinition;
@@ -1,15 +1,17 @@
1
- import type { Operation } from "../../Events";
1
+ import type { Operation, BaseOperation } from "../../Events";
2
2
  import { Subject } from "../../Subject";
3
- import { DrawingContext } from "../DrawingContext";
4
- import { Line } from "../Line/Line";
5
- import { Mbr } from "../Mbr/Mbr";
6
- import { Path } from "../Path/Path";
7
- import type { BorderStyle, BorderWidth } from "../Path/Path";
8
- import { Point } from "../Point/Point";
3
+ import { DrawingContext } from "../../Geometry/DrawingContext";
4
+ import { Line } from "../../Geometry/Line/Line";
5
+ import { Mbr } from "../../Geometry/Mbr/Mbr";
6
+ import { Path } from "../../Geometry/Path/Path";
7
+ import type { BorderStyle, BorderWidth } from "../../Geometry/Path/Path";
8
+ import { Point } from "../../Geometry/Point/Point";
9
9
  import { DrawingOperation } from "./DrawingOperation";
10
- import { TransformationData } from "../Transformation/TransformationData";
10
+ import { TransformationData } from "../../Geometry/Transformation/TransformationData";
11
11
  import { Board } from "../../Board";
12
12
  import { BaseItem, SerializedItemData } from "../BaseItem/BaseItem";
13
+ import { BaseItemOperation } from "../BaseItem/BaseItemOperation";
14
+ import { UpdateHint } from "../BaseItem/UpdateHint";
13
15
  import { ColorValue, ColorRole } from "../../..";
14
16
  export interface DrawingData {
15
17
  itemType: "Drawing";
@@ -61,8 +63,10 @@ export declare class Drawing extends BaseItem<Drawing> {
61
63
  intersectsWithLines(lines: Line[]): boolean;
62
64
  isEnclosedOrCrossedBy(rect: Mbr): boolean;
63
65
  emit(operation: DrawingOperation): void;
64
- apply(op: Operation): void;
66
+ apply(opIn: Operation | BaseItemOperation | BaseOperation): void;
67
+ protected updateVisuals(op: Operation, hint: UpdateHint): void;
65
68
  protected onPropertyUpdated(property: string, value: unknown, prevValue: unknown): void;
69
+ protected getPropertyUpdateHint(property: string): UpdateHint;
66
70
  getStrokeOpacity(): number;
67
71
  getBorderStyle(): BorderStyle;
68
72
  getStrokeColor(): ColorValue;
@@ -1,4 +1,4 @@
1
- import { BorderStyle, BorderWidth } from "../Path";
1
+ import { BorderStyle, BorderWidth } from "../../Geometry/Path";
2
2
  import { ColorValue } from "../../..";
3
3
  interface DrawingSetStrokeColorOp {
4
4
  class: "Drawing";
@@ -0,0 +1,4 @@
1
+ import type { ToolOverlayDefinition } from "../../Overlay";
2
+ export declare const addDrawingToolOverlay: ToolOverlayDefinition;
3
+ export declare const addHighlighterToolOverlay: ToolOverlayDefinition;
4
+ export declare const eraserToolOverlay: ToolOverlayDefinition;
@@ -1,10 +1,10 @@
1
- import { Board } from '../../Board';
2
- import { Point } from '../../Items';
3
- import { Drawing } from '../../Items/Drawing';
4
- import { DrawingContext } from '../../Items/DrawingContext';
5
- import { BorderStyle } from '../../Items/Path';
6
- import { BoardTool } from '../BoardTool';
7
- import { ColorValue } from '../../..';
1
+ import { Board } from '../../../Board';
2
+ import { Point } from '../../../Items';
3
+ import { Drawing } from '../../Drawing';
4
+ import { DrawingContext } from '../../../Geometry/DrawingContext';
5
+ import { BorderStyle } from '../../../Geometry/Path';
6
+ import { BoardTool } from '../../../Tools/BoardTool';
7
+ import { ColorValue } from '../../../..';
8
8
  export declare class AddDrawing extends BoardTool {
9
9
  drawing: Drawing | null;
10
10
  isDown: boolean;
@@ -1,7 +1,7 @@
1
- import { Board } from '../../Board';
2
- import { Drawing } from '../../Items/Drawing';
3
- import { BorderStyle } from '../../Items/Path';
4
- import { ColorValue } from '../../..';
1
+ import { Board } from '../../../Board';
2
+ import { Drawing } from '../../Drawing';
3
+ import { BorderStyle } from '../../../Geometry/Path';
4
+ import { ColorValue } from '../../../..';
5
5
  import { AddDrawing } from './AddDrawing';
6
6
  export declare class AddHighlighter extends AddDrawing {
7
7
  strokeWidth: number;
@@ -1,8 +1,8 @@
1
- import { Board } from "../../Board";
2
- import { Drawing } from "../../Items/Drawing";
3
- import { DrawingContext } from "../../Items/DrawingContext";
4
- import { BorderStyle } from "../../Items/Path";
5
- import { BoardTool } from "../BoardTool";
1
+ import { Board } from "../../../../Board";
2
+ import { Drawing } from "../../../Drawing";
3
+ import { DrawingContext } from "../../../../Geometry/DrawingContext";
4
+ import { BorderStyle } from "../../../../Geometry/Path";
5
+ import { BoardTool } from "../../../../Tools/BoardTool";
6
6
  export declare class Eraser extends BoardTool {
7
7
  itemType: string;
8
8
  isDown: boolean;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Frame1x1: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Frame16x9: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Frame3x2: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Frame4x3: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Frame9x18: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const A4: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Custom: {
5
5
  name: string;
6
6
  textBounds: Mbr;
@@ -1,6 +1,6 @@
1
- import { Mbr } from '../../../Mbr';
2
- import { Path } from '../../../Path';
3
- import { Point } from '../../../Point';
1
+ import { Mbr } from '../../../../Geometry/Mbr';
2
+ import { Path } from '../../../../Geometry/Path';
3
+ import { Point } from '../../../../Geometry/Point';
4
4
  export declare const Letter: {
5
5
  name: string;
6
6
  textBounds: Mbr;