[new feature] Added new functionality calld orgscribe
Orgscribe is like Markdown for org charts, here is the interface
interface orgscribeUI { /** * The width of the orgscribe UI */ get width(): number; /** * Text area */ textAreaElement: HTMLInputElement; /** * Inits orgscribe ui * @param obj */ init(obj: OrgChart): void; /** * Shows the orgscribe form * @param dontFocus if true the imput will not be focused * @param dontAnim If true hsoe withput animation */ show(dontFocus?: boolean, dontAnim?: boolean): void; /** * Hides the orgscribe form */ hide(): void; /** * Returns true if the orgscribe UI is visible */ isVisible(): boolean; }