microboard-temp 0.14.16 → 0.14.18
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/dist/cjs/browser.js +281 -55
- package/dist/cjs/index.js +281 -55
- package/dist/cjs/node.js +281 -55
- package/dist/esm/browser.js +281 -55
- package/dist/esm/index.js +281 -55
- package/dist/esm/node.js +281 -55
- package/dist/types/Board.d.ts +5 -0
- package/dist/types/Import/Miro/MiroItemConverter.d.ts +43 -0
- package/dist/types/Items/AINode/AINode.d.ts +1 -0
- package/dist/types/Items/Dice/DiceOverlay.d.ts +1 -1
- package/dist/types/Items/Group/Group.d.ts +3 -0
- package/dist/types/Items/Image/Image.d.ts +1 -0
- package/dist/types/Items/RichText/RichTextOverlay.d.ts +1 -1
- package/dist/types/Items/RichText/index.d.ts +1 -0
- package/dist/types/Items/Shape/ShapeOverlay.d.ts +1 -1
- package/dist/types/Items/Video/Video.d.ts +1 -0
- package/dist/types/Overlay/OverlayIcons.d.ts +12 -0
- package/dist/types/Overlay/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type ItemOverlayDefinition, type OverlayControlDefinition, type ToolOverlayDefinition } from "../../Overlay";
|
|
2
2
|
export declare const shapeTypeControl: OverlayControlDefinition;
|
|
3
3
|
export declare const shapeOverlay: ItemOverlayDefinition;
|
|
4
4
|
export declare const addShapeToolOverlay: ToolOverlayDefinition;
|
|
@@ -26,6 +26,7 @@ export interface VideoConstructorData {
|
|
|
26
26
|
url?: string;
|
|
27
27
|
videoDimension: Dimension;
|
|
28
28
|
previewUrl?: string;
|
|
29
|
+
[key: string]: unknown;
|
|
29
30
|
}
|
|
30
31
|
export declare const createPlaceholderImage: (width: number, height: number) => HTMLImageElement;
|
|
31
32
|
export declare class VideoItem extends BaseItem<VideoItem> {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { OverlayIcon, OverlayIconStateHint } from "./OverlayMetadata";
|
|
2
|
+
export declare const OVERLAY_SYMBOL_KEYS: {
|
|
3
|
+
readonly styleFill: "style.fill";
|
|
4
|
+
readonly styleStroke: "style.stroke";
|
|
5
|
+
readonly styleColor: "style.color";
|
|
6
|
+
readonly styleFontSize: "style.fontSize";
|
|
7
|
+
};
|
|
8
|
+
export declare function symbolIcon(key: string, state?: OverlayIconStateHint): OverlayIcon;
|
|
9
|
+
export declare function styleFillIcon(state?: OverlayIconStateHint): OverlayIcon;
|
|
10
|
+
export declare function styleStrokeIcon(state?: OverlayIconStateHint): OverlayIcon;
|
|
11
|
+
export declare function styleColorIcon(state?: OverlayIconStateHint): OverlayIcon;
|
|
12
|
+
export declare function styleFontSizeIcon(state?: OverlayIconStateHint): OverlayIcon;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export * from "./SpatialIndex";
|
|
|
19
19
|
export * from "./Tools";
|
|
20
20
|
export * from "./Overlay";
|
|
21
21
|
export * from "./HTMLAdapter/Utils";
|
|
22
|
+
export * from "./Import/Miro/MiroItemConverter";
|
|
22
23
|
export * from "./drawMbrOnCanvas";
|
|
23
24
|
export * from "./itemFactories";
|
|
24
25
|
export * from "./HTMLAdapter/Parser";
|