protected textDiff(text1 : string = '', text2 : string) : any {
        return text2 === undefined ? text1 : diffToReactElem(text1, text2);
    }