mind-elixir 4.3.2 → 4.3.4
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/MindElixir.iife.js +13 -6
- package/dist/MindElixir.js +484 -471
- package/dist/MindElixirLite.iife.js +13 -6
- package/dist/MindElixirLite.js +415 -846
- package/dist/types/types/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -139,6 +139,8 @@ export type Options = {
|
|
|
139
139
|
selectionContainer?: string | HTMLElement;
|
|
140
140
|
};
|
|
141
141
|
export type Uid = string;
|
|
142
|
+
export type Left = 0;
|
|
143
|
+
export type Right = 1;
|
|
142
144
|
/**
|
|
143
145
|
* MindElixir node object
|
|
144
146
|
*
|
|
@@ -158,7 +160,7 @@ export type NodeObj = {
|
|
|
158
160
|
icons?: string[];
|
|
159
161
|
hyperLink?: string;
|
|
160
162
|
expanded?: boolean;
|
|
161
|
-
direction?:
|
|
163
|
+
direction?: Left | Right;
|
|
162
164
|
image?: {
|
|
163
165
|
url: string;
|
|
164
166
|
width: number;
|